@pandacss/types 0.21.0 → 0.22.1

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/dist/csstype.d.ts CHANGED
@@ -6,7 +6,7 @@ export type PropertyValue<TValue> = TValue extends Array<infer AValue>
6
6
  ? TUnpacked
7
7
  : TValue;
8
8
 
9
- export type Fallback<T> = { [P in keyof T]: T[P] | NonNullable<T[P]>[] };
9
+ export type Fallback<T> = { [P in keyof T]: T[P] | readonly NonNullable<T[P]>[] };
10
10
 
11
11
  export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
12
12
  /**
@@ -91,7 +91,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
91
91
  *
92
92
  * | Chrome | Firefox | Safari | Edge | IE |
93
93
  * | :-----: | :-----: | :----: | :--: | :-: |
94
- * | **112** | n/a | **16** | n/a | No |
94
+ * | **112** | **115** | **16** | n/a | No |
95
95
  *
96
96
  * @see https://developer.mozilla.org/docs/Web/CSS/animation-composition
97
97
  */
@@ -201,6 +201,34 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
201
201
  * @see https://developer.mozilla.org/docs/Web/CSS/animation-play-state
202
202
  */
203
203
  animationPlayState?: Property.AnimationPlayState | undefined;
204
+ /**
205
+ * The **`animation-range-end`** CSS property is used to set the end of an animation's attachment range along its timeline, i.e. where along the timeline an animation will end.
206
+ *
207
+ * **Syntax**: `[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#`
208
+ *
209
+ * **Initial value**: `normal`
210
+ *
211
+ * | Chrome | Firefox | Safari | Edge | IE |
212
+ * | :-----: | :-----: | :----: | :--: | :-: |
213
+ * | **115** | No | No | n/a | No |
214
+ *
215
+ * @see https://developer.mozilla.org/docs/Web/CSS/animation-range-end
216
+ */
217
+ animationRangeEnd?: Property.AnimationRangeEnd<TLength> | undefined;
218
+ /**
219
+ * The **`animation-range-start`** CSS property is used to set the start of an animation's attachment range along its timeline, i.e. where along the timeline an animation will start.
220
+ *
221
+ * **Syntax**: `[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#`
222
+ *
223
+ * **Initial value**: `normal`
224
+ *
225
+ * | Chrome | Firefox | Safari | Edge | IE |
226
+ * | :-----: | :-----: | :----: | :--: | :-: |
227
+ * | **115** | No | No | n/a | No |
228
+ *
229
+ * @see https://developer.mozilla.org/docs/Web/CSS/animation-range-start
230
+ */
231
+ animationRangeStart?: Property.AnimationRangeStart<TLength> | undefined;
204
232
  /**
205
233
  * The **`animation-timeline`** CSS property specifies the timeline that is used to control the progress of an animation.
206
234
  *
@@ -208,9 +236,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
208
236
  *
209
237
  * **Initial value**: `auto`
210
238
  *
211
- * | Chrome | Firefox | Safari | Edge | IE |
212
- * | :----: | :-----: | :----: | :--: | :-: |
213
- * | No | n/a | No | n/a | No |
239
+ * | Chrome | Firefox | Safari | Edge | IE |
240
+ * | :-----: | :-----: | :----: | :--: | :-: |
241
+ * | **115** | n/a | No | n/a | No |
214
242
  *
215
243
  * @see https://developer.mozilla.org/docs/Web/CSS/animation-timeline
216
244
  */
@@ -280,10 +308,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
280
308
  *
281
309
  * **Initial value**: `visible`
282
310
  *
283
- * | Chrome | Firefox | Safari | Edge | IE |
284
- * | :------: | :------: | :-------: | :----: | :----: |
285
- * | **36** | **16** | **15.4** | **12** | **10** |
286
- * | 12 _-x-_ | 10 _-x-_ | 5.1 _-x-_ | | |
311
+ * | Chrome | Firefox | Safari | Edge | IE |
312
+ * | :------: | :-----: | :-------: | :----: | :----: |
313
+ * | **36** | **16** | **15.4** | **12** | **10** |
314
+ * | 12 _-x-_ | | 5.1 _-x-_ | | |
287
315
  *
288
316
  * @see https://developer.mozilla.org/docs/Web/CSS/backface-visibility
289
317
  */
@@ -325,7 +353,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
325
353
  *
326
354
  * | Chrome | Firefox | Safari | Edge | IE |
327
355
  * | :----: | :-----: | :-----: | :----: | :---: |
328
- * | **1** | **4** | **14** | **12** | **9** |
356
+ * | **1** | **4** | **5** | **12** | **9** |
329
357
  * | | | 3 _-x-_ | | |
330
358
  *
331
359
  * @see https://developer.mozilla.org/docs/Web/CSS/background-clip
@@ -1431,13 +1459,13 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
1431
1459
  /**
1432
1460
  * The **`contain-intrinsic-block-size`** CSS logical property defines the block size of an element that a browser can use for layout when the element is subject to size containment.
1433
1461
  *
1434
- * **Syntax**: `none | <length> | auto <length>`
1462
+ * **Syntax**: `auto? [ none | <length> ]`
1435
1463
  *
1436
1464
  * **Initial value**: `none`
1437
1465
  *
1438
1466
  * | Chrome | Firefox | Safari | Edge | IE |
1439
1467
  * | :----: | :-----: | :----: | :--: | :-: |
1440
- * | **95** | **107** | No | n/a | No |
1468
+ * | **95** | **107** | **17** | n/a | No |
1441
1469
  *
1442
1470
  * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-block-size
1443
1471
  */
@@ -1445,13 +1473,13 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
1445
1473
  /**
1446
1474
  * The **`contain-intrinsic-length`** CSS property sets the height of an element that a browser can use for layout when the element is subject to size containment.
1447
1475
  *
1448
- * **Syntax**: `none | <length> | auto <length>`
1476
+ * **Syntax**: `auto? [ none | <length> ]`
1449
1477
  *
1450
1478
  * **Initial value**: `none`
1451
1479
  *
1452
1480
  * | Chrome | Firefox | Safari | Edge | IE |
1453
1481
  * | :----: | :-----: | :----: | :--: | :-: |
1454
- * | **83** | **107** | No | n/a | No |
1482
+ * | **95** | **107** | **17** | n/a | No |
1455
1483
  *
1456
1484
  * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-height
1457
1485
  */
@@ -1459,13 +1487,13 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
1459
1487
  /**
1460
1488
  * The **`contain-intrinsic-inline-size`** CSS logical property defines the inline-size of an element that a browser can use for layout when the element is subject to size containment.
1461
1489
  *
1462
- * **Syntax**: `none | <length> | auto <length>`
1490
+ * **Syntax**: `auto? [ none | <length> ]`
1463
1491
  *
1464
1492
  * **Initial value**: `none`
1465
1493
  *
1466
1494
  * | Chrome | Firefox | Safari | Edge | IE |
1467
1495
  * | :----: | :-----: | :----: | :--: | :-: |
1468
- * | **95** | **107** | No | n/a | No |
1496
+ * | **95** | **107** | **17** | n/a | No |
1469
1497
  *
1470
1498
  * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-inline-size
1471
1499
  */
@@ -1473,13 +1501,13 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
1473
1501
  /**
1474
1502
  * The **`contain-intrinsic-width`** CSS property sets the width of an element that a browser will use for layout when the element is subject to size containment.
1475
1503
  *
1476
- * **Syntax**: `none | <length> | auto <length>`
1504
+ * **Syntax**: `auto? [ none | <length> ]`
1477
1505
  *
1478
1506
  * **Initial value**: `none`
1479
1507
  *
1480
1508
  * | Chrome | Firefox | Safari | Edge | IE |
1481
1509
  * | :----: | :-----: | :----: | :--: | :-: |
1482
- * | **83** | **107** | No | n/a | No |
1510
+ * | **95** | **107** | **17** | n/a | No |
1483
1511
  *
1484
1512
  * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-width
1485
1513
  */
@@ -1533,9 +1561,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
1533
1561
  *
1534
1562
  * **Initial value**: `visible`
1535
1563
  *
1536
- * | Chrome | Firefox | Safari | Edge | IE |
1537
- * | :----: | :-----: | :----: | :--: | :-: |
1538
- * | **85** | n/a | No | n/a | No |
1564
+ * | Chrome | Firefox | Safari | Edge | IE |
1565
+ * | :----: | :---------: | :----: | :--: | :-: |
1566
+ * | **85** | **preview** | No | n/a | No |
1539
1567
  *
1540
1568
  * @see https://developer.mozilla.org/docs/Web/CSS/content-visibility
1541
1569
  */
@@ -1575,9 +1603,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
1575
1603
  *
1576
1604
  * **Initial value**: `none`
1577
1605
  *
1578
- * | Chrome | Firefox | Safari | Edge | IE |
1579
- * | :----: | :-----: | :----: | :--: | :-: |
1580
- * | **85** | **68** | No | n/a | No |
1606
+ * | Chrome | Firefox | Safari | Edge | IE |
1607
+ * | :----: | :-----: | :------: | :--: | :-: |
1608
+ * | **85** | **68** | **17.2** | n/a | No |
1581
1609
  *
1582
1610
  * @see https://developer.mozilla.org/docs/Web/CSS/counter-set
1583
1611
  */
@@ -1900,9 +1928,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
1900
1928
  /**
1901
1929
  * The **`font-synthesis`** CSS property controls which missing typefaces, bold, italic, or small-caps, may be synthesized by the browser.
1902
1930
  *
1903
- * **Syntax**: `none | [ weight || style || small-caps ]`
1931
+ * **Syntax**: `none | [ weight || style || small-caps || position]`
1904
1932
  *
1905
- * **Initial value**: `weight style`
1933
+ * **Initial value**: `weight style small-caps position `
1906
1934
  *
1907
1935
  * | Chrome | Firefox | Safari | Edge | IE |
1908
1936
  * | :----: | :-----: | :----: | :--: | :-: |
@@ -1911,6 +1939,62 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
1911
1939
  * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis
1912
1940
  */
1913
1941
  fontSynthesis?: Property.FontSynthesis | undefined;
1942
+ /**
1943
+ * The **`font-synthesis-position`** CSS property lets you specify whether or not a browser may synthesize the subscript and superscript "position" typefaces when they are missing in a font family, while using `font-variant-position` to set the positions.
1944
+ *
1945
+ * **Syntax**: `auto | none`
1946
+ *
1947
+ * **Initial value**: `none`
1948
+ *
1949
+ * | Chrome | Firefox | Safari | Edge | IE |
1950
+ * | :----: | :-----: | :----: | :--: | :-: |
1951
+ * | No | **118** | No | n/a | No |
1952
+ *
1953
+ * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis-position
1954
+ */
1955
+ fontSynthesisPosition?: Property.FontSynthesisPosition | undefined;
1956
+ /**
1957
+ * The **`font-synthesis-small-caps`** CSS property lets you specify whether or not the browser may synthesize small-caps typeface when it is missing in a font family. Small-caps glyphs typically use the form of uppercase letters but are reduced to the size of lowercase letters.
1958
+ *
1959
+ * **Syntax**: `auto | none`
1960
+ *
1961
+ * **Initial value**: `auto`
1962
+ *
1963
+ * | Chrome | Firefox | Safari | Edge | IE |
1964
+ * | :----: | :-----: | :------: | :--: | :-: |
1965
+ * | **97** | **111** | **16.4** | n/a | No |
1966
+ *
1967
+ * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis-small-caps
1968
+ */
1969
+ fontSynthesisSmallCaps?: Property.FontSynthesisSmallCaps | undefined;
1970
+ /**
1971
+ * The **`font-synthesis-style`** CSS property lets you specify whether or not the browser may synthesize the oblique typeface when it is missing in a font family.
1972
+ *
1973
+ * **Syntax**: `auto | none`
1974
+ *
1975
+ * **Initial value**: `auto`
1976
+ *
1977
+ * | Chrome | Firefox | Safari | Edge | IE |
1978
+ * | :----: | :-----: | :------: | :--: | :-: |
1979
+ * | **97** | **111** | **16.4** | n/a | No |
1980
+ *
1981
+ * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis-style
1982
+ */
1983
+ fontSynthesisStyle?: Property.FontSynthesisStyle | undefined;
1984
+ /**
1985
+ * The **`font-synthesis-weight`** CSS property lets you specify whether or not the browser may synthesize the bold typeface when it is missing in a font family.
1986
+ *
1987
+ * **Syntax**: `auto | none`
1988
+ *
1989
+ * **Initial value**: `auto`
1990
+ *
1991
+ * | Chrome | Firefox | Safari | Edge | IE |
1992
+ * | :----: | :-----: | :------: | :--: | :-: |
1993
+ * | **97** | **111** | **16.4** | n/a | No |
1994
+ *
1995
+ * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis-weight
1996
+ */
1997
+ fontSynthesisWeight?: Property.FontSynthesisWeight | undefined;
1914
1998
  /**
1915
1999
  * The **`font-variant`** CSS shorthand property allows you to set all the font variants for a font.
1916
2000
  *
@@ -1932,9 +2016,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
1932
2016
  *
1933
2017
  * **Initial value**: `normal`
1934
2018
  *
1935
- * | Chrome | Firefox | Safari | Edge | IE |
1936
- * | :----: | :-----: | :-----: | :--: | :-: |
1937
- * | No | **34** | **9.1** | n/a | No |
2019
+ * | Chrome | Firefox | Safari | Edge | IE |
2020
+ * | :-----: | :-----: | :-----: | :--: | :-: |
2021
+ * | **111** | **34** | **9.1** | n/a | No |
1938
2022
  *
1939
2023
  * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-alternates
1940
2024
  */
@@ -1974,7 +2058,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
1974
2058
  *
1975
2059
  * | Chrome | Firefox | Safari | Edge | IE |
1976
2060
  * | :----: | :-----: | :----: | :--: | :-: |
1977
- * | No | **108** | No | n/a | No |
2061
+ * | No | n/a | No | n/a | No |
1978
2062
  *
1979
2063
  * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-emoji
1980
2064
  */
@@ -2015,9 +2099,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2015
2099
  *
2016
2100
  * **Initial value**: `normal`
2017
2101
  *
2018
- * | Chrome | Firefox | Safari | Edge | IE |
2019
- * | :----: | :-----: | :-----: | :--: | :-: |
2020
- * | No | **34** | **9.1** | n/a | No |
2102
+ * | Chrome | Firefox | Safari | Edge | IE |
2103
+ * | :-----: | :-----: | :-----: | :--: | :-: |
2104
+ * | **117** | **34** | **9.1** | n/a | No |
2021
2105
  *
2022
2106
  * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
2023
2107
  */
@@ -2059,7 +2143,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2059
2143
  *
2060
2144
  * | Chrome | Firefox | Safari | Edge | IE |
2061
2145
  * | :----: | :-----: | :----: | :-----------------------------: | :---------------------------------: |
2062
- * | **89** | No | No | **79** | **10** _(-ms-high-contrast-adjust)_ |
2146
+ * | **89** | **113** | No | **79** | **10** _(-ms-high-contrast-adjust)_ |
2063
2147
  * | | | | 12 _(-ms-high-contrast-adjust)_ | |
2064
2148
  *
2065
2149
  * @see https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust
@@ -2240,10 +2324,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2240
2324
  *
2241
2325
  * **Initial value**: `auto`
2242
2326
  *
2243
- * | Chrome | Firefox | Safari | Edge | IE |
2244
- * | :-----: | :-----: | :-----------: | :--: | :-: |
2245
- * | **106** | **98** | **5.1** _-x-_ | n/a | No |
2246
- * | 6 _-x-_ | | | | |
2327
+ * | Chrome | Firefox | Safari | Edge | IE |
2328
+ * | :-----: | :-----: | :-------: | :--: | :-: |
2329
+ * | **106** | **98** | **17** | n/a | No |
2330
+ * | 6 _-x-_ | | 5.1 _-x-_ | | |
2247
2331
  *
2248
2332
  * @see https://developer.mozilla.org/docs/Web/CSS/hyphenate-character
2249
2333
  */
@@ -2267,10 +2351,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2267
2351
  *
2268
2352
  * **Initial value**: `manual`
2269
2353
  *
2270
- * | Chrome | Firefox | Safari | Edge | IE |
2271
- * | :------: | :-----: | :-----------: | :----: | :----------: |
2272
- * | **55** | **43** | **5.1** _-x-_ | **79** | **10** _-x-_ |
2273
- * | 13 _-x-_ | 6 _-x-_ | | | |
2354
+ * | Chrome | Firefox | Safari | Edge | IE |
2355
+ * | :------: | :-----: | :-------: | :----: | :----------: |
2356
+ * | **55** | **43** | **17** | **79** | **10** _-x-_ |
2357
+ * | 13 _-x-_ | 6 _-x-_ | 5.1 _-x-_ | | |
2274
2358
  *
2275
2359
  * @see https://developer.mozilla.org/docs/Web/CSS/hyphens
2276
2360
  */
@@ -2592,7 +2676,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2592
2676
  *
2593
2677
  * | Chrome | Firefox | Safari | Edge | IE |
2594
2678
  * | :----: | :-----: | :------: | :--: | :-: |
2595
- * | **87** | **41** | **12.1** | n/a | No |
2679
+ * | **69** | **41** | **12.1** | n/a | No |
2596
2680
  *
2597
2681
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end
2598
2682
  */
@@ -2606,7 +2690,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2606
2690
  *
2607
2691
  * | Chrome | Firefox | Safari | Edge | IE |
2608
2692
  * | :----: | :-----: | :------: | :--: | :-: |
2609
- * | **87** | **41** | **12.1** | n/a | No |
2693
+ * | **69** | **41** | **12.1** | n/a | No |
2610
2694
  *
2611
2695
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start
2612
2696
  */
@@ -2634,7 +2718,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2634
2718
  *
2635
2719
  * | Chrome | Firefox | Safari | Edge | IE |
2636
2720
  * | :----------------------: | :-------------------: | :----------------------: | :--: | :-: |
2637
- * | **87** | **41** | **12.1** | n/a | No |
2721
+ * | **69** | **41** | **12.1** | n/a | No |
2638
2722
  * | 2 _(-webkit-margin-end)_ | 3 _(-moz-margin-end)_ | 3 _(-webkit-margin-end)_ | | |
2639
2723
  *
2640
2724
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
@@ -2649,7 +2733,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2649
2733
  *
2650
2734
  * | Chrome | Firefox | Safari | Edge | IE |
2651
2735
  * | :------------------------: | :---------------------: | :------------------------: | :--: | :-: |
2652
- * | **87** | **41** | **12.1** | n/a | No |
2736
+ * | **69** | **41** | **12.1** | n/a | No |
2653
2737
  * | 2 _(-webkit-margin-start)_ | 3 _(-moz-margin-start)_ | 3 _(-webkit-margin-start)_ | | |
2654
2738
  *
2655
2739
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
@@ -2726,9 +2810,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2726
2810
  *
2727
2811
  * **Initial value**: `0`
2728
2812
  *
2729
- * | Chrome | Firefox | Safari | Edge | IE |
2730
- * | :-------------------------------------: | :-----: | :---------------------------------------: | :--: | :-: |
2731
- * | **1** _(-webkit-mask-box-image-outset)_ | No | **3.1** _(-webkit-mask-box-image-outset)_ | n/a | No |
2813
+ * | Chrome | Firefox | Safari | Edge | IE |
2814
+ * | :-------------------------------------: | :-----: | :-----------------------------------: | :--: | :-: |
2815
+ * | **1** _(-webkit-mask-box-image-outset)_ | No | **17.2** | n/a | No |
2816
+ * | | | 3.1 _(-webkit-mask-box-image-outset)_ | | |
2732
2817
  *
2733
2818
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-outset
2734
2819
  */
@@ -2740,9 +2825,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2740
2825
  *
2741
2826
  * **Initial value**: `stretch`
2742
2827
  *
2743
- * | Chrome | Firefox | Safari | Edge | IE |
2744
- * | :-------------------------------------: | :-----: | :---------------------------------------: | :--: | :-: |
2745
- * | **1** _(-webkit-mask-box-image-repeat)_ | No | **3.1** _(-webkit-mask-box-image-repeat)_ | n/a | No |
2828
+ * | Chrome | Firefox | Safari | Edge | IE |
2829
+ * | :-------------------------------------: | :-----: | :-----------------------------------: | :--: | :-: |
2830
+ * | **1** _(-webkit-mask-box-image-repeat)_ | No | **17.2** | n/a | No |
2831
+ * | | | 3.1 _(-webkit-mask-box-image-repeat)_ | | |
2746
2832
  *
2747
2833
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat
2748
2834
  */
@@ -2754,9 +2840,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2754
2840
  *
2755
2841
  * **Initial value**: `0`
2756
2842
  *
2757
- * | Chrome | Firefox | Safari | Edge | IE |
2758
- * | :------------------------------------: | :-----: | :--------------------------------------: | :--: | :-: |
2759
- * | **1** _(-webkit-mask-box-image-slice)_ | No | **3.1** _(-webkit-mask-box-image-slice)_ | n/a | No |
2843
+ * | Chrome | Firefox | Safari | Edge | IE |
2844
+ * | :------------------------------------: | :-----: | :----------------------------------: | :--: | :-: |
2845
+ * | **1** _(-webkit-mask-box-image-slice)_ | No | **17.2** | n/a | No |
2846
+ * | | | 3.1 _(-webkit-mask-box-image-slice)_ | | |
2760
2847
  *
2761
2848
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-slice
2762
2849
  */
@@ -2768,9 +2855,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2768
2855
  *
2769
2856
  * **Initial value**: `none`
2770
2857
  *
2771
- * | Chrome | Firefox | Safari | Edge | IE |
2772
- * | :-------------------------------------: | :-----: | :---------------------------------------: | :--: | :-: |
2773
- * | **1** _(-webkit-mask-box-image-source)_ | No | **3.1** _(-webkit-mask-box-image-source)_ | n/a | No |
2858
+ * | Chrome | Firefox | Safari | Edge | IE |
2859
+ * | :-------------------------------------: | :-----: | :-----------------------------------: | :--: | :-: |
2860
+ * | **1** _(-webkit-mask-box-image-source)_ | No | **17.2** | n/a | No |
2861
+ * | | | 3.1 _(-webkit-mask-box-image-source)_ | | |
2774
2862
  *
2775
2863
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-source
2776
2864
  */
@@ -2782,9 +2870,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2782
2870
  *
2783
2871
  * **Initial value**: `auto`
2784
2872
  *
2785
- * | Chrome | Firefox | Safari | Edge | IE |
2786
- * | :------------------------------------: | :-----: | :--------------------------------------: | :--: | :-: |
2787
- * | **1** _(-webkit-mask-box-image-width)_ | No | **3.1** _(-webkit-mask-box-image-width)_ | n/a | No |
2873
+ * | Chrome | Firefox | Safari | Edge | IE |
2874
+ * | :------------------------------------: | :-----: | :----------------------------------: | :--: | :-: |
2875
+ * | **1** _(-webkit-mask-box-image-width)_ | No | **17.2** | n/a | No |
2876
+ * | | | 3.1 _(-webkit-mask-box-image-width)_ | | |
2788
2877
  *
2789
2878
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-width
2790
2879
  */
@@ -2796,10 +2885,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2796
2885
  *
2797
2886
  * **Initial value**: `border-box`
2798
2887
  *
2799
- * | Chrome | Firefox | Safari | Edge | IE |
2800
- * | :---------: | :-----: | :------: | :--: | :-: |
2801
- * | **1** _-x-_ | **53** | **15.4** | n/a | No |
2802
- * | | | 4 _-x-_ | | |
2888
+ * | Chrome | Firefox | Safari | Edge | IE |
2889
+ * | :-----: | :-----: | :------: | :--: | :-: |
2890
+ * | **120** | **53** | **15.4** | n/a | No |
2891
+ * | 1 _-x-_ | | 4 _-x-_ | | |
2803
2892
  *
