@stylexjs/shared 0.2.0-beta.21 → 0.2.0-beta.23

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. package/lib/convert-to-className.js +6 -6
  2. package/lib/generate-css-rule.js +3 -3
  3. package/lib/hash.js +10 -11
  4. package/lib/index.d.ts +4 -4
  5. package/lib/index.js +12 -21
  6. package/lib/index.js.flow +4 -4
  7. package/lib/messages.d.ts +2 -1
  8. package/lib/messages.js +29 -54
  9. package/lib/messages.js.flow +2 -1
  10. package/lib/physical-rtl/generate-ltr.js +39 -39
  11. package/lib/physical-rtl/generate-rtl.js +57 -57
  12. package/lib/preprocess-rules/PreRule.js +2 -2
  13. package/lib/preprocess-rules/application-order.d.ts +36 -8
  14. package/lib/preprocess-rules/application-order.js +149 -164
  15. package/lib/preprocess-rules/application-order.js.flow +35 -7
  16. package/lib/preprocess-rules/basic-validation.js +6 -6
  17. package/lib/preprocess-rules/flatten-raw-style-obj.js +10 -10
  18. package/lib/preprocess-rules/index.js +6 -6
  19. package/lib/preprocess-rules/legacy-expand-shorthands.d.ts +22 -2
  20. package/lib/preprocess-rules/legacy-expand-shorthands.js +81 -65
  21. package/lib/preprocess-rules/legacy-expand-shorthands.js.flow +22 -2
  22. package/lib/preprocess-rules/property-specificity.d.ts +29 -25
  23. package/lib/preprocess-rules/property-specificity.js +63 -75
  24. package/lib/preprocess-rules/property-specificity.js.flow +28 -24
  25. package/lib/properties/CSS Animations.json +445 -0
  26. package/lib/properties/CSS Backgrounds and Borders.json +1085 -0
  27. package/lib/properties/CSS Basic User Interface.json +365 -0
  28. package/lib/properties/CSS Box Alignment.json +245 -0
  29. package/lib/properties/CSS Box Model.json +501 -0
  30. package/lib/properties/CSS Color.json +100 -0
  31. package/lib/properties/CSS Columns.json +185 -0
  32. package/lib/properties/CSS Containment.json +203 -0
  33. package/lib/properties/CSS Counter Styles.json +56 -0
  34. package/lib/properties/CSS Display.json +20 -0
  35. package/lib/properties/CSS Flexible Box Layout.json +167 -0
  36. package/lib/properties/CSS Fonts.json +684 -0
  37. package/lib/properties/CSS Fragmentation.json +110 -0
  38. package/lib/properties/CSS Generated Content.json +38 -0
  39. package/lib/properties/CSS Grid Layout.json +500 -0
  40. package/lib/properties/CSS Images.json +91 -0
  41. package/lib/properties/CSS Inline.json +38 -0
  42. package/lib/properties/CSS Lists and Counters.json +86 -0
  43. package/lib/properties/CSS Logical Properties.json +1086 -0
  44. package/lib/properties/CSS Masking.json +399 -0
  45. package/lib/properties/CSS Miscellaneous.json +38 -0
  46. package/lib/properties/CSS Motion Path.json +132 -0
  47. package/lib/properties/CSS Overflow.json +216 -0
  48. package/lib/properties/CSS Pages.json +83 -0
  49. package/lib/properties/CSS Positioning.json +166 -0
  50. package/lib/properties/CSS Ruby.json +55 -0
  51. package/lib/properties/CSS Scroll Anchoring.json +19 -0
  52. package/lib/properties/CSS Scroll Snap.json +604 -0
  53. package/lib/properties/CSS Scrollbars.json +38 -0
  54. package/lib/properties/CSS Shapes.json +56 -0
  55. package/lib/properties/CSS Speech.json +20 -0
  56. package/lib/properties/CSS Table.json +115 -0
  57. package/lib/properties/CSS Text Decoration.json +312 -0
  58. package/lib/properties/CSS Text.json +415 -0
  59. package/lib/properties/CSS Transforms.json +188 -0
  60. package/lib/properties/CSS Transitions.json +122 -0
  61. package/lib/properties/CSS Variables.json +20 -0
  62. package/lib/properties/CSS View Transitions.json +20 -0
  63. package/lib/properties/CSS Will Change.json +20 -0
  64. package/lib/properties/CSS Writing Modes.json +92 -0
  65. package/lib/properties/Compositing and Blending.json +62 -0
  66. package/lib/properties/Filter Effects.json +38 -0
  67. package/lib/properties/MathML.json +56 -0
  68. package/lib/properties/Microsoft Extensions.json +885 -0
  69. package/lib/properties/Mozilla Extensions.json +607 -0
  70. package/lib/properties/Pointer Events.json +20 -0
  71. package/lib/properties/WebKit Extensions.json +707 -0
  72. package/lib/properties.json +10122 -0
  73. package/lib/{stylex-override-vars.d.ts → stylex-create-theme.d.ts} +2 -2
  74. package/lib/{stylex-override-vars.js → stylex-create-theme.js} +13 -13
  75. package/lib/{stylex-override-vars.js.flow → stylex-create-theme.js.flow} +1 -1
  76. package/lib/stylex-create.js +1 -1
  77. package/lib/{stylex-create-vars.d.ts → stylex-define-vars.d.ts} +2 -2
  78. package/lib/{stylex-create-vars.js → stylex-define-vars.js} +9 -9
  79. package/lib/{stylex-create-vars.js.flow → stylex-define-vars.js.flow} +1 -1
  80. package/lib/stylex-keyframes.js +6 -6
  81. package/lib/transform-value.js +13 -15
  82. package/lib/types/index.js +33 -46
  83. package/lib/utils/dashify.js +1 -1
  84. package/lib/utils/default-options.js +4 -5
  85. package/lib/utils/file-based-identifier.js +1 -1
  86. package/lib/utils/genCSSRule.js +6 -6
  87. package/lib/utils/normalize-value.js +3 -2
  88. package/lib/utils/normalizers/convert-camel-case-transition-props.d.ts +14 -0
  89. package/lib/utils/normalizers/convert-camel-case-transition-props.js +23 -0
  90. package/lib/utils/normalizers/convert-camel-case-transition-props.js.flow +13 -0
  91. package/lib/utils/normalizers/convert-camel-case-values.d.ts +14 -0
  92. package/lib/utils/normalizers/convert-camel-case-values.js +23 -0
  93. package/lib/utils/normalizers/convert-camel-case-values.js.flow +13 -0
  94. package/lib/utils/normalizers/detect-unclosed-fns.js +2 -2
  95. package/lib/utils/normalizers/font-size-px-to-rem.js +4 -4
  96. package/lib/utils/normalizers/leading-zero.js +3 -3
  97. package/lib/utils/normalizers/quotes.js +4 -4
  98. package/lib/utils/normalizers/timings.js +4 -4
  99. package/lib/utils/normalizers/whitespace.js +12 -12
  100. package/lib/utils/normalizers/zero-dimensions.js +8 -8
  101. package/lib/utils/object-utils.d.ts +3 -6
  102. package/lib/utils/object-utils.js +2 -2
  103. package/lib/utils/property-priorities.js +527 -88
  104. package/lib/utils/split-css-value.js +8 -8
  105. package/lib/validate.js +2 -2
  106. package/package.json +2 -2
