a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(leaflet): pull latest Leaflet lexicons

Mary 202d384d 76076db4

+14 -1
+5
.changeset/fancy-tables-melt.md
··· 1 + --- 2 + '@atcute/leaflet': patch 3 + --- 4 + 5 + pull latest Leaflet lexicons
+1 -1
packages/definitions/leaflet/lexicons/README.md
··· 3 3 this directory contains lexicon documents pulled from the following sources: 4 4 5 5 - https://github.com/hyperlink-academy/leaflet.git 6 - - commit: 24f90f36a070ddc260dbe3bfcb962ee0d3850af6 6 + - commit: d42c684a39f9a479a807d8b107ca1e1f911cecf1
+4
packages/definitions/leaflet/lexicons/pub/leaflet/blocks/image.json
··· 18 18 "aspectRatio": { 19 19 "type": "ref", 20 20 "ref": "#aspectRatio" 21 + }, 22 + "fullBleed": { 23 + "type": "boolean", 24 + "description": "Whether the image should extend to the full width of the container, ignoring padding." 21 25 } 22 26 } 23 27 },
+4
packages/definitions/leaflet/lib/lexicons/types/pub/leaflet/blocks/image.ts
··· 16 16 return aspectRatioSchema; 17 17 }, 18 18 /** 19 + * Whether the image should extend to the full width of the container, ignoring padding. 20 + */ 21 + fullBleed: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.boolean()), 22 + /** 19 23 * @accept image/* 20 24 * @maxSize 1000000 21 25 */