2804
2893
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-clip
2805
2894
  */
@@ -2811,9 +2900,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2811
2900
  *
2812
2901
  * **Initial value**: `add`
2813
2902
  *
2814
- * | Chrome | Firefox | Safari | Edge | IE |
2815
- * | :----: | :-----: | :------: | :---: | :-: |
2816
- * | No | **53** | **15.4** | 18-79 | No |
2903
+ * | Chrome | Firefox | Safari | Edge | IE |
2904
+ * | :-----: | :-----: | :------: | :---: | :-: |
2905
+ * | **120** | **53** | **15.4** | 18-79 | No |
2817
2906
  *
2818
2907
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-composite
2819
2908
  */
@@ -2825,10 +2914,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2825
2914
  *
2826
2915
  * **Initial value**: `none`
2827
2916
  *
2828
- * | Chrome | Firefox | Safari | Edge | IE |
2829
- * | :---------: | :-----: | :------: | :---: | :-: |
2830
- * | **1** _-x-_ | **53** | **15.4** | 16-79 | No |
2831
- * | | | 4 _-x-_ | | |
2917
+ * | Chrome | Firefox | Safari | Edge | IE |
2918
+ * | :-----: | :-----: | :------: | :---: | :-: |
2919
+ * | **120** | **53** | **15.4** | 16-79 | No |
2920
+ * | 1 _-x-_ | | 4 _-x-_ | | |
2832
2921
  *
2833
2922
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-image
2834
2923
  */
@@ -2840,9 +2929,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2840
2929
  *
2841
2930
  * **Initial value**: `match-source`
2842
2931
  *
2843
- * | Chrome | Firefox | Safari | Edge | IE |
2844
- * | :----: | :-----: | :------: | :--: | :-: |
2845
- * | No | **53** | **15.4** | n/a | No |
2932
+ * | Chrome | Firefox | Safari | Edge | IE |
2933
+ * | :-----: | :-----: | :------: | :--: | :-: |
2934
+ * | **120** | **53** | **15.4** | n/a | No |
2846
2935
  *
2847
2936
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-mode
2848
2937
  */
@@ -2854,10 +2943,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2854
2943
  *
2855
2944
  * **Initial value**: `border-box`
2856
2945
  *
2857
- * | Chrome | Firefox | Safari | Edge | IE |
2858
- * | :---------: | :-----: | :------: | :--: | :-: |
2859
- * | **1** _-x-_ | **53** | **15.4** | n/a | No |
2860
- * | | | 4 _-x-_ | | |
2946
+ * | Chrome | Firefox | Safari | Edge | IE |
2947
+ * | :-----: | :-----: | :------: | :--: | :-: |
2948
+ * | **120** | **53** | **15.4** | n/a | No |
2949
+ * | 1 _-x-_ | | 4 _-x-_ | | |
2861
2950
  *
2862
2951
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-origin
2863
2952
  */
@@ -2869,10 +2958,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2869
2958
  *
2870
2959
  * **Initial value**: `center`
2871
2960
  *
2872
- * | Chrome | Firefox | Safari | Edge | IE |
2873
- * | :---------: | :-----: | :-------: | :---: | :-: |
2874
- * | **1** _-x-_ | **53** | **15.4** | 18-79 | No |
2875
- * | | | 3.1 _-x-_ | | |
2961
+ * | Chrome | Firefox | Safari | Edge | IE |
2962
+ * | :-----: | :-----: | :-------: | :---: | :-: |
2963
+ * | **120** | **53** | **15.4** | 18-79 | No |
2964
+ * | 1 _-x-_ | | 3.1 _-x-_ | | |
2876
2965
  *
2877
2966
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-position
2878
2967
  */
@@ -2884,10 +2973,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2884
2973
  *
2885
2974
  * **Initial value**: `repeat`
2886
2975
  *
2887
- * | Chrome | Firefox | Safari | Edge | IE |
2888
- * | :---------: | :-----: | :-------: | :---: | :-: |
2889
- * | **1** _-x-_ | **53** | **15.4** | 18-79 | No |
2890
- * | | | 3.1 _-x-_ | | |
2976
+ * | Chrome | Firefox | Safari | Edge | IE |
2977
+ * | :-----: | :-----: | :-------: | :---: | :-: |
2978
+ * | **120** | **53** | **15.4** | 18-79 | No |
2979
+ * | 1 _-x-_ | | 3.1 _-x-_ | | |
2891
2980
  *
2892
2981
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat
2893
2982
  */
@@ -2899,10 +2988,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2899
2988
  *
2900
2989
  * **Initial value**: `auto`
2901
2990
  *
2902
- * | Chrome | Firefox | Safari | Edge | IE |
2903
- * | :---------: | :-----: | :------: | :---: | :-: |
2904
- * | **4** _-x-_ | **53** | **15.4** | 18-79 | No |
2905
- * | | | 4 _-x-_ | | |
2991
+ * | Chrome | Firefox | Safari | Edge | IE |
2992
+ * | :-----: | :-----: | :------: | :---: | :-: |
2993
+ * | **120** | **53** | **15.4** | 18-79 | No |
2994
+ * | 4 _-x-_ | | 4 _-x-_ | | |
2906
2995
  *
2907
2996
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-size
2908
2997
  */
@@ -2921,6 +3010,20 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2921
3010
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-type
2922
3011
  */
2923
3012
  maskType?: Property.MaskType | undefined;
3013
+ /**
3014
+ * This feature is not Baseline because it does not work in some of the most widely-used browsers.
3015
+ *
3016
+ * **Syntax**: `[ pack | next ] || [ definite-first | ordered ]`
3017
+ *
3018
+ * **Initial value**: `pack`
3019
+ *
3020
+ * | Chrome | Firefox | Safari | Edge | IE |
3021
+ * | :----: | :-----: | :---------: | :--: | :-: |
3022
+ * | No | No | **preview** | n/a | No |
3023
+ *
3024
+ * @see https://developer.mozilla.org/docs/Web/CSS/masonry-auto-flow
3025
+ */
3026
+ masonryAutoFlow?: Property.MasonryAutoFlow | undefined;
2924
3027
  /**
2925
3028
  * The **`math-depth`** property describes a notion of _depth_ for each element of a mathematical formula, with respect to the top-level container of that formula. Concretely, this is used to determine the computed value of the font-size property when its specified value is `math`.
2926
3029
  *
@@ -2930,7 +3033,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2930
3033
  *
2931
3034
  * | Chrome | Firefox | Safari | Edge | IE |
2932
3035
  * | :-----: | :-----: | :----: | :--: | :-: |
2933
- * | **109** | n/a | No | n/a | No |
3036
+ * | **109** | **117** | No | n/a | No |
2934
3037
  *
2935
3038
  * @see https://developer.mozilla.org/docs/Web/CSS/math-depth
2936
3039
  */
@@ -2958,7 +3061,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
2958
3061
  *
2959
3062
  * | Chrome | Firefox | Safari | Edge | IE |
2960
3063
  * | :-----: | :-----: | :------: | :--: | :-: |
2961
- * | **109** | n/a | **14.1** | n/a | No |
3064
+ * | **109** | **117** | **14.1** | n/a | No |
2962
3065
  *
2963
3066
  * @see https://developer.mozilla.org/docs/Web/CSS/math-style
2964
3067
  */
@@ -3103,10 +3206,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3103
3206
  *
3104
3207
  * **Initial value**: `0`
3105
3208
  *
3106
- * | Chrome | Firefox | Safari | Edge | IE |
3107
- * | :--------------------: | :-----: | :---------: | :--: | :-: |
3108
- * | **55** | **72** | **preview** | n/a | No |
3109
- * | 46 _(motion-distance)_ | | | | |
3209
+ * | Chrome | Firefox | Safari | Edge | IE |
3210
+ * | :--------------------: | :-----: | :----: | :--: | :-: |
3211
+ * | **55** | **72** | **16** | n/a | No |
3212
+ * | 46 _(motion-distance)_ | | | | |
3110
3213
  *
3111
3214
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
3112
3215
  */
@@ -3114,7 +3217,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3114
3217
  /**
3115
3218
  * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.
3116
3219
  *
3117
- * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`
3220
+ * **Syntax**: `none | <offset-path> || <coord-box>`
3118
3221
  *
3119
3222
  * **Initial value**: `none`
3120
3223
  *
@@ -3133,10 +3236,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3133
3236
  *
3134
3237
  * **Initial value**: `auto`
3135
3238
  *
3136
- * | Chrome | Firefox | Safari | Edge | IE |
3137
- * | :--------------------: | :-----: | :---------: | :--: | :-: |
3138
- * | **56** | **72** | **preview** | n/a | No |
3139
- * | 46 _(motion-rotation)_ | | | | |
3239
+ * | Chrome | Firefox | Safari | Edge | IE |
3240
+ * | :--------------------: | :-----: | :----: | :--: | :-: |
3241
+ * | **56** | **72** | **16** | n/a | No |
3242
+ * | 46 _(motion-rotation)_ | | | | |
3140
3243
  *
3141
3244
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
3142
3245
  */
@@ -3174,9 +3277,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3174
3277
  *
3175
3278
  * **Initial value**: `auto`
3176
3279
  *
3177
- * | Chrome | Firefox | Safari | Edge | IE |
3178
- * | :----: | :-----: | :---------: | :--: | :-: |
3179
- * | No | **72** | **preview** | n/a | No |
3280
+ * | Chrome | Firefox | Safari | Edge | IE |
3281
+ * | :-----: | :-----: | :----: | :--: | :-: |
3282
+ * | **116** | **72** | **16** | n/a | No |
3180
3283
  *
3181
3284
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-anchor
3182
3285
  */
@@ -3188,10 +3291,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3188
3291
  *
3189
3292
  * **Initial value**: `0`
3190
3293
  *
3191
- * | Chrome | Firefox | Safari | Edge | IE |
3192
- * | :--------------------: | :-----: | :---------: | :--: | :-: |
3193
- * | **55** | **72** | **preview** | n/a | No |
3194
- * | 46 _(motion-distance)_ | | | | |
3294
+ * | Chrome | Firefox | Safari | Edge | IE |
3295
+ * | :--------------------: | :-----: | :----: | :--: | :-: |
3296
+ * | **55** | **72** | **16** | n/a | No |
3297
+ * | 46 _(motion-distance)_ | | | | |
3195
3298
  *
3196
3299
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
3197
3300
  */
@@ -3199,7 +3302,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3199
3302
  /**
3200
3303
  * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.
3201
3304
  *
3202
- * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`
3305
+ * **Syntax**: `none | <offset-path> || <coord-box>`
3203
3306
  *
3204
3307
  * **Initial value**: `none`
3205
3308
  *
@@ -3212,13 +3315,13 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3212
3315
  */
3213
3316
  offsetPath?: Property.OffsetPath | undefined;
3214
3317
  /**
3215
- * **Syntax**: `auto | <position>`
3318
+ * **Syntax**: `normal | auto | <position>`
3216
3319
  *
3217
3320
  * **Initial value**: `auto`
3218
3321
  *
3219
- * | Chrome | Firefox | Safari | Edge | IE |
3220
- * | :----: | :-----: | :---------: | :--: | :-: |
3221
- * | No | No | **preview** | n/a | No |
3322
+ * | Chrome | Firefox | Safari | Edge | IE |
3323
+ * | :-----: | :-----: | :----: | :--: | :-: |
3324
+ * | **116** | n/a | **16** | n/a | No |
3222
3325
  *
3223
3326
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-position
3224
3327
  */
@@ -3230,10 +3333,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3230
3333
  *
3231
3334
  * **Initial value**: `auto`
3232
3335
  *
3233
- * | Chrome | Firefox | Safari | Edge | IE |
3234
- * | :--------------------: | :-----: | :---------: | :--: | :-: |
3235
- * | **56** | **72** | **preview** | n/a | No |
3236
- * | 46 _(motion-rotation)_ | | | | |
3336
+ * | Chrome | Firefox | Safari | Edge | IE |
3337
+ * | :--------------------: | :-----: | :----: | :--: | :-: |
3338
+ * | **56** | **72** | **16** | n/a | No |
3339
+ * | 46 _(motion-rotation)_ | | | | |
3237
3340
  *
3238
3341
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
3239
3342
  */
@@ -3245,10 +3348,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3245
3348
  *
3246
3349
  * **Initial value**: `auto`
3247
3350
  *
3248
- * | Chrome | Firefox | Safari | Edge | IE |
3249
- * | :--------------------: | :-----: | :---------: | :--: | :-: |
3250
- * | **56** | **72** | **preview** | n/a | No |
3251
- * | 46 _(motion-rotation)_ | | | | |
3351
+ * | Chrome | Firefox | Safari | Edge | IE |
3352
+ * | :--------------------: | :-----: | :----: | :--: | :-: |
3353
+ * | **56** | **72** | **16** | n/a | No |
3354
+ * | 46 _(motion-rotation)_ | | | | |
3252
3355
  *
3253
3356
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
3254
3357
  */
@@ -3382,12 +3485,6 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3382
3485
  * **Syntax**: `padding-box | content-box`
3383
3486
  *
3384
3487
  * **Initial value**: `padding-box`
3385
- *
3386
- * | Chrome | Firefox | Safari | Edge | IE |
3387
- * | :----: | :-----: | :----: | :--: | :-: |
3388
- * | No | **29** | No | n/a | No |
3389
- *
3390
- * @see https://developer.mozilla.org/docs/Mozilla/Gecko/Chrome/CSS/overflow-clip-box
3391
3488
  */
3392
3489
  overflowClipBox?: Property.OverflowClipBox | undefined;
3393
3490
  /**
@@ -3457,6 +3554,20 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3457
3554
  * @see https://developer.mozilla.org/docs/Web/CSS/overflow-y
3458
3555
  */
3459
3556
  overflowY?: Property.OverflowY | undefined;
3557
+ /**
3558
+ * The **`overlay`** CSS property specifies whether an element appearing in the top layer (for example, a shown popover or modal `<dialog>` element) is actually rendered in the top layer. This property is only relevant within a list of `transition-property` values, and only if `allow-discrete` is set as the `transition-behavior`.
3559
+ *
3560
+ * **Syntax**: `none | auto`
3561
+ *
3562
+ * **Initial value**: `none`
3563
+ *
3564
+ * | Chrome | Firefox | Safari | Edge | IE |
3565
+ * | :-----: | :-----: | :----: | :--: | :-: |
3566
+ * | **117** | No | No | n/a | No |
3567
+ *
3568
+ * @see https://developer.mozilla.org/docs/Web/CSS/overlay
3569
+ */
3570
+ overlay?: Property.Overlay | undefined;
3460
3571
  /**
3461
3572
  * The **`overscroll-behavior-block`** CSS property sets the browser's behavior when the block direction boundary of a scrolling area is reached.
3462
3573
  *
@@ -3522,7 +3633,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3522
3633
  *
3523
3634
  * | Chrome | Firefox | Safari | Edge | IE |
3524
3635
  * | :----: | :-----: | :------: | :--: | :-: |
3525
- * | **87** | **41** | **12.1** | n/a | No |
3636
+ * | **69** | **41** | **12.1** | n/a | No |
3526
3637
  *
3527
3638
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end
3528
3639
  */
@@ -3536,7 +3647,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3536
3647
  *
3537
3648
  * | Chrome | Firefox | Safari | Edge | IE |
3538
3649
  * | :----: | :-----: | :------: | :--: | :-: |
3539
- * | **87** | **41** | **12.1** | n/a | No |
3650
+ * | **69** | **41** | **12.1** | n/a | No |
3540
3651
  *
3541
3652
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start
3542
3653
  */
@@ -3564,7 +3675,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3564
3675
  *
3565
3676
  * | Chrome | Firefox | Safari | Edge | IE |
3566
3677
  * | :-----------------------: | :--------------------: | :-----------------------: | :--: | :-: |
3567
- * | **87** | **41** | **12.1** | n/a | No |
3678
+ * | **69** | **41** | **12.1** | n/a | No |
3568
3679
  * | 2 _(-webkit-padding-end)_ | 3 _(-moz-padding-end)_ | 3 _(-webkit-padding-end)_ | | |
3569
3680
  *
3570
3681
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
@@ -3579,7 +3690,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3579
3690
  *
3580
3691
  * | Chrome | Firefox | Safari | Edge | IE |
3581
3692
  * | :-------------------------: | :----------------------: | :-------------------------: | :--: | :-: |
3582
- * | **87** | **41** | **12.1** | n/a | No |
3693
+ * | **69** | **41** | **12.1** | n/a | No |
3583
3694
  * | 2 _(-webkit-padding-start)_ | 3 _(-moz-padding-start)_ | 3 _(-webkit-padding-start)_ | | |
3584
3695
  *
3585
3696
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
@@ -3634,9 +3745,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3634
3745
  *
3635
3746
  * **Initial value**: `auto`
3636
3747
  *
3637
- * | Chrome | Firefox | Safari | Edge | IE |
3638
- * | :----: | :-----: | :---------: | :--: | :-: |
3639
- * | **85** | **110** | **preview** | n/a | No |
3748
+ * | Chrome | Firefox | Safari | Edge | IE |
3749
+ * | :----: | :-----: | :-------: | :--: | :-: |
3750
+ * | **85** | **110** | **≤13.1** | n/a | No |
3640
3751
  *
3641
3752
  * @see https://developer.mozilla.org/docs/Web/CSS/page
3642
3753
  */
@@ -3704,10 +3815,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3704
3815
  *
3705
3816
  * **Initial value**: `none`
3706
3817
  *
3707
- * | Chrome | Firefox | Safari | Edge | IE |
3708
- * | :------: | :------: | :-----: | :----: | :----: |
3709
- * | **36** | **16** | **9** | **12** | **10** |
3710
- * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | |
3818
+ * | Chrome | Firefox | Safari | Edge | IE |
3819
+ * | :------: | :-----: | :-----: | :----: | :----: |
3820
+ * | **36** | **16** | **9** | **12** | **10** |
3821
+ * | 12 _-x-_ | | 4 _-x-_ | | |
3711
3822
  *
3712
3823
  * @see https://developer.mozilla.org/docs/Web/CSS/perspective
3713
3824
  */
@@ -3719,10 +3830,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3719
3830
  *
3720
3831
  * **Initial value**: `50% 50%`
3721
3832
  *
3722
- * | Chrome | Firefox | Safari | Edge | IE |
3723
- * | :------: | :------: | :-----: | :----: | :----: |
3724
- * | **36** | **16** | **9** | **12** | **10** |
3725
- * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | |
3833
+ * | Chrome | Firefox | Safari | Edge | IE |
3834
+ * | :------: | :-----: | :-----: | :----: | :----: |
3835
+ * | **36** | **16** | **9** | **12** | **10** |
3836
+ * | 12 _-x-_ | | 4 _-x-_ | | |
3726
3837
  *
3727
3838
  * @see https://developer.mozilla.org/docs/Web/CSS/perspective-origin
3728
3839
  */
@@ -3910,9 +4021,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3910
4021
  *
3911
4022
  * **Initial value**: `0`
3912
4023
  *
3913
- * | Chrome | Firefox | Safari | Edge | IE |
3914
- * | :----: | :-----: | :------: | :--: | :-: |
3915
- * | **69** | **68** | **14.1** | n/a | No |
4024
+ * | Chrome | Firefox | Safari | Edge | IE |
4025
+ * | :----: | :-----: | :----: | :--: | :-: |
4026
+ * | **69** | **68** | **15** | n/a | No |
3916
4027
  *
3917
4028
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
3918
4029
  */
@@ -3924,9 +4035,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3924
4035
  *
3925
4036
  * **Initial value**: `0`
3926
4037
  *
3927
- * | Chrome | Firefox | Safari | Edge | IE |
3928
- * | :----: | :-----: | :------: | :--: | :-: |
3929
- * | **69** | **68** | **14.1** | n/a | No |
4038
+ * | Chrome | Firefox | Safari | Edge | IE |
4039
+ * | :----: | :-----: | :----: | :--: | :-: |
4040
+ * | **69** | **68** | **15** | n/a | No |
3930
4041
  *
3931
4042
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
3932
4043
  */
@@ -3953,9 +4064,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3953
4064
  *
3954
4065
  * **Initial value**: `0`
3955
4066
  *
3956
- * | Chrome | Firefox | Safari | Edge | IE |
3957
- * | :----: | :-----: | :------: | :--: | :-: |
3958
- * | **69** | **68** | **14.1** | n/a | No |
4067
+ * | Chrome | Firefox | Safari | Edge | IE |
4068
+ * | :----: | :-----: | :----: | :--: | :-: |
4069
+ * | **69** | **68** | **15** | n/a | No |
3959
4070
  *
3960
4071
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
3961
4072
  */
@@ -3967,9 +4078,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
3967
4078
  *
3968
4079
  * **Initial value**: `0`
3969
4080
  *
3970
- * | Chrome | Firefox | Safari | Edge | IE |
3971
- * | :----: | :-----: | :------: | :--: | :-: |
3972
- * | **69** | **68** | **14.1** | n/a | No |
4081
+ * | Chrome | Firefox | Safari | Edge | IE |
4082
+ * | :----: | :-----: | :----: | :--: | :-: |
4083
+ * | **69** | **68** | **15** | n/a | No |
3973
4084
  *
3974
4085
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
3975
4086
  */
@@ -4237,13 +4348,13 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4237
4348
  /**
4238
4349
  * The **`scroll-timeline-axis`** CSS property can be used to specify the scrollbar that will be used to provide the timeline for a scroll-timeline animation.
4239
4350
  *
4240
- * **Syntax**: `[ block | inline | vertical | horizontal ]#`
4351
+ * **Syntax**: `[ block | inline | x | y ]#`
4241
4352
  *
4242
4353
  * **Initial value**: `block`
4243
4354
  *
4244
- * | Chrome | Firefox | Safari | Edge | IE |
4245
- * | :----: | :-----: | :----: | :--: | :-: |
4246
- * | No | n/a | No | n/a | No |
4355
+ * | Chrome | Firefox | Safari | Edge | IE |
4356
+ * | :-----: | :-----: | :----: | :--: | :-: |
4357
+ * | **115** | n/a | No | n/a | No |
4247
4358
  *
4248
4359
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-timeline-axis
4249
4360
  */
@@ -4251,13 +4362,13 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4251
4362
  /**
4252
4363
  * The **`scroll-timeline-name`** CSS property defines a name that can be used to identify an element as the source of a scroll timeline for an animation.
4253
4364
  *
4254
- * **Syntax**: `none | <custom-ident>#`
4365
+ * **Syntax**: `none | <dashed-ident>#`
4255
4366
  *
4256
4367
  * **Initial value**: `none`
4257
4368
  *
4258
- * | Chrome | Firefox | Safari | Edge | IE |
4259
- * | :----: | :-----: | :----: | :--: | :-: |
4260
- * | No | n/a | No | n/a | No |
4369
+ * | Chrome | Firefox | Safari | Edge | IE |
4370
+ * | :-----: | :-----: | :----: | :--: | :-: |
4371
+ * | **115** | n/a | No | n/a | No |
4261
4372
  *
4262
4373
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-timeline-name
4263
4374
  */
@@ -4269,9 +4380,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4269
4380
  *
4270
4381
  * **Initial value**: `auto`
4271
4382
  *
4272
- * | Chrome | Firefox | Safari | Edge | IE |
4273
- * | :----: | :-----: | :----: | :--: | :-: |
4274
- * | No | **64** | No | n/a | No |
4383
+ * | Chrome | Firefox | Safari | Edge | IE |
4384
+ * | :-----: | :-----: | :----: | :--: | :-: |
4385
+ * | **121** | **64** | No | n/a | No |
4275
4386
  *
4276
4387
  * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-color
4277
4388
  */
@@ -4297,9 +4408,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4297
4408
  *
4298
4409
  * **Initial value**: `auto`
4299
4410
  *
