@canonical/anatomy-dsl 0.2.2 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +240 -23
- package/definitions/lift.fixture.json +216 -0
- package/definitions/ontology.ttl +206 -13
- package/definitions/registry.ttl +659 -0
- package/definitions/shapes.ttl +593 -8
- package/definitions/style-keys.yaml +391 -0
- package/package.json +15 -4
- package/dist/esm/index.js +0 -2
- package/dist/esm/parse.js +0 -72
- package/dist/esm/transform.js +0 -116
- package/dist/esm/types.js +0 -1
- package/dist/index.d.ts +0 -3
- package/dist/index.js +0 -2
- package/dist/parse.d.ts +0 -2
- package/dist/parse.js +0 -72
- package/dist/transform.d.ts +0 -2
- package/dist/transform.js +0 -114
- package/dist/types/index.d.ts +0 -3
- package/dist/types/parse.d.ts +0 -2
- package/dist/types/transform.d.ts +0 -2
- package/dist/types/types.d.ts +0 -36
- package/dist/types.d.ts +0 -36
- package/dist/types.js +0 -1
|
@@ -0,0 +1,659 @@
|
|
|
1
|
+
###############################################################################
|
|
2
|
+
# registry.ttl — the style-key registry
|
|
3
|
+
#
|
|
4
|
+
# GENERATED by `bun run generate:registry` from definitions/style-keys.yaml,
|
|
5
|
+
# which is the roster. Do not edit: change the roster and regenerate.
|
|
6
|
+
#
|
|
7
|
+
# One anatomy:StyleKey individual per canonical key, and nothing on it but
|
|
8
|
+
# what a shape, a law or a query reads:
|
|
9
|
+
#
|
|
10
|
+
# anatomy:valueKind token | primitive | either. A token key admits
|
|
11
|
+
# symbols only, a primitive key admits none, an
|
|
12
|
+
# either key admits both — so an either key either
|
|
13
|
+
# consumes symbols or carries a literal, and the
|
|
14
|
+
# shapes state that disjunction.
|
|
15
|
+
# anatomy:tokenNamespace the dotted prefixes whose symbols the key admits,
|
|
16
|
+
# multi-valued: N., modifier.N. and surface.N., so a
|
|
17
|
+
# channel binding is not a namespace violation.
|
|
18
|
+
#
|
|
19
|
+
# PROVENANCE. The roster is not designed: these 111 keys were measured from
|
|
20
|
+
# the 89 published component stylesheets of
|
|
21
|
+
#
|
|
22
|
+
# @canonical/react-ds-global@0.37.0,
|
|
23
|
+
# @canonical/react-ds-global-form@0.37.0,
|
|
24
|
+
# @canonical/lit-ds-prototype@0.37.0,
|
|
25
|
+
# @canonical/react-ds-app-launchpad@0.37.0
|
|
26
|
+
#
|
|
27
|
+
# on 2026-09-10 — every CSS property those stylesheets bind on a
|
|
28
|
+
# component selector, mapped onto a key — so a key exists because an
|
|
29
|
+
# implementation binds the property. The measurement itself lives in
|
|
30
|
+
# canonical/design-system, which reads the reference stylesheets; this
|
|
31
|
+
# package reads no CSS and holds the roster the measurement produced.
|
|
32
|
+
#
|
|
33
|
+
# The roster is closed: shapes.ttl's anatomy:styleKey sh:in is projected from
|
|
34
|
+
# the same file, and both are diffed in CI.
|
|
35
|
+
###############################################################################
|
|
36
|
+
|
|
37
|
+
@prefix anatomy: <https://anatomy.canonical.com/> .
|
|
38
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
39
|
+
|
|
40
|
+
anatomy:key.appearance.background
|
|
41
|
+
a anatomy:StyleKey ;
|
|
42
|
+
rdfs:label "appearance.background" ;
|
|
43
|
+
anatomy:valueKind "either" ;
|
|
44
|
+
anatomy:tokenNamespace "color." , "modifier.color." , "surface.color." .
|
|
45
|
+
|
|
46
|
+
anatomy:key.appearance.background.image
|
|
47
|
+
a anatomy:StyleKey ;
|
|
48
|
+
rdfs:label "appearance.background.image" ;
|
|
49
|
+
anatomy:valueKind "primitive" ;
|
|
50
|
+
rdfs:comment "primitive though the reference reads a var() here: a url() or a gradient is an asset or a function, never a symbol" .
|
|
51
|
+
|
|
52
|
+
anatomy:key.appearance.background.position
|
|
53
|
+
a anatomy:StyleKey ;
|
|
54
|
+
rdfs:label "appearance.background.position" ;
|
|
55
|
+
anatomy:valueKind "primitive" ;
|
|
56
|
+
rdfs:comment "primitive though the reference reads a var() here: a background position is geometry; --select-caret-half is a component-local size" .
|
|
57
|
+
|
|
58
|
+
anatomy:key.appearance.background.repeat
|
|
59
|
+
a anatomy:StyleKey ;
|
|
60
|
+
rdfs:label "appearance.background.repeat" ;
|
|
61
|
+
anatomy:valueKind "primitive" .
|
|
62
|
+
|
|
63
|
+
anatomy:key.appearance.background.size
|
|
64
|
+
a anatomy:StyleKey ;
|
|
65
|
+
rdfs:label "appearance.background.size" ;
|
|
66
|
+
anatomy:valueKind "primitive" ;
|
|
67
|
+
rdfs:comment "primitive though the reference reads a var() here: a background size is geometry; --select-caret-half is a component-local size" .
|
|
68
|
+
|
|
69
|
+
anatomy:key.appearance.border.block.start.color
|
|
70
|
+
a anatomy:StyleKey ;
|
|
71
|
+
rdfs:label "appearance.border.block.start.color" ;
|
|
72
|
+
anatomy:valueKind "token" ;
|
|
73
|
+
anatomy:tokenNamespace "color." , "modifier.color." , "surface.color." .
|
|
74
|
+
|
|
75
|
+
anatomy:key.appearance.border.bottom.color
|
|
76
|
+
a anatomy:StyleKey ;
|
|
77
|
+
rdfs:label "appearance.border.bottom.color" ;
|
|
78
|
+
anatomy:valueKind "token" ;
|
|
79
|
+
anatomy:tokenNamespace "color." , "modifier.color." , "surface.color." .
|
|
80
|
+
|
|
81
|
+
anatomy:key.appearance.border.color
|
|
82
|
+
a anatomy:StyleKey ;
|
|
83
|
+
rdfs:label "appearance.border.color" ;
|
|
84
|
+
anatomy:valueKind "either" ;
|
|
85
|
+
anatomy:tokenNamespace "color." , "modifier.color." , "surface.color." .
|
|
86
|
+
|
|
87
|
+
anatomy:key.appearance.border.inline.end.color
|
|
88
|
+
a anatomy:StyleKey ;
|
|
89
|
+
rdfs:label "appearance.border.inline.end.color" ;
|
|
90
|
+
anatomy:valueKind "token" ;
|
|
91
|
+
anatomy:tokenNamespace "color." , "modifier.color." , "surface.color." .
|
|
92
|
+
|
|
93
|
+
anatomy:key.appearance.border.style
|
|
94
|
+
a anatomy:StyleKey ;
|
|
95
|
+
rdfs:label "appearance.border.style" ;
|
|
96
|
+
anatomy:valueKind "primitive" ;
|
|
97
|
+
rdfs:comment "primitive though the reference reads a var() here: a line style is a keyword vocabulary; the var() slots the reference splits into here are component-local" .
|
|
98
|
+
|
|
99
|
+
anatomy:key.appearance.border.top.width
|
|
100
|
+
a anatomy:StyleKey ;
|
|
101
|
+
rdfs:label "appearance.border.top.width" ;
|
|
102
|
+
anatomy:valueKind "either" ;
|
|
103
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
104
|
+
|
|
105
|
+
anatomy:key.appearance.border.width
|
|
106
|
+
a anatomy:StyleKey ;
|
|
107
|
+
rdfs:label "appearance.border.width" ;
|
|
108
|
+
anatomy:valueKind "either" ;
|
|
109
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
110
|
+
|
|
111
|
+
anatomy:key.appearance.native
|
|
112
|
+
a anatomy:StyleKey ;
|
|
113
|
+
rdfs:label "appearance.native" ;
|
|
114
|
+
anatomy:valueKind "primitive" .
|
|
115
|
+
|
|
116
|
+
anatomy:key.appearance.opacity
|
|
117
|
+
a anatomy:StyleKey ;
|
|
118
|
+
rdfs:label "appearance.opacity" ;
|
|
119
|
+
anatomy:valueKind "primitive" ;
|
|
120
|
+
rdfs:comment "primitive though the reference reads a var() here: an opacity is a number the implementation writes; --form-input-opacity-disabled is component-local" .
|
|
121
|
+
|
|
122
|
+
anatomy:key.appearance.outline.color
|
|
123
|
+
a anatomy:StyleKey ;
|
|
124
|
+
rdfs:label "appearance.outline.color" ;
|
|
125
|
+
anatomy:valueKind "either" ;
|
|
126
|
+
anatomy:tokenNamespace "color." , "modifier.color." , "surface.color." .
|
|
127
|
+
|
|
128
|
+
anatomy:key.appearance.outline.offset
|
|
129
|
+
a anatomy:StyleKey ;
|
|
130
|
+
rdfs:label "appearance.outline.offset" ;
|
|
131
|
+
anatomy:valueKind "either" ;
|
|
132
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
133
|
+
|
|
134
|
+
anatomy:key.appearance.outline.style
|
|
135
|
+
a anatomy:StyleKey ;
|
|
136
|
+
rdfs:label "appearance.outline.style" ;
|
|
137
|
+
anatomy:valueKind "primitive" .
|
|
138
|
+
|
|
139
|
+
anatomy:key.appearance.outline.width
|
|
140
|
+
a anatomy:StyleKey ;
|
|
141
|
+
rdfs:label "appearance.outline.width" ;
|
|
142
|
+
anatomy:valueKind "either" ;
|
|
143
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
144
|
+
|
|
145
|
+
anatomy:key.appearance.radius
|
|
146
|
+
a anatomy:StyleKey ;
|
|
147
|
+
rdfs:label "appearance.radius" ;
|
|
148
|
+
anatomy:valueKind "either" ;
|
|
149
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
150
|
+
|
|
151
|
+
anatomy:key.appearance.visibility
|
|
152
|
+
a anatomy:StyleKey ;
|
|
153
|
+
rdfs:label "appearance.visibility" ;
|
|
154
|
+
anatomy:valueKind "primitive" .
|
|
155
|
+
|
|
156
|
+
anatomy:key.interaction.cursor
|
|
157
|
+
a anatomy:StyleKey ;
|
|
158
|
+
rdfs:label "interaction.cursor" ;
|
|
159
|
+
anatomy:valueKind "primitive" .
|
|
160
|
+
|
|
161
|
+
anatomy:key.interaction.pointerEvents
|
|
162
|
+
a anatomy:StyleKey ;
|
|
163
|
+
rdfs:label "interaction.pointerEvents" ;
|
|
164
|
+
anatomy:valueKind "primitive" .
|
|
165
|
+
|
|
166
|
+
anatomy:key.interaction.resize
|
|
167
|
+
a anatomy:StyleKey ;
|
|
168
|
+
rdfs:label "interaction.resize" ;
|
|
169
|
+
anatomy:valueKind "primitive" .
|
|
170
|
+
|
|
171
|
+
anatomy:key.interaction.select
|
|
172
|
+
a anatomy:StyleKey ;
|
|
173
|
+
rdfs:label "interaction.select" ;
|
|
174
|
+
anatomy:valueKind "primitive" .
|
|
175
|
+
|
|
176
|
+
anatomy:key.layout.align
|
|
177
|
+
a anatomy:StyleKey ;
|
|
178
|
+
rdfs:label "layout.align" ;
|
|
179
|
+
anatomy:valueKind "primitive" .
|
|
180
|
+
|
|
181
|
+
anatomy:key.layout.alignContent
|
|
182
|
+
a anatomy:StyleKey ;
|
|
183
|
+
rdfs:label "layout.alignContent" ;
|
|
184
|
+
anatomy:valueKind "primitive" .
|
|
185
|
+
|
|
186
|
+
anatomy:key.layout.alignSelf
|
|
187
|
+
a anatomy:StyleKey ;
|
|
188
|
+
rdfs:label "layout.alignSelf" ;
|
|
189
|
+
anatomy:valueKind "primitive" .
|
|
190
|
+
|
|
191
|
+
anatomy:key.layout.boxSizing
|
|
192
|
+
a anatomy:StyleKey ;
|
|
193
|
+
rdfs:label "layout.boxSizing" ;
|
|
194
|
+
anatomy:valueKind "primitive" .
|
|
195
|
+
|
|
196
|
+
anatomy:key.layout.container
|
|
197
|
+
a anatomy:StyleKey ;
|
|
198
|
+
rdfs:label "layout.container" ;
|
|
199
|
+
anatomy:valueKind "primitive" .
|
|
200
|
+
|
|
201
|
+
anatomy:key.layout.direction
|
|
202
|
+
a anatomy:StyleKey ;
|
|
203
|
+
rdfs:label "layout.direction" ;
|
|
204
|
+
anatomy:valueKind "primitive" .
|
|
205
|
+
|
|
206
|
+
anatomy:key.layout.flex.basis
|
|
207
|
+
a anatomy:StyleKey ;
|
|
208
|
+
rdfs:label "layout.flex.basis" ;
|
|
209
|
+
anatomy:valueKind "either" ;
|
|
210
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
211
|
+
|
|
212
|
+
anatomy:key.layout.flex.grow
|
|
213
|
+
a anatomy:StyleKey ;
|
|
214
|
+
rdfs:label "layout.flex.grow" ;
|
|
215
|
+
anatomy:valueKind "primitive" .
|
|
216
|
+
|
|
217
|
+
anatomy:key.layout.flex.shrink
|
|
218
|
+
a anatomy:StyleKey ;
|
|
219
|
+
rdfs:label "layout.flex.shrink" ;
|
|
220
|
+
anatomy:valueKind "primitive" .
|
|
221
|
+
|
|
222
|
+
anatomy:key.layout.grid.area
|
|
223
|
+
a anatomy:StyleKey ;
|
|
224
|
+
rdfs:label "layout.grid.area" ;
|
|
225
|
+
anatomy:valueKind "primitive" .
|
|
226
|
+
|
|
227
|
+
anatomy:key.layout.grid.autoFlow
|
|
228
|
+
a anatomy:StyleKey ;
|
|
229
|
+
rdfs:label "layout.grid.autoFlow" ;
|
|
230
|
+
anatomy:valueKind "primitive" .
|
|
231
|
+
|
|
232
|
+
anatomy:key.layout.grid.autoRows
|
|
233
|
+
a anatomy:StyleKey ;
|
|
234
|
+
rdfs:label "layout.grid.autoRows" ;
|
|
235
|
+
anatomy:valueKind "primitive" .
|
|
236
|
+
|
|
237
|
+
anatomy:key.layout.grid.column
|
|
238
|
+
a anatomy:StyleKey ;
|
|
239
|
+
rdfs:label "layout.grid.column" ;
|
|
240
|
+
anatomy:valueKind "primitive" ;
|
|
241
|
+
rdfs:comment "primitive though the reference reads a var() here: a track line or span is structure; --card-span and --form-field-columns are component-local counts, not symbols" .
|
|
242
|
+
|
|
243
|
+
anatomy:key.layout.grid.columns
|
|
244
|
+
a anatomy:StyleKey ;
|
|
245
|
+
rdfs:label "layout.grid.columns" ;
|
|
246
|
+
anatomy:valueKind "primitive" ;
|
|
247
|
+
rdfs:comment "primitive though the reference reads a var() here: a track list is structure; --choices-columns is a component-local count" .
|
|
248
|
+
|
|
249
|
+
anatomy:key.layout.grid.row
|
|
250
|
+
a anatomy:StyleKey ;
|
|
251
|
+
rdfs:label "layout.grid.row" ;
|
|
252
|
+
anatomy:valueKind "primitive" .
|
|
253
|
+
|
|
254
|
+
anatomy:key.layout.grid.rows
|
|
255
|
+
a anatomy:StyleKey ;
|
|
256
|
+
rdfs:label "layout.grid.rows" ;
|
|
257
|
+
anatomy:valueKind "primitive" .
|
|
258
|
+
|
|
259
|
+
anatomy:key.layout.justify
|
|
260
|
+
a anatomy:StyleKey ;
|
|
261
|
+
rdfs:label "layout.justify" ;
|
|
262
|
+
anatomy:valueKind "primitive" .
|
|
263
|
+
|
|
264
|
+
anatomy:key.layout.listStyle
|
|
265
|
+
a anatomy:StyleKey ;
|
|
266
|
+
rdfs:label "layout.listStyle" ;
|
|
267
|
+
anatomy:valueKind "primitive" .
|
|
268
|
+
|
|
269
|
+
anatomy:key.layout.objectFit
|
|
270
|
+
a anatomy:StyleKey ;
|
|
271
|
+
rdfs:label "layout.objectFit" ;
|
|
272
|
+
anatomy:valueKind "primitive" .
|
|
273
|
+
|
|
274
|
+
anatomy:key.layout.offset.block.end
|
|
275
|
+
a anatomy:StyleKey ;
|
|
276
|
+
rdfs:label "layout.offset.block.end" ;
|
|
277
|
+
anatomy:valueKind "token" ;
|
|
278
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
279
|
+
|
|
280
|
+
anatomy:key.layout.offset.block.start
|
|
281
|
+
a anatomy:StyleKey ;
|
|
282
|
+
rdfs:label "layout.offset.block.start" ;
|
|
283
|
+
anatomy:valueKind "token" ;
|
|
284
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
285
|
+
|
|
286
|
+
anatomy:key.layout.offset.bottom
|
|
287
|
+
a anatomy:StyleKey ;
|
|
288
|
+
rdfs:label "layout.offset.bottom" ;
|
|
289
|
+
anatomy:valueKind "either" ;
|
|
290
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
291
|
+
|
|
292
|
+
anatomy:key.layout.offset.inline.start
|
|
293
|
+
a anatomy:StyleKey ;
|
|
294
|
+
rdfs:label "layout.offset.inline.start" ;
|
|
295
|
+
anatomy:valueKind "token" ;
|
|
296
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
297
|
+
|
|
298
|
+
anatomy:key.layout.offset.left
|
|
299
|
+
a anatomy:StyleKey ;
|
|
300
|
+
rdfs:label "layout.offset.left" ;
|
|
301
|
+
anatomy:valueKind "either" ;
|
|
302
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
303
|
+
|
|
304
|
+
anatomy:key.layout.offset.right
|
|
305
|
+
a anatomy:StyleKey ;
|
|
306
|
+
rdfs:label "layout.offset.right" ;
|
|
307
|
+
anatomy:valueKind "either" ;
|
|
308
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
309
|
+
|
|
310
|
+
anatomy:key.layout.offset.top
|
|
311
|
+
a anatomy:StyleKey ;
|
|
312
|
+
rdfs:label "layout.offset.top" ;
|
|
313
|
+
anatomy:valueKind "either" ;
|
|
314
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
315
|
+
|
|
316
|
+
anatomy:key.layout.order
|
|
317
|
+
a anatomy:StyleKey ;
|
|
318
|
+
rdfs:label "layout.order" ;
|
|
319
|
+
anatomy:valueKind "primitive" .
|
|
320
|
+
|
|
321
|
+
anatomy:key.layout.overflow
|
|
322
|
+
a anatomy:StyleKey ;
|
|
323
|
+
rdfs:label "layout.overflow" ;
|
|
324
|
+
anatomy:valueKind "primitive" .
|
|
325
|
+
|
|
326
|
+
anatomy:key.layout.overflow.block
|
|
327
|
+
a anatomy:StyleKey ;
|
|
328
|
+
rdfs:label "layout.overflow.block" ;
|
|
329
|
+
anatomy:valueKind "primitive" .
|
|
330
|
+
|
|
331
|
+
anatomy:key.layout.overflow.inline
|
|
332
|
+
a anatomy:StyleKey ;
|
|
333
|
+
rdfs:label "layout.overflow.inline" ;
|
|
334
|
+
anatomy:valueKind "primitive" .
|
|
335
|
+
|
|
336
|
+
anatomy:key.layout.overscroll
|
|
337
|
+
a anatomy:StyleKey ;
|
|
338
|
+
rdfs:label "layout.overscroll" ;
|
|
339
|
+
anatomy:valueKind "primitive" .
|
|
340
|
+
|
|
341
|
+
anatomy:key.layout.position
|
|
342
|
+
a anatomy:StyleKey ;
|
|
343
|
+
rdfs:label "layout.position" ;
|
|
344
|
+
anatomy:valueKind "primitive" .
|
|
345
|
+
|
|
346
|
+
anatomy:key.layout.stack
|
|
347
|
+
a anatomy:StyleKey ;
|
|
348
|
+
rdfs:label "layout.stack" ;
|
|
349
|
+
anatomy:valueKind "primitive" ;
|
|
350
|
+
rdfs:comment "primitive though the reference reads a var() here: stacking order is structure; --z-index-overlay is a component-local scale, not a symbol" .
|
|
351
|
+
|
|
352
|
+
anatomy:key.layout.table.collapse
|
|
353
|
+
a anatomy:StyleKey ;
|
|
354
|
+
rdfs:label "layout.table.collapse" ;
|
|
355
|
+
anatomy:valueKind "primitive" .
|
|
356
|
+
|
|
357
|
+
anatomy:key.layout.table.layout
|
|
358
|
+
a anatomy:StyleKey ;
|
|
359
|
+
rdfs:label "layout.table.layout" ;
|
|
360
|
+
anatomy:valueKind "primitive" .
|
|
361
|
+
|
|
362
|
+
anatomy:key.layout.table.spacing
|
|
363
|
+
a anatomy:StyleKey ;
|
|
364
|
+
rdfs:label "layout.table.spacing" ;
|
|
365
|
+
anatomy:valueKind "primitive" .
|
|
366
|
+
|
|
367
|
+
anatomy:key.layout.type
|
|
368
|
+
a anatomy:StyleKey ;
|
|
369
|
+
rdfs:label "layout.type" ;
|
|
370
|
+
anatomy:valueKind "primitive" .
|
|
371
|
+
|
|
372
|
+
anatomy:key.layout.verticalAlign
|
|
373
|
+
a anatomy:StyleKey ;
|
|
374
|
+
rdfs:label "layout.verticalAlign" ;
|
|
375
|
+
anatomy:valueKind "primitive" .
|
|
376
|
+
|
|
377
|
+
anatomy:key.layout.wrap
|
|
378
|
+
a anatomy:StyleKey ;
|
|
379
|
+
rdfs:label "layout.wrap" ;
|
|
380
|
+
anatomy:valueKind "primitive" .
|
|
381
|
+
|
|
382
|
+
anatomy:key.motion.duration
|
|
383
|
+
a anatomy:StyleKey ;
|
|
384
|
+
rdfs:label "motion.duration" ;
|
|
385
|
+
anatomy:valueKind "either" ;
|
|
386
|
+
anatomy:tokenNamespace "motion." , "modifier.motion." , "surface.motion." .
|
|
387
|
+
|
|
388
|
+
anatomy:key.motion.easing
|
|
389
|
+
a anatomy:StyleKey ;
|
|
390
|
+
rdfs:label "motion.easing" ;
|
|
391
|
+
anatomy:valueKind "either" ;
|
|
392
|
+
anatomy:tokenNamespace "motion." , "modifier.motion." , "surface.motion." .
|
|
393
|
+
|
|
394
|
+
anatomy:key.motion.property
|
|
395
|
+
a anatomy:StyleKey ;
|
|
396
|
+
rdfs:label "motion.property" ;
|
|
397
|
+
anatomy:valueKind "primitive" .
|
|
398
|
+
|
|
399
|
+
anatomy:key.size.block
|
|
400
|
+
a anatomy:StyleKey ;
|
|
401
|
+
rdfs:label "size.block" ;
|
|
402
|
+
anatomy:valueKind "either" ;
|
|
403
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
404
|
+
|
|
405
|
+
anatomy:key.size.height
|
|
406
|
+
a anatomy:StyleKey ;
|
|
407
|
+
rdfs:label "size.height" ;
|
|
408
|
+
anatomy:valueKind "either" ;
|
|
409
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
410
|
+
|
|
411
|
+
anatomy:key.size.inline
|
|
412
|
+
a anatomy:StyleKey ;
|
|
413
|
+
rdfs:label "size.inline" ;
|
|
414
|
+
anatomy:valueKind "token" ;
|
|
415
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
416
|
+
|
|
417
|
+
anatomy:key.size.max.block
|
|
418
|
+
a anatomy:StyleKey ;
|
|
419
|
+
rdfs:label "size.max.block" ;
|
|
420
|
+
anatomy:valueKind "token" ;
|
|
421
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
422
|
+
|
|
423
|
+
anatomy:key.size.max.height
|
|
424
|
+
a anatomy:StyleKey ;
|
|
425
|
+
rdfs:label "size.max.height" ;
|
|
426
|
+
anatomy:valueKind "either" ;
|
|
427
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
428
|
+
|
|
429
|
+
anatomy:key.size.max.width
|
|
430
|
+
a anatomy:StyleKey ;
|
|
431
|
+
rdfs:label "size.max.width" ;
|
|
432
|
+
anatomy:valueKind "either" ;
|
|
433
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
434
|
+
|
|
435
|
+
anatomy:key.size.min.block
|
|
436
|
+
a anatomy:StyleKey ;
|
|
437
|
+
rdfs:label "size.min.block" ;
|
|
438
|
+
anatomy:valueKind "token" ;
|
|
439
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
440
|
+
|
|
441
|
+
anatomy:key.size.min.height
|
|
442
|
+
a anatomy:StyleKey ;
|
|
443
|
+
rdfs:label "size.min.height" ;
|
|
444
|
+
anatomy:valueKind "token" ;
|
|
445
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
446
|
+
|
|
447
|
+
anatomy:key.size.min.width
|
|
448
|
+
a anatomy:StyleKey ;
|
|
449
|
+
rdfs:label "size.min.width" ;
|
|
450
|
+
anatomy:valueKind "either" ;
|
|
451
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
452
|
+
|
|
453
|
+
anatomy:key.size.width
|
|
454
|
+
a anatomy:StyleKey ;
|
|
455
|
+
rdfs:label "size.width" ;
|
|
456
|
+
anatomy:valueKind "either" ;
|
|
457
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
458
|
+
|
|
459
|
+
anatomy:key.spacing.external.block.end
|
|
460
|
+
a anatomy:StyleKey ;
|
|
461
|
+
rdfs:label "spacing.external.block.end" ;
|
|
462
|
+
anatomy:valueKind "either" ;
|
|
463
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
464
|
+
|
|
465
|
+
anatomy:key.spacing.external.block.start
|
|
466
|
+
a anatomy:StyleKey ;
|
|
467
|
+
rdfs:label "spacing.external.block.start" ;
|
|
468
|
+
anatomy:valueKind "either" ;
|
|
469
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
470
|
+
|
|
471
|
+
anatomy:key.spacing.external.bottom
|
|
472
|
+
a anatomy:StyleKey ;
|
|
473
|
+
rdfs:label "spacing.external.bottom" ;
|
|
474
|
+
anatomy:valueKind "either" ;
|
|
475
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
476
|
+
|
|
477
|
+
anatomy:key.spacing.external.inline.end
|
|
478
|
+
a anatomy:StyleKey ;
|
|
479
|
+
rdfs:label "spacing.external.inline.end" ;
|
|
480
|
+
anatomy:valueKind "either" ;
|
|
481
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
482
|
+
|
|
483
|
+
anatomy:key.spacing.external.inline.start
|
|
484
|
+
a anatomy:StyleKey ;
|
|
485
|
+
rdfs:label "spacing.external.inline.start" ;
|
|
486
|
+
anatomy:valueKind "either" ;
|
|
487
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
488
|
+
|
|
489
|
+
anatomy:key.spacing.external.left
|
|
490
|
+
a anatomy:StyleKey ;
|
|
491
|
+
rdfs:label "spacing.external.left" ;
|
|
492
|
+
anatomy:valueKind "either" ;
|
|
493
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
494
|
+
|
|
495
|
+
anatomy:key.spacing.external.right
|
|
496
|
+
a anatomy:StyleKey ;
|
|
497
|
+
rdfs:label "spacing.external.right" ;
|
|
498
|
+
anatomy:valueKind "either" ;
|
|
499
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
500
|
+
|
|
501
|
+
anatomy:key.spacing.external.top
|
|
502
|
+
a anatomy:StyleKey ;
|
|
503
|
+
rdfs:label "spacing.external.top" ;
|
|
504
|
+
anatomy:valueKind "either" ;
|
|
505
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
506
|
+
|
|
507
|
+
anatomy:key.spacing.gap
|
|
508
|
+
a anatomy:StyleKey ;
|
|
509
|
+
rdfs:label "spacing.gap" ;
|
|
510
|
+
anatomy:valueKind "either" ;
|
|
511
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
512
|
+
|
|
513
|
+
anatomy:key.spacing.gap.block
|
|
514
|
+
a anatomy:StyleKey ;
|
|
515
|
+
rdfs:label "spacing.gap.block" ;
|
|
516
|
+
anatomy:valueKind "token" ;
|
|
517
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
518
|
+
|
|
519
|
+
anatomy:key.spacing.gap.inline
|
|
520
|
+
a anatomy:StyleKey ;
|
|
521
|
+
rdfs:label "spacing.gap.inline" ;
|
|
522
|
+
anatomy:valueKind "token" ;
|
|
523
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
524
|
+
|
|
525
|
+
anatomy:key.spacing.internal.block.end
|
|
526
|
+
a anatomy:StyleKey ;
|
|
527
|
+
rdfs:label "spacing.internal.block.end" ;
|
|
528
|
+
anatomy:valueKind "either" ;
|
|
529
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
530
|
+
|
|
531
|
+
anatomy:key.spacing.internal.block.start
|
|
532
|
+
a anatomy:StyleKey ;
|
|
533
|
+
rdfs:label "spacing.internal.block.start" ;
|
|
534
|
+
anatomy:valueKind "either" ;
|
|
535
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
536
|
+
|
|
537
|
+
anatomy:key.spacing.internal.bottom
|
|
538
|
+
a anatomy:StyleKey ;
|
|
539
|
+
rdfs:label "spacing.internal.bottom" ;
|
|
540
|
+
anatomy:valueKind "either" ;
|
|
541
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
542
|
+
|
|
543
|
+
anatomy:key.spacing.internal.inline.end
|
|
544
|
+
a anatomy:StyleKey ;
|
|
545
|
+
rdfs:label "spacing.internal.inline.end" ;
|
|
546
|
+
anatomy:valueKind "either" ;
|
|
547
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
548
|
+
|
|
549
|
+
anatomy:key.spacing.internal.inline.start
|
|
550
|
+
a anatomy:StyleKey ;
|
|
551
|
+
rdfs:label "spacing.internal.inline.start" ;
|
|
552
|
+
anatomy:valueKind "either" ;
|
|
553
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
554
|
+
|
|
555
|
+
anatomy:key.spacing.internal.left
|
|
556
|
+
a anatomy:StyleKey ;
|
|
557
|
+
rdfs:label "spacing.internal.left" ;
|
|
558
|
+
anatomy:valueKind "either" ;
|
|
559
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
560
|
+
|
|
561
|
+
anatomy:key.spacing.internal.top
|
|
562
|
+
a anatomy:StyleKey ;
|
|
563
|
+
rdfs:label "spacing.internal.top" ;
|
|
564
|
+
anatomy:valueKind "either" ;
|
|
565
|
+
anatomy:tokenNamespace "spacing." , "modifier.spacing." , "surface.spacing." .
|
|
566
|
+
|
|
567
|
+
anatomy:key.typography.align
|
|
568
|
+
a anatomy:StyleKey ;
|
|
569
|
+
rdfs:label "typography.align" ;
|
|
570
|
+
anatomy:valueKind "primitive" .
|
|
571
|
+
|
|
572
|
+
anatomy:key.typography.color
|
|
573
|
+
a anatomy:StyleKey ;
|
|
574
|
+
rdfs:label "typography.color" ;
|
|
575
|
+
anatomy:valueKind "either" ;
|
|
576
|
+
anatomy:tokenNamespace "color." , "modifier.color." , "surface.color." .
|
|
577
|
+
|
|
578
|
+
anatomy:key.typography.decoration
|
|
579
|
+
a anatomy:StyleKey ;
|
|
580
|
+
rdfs:label "typography.decoration" ;
|
|
581
|
+
anatomy:valueKind "primitive" .
|
|
582
|
+
|
|
583
|
+
anatomy:key.typography.decoration.offset
|
|
584
|
+
a anatomy:StyleKey ;
|
|
585
|
+
rdfs:label "typography.decoration.offset" ;
|
|
586
|
+
anatomy:valueKind "token" ;
|
|
587
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
588
|
+
|
|
589
|
+
anatomy:key.typography.decoration.thickness
|
|
590
|
+
a anatomy:StyleKey ;
|
|
591
|
+
rdfs:label "typography.decoration.thickness" ;
|
|
592
|
+
anatomy:valueKind "either" ;
|
|
593
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
594
|
+
|
|
595
|
+
anatomy:key.typography.direction
|
|
596
|
+
a anatomy:StyleKey ;
|
|
597
|
+
rdfs:label "typography.direction" ;
|
|
598
|
+
anatomy:valueKind "primitive" .
|
|
599
|
+
|
|
600
|
+
anatomy:key.typography.font
|
|
601
|
+
a anatomy:StyleKey ;
|
|
602
|
+
rdfs:label "typography.font" ;
|
|
603
|
+
anatomy:valueKind "either" ;
|
|
604
|
+
anatomy:tokenNamespace "typography." , "modifier.typography." , "surface.typography." .
|
|
605
|
+
|
|
606
|
+
anatomy:key.typography.fontFamily
|
|
607
|
+
a anatomy:StyleKey ;
|
|
608
|
+
rdfs:label "typography.fontFamily" ;
|
|
609
|
+
anatomy:valueKind "either" ;
|
|
610
|
+
anatomy:tokenNamespace "typography." , "modifier.typography." , "surface.typography." .
|
|
611
|
+
|
|
612
|
+
anatomy:key.typography.letterSpacing
|
|
613
|
+
a anatomy:StyleKey ;
|
|
614
|
+
rdfs:label "typography.letterSpacing" ;
|
|
615
|
+
anatomy:valueKind "either" ;
|
|
616
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
617
|
+
|
|
618
|
+
anatomy:key.typography.lineHeight
|
|
619
|
+
a anatomy:StyleKey ;
|
|
620
|
+
rdfs:label "typography.lineHeight" ;
|
|
621
|
+
anatomy:valueKind "either" ;
|
|
622
|
+
anatomy:tokenNamespace "typography." , "modifier.typography." , "surface.typography." .
|
|
623
|
+
|
|
624
|
+
anatomy:key.typography.overflow
|
|
625
|
+
a anatomy:StyleKey ;
|
|
626
|
+
rdfs:label "typography.overflow" ;
|
|
627
|
+
anatomy:valueKind "primitive" .
|
|
628
|
+
|
|
629
|
+
anatomy:key.typography.size
|
|
630
|
+
a anatomy:StyleKey ;
|
|
631
|
+
rdfs:label "typography.size" ;
|
|
632
|
+
anatomy:valueKind "either" ;
|
|
633
|
+
anatomy:tokenNamespace "dimension." , "modifier.dimension." , "surface.dimension." .
|
|
634
|
+
|
|
635
|
+
anatomy:key.typography.variant.caps
|
|
636
|
+
a anatomy:StyleKey ;
|
|
637
|
+
rdfs:label "typography.variant.caps" ;
|
|
638
|
+
anatomy:valueKind "primitive" .
|
|
639
|
+
|
|
640
|
+
anatomy:key.typography.variant.numeric
|
|
641
|
+
a anatomy:StyleKey ;
|
|
642
|
+
rdfs:label "typography.variant.numeric" ;
|
|
643
|
+
anatomy:valueKind "primitive" .
|
|
644
|
+
|
|
645
|
+
anatomy:key.typography.weight
|
|
646
|
+
a anatomy:StyleKey ;
|
|
647
|
+
rdfs:label "typography.weight" ;
|
|
648
|
+
anatomy:valueKind "either" ;
|
|
649
|
+
anatomy:tokenNamespace "typography." , "modifier.typography." , "surface.typography." .
|
|
650
|
+
|
|
651
|
+
anatomy:key.typography.whiteSpace
|
|
652
|
+
a anatomy:StyleKey ;
|
|
653
|
+
rdfs:label "typography.whiteSpace" ;
|
|
654
|
+
anatomy:valueKind "primitive" .
|
|
655
|
+
|
|
656
|
+
anatomy:key.typography.wrap
|
|
657
|
+
a anatomy:StyleKey ;
|
|
658
|
+
rdfs:label "typography.wrap" ;
|
|
659
|
+
anatomy:valueKind "primitive" .
|