a tool for shared writing and social publishing

running the lexgen

+4 -3
+1 -1
lexicons/api/lexicons.ts
··· 1248 1248 }, 1249 1249 textSize: { 1250 1250 type: 'string', 1251 - enum: ['default', 'small'], 1251 + enum: ['default', 'small', 'large'], 1252 1252 }, 1253 1253 facets: { 1254 1254 type: 'array',
+1 -1
lexicons/api/types/pub/leaflet/blocks/text.ts
··· 18 18 export interface Main { 19 19 $type?: 'pub.leaflet.blocks.text' 20 20 plaintext: string 21 - textSize?: 'default' | 'small' 21 + textSize?: 'default' | 'small' | 'large' 22 22 facets?: PubLeafletRichtextFacet.Main[] 23 23 } 24 24
+2 -1
lexicons/pub/leaflet/blocks/text.json
··· 15 15 "type": "string", 16 16 "enum": [ 17 17 "default", 18 - "small" 18 + "small", 19 + "large" 19 20 ] 20 21 }, 21 22 "facets": {