4300
- * | Chrome | Firefox | Safari | Edge | IE |
4301
- * | :----: | :-----: | :----: | :--: | :-: |
4302
- * | No | **64** | No | n/a | No |
4411
+ * | Chrome | Firefox | Safari | Edge | IE |
4412
+ * | :-----: | :-----: | :----: | :--: | :-: |
4413
+ * | **121** | **64** | No | n/a | No |
4303
4414
  *
4304
4415
  * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-width
4305
4416
  */
@@ -4410,10 +4521,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4410
4521
  *
4411
4522
  * **Initial value**: `none`
4412
4523
  *
4413
- * | Chrome | Firefox | Safari | Edge | IE |
4414
- * | :------------------------: | :-----: | :--------------------------: | :---: | :------------------------------------: |
4415
- * | **48** | **48** | **preview** | 15-79 | **11** _(-ms-text-combine-horizontal)_ |
4416
- * | 9 _(-webkit-text-combine)_ | | 5.1 _(-webkit-text-combine)_ | | |
4524
+ * | Chrome | Firefox | Safari | Edge | IE |
4525
+ * | :------------------------: | :-----: | :--------------------------: | :----: | :------------------------------------: |
4526
+ * | **48** | **48** | **15.4** | **79** | **11** _(-ms-text-combine-horizontal)_ |
4527
+ * | 9 _(-webkit-text-combine)_ | | 5.1 _(-webkit-text-combine)_ | | |
4417
4528
  *
4418
4529
  * @see https://developer.mozilla.org/docs/Web/CSS/text-combine-upright
4419
4530
  */
@@ -4572,9 +4683,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4572
4683
  *
4573
4684
  * **Initial value**: `auto`
4574
4685
  *
4575
- * | Chrome | Firefox | Safari | Edge | IE |
4576
- * | :----: | :-----: | :----: | :----: | :----: |
4577
- * | n/a | **55** | No | **12** | **11** |
4686
+ * | Chrome | Firefox | Safari | Edge | IE |
4687
+ * | :----: | :-----: | :----: | :---: | :----: |
4688
+ * | n/a | **55** | No | 12-79 | **11** |
4578
4689
  *
4579
4690
  * @see https://developer.mozilla.org/docs/Web/CSS/text-justify
4580
4691
  */
@@ -4693,6 +4804,34 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4693
4804
  * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-position
4694
4805
  */
4695
4806
  textUnderlinePosition?: Property.TextUnderlinePosition | undefined;
4807
+ /**
4808
+ * The **`text-wrap`** CSS property controls how text inside an element is wrapped. The different values provide:
4809
+ *
4810
+ * **Syntax**: `wrap | nowrap | balance | stable | pretty`
4811
+ *
4812
+ * **Initial value**: `wrap`
4813
+ *
4814
+ * | Chrome | Firefox | Safari | Edge | IE |
4815
+ * | :-----: | :-----: | :----: | :--: | :-: |
4816
+ * | **114** | **121** | No | n/a | No |
4817
+ *
4818
+ * @see https://developer.mozilla.org/docs/Web/CSS/text-wrap
4819
+ */
4820
+ textWrap?: Property.TextWrap | undefined;
4821
+ /**
4822
+ * The **`timeline-scope`** CSS property modifies the scope of a named animation timeline.
4823
+ *
4824
+ * **Syntax**: `none | <dashed-ident>#`
4825
+ *
4826
+ * **Initial value**: `none`
4827
+ *
4828
+ * | Chrome | Firefox | Safari | Edge | IE |
4829
+ * | :-----: | :-----: | :----: | :--: | :-: |
4830
+ * | **116** | No | No | n/a | No |
4831
+ *
4832
+ * @see https://developer.mozilla.org/docs/Web/CSS/timeline-scope
4833
+ */
4834
+ timelineScope?: Property.TimelineScope | undefined;
4696
4835
  /**
4697
4836
  * The **`top`** CSS property participates in specifying the vertical position of a positioned element. It has no effect on non-positioned elements.
4698
4837
  *
@@ -4758,10 +4897,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4758
4897
  *
4759
4898
  * **Initial value**: `50% 50% 0`
4760
4899
  *
4761
- * | Chrome | Firefox | Safari | Edge | IE |
4762
- * | :-----: | :-------: | :-----: | :----: | :-----: |
4763
- * | **36** | **16** | **9** | **12** | **10** |
4764
- * | 1 _-x-_ | 3.5 _-x-_ | 2 _-x-_ | | 9 _-x-_ |
4900
+ * | Chrome | Firefox | Safari | Edge | IE |
4901
+ * | :-----: | :-----: | :-----: | :----: | :-----: |
4902
+ * | **36** | **16** | **9** | **12** | **10** |
4903
+ * | 1 _-x-_ | | 2 _-x-_ | | 9 _-x-_ |
4765
4904
  *
4766
4905
  * @see https://developer.mozilla.org/docs/Web/CSS/transform-origin
4767
4906
  */
@@ -4773,14 +4912,28 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4773
4912
  *
4774
4913
  * **Initial value**: `flat`
4775
4914
  *
4776
- * | Chrome | Firefox | Safari | Edge | IE |
4777
- * | :------: | :------: | :-----: | :----: | :-: |
4778
- * | **36** | **16** | **9** | **12** | No |
4779
- * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | |
4915
+ * | Chrome | Firefox | Safari | Edge | IE |
4916
+ * | :------: | :-----: | :-----: | :----: | :-: |
4917
+ * | **36** | **16** | **9** | **12** | No |
4918
+ * | 12 _-x-_ | | 4 _-x-_ | | |
4780
4919
  *
4781
4920
  * @see https://developer.mozilla.org/docs/Web/CSS/transform-style
4782
4921
  */
4783
4922
  transformStyle?: Property.TransformStyle | undefined;
4923
+ /**
4924
+ * The **`transition-behavior`** CSS property specifies whether transitions will be started for properties whose animation behavior is discrete.
4925
+ *
4926
+ * **Syntax**: `<transition-behavior-value>#`
4927
+ *
4928
+ * **Initial value**: `normal`
4929
+ *
4930
+ * | Chrome | Firefox | Safari | Edge | IE |
4931
+ * | :-----: | :-----: | :----: | :--: | :-: |
4932
+ * | **117** | No | No | n/a | No |
4933
+ *
4934
+ * @see https://developer.mozilla.org/docs/Web/CSS/transition-behavior
4935
+ */
4936
+ transitionBehavior?: Property.TransitionBehavior | undefined;
4784
4937
  /**
4785
4938
  * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
4786
4939
  *
@@ -4791,7 +4944,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4791
4944
  * | Chrome | Firefox | Safari | Edge | IE |
4792
4945
  * | :-----: | :-----: | :-----: | :----: | :----: |
4793
4946
  * | **26** | **16** | **9** | **12** | **10** |
4794
- * | 1 _-x-_ | 4 _-x-_ | 4 _-x-_ | | |
4947
+ * | 1 _-x-_ | | 4 _-x-_ | | |
4795
4948
  *
4796
4949
  * @see https://developer.mozilla.org/docs/Web/CSS/transition-delay
4797
4950
  */
@@ -4806,7 +4959,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4806
4959
  * | Chrome | Firefox | Safari | Edge | IE |
4807
4960
  * | :-----: | :-----: | :-------: | :----: | :----: |
4808
4961
  * | **26** | **16** | **9** | **12** | **10** |
4809
- * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
4962
+ * | 1 _-x-_ | | 3.1 _-x-_ | | |
4810
4963
  *
4811
4964
  * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration
4812
4965
  */
@@ -4821,7 +4974,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4821
4974
  * | Chrome | Firefox | Safari | Edge | IE |
4822
4975
  * | :-----: | :-----: | :-------: | :----: | :----: |
4823
4976
  * | **26** | **16** | **9** | **12** | **10** |
4824
- * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
4977
+ * | 1 _-x-_ | | 3.1 _-x-_ | | |
4825
4978
  *
4826
4979
  * @see https://developer.mozilla.org/docs/Web/CSS/transition-property
4827
4980
  */
@@ -4836,7 +4989,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4836
4989
  * | Chrome | Firefox | Safari | Edge | IE |
4837
4990
  * | :-----: | :-----: | :-------: | :----: | :----: |
4838
4991
  * | **26** | **16** | **9** | **12** | **10** |
4839
- * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
4992
+ * | 1 _-x-_ | | 3.1 _-x-_ | | |
4840
4993
  *
4841
4994
  * @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function
4842
4995
  */
@@ -4898,6 +5051,48 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4898
5051
  * @see https://developer.mozilla.org/docs/Web/CSS/vertical-align
4899
5052
  */
4900
5053
  verticalAlign?: Property.VerticalAlign<TLength> | undefined;
5054
+ /**
5055
+ * The **`view-timeline-axis`** CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a _named view progress timeline_ animation, which is progressed through based on the change in visibility of an element (known as the _subject_) inside a scrollable element (_scroller_). `view-timeline-axis` is set on the subject. See CSS scroll-driven animations for more details.
5056
+ *
5057
+ * **Syntax**: `[ block | inline | x | y ]#`
5058
+ *
5059
+ * **Initial value**: `block`
5060
+ *
5061
+ * | Chrome | Firefox | Safari | Edge | IE |
5062
+ * | :-----: | :-----: | :----: | :--: | :-: |
5063
+ * | **115** | n/a | No | n/a | No |
5064
+ *
5065
+ * @see https://developer.mozilla.org/docs/Web/CSS/view-timeline-axis
5066
+ */
5067
+ viewTimelineAxis?: Property.ViewTimelineAxis | undefined;
5068
+ /**
5069
+ * The **`view-timeline-inset`** CSS property is used to specify one or two values representing an adjustment to the position of the scrollport (see Scroll container for more details) in which the subject element of a _named view progress timeline_ animation is deemed to be visible. Put another way, this allows you to specify start and/or end inset (or outset) values that offset the position of the timeline.
5070
+ *
5071
+ * **Syntax**: `[ [ auto | <length-percentage> ]{1,2} ]#`
5072
+ *
5073
+ * **Initial value**: `auto`
5074
+ *
5075
+ * | Chrome | Firefox | Safari | Edge | IE |
5076
+ * | :-----: | :-----: | :----: | :--: | :-: |
5077
+ * | **115** | No | No | n/a | No |
5078
+ *
5079
+ * @see https://developer.mozilla.org/docs/Web/CSS/view-timeline-inset
5080
+ */
5081
+ viewTimelineInset?: Property.ViewTimelineInset<TLength> | undefined;
5082
+ /**
5083
+ * The **`view-timeline-name`** CSS property is used to define the name of a _named view progress timeline_, which is progressed through based on the change in visibility of an element (known as the _subject_) inside a scrollable element (_scroller_). `view-timeline` is set on the subject.
5084
+ *
5085
+ * **Syntax**: `none | <dashed-ident>#`
5086
+ *
5087
+ * **Initial value**: `none`
5088
+ *
5089
+ * | Chrome | Firefox | Safari | Edge | IE |
5090
+ * | :-----: | :-----: | :----: | :--: | :-: |
5091
+ * | **115** | n/a | No | n/a | No |
5092
+ *
5093
+ * @see https://developer.mozilla.org/docs/Web/CSS/view-timeline-name
5094
+ */
5095
+ viewTimelineName?: Property.ViewTimelineName | undefined;
4901
5096
  /**
4902
5097
  * The **`view-transition-name`** CSS property provides the selected element with a distinct identifying name (a `<custom-ident>`) and causes it to participate in a separate view transition from the root view transition — or no view transition if the `none` value is specified.
4903
5098
  *
@@ -4929,7 +5124,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4929
5124
  /**
4930
5125
  * The **`white-space`** CSS property sets how white space inside an element is handled.
4931
5126
  *
4932
- * **Syntax**: `normal | pre | nowrap | pre-wrap | pre-line | break-spaces`
5127
+ * **Syntax**: `normal | pre | nowrap | pre-wrap | pre-line | break-spaces | [ <'white-space-collapse'> || <'text-wrap'> || <'white-space-trim'> ]`
4933
5128
  *
4934
5129
  * **Initial value**: `normal`
4935
5130
  *
@@ -4940,6 +5135,26 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
4940
5135
  * @see https://developer.mozilla.org/docs/Web/CSS/white-space
4941
5136
  */
4942
5137
  whiteSpace?: Property.WhiteSpace | undefined;
5138
+ /**
5139
+ * The **`white-space-collapse`** CSS property controls how white space inside an element is collapsed.
5140
+ *
5141
+ * **Syntax**: `collapse | discard | preserve | preserve-breaks | preserve-spaces | break-spaces`
5142
+ *
5143
+ * **Initial value**: `collapse`
5144
+ *
5145
+ * | Chrome | Firefox | Safari | Edge | IE |
5146
+ * | :-----: | :-----: | :----: | :--: | :-: |
5147
+ * | **114** | No | No | n/a | No |
5148
+ *
5149
+ * @see https://developer.mozilla.org/docs/Web/CSS/white-space-collapse
5150
+ */
5151
+ whiteSpaceCollapse?: Property.WhiteSpaceCollapse | undefined;
5152
+ /**
5153
+ * **Syntax**: `none | discard-before || discard-after || discard-inner`
5154
+ *
5155
+ * **Initial value**: `none`
5156
+ */
5157
+ whiteSpaceTrim?: Property.WhiteSpaceTrim | undefined;
4943
5158
  /**
4944
5159
  * The **`widows`** CSS property sets the minimum number of lines in a block container that must be shown at the _top_ of a page, region, or column.
4945
5160
  *
@@ -5016,6 +5231,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
5016
5231
  * **Syntax**: `normal | break-word`
5017
5232
  *
5018
5233
  * **Initial value**: `normal`
5234
+ *
5235
+ * | Chrome | Firefox | Safari | Edge | IE |
5236
+ * | :-----: | :-----: | :-------: | :-----: | :-: |
5237
+ * | **≤80** | **≤72** | **≤13.1** | **≤80** | No |
5019
5238
  */
5020
5239
  wordWrap?: Property.WordWrap | undefined;
5021
5240
  /**
@@ -5056,7 +5275,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
5056
5275
  *
5057
5276
  * | Chrome | Firefox | Safari | Edge | IE |
5058
5277
  * | :----: | :-----: | :-----: | :----: | :-----: |
5059
- * | **1** | No | **3.1** | **12** | **5.5** |
5278
+ * | **1** | n/a | **3.1** | **12** | **5.5** |
5060
5279
  *
5061
5280
  * @see https://developer.mozilla.org/docs/Web/CSS/zoom
5062
5281
  */
@@ -5091,6 +5310,18 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
5091
5310
  * @see https://developer.mozilla.org/docs/Web/CSS/animation
5092
5311
  */
5093
5312
  animation?: Property.Animation<TTime> | undefined;
5313
+ /**
5314
+ * The **`animation-range`** CSS shorthand property is used to set the start and end of an animation's attachment range along its timeline, i.e. where along the timeline an animation will start and end.
5315
+ *
5316
+ * **Syntax**: `[ <'animation-range-start'> <'animation-range-end'>? ]#`
5317
+ *
5318
+ * | Chrome | Firefox | Safari | Edge | IE |
5319
+ * | :-----: | :-----: | :----: | :--: | :-: |
5320
+ * | **115** | No | No | n/a | No |
5321
+ *
5322
+ * @see https://developer.mozilla.org/docs/Web/CSS/animation-range
5323
+ */
5324
+ animationRange?: Property.AnimationRange<TLength> | undefined;
5094
5325
  /**
5095
5326
  * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method.
5096
5327
  *
@@ -5342,11 +5573,11 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
5342
5573
  /**
5343
5574
  * The **`contain-intrinsic-size`** CSS shorthand property sets the size of an element that a browser will use for layout when the element is subject to size containment.
5344
5575
  *
5345
- * **Syntax**: `[ none | <length> | auto <length> ]{1,2}`
5576
+ * **Syntax**: `[ auto? [ none | <length> ] ]{1,2}`
5346
5577
  *
5347
5578
  * | Chrome | Firefox | Safari | Edge | IE |
5348
5579
  * | :----: | :-----: | :----: | :--: | :-: |
5349
- * | **83** | **107** | No | n/a | No |
5580
+ * | **83** | **107** | **17** | n/a | No |
5350
5581
  *
5351
5582
  * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size
5352
5583
  */
@@ -5568,9 +5799,10 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
5568
5799
  *
5569
5800
  * **Syntax**: `<mask-layer>#`
5570
5801
  *
5571
- * | Chrome | Firefox | Safari | Edge | IE |
5572
- * | :----: | :-----: | :-----: | :---: | :-: |
5573
- * | **1** | **2** | **3.1** | 12-79 | No |
5802
+ * | Chrome | Firefox | Safari | Edge | IE |
5803
+ * | :----: | :-----: | :-------: | :---: | :-: |
5804
+ * | **1** | **53** | **15.4** | 12-79 | No |
5805
+ * | | | 3.1 _-x-_ | | |
5574
5806
  *
5575
5807
  * @see https://developer.mozilla.org/docs/Web/CSS/mask
5576
5808
  */
@@ -5580,9 +5812,10 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
5580
5812
  *
5581
5813
  * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`
5582
5814
  *
5583
- * | Chrome | Firefox | Safari | Edge | IE |
5584
- * | :------------------------------: | :-----: | :--------------------------------: | :--: | :-: |
5585
- * | **1** _(-webkit-mask-box-image)_ | No | **3.1** _(-webkit-mask-box-image)_ | n/a | No |
5815
+ * | Chrome | Firefox | Safari | Edge | IE |
5816
+ * | :------------------------------: | :-----: | :----------------------------: | :--: | :-: |
5817
+ * | **1** _(-webkit-mask-box-image)_ | No | **17.2** | n/a | No |
5818
+ * | | | 3.1 _(-webkit-mask-box-image)_ | | |
5586
5819
  *
5587
5820
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-border
5588
5821
  */
@@ -5618,9 +5851,9 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
5618
5851
  *
5619
5852
  * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`
5620
5853
  *
5621
- * | Chrome | Firefox | Safari | Edge | IE |
5622
- * | :----: | :-----: | :-----: | :----: | :---: |
5623
- * | **94** | **88** | **1.2** | **94** | **8** |
5854
+ * | Chrome | Firefox | Safari | Edge | IE |
5855
+ * | :----: | :-----: | :------: | :----: | :---: |
5856
+ * | **94** | **88** | **16.4** | **94** | **8** |
5624
5857
  *
5625
5858
  * @see https://developer.mozilla.org/docs/Web/CSS/outline
5626
5859
  */
@@ -5743,9 +5976,9 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
5743
5976
  *
5744
5977
  * **Syntax**: `<length>{1,2}`
5745
5978
  *
5746
- * | Chrome | Firefox | Safari | Edge | IE |
5747
- * | :----: | :-----: | :------: | :--: | :-: |
5748
- * | **69** | **68** | **14.1** | n/a | No |
5979
+ * | Chrome | Firefox | Safari | Edge | IE |
5980
+ * | :----: | :-----: | :----: | :--: | :-: |
5981
+ * | **69** | **68** | **15** | n/a | No |
5749
5982
  *
5750
5983
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
5751
5984
  */
@@ -5755,9 +5988,9 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
5755
5988
  *
5756
5989
  * **Syntax**: `<length>{1,2}`
5757
5990
  *
5758
- * | Chrome | Firefox | Safari | Edge | IE |
5759
- * | :----: | :-----: | :------: | :--: | :-: |
5760
- * | **69** | **68** | **14.1** | n/a | No |
5991
+ * | Chrome | Firefox | Safari | Edge | IE |
5992
+ * | :----: | :-----: | :----: | :--: | :-: |
5993
+ * | **69** | **68** | **15** | n/a | No |
5761
5994
  *
5762
5995
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
5763
5996
  */
@@ -5814,11 +6047,11 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
5814
6047
  /**
5815
6048
  * The **`scroll-timeline`** CSS shorthand property defines a name that can be used to identify the source element of a scroll timeline, along with the scrollbar axis that should provide the timeline.
5816
6049
  *
5817
- * **Syntax**: `[<'scroll-timeline-name'> <'scroll-timeline-axis'>?]#`
6050
+ * **Syntax**: `[ <'scroll-timeline-name'> <'scroll-timeline-axis'>? ]#`
5818
6051
  *
5819
- * | Chrome | Firefox | Safari | Edge | IE |
5820
- * | :----: | :-----: | :----: | :--: | :-: |
5821
- * | No | n/a | No | n/a | No |
6052
+ * | Chrome | Firefox | Safari | Edge | IE |
6053
+ * | :-----: | :-----: | :----: | :--: | :-: |
6054
+ * | **115** | n/a | No | n/a | No |
5822
6055
  *
5823
6056
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-timeline
5824
6057
  */
@@ -5856,11 +6089,23 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
5856
6089
  * | Chrome | Firefox | Safari | Edge | IE |
5857
6090
  * | :-----: | :-----: | :-------: | :----: | :----: |
5858
6091
  * | **26** | **16** | **9** | **12** | **10** |
5859
- * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
6092
+ * | 1 _-x-_ | | 3.1 _-x-_ | | |
5860
6093
  *
5861
6094
  * @see https://developer.mozilla.org/docs/Web/CSS/transition
5862
6095
  */
5863
6096
  transition?: Property.Transition<TTime> | undefined;
6097
+ /**
6098
+ * The **`view-timeline`** CSS shorthand property is used to define a _named view progress timeline_, which is progressed through based on the change in visibility of an element (known as the _subject_) inside a scrollable element (_scroller_). `view-timeline` is set on the subject.
6099
+ *
6100
+ * **Syntax**: `[ <'view-timeline-name'> <'view-timeline-axis'>? ]#`
6101
+ *
6102
+ * | Chrome | Firefox | Safari | Edge | IE |
6103
+ * | :-----: | :-----: | :----: | :--: | :-: |
6104
+ * | **115** | n/a | No | n/a | No |
6105
+ *
6106
+ * @see https://developer.mozilla.org/docs/Web/CSS/view-timeline
6107
+ */
6108
+ viewTimeline?: Property.ViewTimeline | undefined;
5864
6109
  }
5865
6110
 
5866
6111
  export interface StandardProperties<TLength = (string & {}) | 0, TTime = string & {}>
@@ -5940,14 +6185,6 @@ export interface VendorLonghandProperties<TLength = (string & {}) | 0, TTime = s
5940
6185
  * **Initial value**: `none` (but this value is overridden in the user agent CSS)
5941
6186
  */
5942
6187
  MozAppearance?: Property.MozAppearance | undefined;
5943
- /**
5944
- * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
5945
- *
5946
- * **Syntax**: `visible | hidden`
5947
- *
5948
- * **Initial value**: `visible`
5949
- */
5950
- MozBackfaceVisibility?: Property.BackfaceVisibility | undefined;
5951
6188
  /**
5952
6189
  * The **`-moz-binding`** CSS property is used by Mozilla-based applications to attach an XBL binding to a DOM element.
5953
6190
  *
@@ -6157,37 +6394,53 @@ export interface VendorLonghandProperties<TLength = (string & {}) | 0, TTime = s
6157
6394
  */
6158
6395
  MozOsxFontSmoothing?: Property.FontSmooth<TLength> | undefined;
6159
6396
  /**
6160
- * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
6397
+ * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`.
6161
6398
  *
6162
- * **Syntax**: `<'padding-left'>`
6399
+ * **Syntax**: `<outline-radius>`
6163
6400
  *
6164
6401
  * **Initial value**: `0`
6165
6402
  */
6166
- MozPaddingEnd?: Property.PaddingInlineEnd<TLength> | undefined;
6403
+ MozOutlineRadiusBottomleft?: Property.MozOutlineRadiusBottomleft<TLength> | undefined;
6167
6404
  /**
6168
- * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
6405
+ * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`.
6169
6406
  *
6170
- * **Syntax**: `<'padding-left'>`
6407
+ * **Syntax**: `<outline-radius>`
6171
6408
  *
6172
6409
  * **Initial value**: `0`
6173
6410
  */