@@ -31,8 +31,6 @@ declare const shorthands: {
31
31
  borderBottom: (_rawValue: TStyleValue) => TReturn,
32
32
  borderInlineStart: (_rawValue: TStyleValue) => TReturn,
33
33
  borderLeft: (_rawValue: TStyleValue) => TReturn,
34
- margin: (value: TStyleValue) => TReturn,
35
- padding: (rawValue: TStyleValue) => TReturn,
36
34
  };
37
35
 
38
36
  declare const aliases: {
@@ -48,44 +46,50 @@ declare const aliases: {
48
46
  minInlineSize: (val: TStyleValue) => TReturn,
49
47
  maxBlockSize: (val: TStyleValue) => TReturn,
50
48
  maxInlineSize: (val: TStyleValue) => TReturn,
51
- borderHorizontalWidth: (value: TStyleValue) => TReturn,
52
- borderHorizontalStyle: (value: TStyleValue) => TReturn,
53
- borderHorizontalColor: (value: TStyleValue) => TReturn,
54
- borderVerticalWidth: (value: TStyleValue) => TReturn,
55
- borderVerticalStyle: (value: TStyleValue) => TReturn,
56
- borderVerticalColor: (value: TStyleValue) => TReturn,
49
+ borderHorizontalWidth: (val: TStyleValue) => TReturn,
50
+ borderHorizontalStyle: (val: TStyleValue) => TReturn,
51
+ borderHorizontalColor: (val: TStyleValue) => TReturn,
52
+ borderVerticalWidth: (val: TStyleValue) => TReturn,
53
+ borderVerticalStyle: (val: TStyleValue) => TReturn,
54
+ borderVerticalColor: (val: TStyleValue) => TReturn,
57
55
  borderBlockStartColor: (value: TStyleValue) => TReturn,
58
56
  borderBlockEndColor: (value: TStyleValue) => TReturn,
59
57
  borderBlockStartStyle: (value: TStyleValue) => TReturn,
60
58
  borderBlockEndStyle: (value: TStyleValue) => TReturn,
61
59
  borderBlockStartWidth: (value: TStyleValue) => TReturn,
62
60
  borderBlockEndWidth: (value: TStyleValue) => TReturn,
63
- borderStartColor: (value: TStyleValue) => TReturn,
64
- borderEndColor: (value: TStyleValue) => TReturn,
65
- borderStartStyle: (value: TStyleValue) => TReturn,
66
- borderEndStyle: (value: TStyleValue) => TReturn,
67
- borderStartWidth: (value: TStyleValue) => TReturn,
68
- borderEndWidth: (value: TStyleValue) => TReturn,
61
+ borderStartColor: (val: TStyleValue) => TReturn,
62
+ borderEndColor: (val: TStyleValue) => TReturn,
63
+ borderStartStyle: (val: TStyleValue) => TReturn,
64
+ borderEndStyle: (val: TStyleValue) => TReturn,
65
+ borderStartWidth: (val: TStyleValue) => TReturn,
66
+ borderEndWidth: (val: TStyleValue) => TReturn,
69
67
  borderTopStartRadius: (value: TStyleValue) => TReturn,
70
68
  borderTopEndRadius: (value: TStyleValue) => TReturn,
71
69
  borderBottomStartRadius: (value: TStyleValue) => TReturn,
72
70
  borderBottomEndRadius: (value: TStyleValue) => TReturn,
71
+ containIntrinsicBlockSize: (value: TStyleValue) => TReturn,
72
+ containIntrinsicInlineSize: (value: TStyleValue) => TReturn,
73
73
  marginBlockStart: (value: TStyleValue) => TReturn,
74
74
  marginBlockEnd: (value: TStyleValue) => TReturn,
75
- marginStart: (value: TStyleValue) => TReturn,
76
- marginEnd: (value: TStyleValue) => TReturn,
77
- marginHorizontal: (value: TStyleValue) => TReturn,
78
- marginVertical: (value: TStyleValue) => TReturn,
75
+ marginStart: (val: TStyleValue) => TReturn,
76
+ marginEnd: (val: TStyleValue) => TReturn,
77
+ marginHorizontal: (val: TStyleValue) => TReturn,
78
+ marginVertical: (val: TStyleValue) => TReturn,
79
+ overflowBlock: (value: TStyleValue) => TReturn,
80
+ overflowInline: (value: TStyleValue) => TReturn,
79
81
  paddingBlockStart: (rawValue: TStyleValue) => TReturn,
80
82
  paddingBlockEnd: (rawValue: TStyleValue) => TReturn,
81
- paddingStart: (value: TStyleValue) => TReturn,
82
- paddingEnd: (value: TStyleValue) => TReturn,
83
- paddingHorizontal: (value: TStyleValue) => TReturn,
84
- paddingVertical: (value: TStyleValue) => TReturn,
83
+ paddingStart: (val: TStyleValue) => TReturn,
84
+ paddingEnd: (val: TStyleValue) => TReturn,
85
+ paddingHorizontal: (val: TStyleValue) => TReturn,
86
+ paddingVertical: (val: TStyleValue) => TReturn,
87
+ scrollMarginBlockStart: (value: TStyleValue) => TReturn,
88
+ scrollMarginBlockEnd: (value: TStyleValue) => TReturn,
85
89
  insetBlockStart: (value: TStyleValue) => TReturn,
86
90
  insetBlockEnd: (value: TStyleValue) => TReturn,
87
- start: (value: TStyleValue) => TReturn,
88
- end: (value: TStyleValue) => TReturn,
91
+ start: (val: TStyleValue) => TReturn,
92
+ end: (val: TStyleValue) => TReturn,
89
93
  };
90
94
 
91
95
  declare export default $ReadOnly<{
@@ -0,0 +1,445 @@
1
+ [
2
+ {
3
+ "syntax": "<single-animation>#",
4
+ "media": "visual",
5
+ "inherited": false,
6
+ "animationType": "notAnimatable",
7
+ "percentages": "no",
8
+ "groups": [
9
+ "CSS Animations"
10
+ ],
11
+ "initial": [
12
+ "animation-name",
13
+ "animation-duration",
14
+ "animation-timing-function",
15
+ "animation-delay",
16
+ "animation-iteration-count",
17
+ "animation-direction",
18
+ "animation-fill-mode",
19
+ "animation-play-state",
20
+ "animation-timeline"
21
+ ],
22
+ "appliesto": "allElements",
23
+ "computed": [
24
+ "animation-name",
25
+ "animation-duration",
26
+ "animation-timing-function",
27
+ "animation-delay",
28
+ "animation-direction",
29
+ "animation-iteration-count",
30
+ "animation-fill-mode",
31
+ "animation-play-state",
32
+ "animation-timeline"
33
+ ],
34
+ "order": "perGrammar",
35
+ "status": "standard",
36
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation",
37
+ "property": "animation",
38
+ "group": "CSS Animations"
39
+ },
40
+ {
41
+ "syntax": "<single-animation-composition>#",
42
+ "media": "visual",
43
+ "inherited": false,
44
+ "animationType": "notAnimatable",
45
+ "percentages": "no",
46
+ "groups": [
47
+ "CSS Animations"
48
+ ],
49
+ "initial": "replace",
50
+ "appliesto": "allElements",
51
+ "computed": "asSpecified",
52
+ "order": "uniqueOrder",
53
+ "status": "experimental",
54
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-composition",
55
+ "property": "animation-composition",
56
+ "group": "CSS Animations"
57
+ },
58
+ {
59
+ "syntax": "<time>#",
60
+ "media": "visual",
61
+ "inherited": false,
62
+ "animationType": "notAnimatable",
63
+ "percentages": "no",
64
+ "groups": [
65
+ "CSS Animations"
66
+ ],
67
+ "initial": "0s",
68
+ "appliesto": "allElementsAndPseudos",
69
+ "computed": "asSpecified",
70
+ "order": "uniqueOrder",
71
+ "status": "standard",
72
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-delay",
73
+ "property": "animation-delay",
74
+ "group": "CSS Animations"
75
+ },
76
+ {
77
+ "syntax": "<single-animation-direction>#",
78
+ "media": "visual",
79
+ "inherited": false,
80
+ "animationType": "notAnimatable",
81
+ "percentages": "no",
82
+ "groups": [
83
+ "CSS Animations"
84
+ ],
85
+ "initial": "normal",
86
+ "appliesto": "allElementsAndPseudos",
87
+ "computed": "asSpecified",
88
+ "order": "uniqueOrder",
89
+ "status": "standard",
90
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-direction",
91
+ "property": "animation-direction",
92
+ "group": "CSS Animations"
93
+ },
94
+ {
95
+ "syntax": "<time>#",
96
+ "media": "visual",
97
+ "inherited": false,
98
+ "animationType": "notAnimatable",
99
+ "percentages": "no",
100
+ "groups": [
101
+ "CSS Animations"
102
+ ],
103
+ "initial": "0s",
104
+ "appliesto": "allElementsAndPseudos",
105
+ "computed": "asSpecified",
106
+ "order": "uniqueOrder",
107
+ "status": "standard",
108
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-duration",
109
+ "property": "animation-duration",
110
+ "group": "CSS Animations"
111
+ },
112
+ {
113
+ "syntax": "<single-animation-fill-mode>#",
114
+ "media": "visual",
115
+ "inherited": false,
116
+ "animationType": "notAnimatable",
117
+ "percentages": "no",
118
+ "groups": [
119
+ "CSS Animations"
120
+ ],
121
+ "initial": "none",
122
+ "appliesto": "allElementsAndPseudos",
123
+ "computed": "asSpecified",
124
+ "order": "uniqueOrder",
125
+ "status": "standard",
126
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode",
127
+ "property": "animation-fill-mode",
128
+ "group": "CSS Animations"
129
+ },
130
+ {
131
+ "syntax": "<single-animation-iteration-count>#",
132
+ "media": "visual",
133
+ "inherited": false,
134
+ "animationType": "notAnimatable",
135
+ "percentages": "no",
136
+ "groups": [
137
+ "CSS Animations"
138
+ ],
139
+ "initial": "1",
140
+ "appliesto": "allElementsAndPseudos",
141
+ "computed": "asSpecified",
142
+ "order": "uniqueOrder",
143
+ "status": "standard",
144
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count",
145
+ "property": "animation-iteration-count",
146
+ "group": "CSS Animations"
147
+ },
148
+ {
149
+ "syntax": "[ none | <keyframes-name> ]#",
150
+ "media": "visual",
151
+ "inherited": false,
152
+ "animationType": "notAnimatable",
153
+ "percentages": "no",
154
+ "groups": [
155
+ "CSS Animations"
156
+ ],
157
+ "initial": "none",
158
+ "appliesto": "allElementsAndPseudos",
159
+ "computed": "asSpecified",
160
+ "order": "uniqueOrder",
161
+ "status": "standard",
162
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-name",
163
+ "property": "animation-name",
164
+ "group": "CSS Animations"
165
+ },
166
+ {
167
+ "syntax": "<single-animation-play-state>#",
168
+ "media": "visual",
169
+ "inherited": false,
170
+ "animationType": "notAnimatable",
171
+ "percentages": "no",
172
+ "groups": [
173
+ "CSS Animations"
174
+ ],
175
+ "initial": "running",
176
+ "appliesto": "allElementsAndPseudos",
177
+ "computed": "asSpecified",
178
+ "order": "uniqueOrder",
179
+ "status": "standard",
180
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-play-state",
181
+ "property": "animation-play-state",
182
+ "group": "CSS Animations"
183
+ },
184
+ {
185
+ "syntax": "[ <'animation-range-start'> <'animation-range-end'>? ]#",
186
+ "media": "visual",
187
+ "inherited": false,
188
+ "animationType": [
189
+ "animation-range-start",
190
+ "animation-range-end"
191
+ ],
192
+ "percentages": "relativeToTimelineRangeIfSpecifiedOtherwiseEntireTimeline",
193
+ "groups": [
194
+ "CSS Animations"
195
+ ],
196
+ "initial": [
197
+ "animation-range-start",
198
+ "animation-range-end"
199
+ ],
200
+ "appliesto": "allElements",
201
+ "computed": [
202
+ "animation-range-start",
203
+ "animation-range-end"
204
+ ],
205
+ "order": "perGrammar",
206
+ "status": "experimental",
207
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-range",
208
+ "property": "animation-range",
209
+ "group": "CSS Animations"
210
+ },
211
+ {
212
+ "syntax": "[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#",
213
+ "media": "visual",
214
+ "inherited": false,
215
+ "animationType": "notAnimatable",
216
+ "percentages": "relativeToTimelineRangeIfSpecifiedOtherwiseEntireTimeline",
217
+ "groups": [
218
+ "CSS Animations"
219
+ ],
220
+ "initial": "normal",
221
+ "appliesto": "allElements",
222
+ "computed": "listEachItemConsistingOfNormalLengthPercentageOrNameLengthPercentage",
223
+ "order": "perGrammar",
224
+ "status": "experimental",
225
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-range-end",
226
+ "property": "animation-range-end",
227
+ "group": "CSS Animations"
228
+ },
229
+ {
230
+ "syntax": "[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#",
231
+ "media": "visual",
232
+ "inherited": false,
233
+ "animationType": "notAnimatable",
234
+ "percentages": "relativeToTimelineRangeIfSpecifiedOtherwiseEntireTimeline",
235
+ "groups": [
236
+ "CSS Animations"
237
+ ],
238
+ "initial": "normal",
239
+ "appliesto": "allElements",
240
+ "computed": "listEachItemConsistingOfNormalLengthPercentageOrNameLengthPercentage",
241
+ "order": "perGrammar",
242
+ "status": "experimental",
243
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-range-start",
244
+ "property": "animation-range-start",
245
+ "group": "CSS Animations"
246
+ },
247
+ {
248
+ "syntax": "<easing-function>#",
249
+ "media": "visual",
250
+ "inherited": false,
251
+ "animationType": "notAnimatable",
252
+ "percentages": "no",
253
+ "groups": [
254
+ "CSS Animations"
255
+ ],
256
+ "initial": "ease",
257
+ "appliesto": "allElementsAndPseudos",
258
+ "computed": "asSpecified",
259
+ "order": "uniqueOrder",
260
+ "status": "standard",
261
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-timing-function",
262
+ "property": "animation-timing-function",
263
+ "group": "CSS Animations"
264
+ },
265
+ {
266
+ "syntax": "<single-animation-timeline>#",
267
+ "media": "visual",
268
+ "inherited": false,
269
+ "animationType": "notAnimatable",
270
+ "percentages": "no",
271
+ "groups": [
272
+ "CSS Animations"
273
+ ],
274
+ "initial": "auto",
275
+ "appliesto": "allElements",
276
+ "computed": "listEachItemIdentifierOrNoneAuto",
277
+ "order": "perGrammar",
278
+ "status": "experimental",
279
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-timeline",
280
+ "property": "animation-timeline",
281
+ "group": "CSS Animations"
282
+ },
283
+ {
284
+ "syntax": "[ <'scroll-timeline-name'> <'scroll-timeline-axis'>? ]#",
285
+ "media": "visual",
286
+ "inherited": false,
287
+ "animationType": [
288
+ "scroll-timeline-name",
289
+ "scroll-timeline-axis"
290
+ ],
291
+ "percentages": "no",
292
+ "groups": [
293
+ "CSS Animations"
294
+ ],
295
+ "initial": [
296
+ "scroll-timeline-name",
297
+ "scroll-timeline-axis"
298
+ ],
299
+ "appliesto": "scrollContainers",
300
+ "computed": [
301
+ "scroll-timeline-name",
302
+ "scroll-timeline-axis"
303
+ ],
304
+ "order": "perGrammar",
305
+ "status": "experimental",
306
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-timeline",
307
+ "property": "scroll-timeline",
308
+ "group": "CSS Animations"
309
+ },
310
+ {
311
+ "syntax": "[ block | inline | x | y ]#",
312
+ "media": "interactive",
313
+ "inherited": false,
314
+ "animationType": "notAnimatable",
315
+ "percentages": "no",
316
+ "groups": [
317
+ "CSS Animations"
318
+ ],
319
+ "initial": "block",
320
+ "appliesto": "scrollContainers",
321
+ "computed": "asSpecified",
322
+ "order": "perGrammar",
323
+ "status": "experimental",
324
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-timeline-axis",
325
+ "property": "scroll-timeline-axis",
326
+ "group": "CSS Animations"
327
+ },
328
+ {
329
+ "syntax": "none | <dashed-ident>#",
330
+ "media": "interactive",
331
+ "inherited": false,
332
+ "animationType": "notAnimatable",
333
+ "percentages": "no",
334
+ "groups": [
335
+ "CSS Animations"
336
+ ],
337
+ "initial": "none",
338
+ "appliesto": "scrollContainers",
339
+ "computed": "noneOrOrderedListOfIdentifiers",
340
+ "order": "perGrammar",
341
+ "status": "experimental",
342
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-timeline-name",
343
+ "property": "scroll-timeline-name",
344
+ "group": "CSS Animations"
345
+ },
346
+ {
347
+ "syntax": "none | <dashed-ident>#",
348
+ "media": "interactive",
349
+ "inherited": false,
350
+ "animationType": "notAnimatable",
351
+ "percentages": "no",
352
+ "groups": [
353
+ "CSS Animations"
354
+ ],
355
+ "initial": "none",
356
+ "appliesto": "allElements",
357
+ "computed": "noneOrOrderedListOfIdentifiers",
358
+ "order": "perGrammar",
359
+ "status": "experimental",
360
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/timeline-scope",
361
+ "property": "timeline-scope",
362
+ "group": "CSS Animations"
363
+ },
364
+ {
365
+ "syntax": "[ <'view-timeline-name'> <'view-timeline-axis'>? ]#",
366
+ "media": "visual",
367
+ "inherited": false,
368
+ "animationType": [
369
+ "view-timeline-name",
370
+ "view-timeline-axis"
371
+ ],
372
+ "percentages": "no",
373
+ "groups": [
374
+ "CSS Animations"
375
+ ],
376
+ "initial": [
377
+ "view-timeline-name",
378
+ "view-timeline-axis"
379
+ ],
380
+ "appliesto": "allElements",
381
+ "computed": [
382
+ "view-timeline-name",
383
+ "view-timeline-axis"
384
+ ],
385
+ "order": "perGrammar",
386
+ "status": "experimental",
387
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/view-timeline",
388
+ "property": "view-timeline",
389
+ "group": "CSS Animations"
390
+ },
391
+ {
392
+ "syntax": "[ block | inline | x | y ]#",
393
+ "media": "interactive",
394
+ "inherited": false,
395
+ "animationType": "notAnimatable",
396
+ "percentages": "no",
397
+ "groups": [
398
+ "CSS Animations"
399
+ ],
400
+ "initial": "block",
401
+ "appliesto": "allElements",
402
+ "computed": "asSpecified",
403
+ "order": "perGrammar",
404
+ "status": "experimental",
405
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/view-timeline-axis",
406
+ "property": "view-timeline-axis",
407
+ "group": "CSS Animations"
408
+ },
409
+ {
410
+ "syntax": "[ [ auto | <length-percentage> ]{1,2} ]#",
411
+ "media": "interactive",
412
+ "inherited": false,
413
+ "animationType": "byComputedValueType",
414
+ "percentages": "relativeToCorrespondingDimensionOfRelevantScrollport",
415
+ "groups": [
416
+ "CSS Animations"
417
+ ],
418
+ "initial": "auto",
419
+ "appliesto": "allElements",
420
+ "computed": "listEachItemConsistingOfPairsOfAutoOrLengthPercentage",
421
+ "order": "perGrammar",
422
+ "status": "experimental",
423
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/view-timeline-inset",
424
+ "property": "view-timeline-inset",
425
+ "group": "CSS Animations"
426
+ },
427
+ {
428
+ "syntax": "none | <dashed-ident>#",
429
+ "media": "interactive",
430
+ "inherited": false,
431
+ "animationType": "notAnimatable",
432
+ "percentages": "no",
433
+ "groups": [
434
+ "CSS Animations"
435
+ ],
436
+ "initial": "none",
437
+ "appliesto": "allElements",
438
+ "computed": "noneOrOrderedListOfIdentifiers",
439
+ "order": "perGrammar",
440
+ "status": "experimental",
441
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/view-timeline-name",
442
+ "property": "view-timeline-name",
443
+ "group": "CSS Animations"
444
+ }
445
+ ]