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 22cb3aa8 82761dfa

+22 -1
+5
.changeset/seven-toys-watch.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: e89e279aa15dd807edbb87013920ee775bcd03e1 6 + - commit: 24f90f36a070ddc260dbe3bfcb962ee0d3850af6
+4
packages/definitions/leaflet/lexicons/pub/leaflet/blocks/orderedList.json
··· 23 23 "type": "object", 24 24 "required": ["content"], 25 25 "properties": { 26 + "checked": { 27 + "type": "boolean", 28 + "description": "If present, this item is a checklist item. true = checked, false = unchecked. If absent, this is a normal list item." 29 + }, 26 30 "content": { 27 31 "type": "union", 28 32 "refs": ["pub.leaflet.blocks.text", "pub.leaflet.blocks.header", "pub.leaflet.blocks.image"]
+4
packages/definitions/leaflet/lexicons/pub/leaflet/blocks/unorderedList.json
··· 19 19 "type": "object", 20 20 "required": ["content"], 21 21 "properties": { 22 + "checked": { 23 + "type": "boolean", 24 + "description": "If present, this item is a checklist item. true = checked, false = unchecked. If absent, this is a normal list item." 25 + }, 22 26 "content": { 23 27 "type": "union", 24 28 "refs": ["pub.leaflet.blocks.text", "pub.leaflet.blocks.header", "pub.leaflet.blocks.image"]
+4
packages/definitions/leaflet/lib/lexicons/types/pub/leaflet/blocks/orderedList.ts
··· 9 9 const _listItemSchema = /*#__PURE__*/ v.object({ 10 10 $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('pub.leaflet.blocks.orderedList#listItem')), 11 11 /** 12 + * If present, this item is a checklist item. true = checked, false = unchecked. If absent, this is a normal list item. 13 + */ 14 + checked: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.boolean()), 15 + /** 12 16 * Nested ordered list items. Mutually exclusive with unorderedListChildren; if both are present, children takes precedence. 13 17 */ 14 18 get children() {
+4
packages/definitions/leaflet/lib/lexicons/types/pub/leaflet/blocks/unorderedList.ts
··· 9 9 const _listItemSchema = /*#__PURE__*/ v.object({ 10 10 $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('pub.leaflet.blocks.unorderedList#listItem')), 11 11 /** 12 + * If present, this item is a checklist item. true = checked, false = unchecked. If absent, this is a normal list item. 13 + */ 14 + checked: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.boolean()), 15 + /** 12 16 * Nested unordered list items. Mutually exclusive with orderedListChildren; if both are present, children takes precedence. 13 17 */ 14 18 get children() {