6174
- MozPaddingStart?: Property.PaddingInlineStart<TLength> | undefined;
6411
+ MozOutlineRadiusBottomright?: Property.MozOutlineRadiusBottomright<TLength> | undefined;
6175
6412
  /**
6176
- * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
6413
+ * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`.
6177
6414
  *
6178
- * **Syntax**: `none | <length>`
6415
+ * **Syntax**: `<outline-radius>`
6179
6416
  *
6180
- * **Initial value**: `none`
6417
+ * **Initial value**: `0`
6181
6418
  */
6182
- MozPerspective?: Property.Perspective<TLength> | undefined;
6419
+ MozOutlineRadiusTopleft?: Property.MozOutlineRadiusTopleft<TLength> | undefined;
6183
6420
  /**
6184
- * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
6421
+ * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`.
6185
6422
  *
6186
- * **Syntax**: `<position>`
6423
+ * **Syntax**: `<outline-radius>`
6187
6424
  *
6188
- * **Initial value**: `50% 50%`
6425
+ * **Initial value**: `0`
6189
6426
  */
6190
- MozPerspectiveOrigin?: Property.PerspectiveOrigin<TLength> | undefined;
6427
+ MozOutlineRadiusTopright?: Property.MozOutlineRadiusTopright<TLength> | undefined;
6428
+ /**
6429
+ * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
6430
+ *
6431
+ * **Syntax**: `<'padding-left'>`
6432
+ *
6433
+ * **Initial value**: `0`
6434
+ */
6435
+ MozPaddingEnd?: Property.PaddingInlineEnd<TLength> | undefined;
6436
+ /**
6437
+ * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
6438
+ *
6439
+ * **Syntax**: `<'padding-left'>`
6440
+ *
6441
+ * **Initial value**: `0`
6442
+ */
6443
+ MozPaddingStart?: Property.PaddingInlineStart<TLength> | undefined;
6191
6444
  /**
6192
6445
  * **`-moz-stack-sizing`** is an extended CSS property. Normally, a `<xul:stack>` will change its size so that all of its child elements are completely visible. For example, moving a child of the stack far to the right will widen the stack so the child remains visible.
6193
6446
  *
@@ -6220,54 +6473,6 @@ export interface VendorLonghandProperties<TLength = (string & {}) | 0, TTime = s
6220
6473
  * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
6221
6474
  */
6222
6475
  MozTextSizeAdjust?: Property.TextSizeAdjust | undefined;
6223
- /**
6224
- * The **`transform-origin`** CSS property sets the origin for an element's transformations.
6225
- *
6226
- * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
6227
- *
6228
- * **Initial value**: `50% 50% 0`
6229
- */
6230
- MozTransformOrigin?: Property.TransformOrigin<TLength> | undefined;
6231
- /**
6232
- * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
6233
- *
6234
- * **Syntax**: `flat | preserve-3d`
6235
- *
6236
- * **Initial value**: `flat`
6237
- */
6238
- MozTransformStyle?: Property.TransformStyle | undefined;
6239
- /**
6240
- * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
6241
- *
6242
- * **Syntax**: `<time>#`
6243
- *
6244
- * **Initial value**: `0s`
6245
- */
6246
- MozTransitionDelay?: Property.TransitionDelay<TTime> | undefined;
6247
- /**
6248
- * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
6249
- *
6250
- * **Syntax**: `<time>#`
6251
- *
6252
- * **Initial value**: `0s`
6253
- */
6254
- MozTransitionDuration?: Property.TransitionDuration<TTime> | undefined;
6255
- /**
6256
- * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
6257
- *
6258
- * **Syntax**: `none | <single-transition-property>#`
6259
- *
6260
- * **Initial value**: all
6261
- */
6262
- MozTransitionProperty?: Property.TransitionProperty | undefined;
6263
- /**
6264
- * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
6265
- *
6266
- * **Syntax**: `<easing-function>#`
6267
- *
6268
- * **Initial value**: `ease`
6269
- */
6270
- MozTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
6271
6476
  /**
6272
6477
  * The **`-moz-user-focus`** CSS property is used to indicate whether an element can have the focus.
6273
6478
  *
@@ -7688,11 +7893,11 @@ export interface VendorShorthandProperties<TLength = (string & {}) | 0, TTime =
7688
7893
  */
7689
7894
  MozColumns?: Property.Columns<TLength> | undefined;
7690
7895
  /**
7691
- * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
7896
+ * In Mozilla applications like Firefox, the **`-moz-outline-radius`** CSS shorthand property can be used to give an element's `outline` rounded corners.
7692
7897
  *
7693
- * **Syntax**: `<single-transition>#`
7898
+ * **Syntax**: `<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?`
7694
7899
  */
7695
- MozTransition?: Property.Transition<TTime> | undefined;
7900
+ MozOutlineRadius?: Property.MozOutlineRadius<TLength> | undefined;
7696
7901
  /**
7697
7902
  * The **`-ms-content-zoom-limit`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-content-zoom-limit-min` and `-ms-content-zoom-limit-max` properties.
7698
7903
  *
@@ -8182,6 +8387,16 @@ export interface ObsoleteProperties<TLength = (string & {}) | 0, TTime = string
8182
8387
  * @deprecated
8183
8388
  */
8184
8389
  KhtmlUserSelect?: Property.UserSelect | undefined;
8390
+ /**
8391
+ * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
8392
+ *
8393
+ * **Syntax**: `visible | hidden`
8394
+ *
8395
+ * **Initial value**: `visible`
8396
+ *
8397
+ * @deprecated
8398
+ */
8399
+ MozBackfaceVisibility?: Property.BackfaceVisibility | undefined;
8185
8400
  /**
8186
8401
  * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
8187
8402
  *
@@ -8389,113 +8604,163 @@ export interface ObsoleteProperties<TLength = (string & {}) | 0, TTime = string
8389
8604
  */
8390
8605
  MozOutlineColor?: Property.OutlineColor | undefined;
8391
8606
  /**
8392
- * In Mozilla applications like Firefox, the **`-moz-outline-radius`** CSS shorthand property can be used to give an element's `outline` rounded corners.
8607
+ * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
8393
8608
  *
8394
- * **Syntax**: `<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?`
8609
+ * **Syntax**: `auto | <'border-style'>`
8610
+ *
8611
+ * **Initial value**: `none`
8395
8612
  *
8396
8613
  * @deprecated
8397
8614
  */
8398
- MozOutlineRadius?: Property.MozOutlineRadius<TLength> | undefined;
8615
+ MozOutlineStyle?: Property.OutlineStyle | undefined;
8399
8616
  /**
8400
- * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`.
8617
+ * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
8401
8618
  *
8402
- * **Syntax**: `<outline-radius>`
8619
+ * **Syntax**: `<line-width>`
8403
8620
  *
8404
- * **Initial value**: `0`
8621
+ * **Initial value**: `medium`
8405
8622
  *
8406
8623
  * @deprecated
8407
8624
  */
8408
- MozOutlineRadiusBottomleft?: Property.MozOutlineRadiusBottomleft<TLength> | undefined;
8625
+ MozOutlineWidth?: Property.OutlineWidth<TLength> | undefined;
8409
8626
  /**
8410
- * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`.
8627
+ * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
8411
8628
  *
8412
- * **Syntax**: `<outline-radius>`
8629
+ * **Syntax**: `none | <length>`
8413
8630
  *
8414
- * **Initial value**: `0`
8631
+ * **Initial value**: `none`
8415
8632
  *
8416
8633
  * @deprecated
8417
8634
  */
8418
- MozOutlineRadiusBottomright?: Property.MozOutlineRadiusBottomright<TLength> | undefined;
8635
+ MozPerspective?: Property.Perspective<TLength> | undefined;
8419
8636
  /**
8420
- * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`.
8637
+ * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
8421
8638
  *
8422
- * **Syntax**: `<outline-radius>`
8639
+ * **Syntax**: `<position>`
8423
8640
  *
8424
- * **Initial value**: `0`
8641
+ * **Initial value**: `50% 50%`
8425
8642
  *
8426
8643
  * @deprecated
8427
8644
  */
8428
- MozOutlineRadiusTopleft?: Property.MozOutlineRadiusTopleft<TLength> | undefined;
8645
+ MozPerspectiveOrigin?: Property.PerspectiveOrigin<TLength> | undefined;
8429
8646
  /**
8430
- * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`.
8647
+ * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
8431
8648
  *
8432
- * **Syntax**: `<outline-radius>`
8649
+ * **Syntax**: `auto | start | end | left | right | center | justify`
8433
8650
  *
8434
- * **Initial value**: `0`
8651
+ * **Initial value**: `auto`
8435
8652
  *
8436
8653
  * @deprecated
8437
8654
  */
8438
- MozOutlineRadiusTopright?: Property.MozOutlineRadiusTopright<TLength> | undefined;
8655
+ MozTextAlignLast?: Property.TextAlignLast | undefined;
8439
8656
  /**
8440
- * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
8657
+ * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
8441
8658
  *
8442
- * **Syntax**: `auto | <'border-style'>`
8659
+ * **Syntax**: `<color>`
8660
+ *
8661
+ * **Initial value**: `currentcolor`
8662
+ *
8663
+ * @deprecated
8664
+ */
8665
+ MozTextDecorationColor?: Property.TextDecorationColor | undefined;
8666
+ /**
8667
+ * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
8668
+ *
8669
+ * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
8443
8670
  *
8444
8671
  * **Initial value**: `none`
8445
8672
  *
8446
8673
  * @deprecated
8447
8674
  */
8448
- MozOutlineStyle?: Property.OutlineStyle | undefined;
8675
+ MozTextDecorationLine?: Property.TextDecorationLine | undefined;
8449
8676
  /**
8450
- * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
8677
+ * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
8451
8678
  *
8452
- * **Syntax**: `<line-width>`
8679
+ * **Syntax**: `solid | double | dotted | dashed | wavy`
8453
8680
  *
8454
- * **Initial value**: `medium`
8681
+ * **Initial value**: `solid`
8455
8682
  *
8456
8683
  * @deprecated
8457
8684
  */
8458
- MozOutlineWidth?: Property.OutlineWidth<TLength> | undefined;
8685
+ MozTextDecorationStyle?: Property.TextDecorationStyle | undefined;
8459
8686
  /**
8460
- * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
8687
+ * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
8461
8688
  *
8462
- * **Syntax**: `auto | start | end | left | right | center | justify`
8689
+ * **Syntax**: `none | <transform-list>`
8463
8690
  *
8464
- * **Initial value**: `auto`
8691
+ * **Initial value**: `none`
8465
8692
  *
8466
8693
  * @deprecated
8467
8694
  */
8468
- MozTextAlignLast?: Property.TextAlignLast | undefined;
8695
+ MozTransform?: Property.Transform | undefined;
8469
8696
  /**
8470
- * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
8697
+ * The **`transform-origin`** CSS property sets the origin for an element's transformations.
8471
8698
  *
8472
- * **Syntax**: `<color>`
8699
+ * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
8473
8700
  *
8474
- * **Initial value**: `currentcolor`
8701
+ * **Initial value**: `50% 50% 0`
8475
8702
  *
8476
8703
  * @deprecated
8477
8704
  */
8478
- MozTextDecorationColor?: Property.TextDecorationColor | undefined;
8705
+ MozTransformOrigin?: Property.TransformOrigin<TLength> | undefined;
8479
8706
  /**
8480
- * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
8707
+ * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
8481
8708
  *
8482
- * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
8709
+ * **Syntax**: `flat | preserve-3d`
8483
8710
  *
8484
- * **Initial value**: `none`
8711
+ * **Initial value**: `flat`
8485
8712
  *
8486
8713
  * @deprecated
8487
8714
  */
8488
- MozTextDecorationLine?: Property.TextDecorationLine | undefined;
8715
+ MozTransformStyle?: Property.TransformStyle | undefined;
8489
8716
  /**
8490
- * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
8717
+ * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
8491
8718
  *
8492
- * **Syntax**: `solid | double | dotted | dashed | wavy`
8719
+ * **Syntax**: `<single-transition>#`
8493
8720
  *
8494
- * **Initial value**: `solid`
8721
+ * @deprecated
8722
+ */
8723
+ MozTransition?: Property.Transition<TTime> | undefined;
8724
+ /**
8725
+ * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
8726
+ *
8727
+ * **Syntax**: `<time>#`
8728
+ *
8729
+ * **Initial value**: `0s`
8495
8730
  *
8496
8731
  * @deprecated
8497
8732
  */
8498
- MozTextDecorationStyle?: Property.TextDecorationStyle | undefined;
8733
+ MozTransitionDelay?: Property.TransitionDelay<TTime> | undefined;
8734
+ /**
8735
+ * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
8736
+ *
8737
+ * **Syntax**: `<time>#`
8738
+ *
8739
+ * **Initial value**: `0s`
8740
+ *
8741
+ * @deprecated
8742
+ */
8743
+ MozTransitionDuration?: Property.TransitionDuration<TTime> | undefined;
8744
+ /**
8745
+ * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
8746
+ *
8747
+ * **Syntax**: `none | <single-transition-property>#`
8748
+ *
8749
+ * **Initial value**: all
8750
+ *
8751
+ * @deprecated
8752
+ */
8753
+ MozTransitionProperty?: Property.TransitionProperty | undefined;
8754
+ /**
8755
+ * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
8756
+ *
8757
+ * **Syntax**: `<easing-function>#`
8758
+ *
8759
+ * **Initial value**: `ease`
8760
+ *
8761
+ * @deprecated
8762
+ */
8763
+ MozTransitionTimingFunction?: Property.TransitionTimingFunction | undefined;
8499
8764
  /**
8500
8765
  * In Mozilla applications, **`-moz-user-input`** determines if an element will accept user input.
8501
8766
  *
@@ -8810,26 +9075,6 @@ export interface ObsoleteProperties<TLength = (string & {}) | 0, TTime = string
8810
9075
  * @deprecated
8811
9076
  */
8812
9077
  WebkitBoxPack?: Property.BoxPack | undefined;
8813
- /**
8814
- * The **`scroll-snap-points-x`** CSS property defines the horizontal positioning of snap points within the content of the scroll container they are applied to.
8815
- *
8816
- * **Syntax**: `none | repeat( <length-percentage> )`
8817
- *
8818
- * **Initial value**: `none`
8819
- *
8820
- * @deprecated
8821
- */
8822
- WebkitScrollSnapPointsX?: Property.ScrollSnapPointsX | undefined;
8823
- /**
8824
- * The **`scroll-snap-points-y`** CSS property defines the vertical positioning of snap points within the content of the scroll container they are applied to.
8825
- *
8826
- * **Syntax**: `none | repeat( <length-percentage> )`
8827
- *
8828
- * **Initial value**: `none`
8829
- *
8830
- * @deprecated
8831
- */
8832
- WebkitScrollSnapPointsY?: Property.ScrollSnapPointsY | undefined;
8833
9078
  }
8834
9079
 
