@mekari/pixel3-styled-system 0.1.5-dev.0 → 0.1.5
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 +13 -0
- package/css/conditions.mjs +4 -2
- package/css/css.mjs +1 -1
- package/helpers.mjs +18 -5
- package/jsx/factory.mjs +5 -3
- package/jsx/is-valid-prop.mjs +2 -2
- package/package.json +1 -1
- package/patterns/aspect-ratio.d.ts +0 -1
- package/patterns/bleed.d.ts +0 -1
- package/patterns/box.d.ts +0 -1
- package/patterns/center.d.ts +0 -1
- package/patterns/circle.d.ts +0 -1
- package/patterns/container.d.ts +0 -1
- package/patterns/cq.d.ts +0 -1
- package/patterns/divider.d.ts +0 -1
- package/patterns/flex.d.ts +0 -1
- package/patterns/float.d.ts +0 -1
- package/patterns/grid-item.d.ts +0 -1
- package/patterns/grid.d.ts +0 -1
- package/patterns/hstack.d.ts +0 -1
- package/patterns/link-overlay.d.ts +0 -1
- package/patterns/spacer.d.ts +0 -1
- package/patterns/square.d.ts +0 -1
- package/patterns/stack.d.ts +0 -1
- package/patterns/visually-hidden.d.ts +0 -1
- package/patterns/vstack.d.ts +0 -1
- package/patterns/wrap.d.ts +0 -1
- package/recipes/modal-slot-recipe.d.ts +0 -2
- package/themes/index.mjs +1 -1
- package/themes/theme-next.json +5 -0
- package/tokens/tokens.d.ts +2 -2
- package/types/composition.d.ts +26 -0
- package/types/conditions.d.ts +40 -10
- package/types/global.d.ts +1 -0
- package/types/prop-type.d.ts +5 -4
- package/types/selectors.d.ts +1 -1
- package/types/static-css.d.ts +9 -4
- package/types/style-props.d.ts +228 -205
- package/types/system-types.d.ts +86 -2
package/types/style-props.d.ts
CHANGED
|
@@ -8,8 +8,7 @@ type AnyString = (string & {})
|
|
|
8
8
|
type CssVars = "var(--font-inter)"
|
|
9
9
|
type CssVarValue = ConditionalValue<Token | CssVars | AnyString | (number & {})>
|
|
10
10
|
|
|
11
|
-
type
|
|
12
|
-
type CssVarKeys = `--${CssVarName}`
|
|
11
|
+
type CssVarKeys = "--font-inter" | `--${string}` & {}
|
|
13
12
|
|
|
14
13
|
export type CssVarProperties = {
|
|
15
14
|
[key in CssVarKeys]?: CssVarValue
|
|
@@ -226,6 +225,14 @@ WebkitTouchCallout?: ConditionalValue<CssProperties["WebkitTouchCallout"] | AnyS
|
|
|
226
225
|
* **Initial value**: `read-only`
|
|
227
226
|
*/
|
|
228
227
|
WebkitUserModify?: ConditionalValue<CssProperties["WebkitUserModify"] | AnyString>
|
|
228
|
+
/**
|
|
229
|
+
* The **`user-select`** CSS property controls whether the user can select text. This doesn't have any effect on content loaded as part of a browser's user interface (its chrome), except in textboxes.
|
|
230
|
+
*
|
|
231
|
+
* **Syntax**: `auto | text | none | contain | all`
|
|
232
|
+
*
|
|
233
|
+
* **Initial value**: `auto`
|
|
234
|
+
*/
|
|
235
|
+
WebkitUserSelect?: ConditionalValue<CssProperties["WebkitUserSelect"] | AnyString>
|
|
229
236
|
/**
|
|
230
237
|
* The **`accent-color`** CSS property sets the accent color for user-interface controls generated by some elements.
|
|
231
238
|
*
|
|
@@ -313,6 +320,8 @@ alignTracks?: ConditionalValue<CssProperties["alignTracks"] | AnyString>
|
|
|
313
320
|
* @see https://developer.mozilla.org/docs/Web/CSS/all
|
|
314
321
|
*/
|
|
315
322
|
all?: ConditionalValue<CssVars | CssProperties["all"] | AnyString>
|
|
323
|
+
anchorName?: ConditionalValue<CssProperties["anchorName"] | AnyString>
|
|
324
|
+
anchorScope?: ConditionalValue<CssProperties["anchorScope"] | AnyString>
|
|
316
325
|
/**
|
|
317
326
|
* The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
|
|
318
327
|
*
|
|
@@ -485,6 +494,20 @@ animationRangeEnd?: ConditionalValue<CssProperties["animationRangeEnd"] | AnyStr
|
|
|
485
494
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-range-start
|
|
486
495
|
*/
|
|
487
496
|
animationRangeStart?: ConditionalValue<CssProperties["animationRangeStart"] | AnyString>
|
|
497
|
+
/**
|
|
498
|
+
* The **`animation-timeline`** CSS property specifies the timeline that is used to control the progress of an animation.
|
|
499
|
+
*
|
|
500
|
+
* **Syntax**: `<single-animation-timeline>#`
|
|
501
|
+
*
|
|
502
|
+
* **Initial value**: `auto`
|
|
503
|
+
*
|
|
504
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
|
505
|
+
* | :-----: | :-----: | :----: | :--: | :-: |
|
|
506
|
+
* | **115** | n/a | No | n/a | No |
|
|
507
|
+
*
|
|
508
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/animation-timeline
|
|
509
|
+
*/
|
|
510
|
+
animationTimeline?: ConditionalValue<CssProperties["animationTimeline"] | AnyString>
|
|
488
511
|
/**
|
|
489
512
|
* The **`animation-timing-function`** CSS property sets how an animation progresses through the duration of each cycle.
|
|
490
513
|
*
|
|
@@ -500,20 +523,6 @@ animationRangeStart?: ConditionalValue<CssProperties["animationRangeStart"] | An
|
|
|
500
523
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-timing-function
|
|
501
524
|
*/
|
|
502
525
|
animationTimingFunction?: ConditionalValue<CssProperties["animationTimingFunction"] | AnyString>
|
|
503
|
-
/**
|
|
504
|
-
* The **`animation-timeline`** CSS property specifies the timeline that is used to control the progress of an animation.
|
|
505
|
-
*
|
|
506
|
-
* **Syntax**: `<single-animation-timeline>#`
|
|
507
|
-
*
|
|
508
|
-
* **Initial value**: `auto`
|
|
509
|
-
*
|
|
510
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
|
511
|
-
* | :-----: | :-----: | :----: | :--: | :-: |
|
|
512
|
-
* | **115** | n/a | No | n/a | No |
|
|
513
|
-
*
|
|
514
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/animation-timeline
|
|
515
|
-
*/
|
|
516
|
-
animationTimeline?: ConditionalValue<CssProperties["animationTimeline"] | AnyString>
|
|
517
526
|
/**
|
|
518
527
|
* The **`appearance`** CSS property is used to control native appearance of UI controls, that are based on operating system's theme.
|
|
519
528
|
*
|
|
@@ -543,7 +552,6 @@ appearance?: ConditionalValue<CssVars | CssProperties["appearance"] | AnyString>
|
|
|
543
552
|
* @see https://developer.mozilla.org/docs/Web/CSS/aspect-ratio
|
|
544
553
|
*/
|
|
545
554
|
aspectRatio?: ConditionalValue<CssProperties["aspectRatio"] | AnyString>
|
|
546
|
-
azimuth?: ConditionalValue<CssProperties["azimuth"] | AnyString>
|
|
547
555
|
/**
|
|
548
556
|
* The **`backdrop-filter`** CSS property lets you apply graphical effects such as blurring or color shifting to the area behind an element. Because it applies to everything _behind_ the element, to see the effect you must make the element or its background at least partially transparent.
|
|
549
557
|
*
|
|
@@ -793,34 +801,6 @@ borderBlock?: ConditionalValue<CssProperties["borderBlock"] | AnyString>
|
|
|
793
801
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
|
|
794
802
|
*/
|
|
795
803
|
borderBlockColor?: ConditionalValue<UtilityValues["borderBlockColor"] | CssVars | CssProperties["borderBlockColor"] | AnyString>
|
|
796
|
-
/**
|
|
797
|
-
* The **`border-block-style`** CSS property defines the style of the logical block borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
798
|
-
*
|
|
799
|
-
* **Syntax**: `<'border-top-style'>`
|
|
800
|
-
*
|
|
801
|
-
* **Initial value**: `none`
|
|
802
|
-
*
|
|
803
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
|
804
|
-
* | :----: | :-----: | :------: | :--: | :-: |
|
|
805
|
-
* | **87** | **66** | **14.1** | n/a | No |
|
|
806
|
-
*
|
|
807
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
|
|
808
|
-
*/
|
|
809
|
-
borderBlockStyle?: ConditionalValue<CssVars | CssProperties["borderBlockStyle"] | AnyString>
|
|
810
|
-
/**
|
|
811
|
-
* The **`border-block-width`** CSS property defines the width of the logical block borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
812
|
-
*
|
|
813
|
-
* **Syntax**: `<'border-top-width'>`
|
|
814
|
-
*
|
|
815
|
-
* **Initial value**: `medium`
|
|
816
|
-
*
|
|
817
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
|
818
|
-
* | :----: | :-----: | :------: | :--: | :-: |
|
|
819
|
-
* | **87** | **66** | **14.1** | n/a | No |
|
|
820
|
-
*
|
|
821
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
|
|
822
|
-
*/
|
|
823
|
-
borderBlockWidth?: ConditionalValue<UtilityValues["borderBlockWidth"] | CssVars | CssProperties["borderBlockWidth"] | AnyString>
|
|
824
804
|
/**
|
|
825
805
|
* The **`border-block-end`** CSS property is a shorthand property for setting the individual logical block-end border property values in a single place in the style sheet.
|
|
826
806
|
*
|
|
@@ -874,7 +854,7 @@ borderBlockEndStyle?: ConditionalValue<CssVars | CssProperties["borderBlockEndSt
|
|
|
874
854
|
*
|
|
875
855
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-width
|
|
876
856
|
*/
|
|
877
|
-
borderBlockEndWidth?: ConditionalValue<CssProperties["borderBlockEndWidth"] | AnyString>
|
|
857
|
+
borderBlockEndWidth?: ConditionalValue<UtilityValues["borderBlockEndWidth"] | CssVars | CssProperties["borderBlockEndWidth"] | AnyString>
|
|
878
858
|
/**
|
|
879
859
|
* The **`border-block-start`** CSS property is a shorthand property for setting the individual logical block-start border property values in a single place in the style sheet.
|
|
880
860
|
*
|
|
@@ -928,7 +908,35 @@ borderBlockStartStyle?: ConditionalValue<CssVars | CssProperties["borderBlockSta
|
|
|
928
908
|
*
|
|
929
909
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-width
|
|
930
910
|
*/
|
|
931
|
-
borderBlockStartWidth?: ConditionalValue<CssProperties["borderBlockStartWidth"] | AnyString>
|
|
911
|
+
borderBlockStartWidth?: ConditionalValue<UtilityValues["borderBlockStartWidth"] | CssVars | CssProperties["borderBlockStartWidth"] | AnyString>
|
|
912
|
+
/**
|
|
913
|
+
* The **`border-block-style`** CSS property defines the style of the logical block borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
914
|
+
*
|
|
915
|
+
* **Syntax**: `<'border-top-style'>`
|
|
916
|
+
*
|
|
917
|
+
* **Initial value**: `none`
|
|
918
|
+
*
|
|
919
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
|
920
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
|
921
|
+
* | **87** | **66** | **14.1** | n/a | No |
|
|
922
|
+
*
|
|
923
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
|
|
924
|
+
*/
|
|
925
|
+
borderBlockStyle?: ConditionalValue<CssVars | CssProperties["borderBlockStyle"] | AnyString>
|
|
926
|
+
/**
|
|
927
|
+
* The **`border-block-width`** CSS property defines the width of the logical block borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
928
|
+
*
|
|
929
|
+
* **Syntax**: `<'border-top-width'>`
|
|
930
|
+
*
|
|
931
|
+
* **Initial value**: `medium`
|
|
932
|
+
*
|
|
933
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
|
934
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
|
935
|
+
* | **87** | **66** | **14.1** | n/a | No |
|
|
936
|
+
*
|
|
937
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
|
|
938
|
+
*/
|
|
939
|
+
borderBlockWidth?: ConditionalValue<UtilityValues["borderBlockWidth"] | CssVars | CssProperties["borderBlockWidth"] | AnyString>
|
|
932
940
|
/**
|
|
933
941
|
* The **`border-bottom`** shorthand CSS property sets an element's bottom border. It sets the values of `border-bottom-width`, `border-bottom-style` and `border-bottom-color`.
|
|
934
942
|
*
|
|
@@ -1162,18 +1170,6 @@ borderImageWidth?: ConditionalValue<CssProperties["borderImageWidth"] | AnyStrin
|
|
|
1162
1170
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline
|
|
1163
1171
|
*/
|
|
1164
1172
|
borderInline?: ConditionalValue<CssProperties["borderInline"] | AnyString>
|
|
1165
|
-
/**
|
|
1166
|
-
* The **`border-inline-end`** CSS property is a shorthand property for setting the individual logical inline-end border property values in a single place in the style sheet.
|
|
1167
|
-
*
|
|
1168
|
-
* **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
|
|
1169
|
-
*
|
|
1170
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
|
1171
|
-
* | :----: | :-----: | :------: | :--: | :-: |
|
|
1172
|
-
* | **69** | **41** | **12.1** | n/a | No |
|
|
1173
|
-
*
|
|
1174
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end
|
|
1175
|
-
*/
|
|
1176
|
-
borderInlineEnd?: ConditionalValue<CssProperties["borderInlineEnd"] | AnyString>
|
|
1177
1173
|
/**
|
|
1178
1174
|
* The **`border-inline-color`** CSS property defines the color of the logical inline borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color` and `border-bottom-color`, or `border-right-color` and `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
1179
1175
|
*
|
|
@@ -1189,33 +1185,17 @@ borderInlineEnd?: ConditionalValue<CssProperties["borderInlineEnd"] | AnyString>
|
|
|
1189
1185
|
*/
|
|
1190
1186
|
borderInlineColor?: ConditionalValue<UtilityValues["borderInlineColor"] | CssVars | CssProperties["borderInlineColor"] | AnyString>
|
|
1191
1187
|
/**
|
|
1192
|
-
* The **`border-inline-
|
|
1193
|
-
*
|
|
1194
|
-
* **Syntax**: `<'border-top-style'>`
|
|
1195
|
-
*
|
|
1196
|
-
* **Initial value**: `none`
|
|
1197
|
-
*
|
|
1198
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
|
1199
|
-
* | :----: | :-----: | :------: | :--: | :-: |
|
|
1200
|
-
* | **87** | **66** | **14.1** | n/a | No |
|
|
1201
|
-
*
|
|
1202
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
|
|
1203
|
-
*/
|
|
1204
|
-
borderInlineStyle?: ConditionalValue<CssVars | CssProperties["borderInlineStyle"] | AnyString>
|
|
1205
|
-
/**
|
|
1206
|
-
* The **`border-inline-width`** CSS property defines the width of the logical inline borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
1207
|
-
*
|
|
1208
|
-
* **Syntax**: `<'border-top-width'>`
|
|
1188
|
+
* The **`border-inline-end`** CSS property is a shorthand property for setting the individual logical inline-end border property values in a single place in the style sheet.
|
|
1209
1189
|
*
|
|
1210
|
-
* **
|
|
1190
|
+
* **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
|
|
1211
1191
|
*
|
|
1212
1192
|
* | Chrome | Firefox | Safari | Edge | IE |
|
|
1213
1193
|
* | :----: | :-----: | :------: | :--: | :-: |
|
|
1214
|
-
* | **
|
|
1194
|
+
* | **69** | **41** | **12.1** | n/a | No |
|
|
1215
1195
|
*
|
|
1216
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-
|
|
1196
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end
|
|
1217
1197
|
*/
|
|
1218
|
-
|
|
1198
|
+
borderInlineEnd?: ConditionalValue<CssProperties["borderInlineEnd"] | AnyString>
|
|
1219
1199
|
/**
|
|
1220
1200
|
* The **`border-inline-end-color`** CSS property defines the color of the logical inline-end border of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-color`, `border-right-color`, `border-bottom-color`, or `border-left-color` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
1221
1201
|
*
|
|
@@ -1317,6 +1297,34 @@ borderInlineStartStyle?: ConditionalValue<CssVars | CssProperties["borderInlineS
|
|
|
1317
1297
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width
|
|
1318
1298
|
*/
|
|
1319
1299
|
borderInlineStartWidth?: ConditionalValue<UtilityValues["borderInlineStartWidth"] | CssVars | CssProperties["borderInlineStartWidth"] | AnyString>
|
|
1300
|
+
/**
|
|
1301
|
+
* The **`border-inline-style`** CSS property defines the style of the logical inline borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
1302
|
+
*
|
|
1303
|
+
* **Syntax**: `<'border-top-style'>`
|
|
1304
|
+
*
|
|
1305
|
+
* **Initial value**: `none`
|
|
1306
|
+
*
|
|
1307
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
|
1308
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
|
1309
|
+
* | **87** | **66** | **14.1** | n/a | No |
|
|
1310
|
+
*
|
|
1311
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
|
|
1312
|
+
*/
|
|
1313
|
+
borderInlineStyle?: ConditionalValue<CssVars | CssProperties["borderInlineStyle"] | AnyString>
|
|
1314
|
+
/**
|
|
1315
|
+
* The **`border-inline-width`** CSS property defines the width of the logical inline borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
1316
|
+
*
|
|
1317
|
+
* **Syntax**: `<'border-top-width'>`
|
|
1318
|
+
*
|
|
1319
|
+
* **Initial value**: `medium`
|
|
1320
|
+
*
|
|
1321
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
|
1322
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
|
1323
|
+
* | **87** | **66** | **14.1** | n/a | No |
|
|
1324
|
+
*
|
|
1325
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
|
|
1326
|
+
*/
|
|
1327
|
+
borderInlineWidth?: ConditionalValue<UtilityValues["borderInlineWidth"] | CssVars | CssProperties["borderInlineWidth"] | AnyString>
|
|
1320
1328
|
/**
|
|
1321
1329
|
* The **`border-left`** shorthand CSS property sets all the properties of an element's left border.
|
|
1322
1330
|
*
|
|
@@ -1762,6 +1770,7 @@ clear?: ConditionalValue<CssVars | CssProperties["clear"] | AnyString>
|
|
|
1762
1770
|
* @see https://developer.mozilla.org/docs/Web/CSS/clip-path
|
|
1763
1771
|
*/
|
|
1764
1772
|
clipPath?: ConditionalValue<CssProperties["clipPath"] | AnyString>
|
|
1773
|
+
clipRule?: ConditionalValue<CssProperties["clipRule"] | AnyString>
|
|
1765
1774
|
/**
|
|
1766
1775
|
* The **`color`** CSS property sets the foreground color value of an element's text and text decorations, and sets the `currentcolor` value. `currentcolor` may be used as an indirect value on _other_ properties and is the default for other color properties, such as `border-color`.
|
|
1767
1776
|
*
|
|
@@ -1776,6 +1785,7 @@ clipPath?: ConditionalValue<CssProperties["clipPath"] | AnyString>
|
|
|
1776
1785
|
* @see https://developer.mozilla.org/docs/Web/CSS/color
|
|
1777
1786
|
*/
|
|
1778
1787
|
color?: ConditionalValue<UtilityValues["color"] | CssVars | CssProperties["color"] | AnyString>
|
|
1788
|
+
colorInterpolationFilters?: ConditionalValue<CssProperties["colorInterpolationFilters"] | AnyString>
|
|
1779
1789
|
/**
|
|
1780
1790
|
* The **`color-scheme`** CSS property allows an element to indicate which color schemes it can comfortably be rendered in.
|
|
1781
1791
|
*
|
|
@@ -1949,18 +1959,6 @@ columns?: ConditionalValue<CssProperties["columns"] | AnyString>
|
|
|
1949
1959
|
* @see https://developer.mozilla.org/docs/Web/CSS/contain
|
|
1950
1960
|
*/
|
|
1951
1961
|
contain?: ConditionalValue<CssProperties["contain"] | AnyString>
|
|
1952
|
-
/**
|
|
1953
|
-
* 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.
|
|
1954
|
-
*
|
|
1955
|
-
* **Syntax**: `[ auto? [ none | <length> ] ]{1,2}`
|
|
1956
|
-
*
|
|
1957
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
|
1958
|
-
* | :----: | :-----: | :----: | :--: | :-: |
|
|
1959
|
-
* | **83** | **107** | **17** | n/a | No |
|
|
1960
|
-
*
|
|
1961
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size
|
|
1962
|
-
*/
|
|
1963
|
-
containIntrinsicSize?: ConditionalValue<CssProperties["containIntrinsicSize"] | AnyString>
|
|
1964
1962
|
/**
|
|
1965
1963
|
* 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.
|
|
1966
1964
|
*
|
|
@@ -2003,6 +2001,18 @@ containIntrinsicHeight?: ConditionalValue<CssProperties["containIntrinsicHeight"
|
|
|
2003
2001
|
* @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-inline-size
|
|
2004
2002
|
*/
|
|
2005
2003
|
containIntrinsicInlineSize?: ConditionalValue<CssProperties["containIntrinsicInlineSize"] | AnyString>
|
|
2004
|
+
/**
|
|
2005
|
+
* 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.
|
|
2006
|
+
*
|
|
2007
|
+
* **Syntax**: `[ auto? [ none | <length> ] ]{1,2}`
|
|
2008
|
+
*
|
|
2009
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
|
2010
|
+
* | :----: | :-----: | :----: | :--: | :-: |
|
|
2011
|
+
* | **83** | **107** | **17** | n/a | No |
|
|
2012
|
+
*
|
|
2013
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size
|
|
2014
|
+
*/
|
|
2015
|
+
containIntrinsicSize?: ConditionalValue<CssProperties["containIntrinsicSize"] | AnyString>
|
|
2006
2016
|
/**
|
|
2007
2017
|
* 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.
|
|
2008
2018
|
*
|
|
@@ -2141,6 +2151,9 @@ counterSet?: ConditionalValue<CssProperties["counterSet"] | AnyString>
|
|
|
2141
2151
|
* @see https://developer.mozilla.org/docs/Web/CSS/cursor
|
|
2142
2152
|
*/
|
|
2143
2153
|
cursor?: ConditionalValue<CssProperties["cursor"] | AnyString>
|
|
2154
|
+
cx?: ConditionalValue<CssProperties["cx"] | AnyString>
|
|
2155
|
+
cy?: ConditionalValue<CssProperties["cy"] | AnyString>
|
|
2156
|
+
d?: ConditionalValue<CssProperties["d"] | AnyString>
|
|
2144
2157
|
/**
|
|
2145
2158
|
* The **`direction`** CSS property sets the direction of text, table columns, and horizontal overflow. Use `rtl` for languages written from right to left (like Hebrew or Arabic), and `ltr` for those written from left to right (like English and most other languages).
|
|
2146
2159
|
*
|
|
@@ -2169,6 +2182,7 @@ direction?: ConditionalValue<CssVars | CssProperties["direction"] | AnyString>
|
|
|
2169
2182
|
* @see https://developer.mozilla.org/docs/Web/CSS/display
|
|
2170
2183
|
*/
|
|
2171
2184
|
display?: ConditionalValue<CssVars | CssProperties["display"] | AnyString>
|
|
2185
|
+
dominantBaseline?: ConditionalValue<CssProperties["dominantBaseline"] | AnyString>
|
|
2172
2186
|
/**
|
|
2173
2187
|
* The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `<table>` cells that have no visible content.
|
|
2174
2188
|
*
|
|
@@ -2183,6 +2197,10 @@ display?: ConditionalValue<CssVars | CssProperties["display"] | AnyString>
|
|
|
2183
2197
|
* @see https://developer.mozilla.org/docs/Web/CSS/empty-cells
|
|
2184
2198
|
*/
|
|
2185
2199
|
emptyCells?: ConditionalValue<CssVars | CssProperties["emptyCells"] | AnyString>
|
|
2200
|
+
fieldSizing?: ConditionalValue<CssProperties["fieldSizing"] | AnyString>
|
|
2201
|
+
fill?: ConditionalValue<UtilityValues["fill"] | CssVars | CssProperties["fill"] | AnyString>
|
|
2202
|
+
fillOpacity?: ConditionalValue<CssProperties["fillOpacity"] | AnyString>
|
|
2203
|
+
fillRule?: ConditionalValue<CssProperties["fillRule"] | AnyString>
|
|
2186
2204
|
/**
|
|
2187
2205
|
* The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.
|
|
2188
2206
|
*
|
|
@@ -2313,6 +2331,8 @@ flexWrap?: ConditionalValue<CssVars | CssProperties["flexWrap"] | AnyString>
|
|
|
2313
2331
|
* @see https://developer.mozilla.org/docs/Web/CSS/float
|
|
2314
2332
|
*/
|
|
2315
2333
|
float?: ConditionalValue<UtilityValues["float"] | CssVars | AnyString>
|
|
2334
|
+
floodColor?: ConditionalValue<CssProperties["floodColor"] | AnyString>
|
|
2335
|
+
floodOpacity?: ConditionalValue<CssProperties["floodOpacity"] | AnyString>
|
|
2316
2336
|
/**
|
|
2317
2337
|
* The **`font`** CSS shorthand property sets all the different properties of an element's font. Alternatively, it sets an element's font to a system font.
|
|
2318
2338
|
*
|
|
@@ -2410,20 +2430,6 @@ fontOpticalSizing?: ConditionalValue<CssProperties["fontOpticalSizing"] | AnyStr
|
|
|
2410
2430
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-palette
|
|
2411
2431
|
*/
|
|
2412
2432
|
fontPalette?: ConditionalValue<CssProperties["fontPalette"] | AnyString>
|
|
2413
|
-
/**
|
|
2414
|
-
* The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values.
|
|
2415
|
-
*
|
|
2416
|
-
* **Syntax**: `normal | [ <string> <number> ]#`
|
|
2417
|
-
*
|
|
2418
|
-
* **Initial value**: `normal`
|
|
2419
|
-
*
|
|
2420
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
|
2421
|
-
* | :----: | :-----: | :----: | :----: | :-: |
|
|
2422
|
-
* | **62** | **62** | **11** | **17** | No |
|
|
2423
|
-
*
|
|
2424
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/font-variation-settings
|
|
2425
|
-
*/
|
|
2426
|
-
fontVariationSettings?: ConditionalValue<CssProperties["fontVariationSettings"] | AnyString>
|
|
2427
2433
|
/**
|
|
2428
2434
|
* The **`font-size`** CSS property sets the size of the font. Changing the font size also updates the sizes of the font size-relative `<length>` units, such as `em`, `ex`, and so forth.
|
|
2429
2435
|
*
|
|
@@ -2675,6 +2681,20 @@ fontVariantNumeric?: ConditionalValue<CssProperties["fontVariantNumeric"] | AnyS
|
|
|
2675
2681
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
|
|
2676
2682
|
*/
|
|
2677
2683
|
fontVariantPosition?: ConditionalValue<CssProperties["fontVariantPosition"] | AnyString>
|
|
2684
|
+
/**
|
|
2685
|
+
* The **`font-variation-settings`** CSS property provides low-level control over variable font characteristics, by specifying the four letter axis names of the characteristics you want to vary, along with their values.
|
|
2686
|
+
*
|
|
2687
|
+
* **Syntax**: `normal | [ <string> <number> ]#`
|
|
2688
|
+
*
|
|
2689
|
+
* **Initial value**: `normal`
|
|
2690
|
+
*
|
|
2691
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
|
2692
|
+
* | :----: | :-----: | :----: | :----: | :-: |
|
|
2693
|
+
* | **62** | **62** | **11** | **17** | No |
|
|
2694
|
+
*
|
|
2695
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/font-variation-settings
|
|
2696
|
+
*/
|
|
2697
|
+
fontVariationSettings?: ConditionalValue<CssProperties["fontVariationSettings"] | AnyString>
|
|
2678
2698
|
/**
|
|
2679
2699
|
* The **`font-weight`** CSS property sets the weight (or boldness) of the font. The weights available depend on the `font-family` that is currently set.
|
|
2680
2700
|
*
|
|
@@ -3053,12 +3073,6 @@ initialLetter?: ConditionalValue<CssProperties["initialLetter"] | AnyString>
|
|
|
3053
3073
|
* @see https://developer.mozilla.org/docs/Web/CSS/inline-size
|
|
3054
3074
|
*/
|
|
3055
3075
|
inlineSize?: ConditionalValue<UtilityValues["inlineSize"] | CssVars | CssProperties["inlineSize"] | AnyString>
|
|
3056
|
-
/**
|
|
3057
|
-
* **Syntax**: `auto | none`
|
|
3058
|
-
*
|
|
3059
|
-
* **Initial value**: `auto`
|
|
3060
|
-
*/
|
|
3061
|
-
inputSecurity?: ConditionalValue<CssProperties["inputSecurity"] | AnyString>
|
|
3062
3076
|
/**
|
|
3063
3077
|
* The **`inset`** CSS property is a shorthand that corresponds to the `top`, `right`, `bottom`, and/or `left` properties. It has the same multi-value syntax of the `margin` shorthand.
|
|
3064
3078
|
*
|
|
@@ -3151,6 +3165,7 @@ insetInlineEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | Cs
|
|
|
3151
3165
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
|
|
3152
3166
|
*/
|
|
3153
3167
|
insetInlineStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssVars | CssProperties["insetInlineStart"] | AnyString>
|
|
3168
|
+
interpolateSize?: ConditionalValue<CssProperties["interpolateSize"] | AnyString>
|
|
3154
3169
|
/**
|
|
3155
3170
|
* The **`isolation`** CSS property determines whether an element must create a new stacking context.
|
|
3156
3171
|
*
|
|
@@ -3250,6 +3265,7 @@ left?: ConditionalValue<UtilityValues["left"] | CssVars | CssProperties["left"]
|
|
|
3250
3265
|
* @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing
|
|
3251
3266
|
*/
|
|
3252
3267
|
letterSpacing?: ConditionalValue<UtilityValues["letterSpacing"] | CssVars | CssProperties["letterSpacing"] | AnyString>
|
|
3268
|
+
lightingColor?: ConditionalValue<CssProperties["lightingColor"] | AnyString>
|
|
3253
3269
|
/**
|
|
3254
3270
|
* The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
|
|
3255
3271
|
*
|
|
@@ -3517,6 +3533,10 @@ marginTop?: ConditionalValue<UtilityValues["marginTop"] | CssVars | CssPropertie
|
|
|
3517
3533
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-trim
|
|
3518
3534
|
*/
|
|
3519
3535
|
marginTrim?: ConditionalValue<CssProperties["marginTrim"] | AnyString>
|
|
3536
|
+
marker?: ConditionalValue<CssProperties["marker"] | AnyString>
|
|
3537
|
+
markerEnd?: ConditionalValue<CssProperties["markerEnd"] | AnyString>
|
|
3538
|
+
markerMid?: ConditionalValue<CssProperties["markerMid"] | AnyString>
|
|
3539
|
+
markerStart?: ConditionalValue<CssProperties["markerStart"] | AnyString>
|
|
3520
3540
|
/**
|
|
3521
3541
|
* The **`mask`** CSS shorthand property hides an element (partially or fully) by masking or clipping the image at specific points.
|
|
3522
3542
|
*
|
|
@@ -4679,6 +4699,12 @@ pointerEvents?: ConditionalValue<CssVars | CssProperties["pointerEvents"] | AnyS
|
|
|
4679
4699
|
* @see https://developer.mozilla.org/docs/Web/CSS/position
|
|
4680
4700
|
*/
|
|
4681
4701
|
position?: ConditionalValue<CssVars | CssProperties["position"] | AnyString>
|
|
4702
|
+
positionAnchor?: ConditionalValue<CssProperties["positionAnchor"] | AnyString>
|
|
4703
|
+
positionArea?: ConditionalValue<CssProperties["positionArea"] | AnyString>
|
|
4704
|
+
positionTry?: ConditionalValue<CssProperties["positionTry"] | AnyString>
|
|
4705
|
+
positionTryFallbacks?: ConditionalValue<CssProperties["positionTryFallbacks"] | AnyString>
|
|
4706
|
+
positionTryOrder?: ConditionalValue<CssProperties["positionTryOrder"] | AnyString>
|
|
4707
|
+
positionVisibility?: ConditionalValue<CssProperties["positionVisibility"] | AnyString>
|
|
4682
4708
|
/**
|
|
4683
4709
|
* The **`print-color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.
|
|
4684
4710
|
*
|
|
@@ -4708,6 +4734,7 @@ printColorAdjust?: ConditionalValue<CssProperties["printColorAdjust"] | AnyStrin
|
|
|
4708
4734
|
* @see https://developer.mozilla.org/docs/Web/CSS/quotes
|
|
4709
4735
|
*/
|
|
4710
4736
|
quotes?: ConditionalValue<CssProperties["quotes"] | AnyString>
|
|
4737
|
+
r?: ConditionalValue<CssProperties["r"] | AnyString>
|
|
4711
4738
|
/**
|
|
4712
4739
|
* The **`resize`** CSS property sets whether an element is resizable, and if so, in which directions.
|
|
4713
4740
|
*
|
|
@@ -4799,6 +4826,8 @@ rubyMerge?: ConditionalValue<CssProperties["rubyMerge"] | AnyString>
|
|
|
4799
4826
|
* @see https://developer.mozilla.org/docs/Web/CSS/ruby-position
|
|
4800
4827
|
*/
|
|
4801
4828
|
rubyPosition?: ConditionalValue<CssProperties["rubyPosition"] | AnyString>
|
|
4829
|
+
rx?: ConditionalValue<CssProperties["rx"] | AnyString>
|
|
4830
|
+
ry?: ConditionalValue<CssProperties["ry"] | AnyString>
|
|
4802
4831
|
/**
|
|
4803
4832
|
* The **`scale`** CSS property allows you to specify scale transforms individually and independently of the `transform` property. This maps better to typical user interface usage, and saves having to remember the exact order of transform functions to specify in the `transform` value.
|
|
4804
4833
|
*
|
|
@@ -4813,48 +4842,6 @@ rubyPosition?: ConditionalValue<CssProperties["rubyPosition"] | AnyString>
|
|
|
4813
4842
|
* @see https://developer.mozilla.org/docs/Web/CSS/scale
|
|
4814
4843
|
*/
|
|
4815
4844
|
scale?: ConditionalValue<UtilityValues["scale"] | CssVars | CssProperties["scale"] | AnyString>
|
|
4816
|
-
/**
|
|
4817
|
-
* The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.
|
|
4818
|
-
*
|
|
4819
|
-
* **Syntax**: `auto | <color>{2}`
|
|
4820
|
-
*
|
|
4821
|
-
* **Initial value**: `auto`
|
|
4822
|
-
*
|
|
4823
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
|
4824
|
-
* | :-----: | :-----: | :----: | :--: | :-: |
|
|
4825
|
-
* | **121** | **64** | No | n/a | No |
|
|
4826
|
-
*
|
|
4827
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-color
|
|
4828
|
-
*/
|
|
4829
|
-
scrollbarColor?: ConditionalValue<UtilityValues["scrollbarColor"] | CssVars | CssProperties["scrollbarColor"] | AnyString>
|
|
4830
|
-
/**
|
|
4831
|
-
* The **`scrollbar-gutter`** CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn't needed.
|
|
4832
|
-
*
|
|
4833
|
-
* **Syntax**: `auto | stable && both-edges?`
|
|
4834
|
-
*
|
|
4835
|
-
* **Initial value**: `auto`
|
|
4836
|
-
*
|
|
4837
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
|
4838
|
-
* | :----: | :-----: | :----: | :--: | :-: |
|
|
4839
|
-
* | **94** | **97** | No | n/a | No |
|
|
4840
|
-
*
|
|
4841
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter
|
|
4842
|
-
*/
|
|
4843
|
-
scrollbarGutter?: ConditionalValue<UtilityValues["scrollbarGutter"] | CssVars | CssProperties["scrollbarGutter"] | AnyString>
|
|
4844
|
-
/**
|
|
4845
|
-
* The **`scrollbar-width`** property allows the author to set the maximum thickness of an element's scrollbars when they are shown.
|
|
4846
|
-
*
|
|
4847
|
-
* **Syntax**: `auto | thin | none`
|
|
4848
|
-
*
|
|
4849
|
-
* **Initial value**: `auto`
|
|
4850
|
-
*
|
|
4851
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
|
4852
|
-
* | :-----: | :-----: | :----: | :--: | :-: |
|
|
4853
|
-
* | **121** | **64** | No | n/a | No |
|
|
4854
|
-
*
|
|
4855
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-width
|
|
4856
|
-
*/
|
|
4857
|
-
scrollbarWidth?: ConditionalValue<UtilityValues["scrollbarWidth"] | CssVars | CssProperties["scrollbarWidth"] | AnyString>
|
|
4858
4845
|
/**
|
|
4859
4846
|
* The **`scroll-behavior`** CSS property sets the behavior for a scrolling box when scrolling is triggered by the navigation or CSSOM scrolling APIs.
|
|
4860
4847
|
*
|
|
@@ -4895,7 +4882,7 @@ scrollMargin?: ConditionalValue<UtilityValues["scrollMargin"] | CssVars | CssPro
|
|
|
4895
4882
|
*/
|
|
4896
4883
|
scrollMarginBlock?: ConditionalValue<UtilityValues["scrollMarginBlock"] | CssVars | CssProperties["scrollMarginBlock"] | AnyString>
|
|
4897
4884
|
/**
|
|
4898
|
-
* The `scroll-margin-block-
|
|
4885
|
+
* The `scroll-margin-block-end` property defines the margin of the scroll snap area at the end of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
4899
4886
|
*
|
|
4900
4887
|
* **Syntax**: `<length>`
|
|
4901
4888
|
*
|
|
@@ -4905,11 +4892,11 @@ scrollMarginBlock?: ConditionalValue<UtilityValues["scrollMarginBlock"] | CssVar
|
|
|
4905
4892
|
* | :----: | :-----: | :----: | :--: | :-: |
|
|
4906
4893
|
* | **69** | **68** | **15** | n/a | No |
|
|
4907
4894
|
*
|
|
4908
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-
|
|
4895
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
|
|
4909
4896
|
*/
|
|
4910
|
-
|
|
4897
|
+
scrollMarginBlockEnd?: ConditionalValue<UtilityValues["scrollMarginBlockEnd"] | CssVars | CssProperties["scrollMarginBlockEnd"] | AnyString>
|
|
4911
4898
|
/**
|
|
4912
|
-
* The `scroll-margin-block-
|
|
4899
|
+
* The `scroll-margin-block-start` property defines the margin of the scroll snap area at the start of the block dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
4913
4900
|
*
|
|
4914
4901
|
* **Syntax**: `<length>`
|
|
4915
4902
|
*
|
|
@@ -4919,9 +4906,9 @@ scrollMarginBlockStart?: ConditionalValue<UtilityValues["scrollMarginBlockStart"
|
|
|
4919
4906
|
* | :----: | :-----: | :----: | :--: | :-: |
|
|
4920
4907
|
* | **69** | **68** | **15** | n/a | No |
|
|
4921
4908
|
*
|
|
4922
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-
|
|
4909
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
|
|
4923
4910
|
*/
|
|
4924
|
-
|
|
4911
|
+
scrollMarginBlockStart?: ConditionalValue<UtilityValues["scrollMarginBlockStart"] | CssVars | CssProperties["scrollMarginBlockStart"] | AnyString>
|
|
4925
4912
|
/**
|
|
4926
4913
|
* The `scroll-margin-bottom` property defines the bottom margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
4927
4914
|
*
|
|
@@ -4950,7 +4937,7 @@ scrollMarginBottom?: ConditionalValue<UtilityValues["scrollMarginBottom"] | CssV
|
|
|
4950
4937
|
*/
|
|
4951
4938
|
scrollMarginInline?: ConditionalValue<UtilityValues["scrollMarginInline"] | CssVars | CssProperties["scrollMarginInline"] | AnyString>
|
|
4952
4939
|
/**
|
|
4953
|
-
* The `scroll-margin-inline-
|
|
4940
|
+
* The `scroll-margin-inline-end` property defines the margin of the scroll snap area at the end of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
4954
4941
|
*
|
|
4955
4942
|
* **Syntax**: `<length>`
|
|
4956
4943
|
*
|
|
@@ -4960,11 +4947,11 @@ scrollMarginInline?: ConditionalValue<UtilityValues["scrollMarginInline"] | CssV
|
|
|
4960
4947
|
* | :----: | :-----: | :----: | :--: | :-: |
|
|
4961
4948
|
* | **69** | **68** | **15** | n/a | No |
|
|
4962
4949
|
*
|
|
4963
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-
|
|
4950
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
|
|
4964
4951
|
*/
|
|
4965
|
-
|
|
4952
|
+
scrollMarginInlineEnd?: ConditionalValue<UtilityValues["scrollMarginInlineEnd"] | CssVars | CssProperties["scrollMarginInlineEnd"] | AnyString>
|
|
4966
4953
|
/**
|
|
4967
|
-
* The `scroll-margin-inline-
|
|
4954
|
+
* The `scroll-margin-inline-start` property defines the margin of the scroll snap area at the start of the inline dimension that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
4968
4955
|
*
|
|
4969
4956
|
* **Syntax**: `<length>`
|
|
4970
4957
|
*
|
|
@@ -4974,9 +4961,9 @@ scrollMarginInlineStart?: ConditionalValue<UtilityValues["scrollMarginInlineStar
|
|
|
4974
4961
|
* | :----: | :-----: | :----: | :--: | :-: |
|
|
4975
4962
|
* | **69** | **68** | **15** | n/a | No |
|
|
4976
4963
|
*
|
|
4977
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-
|
|
4964
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
|
|
4978
4965
|
*/
|
|
4979
|
-
|
|
4966
|
+
scrollMarginInlineStart?: ConditionalValue<UtilityValues["scrollMarginInlineStart"] | CssVars | CssProperties["scrollMarginInlineStart"] | AnyString>
|
|
4980
4967
|
/**
|
|
4981
4968
|
* The `scroll-margin-left` property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
|
|
4982
4969
|
*
|
|
@@ -5047,7 +5034,7 @@ scrollPadding?: ConditionalValue<UtilityValues["scrollPadding"] | CssVars | CssP
|
|
|
5047
5034
|
*/
|
|
5048
5035
|
scrollPaddingBlock?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssVars | CssProperties["scrollPaddingBlock"] | AnyString>
|
|
5049
5036
|
/**
|
|
5050
|
-
* The `scroll-padding-block-
|
|
5037
|
+
* The `scroll-padding-block-end` property defines offsets for the end edge in the block dimension of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
5051
5038
|
*
|
|
5052
5039
|
* **Syntax**: `auto | <length-percentage>`
|
|
5053
5040
|
*
|
|
@@ -5057,11 +5044,11 @@ scrollPaddingBlock?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssV
|
|
|
5057
5044
|
* | :----: | :-----: | :----: | :--: | :-: |
|
|
5058
5045
|
* | **69** | **68** | **15** | n/a | No |
|
|
5059
5046
|
*
|
|
5060
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-
|
|
5047
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
|
|
5061
5048
|
*/
|
|
5062
|
-
|
|
5049
|
+
scrollPaddingBlockEnd?: ConditionalValue<UtilityValues["scrollPaddingBlockEnd"] | CssVars | CssProperties["scrollPaddingBlockEnd"] | AnyString>
|
|
5063
5050
|
/**
|
|
5064
|
-
* The `scroll-padding-block-
|
|
5051
|
+
* The `scroll-padding-block-start` property defines offsets for the start edge in the block dimension of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
5065
5052
|
*
|
|
5066
5053
|
* **Syntax**: `auto | <length-percentage>`
|
|
5067
5054
|
*
|
|
@@ -5071,9 +5058,9 @@ scrollPaddingBlockStart?: ConditionalValue<UtilityValues["scrollPaddingBlockStar
|
|
|
5071
5058
|
* | :----: | :-----: | :----: | :--: | :-: |
|
|
5072
5059
|
* | **69** | **68** | **15** | n/a | No |
|
|
5073
5060
|
*
|
|
5074
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-
|
|
5061
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
|
|
5075
5062
|
*/
|
|
5076
|
-
|
|
5063
|
+
scrollPaddingBlockStart?: ConditionalValue<UtilityValues["scrollPaddingBlockStart"] | CssVars | CssProperties["scrollPaddingBlockStart"] | AnyString>
|
|
5077
5064
|
/**
|
|
5078
5065
|
* The `scroll-padding-bottom` property defines offsets for the bottom of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
5079
5066
|
*
|
|
@@ -5101,7 +5088,7 @@ scrollPaddingBottom?: ConditionalValue<UtilityValues["scrollPaddingBottom"] | Cs
|
|
|
5101
5088
|
*/
|
|
5102
5089
|
scrollPaddingInline?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssVars | CssProperties["scrollPaddingInline"] | AnyString>
|
|
5103
5090
|
/**
|
|
5104
|
-
* The `scroll-padding-inline-
|
|
5091
|
+
* The `scroll-padding-inline-end` property defines offsets for the end edge in the inline dimension of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
5105
5092
|
*
|
|
5106
5093
|
* **Syntax**: `auto | <length-percentage>`
|
|
5107
5094
|
*
|
|
@@ -5111,11 +5098,11 @@ scrollPaddingInline?: ConditionalValue<UtilityValues["scrollPaddingInline"] | Cs
|
|
|
5111
5098
|
* | :----: | :-----: | :----: | :--: | :-: |
|
|
5112
5099
|
* | **69** | **68** | **15** | n/a | No |
|
|
5113
5100
|
*
|
|
5114
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-
|
|
5101
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
|
|
5115
5102
|
*/
|
|
5116
|
-
|
|
5103
|
+
scrollPaddingInlineEnd?: ConditionalValue<UtilityValues["scrollPaddingInlineEnd"] | CssVars | CssProperties["scrollPaddingInlineEnd"] | AnyString>
|
|
5117
5104
|
/**
|
|
5118
|
-
* The `scroll-padding-inline-
|
|
5105
|
+
* The `scroll-padding-inline-start` property defines offsets for the start edge in the inline dimension of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
5119
5106
|
*
|
|
5120
5107
|
* **Syntax**: `auto | <length-percentage>`
|
|
5121
5108
|
*
|
|
@@ -5125,9 +5112,9 @@ scrollPaddingInlineStart?: ConditionalValue<UtilityValues["scrollPaddingInlineSt
|
|
|
5125
5112
|
* | :----: | :-----: | :----: | :--: | :-: |
|
|
5126
5113
|
* | **69** | **68** | **15** | n/a | No |
|
|
5127
5114
|
*
|
|
5128
|
-
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-
|
|
5115
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
|
|
5129
5116
|
*/
|
|
5130
|
-
|
|
5117
|
+
scrollPaddingInlineStart?: ConditionalValue<UtilityValues["scrollPaddingInlineStart"] | CssVars | CssProperties["scrollPaddingInlineStart"] | AnyString>
|
|
5131
5118
|
/**
|
|
5132
5119
|
* The `scroll-padding-left` property defines offsets for the left of the _optimal viewing region_ of the scrollport: the region used as the target region for placing things in view of the user. This allows the author to exclude regions of the scrollport that are obscured by other content (such as fixed-positioned toolbars or sidebars) or to put more breathing room between a targeted element and the edges of the scrollport.
|
|
5133
5120
|
*
|
|
@@ -5259,6 +5246,48 @@ scrollTimelineAxis?: ConditionalValue<CssProperties["scrollTimelineAxis"] | AnyS
|
|
|
5259
5246
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-timeline-name
|
|
5260
5247
|
*/
|
|
5261
5248
|
scrollTimelineName?: ConditionalValue<CssProperties["scrollTimelineName"] | AnyString>
|
|
5249
|
+
/**
|
|
5250
|
+
* The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.
|
|
5251
|
+
*
|
|
5252
|
+
* **Syntax**: `auto | <color>{2}`
|
|
5253
|
+
*
|
|
5254
|
+
* **Initial value**: `auto`
|
|
5255
|
+
*
|
|
5256
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
|
5257
|
+
* | :-----: | :-----: | :----: | :--: | :-: |
|
|
5258
|
+
* | **121** | **64** | No | n/a | No |
|
|
5259
|
+
*
|
|
5260
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-color
|
|
5261
|
+
*/
|
|
5262
|
+
scrollbarColor?: ConditionalValue<UtilityValues["scrollbarColor"] | CssVars | CssProperties["scrollbarColor"] | AnyString>
|
|
5263
|
+
/**
|
|
5264
|
+
* The **`scrollbar-gutter`** CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn't needed.
|
|
5265
|
+
*
|
|
5266
|
+
* **Syntax**: `auto | stable && both-edges?`
|
|
5267
|
+
*
|
|
5268
|
+
* **Initial value**: `auto`
|
|
5269
|
+
*
|
|
5270
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
|
5271
|
+
* | :----: | :-----: | :----: | :--: | :-: |
|
|
5272
|
+
* | **94** | **97** | No | n/a | No |
|
|
5273
|
+
*
|
|
5274
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter
|
|
5275
|
+
*/
|
|
5276
|
+
scrollbarGutter?: ConditionalValue<CssProperties["scrollbarGutter"] | AnyString>
|
|
5277
|
+
/**
|
|
5278
|
+
* The **`scrollbar-width`** property allows the author to set the maximum thickness of an element's scrollbars when they are shown.
|
|
5279
|
+
*
|
|
5280
|
+
* **Syntax**: `auto | thin | none`
|
|
5281
|
+
*
|
|
5282
|
+
* **Initial value**: `auto`
|
|
5283
|
+
*
|
|
5284
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
|
5285
|
+
* | :-----: | :-----: | :----: | :--: | :-: |
|
|
5286
|
+
* | **121** | **64** | No | n/a | No |
|
|
5287
|
+
*
|
|
5288
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/scrollbar-width
|
|
5289
|
+
*/
|
|
5290
|
+
scrollbarWidth?: ConditionalValue<UtilityValues["scrollbarWidth"] | CssVars | CssProperties["scrollbarWidth"] | AnyString>
|
|
5262
5291
|
/**
|
|
5263
5292
|
* The **`shape-image-threshold`** CSS property sets the alpha channel threshold used to extract the shape using an image as the value for `shape-outside`.
|
|
5264
5293
|
*
|
|
@@ -5301,6 +5330,17 @@ shapeMargin?: ConditionalValue<CssProperties["shapeMargin"] | AnyString>
|
|
|
5301
5330
|
* @see https://developer.mozilla.org/docs/Web/CSS/shape-outside
|
|
5302
5331
|
*/
|
|
5303
5332
|
shapeOutside?: ConditionalValue<CssProperties["shapeOutside"] | AnyString>
|
|
5333
|
+
shapeRendering?: ConditionalValue<CssProperties["shapeRendering"] | AnyString>
|
|
5334
|
+
stopColor?: ConditionalValue<CssProperties["stopColor"] | AnyString>
|
|
5335
|
+
stopOpacity?: ConditionalValue<CssProperties["stopOpacity"] | AnyString>
|
|
5336
|
+
stroke?: ConditionalValue<UtilityValues["stroke"] | CssVars | CssProperties["stroke"] | AnyString>
|
|
5337
|
+
strokeDasharray?: ConditionalValue<CssProperties["strokeDasharray"] | AnyString>
|
|
5338
|
+
strokeDashoffset?: ConditionalValue<CssProperties["strokeDashoffset"] | AnyString>
|
|
5339
|
+
strokeLinecap?: ConditionalValue<CssProperties["strokeLinecap"] | AnyString>
|
|
5340
|
+
strokeLinejoin?: ConditionalValue<CssProperties["strokeLinejoin"] | AnyString>
|
|
5341
|
+
strokeMiterlimit?: ConditionalValue<CssProperties["strokeMiterlimit"] | AnyString>
|
|
5342
|
+
strokeOpacity?: ConditionalValue<CssProperties["strokeOpacity"] | AnyString>
|
|
5343
|
+
strokeWidth?: ConditionalValue<UtilityValues["strokeWidth"] | CssVars | CssProperties["strokeWidth"] | AnyString>
|
|
5304
5344
|
/**
|
|
5305
5345
|
* The **`tab-size`** CSS property is used to customize the width of tab characters (U+0009).
|
|
5306
5346
|
*
|
|
@@ -5358,6 +5398,10 @@ textAlign?: ConditionalValue<CssProperties["textAlign"] | AnyString>
|
|
|
5358
5398
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-align-last
|
|
5359
5399
|
*/
|
|
5360
5400
|
textAlignLast?: ConditionalValue<CssProperties["textAlignLast"] | AnyString>
|
|
5401
|
+
textAnchor?: ConditionalValue<CssProperties["textAnchor"] | AnyString>
|
|
5402
|
+
textBox?: ConditionalValue<CssProperties["textBox"] | AnyString>
|
|
5403
|
+
textBoxEdge?: ConditionalValue<CssProperties["textBoxEdge"] | AnyString>
|
|
5404
|
+
textBoxTrim?: ConditionalValue<CssProperties["textBoxTrim"] | AnyString>
|
|
5361
5405
|
/**
|
|
5362
5406
|
* The **`text-combine-upright`** CSS property sets the combination of characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.
|
|
5363
5407
|
*
|
|
@@ -5630,6 +5674,7 @@ textShadow?: ConditionalValue<UtilityValues["textShadow"] | CssVars | CssPropert
|
|
|
5630
5674
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-size-adjust
|
|
5631
5675
|
*/
|
|
5632
5676
|
textSizeAdjust?: ConditionalValue<CssProperties["textSizeAdjust"] | AnyString>
|
|
5677
|
+
textSpacingTrim?: ConditionalValue<CssProperties["textSpacingTrim"] | AnyString>
|
|
5633
5678
|
/**
|
|
5634
5679
|
* The **`text-transform`** CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It also can help improve legibility for ruby.
|
|
5635
5680
|
*
|
|
@@ -5687,6 +5732,8 @@ textUnderlinePosition?: ConditionalValue<CssProperties["textUnderlinePosition"]
|
|
|
5687
5732
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-wrap
|
|
5688
5733
|
*/
|
|
5689
5734
|
textWrap?: ConditionalValue<UtilityValues["textWrap"] | CssVars | CssProperties["textWrap"] | AnyString>
|
|
5735
|
+
textWrapMode?: ConditionalValue<CssProperties["textWrapMode"] | AnyString>
|
|
5736
|
+
textWrapStyle?: ConditionalValue<CssProperties["textWrapStyle"] | AnyString>
|
|
5690
5737
|
/**
|
|
5691
5738
|
* The **`timeline-scope`** CSS property modifies the scope of a named animation timeline.
|
|
5692
5739
|
*
|
|
@@ -5919,6 +5966,7 @@ unicodeBidi?: ConditionalValue<CssProperties["unicodeBidi"] | AnyString>
|
|
|
5919
5966
|
* @see https://developer.mozilla.org/docs/Web/CSS/user-select
|
|
5920
5967
|
*/
|
|
5921
5968
|
userSelect?: ConditionalValue<CssVars | CssProperties["userSelect"] | AnyString>
|
|
5969
|
+
vectorEffect?: ConditionalValue<CssProperties["vectorEffect"] | AnyString>
|
|
5922
5970
|
/**
|
|
5923
5971
|
* The **`vertical-align`** CSS property sets vertical alignment of an inline, inline-block or table-cell box.
|
|
5924
5972
|
*
|
|
@@ -6140,6 +6188,8 @@ wordWrap?: ConditionalValue<CssProperties["wordWrap"] | AnyString>
|
|
|
6140
6188
|
* @see https://developer.mozilla.org/docs/Web/CSS/writing-mode
|
|
6141
6189
|
*/
|
|
6142
6190
|
writingMode?: ConditionalValue<CssVars | CssProperties["writingMode"] | AnyString>
|
|
6191
|
+
x?: ConditionalValue<UtilityValues["translateX"] | CssVars | AnyString>
|
|
6192
|
+
y?: ConditionalValue<UtilityValues["translateY"] | CssVars | AnyString>
|
|
6143
6193
|
/**
|
|
6144
6194
|
* The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one.
|
|
6145
6195
|
*
|
|
@@ -6170,34 +6220,9 @@ zIndex?: ConditionalValue<UtilityValues["zIndex"] | CssVars | CssProperties["zIn
|
|
|
6170
6220
|
zoom?: ConditionalValue<CssProperties["zoom"] | AnyString>
|
|
6171
6221
|
alignmentBaseline?: ConditionalValue<CssProperties["alignmentBaseline"] | AnyString>
|
|
6172
6222
|
baselineShift?: ConditionalValue<CssProperties["baselineShift"] | AnyString>
|
|
6173
|
-
clipRule?: ConditionalValue<CssProperties["clipRule"] | AnyString>
|
|
6174
6223
|
colorInterpolation?: ConditionalValue<CssProperties["colorInterpolation"] | AnyString>
|
|
6175
6224
|
colorRendering?: ConditionalValue<CssProperties["colorRendering"] | AnyString>
|
|
6176
|
-
dominantBaseline?: ConditionalValue<CssProperties["dominantBaseline"] | AnyString>
|
|
6177
|
-
fill?: ConditionalValue<UtilityValues["fill"] | CssVars | CssProperties["fill"] | AnyString>
|
|
6178
|
-
fillOpacity?: ConditionalValue<CssProperties["fillOpacity"] | AnyString>
|
|
6179
|
-
fillRule?: ConditionalValue<CssProperties["fillRule"] | AnyString>
|
|
6180
|
-
floodColor?: ConditionalValue<CssProperties["floodColor"] | AnyString>
|
|
6181
|
-
floodOpacity?: ConditionalValue<CssProperties["floodOpacity"] | AnyString>
|
|
6182
6225
|
glyphOrientationVertical?: ConditionalValue<CssProperties["glyphOrientationVertical"] | AnyString>
|
|
6183
|
-
lightingColor?: ConditionalValue<CssProperties["lightingColor"] | AnyString>
|
|
6184
|
-
marker?: ConditionalValue<CssProperties["marker"] | AnyString>
|
|
6185
|
-
markerEnd?: ConditionalValue<CssProperties["markerEnd"] | AnyString>
|
|
6186
|
-
markerMid?: ConditionalValue<CssProperties["markerMid"] | AnyString>
|
|
6187
|
-
markerStart?: ConditionalValue<CssProperties["markerStart"] | AnyString>
|
|
6188
|
-
shapeRendering?: ConditionalValue<CssProperties["shapeRendering"] | AnyString>
|
|
6189
|
-
stopColor?: ConditionalValue<CssProperties["stopColor"] | AnyString>
|
|
6190
|
-
stopOpacity?: ConditionalValue<CssProperties["stopOpacity"] | AnyString>
|
|
6191
|
-
stroke?: ConditionalValue<UtilityValues["stroke"] | CssVars | CssProperties["stroke"] | AnyString>
|
|
6192
|
-
strokeDasharray?: ConditionalValue<CssProperties["strokeDasharray"] | AnyString>
|
|
6193
|
-
strokeDashoffset?: ConditionalValue<CssProperties["strokeDashoffset"] | AnyString>
|
|
6194
|
-
strokeLinecap?: ConditionalValue<CssProperties["strokeLinecap"] | AnyString>
|
|
6195
|
-
strokeLinejoin?: ConditionalValue<CssProperties["strokeLinejoin"] | AnyString>
|
|
6196
|
-
strokeMiterlimit?: ConditionalValue<CssProperties["strokeMiterlimit"] | AnyString>
|
|
6197
|
-
strokeOpacity?: ConditionalValue<CssProperties["strokeOpacity"] | AnyString>
|
|
6198
|
-
strokeWidth?: ConditionalValue<UtilityValues["strokeWidth"] | CssVars | CssProperties["strokeWidth"] | AnyString>
|
|
6199
|
-
textAnchor?: ConditionalValue<CssProperties["textAnchor"] | AnyString>
|
|
6200
|
-
vectorEffect?: ConditionalValue<CssProperties["vectorEffect"] | AnyString>
|
|
6201
6226
|
/**
|
|
6202
6227
|
* The **`position`** CSS property sets how an element is positioned in a document. The `top`, `right`, `bottom`, and `left` properties determine the final location of positioned elements.
|
|
6203
6228
|
*
|
|
@@ -7281,8 +7306,6 @@ borderEndColor?: ConditionalValue<UtilityValues["borderInlineEndColor"] | CssVar
|
|
|
7281
7306
|
*/
|
|
7282
7307
|
shadow?: ConditionalValue<UtilityValues["boxShadow"] | CssVars | CssProperties["boxShadow"] | AnyString>
|
|
7283
7308
|
shadowColor?: ConditionalValue<UtilityValues["boxShadowColor"] | CssVars | AnyString>
|
|
7284
|
-
x?: ConditionalValue<UtilityValues["translateX"] | CssVars | AnyString>
|
|
7285
|
-
y?: ConditionalValue<UtilityValues["translateY"] | CssVars | AnyString>
|
|
7286
7309
|
z?: ConditionalValue<UtilityValues["translateZ"] | CssVars | AnyString>
|
|
7287
7310
|
/**
|
|
7288
7311
|
* The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.
|