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