8835
9080
  export interface SvgProperties<TLength = (string & {}) | 0, TTime = string & {}> {
@@ -8984,7 +9229,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
8984
9229
  *
8985
9230
  * | Chrome | Firefox | Safari | Edge | IE |
8986
9231
  * | :-----: | :-----: | :----: | :--: | :-: |
8987
- * | **112** | n/a | **16** | n/a | No |
9232
+ * | **112** | **115** | **16** | n/a | No |
8988
9233
  *
8989
9234
  * @see https://developer.mozilla.org/docs/Web/CSS/animation-composition
8990
9235
  */
@@ -9094,6 +9339,34 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
9094
9339
  * @see https://developer.mozilla.org/docs/Web/CSS/animation-play-state
9095
9340
  */
9096
9341
  "animation-play-state"?: Property.AnimationPlayState | undefined;
9342
+ /**
9343
+ * The **`animation-range-end`** CSS property is used to set the end of an animation's attachment range along its timeline, i.e. where along the timeline an animation will end.
9344
+ *
9345
+ * **Syntax**: `[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#`
9346
+ *
9347
+ * **Initial value**: `normal`
9348
+ *
9349
+ * | Chrome | Firefox | Safari | Edge | IE |
9350
+ * | :-----: | :-----: | :----: | :--: | :-: |
9351
+ * | **115** | No | No | n/a | No |
9352
+ *
9353
+ * @see https://developer.mozilla.org/docs/Web/CSS/animation-range-end
9354
+ */
9355
+ "animation-range-end"?: Property.AnimationRangeEnd<TLength> | undefined;
9356
+ /**
9357
+ * The **`animation-range-start`** CSS property is used to set the start of an animation's attachment range along its timeline, i.e. where along the timeline an animation will start.
9358
+ *
9359
+ * **Syntax**: `[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#`
9360
+ *
9361
+ * **Initial value**: `normal`
9362
+ *
9363
+ * | Chrome | Firefox | Safari | Edge | IE |
9364
+ * | :-----: | :-----: | :----: | :--: | :-: |
9365
+ * | **115** | No | No | n/a | No |
9366
+ *
9367
+ * @see https://developer.mozilla.org/docs/Web/CSS/animation-range-start
9368
+ */
9369
+ "animation-range-start"?: Property.AnimationRangeStart<TLength> | undefined;
9097
9370
  /**
9098
9371
  * The **`animation-timeline`** CSS property specifies the timeline that is used to control the progress of an animation.
9099
9372
  *
@@ -9101,9 +9374,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
9101
9374
  *
9102
9375
  * **Initial value**: `auto`
9103
9376
  *
9104
- * | Chrome | Firefox | Safari | Edge | IE |
9105
- * | :----: | :-----: | :----: | :--: | :-: |
9106
- * | No | n/a | No | n/a | No |
9377
+ * | Chrome | Firefox | Safari | Edge | IE |
9378
+ * | :-----: | :-----: | :----: | :--: | :-: |
9379
+ * | **115** | n/a | No | n/a | No |
9107
9380
  *
9108
9381
  * @see https://developer.mozilla.org/docs/Web/CSS/animation-timeline
9109
9382
  */
@@ -9173,10 +9446,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
9173
9446
  *
9174
9447
  * **Initial value**: `visible`
9175
9448
  *
9176
- * | Chrome | Firefox | Safari | Edge | IE |
9177
- * | :------: | :------: | :-------: | :----: | :----: |
9178
- * | **36** | **16** | **15.4** | **12** | **10** |
9179
- * | 12 _-x-_ | 10 _-x-_ | 5.1 _-x-_ | | |
9449
+ * | Chrome | Firefox | Safari | Edge | IE |
9450
+ * | :------: | :-----: | :-------: | :----: | :----: |
9451
+ * | **36** | **16** | **15.4** | **12** | **10** |
9452
+ * | 12 _-x-_ | | 5.1 _-x-_ | | |
9180
9453
  *
9181
9454
  * @see https://developer.mozilla.org/docs/Web/CSS/backface-visibility
9182
9455
  */
@@ -9218,7 +9491,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
9218
9491
  *
9219
9492
  * | Chrome | Firefox | Safari | Edge | IE |
9220
9493
  * | :----: | :-----: | :-----: | :----: | :---: |
9221
- * | **1** | **4** | **14** | **12** | **9** |
9494
+ * | **1** | **4** | **5** | **12** | **9** |
9222
9495
  * | | | 3 _-x-_ | | |
9223
9496
  *
9224
9497
  * @see https://developer.mozilla.org/docs/Web/CSS/background-clip
@@ -10324,13 +10597,13 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
10324
10597
  /**
10325
10598
  * The **`contain-intrinsic-block-size`** CSS logical property defines the block size of an element that a browser can use for layout when the element is subject to size containment.
10326
10599
  *
10327
- * **Syntax**: `none | <length> | auto <length>`
10600
+ * **Syntax**: `auto? [ none | <length> ]`
10328
10601
  *
10329
10602
  * **Initial value**: `none`
10330
10603
  *
10331
10604
  * | Chrome | Firefox | Safari | Edge | IE |
10332
10605
  * | :----: | :-----: | :----: | :--: | :-: |
10333
- * | **95** | **107** | No | n/a | No |
10606
+ * | **95** | **107** | **17** | n/a | No |
10334
10607
  *
10335
10608
  * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-block-size
10336
10609
  */
@@ -10338,13 +10611,13 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
10338
10611
  /**
10339
10612
  * The **`contain-intrinsic-length`** CSS property sets the height of an element that a browser can use for layout when the element is subject to size containment.
10340
10613
  *
10341
- * **Syntax**: `none | <length> | auto <length>`
10614
+ * **Syntax**: `auto? [ none | <length> ]`
10342
10615
  *
10343
10616
  * **Initial value**: `none`
10344
10617
  *
10345
10618
  * | Chrome | Firefox | Safari | Edge | IE |
10346
10619
  * | :----: | :-----: | :----: | :--: | :-: |
10347
- * | **83** | **107** | No | n/a | No |
10620
+ * | **95** | **107** | **17** | n/a | No |
10348
10621
  *
10349
10622
  * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-height
10350
10623
  */
@@ -10352,13 +10625,13 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
10352
10625
  /**
10353
10626
  * The **`contain-intrinsic-inline-size`** CSS logical property defines the inline-size of an element that a browser can use for layout when the element is subject to size containment.
10354
10627
  *
10355
- * **Syntax**: `none | <length> | auto <length>`
10628
+ * **Syntax**: `auto? [ none | <length> ]`
10356
10629
  *
10357
10630
  * **Initial value**: `none`
10358
10631
  *
10359
10632
  * | Chrome | Firefox | Safari | Edge | IE |
10360
10633
  * | :----: | :-----: | :----: | :--: | :-: |
10361
- * | **95** | **107** | No | n/a | No |
10634
+ * | **95** | **107** | **17** | n/a | No |
10362
10635
  *
10363
10636
  * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-inline-size
10364
10637
  */
@@ -10366,13 +10639,13 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
10366
10639
  /**
10367
10640
  * The **`contain-intrinsic-width`** CSS property sets the width of an element that a browser will use for layout when the element is subject to size containment.
10368
10641
  *
10369
- * **Syntax**: `none | <length> | auto <length>`
10642
+ * **Syntax**: `auto? [ none | <length> ]`
10370
10643
  *
10371
10644
  * **Initial value**: `none`
10372
10645
  *
10373
10646
  * | Chrome | Firefox | Safari | Edge | IE |
10374
10647
  * | :----: | :-----: | :----: | :--: | :-: |
10375
- * | **83** | **107** | No | n/a | No |
10648
+ * | **95** | **107** | **17** | n/a | No |
10376
10649
  *
10377
10650
  * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-width
10378
10651
  */
@@ -10426,9 +10699,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
10426
10699
  *
10427
10700
  * **Initial value**: `visible`
10428
10701
  *
10429
- * | Chrome | Firefox | Safari | Edge | IE |
10430
- * | :----: | :-----: | :----: | :--: | :-: |
10431
- * | **85** | n/a | No | n/a | No |
10702
+ * | Chrome | Firefox | Safari | Edge | IE |
10703
+ * | :----: | :---------: | :----: | :--: | :-: |
10704
+ * | **85** | **preview** | No | n/a | No |
10432
10705
  *
10433
10706
  * @see https://developer.mozilla.org/docs/Web/CSS/content-visibility
10434
10707
  */
@@ -10468,9 +10741,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
10468
10741
  *
10469
10742
  * **Initial value**: `none`
10470
10743
  *
10471
- * | Chrome | Firefox | Safari | Edge | IE |
10472
- * | :----: | :-----: | :----: | :--: | :-: |
10473
- * | **85** | **68** | No | n/a | No |
10744
+ * | Chrome | Firefox | Safari | Edge | IE |
10745
+ * | :----: | :-----: | :------: | :--: | :-: |
10746
+ * | **85** | **68** | **17.2** | n/a | No |
10474
10747
  *
10475
10748
  * @see https://developer.mozilla.org/docs/Web/CSS/counter-set
10476
10749
  */
@@ -10793,17 +11066,73 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
10793
11066
  /**
10794
11067
  * The **`font-synthesis`** CSS property controls which missing typefaces, bold, italic, or small-caps, may be synthesized by the browser.
10795
11068
  *
10796
- * **Syntax**: `none | [ weight || style || small-caps ]`
11069
+ * **Syntax**: `none | [ weight || style || small-caps || position]`
11070
+ *
11071
+ * **Initial value**: `weight style small-caps position `
11072
+ *
11073
+ * | Chrome | Firefox | Safari | Edge | IE |
11074
+ * | :----: | :-----: | :----: | :--: | :-: |
11075
+ * | **97** | **34** | **9** | n/a | No |
11076
+ *
11077
+ * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis
11078
+ */
11079
+ "font-synthesis"?: Property.FontSynthesis | undefined;
11080
+ /**
11081
+ * The **`font-synthesis-position`** CSS property lets you specify whether or not a browser may synthesize the subscript and superscript "position" typefaces when they are missing in a font family, while using `font-variant-position` to set the positions.
11082
+ *
11083
+ * **Syntax**: `auto | none`
11084
+ *
11085
+ * **Initial value**: `none`
11086
+ *
11087
+ * | Chrome | Firefox | Safari | Edge | IE |
11088
+ * | :----: | :-----: | :----: | :--: | :-: |
11089
+ * | No | **118** | No | n/a | No |
11090
+ *
11091
+ * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis-position
11092
+ */
11093
+ "font-synthesis-position"?: Property.FontSynthesisPosition | undefined;
11094
+ /**
11095
+ * The **`font-synthesis-small-caps`** CSS property lets you specify whether or not the browser may synthesize small-caps typeface when it is missing in a font family. Small-caps glyphs typically use the form of uppercase letters but are reduced to the size of lowercase letters.
11096
+ *
11097
+ * **Syntax**: `auto | none`
11098
+ *
11099
+ * **Initial value**: `auto`
11100
+ *
11101
+ * | Chrome | Firefox | Safari | Edge | IE |
11102
+ * | :----: | :-----: | :------: | :--: | :-: |
11103
+ * | **97** | **111** | **16.4** | n/a | No |
11104
+ *
11105
+ * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis-small-caps
11106
+ */
11107
+ "font-synthesis-small-caps"?: Property.FontSynthesisSmallCaps | undefined;
11108
+ /**
11109
+ * The **`font-synthesis-style`** CSS property lets you specify whether or not the browser may synthesize the oblique typeface when it is missing in a font family.
11110
+ *
11111
+ * **Syntax**: `auto | none`
11112
+ *
11113
+ * **Initial value**: `auto`
11114
+ *
11115
+ * | Chrome | Firefox | Safari | Edge | IE |
11116
+ * | :----: | :-----: | :------: | :--: | :-: |
11117
+ * | **97** | **111** | **16.4** | n/a | No |
11118
+ *
11119
+ * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis-style
11120
+ */
11121
+ "font-synthesis-style"?: Property.FontSynthesisStyle | undefined;
11122
+ /**
11123
+ * The **`font-synthesis-weight`** CSS property lets you specify whether or not the browser may synthesize the bold typeface when it is missing in a font family.
11124
+ *
11125
+ * **Syntax**: `auto | none`
10797
11126
  *
10798
- * **Initial value**: `weight style`
11127
+ * **Initial value**: `auto`
10799
11128
  *
10800
- * | Chrome | Firefox | Safari | Edge | IE |
10801
- * | :----: | :-----: | :----: | :--: | :-: |
10802
- * | **97** | **34** | **9** | n/a | No |
11129
+ * | Chrome | Firefox | Safari | Edge | IE |
11130
+ * | :----: | :-----: | :------: | :--: | :-: |
11131
+ * | **97** | **111** | **16.4** | n/a | No |
10803
11132
  *
10804
- * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis
11133
+ * @see https://developer.mozilla.org/docs/Web/CSS/font-synthesis-weight
10805
11134
  */
10806
- "font-synthesis"?: Property.FontSynthesis | undefined;
11135
+ "font-synthesis-weight"?: Property.FontSynthesisWeight | undefined;
10807
11136
  /**
10808
11137
  * The **`font-variant`** CSS shorthand property allows you to set all the font variants for a font.
10809
11138
  *
@@ -10825,9 +11154,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
10825
11154
  *
10826
11155
  * **Initial value**: `normal`
10827
11156
  *
10828
- * | Chrome | Firefox | Safari | Edge | IE |
10829
- * | :----: | :-----: | :-----: | :--: | :-: |
10830
- * | No | **34** | **9.1** | n/a | No |
11157
+ * | Chrome | Firefox | Safari | Edge | IE |
11158
+ * | :-----: | :-----: | :-----: | :--: | :-: |
11159
+ * | **111** | **34** | **9.1** | n/a | No |
10831
11160
  *
10832
11161
  * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-alternates
10833
11162
  */
@@ -10867,7 +11196,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
10867
11196
  *
10868
11197
  * | Chrome | Firefox | Safari | Edge | IE |
10869
11198
  * | :----: | :-----: | :----: | :--: | :-: |
10870
- * | No | **108** | No | n/a | No |
11199
+ * | No | n/a | No | n/a | No |
10871
11200
  *
10872
11201
  * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-emoji
10873
11202
  */
@@ -10908,9 +11237,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
10908
11237
  *
10909
11238
  * **Initial value**: `normal`
10910
11239
  *
10911
- * | Chrome | Firefox | Safari | Edge | IE |
10912
- * | :----: | :-----: | :-----: | :--: | :-: |
10913
- * | No | **34** | **9.1** | n/a | No |
11240
+ * | Chrome | Firefox | Safari | Edge | IE |
11241
+ * | :-----: | :-----: | :-----: | :--: | :-: |
11242
+ * | **117** | **34** | **9.1** | n/a | No |
10914
11243
  *
10915
11244
  * @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
10916
11245
  */
@@ -10952,7 +11281,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
10952
11281
  *
10953
11282
  * | Chrome | Firefox | Safari | Edge | IE |
10954
11283
  * | :----: | :-----: | :----: | :-----------------------------: | :---------------------------------: |
10955
- * | **89** | No | No | **79** | **10** _(-ms-high-contrast-adjust)_ |
11284
+ * | **89** | **113** | No | **79** | **10** _(-ms-high-contrast-adjust)_ |
10956
11285
  * | | | | 12 _(-ms-high-contrast-adjust)_ | |
10957
11286
  *
10958
11287
  * @see https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust
@@ -11133,10 +11462,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11133
11462
  *
11134
11463
  * **Initial value**: `auto`
11135
11464
  *
11136
- * | Chrome | Firefox | Safari | Edge | IE |
11137
- * | :-----: | :-----: | :-----------: | :--: | :-: |
11138
- * | **106** | **98** | **5.1** _-x-_ | n/a | No |
11139
- * | 6 _-x-_ | | | | |
11465
+ * | Chrome | Firefox | Safari | Edge | IE |
11466
+ * | :-----: | :-----: | :-------: | :--: | :-: |
11467
+ * | **106** | **98** | **17** | n/a | No |
11468
+ * | 6 _-x-_ | | 5.1 _-x-_ | | |
11140
11469
  *
11141
11470
  * @see https://developer.mozilla.org/docs/Web/CSS/hyphenate-character
11142
11471
  */
@@ -11160,10 +11489,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11160
11489
  *
11161
11490
  * **Initial value**: `manual`
11162
11491
  *
11163
- * | Chrome | Firefox | Safari | Edge | IE |
11164
- * | :------: | :-----: | :-----------: | :----: | :----------: |
11165
- * | **55** | **43** | **5.1** _-x-_ | **79** | **10** _-x-_ |
11166
- * | 13 _-x-_ | 6 _-x-_ | | | |
11492
+ * | Chrome | Firefox | Safari | Edge | IE |
11493
+ * | :------: | :-----: | :-------: | :----: | :----------: |
11494
+ * | **55** | **43** | **17** | **79** | **10** _-x-_ |
11495
+ * | 13 _-x-_ | 6 _-x-_ | 5.1 _-x-_ | | |
11167
11496
  *
11168
11497
  * @see https://developer.mozilla.org/docs/Web/CSS/hyphens
11169
11498
  */
@@ -11485,7 +11814,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11485
11814
  *
11486
11815
  * | Chrome | Firefox | Safari | Edge | IE |
11487
11816
  * | :----: | :-----: | :------: | :--: | :-: |
11488
- * | **87** | **41** | **12.1** | n/a | No |
11817
+ * | **69** | **41** | **12.1** | n/a | No |
11489
11818
  *
11490
11819
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end
11491
11820
  */
@@ -11499,7 +11828,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11499
11828
  *
11500
11829
  * | Chrome | Firefox | Safari | Edge | IE |
11501
11830
  * | :----: | :-----: | :------: | :--: | :-: |
11502
- * | **87** | **41** | **12.1** | n/a | No |
11831
+ * | **69** | **41** | **12.1** | n/a | No |
11503
11832
  *
11504
11833
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start
11505
11834
  */
@@ -11527,7 +11856,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11527
11856
  *
11528
11857
  * | Chrome | Firefox | Safari | Edge | IE |
11529
11858
  * | :----------------------: | :-------------------: | :----------------------: | :--: | :-: |
11530
- * | **87** | **41** | **12.1** | n/a | No |
11859
+ * | **69** | **41** | **12.1** | n/a | No |
11531
11860
  * | 2 _(-webkit-margin-end)_ | 3 _(-moz-margin-end)_ | 3 _(-webkit-margin-end)_ | | |
11532
11861
  *
11533
11862
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
@@ -11542,7 +11871,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11542
11871
  *
11543
11872
  * | Chrome | Firefox | Safari | Edge | IE |
11544
11873
  * | :------------------------: | :---------------------: | :------------------------: | :--: | :-: |
11545
- * | **87** | **41** | **12.1** | n/a | No |
11874
+ * | **69** | **41** | **12.1** | n/a | No |
11546
11875
  * | 2 _(-webkit-margin-start)_ | 3 _(-moz-margin-start)_ | 3 _(-webkit-margin-start)_ | | |
11547
11876
  *
11548
11877
  * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
@@ -11619,9 +11948,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11619
11948
  *
11620
11949
  * **Initial value**: `0`
11621
11950
  *
11622
- * | Chrome | Firefox | Safari | Edge | IE |
11623
- * | :-------------------------------------: | :-----: | :---------------------------------------: | :--: | :-: |
11624
- * | **1** _(-webkit-mask-box-image-outset)_ | No | **3.1** _(-webkit-mask-box-image-outset)_ | n/a | No |
11951
+ * | Chrome | Firefox | Safari | Edge | IE |
11952
+ * | :-------------------------------------: | :-----: | :-----------------------------------: | :--: | :-: |
11953
+ * | **1** _(-webkit-mask-box-image-outset)_ | No | **17.2** | n/a | No |
11954
+ * | | | 3.1 _(-webkit-mask-box-image-outset)_ | | |
11625
11955
  *
11626
11956
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-outset
11627
11957
  */
@@ -11633,9 +11963,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11633
11963
  *
11634
11964
  * **Initial value**: `stretch`
11635
11965
  *
11636
- * | Chrome | Firefox | Safari | Edge | IE |
11637
- * | :-------------------------------------: | :-----: | :---------------------------------------: | :--: | :-: |
11638
- * | **1** _(-webkit-mask-box-image-repeat)_ | No | **3.1** _(-webkit-mask-box-image-repeat)_ | n/a | No |
11966
+ * | Chrome | Firefox | Safari | Edge | IE |
11967
+ * | :-------------------------------------: | :-----: | :-----------------------------------: | :--: | :-: |
11968
+ * | **1** _(-webkit-mask-box-image-repeat)_ | No | **17.2** | n/a | No |
11969
+ * | | | 3.1 _(-webkit-mask-box-image-repeat)_ | | |
11639
11970
  *
11640
11971
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat
11641
11972
  */
@@ -11647,9 +11978,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11647
11978
  *
11648
11979
  * **Initial value**: `0`
11649
11980
  *
11650
- * | Chrome | Firefox | Safari | Edge | IE |
11651
- * | :------------------------------------: | :-----: | :--------------------------------------: | :--: | :-: |
11652
- * | **1** _(-webkit-mask-box-image-slice)_ | No | **3.1** _(-webkit-mask-box-image-slice)_ | n/a | No |
11981
+ * | Chrome | Firefox | Safari | Edge | IE |
11982
+ * | :------------------------------------: | :-----: | :----------------------------------: | :--: | :-: |
11983
+ * | **1** _(-webkit-mask-box-image-slice)_ | No | **17.2** | n/a | No |
11984
+ * | | | 3.1 _(-webkit-mask-box-image-slice)_ | | |
11653
11985
  *
11654
11986
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-slice
11655
11987
  */
@@ -11661,9 +11993,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11661
11993
  *
11662
11994
  * **Initial value**: `none`
11663
11995
  *
11664
- * | Chrome | Firefox | Safari | Edge | IE |
11665
- * | :-------------------------------------: | :-----: | :---------------------------------------: | :--: | :-: |
11666
- * | **1** _(-webkit-mask-box-image-source)_ | No | **3.1** _(-webkit-mask-box-image-source)_ | n/a | No |
11996
+ * | Chrome | Firefox | Safari | Edge | IE |
11997
+ * | :-------------------------------------: | :-----: | :-----------------------------------: | :--: | :-: |
11998
+ * | **1** _(-webkit-mask-box-image-source)_ | No | **17.2** | n/a | No |
11999
+ * | | | 3.1 _(-webkit-mask-box-image-source)_ | | |
11667
12000
  *
11668
12001
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-source
11669
12002
  */
@@ -11675,9 +12008,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11675
12008
  *
11676
12009
  * **Initial value**: `auto`
11677
12010
  *
11678
- * | Chrome | Firefox | Safari | Edge | IE |
11679
- * | :------------------------------------: | :-----: | :--------------------------------------: | :--: | :-: |
11680
- * | **1** _(-webkit-mask-box-image-width)_ | No | **3.1** _(-webkit-mask-box-image-width)_ | n/a | No |
12011
+ * | Chrome | Firefox | Safari | Edge | IE |
12012
+ * | :------------------------------------: | :-----: | :----------------------------------: | :--: | :-: |
12013
+ * | **1** _(-webkit-mask-box-image-width)_ | No | **17.2** | n/a | No |
12014
+ * | | | 3.1 _(-webkit-mask-box-image-width)_ | | |
11681
12015
  *
11682
12016
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-border-width
11683
12017
  */
@@ -11689,10 +12023,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11689
12023
  *
11690
12024
  * **Initial value**: `border-box`
11691
12025
  *
11692
- * | Chrome | Firefox | Safari | Edge | IE |
11693
- * | :---------: | :-----: | :------: | :--: | :-: |
11694
- * | **1** _-x-_ | **53** | **15.4** | n/a | No |
11695
- * | | | 4 _-x-_ | | |
12026
+ * | Chrome | Firefox | Safari | Edge | IE |
12027
+ * | :-----: | :-----: | :------: | :--: | :-: |
12028
+ * | **120** | **53** | **15.4** | n/a | No |
12029
+ * | 1 _-x-_ | | 4 _-x-_ | | |
11696
12030
  *
11697
12031
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-clip
11698
12032
  */
@@ -11704,9 +12038,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11704
12038
  *
11705
12039
  * **Initial value**: `add`
11706
12040
  *
11707
- * | Chrome | Firefox | Safari | Edge | IE |
11708
- * | :----: | :-----: | :------: | :---: | :-: |
11709
- * | No | **53** | **15.4** | 18-79 | No |
12041
+ * | Chrome | Firefox | Safari | Edge | IE |
12042
+ * | :-----: | :-----: | :------: | :---: | :-: |
12043
+ * | **120** | **53** | **15.4** | 18-79 | No |
11710
12044
  *
11711
12045
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-composite
11712
12046
  */
@@ -11718,10 +12052,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11718
12052
  *
11719
12053
  * **Initial value**: `none`
11720
12054
  *
11721
- * | Chrome | Firefox | Safari | Edge | IE |
11722
- * | :---------: | :-----: | :------: | :---: | :-: |
11723
- * | **1** _-x-_ | **53** | **15.4** | 16-79 | No |
11724
- * | | | 4 _-x-_ | | |
12055
+ * | Chrome | Firefox | Safari | Edge | IE |
12056
+ * | :-----: | :-----: | :------: | :---: | :-: |
12057
+ * | **120** | **53** | **15.4** | 16-79 | No |
12058
+ * | 1 _-x-_ | | 4 _-x-_ | | |
11725
12059
  *
11726
12060
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-image
11727
12061
  */
@@ -11733,9 +12067,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11733
12067
  *
11734
12068
  * **Initial value**: `match-source`
11735
12069
  *
11736
- * | Chrome | Firefox | Safari | Edge | IE |
11737
- * | :----: | :-----: | :------: | :--: | :-: |
11738
- * | No | **53** | **15.4** | n/a | No |
12070
+ * | Chrome | Firefox | Safari | Edge | IE |
12071
+ * | :-----: | :-----: | :------: | :--: | :-: |
12072
+ * | **120** | **53** | **15.4** | n/a | No |
11739
12073
  *
11740
12074
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-mode
11741
12075
  */
@@ -11747,10 +12081,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11747
12081
  *
11748
12082
  * **Initial value**: `border-box`
11749
12083
  *
11750
- * | Chrome | Firefox | Safari | Edge | IE |
11751
- * | :---------: | :-----: | :------: | :--: | :-: |
11752
- * | **1** _-x-_ | **53** | **15.4** | n/a | No |
11753
- * | | | 4 _-x-_ | | |
12084
+ * | Chrome | Firefox | Safari | Edge | IE |
12085
+ * | :-----: | :-----: | :------: | :--: | :-: |
12086
+ * | **120** | **53** | **15.4** | n/a | No |
12087
+ * | 1 _-x-_ | | 4 _-x-_ | | |
11754
12088
  *
11755
12089
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-origin
11756
12090
  */
@@ -11762,10 +12096,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11762
12096
  *
11763
12097
  * **Initial value**: `center`
11764
12098
  *
11765
- * | Chrome | Firefox | Safari | Edge | IE |
11766
- * | :---------: | :-----: | :-------: | :---: | :-: |
11767
- * | **1** _-x-_ | **53** | **15.4** | 18-79 | No |
11768
- * | | | 3.1 _-x-_ | | |
12099
+ * | Chrome | Firefox | Safari | Edge | IE |
12100
+ * | :-----: | :-----: | :-------: | :---: | :-: |
12101
+ * | **120** | **53** | **15.4** | 18-79 | No |
12102
+ * | 1 _-x-_ | | 3.1 _-x-_ | | |
11769
12103
  *
11770
12104
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-position
11771
12105
  */
@@ -11777,10 +12111,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11777
12111
  *
11778
12112
  * **Initial value**: `repeat`
11779
12113
  *
11780
- * | Chrome | Firefox | Safari | Edge | IE |
11781
- * | :---------: | :-----: | :-------: | :---: | :-: |
11782
- * | **1** _-x-_ | **53** | **15.4** | 18-79 | No |
11783
- * | | | 3.1 _-x-_ | | |
12114
+ * | Chrome | Firefox | Safari | Edge | IE |
12115
+ * | :-----: | :-----: | :-------: | :---: | :-: |
12116
+ * | **120** | **53** | **15.4** | 18-79 | No |
12117
+ * | 1 _-x-_ | | 3.1 _-x-_ | | |
11784
12118
  *
11785
12119
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat
11786
12120
  */
@@ -11792,10 +12126,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11792
12126
  *
11793
12127
  * **Initial value**: `auto`
11794
12128
  *
11795
- * | Chrome | Firefox | Safari | Edge | IE |
11796
- * | :---------: | :-----: | :------: | :---: | :-: |
11797
- * | **4** _-x-_ | **53** | **15.4** | 18-79 | No |
11798
- * | | | 4 _-x-_ | | |
12129
+ * | Chrome | Firefox | Safari | Edge | IE |
12130
+ * | :-----: | :-----: | :------: | :---: | :-: |
12131
+ * | **120** | **53** | **15.4** | 18-79 | No |
12132
+ * | 4 _-x-_ | | 4 _-x-_ | | |
11799
12133
  *
11800
12134
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-size
11801
12135
  */
@@ -11814,6 +12148,20 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11814
12148
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-type
11815
12149
  */
11816
12150
  "mask-type"?: Property.MaskType | undefined;
12151
+ /**
12152
+ * This feature is not Baseline because it does not work in some of the most widely-used browsers.
12153
+ *
12154
+ * **Syntax**: `[ pack | next ] || [ definite-first | ordered ]`
12155
+ *
12156
+ * **Initial value**: `pack`
12157
+ *
12158
+ * | Chrome | Firefox | Safari | Edge | IE |
12159
+ * | :----: | :-----: | :---------: | :--: | :-: |
12160
+ * | No | No | **preview** | n/a | No |
12161
+ *
12162
+ * @see https://developer.mozilla.org/docs/Web/CSS/masonry-auto-flow
12163
+ */
12164
+ "masonry-auto-flow"?: Property.MasonryAutoFlow | undefined;
11817
12165
  /**
11818
12166
  * The **`math-depth`** property describes a notion of _depth_ for each element of a mathematical formula, with respect to the top-level container of that formula. Concretely, this is used to determine the computed value of the font-size property when its specified value is `math`.
11819
12167
  *
@@ -11823,7 +12171,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11823
12171
  *
11824
12172
  * | Chrome | Firefox | Safari | Edge | IE |
11825
12173
  * | :-----: | :-----: | :----: | :--: | :-: |
11826
- * | **109** | n/a | No | n/a | No |
12174
+ * | **109** | **117** | No | n/a | No |
11827
12175
  *
11828
12176
  * @see https://developer.mozilla.org/docs/Web/CSS/math-depth
11829
12177
  */
@@ -11851,7 +12199,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11851
12199
  *
11852
12200
  * | Chrome | Firefox | Safari | Edge | IE |
11853
12201
  * | :-----: | :-----: | :------: | :--: | :-: |
11854
- * | **109** | n/a | **14.1** | n/a | No |
12202
+ * | **109** | **117** | **14.1** | n/a | No |
11855
12203
  *
11856
12204
  * @see https://developer.mozilla.org/docs/Web/CSS/math-style
11857
12205
  */
@@ -11996,10 +12344,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
11996
12344
  *
11997
12345
  * **Initial value**: `0`
11998
12346
  *
11999
- * | Chrome | Firefox | Safari | Edge | IE |
12000
- * | :--------------------: | :-----: | :---------: | :--: | :-: |
12001
- * | **55** | **72** | **preview** | n/a | No |
12002
- * | 46 _(motion-distance)_ | | | | |
12347
+ * | Chrome | Firefox | Safari | Edge | IE |
12348
+ * | :--------------------: | :-----: | :----: | :--: | :-: |
12349
+ * | **55** | **72** | **16** | n/a | No |
12350
+ * | 46 _(motion-distance)_ | | | | |
12003
12351
  *
12004
12352
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
12005
12353
  */
@@ -12007,7 +12355,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12007
12355
  /**
12008
12356
  * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.
12009
12357
  *
12010
- * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`
12358
+ * **Syntax**: `none | <offset-path> || <coord-box>`
12011
12359
  *
12012
12360
  * **Initial value**: `none`
12013
12361
  *
@@ -12026,10 +12374,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12026
12374
  *
12027
12375
  * **Initial value**: `auto`
12028
12376
  *
12029
- * | Chrome | Firefox | Safari | Edge | IE |
12030
- * | :--------------------: | :-----: | :---------: | :--: | :-: |
12031
- * | **56** | **72** | **preview** | n/a | No |
12032
- * | 46 _(motion-rotation)_ | | | | |
12377
+ * | Chrome | Firefox | Safari | Edge | IE |
12378
+ * | :--------------------: | :-----: | :----: | :--: | :-: |
12379
+ * | **56** | **72** | **16** | n/a | No |
12380
+ * | 46 _(motion-rotation)_ | | | | |
12033
12381
  *
12034
12382
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
12035
12383
  */
@@ -12067,9 +12415,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12067
12415
  *
12068
12416
  * **Initial value**: `auto`
12069
12417
  *
12070
- * | Chrome | Firefox | Safari | Edge | IE |
12071
- * | :----: | :-----: | :---------: | :--: | :-: |
12072
- * | No | **72** | **preview** | n/a | No |
12418
+ * | Chrome | Firefox | Safari | Edge | IE |
12419
+ * | :-----: | :-----: | :----: | :--: | :-: |
12420
+ * | **116** | **72** | **16** | n/a | No |
12073
12421
  *
12074
12422
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-anchor
12075
12423
  */
@@ -12081,10 +12429,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12081
12429
  *
12082
12430
  * **Initial value**: `0`
12083
12431
  *
12084
- * | Chrome | Firefox | Safari | Edge | IE |
12085
- * | :--------------------: | :-----: | :---------: | :--: | :-: |
12086
- * | **55** | **72** | **preview** | n/a | No |
12087
- * | 46 _(motion-distance)_ | | | | |
12432
+ * | Chrome | Firefox | Safari | Edge | IE |
12433
+ * | :--------------------: | :-----: | :----: | :--: | :-: |
12434
+ * | **55** | **72** | **16** | n/a | No |
12435
+ * | 46 _(motion-distance)_ | | | | |
12088
12436
  *
12089
12437
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance
12090
12438
  */
@@ -12092,7 +12440,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12092
12440
  /**
12093
12441
  * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system.
12094
12442
  *
12095
- * **Syntax**: `none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]`
12443
+ * **Syntax**: `none | <offset-path> || <coord-box>`
12096
12444
  *
12097
12445
  * **Initial value**: `none`
12098
12446
  *
@@ -12105,13 +12453,13 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12105
12453
  */
12106
12454
  "offset-path"?: Property.OffsetPath | undefined;
12107
12455
  /**
12108
- * **Syntax**: `auto | <position>`
12456
+ * **Syntax**: `normal | auto | <position>`
12109
12457
  *
12110
12458
  * **Initial value**: `auto`
12111
12459
  *
12112
- * | Chrome | Firefox | Safari | Edge | IE |
12113
- * | :----: | :-----: | :---------: | :--: | :-: |
12114
- * | No | No | **preview** | n/a | No |
12460
+ * | Chrome | Firefox | Safari | Edge | IE |
12461
+ * | :-----: | :-----: | :----: | :--: | :-: |
12462
+ * | **116** | n/a | **16** | n/a | No |
12115
12463
  *
12116
12464
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-position
12117
12465
  */
@@ -12123,10 +12471,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12123
12471
  *
12124
12472
  * **Initial value**: `auto`
12125
12473
  *
12126
- * | Chrome | Firefox | Safari | Edge | IE |
12127
- * | :--------------------: | :-----: | :---------: | :--: | :-: |
12128
- * | **56** | **72** | **preview** | n/a | No |
12129
- * | 46 _(motion-rotation)_ | | | | |
12474
+ * | Chrome | Firefox | Safari | Edge | IE |
12475
+ * | :--------------------: | :-----: | :----: | :--: | :-: |
12476
+ * | **56** | **72** | **16** | n/a | No |
12477
+ * | 46 _(motion-rotation)_ | | | | |
12130
12478
  *
12131
12479
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
12132
12480
  */
@@ -12138,10 +12486,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12138
12486
  *
12139
12487
  * **Initial value**: `auto`
12140
12488
  *
12141
- * | Chrome | Firefox | Safari | Edge | IE |
12142
- * | :--------------------: | :-----: | :---------: | :--: | :-: |
12143
- * | **56** | **72** | **preview** | n/a | No |
12144
- * | 46 _(motion-rotation)_ | | | | |
12489
+ * | Chrome | Firefox | Safari | Edge | IE |
12490
+ * | :--------------------: | :-----: | :----: | :--: | :-: |
12491
+ * | **56** | **72** | **16** | n/a | No |
12492
+ * | 46 _(motion-rotation)_ | | | | |
12145
12493
  *
12146
12494
  * @see https://developer.mozilla.org/docs/Web/CSS/offset-rotate
12147
12495
  */
@@ -12275,12 +12623,6 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12275
12623
  * **Syntax**: `padding-box | content-box`
12276
12624
  *
12277
12625
  * **Initial value**: `padding-box`
12278
- *
12279
- * | Chrome | Firefox | Safari | Edge | IE |
12280
- * | :----: | :-----: | :----: | :--: | :-: |
12281
- * | No | **29** | No | n/a | No |
12282
- *
12283
- * @see https://developer.mozilla.org/docs/Mozilla/Gecko/Chrome/CSS/overflow-clip-box
12284
12626
  */
12285
12627
  "overflow-clip-box"?: Property.OverflowClipBox | undefined;
12286
12628
  /**
@@ -12350,6 +12692,20 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12350
12692
  * @see https://developer.mozilla.org/docs/Web/CSS/overflow-y
12351
12693
  */
12352
12694
  "overflow-y"?: Property.OverflowY | undefined;
12695
+ /**
12696
+ * The **`overlay`** CSS property specifies whether an element appearing in the top layer (for example, a shown popover or modal `<dialog>` element) is actually rendered in the top layer. This property is only relevant within a list of `transition-property` values, and only if `allow-discrete` is set as the `transition-behavior`.
12697
+ *
12698
+ * **Syntax**: `none | auto`
12699
+ *
12700
+ * **Initial value**: `none`
12701
+ *
12702
+ * | Chrome | Firefox | Safari | Edge | IE |
12703
+ * | :-----: | :-----: | :----: | :--: | :-: |
12704
+ * | **117** | No | No | n/a | No |
12705
+ *
12706
+ * @see https://developer.mozilla.org/docs/Web/CSS/overlay
12707
+ */
12708
+ overlay?: Property.Overlay | undefined;
12353
12709
  /**
12354
12710
  * The **`overscroll-behavior-block`** CSS property sets the browser's behavior when the block direction boundary of a scrolling area is reached.
12355
12711
  *
@@ -12415,7 +12771,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12415
12771
  *
12416
12772
  * | Chrome | Firefox | Safari | Edge | IE |
12417
12773
  * | :----: | :-----: | :------: | :--: | :-: |
12418
- * | **87** | **41** | **12.1** | n/a | No |
12774
+ * | **69** | **41** | **12.1** | n/a | No |
12419
12775
  *
12420
12776
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end
12421
12777
  */
@@ -12429,7 +12785,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12429
12785
  *
12430
12786
  * | Chrome | Firefox | Safari | Edge | IE |
12431
12787
  * | :----: | :-----: | :------: | :--: | :-: |
12432
- * | **87** | **41** | **12.1** | n/a | No |
12788
+ * | **69** | **41** | **12.1** | n/a | No |
12433
12789
  *
12434
12790
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start
12435
12791
  */
@@ -12457,7 +12813,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12457
12813
  *
12458
12814
  * | Chrome | Firefox | Safari | Edge | IE |
12459
12815
  * | :-----------------------: | :--------------------: | :-----------------------: | :--: | :-: |
12460
- * | **87** | **41** | **12.1** | n/a | No |
12816
+ * | **69** | **41** | **12.1** | n/a | No |
12461
12817
  * | 2 _(-webkit-padding-end)_ | 3 _(-moz-padding-end)_ | 3 _(-webkit-padding-end)_ | | |
12462
12818
  *
12463
12819
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
@@ -12472,7 +12828,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12472
12828
  *
12473
12829
  * | Chrome | Firefox | Safari | Edge | IE |
12474
12830
  * | :-------------------------: | :----------------------: | :-------------------------: | :--: | :-: |
12475
- * | **87** | **41** | **12.1** | n/a | No |
12831
+ * | **69** | **41** | **12.1** | n/a | No |
12476
12832
  * | 2 _(-webkit-padding-start)_ | 3 _(-moz-padding-start)_ | 3 _(-webkit-padding-start)_ | | |
12477
12833
  *
12478
12834
  * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
@@ -12527,9 +12883,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12527
12883
  *
12528
12884
  * **Initial value**: `auto`
12529
12885
  *
12530
- * | Chrome | Firefox | Safari | Edge | IE |
12531
- * | :----: | :-----: | :---------: | :--: | :-: |
12532
- * | **85** | **110** | **preview** | n/a | No |
12886
+ * | Chrome | Firefox | Safari | Edge | IE |
12887
+ * | :----: | :-----: | :-------: | :--: | :-: |
12888
+ * | **85** | **110** | **≤13.1** | n/a | No |
12533
12889
  *
12534
12890
  * @see https://developer.mozilla.org/docs/Web/CSS/page
12535
12891
  */
@@ -12597,10 +12953,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12597
12953
  *
12598
12954
  * **Initial value**: `none`
12599
12955
  *
12600
- * | Chrome | Firefox | Safari | Edge | IE |
12601
- * | :------: | :------: | :-----: | :----: | :----: |
12602
- * | **36** | **16** | **9** | **12** | **10** |
12603
- * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | |
12956
+ * | Chrome | Firefox | Safari | Edge | IE |
12957
+ * | :------: | :-----: | :-----: | :----: | :----: |
12958
+ * | **36** | **16** | **9** | **12** | **10** |
12959
+ * | 12 _-x-_ | | 4 _-x-_ | | |
12604
12960
  *
12605
12961
  * @see https://developer.mozilla.org/docs/Web/CSS/perspective
12606
12962
  */
@@ -12612,10 +12968,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12612
12968
  *
12613
12969
  * **Initial value**: `50% 50%`
12614
12970
  *
12615
- * | Chrome | Firefox | Safari | Edge | IE |
12616
- * | :------: | :------: | :-----: | :----: | :----: |
12617
- * | **36** | **16** | **9** | **12** | **10** |
12618
- * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | |
12971
+ * | Chrome | Firefox | Safari | Edge | IE |
12972
+ * | :------: | :-----: | :-----: | :----: | :----: |
12973
+ * | **36** | **16** | **9** | **12** | **10** |
12974
+ * | 12 _-x-_ | | 4 _-x-_ | | |
12619
12975
  *
12620
12976
  * @see https://developer.mozilla.org/docs/Web/CSS/perspective-origin
12621
12977
  */
@@ -12803,9 +13159,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12803
13159
  *
12804
13160
  * **Initial value**: `0`
12805
13161
  *
12806
- * | Chrome | Firefox | Safari | Edge | IE |
12807
- * | :----: | :-----: | :------: | :--: | :-: |
12808
- * | **69** | **68** | **14.1** | n/a | No |
13162
+ * | Chrome | Firefox | Safari | Edge | IE |
13163
+ * | :----: | :-----: | :----: | :--: | :-: |
13164
+ * | **69** | **68** | **15** | n/a | No |
12809
13165
  *
12810
13166
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
12811
13167
  */
@@ -12817,9 +13173,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12817
13173
  *
12818
13174
  * **Initial value**: `0`
12819
13175
  *
12820
- * | Chrome | Firefox | Safari | Edge | IE |
12821
- * | :----: | :-----: | :------: | :--: | :-: |
12822
- * | **69** | **68** | **14.1** | n/a | No |
13176
+ * | Chrome | Firefox | Safari | Edge | IE |
13177
+ * | :----: | :-----: | :----: | :--: | :-: |
13178
+ * | **69** | **68** | **15** | n/a | No |
12823
13179
  *
12824
13180
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
12825
13181
  */
@@ -12846,9 +13202,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12846
13202
  *
12847
13203
  * **Initial value**: `0`
12848
13204
  *
12849
- * | Chrome | Firefox | Safari | Edge | IE |
12850
- * | :----: | :-----: | :------: | :--: | :-: |
12851
- * | **69** | **68** | **14.1** | n/a | No |
13205
+ * | Chrome | Firefox | Safari | Edge | IE |
13206
+ * | :----: | :-----: | :----: | :--: | :-: |
13207
+ * | **69** | **68** | **15** | n/a | No |
12852
13208
  *
12853
13209
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
12854
13210
  */
@@ -12860,9 +13216,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
12860
13216
  *
12861
13217
  * **Initial value**: `0`
12862
13218
  *
12863
- * | Chrome | Firefox | Safari | Edge | IE |
12864
- * | :----: | :-----: | :------: | :--: | :-: |
12865
- * | **69** | **68** | **14.1** | n/a | No |
13219
+ * | Chrome | Firefox | Safari | Edge | IE |
13220
+ * | :----: | :-----: | :----: | :--: | :-: |
13221
+ * | **69** | **68** | **15** | n/a | No |
12866
13222
  *
12867
13223
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
12868
13224
  */
@@ -13130,13 +13486,13 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13130
13486
  /**
13131
13487
  * The **`scroll-timeline-axis`** CSS property can be used to specify the scrollbar that will be used to provide the timeline for a scroll-timeline animation.
13132
13488
  *
13133
- * **Syntax**: `[ block | inline | vertical | horizontal ]#`
13489
+ * **Syntax**: `[ block | inline | x | y ]#`
13134
13490
  *
13135
13491
  * **Initial value**: `block`
13136
13492
  *
13137
- * | Chrome | Firefox | Safari | Edge | IE |
13138
- * | :----: | :-----: | :----: | :--: | :-: |
13139
- * | No | n/a | No | n/a | No |
13493
+ * | Chrome | Firefox | Safari | Edge | IE |
13494
+ * | :-----: | :-----: | :----: | :--: | :-: |
13495
+ * | **115** | n/a | No | n/a | No |
13140
13496
  *
13141
13497
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-timeline-axis
13142
13498
  */
@@ -13144,13 +13500,13 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13144
13500
  /**
13145
13501
  * The **`scroll-timeline-name`** CSS property defines a name that can be used to identify an element as the source of a scroll timeline for an animation.
13146
13502
  *
13147
- * **Syntax**: `none | <custom-ident>#`
13503
+ * **Syntax**: `none | <dashed-ident>#`
13148
13504
  *
13149
13505
  * **Initial value**: `none`
13150
13506
  *
13151
- * | Chrome | Firefox | Safari | Edge | IE |
13152
- * | :----: | :-----: | :----: | :--: | :-: |
13153
- * | No | n/a | No | n/a | No |
13507
+ * | Chrome | Firefox | Safari | Edge | IE |
13508
+ * | :-----: | :-----: | :----: | :--: | :-: |
13509
+ * | **115** | n/a | No | n/a | No |
13154
13510
  *
13155
13511
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-timeline-name
13156
13512
  */
@@ -13162,9 +13518,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13162
13518
  *
13163
13519
  * **Initial value**: `auto`
13164
13520
  *
13165
- * | Chrome | Firefox | Safari | Edge | IE |
13166
- * | :----: | :-----: | :----: | :--: | :-: |
13167
- * | No | **64** | No | n/a | No |
13521
+ * | Chrome | Firefox | Safari | Edge | IE |
13522
+ * | :-----: | :-----: | :----: | :--: | :-: |
13523
+ * | **121** | **64** | No | n/a | No |
13168
13524
  *
13169
13525
  * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-color
13170
13526
  */
@@ -13190,9 +13546,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13190
13546
  *
13191
13547
  * **Initial value**: `auto`
13192
13548
  *
13193
- * | Chrome | Firefox | Safari | Edge | IE |
13194
- * | :----: | :-----: | :----: | :--: | :-: |
13195
- * | No | **64** | No | n/a | No |
13549
+ * | Chrome | Firefox | Safari | Edge | IE |
13550
+ * | :-----: | :-----: | :----: | :--: | :-: |
13551
+ * | **121** | **64** | No | n/a | No |
13196
13552
  *
13197
13553
  * @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-width
13198
13554
  */
@@ -13303,10 +13659,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13303
13659
  *
13304
13660
  * **Initial value**: `none`
13305
13661
  *
13306
- * | Chrome | Firefox | Safari | Edge | IE |
13307
- * | :------------------------: | :-----: | :--------------------------: | :---: | :------------------------------------: |
13308
- * | **48** | **48** | **preview** | 15-79 | **11** _(-ms-text-combine-horizontal)_ |
13309
- * | 9 _(-webkit-text-combine)_ | | 5.1 _(-webkit-text-combine)_ | | |
13662
+ * | Chrome | Firefox | Safari | Edge | IE |
13663
+ * | :------------------------: | :-----: | :--------------------------: | :----: | :------------------------------------: |
13664
+ * | **48** | **48** | **15.4** | **79** | **11** _(-ms-text-combine-horizontal)_ |
13665
+ * | 9 _(-webkit-text-combine)_ | | 5.1 _(-webkit-text-combine)_ | | |
13310
13666
  *
13311
13667
  * @see https://developer.mozilla.org/docs/Web/CSS/text-combine-upright
13312
13668
  */
@@ -13465,9 +13821,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13465
13821
  *
13466
13822
  * **Initial value**: `auto`
13467
13823
  *
13468
- * | Chrome | Firefox | Safari | Edge | IE |
13469
- * | :----: | :-----: | :----: | :----: | :----: |
13470
- * | n/a | **55** | No | **12** | **11** |
13824
+ * | Chrome | Firefox | Safari | Edge | IE |
13825
+ * | :----: | :-----: | :----: | :---: | :----: |
13826
+ * | n/a | **55** | No | 12-79 | **11** |
13471
13827
  *
13472
13828
  * @see https://developer.mozilla.org/docs/Web/CSS/text-justify
13473
13829
  */
@@ -13586,6 +13942,34 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13586
13942
  * @see https://developer.mozilla.org/docs/Web/CSS/text-underline-position
13587
13943
  */
13588
13944
  "text-underline-position"?: Property.TextUnderlinePosition | undefined;
13945
+ /**
13946
+ * The **`text-wrap`** CSS property controls how text inside an element is wrapped. The different values provide:
13947
+ *
13948
+ * **Syntax**: `wrap | nowrap | balance | stable | pretty`
13949
+ *
13950
+ * **Initial value**: `wrap`
13951
+ *
13952
+ * | Chrome | Firefox | Safari | Edge | IE |
13953
+ * | :-----: | :-----: | :----: | :--: | :-: |
13954
+ * | **114** | **121** | No | n/a | No |
13955
+ *
13956
+ * @see https://developer.mozilla.org/docs/Web/CSS/text-wrap
13957
+ */
13958
+ "text-wrap"?: Property.TextWrap | undefined;
13959
+ /**
13960
+ * The **`timeline-scope`** CSS property modifies the scope of a named animation timeline.
13961
+ *
13962
+ * **Syntax**: `none | <dashed-ident>#`
13963
+ *
13964
+ * **Initial value**: `none`
13965
+ *
13966
+ * | Chrome | Firefox | Safari | Edge | IE |
13967
+ * | :-----: | :-----: | :----: | :--: | :-: |
13968
+ * | **116** | No | No | n/a | No |
13969
+ *
13970
+ * @see https://developer.mozilla.org/docs/Web/CSS/timeline-scope
13971
+ */
13972
+ "timeline-scope"?: Property.TimelineScope | undefined;
13589
13973
  /**
13590
13974
  * The **`top`** CSS property participates in specifying the vertical position of a positioned element. It has no effect on non-positioned elements.
13591
13975
  *
@@ -13651,10 +14035,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13651
14035
  *
13652
14036
  * **Initial value**: `50% 50% 0`
13653
14037
  *
13654
- * | Chrome | Firefox | Safari | Edge | IE |
13655
- * | :-----: | :-------: | :-----: | :----: | :-----: |
13656
- * | **36** | **16** | **9** | **12** | **10** |
13657
- * | 1 _-x-_ | 3.5 _-x-_ | 2 _-x-_ | | 9 _-x-_ |
14038
+ * | Chrome | Firefox | Safari | Edge | IE |
14039
+ * | :-----: | :-----: | :-----: | :----: | :-----: |
14040
+ * | **36** | **16** | **9** | **12** | **10** |
14041
+ * | 1 _-x-_ | | 2 _-x-_ | | 9 _-x-_ |
13658
14042
  *
13659
14043
  * @see https://developer.mozilla.org/docs/Web/CSS/transform-origin
13660
14044
  */
@@ -13666,14 +14050,28 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13666
14050
  *
13667
14051
  * **Initial value**: `flat`
13668
14052
  *
13669
- * | Chrome | Firefox | Safari | Edge | IE |
13670
- * | :------: | :------: | :-----: | :----: | :-: |
13671
- * | **36** | **16** | **9** | **12** | No |
13672
- * | 12 _-x-_ | 10 _-x-_ | 4 _-x-_ | | |
14053
+ * | Chrome | Firefox | Safari | Edge | IE |
14054
+ * | :------: | :-----: | :-----: | :----: | :-: |
14055
+ * | **36** | **16** | **9** | **12** | No |
14056
+ * | 12 _-x-_ | | 4 _-x-_ | | |
13673
14057
  *
13674
14058
  * @see https://developer.mozilla.org/docs/Web/CSS/transform-style
13675
14059
  */
13676
14060
  "transform-style"?: Property.TransformStyle | undefined;
14061
+ /**
14062
+ * The **`transition-behavior`** CSS property specifies whether transitions will be started for properties whose animation behavior is discrete.
14063
+ *
14064
+ * **Syntax**: `<transition-behavior-value>#`
14065
+ *
14066
+ * **Initial value**: `normal`
14067
+ *
14068
+ * | Chrome | Firefox | Safari | Edge | IE |
14069
+ * | :-----: | :-----: | :----: | :--: | :-: |
14070
+ * | **117** | No | No | n/a | No |
14071
+ *
14072
+ * @see https://developer.mozilla.org/docs/Web/CSS/transition-behavior
14073
+ */
14074
+ "transition-behavior"?: Property.TransitionBehavior | undefined;
13677
14075
  /**
13678
14076
  * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
13679
14077
  *
@@ -13684,7 +14082,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13684
14082
  * | Chrome | Firefox | Safari | Edge | IE |
13685
14083
  * | :-----: | :-----: | :-----: | :----: | :----: |
13686
14084
  * | **26** | **16** | **9** | **12** | **10** |
13687
- * | 1 _-x-_ | 4 _-x-_ | 4 _-x-_ | | |
14085
+ * | 1 _-x-_ | | 4 _-x-_ | | |
13688
14086
  *
13689
14087
  * @see https://developer.mozilla.org/docs/Web/CSS/transition-delay
13690
14088
  */
@@ -13699,7 +14097,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13699
14097
  * | Chrome | Firefox | Safari | Edge | IE |
13700
14098
  * | :-----: | :-----: | :-------: | :----: | :----: |
13701
14099
  * | **26** | **16** | **9** | **12** | **10** |
13702
- * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
14100
+ * | 1 _-x-_ | | 3.1 _-x-_ | | |
13703
14101
  *
13704
14102
  * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration
13705
14103
  */
@@ -13714,7 +14112,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13714
14112
  * | Chrome | Firefox | Safari | Edge | IE |
13715
14113
  * | :-----: | :-----: | :-------: | :----: | :----: |
13716
14114
  * | **26** | **16** | **9** | **12** | **10** |
13717
- * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
14115
+ * | 1 _-x-_ | | 3.1 _-x-_ | | |
13718
14116
  *
13719
14117
  * @see https://developer.mozilla.org/docs/Web/CSS/transition-property
13720
14118
  */
@@ -13729,7 +14127,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13729
14127
  * | Chrome | Firefox | Safari | Edge | IE |
13730
14128
  * | :-----: | :-----: | :-------: | :----: | :----: |
13731
14129
  * | **26** | **16** | **9** | **12** | **10** |
13732
- * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
14130
+ * | 1 _-x-_ | | 3.1 _-x-_ | | |
13733
14131
  *
13734
14132
  * @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function
13735
14133
  */
@@ -13791,6 +14189,48 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13791
14189
  * @see https://developer.mozilla.org/docs/Web/CSS/vertical-align
13792
14190
  */
13793
14191
  "vertical-align"?: Property.VerticalAlign<TLength> | undefined;
14192
+ /**
14193
+ * The **`view-timeline-axis`** CSS property is used to specify the scrollbar direction that will be used to provide the timeline for a _named view progress timeline_ animation, which is progressed through based on the change in visibility of an element (known as the _subject_) inside a scrollable element (_scroller_). `view-timeline-axis` is set on the subject. See CSS scroll-driven animations for more details.
14194
+ *
14195
+ * **Syntax**: `[ block | inline | x | y ]#`
14196
+ *
14197
+ * **Initial value**: `block`
14198
+ *
14199
+ * | Chrome | Firefox | Safari | Edge | IE |
14200
+ * | :-----: | :-----: | :----: | :--: | :-: |
14201
+ * | **115** | n/a | No | n/a | No |
14202
+ *
14203
+ * @see https://developer.mozilla.org/docs/Web/CSS/view-timeline-axis
14204
+ */
14205
+ "view-timeline-axis"?: Property.ViewTimelineAxis | undefined;
14206
+ /**
14207
+ * The **`view-timeline-inset`** CSS property is used to specify one or two values representing an adjustment to the position of the scrollport (see Scroll container for more details) in which the subject element of a _named view progress timeline_ animation is deemed to be visible. Put another way, this allows you to specify start and/or end inset (or outset) values that offset the position of the timeline.
14208
+ *
14209
+ * **Syntax**: `[ [ auto | <length-percentage> ]{1,2} ]#`
14210
+ *
14211
+ * **Initial value**: `auto`
14212
+ *
14213
+ * | Chrome | Firefox | Safari | Edge | IE |
14214
+ * | :-----: | :-----: | :----: | :--: | :-: |
14215
+ * | **115** | No | No | n/a | No |
14216
+ *
14217
+ * @see https://developer.mozilla.org/docs/Web/CSS/view-timeline-inset
14218
+ */
14219
+ "view-timeline-inset"?: Property.ViewTimelineInset<TLength> | undefined;
14220
+ /**
14221
+ * The **`view-timeline-name`** CSS property is used to define the name of a _named view progress timeline_, which is progressed through based on the change in visibility of an element (known as the _subject_) inside a scrollable element (_scroller_). `view-timeline` is set on the subject.
14222
+ *
14223
+ * **Syntax**: `none | <dashed-ident>#`
14224
+ *
14225
+ * **Initial value**: `none`
14226
+ *
14227
+ * | Chrome | Firefox | Safari | Edge | IE |
14228
+ * | :-----: | :-----: | :----: | :--: | :-: |
14229
+ * | **115** | n/a | No | n/a | No |
14230
+ *
14231
+ * @see https://developer.mozilla.org/docs/Web/CSS/view-timeline-name
14232
+ */
14233
+ "view-timeline-name"?: Property.ViewTimelineName | undefined;
13794
14234
  /**
13795
14235
  * The **`view-transition-name`** CSS property provides the selected element with a distinct identifying name (a `<custom-ident>`) and causes it to participate in a separate view transition from the root view transition — or no view transition if the `none` value is specified.
13796
14236
  *
@@ -13822,7 +14262,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13822
14262
  /**
13823
14263
  * The **`white-space`** CSS property sets how white space inside an element is handled.
13824
14264
  *
13825
- * **Syntax**: `normal | pre | nowrap | pre-wrap | pre-line | break-spaces`
14265
+ * **Syntax**: `normal | pre | nowrap | pre-wrap | pre-line | break-spaces | [ <'white-space-collapse'> || <'text-wrap'> || <'white-space-trim'> ]`
13826
14266
  *
13827
14267
  * **Initial value**: `normal`
13828
14268
  *
@@ -13833,6 +14273,26 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13833
14273
  * @see https://developer.mozilla.org/docs/Web/CSS/white-space
13834
14274
  */
13835
14275
  "white-space"?: Property.WhiteSpace | undefined;
14276
+ /**
14277
+ * The **`white-space-collapse`** CSS property controls how white space inside an element is collapsed.
14278
+ *
14279
+ * **Syntax**: `collapse | discard | preserve | preserve-breaks | preserve-spaces | break-spaces`
14280
+ *
14281
+ * **Initial value**: `collapse`
14282
+ *
14283
+ * | Chrome | Firefox | Safari | Edge | IE |
14284
+ * | :-----: | :-----: | :----: | :--: | :-: |
14285
+ * | **114** | No | No | n/a | No |
14286
+ *
14287
+ * @see https://developer.mozilla.org/docs/Web/CSS/white-space-collapse
14288
+ */
14289
+ "white-space-collapse"?: Property.WhiteSpaceCollapse | undefined;
14290
+ /**
14291
+ * **Syntax**: `none | discard-before || discard-after || discard-inner`
14292
+ *
14293
+ * **Initial value**: `none`
14294
+ */
14295
+ "white-space-trim"?: Property.WhiteSpaceTrim | undefined;
13836
14296
  /**
13837
14297
  * The **`widows`** CSS property sets the minimum number of lines in a block container that must be shown at the _top_ of a page, region, or column.
13838
14298
  *
@@ -13909,6 +14369,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13909
14369
  * **Syntax**: `normal | break-word`
13910
14370
  *
13911
14371
  * **Initial value**: `normal`
14372
+ *
14373
+ * | Chrome | Firefox | Safari | Edge | IE |
14374
+ * | :-----: | :-----: | :-------: | :-----: | :-: |
14375
+ * | **≤80** | **≤72** | **≤13.1** | **≤80** | No |
13912
14376
  */
13913
14377
  "word-wrap"?: Property.WordWrap | undefined;
13914
14378
  /**
@@ -13949,7 +14413,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
13949
14413
  *
13950
14414
  * | Chrome | Firefox | Safari | Edge | IE |
13951
14415
  * | :----: | :-----: | :-----: | :----: | :-----: |
13952
- * | **1** | No | **3.1** | **12** | **5.5** |
14416
+ * | **1** | n/a | **3.1** | **12** | **5.5** |
13953
14417
  *
13954
14418
  * @see https://developer.mozilla.org/docs/Web/CSS/zoom
13955
14419
  */
@@ -13984,6 +14448,18 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
13984
14448
  * @see https://developer.mozilla.org/docs/Web/CSS/animation
13985
14449
  */
13986
14450
  animation?: Property.Animation<TTime> | undefined;
14451
+ /**
14452
+ * The **`animation-range`** CSS shorthand property is used to set the start and end of an animation's attachment range along its timeline, i.e. where along the timeline an animation will start and end.
14453
+ *
14454
+ * **Syntax**: `[ <'animation-range-start'> <'animation-range-end'>? ]#`
14455
+ *
14456
+ * | Chrome | Firefox | Safari | Edge | IE |
14457
+ * | :-----: | :-----: | :----: | :--: | :-: |
14458
+ * | **115** | No | No | n/a | No |
14459
+ *
14460
+ * @see https://developer.mozilla.org/docs/Web/CSS/animation-range
14461
+ */
14462
+ "animation-range"?: Property.AnimationRange<TLength> | undefined;
13987
14463
  /**
13988
14464
  * The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method.
13989
14465
  *
@@ -14235,11 +14711,11 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
14235
14711
  /**
14236
14712
  * The **`contain-intrinsic-size`** CSS shorthand property sets the size of an element that a browser will use for layout when the element is subject to size containment.
14237
14713
  *
14238
- * **Syntax**: `[ none | <length> | auto <length> ]{1,2}`
14714
+ * **Syntax**: `[ auto? [ none | <length> ] ]{1,2}`
14239
14715
  *
14240
14716
  * | Chrome | Firefox | Safari | Edge | IE |
14241
14717
  * | :----: | :-----: | :----: | :--: | :-: |
14242
- * | **83** | **107** | No | n/a | No |
14718
+ * | **83** | **107** | **17** | n/a | No |
14243
14719
  *
14244
14720
  * @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size
14245
14721
  */
@@ -14461,9 +14937,10 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
14461
14937
  *
14462
14938
  * **Syntax**: `<mask-layer>#`
14463
14939
  *
14464
- * | Chrome | Firefox | Safari | Edge | IE |
14465
- * | :----: | :-----: | :-----: | :---: | :-: |
14466
- * | **1** | **2** | **3.1** | 12-79 | No |
14940
+ * | Chrome | Firefox | Safari | Edge | IE |
14941
+ * | :----: | :-----: | :-------: | :---: | :-: |
14942
+ * | **1** | **53** | **15.4** | 12-79 | No |
14943
+ * | | | 3.1 _-x-_ | | |
14467
14944
  *
14468
14945
  * @see https://developer.mozilla.org/docs/Web/CSS/mask
14469
14946
  */
@@ -14473,9 +14950,10 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
14473
14950
  *
14474
14951
  * **Syntax**: `<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>`
14475
14952
  *
14476
- * | Chrome | Firefox | Safari | Edge | IE |
14477
- * | :------------------------------: | :-----: | :--------------------------------: | :--: | :-: |
14478
- * | **1** _(-webkit-mask-box-image)_ | No | **3.1** _(-webkit-mask-box-image)_ | n/a | No |
14953
+ * | Chrome | Firefox | Safari | Edge | IE |
14954
+ * | :------------------------------: | :-----: | :----------------------------: | :--: | :-: |
14955
+ * | **1** _(-webkit-mask-box-image)_ | No | **17.2** | n/a | No |
14956
+ * | | | 3.1 _(-webkit-mask-box-image)_ | | |
14479
14957
  *
14480
14958
  * @see https://developer.mozilla.org/docs/Web/CSS/mask-border
14481
14959
  */
@@ -14511,9 +14989,9 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
14511
14989
  *
14512
14990
  * **Syntax**: `[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]`
14513
14991
  *
14514
- * | Chrome | Firefox | Safari | Edge | IE |
14515
- * | :----: | :-----: | :-----: | :----: | :---: |
14516
- * | **94** | **88** | **1.2** | **94** | **8** |
14992
+ * | Chrome | Firefox | Safari | Edge | IE |
14993
+ * | :----: | :-----: | :------: | :----: | :---: |
14994
+ * | **94** | **88** | **16.4** | **94** | **8** |
14517
14995
  *
14518
14996
  * @see https://developer.mozilla.org/docs/Web/CSS/outline
14519
14997
  */
@@ -14636,9 +15114,9 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
14636
15114
  *
14637
15115
  * **Syntax**: `<length>{1,2}`
14638
15116
  *
14639
- * | Chrome | Firefox | Safari | Edge | IE |
14640
- * | :----: | :-----: | :------: | :--: | :-: |
14641
- * | **69** | **68** | **14.1** | n/a | No |
15117
+ * | Chrome | Firefox | Safari | Edge | IE |
15118
+ * | :----: | :-----: | :----: | :--: | :-: |
15119
+ * | **69** | **68** | **15** | n/a | No |
14642
15120
  *
14643
15121
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
14644
15122
  */
@@ -14648,9 +15126,9 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
14648
15126
  *
14649
15127
  * **Syntax**: `<length>{1,2}`
14650
15128
  *
14651
- * | Chrome | Firefox | Safari | Edge | IE |
14652
- * | :----: | :-----: | :------: | :--: | :-: |
14653
- * | **69** | **68** | **14.1** | n/a | No |
15129
+ * | Chrome | Firefox | Safari | Edge | IE |
15130
+ * | :----: | :-----: | :----: | :--: | :-: |
15131
+ * | **69** | **68** | **15** | n/a | No |
14654
15132
  *
14655
15133
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
14656
15134
  */
@@ -14707,11 +15185,11 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
14707
15185
  /**
14708
15186
  * The **`scroll-timeline`** CSS shorthand property defines a name that can be used to identify the source element of a scroll timeline, along with the scrollbar axis that should provide the timeline.
14709
15187
  *
14710
- * **Syntax**: `[<'scroll-timeline-name'> <'scroll-timeline-axis'>?]#`
15188
+ * **Syntax**: `[ <'scroll-timeline-name'> <'scroll-timeline-axis'>? ]#`
14711
15189
  *
14712
- * | Chrome | Firefox | Safari | Edge | IE |
14713
- * | :----: | :-----: | :----: | :--: | :-: |
14714
- * | No | n/a | No | n/a | No |
15190
+ * | Chrome | Firefox | Safari | Edge | IE |
15191
+ * | :-----: | :-----: | :----: | :--: | :-: |
15192
+ * | **115** | n/a | No | n/a | No |
14715
15193
  *
14716
15194
  * @see https://developer.mozilla.org/docs/Web/CSS/scroll-timeline
14717
15195
  */
@@ -14749,11 +15227,23 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
14749
15227
  * | Chrome | Firefox | Safari | Edge | IE |
14750
15228
  * | :-----: | :-----: | :-------: | :----: | :----: |
14751
15229
  * | **26** | **16** | **9** | **12** | **10** |
14752
- * | 1 _-x-_ | 4 _-x-_ | 3.1 _-x-_ | | |
15230
+ * | 1 _-x-_ | | 3.1 _-x-_ | | |
14753
15231
  *
14754
15232
  * @see https://developer.mozilla.org/docs/Web/CSS/transition
14755
15233
  */
14756
15234
  transition?: Property.Transition<TTime> | undefined;
15235
+ /**
15236
+ * The **`view-timeline`** CSS shorthand property is used to define a _named view progress timeline_, which is progressed through based on the change in visibility of an element (known as the _subject_) inside a scrollable element (_scroller_). `view-timeline` is set on the subject.
15237
+ *
15238
+ * **Syntax**: `[ <'view-timeline-name'> <'view-timeline-axis'>? ]#`
15239
+ *
15240
+ * | Chrome | Firefox | Safari | Edge | IE |
15241
+ * | :-----: | :-----: | :----: | :--: | :-: |
15242
+ * | **115** | n/a | No | n/a | No |
15243
+ *
15244
+ * @see https://developer.mozilla.org/docs/Web/CSS/view-timeline
15245
+ */
15246
+ "view-timeline"?: Property.ViewTimeline | undefined;
14757
15247
  }
