@stylexjs/shared 0.2.0-beta.9 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (183) hide show
  1. package/README.md +3 -3
  2. package/lib/common-types.d.ts +49 -0
  3. package/lib/common-types.js.flow +64 -0
  4. package/lib/convert-to-className.d.ts +16 -0
  5. package/lib/convert-to-className.js +17 -26
  6. package/lib/convert-to-className.js.flow +23 -0
  7. package/lib/generate-css-rule.d.ts +17 -0
  8. package/lib/generate-css-rule.js +6 -17
  9. package/lib/generate-css-rule.js.flow +17 -0
  10. package/lib/hash.d.ts +11 -0
  11. package/lib/hash.js +3 -27
  12. package/lib/hash.js.flow +10 -0
  13. package/lib/index.d.ts +42 -85
  14. package/lib/index.js +21 -29
  15. package/lib/index.js.flow +57 -3
  16. package/lib/messages.d.ts +41 -0
  17. package/lib/messages.js +33 -53
  18. package/lib/messages.js.flow +44 -0
  19. package/lib/physical-rtl/generate-ltr.d.ts +11 -0
  20. package/lib/physical-rtl/generate-ltr.js +18 -46
  21. package/lib/physical-rtl/generate-ltr.js.flow +12 -0
  22. package/lib/physical-rtl/generate-rtl.d.ts +13 -0
  23. package/lib/physical-rtl/generate-rtl.js +18 -50
  24. package/lib/physical-rtl/generate-rtl.js.flow +12 -0
  25. package/lib/preprocess-rules/PreRule.d.ts +52 -0
  26. package/lib/preprocess-rules/PreRule.js +87 -0
  27. package/lib/preprocess-rules/PreRule.js.flow +64 -0
  28. package/lib/preprocess-rules/application-order.d.ts +290 -0
  29. package/lib/preprocess-rules/application-order.js +60 -133
  30. package/lib/preprocess-rules/application-order.js.flow +241 -0
  31. package/lib/preprocess-rules/basic-validation.d.ts +13 -0
  32. package/lib/preprocess-rules/basic-validation.js +83 -0
  33. package/lib/preprocess-rules/basic-validation.js.flow +13 -0
  34. package/lib/preprocess-rules/flatten-raw-style-obj.d.ts +25 -0
  35. package/lib/preprocess-rules/flatten-raw-style-obj.js +120 -0
  36. package/lib/preprocess-rules/flatten-raw-style-obj.js.flow +27 -0
  37. package/lib/preprocess-rules/index.d.ts +18 -0
  38. package/lib/preprocess-rules/index.js +0 -9
  39. package/lib/preprocess-rules/index.js.flow +19 -0
  40. package/lib/preprocess-rules/legacy-expand-shorthands.d.ts +200 -0
  41. package/lib/preprocess-rules/legacy-expand-shorthands.js +90 -123
  42. package/lib/preprocess-rules/legacy-expand-shorthands.js.flow +179 -0
  43. package/lib/preprocess-rules/property-specificity.d.ts +89 -0
  44. package/lib/preprocess-rules/property-specificity.js +46 -74
  45. package/lib/preprocess-rules/property-specificity.js.flow +98 -0
  46. package/lib/properties/CSS Animations.json +445 -0
  47. package/lib/properties/CSS Backgrounds and Borders.json +1085 -0
  48. package/lib/properties/CSS Basic User Interface.json +365 -0
  49. package/lib/properties/CSS Box Alignment.json +245 -0
  50. package/lib/properties/CSS Box Model.json +501 -0
  51. package/lib/properties/CSS Color.json +100 -0
  52. package/lib/properties/CSS Columns.json +185 -0
  53. package/lib/properties/CSS Containment.json +203 -0
  54. package/lib/properties/CSS Counter Styles.json +56 -0
  55. package/lib/properties/CSS Display.json +20 -0
  56. package/lib/properties/CSS Flexible Box Layout.json +167 -0
  57. package/lib/properties/CSS Fonts.json +684 -0
  58. package/lib/properties/CSS Fragmentation.json +110 -0
  59. package/lib/properties/CSS Generated Content.json +38 -0
  60. package/lib/properties/CSS Grid Layout.json +500 -0
  61. package/lib/properties/CSS Images.json +91 -0
  62. package/lib/properties/CSS Inline.json +38 -0
  63. package/lib/properties/CSS Lists and Counters.json +86 -0
  64. package/lib/properties/CSS Logical Properties.json +1086 -0
  65. package/lib/properties/CSS Masking.json +399 -0
  66. package/lib/properties/CSS Miscellaneous.json +38 -0
  67. package/lib/properties/CSS Motion Path.json +132 -0
  68. package/lib/properties/CSS Overflow.json +216 -0
  69. package/lib/properties/CSS Pages.json +83 -0
  70. package/lib/properties/CSS Positioning.json +166 -0
  71. package/lib/properties/CSS Ruby.json +55 -0
  72. package/lib/properties/CSS Scroll Anchoring.json +19 -0
  73. package/lib/properties/CSS Scroll Snap.json +604 -0
  74. package/lib/properties/CSS Scrollbars.json +38 -0
  75. package/lib/properties/CSS Shapes.json +56 -0
  76. package/lib/properties/CSS Speech.json +20 -0
  77. package/lib/properties/CSS Table.json +115 -0
  78. package/lib/properties/CSS Text Decoration.json +312 -0
  79. package/lib/properties/CSS Text.json +415 -0
  80. package/lib/properties/CSS Transforms.json +188 -0
  81. package/lib/properties/CSS Transitions.json +122 -0
  82. package/lib/properties/CSS Variables.json +20 -0
  83. package/lib/properties/CSS View Transitions.json +20 -0
  84. package/lib/properties/CSS Will Change.json +20 -0
  85. package/lib/properties/CSS Writing Modes.json +92 -0
  86. package/lib/properties/Compositing and Blending.json +62 -0
  87. package/lib/properties/Filter Effects.json +38 -0
  88. package/lib/properties/MathML.json +56 -0
  89. package/lib/properties/Microsoft Extensions.json +885 -0
  90. package/lib/properties/Mozilla Extensions.json +607 -0
  91. package/lib/properties/Pointer Events.json +20 -0
  92. package/lib/properties/WebKit Extensions.json +707 -0
  93. package/lib/properties.json +10122 -0
  94. package/lib/stylex-create-theme.d.ts +26 -0
  95. package/lib/stylex-create-theme.js +67 -0
  96. package/lib/stylex-create-theme.js.flow +19 -0
  97. package/lib/stylex-create.d.ts +23 -0
  98. package/lib/stylex-create.js +30 -146
  99. package/lib/stylex-create.js.flow +30 -0
  100. package/lib/stylex-define-vars.d.ts +29 -0
  101. package/lib/stylex-define-vars.js +73 -0
  102. package/lib/stylex-define-vars.js.flow +26 -0
  103. package/lib/stylex-first-that-works.d.ts +13 -0
  104. package/lib/stylex-first-that-works.js +0 -10
  105. package/lib/stylex-first-that-works.js.flow +12 -0
  106. package/lib/stylex-include.d.ts +18 -0
  107. package/lib/stylex-include.js +2 -12
  108. package/lib/stylex-include.js.flow +20 -0
  109. package/lib/stylex-keyframes.d.ts +17 -0
  110. package/lib/stylex-keyframes.js +6 -26
  111. package/lib/stylex-keyframes.js.flow +20 -0
  112. package/lib/transform-value.d.ts +22 -0
  113. package/lib/transform-value.js +9 -23
  114. package/lib/transform-value.js.flow +25 -0
  115. package/lib/types/index.d.ts +205 -0
  116. package/lib/types/index.js +191 -0
  117. package/lib/types/index.js.flow +241 -0
  118. package/lib/utils/Rule.d.ts +58 -0
  119. package/lib/utils/Rule.js +0 -21
  120. package/lib/utils/Rule.js.flow +64 -0
  121. package/lib/utils/dashify.d.ts +11 -0
  122. package/lib/utils/dashify.js +0 -8
  123. package/lib/utils/dashify.js.flow +10 -0
  124. package/lib/utils/default-options.d.ts +11 -0
  125. package/lib/utils/default-options.js +13 -0
  126. package/lib/utils/default-options.js.flow +25 -0
  127. package/lib/utils/file-based-identifier.d.ts +15 -0
  128. package/lib/utils/file-based-identifier.js +14 -0
  129. package/lib/utils/file-based-identifier.js.flow +14 -0
  130. package/lib/utils/genCSSRule.d.ts +15 -0
  131. package/lib/utils/genCSSRule.js +9 -18
  132. package/lib/utils/genCSSRule.js.flow +15 -0
  133. package/lib/utils/normalize-value.d.ts +16 -0
  134. package/lib/utils/normalize-value.js +8 -15
  135. package/lib/utils/normalize-value.js.flow +16 -0
  136. package/lib/utils/normalizers/convert-camel-case-transition-props.d.ts +14 -0
  137. package/lib/utils/normalizers/convert-camel-case-transition-props.js +23 -0
  138. package/lib/utils/normalizers/convert-camel-case-transition-props.js.flow +13 -0
  139. package/lib/utils/normalizers/convert-camel-case-values.d.ts +14 -0
  140. package/lib/utils/normalizers/convert-camel-case-values.js +23 -0
  141. package/lib/utils/normalizers/convert-camel-case-values.js.flow +13 -0
  142. package/lib/utils/normalizers/detect-unclosed-fns.d.ts +17 -0
  143. package/lib/utils/normalizers/detect-unclosed-fns.js +2 -14
  144. package/lib/utils/normalizers/detect-unclosed-fns.js.flow +16 -0
  145. package/lib/utils/normalizers/font-size-px-to-rem.d.ts +19 -0
  146. package/lib/utils/normalizers/font-size-px-to-rem.js +9 -19
  147. package/lib/utils/normalizers/font-size-px-to-rem.js.flow +18 -0
  148. package/lib/utils/normalizers/leading-zero.d.ts +17 -0
  149. package/lib/utils/normalizers/leading-zero.js +0 -12
  150. package/lib/utils/normalizers/leading-zero.js.flow +16 -0
  151. package/lib/utils/normalizers/quotes.d.ts +18 -0
  152. package/lib/utils/normalizers/quotes.js +0 -13
  153. package/lib/utils/normalizers/quotes.js.flow +17 -0
  154. package/lib/utils/normalizers/timings.d.ts +18 -0
  155. package/lib/utils/normalizers/timings.js +0 -14
  156. package/lib/utils/normalizers/timings.js.flow +17 -0
  157. package/lib/utils/normalizers/whitespace.d.ts +19 -0
  158. package/lib/utils/normalizers/whitespace.js +0 -15
  159. package/lib/utils/normalizers/whitespace.js.flow +18 -0
  160. package/lib/utils/normalizers/zero-dimensions.d.ts +19 -0
  161. package/lib/utils/normalizers/zero-dimensions.js +0 -15
  162. package/lib/utils/normalizers/zero-dimensions.js.flow +18 -0
  163. package/lib/utils/object-utils.d.ts +66 -0
  164. package/lib/utils/object-utils.js +21 -13
  165. package/lib/utils/object-utils.js.flow +77 -0
  166. package/lib/utils/property-priorities.d.ts +11 -0
  167. package/lib/utils/property-priorities.js +516 -101
  168. package/lib/utils/property-priorities.js.flow +10 -0
  169. package/lib/utils/split-css-value.d.ts +14 -0
  170. package/lib/utils/split-css-value.js +0 -14
  171. package/lib/utils/split-css-value.js.flow +15 -0
  172. package/lib/validate.d.ts +12 -0
  173. package/lib/validate.js +1 -10
  174. package/lib/validate.js.flow +12 -0
  175. package/package.json +4 -5
  176. package/lib/expand-shorthands.d.ts +0 -5
  177. package/lib/expand-shorthands.js +0 -330
  178. package/lib/namespace-transforms/__tests__/preflatten.test.js +0 -120
  179. package/lib/namespace-transforms/preflatten.js +0 -89
  180. package/lib/preprocess-rules/expand-shorthands.js +0 -156
  181. package/lib/preprocess-rules/null-out-longhand.js +0 -310
  182. package/lib/preprocess-rules/react-native-web.js +0 -142
  183. package/lib/stylex-defaultValue.js +0 -397
