···11761176 type: 'ref',
11771177 ref: 'lex:pub.leaflet.blocks.image#aspectRatio',
11781178 },
11791179+ fullBleed: {
11801180+ type: 'boolean',
11811181+ description:
11821182+ 'Whether the image should extend to the full width of the container, ignoring padding.',
11831183+ },
11791184 },
11801185 },
11811186 aspectRatio: {
+2
lexicons/api/types/pub/leaflet/blocks/image.ts
···2020 /** Alt text description of the image, for accessibility. */
2121 alt?: string
2222 aspectRatio: AspectRatio
2323+ /** Whether the image should extend to the full width of the container, ignoring padding. */
2424+ fullBleed?: boolean
2325}
24262527const hashMain = 'main'
+4
lexicons/pub/leaflet/blocks/image.json
···2323 "aspectRatio": {
2424 "type": "ref",
2525 "ref": "#aspectRatio"
2626+ },
2727+ "fullBleed": {
2828+ "type": "boolean",
2929+ "description": "Whether the image should extend to the full width of the container, ignoring padding."
2630 }
2731 }
2832 },
+15-5
lexicons/src/blocks.ts
···180180 type: "ref",
181181 ref: "#aspectRatio",
182182 },
183183+ fullBleed: {
184184+ type: "boolean",
185185+ description:
186186+ "Whether the image should extend to the full width of the container, ignoring padding.",
187187+ },
183188 },
184189 },
185190 aspectRatio: {
···203208 properties: {
204209 startIndex: {
205210 type: "integer",
206206- description: "The starting number for this ordered list. Defaults to 1 if not specified.",
211211+ description:
212212+ "The starting number for this ordered list. Defaults to 1 if not specified.",
207213 },
208214 children: { type: "array", items: { type: "ref", ref: "#listItem" } },
209215 },
···227233 },
228234 children: {
229235 type: "array",
230230- description: "Nested ordered list items. Mutually exclusive with unorderedListChildren; if both are present, children takes precedence.",
236236+ description:
237237+ "Nested ordered list items. Mutually exclusive with unorderedListChildren; if both are present, children takes precedence.",
231238 items: { type: "ref", ref: "#listItem" },
232239 },
233240 unorderedListChildren: {
234241 type: "ref",
235235- description: "A nested unordered list. Mutually exclusive with children; if both are present, children takes precedence.",
242242+ description:
243243+ "A nested unordered list. Mutually exclusive with children; if both are present, children takes precedence.",
236244 ref: "pub.leaflet.blocks.unorderedList",
237245 },
238246 },
···270278 },
271279 children: {
272280 type: "array",
273273- description: "Nested unordered list items. Mutually exclusive with orderedListChildren; if both are present, children takes precedence.",
281281+ description:
282282+ "Nested unordered list items. Mutually exclusive with orderedListChildren; if both are present, children takes precedence.",
274283 items: { type: "ref", ref: "#listItem" },
275284 },
276285 orderedListChildren: {
277286 type: "ref",
278278- description: "Nested ordered list items. Mutually exclusive with children; if both are present, children takes precedence.",
287287+ description:
288288+ "Nested ordered list items. Mutually exclusive with children; if both are present, children takes precedence.",
279289 ref: "pub.leaflet.blocks.orderedList",
280290 },
281291 },