14758
15248
 
14759
15249
  export interface StandardPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}>
@@ -14833,14 +15323,6 @@ export interface VendorLonghandPropertiesHyphen<TLength = (string & {}) | 0, TTi
14833
15323
  * **Initial value**: `none` (but this value is overridden in the user agent CSS)
14834
15324
  */
14835
15325
  "-moz-appearance"?: Property.MozAppearance | undefined;
14836
- /**
14837
- * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
14838
- *
14839
- * **Syntax**: `visible | hidden`
14840
- *
14841
- * **Initial value**: `visible`
14842
- */
14843
- "-moz-backface-visibility"?: Property.BackfaceVisibility | undefined;
14844
15326
  /**
14845
15327
  * The **`-moz-binding`** CSS property is used by Mozilla-based applications to attach an XBL binding to a DOM element.
14846
15328
  *
@@ -15050,37 +15532,53 @@ export interface VendorLonghandPropertiesHyphen<TLength = (string & {}) | 0, TTi
15050
15532
  */
15051
15533
  "-moz-osx-font-smoothing"?: Property.FontSmooth<TLength> | undefined;
15052
15534
  /**
15053
- * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
15535
+ * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`.
15054
15536
  *
15055
- * **Syntax**: `<'padding-left'>`
15537
+ * **Syntax**: `<outline-radius>`
15056
15538
  *
15057
15539
  * **Initial value**: `0`
15058
15540
  */
