tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
28
pulls
pipelines
running the lexgen
cozylittle.house
2 months ago
b90ff782
7558df14
+4
-3
3 changed files
expand all
collapse all
unified
split
lexicons
api
lexicons.ts
types
pub
leaflet
blocks
text.ts
pub
leaflet
blocks
text.json
+1
-1
lexicons/api/lexicons.ts
···
1248
1248
},
1249
1249
textSize: {
1250
1250
type: 'string',
1251
1251
-
enum: ['default', 'small'],
1251
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
21
-
textSize?: 'default' | 'small'
21
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
18
-
"small"
18
18
+
"small",
19
19
+
"large"
19
20
]
20
21
},
21
22
"facets": {