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 f4378aba 96fbbadb

+27 -1
+5
.changeset/sunny-points-film.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: b32d00bc25369ed30a41ef3a72c764276c326ceb 6 + - commit: 6c8a991cb6ed1a96137433e8c543e9afc8356b45
+4
packages/definitions/leaflet/lexicons/pub/leaflet/blocks/text.json
··· 9 9 "plaintext": { 10 10 "type": "string" 11 11 }, 12 + "textSize": { 13 + "type": "string", 14 + "enum": ["default", "small", "large"] 15 + }, 12 16 "facets": { 13 17 "type": "array", 14 18 "items": {
+8
packages/definitions/leaflet/lexicons/pub/leaflet/publication.json
··· 47 47 "showComments": { 48 48 "type": "boolean", 49 49 "default": true 50 + }, 51 + "showMentions": { 52 + "type": "boolean", 53 + "default": true 54 + }, 55 + "showPrevNext": { 56 + "type": "boolean", 57 + "default": false 50 58 } 51 59 } 52 60 },
+1
packages/definitions/leaflet/lib/lexicons/types/pub/leaflet/blocks/text.ts
··· 8 8 return /*#__PURE__*/ v.optional(/*#__PURE__*/ v.array(PubLeafletRichtextFacet.mainSchema)); 9 9 }, 10 10 plaintext: /*#__PURE__*/ v.string(), 11 + textSize: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literalEnum(['default', 'large', 'small'])), 11 12 }); 12 13 13 14 type main$schematype = typeof _mainSchema;
+8
packages/definitions/leaflet/lib/lexicons/types/pub/leaflet/publication.ts
··· 42 42 * @default true 43 43 */ 44 44 showInDiscover: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.boolean(), true), 45 + /** 46 + * @default true 47 + */ 48 + showMentions: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.boolean(), true), 49 + /** 50 + * @default false 51 + */ 52 + showPrevNext: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.boolean(), false), 45 53 }); 46 54 const _themeSchema = /*#__PURE__*/ v.object({ 47 55 $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('pub.leaflet.publication#theme')),