@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
@@ -0,0 +1,56 @@
1
+ [
2
+ {
3
+ "syntax": "<alpha-value>",
4
+ "media": "visual",
5
+ "inherited": false,
6
+ "animationType": "number",
7
+ "percentages": "no",
8
+ "groups": [
9
+ "CSS Shapes"
10
+ ],
11
+ "initial": "0.0",
12
+ "appliesto": "floats",
13
+ "computed": "specifiedValueNumberClipped0To1",
14
+ "order": "uniqueOrder",
15
+ "status": "standard",
16
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold",
17
+ "property": "shape-image-threshold",
18
+ "group": "CSS Shapes"
19
+ },
20
+ {
21
+ "syntax": "<length-percentage>",
22
+ "media": "visual",
23
+ "inherited": false,
24
+ "animationType": "lpc",
25
+ "percentages": "referToWidthOfContainingBlock",
26
+ "groups": [
27
+ "CSS Shapes"
28
+ ],
29
+ "initial": "0",
30
+ "appliesto": "floats",
31
+ "computed": "asSpecifiedRelativeToAbsoluteLengths",
32
+ "order": "uniqueOrder",
33
+ "status": "standard",
34
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/shape-margin",
35
+ "property": "shape-margin",
36
+ "group": "CSS Shapes"
37
+ },
38
+ {
39
+ "syntax": "none | [ <shape-box> || <basic-shape> ] | <image>",
40
+ "media": "visual",
41
+ "inherited": false,
42
+ "animationType": "basicShapeOtherwiseNo",
43
+ "percentages": "no",
44
+ "groups": [
45
+ "CSS Shapes"
46
+ ],
47
+ "initial": "none",
48
+ "appliesto": "floats",
49
+ "computed": "asDefinedForBasicShapeWithAbsoluteURIOtherwiseAsSpecified",
50
+ "order": "uniqueOrder",
51
+ "status": "standard",
52
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/shape-outside",
53
+ "property": "shape-outside",
54
+ "group": "CSS Shapes"
55
+ }
56
+ ]
@@ -0,0 +1,20 @@
1
+ [
2
+ {
3
+ "syntax": "<angle> | [ [ left-side | far-left | left | center-left | center | center-right | right | far-right | right-side ] || behind ] | leftwards | rightwards",
4
+ "media": "aural",
5
+ "inherited": true,
6
+ "animationType": "discrete",
7
+ "percentages": "no",
8
+ "groups": [
9
+ "CSS Speech"
10
+ ],
11
+ "initial": "center",
12
+ "appliesto": "allElements",
13
+ "computed": "normalizedAngle",
14
+ "order": "orderOfAppearance",
15
+ "status": "obsolete",
16
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/azimuth",
17
+ "property": "azimuth",
18
+ "group": "CSS Speech"
19
+ }
20
+ ]
@@ -0,0 +1,115 @@
1
+ [
2
+ {
3
+ "syntax": "collapse | separate",
4
+ "media": "visual",
5
+ "inherited": true,
6
+ "animationType": "discrete",
7
+ "percentages": "no",
8
+ "groups": [
9
+ "CSS Table"
10
+ ],
11
+ "initial": "separate",
12
+ "appliesto": "tableElements",
13
+ "computed": "asSpecified",
14
+ "order": "uniqueOrder",
15
+ "status": "standard",
16
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-collapse",
17
+ "property": "border-collapse",
18
+ "group": "CSS Table"
19
+ },
20
+ {
21
+ "syntax": "<length> <length>?",
22
+ "media": "visual",
23
+ "inherited": true,
24
+ "animationType": "discrete",
25
+ "percentages": "no",
26
+ "groups": [
27
+ "CSS Table"
28
+ ],
29
+ "initial": "0",
30
+ "appliesto": "tableElements",
31
+ "computed": "twoAbsoluteLengths",
32
+ "order": "uniqueOrder",
33
+ "status": "standard",
34
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-spacing",
35
+ "property": "border-spacing",
36
+ "group": "CSS Table"
37
+ },
38
+ {
39
+ "syntax": "top | bottom | block-start | block-end | inline-start | inline-end",
40
+ "media": "visual",
41
+ "inherited": true,
42
+ "animationType": "discrete",
43
+ "percentages": "no",
44
+ "groups": [
45
+ "CSS Table"
46
+ ],
47
+ "initial": "top",
48
+ "appliesto": "tableCaptionElements",
49
+ "computed": "asSpecified",
50
+ "order": "uniqueOrder",
51
+ "status": "standard",
52
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/caption-side",
53
+ "property": "caption-side",
54
+ "group": "CSS Table"
55
+ },
56
+ {
57
+ "syntax": "show | hide",
58
+ "media": "visual",
59
+ "inherited": true,
60
+ "animationType": "discrete",
61
+ "percentages": "no",
62
+ "groups": [
63
+ "CSS Table"
64
+ ],
65
+ "initial": "show",
66
+ "appliesto": "tableCellElements",
67
+ "computed": "asSpecified",
68
+ "order": "uniqueOrder",
69
+ "status": "standard",
70
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/empty-cells",
71
+ "property": "empty-cells",
72
+ "group": "CSS Table"
73
+ },
74
+ {
75
+ "syntax": "auto | fixed",
76
+ "media": "visual",
77
+ "inherited": false,
78
+ "animationType": "discrete",
79
+ "percentages": "no",
80
+ "groups": [
81
+ "CSS Table"
82
+ ],
83
+ "initial": "auto",
84
+ "appliesto": "tableElements",
85
+ "computed": "asSpecified",
86
+ "order": "uniqueOrder",
87
+ "status": "standard",
88
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/table-layout",
89
+ "property": "table-layout",
90
+ "group": "CSS Table"
91
+ },
92
+ {
93
+ "syntax": "baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>",
94
+ "media": "visual",
95
+ "inherited": false,
96
+ "animationType": "length",
97
+ "percentages": "referToLineHeight",
98
+ "groups": [
99
+ "CSS Table"
100
+ ],
101
+ "initial": "baseline",
102
+ "appliesto": "inlineLevelAndTableCellElements",
103
+ "computed": "absoluteLengthOrKeyword",
104
+ "order": "uniqueOrder",
105
+ "alsoAppliesTo": [
106
+ "::first-letter",
107
+ "::first-line",
108
+ "::placeholder"
109
+ ],
110
+ "status": "standard",
111
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/vertical-align",
112
+ "property": "vertical-align",
113
+ "group": "CSS Table"
114
+ }
115
+ ]
@@ -0,0 +1,312 @@
1
+ [
2
+ {
3
+ "syntax": "<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>",
4
+ "media": "visual",
5
+ "inherited": false,
6
+ "animationType": [
7
+ "text-decoration-color",
8
+ "text-decoration-style",
9
+ "text-decoration-line",
10
+ "text-decoration-thickness"
11
+ ],
12
+ "percentages": "no",
13
+ "groups": [
14
+ "CSS Text Decoration"
15
+ ],
16
+ "initial": [
17
+ "text-decoration-color",
18
+ "text-decoration-style",
19
+ "text-decoration-line"
20
+ ],
21
+ "appliesto": "allElements",
22
+ "computed": [
23
+ "text-decoration-line",
24
+ "text-decoration-style",
25
+ "text-decoration-color",
26
+ "text-decoration-thickness"
27
+ ],
28
+ "order": "orderOfAppearance",
29
+ "alsoAppliesTo": [
30
+ "::first-letter",
31
+ "::first-line",
32
+ "::placeholder"
33
+ ],
34
+ "status": "standard",
35
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration",
36
+ "property": "text-decoration",
37
+ "group": "CSS Text Decoration"
38
+ },
39
+ {
40
+ "syntax": "<color>",
41
+ "media": "visual",
42
+ "inherited": false,
43
+ "animationType": "color",
44
+ "percentages": "no",
45
+ "groups": [
46
+ "CSS Text Decoration"
47
+ ],
48
+ "initial": "currentcolor",
49
+ "appliesto": "allElements",
50
+ "computed": "computedColor",
51
+ "order": "uniqueOrder",
52
+ "alsoAppliesTo": [
53
+ "::first-letter",
54
+ "::first-line",
55
+ "::placeholder"
56
+ ],
57
+ "status": "standard",
58
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-color",
59
+ "property": "text-decoration-color",
60
+ "group": "CSS Text Decoration"
61
+ },
62
+ {
63
+ "syntax": "none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error",
64
+ "media": "visual",
65
+ "inherited": false,
66
+ "animationType": "discrete",
67
+ "percentages": "no",
68
+ "groups": [
69
+ "CSS Text Decoration"
70
+ ],
71
+ "initial": "none",
72
+ "appliesto": "allElements",
73
+ "computed": "asSpecified",
74
+ "order": "orderOfAppearance",
75
+ "alsoAppliesTo": [
76
+ "::first-letter",
77
+ "::first-line",
78
+ "::placeholder"
79
+ ],
80
+ "status": "standard",
81
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-line",
82
+ "property": "text-decoration-line",
83
+ "group": "CSS Text Decoration"
84
+ },
85
+ {
86
+ "syntax": "none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]",
87
+ "media": "visual",
88
+ "inherited": true,
89
+ "animationType": "discrete",
90
+ "percentages": "no",
91
+ "groups": [
92
+ "CSS Text Decoration"
93
+ ],
94
+ "initial": "objects",
95
+ "appliesto": "allElements",
96
+ "computed": "asSpecified",
97
+ "order": "orderOfAppearance",
98
+ "status": "experimental",
99
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip",
100
+ "property": "text-decoration-skip",
101
+ "group": "CSS Text Decoration"
102
+ },
103
+ {
104
+ "syntax": "auto | all | none",
105
+ "media": "visual",
106
+ "inherited": true,
107
+ "animationType": "discrete",
108
+ "percentages": "no",
109
+ "groups": [
110
+ "CSS Text Decoration"
111
+ ],
112
+ "initial": "auto",
113
+ "appliesto": "allElements",
114
+ "computed": "asSpecified",
115
+ "order": "orderOfAppearance",
116
+ "status": "standard",
117
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink",
118
+ "property": "text-decoration-skip-ink",
119
+ "group": "CSS Text Decoration"
120
+ },
121
+ {
122
+ "syntax": "solid | double | dotted | dashed | wavy",
123
+ "media": "visual",
124
+ "inherited": false,
125
+ "animationType": "discrete",
126
+ "percentages": "no",
127
+ "groups": [
128
+ "CSS Text Decoration"
129
+ ],
130
+ "initial": "solid",
131
+ "appliesto": "allElements",
132
+ "computed": "asSpecified",
133
+ "order": "uniqueOrder",
134
+ "alsoAppliesTo": [
135
+ "::first-letter",
136
+ "::first-line",
137
+ "::placeholder"
138
+ ],
139
+ "status": "standard",
140
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-style",
141
+ "property": "text-decoration-style",
142
+ "group": "CSS Text Decoration"
143
+ },
144
+ {
145
+ "syntax": "auto | from-font | <length> | <percentage> ",
146
+ "media": "visual",
147
+ "inherited": false,
148
+ "animationType": "byComputedValueType",
149
+ "percentages": "referToElementFontSize",
150
+ "groups": [
151
+ "CSS Text Decoration"
152
+ ],
153
+ "initial": "auto",
154
+ "appliesto": "allElements",
155
+ "computed": "asSpecified",
156
+ "order": "uniqueOrder",
157
+ "alsoAppliesTo": [
158
+ "::first-letter",
159
+ "::first-line",
160
+ "::placeholder"
161
+ ],
162
+ "status": "standard",
163
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness",
164
+ "property": "text-decoration-thickness",
165
+ "group": "CSS Text Decoration"
166
+ },
167
+ {
168
+ "syntax": "<'text-emphasis-style'> || <'text-emphasis-color'>",
169
+ "media": "visual",
170
+ "inherited": true,
171
+ "animationType": [
172
+ "text-emphasis-color",
173
+ "text-emphasis-style"
174
+ ],
175
+ "percentages": "no",
176
+ "groups": [
177
+ "CSS Text Decoration"
178
+ ],
179
+ "initial": [
180
+ "text-emphasis-style",
181
+ "text-emphasis-color"
182
+ ],
183
+ "appliesto": "allElements",
184
+ "computed": [
185
+ "text-emphasis-style",
186
+ "text-emphasis-color"
187
+ ],
188
+ "order": "orderOfAppearance",
189
+ "status": "standard",
190
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-emphasis",
191
+ "property": "text-emphasis",
192
+ "group": "CSS Text Decoration"
193
+ },
194
+ {
195
+ "syntax": "<color>",
196
+ "media": "visual",
197
+ "inherited": true,
198
+ "animationType": "color",
199
+ "percentages": "no",
200
+ "groups": [
201
+ "CSS Text Decoration"
202
+ ],
203
+ "initial": "currentcolor",
204
+ "appliesto": "allElements",
205
+ "computed": "computedColor",
206
+ "order": "uniqueOrder",
207
+ "status": "standard",
208
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color",
209
+ "property": "text-emphasis-color",
210
+ "group": "CSS Text Decoration"
211
+ },
212
+ {
213
+ "syntax": "[ over | under ] && [ right | left ]",
214
+ "media": "visual",
215
+ "inherited": true,
216
+ "animationType": "discrete",
217
+ "percentages": "no",
218
+ "groups": [
219
+ "CSS Text Decoration"
220
+ ],
221
+ "initial": "over right",
222
+ "appliesto": "allElements",
223
+ "computed": "asSpecified",
224
+ "order": "uniqueOrder",
225
+ "status": "standard",
226
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position",
227
+ "property": "text-emphasis-position",
228
+ "group": "CSS Text Decoration"
229
+ },
230
+ {
231
+ "syntax": "none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>",
232
+ "media": "visual",
233
+ "inherited": true,
234
+ "animationType": "discrete",
235
+ "percentages": "no",
236
+ "groups": [
237
+ "CSS Text Decoration"
238
+ ],
239
+ "initial": "none",
240
+ "appliesto": "allElements",
241
+ "computed": "asSpecified",
242
+ "order": "uniqueOrder",
243
+ "status": "standard",
244
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style",
245
+ "property": "text-emphasis-style",
246
+ "group": "CSS Text Decoration"
247
+ },
248
+ {
249
+ "syntax": "none | <shadow-t>#",
250
+ "media": "visual",
251
+ "inherited": true,
252
+ "animationType": "shadowList",
253
+ "percentages": "no",
254
+ "groups": [
255
+ "CSS Text Decoration"
256
+ ],
257
+ "initial": "none",
258
+ "appliesto": "allElements",
259
+ "computed": "colorPlusThreeAbsoluteLengths",
260
+ "order": "uniqueOrder",
261
+ "alsoAppliesTo": [
262
+ "::first-letter",
263
+ "::first-line",
264
+ "::placeholder"
265
+ ],
266
+ "status": "standard",
267
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-shadow",
268
+ "property": "text-shadow",
269
+ "group": "CSS Text Decoration"
270
+ },
271
+ {
272
+ "syntax": "auto | <length> | <percentage> ",
273
+ "media": "visual",
274
+ "inherited": true,
275
+ "animationType": "byComputedValueType",
276
+ "percentages": "referToElementFontSize",
277
+ "groups": [
278
+ "CSS Text Decoration"
279
+ ],
280
+ "initial": "auto",
281
+ "appliesto": "allElements",
282
+ "computed": "asSpecified",
283
+ "order": "uniqueOrder",
284
+ "alsoAppliesTo": [
285
+ "::first-letter",
286
+ "::first-line",
287
+ "::placeholder"
288
+ ],
289
+ "status": "standard",
290
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-underline-offset",
291
+ "property": "text-underline-offset",
292
+ "group": "CSS Text Decoration"
293
+ },
294
+ {
295
+ "syntax": "auto | from-font | [ under || [ left | right ] ]",
296
+ "media": "visual",
297
+ "inherited": true,
298
+ "animationType": "discrete",
299
+ "percentages": "no",
300
+ "groups": [
301
+ "CSS Text Decoration"
302
+ ],
303
+ "initial": "auto",
304
+ "appliesto": "allElements",
305
+ "computed": "asSpecified",
306
+ "order": "orderOfAppearance",
307
+ "status": "standard",
308
+ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-underline-position",
309
+ "property": "text-underline-position",
310
+ "group": "CSS Text Decoration"
311
+ }
312
+ ]