@@ -0,0 +1,1086 @@
1
+ [
2
+ {
3
+ "syntax": "<'width'>",
4
+ "media": "visual",
5
+ "inherited": false,
6
+ "animationType": "lpc",
7
+ "percentages": "blockSizeOfContainingBlock",
8
+ "groups": [
9
+ "CSS Logical Properties"
10
+ ],
11
+ "initial": "auto",
12
+ "appliesto": "sameAsWidthAndHeight",
13
+ "computed": "sameAsWidthAndHeight",
14
+ "order": "uniqueOrder",
15
+ "status": "standard",
16
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/block-size",
17
+ "property": "block-size",
18
+ "group": "CSS Logical Properties"
19
+ },
20
+ {
21
+ "syntax": "<'border-top-width'> || <'border-top-style'> || <color>",
22
+ "media": "visual",
23
+ "inherited": false,
24
+ "animationType": [
25
+ "border-block-width",
26
+ "border-block-style",
27
+ "border-block-color"
28
+ ],
29
+ "percentages": "no",
30
+ "groups": [
31
+ "CSS Logical Properties"
32
+ ],
33
+ "initial": [
34
+ "border-block-width",
35
+ "border-block-style",
36
+ "border-block-color"
37
+ ],
38
+ "appliesto": "allElements",
39
+ "computed": [
40
+ "border-block-width",
41
+ "border-block-style",
42
+ "border-block-color"
43
+ ],
44
+ "order": "uniqueOrder",
45
+ "status": "standard",
46
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block",
47
+ "property": "border-block",
48
+ "group": "CSS Logical Properties"
49
+ },
50
+ {
51
+ "syntax": "<'border-top-color'>{1,2}",
52
+ "media": "visual",
53
+ "inherited": false,
54
+ "animationType": "byComputedValueType",
55
+ "percentages": "no",
56
+ "groups": [
57
+ "CSS Logical Properties"
58
+ ],
59
+ "initial": "currentcolor",
60
+ "appliesto": "allElements",
61
+ "computed": "computedColor",
62
+ "order": "uniqueOrder",
63
+ "status": "standard",
64
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-color",
65
+ "property": "border-block-color",
66
+ "group": "CSS Logical Properties"
67
+ },
68
+ {
69
+ "syntax": "<'border-top-style'>",
70
+ "media": "visual",
71
+ "inherited": false,
72
+ "animationType": "discrete",
73
+ "percentages": "no",
74
+ "groups": [
75
+ "CSS Logical Properties"
76
+ ],
77
+ "initial": "none",
78
+ "appliesto": "allElements",
79
+ "computed": "asSpecified",
80
+ "order": "uniqueOrder",
81
+ "status": "standard",
82
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-style",
83
+ "property": "border-block-style",
84
+ "group": "CSS Logical Properties"
85
+ },
86
+ {
87
+ "syntax": "<'border-top-width'>",
88
+ "media": "visual",
89
+ "inherited": false,
90
+ "animationType": "byComputedValueType",
91
+ "percentages": "logicalWidthOfContainingBlock",
92
+ "groups": [
93
+ "CSS Logical Properties"
94
+ ],
95
+ "initial": "medium",
96
+ "appliesto": "allElements",
97
+ "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
98
+ "order": "uniqueOrder",
99
+ "status": "standard",
100
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-width",
101
+ "property": "border-block-width",
102
+ "group": "CSS Logical Properties"
103
+ },
104
+ {
105
+ "syntax": "<'border-top-width'> || <'border-top-style'> || <color>",
106
+ "media": "visual",
107
+ "inherited": false,
108
+ "animationType": [
109
+ "border-block-end-color",
110
+ "border-block-end-style",
111
+ "border-block-end-width"
112
+ ],
113
+ "percentages": "no",
114
+ "groups": [
115
+ "CSS Logical Properties"
116
+ ],
117
+ "initial": [
118
+ "border-top-width",
119
+ "border-top-style",
120
+ "border-top-color"
121
+ ],
122
+ "appliesto": "allElements",
123
+ "computed": [
124
+ "border-top-width",
125
+ "border-top-style",
126
+ "border-top-color"
127
+ ],
128
+ "order": "uniqueOrder",
129
+ "status": "standard",
130
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-end",
131
+ "property": "border-block-end",
132
+ "group": "CSS Logical Properties"
133
+ },
134
+ {
135
+ "syntax": "<'border-top-color'>",
136
+ "media": "visual",
137
+ "inherited": false,
138
+ "animationType": "byComputedValueType",
139
+ "percentages": "no",
140
+ "groups": [
141
+ "CSS Logical Properties"
142
+ ],
143
+ "initial": "currentcolor",
144
+ "appliesto": "allElements",
145
+ "computed": "computedColor",
146
+ "order": "uniqueOrder",
147
+ "status": "standard",
148
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-end-color",
149
+ "property": "border-block-end-color",
150
+ "group": "CSS Logical Properties"
151
+ },
152
+ {
153
+ "syntax": "<'border-top-style'>",
154
+ "media": "visual",
155
+ "inherited": false,
156
+ "animationType": "discrete",
157
+ "percentages": "no",
158
+ "groups": [
159
+ "CSS Logical Properties"
160
+ ],
161
+ "initial": "none",
162
+ "appliesto": "allElements",
163
+ "computed": "asSpecified",
164
+ "order": "uniqueOrder",
165
+ "status": "standard",
166
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-end-style",
167
+ "property": "border-block-end-style",
168
+ "group": "CSS Logical Properties"
169
+ },
170
+ {
171
+ "syntax": "<'border-top-width'>",
172
+ "media": "visual",
173
+ "inherited": false,
174
+ "animationType": "byComputedValueType",
175
+ "percentages": "logicalWidthOfContainingBlock",
176
+ "groups": [
177
+ "CSS Logical Properties"
178
+ ],
179
+ "initial": "medium",
180
+ "appliesto": "allElements",
181
+ "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
182
+ "order": "uniqueOrder",
183
+ "status": "standard",
184
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-end-width",
185
+ "property": "border-block-end-width",
186
+ "group": "CSS Logical Properties"
187
+ },
188
+ {
189
+ "syntax": "<'border-top-width'> || <'border-top-style'> || <color>",
190
+ "media": "visual",
191
+ "inherited": false,
192
+ "animationType": [
193
+ "border-block-start-color",
194
+ "border-block-start-style",
195
+ "border-block-start-width"
196
+ ],
197
+ "percentages": "no",
198
+ "groups": [
199
+ "CSS Logical Properties"
200
+ ],
201
+ "initial": [
202
+ "border-width",
203
+ "border-style",
204
+ "color"
205
+ ],
206
+ "appliesto": "allElements",
207
+ "computed": [
208
+ "border-width",
209
+ "border-style",
210
+ "border-block-start-color"
211
+ ],
212
+ "order": "uniqueOrder",
213
+ "status": "standard",
214
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-start",
215
+ "property": "border-block-start",
216
+ "group": "CSS Logical Properties"
217
+ },
218
+ {
219
+ "syntax": "<'border-top-color'>",
220
+ "media": "visual",
221
+ "inherited": false,
222
+ "animationType": "byComputedValueType",
223
+ "percentages": "no",
224
+ "groups": [
225
+ "CSS Logical Properties"
226
+ ],
227
+ "initial": "currentcolor",
228
+ "appliesto": "allElements",
229
+ "computed": "computedColor",
230
+ "order": "uniqueOrder",
231
+ "status": "standard",
232
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-start-color",
233
+ "property": "border-block-start-color",
234
+ "group": "CSS Logical Properties"
235
+ },
236
+ {
237
+ "syntax": "<'border-top-style'>",
238
+ "media": "visual",
239
+ "inherited": false,
240
+ "animationType": "discrete",
241
+ "percentages": "no",
242
+ "groups": [
243
+ "CSS Logical Properties"
244
+ ],
245
+ "initial": "none",
246
+ "appliesto": "allElements",
247
+ "computed": "asSpecified",
248
+ "order": "uniqueOrder",
249
+ "status": "standard",
250
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-start-style",
251
+ "property": "border-block-start-style",
252
+ "group": "CSS Logical Properties"
253
+ },
254
+ {
255
+ "syntax": "<'border-top-width'>",
256
+ "media": "visual",
257
+ "inherited": false,
258
+ "animationType": "byComputedValueType",
259
+ "percentages": "logicalWidthOfContainingBlock",
260
+ "groups": [
261
+ "CSS Logical Properties"
262
+ ],
263
+ "initial": "medium",
264
+ "appliesto": "allElements",
265
+ "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
266
+ "order": "uniqueOrder",
267
+ "status": "standard",
268
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-start-width",
269
+ "property": "border-block-start-width",
270
+ "group": "CSS Logical Properties"
271
+ },
272
+ {
273
+ "syntax": "<length-percentage>{1,2}",
274
+ "media": "visual",
275
+ "inherited": false,
276
+ "animationType": "lpc",
277
+ "percentages": "referToDimensionOfBorderBox",
278
+ "groups": [
279
+ "CSS Logical Properties"
280
+ ],
281
+ "initial": "0",
282
+ "appliesto": "allElementsUAsNotRequiredWhenCollapse",
283
+ "computed": "twoAbsoluteLengthOrPercentages",
284
+ "order": "uniqueOrder",
285
+ "alsoAppliesTo": [
286
+ "::first-letter"
287
+ ],
288
+ "status": "standard",
289
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius",
290
+ "property": "border-end-end-radius",
291
+ "group": "CSS Logical Properties"
292
+ },
293
+ {
294
+ "syntax": "<length-percentage>{1,2}",
295
+ "media": "visual",
296
+ "inherited": false,
297
+ "animationType": "lpc",
298
+ "percentages": "referToDimensionOfBorderBox",
299
+ "groups": [
300
+ "CSS Logical Properties"
301
+ ],
302
+ "initial": "0",
303
+ "appliesto": "allElementsUAsNotRequiredWhenCollapse",
304
+ "computed": "twoAbsoluteLengthOrPercentages",
305
+ "order": "uniqueOrder",
306
+ "alsoAppliesTo": [
307
+ "::first-letter"
308
+ ],
309
+ "status": "standard",
310
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius",
311
+ "property": "border-end-start-radius",
312
+ "group": "CSS Logical Properties"
313
+ },
314
+ {
315
+ "syntax": "<'border-top-width'> || <'border-top-style'> || <color>",
316
+ "media": "visual",
317
+ "inherited": false,
318
+ "animationType": [
319
+ "border-inline-color",
320
+ "border-inline-style",
321
+ "border-inline-width"
322
+ ],
323
+ "percentages": "no",
324
+ "groups": [
325
+ "CSS Logical Properties"
326
+ ],
327
+ "initial": [
328
+ "border-inline-width",
329
+ "border-inline-style",
330
+ "border-inline-color"
331
+ ],
332
+ "appliesto": "allElements",
333
+ "computed": [
334
+ "border-inline-width",
335
+ "border-inline-style",
336
+ "border-inline-color"
337
+ ],
338
+ "order": "uniqueOrder",
339
+ "status": "standard",
340
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline",
341
+ "property": "border-inline",
342
+ "group": "CSS Logical Properties"
343
+ },
344
+ {
345
+ "syntax": "<'border-top-width'> || <'border-top-style'> || <color>",
346
+ "media": "visual",
347
+ "inherited": false,
348
+ "animationType": [
349
+ "border-inline-end-color",
350
+ "border-inline-end-style",
351
+ "border-inline-end-width"
352
+ ],
353
+ "percentages": "no",
354
+ "groups": [
355
+ "CSS Logical Properties"
356
+ ],
357
+ "initial": [
358
+ "border-width",
359
+ "border-style",
360
+ "color"
361
+ ],
362
+ "appliesto": "allElements",
363
+ "computed": [
364
+ "border-width",
365
+ "border-style",
366
+ "border-inline-end-color"
367
+ ],
368
+ "order": "uniqueOrder",
369
+ "status": "standard",
370
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-end",
371
+ "property": "border-inline-end",
372
+ "group": "CSS Logical Properties"
373
+ },
374
+ {
375
+ "syntax": "<'border-top-color'>{1,2}",
376
+ "media": "visual",
377
+ "inherited": false,
378
+ "animationType": "byComputedValueType",
379
+ "percentages": "no",
380
+ "groups": [
381
+ "CSS Logical Properties"
382
+ ],
383
+ "initial": "currentcolor",
384
+ "appliesto": "allElements",
385
+ "computed": "computedColor",
386
+ "order": "uniqueOrder",
387
+ "status": "standard",
388
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-color",
389
+ "property": "border-inline-color",
390
+ "group": "CSS Logical Properties"
391
+ },
392
+ {
393
+ "syntax": "<'border-top-style'>",
394
+ "media": "visual",
395
+ "inherited": false,
396
+ "animationType": "discrete",
397
+ "percentages": "no",
398
+ "groups": [
399
+ "CSS Logical Properties"
400
+ ],
401
+ "initial": "none",
402
+ "appliesto": "allElements",
403
+ "computed": "asSpecified",
404
+ "order": "uniqueOrder",
405
+ "status": "standard",
406
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-style",
407
+ "property": "border-inline-style",
408
+ "group": "CSS Logical Properties"
409
+ },
410
+ {
411
+ "syntax": "<'border-top-width'>",
412
+ "media": "visual",
413
+ "inherited": false,
414
+ "animationType": "byComputedValueType",
415
+ "percentages": "logicalWidthOfContainingBlock",
416
+ "groups": [
417
+ "CSS Logical Properties"
418
+ ],
419
+ "initial": "medium",
420
+ "appliesto": "allElements",
421
+ "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
422
+ "order": "uniqueOrder",
423
+ "status": "standard",
424
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-width",
425
+ "property": "border-inline-width",
426
+ "group": "CSS Logical Properties"
427
+ },
428
+ {
429
+ "syntax": "<'border-top-color'>",
430
+ "media": "visual",
431
+ "inherited": false,
432
+ "animationType": "byComputedValueType",
433
+ "percentages": "no",
434
+ "groups": [
435
+ "CSS Logical Properties"
436
+ ],
437
+ "initial": "currentcolor",
438
+ "appliesto": "allElements",
439
+ "computed": "computedColor",
440
+ "order": "uniqueOrder",
441
+ "status": "standard",
442
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color",
443
+ "property": "border-inline-end-color",
444
+ "group": "CSS Logical Properties"
445
+ },
446
+ {
447
+ "syntax": "<'border-top-style'>",
448
+ "media": "visual",
449
+ "inherited": false,
450
+ "animationType": "discrete",
451
+ "percentages": "no",
452
+ "groups": [
453
+ "CSS Logical Properties"
454
+ ],
455
+ "initial": "none",
456
+ "appliesto": "allElements",
457
+ "computed": "asSpecified",
458
+ "order": "uniqueOrder",
459
+ "status": "standard",
460
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style",
461
+ "property": "border-inline-end-style",
462
+ "group": "CSS Logical Properties"
463
+ },
464
+ {
465
+ "syntax": "<'border-top-width'>",
466
+ "media": "visual",
467
+ "inherited": false,
468
+ "animationType": "byComputedValueType",
469
+ "percentages": "logicalWidthOfContainingBlock",
470
+ "groups": [
471
+ "CSS Logical Properties"
472
+ ],
473
+ "initial": "medium",
474
+ "appliesto": "allElements",
475
+ "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
476
+ "order": "uniqueOrder",
477
+ "status": "standard",
478
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width",
479
+ "property": "border-inline-end-width",
480
+ "group": "CSS Logical Properties"
481
+ },
482
+ {
483
+ "syntax": "<'border-top-width'> || <'border-top-style'> || <color>",
484
+ "media": "visual",
485
+ "inherited": false,
486
+ "animationType": [
487
+ "border-inline-start-color",
488
+ "border-inline-start-style",
489
+ "border-inline-start-width"
490
+ ],
491
+ "percentages": "no",
492
+ "groups": [
493
+ "CSS Logical Properties"
494
+ ],
495
+ "initial": [
496
+ "border-width",
497
+ "border-style",
498
+ "color"
499
+ ],
500
+ "appliesto": "allElements",
501
+ "computed": [
502
+ "border-width",
503
+ "border-style",
504
+ "border-inline-start-color"
505
+ ],
506
+ "order": "uniqueOrder",
507
+ "status": "standard",
508
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-start",
509
+ "property": "border-inline-start",
510
+ "group": "CSS Logical Properties"
511
+ },
512
+ {
513
+ "syntax": "<'border-top-color'>",
514
+ "media": "visual",
515
+ "inherited": false,
516
+ "animationType": "byComputedValueType",
517
+ "percentages": "no",
518
+ "groups": [
519
+ "CSS Logical Properties"
520
+ ],
521
+ "initial": "currentcolor",
522
+ "appliesto": "allElements",
523
+ "computed": "computedColor",
524
+ "order": "uniqueOrder",
525
+ "status": "standard",
526
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color",
527
+ "property": "border-inline-start-color",
528
+ "group": "CSS Logical Properties"
529
+ },
530
+ {
531
+ "syntax": "<'border-top-style'>",
532
+ "media": "visual",
533
+ "inherited": false,
534
+ "animationType": "discrete",
535
+ "percentages": "no",
536
+ "groups": [
537
+ "CSS Logical Properties"
538
+ ],
539
+ "initial": "none",
540
+ "appliesto": "allElements",
541
+ "computed": "asSpecified",
542
+ "order": "uniqueOrder",
543
+ "status": "standard",
544
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style",
545
+ "property": "border-inline-start-style",
546
+ "group": "CSS Logical Properties"
547
+ },
548
+ {
549
+ "syntax": "<'border-top-width'>",
550
+ "media": "visual",
551
+ "inherited": false,
552
+ "animationType": "byComputedValueType",
553
+ "percentages": "logicalWidthOfContainingBlock",
554
+ "groups": [
555
+ "CSS Logical Properties"
556
+ ],
557
+ "initial": "medium",
558
+ "appliesto": "allElements",
559
+ "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
560
+ "order": "uniqueOrder",
561
+ "status": "standard",
562
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width",
563
+ "property": "border-inline-start-width",
564
+ "group": "CSS Logical Properties"
565
+ },
566
+ {
567
+ "syntax": "<length-percentage>{1,2}",
568
+ "media": "visual",
569
+ "inherited": false,
570
+ "animationType": "lpc",
571
+ "percentages": "referToDimensionOfBorderBox",
572
+ "groups": [
573
+ "CSS Logical Properties"
574
+ ],
575
+ "initial": "0",
576
+ "appliesto": "allElementsUAsNotRequiredWhenCollapse",
577
+ "computed": "twoAbsoluteLengthOrPercentages",
578
+ "order": "uniqueOrder",
579
+ "alsoAppliesTo": [
580
+ "::first-letter"
581
+ ],
582
+ "status": "standard",
583
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius",
584
+ "property": "border-start-end-radius",
585
+ "group": "CSS Logical Properties"
586
+ },
587
+ {
588
+ "syntax": "<length-percentage>{1,2}",
589
+ "media": "visual",
590
+ "inherited": false,
591
+ "animationType": "lpc",
592
+ "percentages": "referToDimensionOfBorderBox",
593
+ "groups": [
594
+ "CSS Logical Properties"
595
+ ],
596
+ "initial": "0",
597
+ "appliesto": "allElementsUAsNotRequiredWhenCollapse",
598
+ "computed": "twoAbsoluteLengthOrPercentages",
599
+ "order": "uniqueOrder",
600
+ "alsoAppliesTo": [
601
+ "::first-letter"
602
+ ],
603
+ "status": "standard",
604
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius",
605
+ "property": "border-start-start-radius",
606
+ "group": "CSS Logical Properties"
607
+ },
608
+ {
609
+ "syntax": "<'width'>",
610
+ "media": "visual",
611
+ "inherited": false,
612
+ "animationType": "lpc",
613
+ "percentages": "inlineSizeOfContainingBlock",
614
+ "groups": [
615
+ "CSS Logical Properties"
616
+ ],
617
+ "initial": "auto",
618
+ "appliesto": "sameAsWidthAndHeight",
619
+ "computed": "sameAsWidthAndHeight",
620
+ "order": "uniqueOrder",
621
+ "status": "standard",
622
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inline-size",
623
+ "property": "inline-size",
624
+ "group": "CSS Logical Properties"
625
+ },
626
+ {
627
+ "syntax": "<'top'>{1,4}",
628
+ "media": "visual",
629
+ "inherited": false,
630
+ "animationType": "lpc",
631
+ "percentages": "logicalHeightOrWidthOfContainingBlock",
632
+ "groups": [
633
+ "CSS Logical Properties"
634
+ ],
635
+ "initial": [
636
+ "top",
637
+ "bottom",
638
+ "left",
639
+ "right"
640
+ ],
641
+ "appliesto": "positionedElements",
642
+ "computed": [
643
+ "top",
644
+ "bottom",
645
+ "left",
646
+ "right"
647
+ ],
648
+ "order": "uniqueOrder",
649
+ "status": "standard",
650
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset",
651
+ "property": "inset",
652
+ "group": "CSS Logical Properties"
653
+ },
654
+ {
655
+ "syntax": "<'top'>{1,2}",
656
+ "media": "visual",
657
+ "inherited": false,
658
+ "animationType": "lpc",
659
+ "percentages": "logicalHeightOfContainingBlock",
660
+ "groups": [
661
+ "CSS Logical Properties"
662
+ ],
663
+ "initial": [
664
+ "inset-block-start",
665
+ "inset-block-end"
666
+ ],
667
+ "appliesto": "positionedElements",
668
+ "computed": [
669
+ "inset-block-start",
670
+ "inset-block-end"
671
+ ],
672
+ "order": "uniqueOrder",
673
+ "status": "standard",
674
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-block",
675
+ "property": "inset-block",
676
+ "group": "CSS Logical Properties"
677
+ },
678
+ {
679
+ "syntax": "<'top'>",
680
+ "media": "visual",
681
+ "inherited": false,
682
+ "animationType": "lpc",
683
+ "percentages": "logicalHeightOfContainingBlock",
684
+ "groups": [
685
+ "CSS Logical Properties"
686
+ ],
687
+ "initial": "auto",
688
+ "appliesto": "positionedElements",
689
+ "computed": "sameAsBoxOffsets",
690
+ "order": "uniqueOrder",
691
+ "status": "standard",
692
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-block-end",
693
+ "property": "inset-block-end",
694
+ "group": "CSS Logical Properties"
695
+ },
696
+ {
697
+ "syntax": "<'top'>",
698
+ "media": "visual",
699
+ "inherited": false,
700
+ "animationType": "lpc",
701
+ "percentages": "logicalHeightOfContainingBlock",
702
+ "groups": [
703
+ "CSS Logical Properties"
704
+ ],
705
+ "initial": "auto",
706
+ "appliesto": "positionedElements",
707
+ "computed": "sameAsBoxOffsets",
708
+ "order": "uniqueOrder",
709
+ "status": "standard",
710
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-block-start",
711
+ "property": "inset-block-start",
712
+ "group": "CSS Logical Properties"
713
+ },
714
+ {
715
+ "syntax": "<'top'>{1,2}",
716
+ "media": "visual",
717
+ "inherited": false,
718
+ "animationType": "lpc",
719
+ "percentages": "logicalWidthOfContainingBlock",
720
+ "groups": [
721
+ "CSS Logical Properties"
722
+ ],
723
+ "initial": [
724
+ "inset-inline-start",
725
+ "inset-inline-end"
726
+ ],
727
+ "appliesto": "positionedElements",
728
+ "computed": [
729
+ "inset-inline-start",
730
+ "inset-inline-end"
731
+ ],
732
+ "order": "uniqueOrder",
733
+ "status": "standard",
734
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-inline",
735
+ "property": "inset-inline",
736
+ "group": "CSS Logical Properties"
737
+ },
738
+ {
739
+ "syntax": "<'top'>",
740
+ "media": "visual",
741
+ "inherited": false,
742
+ "animationType": "lpc",
743
+ "percentages": "logicalWidthOfContainingBlock",
744
+ "groups": [
745
+ "CSS Logical Properties"
746
+ ],
747
+ "initial": "auto",
748
+ "appliesto": "positionedElements",
749
+ "computed": "sameAsBoxOffsets",
750
+ "order": "uniqueOrder",
751
+ "status": "standard",
752
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-inline-end",
753
+ "property": "inset-inline-end",
754
+ "group": "CSS Logical Properties"
755
+ },
756
+ {
757
+ "syntax": "<'top'>",
758
+ "media": "visual",
759
+ "inherited": false,
760
+ "animationType": "lpc",
761
+ "percentages": "logicalWidthOfContainingBlock",
762
+ "groups": [
763
+ "CSS Logical Properties"
764
+ ],
765
+ "initial": "auto",
766
+ "appliesto": "positionedElements",
767
+ "computed": "sameAsBoxOffsets",
768
+ "order": "uniqueOrder",
769
+ "status": "standard",
770
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-inline-start",
771
+ "property": "inset-inline-start",
772
+ "group": "CSS Logical Properties"
773
+ },
774
+ {
775
+ "syntax": "<'margin-left'>{1,2}",
776
+ "media": "visual",
777
+ "inherited": false,
778
+ "animationType": "length",
779
+ "percentages": "dependsOnLayoutModel",
780
+ "groups": [
781
+ "CSS Logical Properties"
782
+ ],
783
+ "initial": [
784
+ "margin-block-start",
785
+ "margin-block-end"
786
+ ],
787
+ "appliesto": "sameAsMargin",
788
+ "computed": [
789
+ "margin-block-start",
790
+ "margin-block-end"
791
+ ],
792
+ "order": "uniqueOrder",
793
+ "status": "standard",
794
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-block",
795
+ "property": "margin-block",
796
+ "group": "CSS Logical Properties"
797
+ },
798
+ {
799
+ "syntax": "<'margin-left'>",
800
+ "media": "visual",
801
+ "inherited": false,
802
+ "animationType": "length",
803
+ "percentages": "dependsOnLayoutModel",
804
+ "groups": [
805
+ "CSS Logical Properties"
806
+ ],
807
+ "initial": "0",
808
+ "appliesto": "sameAsMargin",
809
+ "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
810
+ "order": "uniqueOrder",
811
+ "status": "standard",
812
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-block-end",
813
+ "property": "margin-block-end",
814
+ "group": "CSS Logical Properties"
815
+ },
816
+ {
817
+ "syntax": "<'margin-left'>",
818
+ "media": "visual",
819
+ "inherited": false,
820
+ "animationType": "length",
821
+ "percentages": "dependsOnLayoutModel",
822
+ "groups": [
823
+ "CSS Logical Properties"
824
+ ],
825
+ "initial": "0",
826
+ "appliesto": "sameAsMargin",
827
+ "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
828
+ "order": "uniqueOrder",
829
+ "status": "standard",
830
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-block-start",
831
+ "property": "margin-block-start",
832
+ "group": "CSS Logical Properties"
833
+ },
834
+ {
835
+ "syntax": "<'margin-left'>{1,2}",
836
+ "media": "visual",
837
+ "inherited": false,
838
+ "animationType": "length",
839
+ "percentages": "dependsOnLayoutModel",
840
+ "groups": [
841
+ "CSS Logical Properties"
842
+ ],
843
+ "initial": [
844
+ "margin-inline-start",
845
+ "margin-inline-end"
846
+ ],
847
+ "appliesto": "sameAsMargin",
848
+ "computed": [
849
+ "margin-inline-start",
850
+ "margin-inline-end"
851
+ ],
852
+ "order": "uniqueOrder",
853
+ "status": "standard",
854
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-inline",
855
+ "property": "margin-inline",
856
+ "group": "CSS Logical Properties"
857
+ },
858
+ {
859
+ "syntax": "<'margin-left'>",
860
+ "media": "visual",
861
+ "inherited": false,
862
+ "animationType": "length",
863
+ "percentages": "dependsOnLayoutModel",
864
+ "groups": [
865
+ "CSS Logical Properties"
866
+ ],
867
+ "initial": "0",
868
+ "appliesto": "sameAsMargin",
869
+ "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
870
+ "order": "uniqueOrder",
871
+ "status": "standard",
872
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-inline-end",
873
+ "property": "margin-inline-end",
874
+ "group": "CSS Logical Properties"
875
+ },
876
+ {
877
+ "syntax": "<'margin-left'>",
878
+ "media": "visual",
879
+ "inherited": false,
880
+ "animationType": "length",
881
+ "percentages": "dependsOnLayoutModel",
882
+ "groups": [
883
+ "CSS Logical Properties"
884
+ ],
885
+ "initial": "0",
886
+ "appliesto": "sameAsMargin",
887
+ "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
888
+ "order": "uniqueOrder",
889
+ "status": "standard",
890
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-inline-start",
891
+ "property": "margin-inline-start",
892
+ "group": "CSS Logical Properties"
893
+ },
894
+ {
895
+ "syntax": "<'max-width'>",
896
+ "media": "visual",
897
+ "inherited": false,
898
+ "animationType": "lpc",
899
+ "percentages": "blockSizeOfContainingBlock",
900
+ "groups": [
901
+ "CSS Logical Properties"
902
+ ],
903
+ "initial": "none",
904
+ "appliesto": "sameAsWidthAndHeight",
905
+ "computed": "sameAsMaxWidthAndMaxHeight",
906
+ "order": "uniqueOrder",
907
+ "status": "standard",
908
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/max-block-size",
909
+ "property": "max-block-size",
910
+ "group": "CSS Logical Properties"
911
+ },
912
+ {
913
+ "syntax": "<'max-width'>",
914
+ "media": "visual",
915
+ "inherited": false,
916
+ "animationType": "lpc",
917
+ "percentages": "inlineSizeOfContainingBlock",
918
+ "groups": [
919
+ "CSS Logical Properties"
920
+ ],
921
+ "initial": "none",
922
+ "appliesto": "sameAsWidthAndHeight",
923
+ "computed": "sameAsMaxWidthAndMaxHeight",
924
+ "order": "uniqueOrder",
925
+ "status": "standard",
926
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/max-inline-size",
927
+ "property": "max-inline-size",
928
+ "group": "CSS Logical Properties"
929
+ },
930
+ {
931
+ "syntax": "<'min-width'>",
932
+ "media": "visual",
933
+ "inherited": false,
934
+ "animationType": "lpc",
935
+ "percentages": "blockSizeOfContainingBlock",
936
+ "groups": [
937
+ "CSS Logical Properties"
938
+ ],
939
+ "initial": "0",
940
+ "appliesto": "sameAsWidthAndHeight",
941
+ "computed": "sameAsMinWidthAndMinHeight",
942
+ "order": "uniqueOrder",
943
+ "status": "standard",
944
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/min-block-size",
945
+ "property": "min-block-size",
946
+ "group": "CSS Logical Properties"
947
+ },
948
+ {
949
+ "syntax": "<'min-width'>",
950
+ "media": "visual",
951
+ "inherited": false,
952
+ "animationType": "lpc",
953
+ "percentages": "inlineSizeOfContainingBlock",
954
+ "groups": [
955
+ "CSS Logical Properties"
956
+ ],
957
+ "initial": "0",
958
+ "appliesto": "sameAsWidthAndHeight",
959
+ "computed": "sameAsMinWidthAndMinHeight",
960
+ "order": "uniqueOrder",
961
+ "status": "standard",
962
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/min-inline-size",
963
+ "property": "min-inline-size",
964
+ "group": "CSS Logical Properties"
965
+ },
966
+ {
967
+ "syntax": "<'padding-left'>{1,2}",
968
+ "media": "visual",
969
+ "inherited": false,
970
+ "animationType": "length",
971
+ "percentages": "logicalWidthOfContainingBlock",
972
+ "groups": [
973
+ "CSS Logical Properties"
974
+ ],
975
+ "initial": [
976
+ "padding-block-start",
977
+ "padding-block-end"
978
+ ],
979
+ "appliesto": "allElementsExceptInternalTableDisplayTypes",
980
+ "computed": [
981
+ "padding-block-start",
982
+ "padding-block-end"
983
+ ],
984
+ "order": "uniqueOrder",
985
+ "status": "standard",
986
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-block",
987
+ "property": "padding-block",
988
+ "group": "CSS Logical Properties"
989
+ },
990
+ {
991
+ "syntax": "<'padding-left'>",
992
+ "media": "visual",
993
+ "inherited": false,
994
+ "animationType": "length",
995
+ "percentages": "logicalWidthOfContainingBlock",
996
+ "groups": [
997
+ "CSS Logical Properties"
998
+ ],
999
+ "initial": "0",
1000
+ "appliesto": "allElementsExceptInternalTableDisplayTypes",
1001
+ "computed": "asLength",
1002
+ "order": "uniqueOrder",
1003
+ "status": "standard",
1004
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-block-end",
1005
+ "property": "padding-block-end",
1006
+ "group": "CSS Logical Properties"
1007
+ },
1008
+ {
1009
+ "syntax": "<'padding-left'>",
1010
+ "media": "visual",
1011
+ "inherited": false,
1012
+ "animationType": "length",
1013
+ "percentages": "logicalWidthOfContainingBlock",
1014
+ "groups": [
1015
+ "CSS Logical Properties"
1016
+ ],
1017
+ "initial": "0",
1018
+ "appliesto": "allElementsExceptInternalTableDisplayTypes",
1019
+ "computed": "asLength",
1020
+ "order": "uniqueOrder",
1021
+ "status": "standard",
1022
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-block-start",
1023
+ "property": "padding-block-start",
1024
+ "group": "CSS Logical Properties"
1025
+ },
1026
+ {
1027
+ "syntax": "<'padding-left'>{1,2}",
1028
+ "media": "visual",
1029
+ "inherited": false,
1030
+ "animationType": "length",
1031
+ "percentages": "logicalWidthOfContainingBlock",
1032
+ "groups": [
1033
+ "CSS Logical Properties"
1034
+ ],
1035
+ "initial": [
1036
+ "padding-inline-start",
1037
+ "padding-inline-end"
1038
+ ],
1039
+ "appliesto": "allElementsExceptInternalTableDisplayTypes",
1040
+ "computed": [
1041
+ "padding-inline-start",
1042
+ "padding-inline-end"
1043
+ ],
1044
+ "order": "uniqueOrder",
1045
+ "status": "standard",
1046
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-inline",
1047
+ "property": "padding-inline",
1048
+ "group": "CSS Logical Properties"
1049
+ },
1050
+ {
1051
+ "syntax": "<'padding-left'>",
1052
+ "media": "visual",
1053
+ "inherited": false,
1054
+ "animationType": "length",
1055
+ "percentages": "logicalWidthOfContainingBlock",
1056
+ "groups": [
1057
+ "CSS Logical Properties"
1058
+ ],
1059
+ "initial": "0",
1060
+ "appliesto": "allElementsExceptInternalTableDisplayTypes",
1061
+ "computed": "asLength",
1062
+ "order": "uniqueOrder",
1063
+ "status": "standard",
1064
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-inline-end",
1065
+ "property": "padding-inline-end",
1066
+ "group": "CSS Logical Properties"
1067
+ },
1068
+ {
1069
+ "syntax": "<'padding-left'>",
1070
+ "media": "visual",
1071
+ "inherited": false,
1072
+ "animationType": "length",
1073
+ "percentages": "logicalWidthOfContainingBlock",
1074
+ "groups": [
1075
+ "CSS Logical Properties"
1076
+ ],
1077
+ "initial": "0",
1078
+ "appliesto": "allElementsExceptInternalTableDisplayTypes",
1079
+ "computed": "asLength",
1080
+ "order": "uniqueOrder",
1081
+ "status": "standard",
1082
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-inline-start",
1083
+ "property": "padding-inline-start",
1084
+ "group": "CSS Logical Properties"
1085
+ }
1086
+ ]