15059
- "-moz-padding-end"?: Property.PaddingInlineEnd<TLength> | undefined;
15541
+ "-moz-outline-radius-bottomleft"?: Property.MozOutlineRadiusBottomleft<TLength> | undefined;
15060
15542
  /**
15061
- * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
15543
+ * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`.
15062
15544
  *
15063
- * **Syntax**: `<'padding-left'>`
15545
+ * **Syntax**: `<outline-radius>`
15064
15546
  *
15065
15547
  * **Initial value**: `0`
15066
15548
  */
15067
- "-moz-padding-start"?: Property.PaddingInlineStart<TLength> | undefined;
15549
+ "-moz-outline-radius-bottomright"?: Property.MozOutlineRadiusBottomright<TLength> | undefined;
15068
15550
  /**
15069
- * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
15551
+ * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`.
15070
15552
  *
15071
- * **Syntax**: `none | <length>`
15553
+ * **Syntax**: `<outline-radius>`
15554
+ *
15555
+ * **Initial value**: `0`
15556
+ */
15557
+ "-moz-outline-radius-topleft"?: Property.MozOutlineRadiusTopleft<TLength> | undefined;
15558
+ /**
15559
+ * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`.
15560
+ *
15561
+ * **Syntax**: `<outline-radius>`
15562
+ *
15563
+ * **Initial value**: `0`
15564
+ */
15565
+ "-moz-outline-radius-topright"?: Property.MozOutlineRadiusTopright<TLength> | undefined;
15566
+ /**
15567
+ * The **`padding-inline-end`** CSS property defines the logical inline end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
15568
+ *
15569
+ * **Syntax**: `<'padding-left'>`
15072
15570
  *
15073
- * **Initial value**: `none`
15571
+ * **Initial value**: `0`
15074
15572
  */
15075
- "-moz-perspective"?: Property.Perspective<TLength> | undefined;
15573
+ "-moz-padding-end"?: Property.PaddingInlineEnd<TLength> | undefined;
15076
15574
  /**
15077
- * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
15575
+ * The **`padding-inline-start`** CSS property defines the logical inline start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
15078
15576
  *
15079
- * **Syntax**: `<position>`
15577
+ * **Syntax**: `<'padding-left'>`
15080
15578
  *
15081
- * **Initial value**: `50% 50%`
15579
+ * **Initial value**: `0`
15082
15580
  */
15083
- "-moz-perspective-origin"?: Property.PerspectiveOrigin<TLength> | undefined;
15581
+ "-moz-padding-start"?: Property.PaddingInlineStart<TLength> | undefined;
15084
15582
  /**
15085
15583
  * **`-moz-stack-sizing`** is an extended CSS property. Normally, a `<xul:stack>` will change its size so that all of its child elements are completely visible. For example, moving a child of the stack far to the right will widen the stack so the child remains visible.
15086
15584
  *
@@ -15113,54 +15611,6 @@ export interface VendorLonghandPropertiesHyphen<TLength = (string & {}) | 0, TTi
15113
15611
  * **Initial value**: `auto` for smartphone browsers supporting inflation, `none` in other cases (and then not modifiable).
15114
15612
  */
15115
15613
  "-moz-text-size-adjust"?: Property.TextSizeAdjust | undefined;
15116
- /**
15117
- * The **`transform-origin`** CSS property sets the origin for an element's transformations.
15118
- *
15119
- * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
15120
- *
15121
- * **Initial value**: `50% 50% 0`
15122
- */
15123
- "-moz-transform-origin"?: Property.TransformOrigin<TLength> | undefined;
15124
- /**
15125
- * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
15126
- *
15127
- * **Syntax**: `flat | preserve-3d`
15128
- *
15129
- * **Initial value**: `flat`
15130
- */
15131
- "-moz-transform-style"?: Property.TransformStyle | undefined;
15132
- /**
15133
- * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
15134
- *
15135
- * **Syntax**: `<time>#`
15136
- *
15137
- * **Initial value**: `0s`
15138
- */
15139
- "-moz-transition-delay"?: Property.TransitionDelay<TTime> | undefined;
15140
- /**
15141
- * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
15142
- *
15143
- * **Syntax**: `<time>#`
15144
- *
15145
- * **Initial value**: `0s`
15146
- */
15147
- "-moz-transition-duration"?: Property.TransitionDuration<TTime> | undefined;
15148
- /**
15149
- * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
15150
- *
15151
- * **Syntax**: `none | <single-transition-property>#`
15152
- *
15153
- * **Initial value**: all
15154
- */
15155
- "-moz-transition-property"?: Property.TransitionProperty | undefined;
15156
- /**
15157
- * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
15158
- *
15159
- * **Syntax**: `<easing-function>#`
15160
- *
15161
- * **Initial value**: `ease`
15162
- */
15163
- "-moz-transition-timing-function"?: Property.TransitionTimingFunction | undefined;
15164
15614
  /**
15165
15615
  * The **`-moz-user-focus`** CSS property is used to indicate whether an element can have the focus.
15166
15616
  *
@@ -16581,11 +17031,11 @@ export interface VendorShorthandPropertiesHyphen<TLength = (string & {}) | 0, TT
16581
17031
  */
16582
17032
  "-moz-columns"?: Property.Columns<TLength> | undefined;
16583
17033
  /**
16584
- * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
17034
+ * In Mozilla applications like Firefox, the **`-moz-outline-radius`** CSS shorthand property can be used to give an element's `outline` rounded corners.
16585
17035
  *
16586
- * **Syntax**: `<single-transition>#`
17036
+ * **Syntax**: `<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?`
16587
17037
  */
16588
- "-moz-transition"?: Property.Transition<TTime> | undefined;
17038
+ "-moz-outline-radius"?: Property.MozOutlineRadius<TLength> | undefined;
16589
17039
  /**
16590
17040
  * The **`-ms-content-zoom-limit`** CSS shorthand property is a Microsoft extension that specifies values for the `-ms-content-zoom-limit-min` and `-ms-content-zoom-limit-max` properties.
16591
17041
  *
@@ -17077,6 +17527,16 @@ export interface ObsoletePropertiesHyphen<TLength = (string & {}) | 0, TTime = s
17077
17527
  * @deprecated
17078
17528
  */
17079
17529
  "-khtml-user-select"?: Property.UserSelect | undefined;
17530
+ /**
17531
+ * The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
17532
+ *
17533
+ * **Syntax**: `visible | hidden`
17534
+ *
17535
+ * **Initial value**: `visible`
17536
+ *
17537
+ * @deprecated
17538
+ */
17539
+ "-moz-backface-visibility"?: Property.BackfaceVisibility | undefined;
17080
17540
  /**
17081
17541
  * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box.
17082
17542
  *
@@ -17284,113 +17744,163 @@ export interface ObsoletePropertiesHyphen<TLength = (string & {}) | 0, TTime = s
17284
17744
  */
17285
17745
  "-moz-outline-color"?: Property.OutlineColor | undefined;
17286
17746
  /**
17287
- * In Mozilla applications like Firefox, the **`-moz-outline-radius`** CSS shorthand property can be used to give an element's `outline` rounded corners.
17747
+ * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
17288
17748
  *
17289
- * **Syntax**: `<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?`
17749
+ * **Syntax**: `auto | <'border-style'>`
17750
+ *
17751
+ * **Initial value**: `none`
17290
17752
  *
17291
17753
  * @deprecated
17292
17754
  */
17293
- "-moz-outline-radius"?: Property.MozOutlineRadius<TLength> | undefined;
17755
+ "-moz-outline-style"?: Property.OutlineStyle | undefined;
17294
17756
  /**
17295
- * In Mozilla applications, the **`-moz-outline-radius-bottomleft`** CSS property can be used to round the bottom-left corner of an element's `outline`.
17757
+ * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
17296
17758
  *
17297
- * **Syntax**: `<outline-radius>`
17759
+ * **Syntax**: `<line-width>`
17298
17760
  *
17299
- * **Initial value**: `0`
17761
+ * **Initial value**: `medium`
17300
17762
  *
17301
17763
  * @deprecated
17302
17764
  */
17303
- "-moz-outline-radius-bottomleft"?: Property.MozOutlineRadiusBottomleft<TLength> | undefined;
17765
+ "-moz-outline-width"?: Property.OutlineWidth<TLength> | undefined;
17304
17766
  /**
17305
- * In Mozilla applications, the **`-moz-outline-radius-bottomright`** CSS property can be used to round the bottom-right corner of an element's `outline`.
17767
+ * The **`perspective`** CSS property determines the distance between the z=0 plane and the user in order to give a 3D-positioned element some perspective.
17306
17768
  *
17307
- * **Syntax**: `<outline-radius>`
17769
+ * **Syntax**: `none | <length>`
17308
17770
  *
17309
- * **Initial value**: `0`
17771
+ * **Initial value**: `none`
17310
17772
  *
17311
17773
  * @deprecated
17312
17774
  */
17313
- "-moz-outline-radius-bottomright"?: Property.MozOutlineRadiusBottomright<TLength> | undefined;
17775
+ "-moz-perspective"?: Property.Perspective<TLength> | undefined;
17314
17776
  /**
17315
- * In Mozilla applications, the **`-moz-outline-radius-topleft`** CSS property can be used to round the top-left corner of an element's `outline`.
17777
+ * The **`perspective-origin`** CSS property determines the position at which the viewer is looking. It is used as the _vanishing point_ by the `perspective` property.
17316
17778
  *
17317
- * **Syntax**: `<outline-radius>`
17779
+ * **Syntax**: `<position>`
17318
17780
  *
17319
- * **Initial value**: `0`
17781
+ * **Initial value**: `50% 50%`
17320
17782
  *
17321
17783
  * @deprecated
17322
17784
  */
17323
- "-moz-outline-radius-topleft"?: Property.MozOutlineRadiusTopleft<TLength> | undefined;
17785
+ "-moz-perspective-origin"?: Property.PerspectiveOrigin<TLength> | undefined;
17324
17786
  /**
17325
- * In Mozilla applications, the **`-moz-outline-radius-topright`** CSS property can be used to round the top-right corner of an element's `outline`.
17787
+ * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
17326
17788
  *
17327
- * **Syntax**: `<outline-radius>`
17789
+ * **Syntax**: `auto | start | end | left | right | center | justify`
17328
17790
  *
17329
- * **Initial value**: `0`
17791
+ * **Initial value**: `auto`
17330
17792
  *
17331
17793
  * @deprecated
17332
17794
  */
17333
- "-moz-outline-radius-topright"?: Property.MozOutlineRadiusTopright<TLength> | undefined;
17795
+ "-moz-text-align-last"?: Property.TextAlignLast | undefined;
17334
17796
  /**
17335
- * The **`outline-style`** CSS property sets the style of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
17797
+ * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
17336
17798
  *
17337
- * **Syntax**: `auto | <'border-style'>`
17799
+ * **Syntax**: `<color>`
17800
+ *
17801
+ * **Initial value**: `currentcolor`
17802
+ *
17803
+ * @deprecated
17804
+ */
17805
+ "-moz-text-decoration-color"?: Property.TextDecorationColor | undefined;
17806
+ /**
17807
+ * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
17808
+ *
17809
+ * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
17338
17810
  *
17339
17811
  * **Initial value**: `none`
17340
17812
  *
17341
17813
  * @deprecated
17342
17814
  */
17343
- "-moz-outline-style"?: Property.OutlineStyle | undefined;
17815
+ "-moz-text-decoration-line"?: Property.TextDecorationLine | undefined;
17344
17816
  /**
17345
- * The CSS **`outline-width`** property sets the thickness of an element's outline. An outline is a line that is drawn around an element, outside the `border`.
17817
+ * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
17346
17818
  *
17347
- * **Syntax**: `<line-width>`
17819
+ * **Syntax**: `solid | double | dotted | dashed | wavy`
17348
17820
  *
17349
- * **Initial value**: `medium`
17821
+ * **Initial value**: `solid`
17350
17822
  *
17351
17823
  * @deprecated
17352
17824
  */
17353
- "-moz-outline-width"?: Property.OutlineWidth<TLength> | undefined;
17825
+ "-moz-text-decoration-style"?: Property.TextDecorationStyle | undefined;
17354
17826
  /**
17355
- * The **`text-align-last`** CSS property sets how the last line of a block or a line, right before a forced line break, is aligned.
17827
+ * The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
17356
17828
  *
17357
- * **Syntax**: `auto | start | end | left | right | center | justify`
17829
+ * **Syntax**: `none | <transform-list>`
17358
17830
  *
17359
- * **Initial value**: `auto`
17831
+ * **Initial value**: `none`
17360
17832
  *
17361
17833
  * @deprecated
17362
17834
  */
17363
- "-moz-text-align-last"?: Property.TextAlignLast | undefined;
17835
+ "-moz-transform"?: Property.Transform | undefined;
17364
17836
  /**
17365
- * The **`text-decoration-color`** CSS property sets the color of decorations added to text by `text-decoration-line`.
17837
+ * The **`transform-origin`** CSS property sets the origin for an element's transformations.
17366
17838
  *
17367
- * **Syntax**: `<color>`
17839
+ * **Syntax**: `[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?`
17368
17840
  *
17369
- * **Initial value**: `currentcolor`
17841
+ * **Initial value**: `50% 50% 0`
17370
17842
  *
17371
17843
  * @deprecated
17372
17844
  */
17373
- "-moz-text-decoration-color"?: Property.TextDecorationColor | undefined;
17845
+ "-moz-transform-origin"?: Property.TransformOrigin<TLength> | undefined;
17374
17846
  /**
17375
- * The **`text-decoration-line`** CSS property sets the kind of decoration that is used on text in an element, such as an underline or overline.
17847
+ * The **`transform-style`** CSS property sets whether children of an element are positioned in the 3D space or are flattened in the plane of the element.
17376
17848
  *
17377
- * **Syntax**: `none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error`
17849
+ * **Syntax**: `flat | preserve-3d`
17378
17850
  *
17379
- * **Initial value**: `none`
17851
+ * **Initial value**: `flat`
17380
17852
  *
17381
17853
  * @deprecated
17382
17854
  */
17383
- "-moz-text-decoration-line"?: Property.TextDecorationLine | undefined;
17855
+ "-moz-transform-style"?: Property.TransformStyle | undefined;
17384
17856
  /**
17385
- * The **`text-decoration-style`** CSS property sets the style of the lines specified by `text-decoration-line`. The style applies to all lines that are set with `text-decoration-line`.
17857
+ * The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
17386
17858
  *
17387
- * **Syntax**: `solid | double | dotted | dashed | wavy`
17859
+ * **Syntax**: `<single-transition>#`
17388
17860
  *
17389
- * **Initial value**: `solid`
17861
+ * @deprecated
17862
+ */
17863
+ "-moz-transition"?: Property.Transition<TTime> | undefined;
17864
+ /**
17865
+ * The **`transition-delay`** CSS property specifies the duration to wait before starting a property's transition effect when its value changes.
17866
+ *
17867
+ * **Syntax**: `<time>#`
17868
+ *
17869
+ * **Initial value**: `0s`
17390
17870
  *
17391
17871
  * @deprecated
17392
17872
  */
17393
- "-moz-text-decoration-style"?: Property.TextDecorationStyle | undefined;
17873
+ "-moz-transition-delay"?: Property.TransitionDelay<TTime> | undefined;
17874
+ /**
17875
+ * The **`transition-duration`** CSS property sets the length of time a transition animation should take to complete. By default, the value is `0s`, meaning that no animation will occur.
17876
+ *
17877
+ * **Syntax**: `<time>#`
17878
+ *
17879
+ * **Initial value**: `0s`
17880
+ *
17881
+ * @deprecated
17882
+ */
17883
+ "-moz-transition-duration"?: Property.TransitionDuration<TTime> | undefined;
17884
+ /**
17885
+ * The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
17886
+ *
17887
+ * **Syntax**: `none | <single-transition-property>#`
17888
+ *
17889
+ * **Initial value**: all
17890
+ *
17891
+ * @deprecated
17892
+ */
17893
+ "-moz-transition-property"?: Property.TransitionProperty | undefined;
17894
+ /**
17895
+ * The **`transition-timing-function`** CSS property sets how intermediate values are calculated for CSS properties being affected by a transition effect.
17896
+ *
17897
+ * **Syntax**: `<easing-function>#`
17898
+ *
17899
+ * **Initial value**: `ease`
17900
+ *
17901
+ * @deprecated
17902
+ */
17903
+ "-moz-transition-timing-function"?: Property.TransitionTimingFunction | undefined;
17394
17904
  /**
17395
17905
  * In Mozilla applications, **`-moz-user-input`** determines if an element will accept user input.
17396
17906
  *
@@ -17705,26 +18215,6 @@ export interface ObsoletePropertiesHyphen<TLength = (string & {}) | 0, TTime = s
17705
18215
  * @deprecated
17706
18216
  */
17707
18217
  "-webkit-box-pack"?: Property.BoxPack | undefined;
17708
- /**
17709
- * The **`scroll-snap-points-x`** CSS property defines the horizontal positioning of snap points within the content of the scroll container they are applied to.
17710
- *
17711
- * **Syntax**: `none | repeat( <length-percentage> )`
17712
- *
17713
- * **Initial value**: `none`
17714
- *
17715
- * @deprecated
17716
- */
17717
- "-webkit-scroll-snap-points-x"?: Property.ScrollSnapPointsX | undefined;
17718
- /**
17719
- * The **`scroll-snap-points-y`** CSS property defines the vertical positioning of snap points within the content of the scroll container they are applied to.
17720
- *
17721
- * **Syntax**: `none | repeat( <length-percentage> )`
17722
- *
17723
- * **Initial value**: `none`
17724
- *
17725
- * @deprecated
17726
- */
17727
- "-webkit-scroll-snap-points-y"?: Property.ScrollSnapPointsY | undefined;
17728
18218
  }
17729
18219
 
17730
18220
  export interface SvgPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
@@ -17862,7 +18352,9 @@ export type AtRules =
17862
18352
  | "@namespace"
17863
18353
  | "@page"
17864
18354
  | "@property"
18355
+ | "@scope"
17865
18356
  | "@scroll-timeline"
18357
+ | "@starting-style"
17866
18358
  | "@supports"
17867
18359
  | "@viewport";
17868
18360
 
@@ -18020,6 +18512,7 @@ export type HtmlAttributes =
18020
18512
  | "[alt]"
18021
18513
  | "[archive]"
18022
18514
  | "[async]"
18515
+ | "[attributionsrc]"
18023
18516
  | "[autobuffer]"
18024
18517
  | "[autocapitalize]"
18025
18518
  | "[autocomplete]"
@@ -18029,8 +18522,10 @@ export type HtmlAttributes =
18029
18522
  | "[background]"
18030
18523
  | "[behavior]"
18031
18524
  | "[bgcolor]"
18525
+ | "[blocking]"
18032
18526
  | "[border]"
18033
18527
  | "[bottommargin]"
18528
+ | "[browsingtopics]"
18034
18529
  | "[capture]"
18035
18530
  | "[cellpadding]"
18036
18531
  | "[cellspacing]"
@@ -18042,7 +18537,6 @@ export type HtmlAttributes =
18042
18537
  | "[class]"
18043
18538
  | "[classid]"
18044
18539
  | "[clear]"
18045
- | "[code]"
18046
18540
  | "[codebase]"
18047
18541
  | "[codetype]"
18048
18542
  | "[color]"
@@ -18057,8 +18551,6 @@ export type HtmlAttributes =
18057
18551
  | "[credentialless]"
18058
18552
  | "[crossorigin]"
18059
18553
  | "[data]"
18060
- | "[datafld]"
18061
- | "[datasrc]"
18062
18554
  | "[datetime]"
18063
18555
  | "[declare]"
18064
18556
  | "[decoding]"
@@ -18121,13 +18613,13 @@ export type HtmlAttributes =
18121
18613
  | "[marginwidth]"
18122
18614
  | "[max]"
18123
18615
  | "[maxlength]"
18124
- | "[mayscript]"
18125
18616
  | "[media]"
18126
18617
  | "[method]"
18127
18618
  | "[methods]"
18128
18619
  | "[min]"
18129
18620
  | "[minlength]"
18130
18621
  | "[moz-opaque]"
18622
+ | "[mozactionhint]"
18131
18623
  | "[mozallowfullscreen]"
18132
18624
  | "[msallowfullscreen]"
18133
18625
  | "[multiple]"
@@ -18140,7 +18632,6 @@ export type HtmlAttributes =
18140
18632
  | "[noshade]"
18141
18633
  | "[novalidate]"
18142
18634
  | "[nowrap]"
18143
- | "[object]"
18144
18635
  | "[onerror]"
18145
18636
  | "[open]"
18146
18637
  | "[optimum]"
@@ -18148,8 +18639,10 @@ export type HtmlAttributes =
18148
18639
  | "[pattern]"
18149
18640
  | "[ping]"
18150
18641
  | "[placeholder]"
18642
+ | "[popover]"
18643
+ | "[popovertarget]"
18644
+ | "[popovertargetaction]"
18151
18645
  | "[poster]"
18152
- | "[prefetch]"
18153
18646
  | "[preload]"
18154
18647
  | "[profile]"
18155
18648
  | "[readonly]"
@@ -18162,14 +18655,6 @@ export type HtmlAttributes =
18162
18655
  | "[rows]"
18163
18656
  | "[rowspan]"
18164
18657
  | "[rules]"
18165
- | "[sandbox-allow-downloads]"
18166
- | "[sandbox-allow-modals]"
18167
- | "[sandbox-allow-popups-to-escape-sandbox]"
18168
- | "[sandbox-allow-popups]"
18169
- | "[sandbox-allow-presentation]"
18170
- | "[sandbox-allow-same-origin]"
18171
- | "[sandbox-allow-storage-access-by-user-activation]"
18172
- | "[sandbox-allow-top-navigation-by-user-activation]"
18173
18658
  | "[sandbox]"
18174
18659
  | "[scope]"
18175
18660
  | "[scrollamount]"
@@ -18223,6 +18708,7 @@ export type SvgAttributes =
18223
18708
  | "[animation]"
18224
18709
  | "[arabic-form]"
18225
18710
  | "[ascent]"
18711
+ | "[async]"
18226
18712
  | "[attributeName]"
18227
18713
  | "[attributeType]"
18228
18714
  | "[azimuth]"
@@ -18245,10 +18731,13 @@ export type SvgAttributes =
18245
18731
  | "[color]"
18246
18732
  | "[contentScriptType]"
18247
18733
  | "[contentStyleType]"
18734
+ | "[crossorigin]"
18248
18735
  | "[cursor]"
18249
18736
  | "[cx]"
18250
18737
  | "[cy]"
18251
18738
  | "[d]"
18739
+ | "[decoding]"
18740
+ | "[defer]"
18252
18741
  | "[descent]"
18253
18742
  | "[diffuseConstant]"
18254
18743
  | "[direction]"
@@ -18487,6 +18976,12 @@ export namespace Property {
18487
18976
 
18488
18977
  export type AnimationPlayState = Globals | "paused" | "running" | (string & {});
18489
18978
 
18979
+ export type AnimationRange<TLength = (string & {}) | 0> = Globals | DataType.TimelineRangeName | TLength | "normal" | (string & {});
18980
+
18981
+ export type AnimationRangeEnd<TLength = (string & {}) | 0> = Globals | DataType.TimelineRangeName | TLength | "normal" | (string & {});
18982
+
18983
+ export type AnimationRangeStart<TLength = (string & {}) | 0> = Globals | DataType.TimelineRangeName | TLength | "normal" | (string & {});
18984
+
18490
18985
  export type AnimationTimeline = Globals | DataType.SingleAnimationTimeline | (string & {});
18491
18986
 
18492
18987
  export type AnimationTimingFunction = Globals | DataType.EasingFunction | (string & {});
@@ -18547,7 +19042,6 @@ export namespace Property {
18547
19042
  | "-moz-fit-content"
18548
19043
  | "-moz-max-content"
18549
19044
  | "-moz-min-content"
18550
- | "-webkit-fill-available"
18551
19045
  | "auto"
18552
19046
  | "fit-content"
18553
19047
  | "max-content"
@@ -18915,7 +19409,15 @@ export namespace Property {
18915
19409
 
18916
19410
  export type FontStyle = Globals | "italic" | "normal" | "oblique" | (string & {});
18917
19411
 
18918
- export type FontSynthesis = Globals | "none" | "small-caps" | "style" | "weight" | (string & {});
19412
+ export type FontSynthesis = Globals | "none" | "position" | "small-caps" | "style" | "weight" | (string & {});
19413
+
19414
+ export type FontSynthesisPosition = Globals | "auto" | "none";
19415
+
19416
+ export type FontSynthesisSmallCaps = Globals | "auto" | "none";
19417
+
19418
+ export type FontSynthesisStyle = Globals | "auto" | "none";
19419
+
19420
+ export type FontSynthesisWeight = Globals | "auto" | "none";
18919
19421
 
18920
19422
  export type FontVariant =
18921
19423
  | Globals
@@ -19178,6 +19680,8 @@ export namespace Property {
19178
19680
 
19179
19681
  export type MaskType = Globals | "alpha" | "luminance";
19180
19682
 
19683
+ export type MasonryAutoFlow = Globals | "definite-first" | "next" | "ordered" | "pack" | (string & {});
19684
+
19181
19685
  export type MathDepth = Globals | "auto-add" | (string & {}) | (number & {});
19182
19686
 
19183
19687
  export type MathShift = Globals | "compact" | "normal";
@@ -19304,11 +19808,11 @@ export namespace Property {
19304
19808
 
19305
19809
  export type MixBlendMode = Globals | DataType.BlendMode | "plus-lighter";
19306
19810
 
19307
- export type Offset<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | DataType.GeometryBox | "auto" | "none" | (string & {});
19811
+ export type Offset<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | "auto" | "none" | "normal" | (string & {});
19308
19812
 
19309
19813
  export type OffsetDistance<TLength = (string & {}) | 0> = Globals | TLength | (string & {});
19310
19814
 
19311
- export type OffsetPath = Globals | DataType.GeometryBox | "none" | (string & {});
19815
+ export type OffsetPath = Globals | "none" | (string & {});
19312
19816
 
19313
19817
  export type OffsetRotate = Globals | "auto" | "reverse" | (string & {});
19314
19818
 
@@ -19318,7 +19822,7 @@ export namespace Property {
19318
19822
 
19319
19823
  export type OffsetAnchor<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | "auto";
19320
19824
 
19321
- export type OffsetPosition<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | "auto";
19825
+ export type OffsetPosition<TLength = (string & {}) | 0> = Globals | DataType.Position<TLength> | "auto" | "normal";
19322
19826
 
19323
19827
  export type Opacity = Globals | (string & {}) | (number & {});
19324
19828
 
@@ -19354,6 +19858,8 @@ export namespace Property {
19354
19858
 
19355
19859
  export type OverflowY = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible";
19356
19860
 
19861
+ export type Overlay = Globals | "auto" | "none";
19862
+
19357
19863
  export type OverscrollBehavior = Globals | "auto" | "contain" | "none" | (string & {});
19358
19864
 
19359
19865
  export type OverscrollBehaviorBlock = Globals | "auto" | "contain" | "none";
@@ -19494,7 +20000,7 @@ export namespace Property {
19494
20000
 
19495
20001
  export type ScrollTimeline = Globals | "none" | (string & {});
19496
20002
 
19497
- export type ScrollTimelineAxis = Globals | "block" | "horizontal" | "inline" | "vertical" | (string & {});
20003
+ export type ScrollTimelineAxis = Globals | "block" | "inline" | "x" | "y" | (string & {});
19498
20004
 
19499
20005
  export type ScrollTimelineName = Globals | "none" | (string & {});
19500
20006
 
@@ -19514,7 +20020,7 @@ export namespace Property {
19514
20020
 
19515
20021
  export type TableLayout = Globals | "auto" | "fixed";
19516
20022
 
19517
- export type TextAlign = Globals | "center" | "end" | "justify" | "left" | "match-parent" | "right" | "start";
20023
+ export type TextAlign = Globals | "-webkit-match-parent" | "center" | "end" | "justify" | "left" | "match-parent" | "right" | "start";
19518
20024
 
19519
20025
  export type TextAlignLast = Globals | "auto" | "center" | "end" | "justify" | "left" | "right" | "start";
19520
20026
 
@@ -19580,6 +20086,10 @@ export namespace Property {
19580
20086
 
19581
20087
  export type TextUnderlinePosition = Globals | "auto" | "from-font" | "left" | "right" | "under" | (string & {});
19582
20088
 
20089
+ export type TextWrap = Globals | "balance" | "nowrap" | "pretty" | "stable" | "wrap";
20090
+
20091
+ export type TimelineScope = Globals | "none" | (string & {});
20092
+
19583
20093
  export type Top<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
19584
20094
 
19585
20095
  export type TouchAction =
@@ -19609,6 +20119,8 @@ export namespace Property {
19609
20119
 
19610
20120
  export type Transition<TTime = string & {}> = Globals | DataType.SingleTransition<TTime> | (string & {});
19611
20121
 
20122
+ export type TransitionBehavior = Globals | "allow-discrete" | "normal" | (string & {});
20123
+
19612
20124
  export type TransitionDelay<TTime = string & {}> = Globals | TTime | (string & {});
19613
20125
 
19614
20126
  export type TransitionDuration<TTime = string & {}> = Globals | TTime | (string & {});
@@ -19649,11 +20161,45 @@ export namespace Property {
19649
20161
  | "top"
19650
20162
  | (string & {});
19651
20163
 
20164
+ export type ViewTimeline = Globals | "none" | (string & {});
20165
+
20166
+ export type ViewTimelineAxis = Globals | "block" | "inline" | "x" | "y" | (string & {});
20167
+
20168
+ export type ViewTimelineInset<TLength = (string & {}) | 0> = Globals | TLength | "auto" | (string & {});
20169
+
20170
+ export type ViewTimelineName = Globals | "none" | (string & {});
20171
+
19652
20172
  export type ViewTransitionName = Globals | "none" | (string & {});
19653
20173
 
19654
20174
  export type Visibility = Globals | "collapse" | "hidden" | "visible";
19655
20175
 
19656
- export type WhiteSpace = Globals | "-moz-pre-wrap" | "break-spaces" | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap";
20176
+ export type WhiteSpace =
20177
+ | Globals
20178
+ | "-moz-pre-wrap"
20179
+ | "balance"
20180
+ | "break-spaces"
20181
+ | "collapse"
20182
+ | "discard"
20183
+ | "discard-after"
20184
+ | "discard-before"
20185
+ | "discard-inner"
20186
+ | "none"
20187
+ | "normal"
20188
+ | "nowrap"
20189
+ | "pre"
20190
+ | "pre-line"
20191
+ | "pre-wrap"
20192
+ | "preserve"
20193
+ | "preserve-breaks"
20194
+ | "preserve-spaces"
20195
+ | "pretty"
20196
+ | "stable"
20197
+ | "wrap"
20198
+ | (string & {});
20199
+
20200
+ export type WhiteSpaceCollapse = Globals | "break-spaces" | "collapse" | "discard" | "preserve" | "preserve-breaks" | "preserve-spaces";
20201
+
20202
+ export type WhiteSpaceTrim = Globals | "discard-after" | "discard-before" | "discard-inner" | "none" | (string & {});
19657
20203
 
19658
20204
  export type Widows = Globals | (number & {}) | (string & {});
19659
20205
 
@@ -20720,6 +21266,7 @@ export namespace DataType {
20720
21266
  | EasingFunction
20721
21267
  | SingleAnimationDirection
20722
21268
  | SingleAnimationFillMode
21269
+ | SingleAnimationTimeline
20723
21270
  | TTime
20724
21271
  | "infinite"
20725
21272
  | "none"
@@ -20736,10 +21283,12 @@ export namespace DataType {
20736
21283
 
20737
21284
  type SingleAnimationTimeline = "auto" | "none" | (string & {});
20738
21285
 
20739
- type SingleTransition<TTime> = EasingFunction | TTime | "all" | "none" | (string & {});
21286
+ type SingleTransition<TTime> = EasingFunction | TTime | "all" | "allow-discrete" | "none" | "normal" | (string & {});
20740
21287
 
20741
21288
  type StepTimingFunction = "step-end" | "step-start" | (string & {});
20742
21289
 
21290
+ type TimelineRangeName = "contain" | "cover" | "entry" | "entry-crossing" | "exit" | "exit-crossing";
21291
+
20743
21292
  type TrackBreadth<TLength> = TLength | "auto" | "max-content" | "min-content" | (string & {});
20744
21293
 
20745
21294
  type ViewportLength<TLength> = TLength | "auto" | (string & {});