@pandacss/studio 0.36.1 → 0.37.0
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/package.json +7 -7
- package/panda.config.ts +5 -7
- package/styled-system/css/conditions.mjs +1 -1
- package/styled-system/css/css.mjs +1 -1
- package/styled-system/jsx/is-valid-prop.mjs +1 -1
- package/styled-system/styles.css +81 -86
- package/styled-system/types/conditions.d.ts +4 -2
- package/styled-system/types/prop-type.d.ts +11 -4
- package/styled-system/types/style-props.d.ts +276 -266
|
@@ -239,7 +239,7 @@ WebkitUserModify?: ConditionalValue<CssProperties["WebkitUserModify"] | AnyStrin
|
|
|
239
239
|
*
|
|
240
240
|
* @see https://developer.mozilla.org/docs/Web/CSS/accent-color
|
|
241
241
|
*/
|
|
242
|
-
accentColor?: ConditionalValue<UtilityValues["accentColor"] | CssProperties["accentColor"] | AnyString>
|
|
242
|
+
accentColor?: ConditionalValue<UtilityValues["accentColor"] | CssVars | CssProperties["accentColor"] | AnyString>
|
|
243
243
|
/**
|
|
244
244
|
* The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.
|
|
245
245
|
*
|
|
@@ -325,7 +325,7 @@ all?: ConditionalValue<CssVars | CssProperties["all"] | AnyString>
|
|
|
325
325
|
*
|
|
326
326
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation
|
|
327
327
|
*/
|
|
328
|
-
animation?: ConditionalValue<UtilityValues["animation"] | CssProperties["animation"] | AnyString>
|
|
328
|
+
animation?: ConditionalValue<UtilityValues["animation"] | CssVars | CssProperties["animation"] | AnyString>
|
|
329
329
|
/**
|
|
330
330
|
* The **`animation-composition`** CSS property specifies the composite operation to use when multiple animations affect the same property simultaneously.
|
|
331
331
|
*
|
|
@@ -354,7 +354,7 @@ animationComposition?: ConditionalValue<CssVars | CssProperties["animationCompos
|
|
|
354
354
|
*
|
|
355
355
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-delay
|
|
356
356
|
*/
|
|
357
|
-
animationDelay?: ConditionalValue<UtilityValues["animationDelay"] | CssProperties["animationDelay"] | AnyString>
|
|
357
|
+
animationDelay?: ConditionalValue<UtilityValues["animationDelay"] | CssVars | CssProperties["animationDelay"] | AnyString>
|
|
358
358
|
/**
|
|
359
359
|
* The **`animation-direction`** CSS property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.
|
|
360
360
|
*
|
|
@@ -384,7 +384,7 @@ animationDirection?: ConditionalValue<CssVars | CssProperties["animationDirectio
|
|
|
384
384
|
*
|
|
385
385
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-duration
|
|
386
386
|
*/
|
|
387
|
-
animationDuration?: ConditionalValue<CssProperties["animationDuration"] | AnyString>
|
|
387
|
+
animationDuration?: ConditionalValue<UtilityValues["animationDuration"] | CssVars | CssProperties["animationDuration"] | AnyString>
|
|
388
388
|
/**
|
|
389
389
|
* The **`animation-fill-mode`** CSS property sets how a CSS animation applies styles to its target before and after its execution.
|
|
390
390
|
*
|
|
@@ -499,7 +499,7 @@ animationRangeStart?: ConditionalValue<CssProperties["animationRangeStart"] | An
|
|
|
499
499
|
*
|
|
500
500
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-timing-function
|
|
501
501
|
*/
|
|
502
|
-
animationTimingFunction?: ConditionalValue<CssProperties["animationTimingFunction"] | AnyString>
|
|
502
|
+
animationTimingFunction?: ConditionalValue<UtilityValues["animationTimingFunction"] | CssVars | CssProperties["animationTimingFunction"] | AnyString>
|
|
503
503
|
/**
|
|
504
504
|
* The **`animation-timeline`** CSS property specifies the timeline that is used to control the progress of an animation.
|
|
505
505
|
*
|
|
@@ -542,7 +542,7 @@ appearance?: ConditionalValue<CssVars | CssProperties["appearance"] | AnyString>
|
|
|
542
542
|
*
|
|
543
543
|
* @see https://developer.mozilla.org/docs/Web/CSS/aspect-ratio
|
|
544
544
|
*/
|
|
545
|
-
aspectRatio?: ConditionalValue<UtilityValues["aspectRatio"] | CssProperties["aspectRatio"] | AnyString>
|
|
545
|
+
aspectRatio?: ConditionalValue<UtilityValues["aspectRatio"] | CssVars | CssProperties["aspectRatio"] | AnyString>
|
|
546
546
|
azimuth?: ConditionalValue<CssProperties["azimuth"] | AnyString>
|
|
547
547
|
/**
|
|
548
548
|
* 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.
|
|
@@ -557,7 +557,7 @@ aspectRatio?: ConditionalValue<UtilityValues["aspectRatio"] | CssProperties["asp
|
|
|
557
557
|
*
|
|
558
558
|
* @see https://developer.mozilla.org/docs/Web/CSS/backdrop-filter
|
|
559
559
|
*/
|
|
560
|
-
backdropFilter?: ConditionalValue<UtilityValues["backdropFilter"] | CssProperties["backdropFilter"] | AnyString>
|
|
560
|
+
backdropFilter?: ConditionalValue<UtilityValues["backdropFilter"] | CssVars | CssProperties["backdropFilter"] | AnyString>
|
|
561
561
|
/**
|
|
562
562
|
* The **`backface-visibility`** CSS property sets whether the back face of an element is visible when turned towards the user.
|
|
563
563
|
*
|
|
@@ -584,7 +584,7 @@ backfaceVisibility?: ConditionalValue<CssVars | CssProperties["backfaceVisibilit
|
|
|
584
584
|
*
|
|
585
585
|
* @see https://developer.mozilla.org/docs/Web/CSS/background
|
|
586
586
|
*/
|
|
587
|
-
background?: ConditionalValue<UtilityValues["background"] | CssProperties["background"] | AnyString>
|
|
587
|
+
background?: ConditionalValue<UtilityValues["background"] | CssVars | CssProperties["background"] | AnyString>
|
|
588
588
|
/**
|
|
589
589
|
* The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block.
|
|
590
590
|
*
|
|
@@ -641,7 +641,7 @@ backgroundClip?: ConditionalValue<CssVars | CssProperties["backgroundClip"] | An
|
|
|
641
641
|
*
|
|
642
642
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-color
|
|
643
643
|
*/
|
|
644
|
-
backgroundColor?: ConditionalValue<UtilityValues["backgroundColor"] | CssProperties["backgroundColor"] | AnyString>
|
|
644
|
+
backgroundColor?: ConditionalValue<UtilityValues["backgroundColor"] | CssVars | CssProperties["backgroundColor"] | AnyString>
|
|
645
645
|
/**
|
|
646
646
|
* The **`background-image`** CSS property sets one or more background images on an element.
|
|
647
647
|
*
|
|
@@ -655,7 +655,7 @@ backgroundColor?: ConditionalValue<UtilityValues["backgroundColor"] | CssPropert
|
|
|
655
655
|
*
|
|
656
656
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-image
|
|
657
657
|
*/
|
|
658
|
-
backgroundImage?: ConditionalValue<UtilityValues["backgroundImage"] | CssProperties["backgroundImage"] | AnyString>
|
|
658
|
+
backgroundImage?: ConditionalValue<UtilityValues["backgroundImage"] | CssVars | CssProperties["backgroundImage"] | AnyString>
|
|
659
659
|
/**
|
|
660
660
|
* The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
|
|
661
661
|
*
|
|
@@ -754,7 +754,7 @@ backgroundSize?: ConditionalValue<CssProperties["backgroundSize"] | AnyString>
|
|
|
754
754
|
*
|
|
755
755
|
* @see https://developer.mozilla.org/docs/Web/CSS/block-size
|
|
756
756
|
*/
|
|
757
|
-
blockSize?: ConditionalValue<UtilityValues["blockSize"] | CssProperties["blockSize"] | AnyString>
|
|
757
|
+
blockSize?: ConditionalValue<UtilityValues["blockSize"] | CssVars | CssProperties["blockSize"] | AnyString>
|
|
758
758
|
/**
|
|
759
759
|
* The **`border`** shorthand CSS property sets an element's border. It sets the values of `border-width`, `border-style`, and `border-color`.
|
|
760
760
|
*
|
|
@@ -766,7 +766,7 @@ blockSize?: ConditionalValue<UtilityValues["blockSize"] | CssProperties["blockSi
|
|
|
766
766
|
*
|
|
767
767
|
* @see https://developer.mozilla.org/docs/Web/CSS/border
|
|
768
768
|
*/
|
|
769
|
-
border?: ConditionalValue<UtilityValues["border"] | CssProperties["border"] | AnyString>
|
|
769
|
+
border?: ConditionalValue<UtilityValues["border"] | CssVars | CssProperties["border"] | AnyString>
|
|
770
770
|
/**
|
|
771
771
|
* The **`border-block`** CSS property is a shorthand property for setting the individual logical block border property values in a single place in the style sheet.
|
|
772
772
|
*
|
|
@@ -778,7 +778,7 @@ border?: ConditionalValue<UtilityValues["border"] | CssProperties["border"] | An
|
|
|
778
778
|
*
|
|
779
779
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block
|
|
780
780
|
*/
|
|
781
|
-
borderBlock?: ConditionalValue<UtilityValues["borderBlock"] | CssProperties["borderBlock"] | AnyString>
|
|
781
|
+
borderBlock?: ConditionalValue<UtilityValues["borderBlock"] | CssVars | CssProperties["borderBlock"] | AnyString>
|
|
782
782
|
/**
|
|
783
783
|
* The **`border-block-color`** CSS property defines the color of the logical block 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`.
|
|
784
784
|
*
|
|
@@ -792,7 +792,7 @@ borderBlock?: ConditionalValue<UtilityValues["borderBlock"] | CssProperties["bor
|
|
|
792
792
|
*
|
|
793
793
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
|
|
794
794
|
*/
|
|
795
|
-
borderBlockColor?: ConditionalValue<UtilityValues["borderBlockColor"] | CssProperties["borderBlockColor"] | AnyString>
|
|
795
|
+
borderBlockColor?: ConditionalValue<UtilityValues["borderBlockColor"] | CssVars | CssProperties["borderBlockColor"] | AnyString>
|
|
796
796
|
/**
|
|
797
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
798
|
*
|
|
@@ -832,7 +832,7 @@ borderBlockWidth?: ConditionalValue<CssProperties["borderBlockWidth"] | AnyStrin
|
|
|
832
832
|
*
|
|
833
833
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-end
|
|
834
834
|
*/
|
|
835
|
-
borderBlockEnd?: ConditionalValue<UtilityValues["borderBlockEnd"] | CssProperties["borderBlockEnd"] | AnyString>
|
|
835
|
+
borderBlockEnd?: ConditionalValue<UtilityValues["borderBlockEnd"] | CssVars | CssProperties["borderBlockEnd"] | AnyString>
|
|
836
836
|
/**
|
|
837
837
|
* The **`border-block-end-color`** CSS property defines the color of the logical block-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`.
|
|
838
838
|
*
|
|
@@ -846,7 +846,7 @@ borderBlockEnd?: ConditionalValue<UtilityValues["borderBlockEnd"] | CssPropertie
|
|
|
846
846
|
*
|
|
847
847
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-color
|
|
848
848
|
*/
|
|
849
|
-
borderBlockEndColor?: ConditionalValue<UtilityValues["borderBlockEndColor"] | CssProperties["borderBlockEndColor"] | AnyString>
|
|
849
|
+
borderBlockEndColor?: ConditionalValue<UtilityValues["borderBlockEndColor"] | CssVars | CssProperties["borderBlockEndColor"] | AnyString>
|
|
850
850
|
/**
|
|
851
851
|
* The **`border-block-end-style`** CSS property defines the style of the logical block-end border 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`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
852
852
|
*
|
|
@@ -886,7 +886,7 @@ borderBlockEndWidth?: ConditionalValue<CssProperties["borderBlockEndWidth"] | An
|
|
|
886
886
|
*
|
|
887
887
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-start
|
|
888
888
|
*/
|
|
889
|
-
borderBlockStart?: ConditionalValue<UtilityValues["borderBlockStart"] | CssProperties["borderBlockStart"] | AnyString>
|
|
889
|
+
borderBlockStart?: ConditionalValue<UtilityValues["borderBlockStart"] | CssVars | CssProperties["borderBlockStart"] | AnyString>
|
|
890
890
|
/**
|
|
891
891
|
* The **`border-block-start-color`** CSS property defines the color of the logical block-start 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`.
|
|
892
892
|
*
|
|
@@ -900,7 +900,7 @@ borderBlockStart?: ConditionalValue<UtilityValues["borderBlockStart"] | CssPrope
|
|
|
900
900
|
*
|
|
901
901
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-color
|
|
902
902
|
*/
|
|
903
|
-
borderBlockStartColor?: ConditionalValue<UtilityValues["borderBlockStartColor"] | CssProperties["borderBlockStartColor"] | AnyString>
|
|
903
|
+
borderBlockStartColor?: ConditionalValue<UtilityValues["borderBlockStartColor"] | CssVars | CssProperties["borderBlockStartColor"] | AnyString>
|
|
904
904
|
/**
|
|
905
905
|
* The **`border-block-start-style`** CSS property defines the style of the logical block start border 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`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
906
906
|
*
|
|
@@ -940,7 +940,7 @@ borderBlockStartWidth?: ConditionalValue<CssProperties["borderBlockStartWidth"]
|
|
|
940
940
|
*
|
|
941
941
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-bottom
|
|
942
942
|
*/
|
|
943
|
-
borderBottom?: ConditionalValue<UtilityValues["borderBottom"] | CssProperties["borderBottom"] | AnyString>
|
|
943
|
+
borderBottom?: ConditionalValue<UtilityValues["borderBottom"] | CssVars | CssProperties["borderBottom"] | AnyString>
|
|
944
944
|
/**
|
|
945
945
|
* The **`border-bottom-color`** CSS property sets the color of an element's bottom border. It can also be set with the shorthand CSS properties `border-color` or `border-bottom`.
|
|
946
946
|
*
|
|
@@ -954,7 +954,7 @@ borderBottom?: ConditionalValue<UtilityValues["borderBottom"] | CssProperties["b
|
|
|
954
954
|
*
|
|
955
955
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-color
|
|
956
956
|
*/
|
|
957
|
-
borderBottomColor?: ConditionalValue<UtilityValues["borderBottomColor"] | CssProperties["borderBottomColor"] | AnyString>
|
|
957
|
+
borderBottomColor?: ConditionalValue<UtilityValues["borderBottomColor"] | CssVars | CssProperties["borderBottomColor"] | AnyString>
|
|
958
958
|
/**
|
|
959
959
|
* The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
|
|
960
960
|
*
|
|
@@ -969,7 +969,7 @@ borderBottomColor?: ConditionalValue<UtilityValues["borderBottomColor"] | CssPro
|
|
|
969
969
|
*
|
|
970
970
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius
|
|
971
971
|
*/
|
|
972
|
-
borderBottomLeftRadius?: ConditionalValue<UtilityValues["borderBottomLeftRadius"] | CssProperties["borderBottomLeftRadius"] | AnyString>
|
|
972
|
+
borderBottomLeftRadius?: ConditionalValue<UtilityValues["borderBottomLeftRadius"] | CssVars | CssProperties["borderBottomLeftRadius"] | AnyString>
|
|
973
973
|
/**
|
|
974
974
|
* The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
|
|
975
975
|
*
|
|
@@ -984,7 +984,7 @@ borderBottomLeftRadius?: ConditionalValue<UtilityValues["borderBottomLeftRadius"
|
|
|
984
984
|
*
|
|
985
985
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius
|
|
986
986
|
*/
|
|
987
|
-
borderBottomRightRadius?: ConditionalValue<UtilityValues["borderBottomRightRadius"] | CssProperties["borderBottomRightRadius"] | AnyString>
|
|
987
|
+
borderBottomRightRadius?: ConditionalValue<UtilityValues["borderBottomRightRadius"] | CssVars | CssProperties["borderBottomRightRadius"] | AnyString>
|
|
988
988
|
/**
|
|
989
989
|
* The **`border-bottom-style`** CSS property sets the line style of an element's bottom `border`.
|
|
990
990
|
*
|
|
@@ -1038,7 +1038,7 @@ borderCollapse?: ConditionalValue<CssVars | CssProperties["borderCollapse"] | An
|
|
|
1038
1038
|
*
|
|
1039
1039
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-color
|
|
1040
1040
|
*/
|
|
1041
|
-
borderColor?: ConditionalValue<UtilityValues["borderColor"] | CssProperties["borderColor"] | AnyString>
|
|
1041
|
+
borderColor?: ConditionalValue<UtilityValues["borderColor"] | CssVars | CssProperties["borderColor"] | AnyString>
|
|
1042
1042
|
/**
|
|
1043
1043
|
* The **`border-end-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
|
|
1044
1044
|
*
|
|
@@ -1052,7 +1052,7 @@ borderColor?: ConditionalValue<UtilityValues["borderColor"] | CssProperties["bor
|
|
|
1052
1052
|
*
|
|
1053
1053
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius
|
|
1054
1054
|
*/
|
|
1055
|
-
borderEndEndRadius?: ConditionalValue<UtilityValues["borderEndEndRadius"] | CssProperties["borderEndEndRadius"] | AnyString>
|
|
1055
|
+
borderEndEndRadius?: ConditionalValue<UtilityValues["borderEndEndRadius"] | CssVars | CssProperties["borderEndEndRadius"] | AnyString>
|
|
1056
1056
|
/**
|
|
1057
1057
|
* The **`border-end-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
|
|
1058
1058
|
*
|
|
@@ -1066,7 +1066,7 @@ borderEndEndRadius?: ConditionalValue<UtilityValues["borderEndEndRadius"] | CssP
|
|
|
1066
1066
|
*
|
|
1067
1067
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius
|
|
1068
1068
|
*/
|
|
1069
|
-
borderEndStartRadius?: ConditionalValue<UtilityValues["borderEndStartRadius"] | CssProperties["borderEndStartRadius"] | AnyString>
|
|
1069
|
+
borderEndStartRadius?: ConditionalValue<UtilityValues["borderEndStartRadius"] | CssVars | CssProperties["borderEndStartRadius"] | AnyString>
|
|
1070
1070
|
/**
|
|
1071
1071
|
* The **`border-image`** CSS property draws an image around a given element. It replaces the element's regular border.
|
|
1072
1072
|
*
|
|
@@ -1161,7 +1161,7 @@ borderImageWidth?: ConditionalValue<CssProperties["borderImageWidth"] | AnyStrin
|
|
|
1161
1161
|
*
|
|
1162
1162
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline
|
|
1163
1163
|
*/
|
|
1164
|
-
borderInline?: ConditionalValue<UtilityValues["borderInline"] | CssProperties["borderInline"] | AnyString>
|
|
1164
|
+
borderInline?: ConditionalValue<UtilityValues["borderInline"] | CssVars | CssProperties["borderInline"] | AnyString>
|
|
1165
1165
|
/**
|
|
1166
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
1167
|
*
|
|
@@ -1173,7 +1173,7 @@ borderInline?: ConditionalValue<UtilityValues["borderInline"] | CssProperties["b
|
|
|
1173
1173
|
*
|
|
1174
1174
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end
|
|
1175
1175
|
*/
|
|
1176
|
-
borderInlineEnd?: ConditionalValue<UtilityValues["borderInlineEnd"] | CssProperties["borderInlineEnd"] | AnyString>
|
|
1176
|
+
borderInlineEnd?: ConditionalValue<UtilityValues["borderInlineEnd"] | CssVars | CssProperties["borderInlineEnd"] | AnyString>
|
|
1177
1177
|
/**
|
|
1178
1178
|
* 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
1179
|
*
|
|
@@ -1187,7 +1187,7 @@ borderInlineEnd?: ConditionalValue<UtilityValues["borderInlineEnd"] | CssPropert
|
|
|
1187
1187
|
*
|
|
1188
1188
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color
|
|
1189
1189
|
*/
|
|
1190
|
-
borderInlineColor?: ConditionalValue<UtilityValues["borderInlineColor"] | CssProperties["borderInlineColor"] | AnyString>
|
|
1190
|
+
borderInlineColor?: ConditionalValue<UtilityValues["borderInlineColor"] | CssVars | CssProperties["borderInlineColor"] | AnyString>
|
|
1191
1191
|
/**
|
|
1192
1192
|
* 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`.
|
|
1193
1193
|
*
|
|
@@ -1230,7 +1230,7 @@ borderInlineWidth?: ConditionalValue<CssProperties["borderInlineWidth"] | AnyStr
|
|
|
1230
1230
|
*
|
|
1231
1231
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color
|
|
1232
1232
|
*/
|
|
1233
|
-
borderInlineEndColor?: ConditionalValue<UtilityValues["borderInlineEndColor"] | CssProperties["borderInlineEndColor"] | AnyString>
|
|
1233
|
+
borderInlineEndColor?: ConditionalValue<UtilityValues["borderInlineEndColor"] | CssVars | CssProperties["borderInlineEndColor"] | AnyString>
|
|
1234
1234
|
/**
|
|
1235
1235
|
* The **`border-inline-end-style`** CSS property defines the style of the logical inline end border 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`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
1236
1236
|
*
|
|
@@ -1272,7 +1272,7 @@ borderInlineEndWidth?: ConditionalValue<CssProperties["borderInlineEndWidth"] |
|
|
|
1272
1272
|
*
|
|
1273
1273
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start
|
|
1274
1274
|
*/
|
|
1275
|
-
borderInlineStart?: ConditionalValue<UtilityValues["borderInlineStart"] | CssProperties["borderInlineStart"] | AnyString>
|
|
1275
|
+
borderInlineStart?: ConditionalValue<UtilityValues["borderInlineStart"] | CssVars | CssProperties["borderInlineStart"] | AnyString>
|
|
1276
1276
|
/**
|
|
1277
1277
|
* The **`border-inline-start-color`** CSS property defines the color of the logical inline start 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`.
|
|
1278
1278
|
*
|
|
@@ -1287,7 +1287,7 @@ borderInlineStart?: ConditionalValue<UtilityValues["borderInlineStart"] | CssPro
|
|
|
1287
1287
|
*
|
|
1288
1288
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color
|
|
1289
1289
|
*/
|
|
1290
|
-
borderInlineStartColor?: ConditionalValue<UtilityValues["borderInlineStartColor"] | CssProperties["borderInlineStartColor"] | AnyString>
|
|
1290
|
+
borderInlineStartColor?: ConditionalValue<UtilityValues["borderInlineStartColor"] | CssVars | CssProperties["borderInlineStartColor"] | AnyString>
|
|
1291
1291
|
/**
|
|
1292
1292
|
* The **`border-inline-start-style`** CSS property defines the style of the logical inline start border 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`, `border-right-style`, `border-bottom-style`, or `border-left-style` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
1293
1293
|
*
|
|
@@ -1328,7 +1328,7 @@ borderInlineStartWidth?: ConditionalValue<CssProperties["borderInlineStartWidth"
|
|
|
1328
1328
|
*
|
|
1329
1329
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-left
|
|
1330
1330
|
*/
|
|
1331
|
-
borderLeft?: ConditionalValue<UtilityValues["borderLeft"] | CssProperties["borderLeft"] | AnyString>
|
|
1331
|
+
borderLeft?: ConditionalValue<UtilityValues["borderLeft"] | CssVars | CssProperties["borderLeft"] | AnyString>
|
|
1332
1332
|
/**
|
|
1333
1333
|
* The **`border-left-color`** CSS property sets the color of an element's left border. It can also be set with the shorthand CSS properties `border-color` or `border-left`.
|
|
1334
1334
|
*
|
|
@@ -1342,7 +1342,7 @@ borderLeft?: ConditionalValue<UtilityValues["borderLeft"] | CssProperties["borde
|
|
|
1342
1342
|
*
|
|
1343
1343
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-left-color
|
|
1344
1344
|
*/
|
|
1345
|
-
borderLeftColor?: ConditionalValue<UtilityValues["borderLeftColor"] | CssProperties["borderLeftColor"] | AnyString>
|
|
1345
|
+
borderLeftColor?: ConditionalValue<UtilityValues["borderLeftColor"] | CssVars | CssProperties["borderLeftColor"] | AnyString>
|
|
1346
1346
|
/**
|
|
1347
1347
|
* The **`border-left-style`** CSS property sets the line style of an element's left `border`.
|
|
1348
1348
|
*
|
|
@@ -1383,7 +1383,7 @@ borderLeftWidth?: ConditionalValue<CssProperties["borderLeftWidth"] | AnyString>
|
|
|
1383
1383
|
*
|
|
1384
1384
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-radius
|
|
1385
1385
|
*/
|
|
1386
|
-
borderRadius?: ConditionalValue<UtilityValues["borderRadius"] | CssProperties["borderRadius"] | AnyString>
|
|
1386
|
+
borderRadius?: ConditionalValue<UtilityValues["borderRadius"] | CssVars | CssProperties["borderRadius"] | AnyString>
|
|
1387
1387
|
/**
|
|
1388
1388
|
* The **`border-right`** shorthand CSS property sets all the properties of an element's right border.
|
|
1389
1389
|
*
|
|
@@ -1395,7 +1395,7 @@ borderRadius?: ConditionalValue<UtilityValues["borderRadius"] | CssProperties["b
|
|
|
1395
1395
|
*
|
|
1396
1396
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-right
|
|
1397
1397
|
*/
|
|
1398
|
-
borderRight?: ConditionalValue<UtilityValues["borderRight"] | CssProperties["borderRight"] | AnyString>
|
|
1398
|
+
borderRight?: ConditionalValue<UtilityValues["borderRight"] | CssVars | CssProperties["borderRight"] | AnyString>
|
|
1399
1399
|
/**
|
|
1400
1400
|
* The **`border-right-color`** CSS property sets the color of an element's right border. It can also be set with the shorthand CSS properties `border-color` or `border-right`.
|
|
1401
1401
|
*
|
|
@@ -1409,7 +1409,7 @@ borderRight?: ConditionalValue<UtilityValues["borderRight"] | CssProperties["bor
|
|
|
1409
1409
|
*
|
|
1410
1410
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-right-color
|
|
1411
1411
|
*/
|
|
1412
|
-
borderRightColor?: ConditionalValue<UtilityValues["borderRightColor"] | CssProperties["borderRightColor"] | AnyString>
|
|
1412
|
+
borderRightColor?: ConditionalValue<UtilityValues["borderRightColor"] | CssVars | CssProperties["borderRightColor"] | AnyString>
|
|
1413
1413
|
/**
|
|
1414
1414
|
* The **`border-right-style`** CSS property sets the line style of an element's right `border`.
|
|
1415
1415
|
*
|
|
@@ -1451,7 +1451,7 @@ borderRightWidth?: ConditionalValue<CssProperties["borderRightWidth"] | AnyStrin
|
|
|
1451
1451
|
*
|
|
1452
1452
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-spacing
|
|
1453
1453
|
*/
|
|
1454
|
-
borderSpacing?: ConditionalValue<UtilityValues["borderSpacing"] | CssProperties["borderSpacing"] | AnyString>
|
|
1454
|
+
borderSpacing?: ConditionalValue<UtilityValues["borderSpacing"] | CssVars | CssProperties["borderSpacing"] | AnyString>
|
|
1455
1455
|
/**
|
|
1456
1456
|
* The **`border-start-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
|
|
1457
1457
|
*
|
|
@@ -1465,7 +1465,7 @@ borderSpacing?: ConditionalValue<UtilityValues["borderSpacing"] | CssProperties[
|
|
|
1465
1465
|
*
|
|
1466
1466
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius
|
|
1467
1467
|
*/
|
|
1468
|
-
borderStartEndRadius?: ConditionalValue<UtilityValues["borderStartEndRadius"] | CssProperties["borderStartEndRadius"] | AnyString>
|
|
1468
|
+
borderStartEndRadius?: ConditionalValue<UtilityValues["borderStartEndRadius"] | CssVars | CssProperties["borderStartEndRadius"] | AnyString>
|
|
1469
1469
|
/**
|
|
1470
1470
|
* The **`border-start-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
|
|
1471
1471
|
*
|
|
@@ -1479,7 +1479,7 @@ borderStartEndRadius?: ConditionalValue<UtilityValues["borderStartEndRadius"] |
|
|
|
1479
1479
|
*
|
|
1480
1480
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius
|
|
1481
1481
|
*/
|
|
1482
|
-
borderStartStartRadius?: ConditionalValue<UtilityValues["borderStartStartRadius"] | CssProperties["borderStartStartRadius"] | AnyString>
|
|
1482
|
+
borderStartStartRadius?: ConditionalValue<UtilityValues["borderStartStartRadius"] | CssVars | CssProperties["borderStartStartRadius"] | AnyString>
|
|
1483
1483
|
/**
|
|
1484
1484
|
* The **`border-style`** shorthand CSS property sets the line style for all four sides of an element's border.
|
|
1485
1485
|
*
|
|
@@ -1503,7 +1503,7 @@ borderStyle?: ConditionalValue<CssProperties["borderStyle"] | AnyString>
|
|
|
1503
1503
|
*
|
|
1504
1504
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-top
|
|
1505
1505
|
*/
|
|
1506
|
-
borderTop?: ConditionalValue<UtilityValues["borderTop"] | CssProperties["borderTop"] | AnyString>
|
|
1506
|
+
borderTop?: ConditionalValue<UtilityValues["borderTop"] | CssVars | CssProperties["borderTop"] | AnyString>
|
|
1507
1507
|
/**
|
|
1508
1508
|
* The **`border-top-color`** CSS property sets the color of an element's top border. It can also be set with the shorthand CSS properties `border-color` or `border-top`.
|
|
1509
1509
|
*
|
|
@@ -1517,7 +1517,7 @@ borderTop?: ConditionalValue<UtilityValues["borderTop"] | CssProperties["borderT
|
|
|
1517
1517
|
*
|
|
1518
1518
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-top-color
|
|
1519
1519
|
*/
|
|
1520
|
-
borderTopColor?: ConditionalValue<UtilityValues["borderTopColor"] | CssProperties["borderTopColor"] | AnyString>
|
|
1520
|
+
borderTopColor?: ConditionalValue<UtilityValues["borderTopColor"] | CssVars | CssProperties["borderTopColor"] | AnyString>
|
|
1521
1521
|
/**
|
|
1522
1522
|
* The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
|
|
1523
1523
|
*
|
|
@@ -1532,7 +1532,7 @@ borderTopColor?: ConditionalValue<UtilityValues["borderTopColor"] | CssPropertie
|
|
|
1532
1532
|
*
|
|
1533
1533
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius
|
|
1534
1534
|
*/
|
|
1535
|
-
borderTopLeftRadius?: ConditionalValue<UtilityValues["borderTopLeftRadius"] | CssProperties["borderTopLeftRadius"] | AnyString>
|
|
1535
|
+
borderTopLeftRadius?: ConditionalValue<UtilityValues["borderTopLeftRadius"] | CssVars | CssProperties["borderTopLeftRadius"] | AnyString>
|
|
1536
1536
|
/**
|
|
1537
1537
|
* The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
|
|
1538
1538
|
*
|
|
@@ -1547,7 +1547,7 @@ borderTopLeftRadius?: ConditionalValue<UtilityValues["borderTopLeftRadius"] | Cs
|
|
|
1547
1547
|
*
|
|
1548
1548
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius
|
|
1549
1549
|
*/
|
|
1550
|
-
borderTopRightRadius?: ConditionalValue<UtilityValues["borderTopRightRadius"] | CssProperties["borderTopRightRadius"] | AnyString>
|
|
1550
|
+
borderTopRightRadius?: ConditionalValue<UtilityValues["borderTopRightRadius"] | CssVars | CssProperties["borderTopRightRadius"] | AnyString>
|
|
1551
1551
|
/**
|
|
1552
1552
|
* The **`border-top-style`** CSS property sets the line style of an element's top `border`.
|
|
1553
1553
|
*
|
|
@@ -1601,7 +1601,7 @@ borderWidth?: ConditionalValue<CssProperties["borderWidth"] | AnyString>
|
|
|
1601
1601
|
*
|
|
1602
1602
|
* @see https://developer.mozilla.org/docs/Web/CSS/bottom
|
|
1603
1603
|
*/
|
|
1604
|
-
bottom?: ConditionalValue<UtilityValues["bottom"] | CssProperties["bottom"] | AnyString>
|
|
1604
|
+
bottom?: ConditionalValue<UtilityValues["bottom"] | CssVars | CssProperties["bottom"] | AnyString>
|
|
1605
1605
|
boxAlign?: ConditionalValue<CssProperties["boxAlign"] | AnyString>
|
|
1606
1606
|
/**
|
|
1607
1607
|
* The **`box-decoration-break`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages.
|
|
@@ -1638,7 +1638,7 @@ boxDecorationBreak?: ConditionalValue<CssVars | CssProperties["boxDecorationBrea
|
|
|
1638
1638
|
*
|
|
1639
1639
|
* @see https://developer.mozilla.org/docs/Web/CSS/box-shadow
|
|
1640
1640
|
*/
|
|
1641
|
-
boxShadow?: ConditionalValue<UtilityValues["boxShadow"] | CssProperties["boxShadow"] | AnyString>
|
|
1641
|
+
boxShadow?: ConditionalValue<UtilityValues["boxShadow"] | CssVars | CssProperties["boxShadow"] | AnyString>
|
|
1642
1642
|
/**
|
|
1643
1643
|
* The **`box-sizing`** CSS property sets how the total width and height of an element is calculated.
|
|
1644
1644
|
*
|
|
@@ -1725,7 +1725,7 @@ caret?: ConditionalValue<CssProperties["caret"] | AnyString>
|
|
|
1725
1725
|
*
|
|
1726
1726
|
* @see https://developer.mozilla.org/docs/Web/CSS/caret-color
|
|
1727
1727
|
*/
|
|
1728
|
-
caretColor?: ConditionalValue<UtilityValues["caretColor"] | CssProperties["caretColor"] | AnyString>
|
|
1728
|
+
caretColor?: ConditionalValue<UtilityValues["caretColor"] | CssVars | CssProperties["caretColor"] | AnyString>
|
|
1729
1729
|
/**
|
|
1730
1730
|
* **Syntax**: `auto | bar | block | underscore`
|
|
1731
1731
|
*
|
|
@@ -1775,7 +1775,7 @@ clipPath?: ConditionalValue<CssProperties["clipPath"] | AnyString>
|
|
|
1775
1775
|
*
|
|
1776
1776
|
* @see https://developer.mozilla.org/docs/Web/CSS/color
|
|
1777
1777
|
*/
|
|
1778
|
-
color?: ConditionalValue<UtilityValues["color"] | CssProperties["color"] | AnyString>
|
|
1778
|
+
color?: ConditionalValue<UtilityValues["color"] | CssVars | CssProperties["color"] | AnyString>
|
|
1779
1779
|
/**
|
|
1780
1780
|
* The **`color-scheme`** CSS property allows an element to indicate which color schemes it can comfortably be rendered in.
|
|
1781
1781
|
*
|
|
@@ -1833,7 +1833,7 @@ columnFill?: ConditionalValue<CssVars | CssProperties["columnFill"] | AnyString>
|
|
|
1833
1833
|
*
|
|
1834
1834
|
* @see https://developer.mozilla.org/docs/Web/CSS/column-gap
|
|
1835
1835
|
*/
|
|
1836
|
-
columnGap?: ConditionalValue<UtilityValues["columnGap"] | CssProperties["columnGap"] | AnyString>
|
|
1836
|
+
columnGap?: ConditionalValue<UtilityValues["columnGap"] | CssVars | CssProperties["columnGap"] | AnyString>
|
|
1837
1837
|
/**
|
|
1838
1838
|
* The **`column-rule`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout.
|
|
1839
1839
|
*
|
|
@@ -2042,7 +2042,7 @@ container?: ConditionalValue<CssProperties["container"] | AnyString>
|
|
|
2042
2042
|
*
|
|
2043
2043
|
* @see https://developer.mozilla.org/docs/Web/CSS/container-name
|
|
2044
2044
|
*/
|
|
2045
|
-
containerName?: ConditionalValue<UtilityValues["containerName"] | CssProperties["containerName"] | AnyString>
|
|
2045
|
+
containerName?: ConditionalValue<UtilityValues["containerName"] | CssVars | CssProperties["containerName"] | AnyString>
|
|
2046
2046
|
/**
|
|
2047
2047
|
* The **container-type** CSS property is used to define the type of containment used in a container query.
|
|
2048
2048
|
*
|
|
@@ -2197,7 +2197,7 @@ emptyCells?: ConditionalValue<CssVars | CssProperties["emptyCells"] | AnyString>
|
|
|
2197
2197
|
*
|
|
2198
2198
|
* @see https://developer.mozilla.org/docs/Web/CSS/filter
|
|
2199
2199
|
*/
|
|
2200
|
-
filter?: ConditionalValue<UtilityValues["filter"] | CssProperties["filter"] | AnyString>
|
|
2200
|
+
filter?: ConditionalValue<UtilityValues["filter"] | CssVars | CssProperties["filter"] | AnyString>
|
|
2201
2201
|
/**
|
|
2202
2202
|
* The **`flex`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container.
|
|
2203
2203
|
*
|
|
@@ -2210,7 +2210,7 @@ filter?: ConditionalValue<UtilityValues["filter"] | CssProperties["filter"] | An
|
|
|
2210
2210
|
*
|
|
2211
2211
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex
|
|
2212
2212
|
*/
|
|
2213
|
-
flex?: ConditionalValue<UtilityValues["flex"] | CssProperties["flex"] | AnyString>
|
|
2213
|
+
flex?: ConditionalValue<UtilityValues["flex"] | CssVars | CssProperties["flex"] | AnyString>
|
|
2214
2214
|
/**
|
|
2215
2215
|
* The **`flex-basis`** CSS property sets the initial main size of a flex item. It sets the size of the content box unless otherwise set with `box-sizing`.
|
|
2216
2216
|
*
|
|
@@ -2225,7 +2225,7 @@ flex?: ConditionalValue<UtilityValues["flex"] | CssProperties["flex"] | AnyStrin
|
|
|
2225
2225
|
*
|
|
2226
2226
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex-basis
|
|
2227
2227
|
*/
|
|
2228
|
-
flexBasis?: ConditionalValue<UtilityValues["flexBasis"] | CssProperties["flexBasis"] | AnyString>
|
|
2228
|
+
flexBasis?: ConditionalValue<UtilityValues["flexBasis"] | CssVars | CssProperties["flexBasis"] | AnyString>
|
|
2229
2229
|
/**
|
|
2230
2230
|
* The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
|
|
2231
2231
|
*
|
|
@@ -2338,7 +2338,7 @@ font?: ConditionalValue<CssProperties["font"] | AnyString>
|
|
|
2338
2338
|
*
|
|
2339
2339
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-family
|
|
2340
2340
|
*/
|
|
2341
|
-
fontFamily?: ConditionalValue<UtilityValues["fontFamily"] | CssProperties["fontFamily"] | AnyString>
|
|
2341
|
+
fontFamily?: ConditionalValue<UtilityValues["fontFamily"] | CssVars | CssProperties["fontFamily"] | AnyString>
|
|
2342
2342
|
/**
|
|
2343
2343
|
* The **`font-feature-settings`** CSS property controls advanced typographic features in OpenType fonts.
|
|
2344
2344
|
*
|
|
@@ -2437,7 +2437,7 @@ fontVariationSettings?: ConditionalValue<CssProperties["fontVariationSettings"]
|
|
|
2437
2437
|
*
|
|
2438
2438
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-size
|
|
2439
2439
|
*/
|
|
2440
|
-
fontSize?: ConditionalValue<UtilityValues["fontSize"] | CssProperties["fontSize"] | AnyString>
|
|
2440
|
+
fontSize?: ConditionalValue<UtilityValues["fontSize"] | CssVars | CssProperties["fontSize"] | AnyString>
|
|
2441
2441
|
/**
|
|
2442
2442
|
* The **`font-size-adjust`** CSS property sets the size of lower-case letters relative to the current font size (which defines the size of upper-case letters).
|
|
2443
2443
|
*
|
|
@@ -2688,7 +2688,7 @@ fontVariantPosition?: ConditionalValue<CssProperties["fontVariantPosition"] | An
|
|
|
2688
2688
|
*
|
|
2689
2689
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-weight
|
|
2690
2690
|
*/
|
|
2691
|
-
fontWeight?: ConditionalValue<UtilityValues["fontWeight"] | CssProperties["fontWeight"] | AnyString>
|
|
2691
|
+
fontWeight?: ConditionalValue<UtilityValues["fontWeight"] | CssVars | CssProperties["fontWeight"] | AnyString>
|
|
2692
2692
|
/**
|
|
2693
2693
|
* The **`forced-color-adjust`** CSS property allows authors to opt certain elements out of forced colors mode. This then restores the control of those values to CSS.
|
|
2694
2694
|
*
|
|
@@ -2715,7 +2715,7 @@ forcedColorAdjust?: ConditionalValue<CssVars | CssProperties["forcedColorAdjust"
|
|
|
2715
2715
|
*
|
|
2716
2716
|
* @see https://developer.mozilla.org/docs/Web/CSS/gap
|
|
2717
2717
|
*/
|
|
2718
|
-
gap?: ConditionalValue<UtilityValues["gap"] | CssProperties["gap"] | AnyString>
|
|
2718
|
+
gap?: ConditionalValue<UtilityValues["gap"] | CssVars | CssProperties["gap"] | AnyString>
|
|
2719
2719
|
/**
|
|
2720
2720
|
* The **`grid`** CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration.
|
|
2721
2721
|
*
|
|
@@ -2753,7 +2753,7 @@ gridArea?: ConditionalValue<CssProperties["gridArea"] | AnyString>
|
|
|
2753
2753
|
*
|
|
2754
2754
|
* @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns
|
|
2755
2755
|
*/
|
|
2756
|
-
gridAutoColumns?: ConditionalValue<UtilityValues["gridAutoColumns"] | CssProperties["gridAutoColumns"] | AnyString>
|
|
2756
|
+
gridAutoColumns?: ConditionalValue<UtilityValues["gridAutoColumns"] | CssVars | CssProperties["gridAutoColumns"] | AnyString>
|
|
2757
2757
|
/**
|
|
2758
2758
|
* The **`grid-auto-flow`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid.
|
|
2759
2759
|
*
|
|
@@ -2781,7 +2781,7 @@ gridAutoFlow?: ConditionalValue<CssProperties["gridAutoFlow"] | AnyString>
|
|
|
2781
2781
|
*
|
|
2782
2782
|
* @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows
|
|
2783
2783
|
*/
|
|
2784
|
-
gridAutoRows?: ConditionalValue<UtilityValues["gridAutoRows"] | CssProperties["gridAutoRows"] | AnyString>
|
|
2784
|
+
gridAutoRows?: ConditionalValue<UtilityValues["gridAutoRows"] | CssVars | CssProperties["gridAutoRows"] | AnyString>
|
|
2785
2785
|
/**
|
|
2786
2786
|
* The **`grid-column`** CSS shorthand property specifies a grid item's size and location within a grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
|
|
2787
2787
|
*
|
|
@@ -2793,7 +2793,7 @@ gridAutoRows?: ConditionalValue<UtilityValues["gridAutoRows"] | CssProperties["g
|
|
|
2793
2793
|
*
|
|
2794
2794
|
* @see https://developer.mozilla.org/docs/Web/CSS/grid-column
|
|
2795
2795
|
*/
|
|
2796
|
-
gridColumn?: ConditionalValue<UtilityValues["gridColumn"] | CssProperties["gridColumn"] | AnyString>
|
|
2796
|
+
gridColumn?: ConditionalValue<UtilityValues["gridColumn"] | CssVars | CssProperties["gridColumn"] | AnyString>
|
|
2797
2797
|
/**
|
|
2798
2798
|
* The **`grid-column-end`** CSS property specifies a grid item's end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the block-end edge of its grid area.
|
|
2799
2799
|
*
|
|
@@ -2808,7 +2808,7 @@ gridColumn?: ConditionalValue<UtilityValues["gridColumn"] | CssProperties["gridC
|
|
|
2808
2808
|
* @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end
|
|
2809
2809
|
*/
|
|
2810
2810
|
gridColumnEnd?: ConditionalValue<CssProperties["gridColumnEnd"] | AnyString>
|
|
2811
|
-
gridColumnGap?: ConditionalValue<UtilityValues["gridColumnGap"] | CssProperties["gridColumnGap"] | AnyString>
|
|
2811
|
+
gridColumnGap?: ConditionalValue<UtilityValues["gridColumnGap"] | CssVars | CssProperties["gridColumnGap"] | AnyString>
|
|
2812
2812
|
/**
|
|
2813
2813
|
* The **`grid-column-start`** CSS property specifies a grid item's start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This start position defines the block-start edge of the grid area.
|
|
2814
2814
|
*
|
|
@@ -2823,7 +2823,7 @@ gridColumnEnd?: ConditionalValue<CssProperties["gridColumnEnd"] | AnyString>
|
|
|
2823
2823
|
* @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start
|
|
2824
2824
|
*/
|
|
2825
2825
|
gridColumnStart?: ConditionalValue<CssProperties["gridColumnStart"] | AnyString>
|
|
2826
|
-
gridGap?: ConditionalValue<UtilityValues["gridGap"] | CssProperties["gridGap"] | AnyString>
|
|
2826
|
+
gridGap?: ConditionalValue<UtilityValues["gridGap"] | CssVars | CssProperties["gridGap"] | AnyString>
|
|
2827
2827
|
/**
|
|
2828
2828
|
* The **`grid-row`** CSS shorthand property specifies a grid item's size and location within a grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.
|
|
2829
2829
|
*
|
|
@@ -2835,7 +2835,7 @@ gridColumnStart?: ConditionalValue<CssProperties["gridColumnStart"] | AnyString>
|
|
|
2835
2835
|
*
|
|
2836
2836
|
* @see https://developer.mozilla.org/docs/Web/CSS/grid-row
|
|
2837
2837
|
*/
|
|
2838
|
-
gridRow?: ConditionalValue<UtilityValues["gridRow"] | CssProperties["gridRow"] | AnyString>
|
|
2838
|
+
gridRow?: ConditionalValue<UtilityValues["gridRow"] | CssVars | CssProperties["gridRow"] | AnyString>
|
|
2839
2839
|
/**
|
|
2840
2840
|
* The **`grid-row-end`** CSS property specifies a grid item's end position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-end edge of its grid area.
|
|
2841
2841
|
*
|
|
@@ -2850,7 +2850,7 @@ gridRow?: ConditionalValue<UtilityValues["gridRow"] | CssProperties["gridRow"] |
|
|
|
2850
2850
|
* @see https://developer.mozilla.org/docs/Web/CSS/grid-row-end
|
|
2851
2851
|
*/
|
|
2852
2852
|
gridRowEnd?: ConditionalValue<CssProperties["gridRowEnd"] | AnyString>
|
|
2853
|
-
gridRowGap?: ConditionalValue<UtilityValues["gridRowGap"] | CssProperties["gridRowGap"] | AnyString>
|
|
2853
|
+
gridRowGap?: ConditionalValue<UtilityValues["gridRowGap"] | CssVars | CssProperties["gridRowGap"] | AnyString>
|
|
2854
2854
|
/**
|
|
2855
2855
|
* The **`grid-row-start`** CSS property specifies a grid item's start position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start edge of its grid area.
|
|
2856
2856
|
*
|
|
@@ -2904,7 +2904,7 @@ gridTemplateAreas?: ConditionalValue<CssProperties["gridTemplateAreas"] | AnyStr
|
|
|
2904
2904
|
*
|
|
2905
2905
|
* @see https://developer.mozilla.org/docs/Web/CSS/grid-template-columns
|
|
2906
2906
|
*/
|
|
2907
|
-
gridTemplateColumns?: ConditionalValue<UtilityValues["gridTemplateColumns"] | CssProperties["gridTemplateColumns"] | AnyString>
|
|
2907
|
+
gridTemplateColumns?: ConditionalValue<UtilityValues["gridTemplateColumns"] | CssVars | CssProperties["gridTemplateColumns"] | AnyString>
|
|
2908
2908
|
/**
|
|
2909
2909
|
* The **`grid-template-rows`** CSS property defines the line names and track sizing functions of the grid rows.
|
|
2910
2910
|
*
|
|
@@ -2918,7 +2918,7 @@ gridTemplateColumns?: ConditionalValue<UtilityValues["gridTemplateColumns"] | Cs
|
|
|
2918
2918
|
*
|
|
2919
2919
|
* @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows
|
|
2920
2920
|
*/
|
|
2921
|
-
gridTemplateRows?: ConditionalValue<UtilityValues["gridTemplateRows"] | CssProperties["gridTemplateRows"] | AnyString>
|
|
2921
|
+
gridTemplateRows?: ConditionalValue<UtilityValues["gridTemplateRows"] | CssVars | CssProperties["gridTemplateRows"] | AnyString>
|
|
2922
2922
|
/**
|
|
2923
2923
|
* The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box.
|
|
2924
2924
|
*
|
|
@@ -2946,7 +2946,7 @@ hangingPunctuation?: ConditionalValue<CssProperties["hangingPunctuation"] | AnyS
|
|
|
2946
2946
|
*
|
|
2947
2947
|
* @see https://developer.mozilla.org/docs/Web/CSS/height
|
|
2948
2948
|
*/
|
|
2949
|
-
height?: ConditionalValue<UtilityValues["height"] | CssProperties["height"] | AnyString>
|
|
2949
|
+
height?: ConditionalValue<UtilityValues["height"] | CssVars | CssProperties["height"] | AnyString>
|
|
2950
2950
|
/**
|
|
2951
2951
|
* The **`hyphenate-character`** CSS property sets the character (or string) used at the end of a line before a hyphenation break.
|
|
2952
2952
|
*
|
|
@@ -3052,7 +3052,7 @@ initialLetter?: ConditionalValue<CssProperties["initialLetter"] | AnyString>
|
|
|
3052
3052
|
*
|
|
3053
3053
|
* @see https://developer.mozilla.org/docs/Web/CSS/inline-size
|
|
3054
3054
|
*/
|
|
3055
|
-
inlineSize?: ConditionalValue<UtilityValues["inlineSize"] | CssProperties["inlineSize"] | AnyString>
|
|
3055
|
+
inlineSize?: ConditionalValue<UtilityValues["inlineSize"] | CssVars | CssProperties["inlineSize"] | AnyString>
|
|
3056
3056
|
/**
|
|
3057
3057
|
* **Syntax**: `auto | none`
|
|
3058
3058
|
*
|
|
@@ -3070,7 +3070,7 @@ inputSecurity?: ConditionalValue<CssProperties["inputSecurity"] | AnyString>
|
|
|
3070
3070
|
*
|
|
3071
3071
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset
|
|
3072
3072
|
*/
|
|
3073
|
-
inset?: ConditionalValue<UtilityValues["inset"] | CssProperties["inset"] | AnyString>
|
|
3073
|
+
inset?: ConditionalValue<UtilityValues["inset"] | CssVars | CssProperties["inset"] | AnyString>
|
|
3074
3074
|
/**
|
|
3075
3075
|
* The **`inset-block`** CSS property defines the logical block start and end offsets of an element, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
3076
3076
|
*
|
|
@@ -3082,7 +3082,7 @@ inset?: ConditionalValue<UtilityValues["inset"] | CssProperties["inset"] | AnySt
|
|
|
3082
3082
|
*
|
|
3083
3083
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block
|
|
3084
3084
|
*/
|
|
3085
|
-
insetBlock?: ConditionalValue<UtilityValues["insetBlock"] | CssProperties["insetBlock"] | AnyString>
|
|
3085
|
+
insetBlock?: ConditionalValue<UtilityValues["insetBlock"] | CssVars | CssProperties["insetBlock"] | AnyString>
|
|
3086
3086
|
/**
|
|
3087
3087
|
* The **`inset-block-end`** CSS property defines the logical block end offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
3088
3088
|
*
|
|
@@ -3096,7 +3096,7 @@ insetBlock?: ConditionalValue<UtilityValues["insetBlock"] | CssProperties["inset
|
|
|
3096
3096
|
*
|
|
3097
3097
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end
|
|
3098
3098
|
*/
|
|
3099
|
-
insetBlockEnd?: ConditionalValue<UtilityValues["insetBlockEnd"] | CssProperties["insetBlockEnd"] | AnyString>
|
|
3099
|
+
insetBlockEnd?: ConditionalValue<UtilityValues["insetBlockEnd"] | CssVars | CssProperties["insetBlockEnd"] | AnyString>
|
|
3100
3100
|
/**
|
|
3101
3101
|
* The **`inset-block-start`** CSS property defines the logical block start offset of an element, which maps to a physical inset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
3102
3102
|
*
|
|
@@ -3110,7 +3110,7 @@ insetBlockEnd?: ConditionalValue<UtilityValues["insetBlockEnd"] | CssProperties[
|
|
|
3110
3110
|
*
|
|
3111
3111
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start
|
|
3112
3112
|
*/
|
|
3113
|
-
insetBlockStart?: ConditionalValue<UtilityValues["insetBlockStart"] | CssProperties["insetBlockStart"] | AnyString>
|
|
3113
|
+
insetBlockStart?: ConditionalValue<UtilityValues["insetBlockStart"] | CssVars | CssProperties["insetBlockStart"] | AnyString>
|
|
3114
3114
|
/**
|
|
3115
3115
|
* The **`inset-inline`** CSS property defines the logical start and end offsets of an element in the inline direction, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
3116
3116
|
*
|
|
@@ -3122,7 +3122,7 @@ insetBlockStart?: ConditionalValue<UtilityValues["insetBlockStart"] | CssPropert
|
|
|
3122
3122
|
*
|
|
3123
3123
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
|
|
3124
3124
|
*/
|
|
3125
|
-
insetInline?: ConditionalValue<UtilityValues["insetInline"] | CssProperties["insetInline"] | AnyString>
|
|
3125
|
+
insetInline?: ConditionalValue<UtilityValues["insetInline"] | CssVars | CssProperties["insetInline"] | AnyString>
|
|
3126
3126
|
/**
|
|
3127
3127
|
* The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
3128
3128
|
*
|
|
@@ -3136,7 +3136,7 @@ insetInline?: ConditionalValue<UtilityValues["insetInline"] | CssProperties["ins
|
|
|
3136
3136
|
*
|
|
3137
3137
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
|
|
3138
3138
|
*/
|
|
3139
|
-
insetInlineEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssProperties["insetInlineEnd"] | AnyString>
|
|
3139
|
+
insetInlineEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | CssProperties["insetInlineEnd"] | AnyString>
|
|
3140
3140
|
/**
|
|
3141
3141
|
* The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
3142
3142
|
*
|
|
@@ -3150,7 +3150,7 @@ insetInlineEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssPropertie
|
|
|
3150
3150
|
*
|
|
3151
3151
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
|
|
3152
3152
|
*/
|
|
3153
|
-
insetInlineStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssProperties["insetInlineStart"] | AnyString>
|
|
3153
|
+
insetInlineStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssVars | CssProperties["insetInlineStart"] | AnyString>
|
|
3154
3154
|
/**
|
|
3155
3155
|
* The **`isolation`** CSS property determines whether an element must create a new stacking context.
|
|
3156
3156
|
*
|
|
@@ -3235,7 +3235,7 @@ justifyTracks?: ConditionalValue<CssProperties["justifyTracks"] | AnyString>
|
|
|
3235
3235
|
*
|
|
3236
3236
|
* @see https://developer.mozilla.org/docs/Web/CSS/left
|
|
3237
3237
|
*/
|
|
3238
|
-
left?: ConditionalValue<UtilityValues["left"] | CssProperties["left"] | AnyString>
|
|
3238
|
+
left?: ConditionalValue<UtilityValues["left"] | CssVars | CssProperties["left"] | AnyString>
|
|
3239
3239
|
/**
|
|
3240
3240
|
* The **`letter-spacing`** CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of `letter-spacing` causes characters to spread farther apart, while negative values of `letter-spacing` bring characters closer together.
|
|
3241
3241
|
*
|
|
@@ -3249,7 +3249,7 @@ left?: ConditionalValue<UtilityValues["left"] | CssProperties["left"] | AnyStrin
|
|
|
3249
3249
|
*
|
|
3250
3250
|
* @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing
|
|
3251
3251
|
*/
|
|
3252
|
-
letterSpacing?: ConditionalValue<UtilityValues["letterSpacing"] | CssProperties["letterSpacing"] | AnyString>
|
|
3252
|
+
letterSpacing?: ConditionalValue<UtilityValues["letterSpacing"] | CssVars | CssProperties["letterSpacing"] | AnyString>
|
|
3253
3253
|
/**
|
|
3254
3254
|
* The **`line-break`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols.
|
|
3255
3255
|
*
|
|
@@ -3284,7 +3284,7 @@ lineClamp?: ConditionalValue<CssProperties["lineClamp"] | AnyString>
|
|
|
3284
3284
|
*
|
|
3285
3285
|
* @see https://developer.mozilla.org/docs/Web/CSS/line-height
|
|
3286
3286
|
*/
|
|
3287
|
-
lineHeight?: ConditionalValue<UtilityValues["lineHeight"] | CssProperties["lineHeight"] | AnyString>
|
|
3287
|
+
lineHeight?: ConditionalValue<UtilityValues["lineHeight"] | CssVars | CssProperties["lineHeight"] | AnyString>
|
|
3288
3288
|
/**
|
|
3289
3289
|
* The **`line-height-step`** CSS property sets the step unit for line box heights. When the property is set, line box heights are rounded up to the closest multiple of the unit.
|
|
3290
3290
|
*
|
|
@@ -3324,7 +3324,7 @@ listStyle?: ConditionalValue<CssProperties["listStyle"] | AnyString>
|
|
|
3324
3324
|
*
|
|
3325
3325
|
* @see https://developer.mozilla.org/docs/Web/CSS/list-style-image
|
|
3326
3326
|
*/
|
|
3327
|
-
listStyleImage?: ConditionalValue<UtilityValues["listStyleImage"] | CssProperties["listStyleImage"] | AnyString>
|
|
3327
|
+
listStyleImage?: ConditionalValue<UtilityValues["listStyleImage"] | CssVars | CssProperties["listStyleImage"] | AnyString>
|
|
3328
3328
|
/**
|
|
3329
3329
|
* The **`list-style-position`** CSS property sets the position of the `::marker` relative to a list item.
|
|
3330
3330
|
*
|
|
@@ -3364,7 +3364,7 @@ listStyleType?: ConditionalValue<CssProperties["listStyleType"] | AnyString>
|
|
|
3364
3364
|
*
|
|
3365
3365
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin
|
|
3366
3366
|
*/
|
|
3367
|
-
margin?: ConditionalValue<UtilityValues["margin"] | CssProperties["margin"] | AnyString>
|
|
3367
|
+
margin?: ConditionalValue<UtilityValues["margin"] | CssVars | CssProperties["margin"] | AnyString>
|
|
3368
3368
|
/**
|
|
3369
3369
|
* The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
|
|
3370
3370
|
*
|
|
@@ -3376,7 +3376,7 @@ margin?: ConditionalValue<UtilityValues["margin"] | CssProperties["margin"] | An
|
|
|
3376
3376
|
*
|
|
3377
3377
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-block
|
|
3378
3378
|
*/
|
|
3379
|
-
marginBlock?: ConditionalValue<UtilityValues["marginBlock"] | CssProperties["marginBlock"] | AnyString>
|
|
3379
|
+
marginBlock?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssProperties["marginBlock"] | AnyString>
|
|
3380
3380
|
/**
|
|
3381
3381
|
* The **`margin-block-end`** CSS property defines the logical block end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.
|
|
3382
3382
|
*
|
|
@@ -3390,7 +3390,7 @@ marginBlock?: ConditionalValue<UtilityValues["marginBlock"] | CssProperties["mar
|
|
|
3390
3390
|
*
|
|
3391
3391
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end
|
|
3392
3392
|
*/
|
|
3393
|
-
marginBlockEnd?: ConditionalValue<UtilityValues["marginBlockEnd"] | CssProperties["marginBlockEnd"] | AnyString>
|
|
3393
|
+
marginBlockEnd?: ConditionalValue<UtilityValues["marginBlockEnd"] | CssVars | CssProperties["marginBlockEnd"] | AnyString>
|
|
3394
3394
|
/**
|
|
3395
3395
|
* The **`margin-block-start`** CSS property defines the logical block start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation.
|
|
3396
3396
|
*
|
|
@@ -3404,7 +3404,7 @@ marginBlockEnd?: ConditionalValue<UtilityValues["marginBlockEnd"] | CssPropertie
|
|
|
3404
3404
|
*
|
|
3405
3405
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start
|
|
3406
3406
|
*/
|
|
3407
|
-
marginBlockStart?: ConditionalValue<UtilityValues["marginBlockStart"] | CssProperties["marginBlockStart"] | AnyString>
|
|
3407
|
+
marginBlockStart?: ConditionalValue<UtilityValues["marginBlockStart"] | CssVars | CssProperties["marginBlockStart"] | AnyString>
|
|
3408
3408
|
/**
|
|
3409
3409
|
* The **`margin-bottom`** CSS property sets the margin area on the bottom of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
|
|
3410
3410
|
*
|
|
@@ -3418,7 +3418,7 @@ marginBlockStart?: ConditionalValue<UtilityValues["marginBlockStart"] | CssPrope
|
|
|
3418
3418
|
*
|
|
3419
3419
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom
|
|
3420
3420
|
*/
|
|
3421
|
-
marginBottom?: ConditionalValue<UtilityValues["marginBottom"] | CssProperties["marginBottom"] | AnyString>
|
|
3421
|
+
marginBottom?: ConditionalValue<UtilityValues["marginBottom"] | CssVars | CssProperties["marginBottom"] | AnyString>
|
|
3422
3422
|
/**
|
|
3423
3423
|
* The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
|
|
3424
3424
|
*
|
|
@@ -3430,7 +3430,7 @@ marginBottom?: ConditionalValue<UtilityValues["marginBottom"] | CssProperties["m
|
|
|
3430
3430
|
*
|
|
3431
3431
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
|
|
3432
3432
|
*/
|
|
3433
|
-
marginInline?: ConditionalValue<UtilityValues["marginInline"] | CssProperties["marginInline"] | AnyString>
|
|
3433
|
+
marginInline?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperties["marginInline"] | AnyString>
|
|
3434
3434
|
/**
|
|
3435
3435
|
* The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
3436
3436
|
*
|
|
@@ -3445,7 +3445,7 @@ marginInline?: ConditionalValue<UtilityValues["marginInline"] | CssProperties["m
|
|
|
3445
3445
|
*
|
|
3446
3446
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
|
|
3447
3447
|
*/
|
|
3448
|
-
marginInlineEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssProperties["marginInlineEnd"] | AnyString>
|
|
3448
|
+
marginInlineEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssProperties["marginInlineEnd"] | AnyString>
|
|
3449
3449
|
/**
|
|
3450
3450
|
* The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
3451
3451
|
*
|
|
@@ -3460,7 +3460,7 @@ marginInlineEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssPropert
|
|
|
3460
3460
|
*
|
|
3461
3461
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
|
|
3462
3462
|
*/
|
|
3463
|
-
marginInlineStart?: ConditionalValue<UtilityValues["marginInlineStart"] | CssProperties["marginInlineStart"] | AnyString>
|
|
3463
|
+
marginInlineStart?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | CssProperties["marginInlineStart"] | AnyString>
|
|
3464
3464
|
/**
|
|
3465
3465
|
* The **`margin-left`** CSS property sets the margin area on the left side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
|
|
3466
3466
|
*
|
|
@@ -3474,7 +3474,7 @@ marginInlineStart?: ConditionalValue<UtilityValues["marginInlineStart"] | CssPro
|
|
|
3474
3474
|
*
|
|
3475
3475
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-left
|
|
3476
3476
|
*/
|
|
3477
|
-
marginLeft?: ConditionalValue<UtilityValues["marginLeft"] | CssProperties["marginLeft"] | AnyString>
|
|
3477
|
+
marginLeft?: ConditionalValue<UtilityValues["marginLeft"] | CssVars | CssProperties["marginLeft"] | AnyString>
|
|
3478
3478
|
/**
|
|
3479
3479
|
* The **`margin-right`** CSS property sets the margin area on the right side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
|
|
3480
3480
|
*
|
|
@@ -3488,7 +3488,7 @@ marginLeft?: ConditionalValue<UtilityValues["marginLeft"] | CssProperties["margi
|
|
|
3488
3488
|
*
|
|
3489
3489
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-right
|
|
3490
3490
|
*/
|
|
3491
|
-
marginRight?: ConditionalValue<UtilityValues["marginRight"] | CssProperties["marginRight"] | AnyString>
|
|
3491
|
+
marginRight?: ConditionalValue<UtilityValues["marginRight"] | CssVars | CssProperties["marginRight"] | AnyString>
|
|
3492
3492
|
/**
|
|
3493
3493
|
* The **`margin-top`** CSS property sets the margin area on the top of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
|
|
3494
3494
|
*
|
|
@@ -3502,7 +3502,7 @@ marginRight?: ConditionalValue<UtilityValues["marginRight"] | CssProperties["mar
|
|
|
3502
3502
|
*
|
|
3503
3503
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-top
|
|
3504
3504
|
*/
|
|
3505
|
-
marginTop?: ConditionalValue<UtilityValues["marginTop"] | CssProperties["marginTop"] | AnyString>
|
|
3505
|
+
marginTop?: ConditionalValue<UtilityValues["marginTop"] | CssVars | CssProperties["marginTop"] | AnyString>
|
|
3506
3506
|
/**
|
|
3507
3507
|
* The `margin-trim` property allows the container to trim the margins of its children where they adjoin the container's edges.
|
|
3508
3508
|
*
|
|
@@ -3827,7 +3827,7 @@ mathStyle?: ConditionalValue<CssProperties["mathStyle"] | AnyString>
|
|
|
3827
3827
|
*
|
|
3828
3828
|
* @see https://developer.mozilla.org/docs/Web/CSS/max-block-size
|
|
3829
3829
|
*/
|
|
3830
|
-
maxBlockSize?: ConditionalValue<UtilityValues["maxBlockSize"] | CssProperties["maxBlockSize"] | AnyString>
|
|
3830
|
+
maxBlockSize?: ConditionalValue<UtilityValues["maxBlockSize"] | CssVars | CssProperties["maxBlockSize"] | AnyString>
|
|
3831
3831
|
/**
|
|
3832
3832
|
* The **`max-height`** CSS property sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `max-height`.
|
|
3833
3833
|
*
|
|
@@ -3841,7 +3841,7 @@ maxBlockSize?: ConditionalValue<UtilityValues["maxBlockSize"] | CssProperties["m
|
|
|
3841
3841
|
*
|
|
3842
3842
|
* @see https://developer.mozilla.org/docs/Web/CSS/max-height
|
|
3843
3843
|
*/
|
|
3844
|
-
maxHeight?: ConditionalValue<UtilityValues["maxHeight"] | CssProperties["maxHeight"] | AnyString>
|
|
3844
|
+
maxHeight?: ConditionalValue<UtilityValues["maxHeight"] | CssVars | CssProperties["maxHeight"] | AnyString>
|
|
3845
3845
|
/**
|
|
3846
3846
|
* The **`max-inline-size`** CSS property defines the horizontal or vertical maximum size of an element's block, depending on its writing mode. It corresponds to either the `max-width` or the `max-height` property, depending on the value of `writing-mode`.
|
|
3847
3847
|
*
|
|
@@ -3856,7 +3856,7 @@ maxHeight?: ConditionalValue<UtilityValues["maxHeight"] | CssProperties["maxHeig
|
|
|
3856
3856
|
*
|
|
3857
3857
|
* @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size
|
|
3858
3858
|
*/
|
|
3859
|
-
maxInlineSize?: ConditionalValue<UtilityValues["maxInlineSize"] | CssProperties["maxInlineSize"] | AnyString>
|
|
3859
|
+
maxInlineSize?: ConditionalValue<UtilityValues["maxInlineSize"] | CssVars | CssProperties["maxInlineSize"] | AnyString>
|
|
3860
3860
|
/**
|
|
3861
3861
|
* **Syntax**: `none | <integer>`
|
|
3862
3862
|
*
|
|
@@ -3876,7 +3876,7 @@ maxLines?: ConditionalValue<CssProperties["maxLines"] | AnyString>
|
|
|
3876
3876
|
*
|
|
3877
3877
|
* @see https://developer.mozilla.org/docs/Web/CSS/max-width
|
|
3878
3878
|
*/
|
|
3879
|
-
maxWidth?: ConditionalValue<UtilityValues["maxWidth"] | CssProperties["maxWidth"] | AnyString>
|
|
3879
|
+
maxWidth?: ConditionalValue<UtilityValues["maxWidth"] | CssVars | CssProperties["maxWidth"] | AnyString>
|
|
3880
3880
|
/**
|
|
3881
3881
|
* The **`min-block-size`** CSS property defines the minimum horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.
|
|
3882
3882
|
*
|
|
@@ -3890,7 +3890,7 @@ maxWidth?: ConditionalValue<UtilityValues["maxWidth"] | CssProperties["maxWidth"
|
|
|
3890
3890
|
*
|
|
3891
3891
|
* @see https://developer.mozilla.org/docs/Web/CSS/min-block-size
|
|
3892
3892
|
*/
|
|
3893
|
-
minBlockSize?: ConditionalValue<UtilityValues["minBlockSize"] | CssProperties["minBlockSize"] | AnyString>
|
|
3893
|
+
minBlockSize?: ConditionalValue<UtilityValues["minBlockSize"] | CssVars | CssProperties["minBlockSize"] | AnyString>
|
|
3894
3894
|
/**
|
|
3895
3895
|
* The **`min-height`** CSS property sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `min-height`.
|
|
3896
3896
|
*
|
|
@@ -3904,7 +3904,7 @@ minBlockSize?: ConditionalValue<UtilityValues["minBlockSize"] | CssProperties["m
|
|
|
3904
3904
|
*
|
|
3905
3905
|
* @see https://developer.mozilla.org/docs/Web/CSS/min-height
|
|
3906
3906
|
*/
|
|
3907
|
-
minHeight?: ConditionalValue<UtilityValues["minHeight"] | CssProperties["minHeight"] | AnyString>
|
|
3907
|
+
minHeight?: ConditionalValue<UtilityValues["minHeight"] | CssVars | CssProperties["minHeight"] | AnyString>
|
|
3908
3908
|
/**
|
|
3909
3909
|
* The **`min-inline-size`** CSS property defines the horizontal or vertical minimal size of an element's block, depending on its writing mode. It corresponds to either the `min-width` or the `min-height` property, depending on the value of `writing-mode`.
|
|
3910
3910
|
*
|
|
@@ -3918,7 +3918,7 @@ minHeight?: ConditionalValue<UtilityValues["minHeight"] | CssProperties["minHeig
|
|
|
3918
3918
|
*
|
|
3919
3919
|
* @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size
|
|
3920
3920
|
*/
|
|
3921
|
-
minInlineSize?: ConditionalValue<UtilityValues["minInlineSize"] | CssProperties["minInlineSize"] | AnyString>
|
|
3921
|
+
minInlineSize?: ConditionalValue<UtilityValues["minInlineSize"] | CssVars | CssProperties["minInlineSize"] | AnyString>
|
|
3922
3922
|
/**
|
|
3923
3923
|
* The **`min-width`** CSS property sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `min-width`.
|
|
3924
3924
|
*
|
|
@@ -3932,7 +3932,7 @@ minInlineSize?: ConditionalValue<UtilityValues["minInlineSize"] | CssProperties[
|
|
|
3932
3932
|
*
|
|
3933
3933
|
* @see https://developer.mozilla.org/docs/Web/CSS/min-width
|
|
3934
3934
|
*/
|
|
3935
|
-
minWidth?: ConditionalValue<UtilityValues["minWidth"] | CssProperties["minWidth"] | AnyString>
|
|
3935
|
+
minWidth?: ConditionalValue<UtilityValues["minWidth"] | CssVars | CssProperties["minWidth"] | AnyString>
|
|
3936
3936
|
/**
|
|
3937
3937
|
* The **`mix-blend-mode`** CSS property sets how an element's content should blend with the content of the element's parent and the element's background.
|
|
3938
3938
|
*
|
|
@@ -4111,7 +4111,7 @@ orphans?: ConditionalValue<CssProperties["orphans"] | AnyString>
|
|
|
4111
4111
|
*
|
|
4112
4112
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline
|
|
4113
4113
|
*/
|
|
4114
|
-
outline?: ConditionalValue<UtilityValues["outline"] | CssProperties["outline"] | AnyString>
|
|
4114
|
+
outline?: ConditionalValue<UtilityValues["outline"] | CssVars | CssProperties["outline"] | AnyString>
|
|
4115
4115
|
/**
|
|
4116
4116
|
* The **`outline-color`** CSS property sets the color of an element's outline.
|
|
4117
4117
|
*
|
|
@@ -4125,7 +4125,7 @@ outline?: ConditionalValue<UtilityValues["outline"] | CssProperties["outline"] |
|
|
|
4125
4125
|
*
|
|
4126
4126
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline-color
|
|
4127
4127
|
*/
|
|
4128
|
-
outlineColor?: ConditionalValue<UtilityValues["outlineColor"] | CssProperties["outlineColor"] | AnyString>
|
|
4128
|
+
outlineColor?: ConditionalValue<UtilityValues["outlineColor"] | CssVars | CssProperties["outlineColor"] | AnyString>
|
|
4129
4129
|
/**
|
|
4130
4130
|
* The **`outline-offset`** CSS property sets the amount of space between an outline and the edge or border of an element.
|
|
4131
4131
|
*
|
|
@@ -4139,7 +4139,7 @@ outlineColor?: ConditionalValue<UtilityValues["outlineColor"] | CssProperties["o
|
|
|
4139
4139
|
*
|
|
4140
4140
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline-offset
|
|
4141
4141
|
*/
|
|
4142
|
-
outlineOffset?: ConditionalValue<UtilityValues["outlineOffset"] | CssProperties["outlineOffset"] | AnyString>
|
|
4142
|
+
outlineOffset?: ConditionalValue<UtilityValues["outlineOffset"] | CssVars | CssProperties["outlineOffset"] | AnyString>
|
|
4143
4143
|
/**
|
|
4144
4144
|
* 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`.
|
|
4145
4145
|
*
|
|
@@ -4376,7 +4376,7 @@ overscrollBehaviorY?: ConditionalValue<CssProperties["overscrollBehaviorY"] | An
|
|
|
4376
4376
|
*
|
|
4377
4377
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding
|
|
4378
4378
|
*/
|
|
4379
|
-
padding?: ConditionalValue<UtilityValues["padding"] | CssProperties["padding"] | AnyString>
|
|
4379
|
+
padding?: ConditionalValue<UtilityValues["padding"] | CssVars | CssProperties["padding"] | AnyString>
|
|
4380
4380
|
/**
|
|
4381
4381
|
* The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
|
|
4382
4382
|
*
|
|
@@ -4388,7 +4388,7 @@ padding?: ConditionalValue<UtilityValues["padding"] | CssProperties["padding"] |
|
|
|
4388
4388
|
*
|
|
4389
4389
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-block
|
|
4390
4390
|
*/
|
|
4391
|
-
paddingBlock?: ConditionalValue<UtilityValues["paddingBlock"] | CssProperties["paddingBlock"] | AnyString>
|
|
4391
|
+
paddingBlock?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssProperties["paddingBlock"] | AnyString>
|
|
4392
4392
|
/**
|
|
4393
4393
|
* The **`padding-block-end`** CSS property defines the logical block end padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
|
|
4394
4394
|
*
|
|
@@ -4402,7 +4402,7 @@ paddingBlock?: ConditionalValue<UtilityValues["paddingBlock"] | CssProperties["p
|
|
|
4402
4402
|
*
|
|
4403
4403
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end
|
|
4404
4404
|
*/
|
|
4405
|
-
paddingBlockEnd?: ConditionalValue<UtilityValues["paddingBlockEnd"] | CssProperties["paddingBlockEnd"] | AnyString>
|
|
4405
|
+
paddingBlockEnd?: ConditionalValue<UtilityValues["paddingBlockEnd"] | CssVars | CssProperties["paddingBlockEnd"] | AnyString>
|
|
4406
4406
|
/**
|
|
4407
4407
|
* The **`padding-block-start`** CSS property defines the logical block start padding of an element, which maps to a physical padding depending on the element's writing mode, directionality, and text orientation.
|
|
4408
4408
|
*
|
|
@@ -4416,7 +4416,7 @@ paddingBlockEnd?: ConditionalValue<UtilityValues["paddingBlockEnd"] | CssPropert
|
|
|
4416
4416
|
*
|
|
4417
4417
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start
|
|
4418
4418
|
*/
|
|
4419
|
-
paddingBlockStart?: ConditionalValue<UtilityValues["paddingBlockStart"] | CssProperties["paddingBlockStart"] | AnyString>
|
|
4419
|
+
paddingBlockStart?: ConditionalValue<UtilityValues["paddingBlockStart"] | CssVars | CssProperties["paddingBlockStart"] | AnyString>
|
|
4420
4420
|
/**
|
|
4421
4421
|
* The **`padding-bottom`** CSS property sets the height of the padding area on the bottom of an element.
|
|
4422
4422
|
*
|
|
@@ -4430,7 +4430,7 @@ paddingBlockStart?: ConditionalValue<UtilityValues["paddingBlockStart"] | CssPro
|
|
|
4430
4430
|
*
|
|
4431
4431
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-bottom
|
|
4432
4432
|
*/
|
|
4433
|
-
paddingBottom?: ConditionalValue<UtilityValues["paddingBottom"] | CssProperties["paddingBottom"] | AnyString>
|
|
4433
|
+
paddingBottom?: ConditionalValue<UtilityValues["paddingBottom"] | CssVars | CssProperties["paddingBottom"] | AnyString>
|
|
4434
4434
|
/**
|
|
4435
4435
|
* The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
|
|
4436
4436
|
*
|
|
@@ -4442,7 +4442,7 @@ paddingBottom?: ConditionalValue<UtilityValues["paddingBottom"] | CssProperties[
|
|
|
4442
4442
|
*
|
|
4443
4443
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
|
|
4444
4444
|
*/
|
|
4445
|
-
paddingInline?: ConditionalValue<UtilityValues["paddingInline"] | CssProperties["paddingInline"] | AnyString>
|
|
4445
|
+
paddingInline?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProperties["paddingInline"] | AnyString>
|
|
4446
4446
|
/**
|
|
4447
4447
|
* 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.
|
|
4448
4448
|
*
|
|
@@ -4457,7 +4457,7 @@ paddingInline?: ConditionalValue<UtilityValues["paddingInline"] | CssProperties[
|
|
|
4457
4457
|
*
|
|
4458
4458
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
|
|
4459
4459
|
*/
|
|
4460
|
-
paddingInlineEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssProperties["paddingInlineEnd"] | AnyString>
|
|
4460
|
+
paddingInlineEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssProperties["paddingInlineEnd"] | AnyString>
|
|
4461
4461
|
/**
|
|
4462
4462
|
* 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.
|
|
4463
4463
|
*
|
|
@@ -4472,7 +4472,7 @@ paddingInlineEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssPrope
|
|
|
4472
4472
|
*
|
|
4473
4473
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
|
|
4474
4474
|
*/
|
|
4475
|
-
paddingInlineStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssProperties["paddingInlineStart"] | AnyString>
|
|
4475
|
+
paddingInlineStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars | CssProperties["paddingInlineStart"] | AnyString>
|
|
4476
4476
|
/**
|
|
4477
4477
|
* The **`padding-left`** CSS property sets the width of the padding area to the left of an element.
|
|
4478
4478
|
*
|
|
@@ -4486,7 +4486,7 @@ paddingInlineStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssP
|
|
|
4486
4486
|
*
|
|
4487
4487
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-left
|
|
4488
4488
|
*/
|
|
4489
|
-
paddingLeft?: ConditionalValue<UtilityValues["paddingLeft"] | CssProperties["paddingLeft"] | AnyString>
|
|
4489
|
+
paddingLeft?: ConditionalValue<UtilityValues["paddingLeft"] | CssVars | CssProperties["paddingLeft"] | AnyString>
|
|
4490
4490
|
/**
|
|
4491
4491
|
* The **`padding-right`** CSS property sets the width of the padding area on the right of an element.
|
|
4492
4492
|
*
|
|
@@ -4500,7 +4500,7 @@ paddingLeft?: ConditionalValue<UtilityValues["paddingLeft"] | CssProperties["pad
|
|
|
4500
4500
|
*
|
|
4501
4501
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-right
|
|
4502
4502
|
*/
|
|
4503
|
-
paddingRight?: ConditionalValue<UtilityValues["paddingRight"] | CssProperties["paddingRight"] | AnyString>
|
|
4503
|
+
paddingRight?: ConditionalValue<UtilityValues["paddingRight"] | CssVars | CssProperties["paddingRight"] | AnyString>
|
|
4504
4504
|
/**
|
|
4505
4505
|
* The **`padding-top`** CSS property sets the height of the padding area on the top of an element.
|
|
4506
4506
|
*
|
|
@@ -4514,7 +4514,7 @@ paddingRight?: ConditionalValue<UtilityValues["paddingRight"] | CssProperties["p
|
|
|
4514
4514
|
*
|
|
4515
4515
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-top
|
|
4516
4516
|
*/
|
|
4517
|
-
paddingTop?: ConditionalValue<UtilityValues["paddingTop"] | CssProperties["paddingTop"] | AnyString>
|
|
4517
|
+
paddingTop?: ConditionalValue<UtilityValues["paddingTop"] | CssVars | CssProperties["paddingTop"] | AnyString>
|
|
4518
4518
|
/**
|
|
4519
4519
|
* The **`page`** CSS property is used to specify the named page, a specific type of page defined by the `@page` at-rule.
|
|
4520
4520
|
*
|
|
@@ -4735,7 +4735,7 @@ resize?: ConditionalValue<CssVars | CssProperties["resize"] | AnyString>
|
|
|
4735
4735
|
*
|
|
4736
4736
|
* @see https://developer.mozilla.org/docs/Web/CSS/right
|
|
4737
4737
|
*/
|
|
4738
|
-
right?: ConditionalValue<UtilityValues["right"] | CssProperties["right"] | AnyString>
|
|
4738
|
+
right?: ConditionalValue<UtilityValues["right"] | CssVars | CssProperties["right"] | AnyString>
|
|
4739
4739
|
/**
|
|
4740
4740
|
* The **`rotate`** CSS property allows you to specify rotation 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` property.
|
|
4741
4741
|
*
|
|
@@ -4749,7 +4749,7 @@ right?: ConditionalValue<UtilityValues["right"] | CssProperties["right"] | AnySt
|
|
|
4749
4749
|
*
|
|
4750
4750
|
* @see https://developer.mozilla.org/docs/Web/CSS/rotate
|
|
4751
4751
|
*/
|
|
4752
|
-
rotate?: ConditionalValue<CssProperties["rotate"] | AnyString>
|
|
4752
|
+
rotate?: ConditionalValue<UtilityValues["rotate"] | CssVars | CssProperties["rotate"] | AnyString>
|
|
4753
4753
|
/**
|
|
4754
4754
|
* The **`row-gap`** CSS property sets the size of the gap (gutter) between an element's rows.
|
|
4755
4755
|
*
|
|
@@ -4763,7 +4763,7 @@ rotate?: ConditionalValue<CssProperties["rotate"] | AnyString>
|
|
|
4763
4763
|
*
|
|
4764
4764
|
* @see https://developer.mozilla.org/docs/Web/CSS/row-gap
|
|
4765
4765
|
*/
|
|
4766
|
-
rowGap?: ConditionalValue<UtilityValues["rowGap"] | CssProperties["rowGap"] | AnyString>
|
|
4766
|
+
rowGap?: ConditionalValue<UtilityValues["rowGap"] | CssVars | CssProperties["rowGap"] | AnyString>
|
|
4767
4767
|
/**
|
|
4768
4768
|
* The **`ruby-align`** CSS property defines the distribution of the different ruby elements over the base.
|
|
4769
4769
|
*
|
|
@@ -4812,7 +4812,7 @@ rubyPosition?: ConditionalValue<CssProperties["rubyPosition"] | AnyString>
|
|
|
4812
4812
|
*
|
|
4813
4813
|
* @see https://developer.mozilla.org/docs/Web/CSS/scale
|
|
4814
4814
|
*/
|
|
4815
|
-
scale?: ConditionalValue<UtilityValues["scale"] | CssProperties["scale"] | AnyString>
|
|
4815
|
+
scale?: ConditionalValue<UtilityValues["scale"] | CssVars | CssProperties["scale"] | AnyString>
|
|
4816
4816
|
/**
|
|
4817
4817
|
* The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.
|
|
4818
4818
|
*
|
|
@@ -4881,7 +4881,7 @@ scrollBehavior?: ConditionalValue<CssVars | CssProperties["scrollBehavior"] | An
|
|
|
4881
4881
|
*
|
|
4882
4882
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
|
|
4883
4883
|
*/
|
|
4884
|
-
scrollMargin?: ConditionalValue<UtilityValues["scrollMargin"] | CssProperties["scrollMargin"] | AnyString>
|
|
4884
|
+
scrollMargin?: ConditionalValue<UtilityValues["scrollMargin"] | CssVars | CssProperties["scrollMargin"] | AnyString>
|
|
4885
4885
|
/**
|
|
4886
4886
|
* The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.
|
|
4887
4887
|
*
|
|
@@ -4893,7 +4893,7 @@ scrollMargin?: ConditionalValue<UtilityValues["scrollMargin"] | CssProperties["s
|
|
|
4893
4893
|
*
|
|
4894
4894
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
|
|
4895
4895
|
*/
|
|
4896
|
-
scrollMarginBlock?: ConditionalValue<UtilityValues["scrollMarginBlock"] | CssProperties["scrollMarginBlock"] | AnyString>
|
|
4896
|
+
scrollMarginBlock?: ConditionalValue<UtilityValues["scrollMarginBlock"] | CssVars | CssProperties["scrollMarginBlock"] | AnyString>
|
|
4897
4897
|
/**
|
|
4898
4898
|
* 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.
|
|
4899
4899
|
*
|
|
@@ -4907,7 +4907,7 @@ scrollMarginBlock?: ConditionalValue<UtilityValues["scrollMarginBlock"] | CssPro
|
|
|
4907
4907
|
*
|
|
4908
4908
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
|
|
4909
4909
|
*/
|
|
4910
|
-
scrollMarginBlockStart?: ConditionalValue<UtilityValues["scrollMarginBlockStart"] | CssProperties["scrollMarginBlockStart"] | AnyString>
|
|
4910
|
+
scrollMarginBlockStart?: ConditionalValue<UtilityValues["scrollMarginBlockStart"] | CssVars | CssProperties["scrollMarginBlockStart"] | AnyString>
|
|
4911
4911
|
/**
|
|
4912
4912
|
* 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.
|
|
4913
4913
|
*
|
|
@@ -4921,7 +4921,7 @@ scrollMarginBlockStart?: ConditionalValue<UtilityValues["scrollMarginBlockStart"
|
|
|
4921
4921
|
*
|
|
4922
4922
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
|
|
4923
4923
|
*/
|
|
4924
|
-
scrollMarginBlockEnd?: ConditionalValue<UtilityValues["scrollMarginBlockEnd"] | CssProperties["scrollMarginBlockEnd"] | AnyString>
|
|
4924
|
+
scrollMarginBlockEnd?: ConditionalValue<UtilityValues["scrollMarginBlockEnd"] | CssVars | CssProperties["scrollMarginBlockEnd"] | AnyString>
|
|
4925
4925
|
/**
|
|
4926
4926
|
* 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
4927
|
*
|
|
@@ -4936,7 +4936,7 @@ scrollMarginBlockEnd?: ConditionalValue<UtilityValues["scrollMarginBlockEnd"] |
|
|
|
4936
4936
|
*
|
|
4937
4937
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
|
|
4938
4938
|
*/
|
|
4939
|
-
scrollMarginBottom?: ConditionalValue<UtilityValues["scrollMarginBottom"] | CssProperties["scrollMarginBottom"] | AnyString>
|
|
4939
|
+
scrollMarginBottom?: ConditionalValue<UtilityValues["scrollMarginBottom"] | CssVars | CssProperties["scrollMarginBottom"] | AnyString>
|
|
4940
4940
|
/**
|
|
4941
4941
|
* The `scroll-margin-inline` shorthand property sets the scroll margins of an element in the inline dimension.
|
|
4942
4942
|
*
|
|
@@ -4948,7 +4948,7 @@ scrollMarginBottom?: ConditionalValue<UtilityValues["scrollMarginBottom"] | CssP
|
|
|
4948
4948
|
*
|
|
4949
4949
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
|
|
4950
4950
|
*/
|
|
4951
|
-
scrollMarginInline?: ConditionalValue<UtilityValues["scrollMarginInline"] | CssProperties["scrollMarginInline"] | AnyString>
|
|
4951
|
+
scrollMarginInline?: ConditionalValue<UtilityValues["scrollMarginInline"] | CssVars | CssProperties["scrollMarginInline"] | AnyString>
|
|
4952
4952
|
/**
|
|
4953
4953
|
* 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.
|
|
4954
4954
|
*
|
|
@@ -4962,7 +4962,7 @@ scrollMarginInline?: ConditionalValue<UtilityValues["scrollMarginInline"] | CssP
|
|
|
4962
4962
|
*
|
|
4963
4963
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
|
|
4964
4964
|
*/
|
|
4965
|
-
scrollMarginInlineStart?: ConditionalValue<UtilityValues["scrollMarginInlineStart"] | CssProperties["scrollMarginInlineStart"] | AnyString>
|
|
4965
|
+
scrollMarginInlineStart?: ConditionalValue<UtilityValues["scrollMarginInlineStart"] | CssVars | CssProperties["scrollMarginInlineStart"] | AnyString>
|
|
4966
4966
|
/**
|
|
4967
4967
|
* 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.
|
|
4968
4968
|
*
|
|
@@ -4976,7 +4976,7 @@ scrollMarginInlineStart?: ConditionalValue<UtilityValues["scrollMarginInlineStar
|
|
|
4976
4976
|
*
|
|
4977
4977
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
|
|
4978
4978
|
*/
|
|
4979
|
-
scrollMarginInlineEnd?: ConditionalValue<UtilityValues["scrollMarginInlineEnd"] | CssProperties["scrollMarginInlineEnd"] | AnyString>
|
|
4979
|
+
scrollMarginInlineEnd?: ConditionalValue<UtilityValues["scrollMarginInlineEnd"] | CssVars | CssProperties["scrollMarginInlineEnd"] | AnyString>
|
|
4980
4980
|
/**
|
|
4981
4981
|
* 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
4982
|
*
|
|
@@ -4991,7 +4991,7 @@ scrollMarginInlineEnd?: ConditionalValue<UtilityValues["scrollMarginInlineEnd"]
|
|
|
4991
4991
|
*
|
|
4992
4992
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
|
|
4993
4993
|
*/
|
|
4994
|
-
scrollMarginLeft?: ConditionalValue<UtilityValues["scrollMarginLeft"] | CssProperties["scrollMarginLeft"] | AnyString>
|
|
4994
|
+
scrollMarginLeft?: ConditionalValue<UtilityValues["scrollMarginLeft"] | CssVars | CssProperties["scrollMarginLeft"] | AnyString>
|
|
4995
4995
|
/**
|
|
4996
4996
|
* The `scroll-margin-right` property defines the right 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.
|
|
4997
4997
|
*
|
|
@@ -5006,7 +5006,7 @@ scrollMarginLeft?: ConditionalValue<UtilityValues["scrollMarginLeft"] | CssPrope
|
|
|
5006
5006
|
*
|
|
5007
5007
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
|
|
5008
5008
|
*/
|
|
5009
|
-
scrollMarginRight?: ConditionalValue<UtilityValues["scrollMarginRight"] | CssProperties["scrollMarginRight"] | AnyString>
|
|
5009
|
+
scrollMarginRight?: ConditionalValue<UtilityValues["scrollMarginRight"] | CssVars | CssProperties["scrollMarginRight"] | AnyString>
|
|
5010
5010
|
/**
|
|
5011
5011
|
* The `scroll-margin-top` property defines the top 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.
|
|
5012
5012
|
*
|
|
@@ -5021,7 +5021,7 @@ scrollMarginRight?: ConditionalValue<UtilityValues["scrollMarginRight"] | CssPro
|
|
|
5021
5021
|
*
|
|
5022
5022
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
|
|
5023
5023
|
*/
|
|
5024
|
-
scrollMarginTop?: ConditionalValue<UtilityValues["scrollMarginTop"] | CssProperties["scrollMarginTop"] | AnyString>
|
|
5024
|
+
scrollMarginTop?: ConditionalValue<UtilityValues["scrollMarginTop"] | CssVars | CssProperties["scrollMarginTop"] | AnyString>
|
|
5025
5025
|
/**
|
|
5026
5026
|
* The **`scroll-padding`** shorthand property sets scroll padding on all sides of an element at once, much like the `padding` property does for padding on an element.
|
|
5027
5027
|
*
|
|
@@ -5033,7 +5033,7 @@ scrollMarginTop?: ConditionalValue<UtilityValues["scrollMarginTop"] | CssPropert
|
|
|
5033
5033
|
*
|
|
5034
5034
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding
|
|
5035
5035
|
*/
|
|
5036
|
-
scrollPadding?: ConditionalValue<UtilityValues["scrollPadding"] | CssProperties["scrollPadding"] | AnyString>
|
|
5036
|
+
scrollPadding?: ConditionalValue<UtilityValues["scrollPadding"] | CssVars | CssProperties["scrollPadding"] | AnyString>
|
|
5037
5037
|
/**
|
|
5038
5038
|
* The `scroll-padding-block` shorthand property sets the scroll padding of an element in the block dimension.
|
|
5039
5039
|
*
|
|
@@ -5045,7 +5045,7 @@ scrollPadding?: ConditionalValue<UtilityValues["scrollPadding"] | CssProperties[
|
|
|
5045
5045
|
*
|
|
5046
5046
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
|
|
5047
5047
|
*/
|
|
5048
|
-
scrollPaddingBlock?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssProperties["scrollPaddingBlock"] | AnyString>
|
|
5048
|
+
scrollPaddingBlock?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssVars | CssProperties["scrollPaddingBlock"] | AnyString>
|
|
5049
5049
|
/**
|
|
5050
5050
|
* 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.
|
|
5051
5051
|
*
|
|
@@ -5059,7 +5059,7 @@ scrollPaddingBlock?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssP
|
|
|
5059
5059
|
*
|
|
5060
5060
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
|
|
5061
5061
|
*/
|
|
5062
|
-
scrollPaddingBlockStart?: ConditionalValue<UtilityValues["scrollPaddingBlockStart"] | CssProperties["scrollPaddingBlockStart"] | AnyString>
|
|
5062
|
+
scrollPaddingBlockStart?: ConditionalValue<UtilityValues["scrollPaddingBlockStart"] | CssVars | CssProperties["scrollPaddingBlockStart"] | AnyString>
|
|
5063
5063
|
/**
|
|
5064
5064
|
* 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.
|
|
5065
5065
|
*
|
|
@@ -5073,7 +5073,7 @@ scrollPaddingBlockStart?: ConditionalValue<UtilityValues["scrollPaddingBlockStar
|
|
|
5073
5073
|
*
|
|
5074
5074
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
|
|
5075
5075
|
*/
|
|
5076
|
-
scrollPaddingBlockEnd?: ConditionalValue<UtilityValues["scrollPaddingBlockEnd"] | CssProperties["scrollPaddingBlockEnd"] | AnyString>
|
|
5076
|
+
scrollPaddingBlockEnd?: ConditionalValue<UtilityValues["scrollPaddingBlockEnd"] | CssVars | CssProperties["scrollPaddingBlockEnd"] | AnyString>
|
|
5077
5077
|
/**
|
|
5078
5078
|
* 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
5079
|
*
|
|
@@ -5087,7 +5087,7 @@ scrollPaddingBlockEnd?: ConditionalValue<UtilityValues["scrollPaddingBlockEnd"]
|
|
|
5087
5087
|
*
|
|
5088
5088
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom
|
|
5089
5089
|
*/
|
|
5090
|
-
scrollPaddingBottom?: ConditionalValue<UtilityValues["scrollPaddingBottom"] | CssProperties["scrollPaddingBottom"] | AnyString>
|
|
5090
|
+
scrollPaddingBottom?: ConditionalValue<UtilityValues["scrollPaddingBottom"] | CssVars | CssProperties["scrollPaddingBottom"] | AnyString>
|
|
5091
5091
|
/**
|
|
5092
5092
|
* The `scroll-padding-inline` shorthand property sets the scroll padding of an element in the inline dimension.
|
|
5093
5093
|
*
|
|
@@ -5099,7 +5099,7 @@ scrollPaddingBottom?: ConditionalValue<UtilityValues["scrollPaddingBottom"] | Cs
|
|
|
5099
5099
|
*
|
|
5100
5100
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
|
|
5101
5101
|
*/
|
|
5102
|
-
scrollPaddingInline?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssProperties["scrollPaddingInline"] | AnyString>
|
|
5102
|
+
scrollPaddingInline?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssVars | CssProperties["scrollPaddingInline"] | AnyString>
|
|
5103
5103
|
/**
|
|
5104
5104
|
* 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.
|
|
5105
5105
|
*
|
|
@@ -5113,7 +5113,7 @@ scrollPaddingInline?: ConditionalValue<UtilityValues["scrollPaddingInline"] | Cs
|
|
|
5113
5113
|
*
|
|
5114
5114
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
|
|
5115
5115
|
*/
|
|
5116
|
-
scrollPaddingInlineStart?: ConditionalValue<UtilityValues["scrollPaddingInlineStart"] | CssProperties["scrollPaddingInlineStart"] | AnyString>
|
|
5116
|
+
scrollPaddingInlineStart?: ConditionalValue<UtilityValues["scrollPaddingInlineStart"] | CssVars | CssProperties["scrollPaddingInlineStart"] | AnyString>
|
|
5117
5117
|
/**
|
|
5118
5118
|
* 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.
|
|
5119
5119
|
*
|
|
@@ -5127,7 +5127,7 @@ scrollPaddingInlineStart?: ConditionalValue<UtilityValues["scrollPaddingInlineSt
|
|
|
5127
5127
|
*
|
|
5128
5128
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
|
|
5129
5129
|
*/
|
|
5130
|
-
scrollPaddingInlineEnd?: ConditionalValue<UtilityValues["scrollPaddingInlineEnd"] | CssProperties["scrollPaddingInlineEnd"] | AnyString>
|
|
5130
|
+
scrollPaddingInlineEnd?: ConditionalValue<UtilityValues["scrollPaddingInlineEnd"] | CssVars | CssProperties["scrollPaddingInlineEnd"] | AnyString>
|
|
5131
5131
|
/**
|
|
5132
5132
|
* 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
5133
|
*
|
|
@@ -5141,7 +5141,7 @@ scrollPaddingInlineEnd?: ConditionalValue<UtilityValues["scrollPaddingInlineEnd"
|
|
|
5141
5141
|
*
|
|
5142
5142
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left
|
|
5143
5143
|
*/
|
|
5144
|
-
scrollPaddingLeft?: ConditionalValue<UtilityValues["scrollPaddingLeft"] | CssProperties["scrollPaddingLeft"] | AnyString>
|
|
5144
|
+
scrollPaddingLeft?: ConditionalValue<UtilityValues["scrollPaddingLeft"] | CssVars | CssProperties["scrollPaddingLeft"] | AnyString>
|
|
5145
5145
|
/**
|
|
5146
5146
|
* The `scroll-padding-right` property defines offsets for the right 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.
|
|
5147
5147
|
*
|
|
@@ -5155,7 +5155,7 @@ scrollPaddingLeft?: ConditionalValue<UtilityValues["scrollPaddingLeft"] | CssPro
|
|
|
5155
5155
|
*
|
|
5156
5156
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right
|
|
5157
5157
|
*/
|
|
5158
|
-
scrollPaddingRight?: ConditionalValue<UtilityValues["scrollPaddingRight"] | CssProperties["scrollPaddingRight"] | AnyString>
|
|
5158
|
+
scrollPaddingRight?: ConditionalValue<UtilityValues["scrollPaddingRight"] | CssVars | CssProperties["scrollPaddingRight"] | AnyString>
|
|
5159
5159
|
/**
|
|
5160
5160
|
* The **`scroll-padding-top`** property defines offsets for the top 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.
|
|
5161
5161
|
*
|
|
@@ -5169,7 +5169,7 @@ scrollPaddingRight?: ConditionalValue<UtilityValues["scrollPaddingRight"] | CssP
|
|
|
5169
5169
|
*
|
|
5170
5170
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top
|
|
5171
5171
|
*/
|
|
5172
|
-
scrollPaddingTop?: ConditionalValue<UtilityValues["scrollPaddingTop"] | CssProperties["scrollPaddingTop"] | AnyString>
|
|
5172
|
+
scrollPaddingTop?: ConditionalValue<UtilityValues["scrollPaddingTop"] | CssVars | CssProperties["scrollPaddingTop"] | AnyString>
|
|
5173
5173
|
/**
|
|
5174
5174
|
* The `scroll-snap-align` property specifies the box's snap position as an alignment of its snap area (as the alignment subject) within its snap container's snapport (as the alignment container). The two values specify the snapping alignment in the block axis and inline axis, respectively. If only one value is specified, the second value defaults to the same value.
|
|
5175
5175
|
*
|
|
@@ -5216,7 +5216,7 @@ scrollSnapStop?: ConditionalValue<CssProperties["scrollSnapStop"] | AnyString>
|
|
|
5216
5216
|
*
|
|
5217
5217
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type
|
|
5218
5218
|
*/
|
|
5219
|
-
scrollSnapType?: ConditionalValue<UtilityValues["scrollSnapType"] | CssProperties["scrollSnapType"] | AnyString>
|
|
5219
|
+
scrollSnapType?: ConditionalValue<UtilityValues["scrollSnapType"] | CssVars | CssProperties["scrollSnapType"] | AnyString>
|
|
5220
5220
|
scrollSnapTypeX?: ConditionalValue<CssProperties["scrollSnapTypeX"] | AnyString>
|
|
5221
5221
|
scrollSnapTypeY?: ConditionalValue<CssProperties["scrollSnapTypeY"] | AnyString>
|
|
5222
5222
|
/**
|
|
@@ -5399,7 +5399,7 @@ textDecoration?: ConditionalValue<CssProperties["textDecoration"] | AnyString>
|
|
|
5399
5399
|
*
|
|
5400
5400
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color
|
|
5401
5401
|
*/
|
|
5402
|
-
textDecorationColor?: ConditionalValue<UtilityValues["textDecorationColor"] | CssProperties["textDecorationColor"] | AnyString>
|
|
5402
|
+
textDecorationColor?: ConditionalValue<UtilityValues["textDecorationColor"] | CssVars | CssProperties["textDecorationColor"] | AnyString>
|
|
5403
5403
|
/**
|
|
5404
5404
|
* 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.
|
|
5405
5405
|
*
|
|
@@ -5500,7 +5500,7 @@ textEmphasis?: ConditionalValue<CssProperties["textEmphasis"] | AnyString>
|
|
|
5500
5500
|
*
|
|
5501
5501
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color
|
|
5502
5502
|
*/
|
|
5503
|
-
textEmphasisColor?: ConditionalValue<UtilityValues["textEmphasisColor"] | CssProperties["textEmphasisColor"] | AnyString>
|
|
5503
|
+
textEmphasisColor?: ConditionalValue<UtilityValues["textEmphasisColor"] | CssVars | CssProperties["textEmphasisColor"] | AnyString>
|
|
5504
5504
|
/**
|
|
5505
5505
|
* The **`text-emphasis-position`** CSS property sets where emphasis marks are drawn. Like ruby text, if there isn't enough room for emphasis marks, the line height is increased.
|
|
5506
5506
|
*
|
|
@@ -5544,7 +5544,7 @@ textEmphasisStyle?: ConditionalValue<CssProperties["textEmphasisStyle"] | AnyStr
|
|
|
5544
5544
|
*
|
|
5545
5545
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-indent
|
|
5546
5546
|
*/
|
|
5547
|
-
textIndent?: ConditionalValue<UtilityValues["textIndent"] | CssProperties["textIndent"] | AnyString>
|
|
5547
|
+
textIndent?: ConditionalValue<UtilityValues["textIndent"] | CssVars | CssProperties["textIndent"] | AnyString>
|
|
5548
5548
|
/**
|
|
5549
5549
|
* The **`text-justify`** CSS property sets what type of justification should be applied to text when `text-align``: justify;` is set on an element.
|
|
5550
5550
|
*
|
|
@@ -5615,7 +5615,7 @@ textRendering?: ConditionalValue<CssProperties["textRendering"] | AnyString>
|
|
|
5615
5615
|
*
|
|
5616
5616
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-shadow
|
|
5617
5617
|
*/
|
|
5618
|
-
textShadow?: ConditionalValue<UtilityValues["textShadow"] | CssProperties["textShadow"] | AnyString>
|
|
5618
|
+
textShadow?: ConditionalValue<UtilityValues["textShadow"] | CssVars | CssProperties["textShadow"] | AnyString>
|
|
5619
5619
|
/**
|
|
5620
5620
|
* The **`text-size-adjust`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property.
|
|
5621
5621
|
*
|
|
@@ -5686,7 +5686,7 @@ textUnderlinePosition?: ConditionalValue<CssProperties["textUnderlinePosition"]
|
|
|
5686
5686
|
*
|
|
5687
5687
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-wrap
|
|
5688
5688
|
*/
|
|
5689
|
-
textWrap?: ConditionalValue<UtilityValues["textWrap"] | CssProperties["textWrap"] | AnyString>
|
|
5689
|
+
textWrap?: ConditionalValue<UtilityValues["textWrap"] | CssVars | CssProperties["textWrap"] | AnyString>
|
|
5690
5690
|
/**
|
|
5691
5691
|
* The **`timeline-scope`** CSS property modifies the scope of a named animation timeline.
|
|
5692
5692
|
*
|
|
@@ -5714,7 +5714,7 @@ timelineScope?: ConditionalValue<CssProperties["timelineScope"] | AnyString>
|
|
|
5714
5714
|
*
|
|
5715
5715
|
* @see https://developer.mozilla.org/docs/Web/CSS/top
|
|
5716
5716
|
*/
|
|
5717
|
-
top?: ConditionalValue<UtilityValues["top"] | CssProperties["top"] | AnyString>
|
|
5717
|
+
top?: ConditionalValue<UtilityValues["top"] | CssVars | CssProperties["top"] | AnyString>
|
|
5718
5718
|
/**
|
|
5719
5719
|
* The **`touch-action`** CSS property sets how an element's region can be manipulated by a touchscreen user (for example, by zooming features built into the browser).
|
|
5720
5720
|
*
|
|
@@ -5801,7 +5801,7 @@ transformStyle?: ConditionalValue<CssVars | CssProperties["transformStyle"] | An
|
|
|
5801
5801
|
*
|
|
5802
5802
|
* @see https://developer.mozilla.org/docs/Web/CSS/transition
|
|
5803
5803
|
*/
|
|
5804
|
-
transition?: ConditionalValue<UtilityValues["transition"] | CssProperties["transition"] | AnyString>
|
|
5804
|
+
transition?: ConditionalValue<UtilityValues["transition"] | CssVars | CssProperties["transition"] | AnyString>
|
|
5805
5805
|
/**
|
|
5806
5806
|
* The **`transition-behavior`** CSS property specifies whether transitions will be started for properties whose animation behavior is discrete.
|
|
5807
5807
|
*
|
|
@@ -5830,7 +5830,7 @@ transitionBehavior?: ConditionalValue<CssProperties["transitionBehavior"] | AnyS
|
|
|
5830
5830
|
*
|
|
5831
5831
|
* @see https://developer.mozilla.org/docs/Web/CSS/transition-delay
|
|
5832
5832
|
*/
|
|
5833
|
-
transitionDelay?: ConditionalValue<UtilityValues["transitionDelay"] | CssProperties["transitionDelay"] | AnyString>
|
|
5833
|
+
transitionDelay?: ConditionalValue<UtilityValues["transitionDelay"] | CssVars | CssProperties["transitionDelay"] | AnyString>
|
|
5834
5834
|
/**
|
|
5835
5835
|
* 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.
|
|
5836
5836
|
*
|
|
@@ -5845,7 +5845,7 @@ transitionDelay?: ConditionalValue<UtilityValues["transitionDelay"] | CssPropert
|
|
|
5845
5845
|
*
|
|
5846
5846
|
* @see https://developer.mozilla.org/docs/Web/CSS/transition-duration
|
|
5847
5847
|
*/
|
|
5848
|
-
transitionDuration?: ConditionalValue<UtilityValues["transitionDuration"] | CssProperties["transitionDuration"] | AnyString>
|
|
5848
|
+
transitionDuration?: ConditionalValue<UtilityValues["transitionDuration"] | CssVars | CssProperties["transitionDuration"] | AnyString>
|
|
5849
5849
|
/**
|
|
5850
5850
|
* The **`transition-property`** CSS property sets the CSS properties to which a transition effect should be applied.
|
|
5851
5851
|
*
|
|
@@ -5875,7 +5875,7 @@ transitionProperty?: ConditionalValue<CssProperties["transitionProperty"] | AnyS
|
|
|
5875
5875
|
*
|
|
5876
5876
|
* @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function
|
|
5877
5877
|
*/
|
|
5878
|
-
transitionTimingFunction?: ConditionalValue<UtilityValues["transitionTimingFunction"] | CssProperties["transitionTimingFunction"] | AnyString>
|
|
5878
|
+
transitionTimingFunction?: ConditionalValue<UtilityValues["transitionTimingFunction"] | CssVars | CssProperties["transitionTimingFunction"] | AnyString>
|
|
5879
5879
|
/**
|
|
5880
5880
|
* The **`translate`** CSS property allows you to specify translation 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.
|
|
5881
5881
|
*
|
|
@@ -5889,7 +5889,7 @@ transitionTimingFunction?: ConditionalValue<UtilityValues["transitionTimingFunct
|
|
|
5889
5889
|
*
|
|
5890
5890
|
* @see https://developer.mozilla.org/docs/Web/CSS/translate
|
|
5891
5891
|
*/
|
|
5892
|
-
translate?: ConditionalValue<UtilityValues["translate"] | CssProperties["translate"] | AnyString>
|
|
5892
|
+
translate?: ConditionalValue<UtilityValues["translate"] | CssVars | CssProperties["translate"] | AnyString>
|
|
5893
5893
|
/**
|
|
5894
5894
|
* The **`unicode-bidi`** CSS property, together with the `direction` property, determines how bidirectional text in a document is handled. For example, if a block of content contains both left-to-right and right-to-left text, the user-agent uses a complex Unicode algorithm to decide how to display the text. The `unicode-bidi` property overrides this algorithm and allows the developer to control the text embedding.
|
|
5895
5895
|
*
|
|
@@ -6070,7 +6070,7 @@ widows?: ConditionalValue<CssProperties["widows"] | AnyString>
|
|
|
6070
6070
|
*
|
|
6071
6071
|
* @see https://developer.mozilla.org/docs/Web/CSS/width
|
|
6072
6072
|
*/
|
|
6073
|
-
width?: ConditionalValue<UtilityValues["width"] | CssProperties["width"] | AnyString>
|
|
6073
|
+
width?: ConditionalValue<UtilityValues["width"] | CssVars | CssProperties["width"] | AnyString>
|
|
6074
6074
|
/**
|
|
6075
6075
|
* The **`will-change`** CSS property hints to browsers how an element is expected to change. Browsers may set up optimizations before an element is actually changed. These kinds of optimizations can increase the responsiveness of a page by doing potentially expensive work before they are actually required.
|
|
6076
6076
|
*
|
|
@@ -6174,7 +6174,7 @@ zoom?: ConditionalValue<CssProperties["zoom"] | AnyString>
|
|
|
6174
6174
|
colorInterpolation?: ConditionalValue<CssProperties["colorInterpolation"] | AnyString>
|
|
6175
6175
|
colorRendering?: ConditionalValue<CssProperties["colorRendering"] | AnyString>
|
|
6176
6176
|
dominantBaseline?: ConditionalValue<CssProperties["dominantBaseline"] | AnyString>
|
|
6177
|
-
fill?: ConditionalValue<UtilityValues["fill"] | CssProperties["fill"] | AnyString>
|
|
6177
|
+
fill?: ConditionalValue<UtilityValues["fill"] | CssVars | CssProperties["fill"] | AnyString>
|
|
6178
6178
|
fillOpacity?: ConditionalValue<CssProperties["fillOpacity"] | AnyString>
|
|
6179
6179
|
fillRule?: ConditionalValue<CssProperties["fillRule"] | AnyString>
|
|
6180
6180
|
floodColor?: ConditionalValue<CssProperties["floodColor"] | AnyString>
|
|
@@ -6188,7 +6188,7 @@ zoom?: ConditionalValue<CssProperties["zoom"] | AnyString>
|
|
|
6188
6188
|
shapeRendering?: ConditionalValue<CssProperties["shapeRendering"] | AnyString>
|
|
6189
6189
|
stopColor?: ConditionalValue<CssProperties["stopColor"] | AnyString>
|
|
6190
6190
|
stopOpacity?: ConditionalValue<CssProperties["stopOpacity"] | AnyString>
|
|
6191
|
-
stroke?: ConditionalValue<UtilityValues["stroke"] | CssProperties["stroke"] | AnyString>
|
|
6191
|
+
stroke?: ConditionalValue<UtilityValues["stroke"] | CssVars | CssProperties["stroke"] | AnyString>
|
|
6192
6192
|
strokeDasharray?: ConditionalValue<CssProperties["strokeDasharray"] | AnyString>
|
|
6193
6193
|
strokeDashoffset?: ConditionalValue<CssProperties["strokeDashoffset"] | AnyString>
|
|
6194
6194
|
strokeLinecap?: ConditionalValue<CssProperties["strokeLinecap"] | AnyString>
|
|
@@ -6223,7 +6223,7 @@ pos?: ConditionalValue<CssProperties["position"] | AnyString>
|
|
|
6223
6223
|
*
|
|
6224
6224
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
|
|
6225
6225
|
*/
|
|
6226
|
-
insetX?: ConditionalValue<UtilityValues["insetInline"] | CssProperties["insetInline"] | AnyString>
|
|
6226
|
+
insetX?: ConditionalValue<UtilityValues["insetInline"] | CssVars | CssProperties["insetInline"] | AnyString>
|
|
6227
6227
|
/**
|
|
6228
6228
|
* The **`inset-block`** CSS property defines the logical block start and end offsets of an element, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top` and `bottom`, or `right` and `left` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
6229
6229
|
*
|
|
@@ -6235,7 +6235,7 @@ insetX?: ConditionalValue<UtilityValues["insetInline"] | CssProperties["insetInl
|
|
|
6235
6235
|
*
|
|
6236
6236
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block
|
|
6237
6237
|
*/
|
|
6238
|
-
insetY?: ConditionalValue<UtilityValues["insetBlock"] | CssProperties["insetBlock"] | AnyString>
|
|
6238
|
+
insetY?: ConditionalValue<UtilityValues["insetBlock"] | CssVars | CssProperties["insetBlock"] | AnyString>
|
|
6239
6239
|
/**
|
|
6240
6240
|
* The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
6241
6241
|
*
|
|
@@ -6249,7 +6249,7 @@ insetY?: ConditionalValue<UtilityValues["insetBlock"] | CssProperties["insetBloc
|
|
|
6249
6249
|
*
|
|
6250
6250
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
|
|
6251
6251
|
*/
|
|
6252
|
-
insetEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssProperties["insetInlineEnd"] | AnyString>
|
|
6252
|
+
insetEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | CssProperties["insetInlineEnd"] | AnyString>
|
|
6253
6253
|
/**
|
|
6254
6254
|
* The **`inset-inline-end`** CSS property defines the logical inline end inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
6255
6255
|
*
|
|
@@ -6263,7 +6263,7 @@ insetEnd?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssProperties["ins
|
|
|
6263
6263
|
*
|
|
6264
6264
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
|
|
6265
6265
|
*/
|
|
6266
|
-
end?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssProperties["insetInlineEnd"] | AnyString>
|
|
6266
|
+
end?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssVars | CssProperties["insetInlineEnd"] | AnyString>
|
|
6267
6267
|
/**
|
|
6268
6268
|
* The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
6269
6269
|
*
|
|
@@ -6277,7 +6277,7 @@ end?: ConditionalValue<UtilityValues["insetInlineEnd"] | CssProperties["insetInl
|
|
|
6277
6277
|
*
|
|
6278
6278
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
|
|
6279
6279
|
*/
|
|
6280
|
-
insetStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssProperties["insetInlineStart"] | AnyString>
|
|
6280
|
+
insetStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssVars | CssProperties["insetInlineStart"] | AnyString>
|
|
6281
6281
|
/**
|
|
6282
6282
|
* The **`inset-inline-start`** CSS property defines the logical inline start inset of an element, which maps to a physical offset depending on the element's writing mode, directionality, and text orientation. It corresponds to the `top`, `right`, `bottom`, or `left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
6283
6283
|
*
|
|
@@ -6291,7 +6291,7 @@ insetStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssProperties[
|
|
|
6291
6291
|
*
|
|
6292
6292
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
|
|
6293
6293
|
*/
|
|
6294
|
-
start?: ConditionalValue<UtilityValues["insetInlineStart"] | CssProperties["insetInlineStart"] | AnyString>
|
|
6294
|
+
start?: ConditionalValue<UtilityValues["insetInlineStart"] | CssVars | CssProperties["insetInlineStart"] | AnyString>
|
|
6295
6295
|
/**
|
|
6296
6296
|
* The **`flex-direction`** CSS property sets how flex items are placed in the flex container defining the main axis and the direction (normal or reversed).
|
|
6297
6297
|
*
|
|
@@ -6318,7 +6318,7 @@ flexDir?: ConditionalValue<CssProperties["flexDirection"] | AnyString>
|
|
|
6318
6318
|
*
|
|
6319
6319
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding
|
|
6320
6320
|
*/
|
|
6321
|
-
p?: ConditionalValue<UtilityValues["padding"] | CssProperties["padding"] | AnyString>
|
|
6321
|
+
p?: ConditionalValue<UtilityValues["padding"] | CssVars | CssProperties["padding"] | AnyString>
|
|
6322
6322
|
/**
|
|
6323
6323
|
* The **`padding-left`** CSS property sets the width of the padding area to the left of an element.
|
|
6324
6324
|
*
|
|
@@ -6332,7 +6332,7 @@ p?: ConditionalValue<UtilityValues["padding"] | CssProperties["padding"] | AnySt
|
|
|
6332
6332
|
*
|
|
6333
6333
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-left
|
|
6334
6334
|
*/
|
|
6335
|
-
pl?: ConditionalValue<UtilityValues["paddingLeft"] | CssProperties["paddingLeft"] | AnyString>
|
|
6335
|
+
pl?: ConditionalValue<UtilityValues["paddingLeft"] | CssVars | CssProperties["paddingLeft"] | AnyString>
|
|
6336
6336
|
/**
|
|
6337
6337
|
* The **`padding-right`** CSS property sets the width of the padding area on the right of an element.
|
|
6338
6338
|
*
|
|
@@ -6346,7 +6346,7 @@ pl?: ConditionalValue<UtilityValues["paddingLeft"] | CssProperties["paddingLeft"
|
|
|
6346
6346
|
*
|
|
6347
6347
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-right
|
|
6348
6348
|
*/
|
|
6349
|
-
pr?: ConditionalValue<UtilityValues["paddingRight"] | CssProperties["paddingRight"] | AnyString>
|
|
6349
|
+
pr?: ConditionalValue<UtilityValues["paddingRight"] | CssVars | CssProperties["paddingRight"] | AnyString>
|
|
6350
6350
|
/**
|
|
6351
6351
|
* The **`padding-top`** CSS property sets the height of the padding area on the top of an element.
|
|
6352
6352
|
*
|
|
@@ -6360,7 +6360,7 @@ pr?: ConditionalValue<UtilityValues["paddingRight"] | CssProperties["paddingRigh
|
|
|
6360
6360
|
*
|
|
6361
6361
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-top
|
|
6362
6362
|
*/
|
|
6363
|
-
pt?: ConditionalValue<UtilityValues["paddingTop"] | CssProperties["paddingTop"] | AnyString>
|
|
6363
|
+
pt?: ConditionalValue<UtilityValues["paddingTop"] | CssVars | CssProperties["paddingTop"] | AnyString>
|
|
6364
6364
|
/**
|
|
6365
6365
|
* The **`padding-bottom`** CSS property sets the height of the padding area on the bottom of an element.
|
|
6366
6366
|
*
|
|
@@ -6374,7 +6374,7 @@ pt?: ConditionalValue<UtilityValues["paddingTop"] | CssProperties["paddingTop"]
|
|
|
6374
6374
|
*
|
|
6375
6375
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-bottom
|
|
6376
6376
|
*/
|
|
6377
|
-
pb?: ConditionalValue<UtilityValues["paddingBottom"] | CssProperties["paddingBottom"] | AnyString>
|
|
6377
|
+
pb?: ConditionalValue<UtilityValues["paddingBottom"] | CssVars | CssProperties["paddingBottom"] | AnyString>
|
|
6378
6378
|
/**
|
|
6379
6379
|
* The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
|
|
6380
6380
|
*
|
|
@@ -6386,7 +6386,7 @@ pb?: ConditionalValue<UtilityValues["paddingBottom"] | CssProperties["paddingBot
|
|
|
6386
6386
|
*
|
|
6387
6387
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-block
|
|
6388
6388
|
*/
|
|
6389
|
-
py?: ConditionalValue<UtilityValues["paddingBlock"] | CssProperties["paddingBlock"] | AnyString>
|
|
6389
|
+
py?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssProperties["paddingBlock"] | AnyString>
|
|
6390
6390
|
/**
|
|
6391
6391
|
* The **`padding-block`** CSS shorthand property defines the logical block start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
|
|
6392
6392
|
*
|
|
@@ -6398,7 +6398,7 @@ py?: ConditionalValue<UtilityValues["paddingBlock"] | CssProperties["paddingBloc
|
|
|
6398
6398
|
*
|
|
6399
6399
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-block
|
|
6400
6400
|
*/
|
|
6401
|
-
paddingY?: ConditionalValue<UtilityValues["paddingBlock"] | CssProperties["paddingBlock"] | AnyString>
|
|
6401
|
+
paddingY?: ConditionalValue<UtilityValues["paddingBlock"] | CssVars | CssProperties["paddingBlock"] | AnyString>
|
|
6402
6402
|
/**
|
|
6403
6403
|
* The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
|
|
6404
6404
|
*
|
|
@@ -6410,7 +6410,7 @@ paddingY?: ConditionalValue<UtilityValues["paddingBlock"] | CssProperties["paddi
|
|
|
6410
6410
|
*
|
|
6411
6411
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
|
|
6412
6412
|
*/
|
|
6413
|
-
paddingX?: ConditionalValue<UtilityValues["paddingInline"] | CssProperties["paddingInline"] | AnyString>
|
|
6413
|
+
paddingX?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProperties["paddingInline"] | AnyString>
|
|
6414
6414
|
/**
|
|
6415
6415
|
* The **`padding-inline`** CSS shorthand property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation.
|
|
6416
6416
|
*
|
|
@@ -6422,7 +6422,7 @@ paddingX?: ConditionalValue<UtilityValues["paddingInline"] | CssProperties["padd
|
|
|
6422
6422
|
*
|
|
6423
6423
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
|
|
6424
6424
|
*/
|
|
6425
|
-
px?: ConditionalValue<UtilityValues["paddingInline"] | CssProperties["paddingInline"] | AnyString>
|
|
6425
|
+
px?: ConditionalValue<UtilityValues["paddingInline"] | CssVars | CssProperties["paddingInline"] | AnyString>
|
|
6426
6426
|
/**
|
|
6427
6427
|
* 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.
|
|
6428
6428
|
*
|
|
@@ -6437,7 +6437,7 @@ px?: ConditionalValue<UtilityValues["paddingInline"] | CssProperties["paddingInl
|
|
|
6437
6437
|
*
|
|
6438
6438
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
|
|
6439
6439
|
*/
|
|
6440
|
-
pe?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssProperties["paddingInlineEnd"] | AnyString>
|
|
6440
|
+
pe?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssProperties["paddingInlineEnd"] | AnyString>
|
|
6441
6441
|
/**
|
|
6442
6442
|
* 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.
|
|
6443
6443
|
*
|
|
@@ -6452,7 +6452,7 @@ pe?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssProperties["padding
|
|
|
6452
6452
|
*
|
|
6453
6453
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end
|
|
6454
6454
|
*/
|
|
6455
|
-
paddingEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssProperties["paddingInlineEnd"] | AnyString>
|
|
6455
|
+
paddingEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssVars | CssProperties["paddingInlineEnd"] | AnyString>
|
|
6456
6456
|
/**
|
|
6457
6457
|
* 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.
|
|
6458
6458
|
*
|
|
@@ -6467,7 +6467,7 @@ paddingEnd?: ConditionalValue<UtilityValues["paddingInlineEnd"] | CssProperties[
|
|
|
6467
6467
|
*
|
|
6468
6468
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
|
|
6469
6469
|
*/
|
|
6470
|
-
ps?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssProperties["paddingInlineStart"] | AnyString>
|
|
6470
|
+
ps?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars | CssProperties["paddingInlineStart"] | AnyString>
|
|
6471
6471
|
/**
|
|
6472
6472
|
* 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.
|
|
6473
6473
|
*
|
|
@@ -6482,7 +6482,7 @@ ps?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssProperties["paddi
|
|
|
6482
6482
|
*
|
|
6483
6483
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start
|
|
6484
6484
|
*/
|
|
6485
|
-
paddingStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssProperties["paddingInlineStart"] | AnyString>
|
|
6485
|
+
paddingStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssVars | CssProperties["paddingInlineStart"] | AnyString>
|
|
6486
6486
|
/**
|
|
6487
6487
|
* The **`margin-left`** CSS property sets the margin area on the left side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
|
|
6488
6488
|
*
|
|
@@ -6496,7 +6496,7 @@ paddingStart?: ConditionalValue<UtilityValues["paddingInlineStart"] | CssPropert
|
|
|
6496
6496
|
*
|
|
6497
6497
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-left
|
|
6498
6498
|
*/
|
|
6499
|
-
ml?: ConditionalValue<UtilityValues["marginLeft"] | CssProperties["marginLeft"] | AnyString>
|
|
6499
|
+
ml?: ConditionalValue<UtilityValues["marginLeft"] | CssVars | CssProperties["marginLeft"] | AnyString>
|
|
6500
6500
|
/**
|
|
6501
6501
|
* The **`margin-right`** CSS property sets the margin area on the right side of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
|
|
6502
6502
|
*
|
|
@@ -6510,7 +6510,7 @@ ml?: ConditionalValue<UtilityValues["marginLeft"] | CssProperties["marginLeft"]
|
|
|
6510
6510
|
*
|
|
6511
6511
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-right
|
|
6512
6512
|
*/
|
|
6513
|
-
mr?: ConditionalValue<UtilityValues["marginRight"] | CssProperties["marginRight"] | AnyString>
|
|
6513
|
+
mr?: ConditionalValue<UtilityValues["marginRight"] | CssVars | CssProperties["marginRight"] | AnyString>
|
|
6514
6514
|
/**
|
|
6515
6515
|
* The **`margin-top`** CSS property sets the margin area on the top of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
|
|
6516
6516
|
*
|
|
@@ -6524,7 +6524,7 @@ mr?: ConditionalValue<UtilityValues["marginRight"] | CssProperties["marginRight"
|
|
|
6524
6524
|
*
|
|
6525
6525
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-top
|
|
6526
6526
|
*/
|
|
6527
|
-
mt?: ConditionalValue<UtilityValues["marginTop"] | CssProperties["marginTop"] | AnyString>
|
|
6527
|
+
mt?: ConditionalValue<UtilityValues["marginTop"] | CssVars | CssProperties["marginTop"] | AnyString>
|
|
6528
6528
|
/**
|
|
6529
6529
|
* The **`margin-bottom`** CSS property sets the margin area on the bottom of an element. A positive value places it farther from its neighbors, while a negative value places it closer.
|
|
6530
6530
|
*
|
|
@@ -6538,7 +6538,7 @@ mt?: ConditionalValue<UtilityValues["marginTop"] | CssProperties["marginTop"] |
|
|
|
6538
6538
|
*
|
|
6539
6539
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom
|
|
6540
6540
|
*/
|
|
6541
|
-
mb?: ConditionalValue<UtilityValues["marginBottom"] | CssProperties["marginBottom"] | AnyString>
|
|
6541
|
+
mb?: ConditionalValue<UtilityValues["marginBottom"] | CssVars | CssProperties["marginBottom"] | AnyString>
|
|
6542
6542
|
/**
|
|
6543
6543
|
* The **`margin`** CSS shorthand property sets the margin area on all four sides of an element.
|
|
6544
6544
|
*
|
|
@@ -6550,7 +6550,7 @@ mb?: ConditionalValue<UtilityValues["marginBottom"] | CssProperties["marginBotto
|
|
|
6550
6550
|
*
|
|
6551
6551
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin
|
|
6552
6552
|
*/
|
|
6553
|
-
m?: ConditionalValue<UtilityValues["margin"] | CssProperties["margin"] | AnyString>
|
|
6553
|
+
m?: ConditionalValue<UtilityValues["margin"] | CssVars | CssProperties["margin"] | AnyString>
|
|
6554
6554
|
/**
|
|
6555
6555
|
* The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
|
|
6556
6556
|
*
|
|
@@ -6562,7 +6562,7 @@ m?: ConditionalValue<UtilityValues["margin"] | CssProperties["margin"] | AnyStri
|
|
|
6562
6562
|
*
|
|
6563
6563
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-block
|
|
6564
6564
|
*/
|
|
6565
|
-
my?: ConditionalValue<UtilityValues["marginBlock"] | CssProperties["marginBlock"] | AnyString>
|
|
6565
|
+
my?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssProperties["marginBlock"] | AnyString>
|
|
6566
6566
|
/**
|
|
6567
6567
|
* The **`margin-block`** CSS shorthand property defines the logical block start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
|
|
6568
6568
|
*
|
|
@@ -6574,7 +6574,7 @@ my?: ConditionalValue<UtilityValues["marginBlock"] | CssProperties["marginBlock"
|
|
|
6574
6574
|
*
|
|
6575
6575
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-block
|
|
6576
6576
|
*/
|
|
6577
|
-
marginY?: ConditionalValue<UtilityValues["marginBlock"] | CssProperties["marginBlock"] | AnyString>
|
|
6577
|
+
marginY?: ConditionalValue<UtilityValues["marginBlock"] | CssVars | CssProperties["marginBlock"] | AnyString>
|
|
6578
6578
|
/**
|
|
6579
6579
|
* The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
|
|
6580
6580
|
*
|
|
@@ -6586,7 +6586,7 @@ marginY?: ConditionalValue<UtilityValues["marginBlock"] | CssProperties["marginB
|
|
|
6586
6586
|
*
|
|
6587
6587
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
|
|
6588
6588
|
*/
|
|
6589
|
-
mx?: ConditionalValue<UtilityValues["marginInline"] | CssProperties["marginInline"] | AnyString>
|
|
6589
|
+
mx?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperties["marginInline"] | AnyString>
|
|
6590
6590
|
/**
|
|
6591
6591
|
* The **`margin-inline`** CSS shorthand property is a shorthand property that defines both the logical inline start and end margins of an element, which maps to physical margins depending on the element's writing mode, directionality, and text orientation.
|
|
6592
6592
|
*
|
|
@@ -6598,7 +6598,7 @@ mx?: ConditionalValue<UtilityValues["marginInline"] | CssProperties["marginInlin
|
|
|
6598
6598
|
*
|
|
6599
6599
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
|
|
6600
6600
|
*/
|
|
6601
|
-
marginX?: ConditionalValue<UtilityValues["marginInline"] | CssProperties["marginInline"] | AnyString>
|
|
6601
|
+
marginX?: ConditionalValue<UtilityValues["marginInline"] | CssVars | CssProperties["marginInline"] | AnyString>
|
|
6602
6602
|
/**
|
|
6603
6603
|
* The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
6604
6604
|
*
|
|
@@ -6613,7 +6613,7 @@ marginX?: ConditionalValue<UtilityValues["marginInline"] | CssProperties["margin
|
|
|
6613
6613
|
*
|
|
6614
6614
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
|
|
6615
6615
|
*/
|
|
6616
|
-
me?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssProperties["marginInlineEnd"] | AnyString>
|
|
6616
|
+
me?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssProperties["marginInlineEnd"] | AnyString>
|
|
6617
6617
|
/**
|
|
6618
6618
|
* The **`margin-inline-end`** CSS property defines the logical inline end margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. In other words, it corresponds to the `margin-top`, `margin-right`, `margin-bottom` or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
6619
6619
|
*
|
|
@@ -6628,7 +6628,7 @@ me?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssProperties["marginIn
|
|
|
6628
6628
|
*
|
|
6629
6629
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end
|
|
6630
6630
|
*/
|
|
6631
|
-
marginEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssProperties["marginInlineEnd"] | AnyString>
|
|
6631
|
+
marginEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssVars | CssProperties["marginInlineEnd"] | AnyString>
|
|
6632
6632
|
/**
|
|
6633
6633
|
* The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
6634
6634
|
*
|
|
@@ -6643,7 +6643,7 @@ marginEnd?: ConditionalValue<UtilityValues["marginInlineEnd"] | CssProperties["m
|
|
|
6643
6643
|
*
|
|
6644
6644
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
|
|
6645
6645
|
*/
|
|
6646
|
-
ms?: ConditionalValue<UtilityValues["marginInlineStart"] | CssProperties["marginInlineStart"] | AnyString>
|
|
6646
|
+
ms?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | CssProperties["marginInlineStart"] | AnyString>
|
|
6647
6647
|
/**
|
|
6648
6648
|
* The **`margin-inline-start`** CSS property defines the logical inline start margin of an element, which maps to a physical margin depending on the element's writing mode, directionality, and text orientation. It corresponds to the `margin-top`, `margin-right`, `margin-bottom`, or `margin-left` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
6649
6649
|
*
|
|
@@ -6658,7 +6658,7 @@ ms?: ConditionalValue<UtilityValues["marginInlineStart"] | CssProperties["margin
|
|
|
6658
6658
|
*
|
|
6659
6659
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start
|
|
6660
6660
|
*/
|
|
6661
|
-
marginStart?: ConditionalValue<UtilityValues["marginInlineStart"] | CssProperties["marginInlineStart"] | AnyString>
|
|
6661
|
+
marginStart?: ConditionalValue<UtilityValues["marginInlineStart"] | CssVars | CssProperties["marginInlineStart"] | AnyString>
|
|
6662
6662
|
/**
|
|
6663
6663
|
* 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`.
|
|
6664
6664
|
*
|
|
@@ -6686,7 +6686,7 @@ ringWidth?: ConditionalValue<CssProperties["outlineWidth"] | AnyString>
|
|
|
6686
6686
|
*
|
|
6687
6687
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline-color
|
|
6688
6688
|
*/
|
|
6689
|
-
ringColor?: ConditionalValue<UtilityValues["outlineColor"] | CssProperties["outlineColor"] | AnyString>
|
|
6689
|
+
ringColor?: ConditionalValue<UtilityValues["outlineColor"] | CssVars | CssProperties["outlineColor"] | AnyString>
|
|
6690
6690
|
/**
|
|
6691
6691
|
* The **`outline`** CSS shorthand property sets most of the outline properties in a single declaration.
|
|
6692
6692
|
*
|
|
@@ -6698,7 +6698,7 @@ ringColor?: ConditionalValue<UtilityValues["outlineColor"] | CssProperties["outl
|
|
|
6698
6698
|
*
|
|
6699
6699
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline
|
|
6700
6700
|
*/
|
|
6701
|
-
ring?: ConditionalValue<UtilityValues["outline"] | CssProperties["outline"] | AnyString>
|
|
6701
|
+
ring?: ConditionalValue<UtilityValues["outline"] | CssVars | CssProperties["outline"] | AnyString>
|
|
6702
6702
|
/**
|
|
6703
6703
|
* The **`outline-offset`** CSS property sets the amount of space between an outline and the edge or border of an element.
|
|
6704
6704
|
*
|
|
@@ -6712,7 +6712,7 @@ ring?: ConditionalValue<UtilityValues["outline"] | CssProperties["outline"] | An
|
|
|
6712
6712
|
*
|
|
6713
6713
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline-offset
|
|
6714
6714
|
*/
|
|
6715
|
-
ringOffset?: ConditionalValue<UtilityValues["outlineOffset"] | CssProperties["outlineOffset"] | AnyString>
|
|
6715
|
+
ringOffset?: ConditionalValue<UtilityValues["outlineOffset"] | CssVars | CssProperties["outlineOffset"] | AnyString>
|
|
6716
6716
|
/**
|
|
6717
6717
|
* The **`width`** CSS property sets an element's width. By default, it sets the width of the content area, but if `box-sizing` is set to `border-box`, it sets the width of the border area.
|
|
6718
6718
|
*
|
|
@@ -6726,7 +6726,7 @@ ringOffset?: ConditionalValue<UtilityValues["outlineOffset"] | CssProperties["ou
|
|
|
6726
6726
|
*
|
|
6727
6727
|
* @see https://developer.mozilla.org/docs/Web/CSS/width
|
|
6728
6728
|
*/
|
|
6729
|
-
w?: ConditionalValue<UtilityValues["width"] | CssProperties["width"] | AnyString>
|
|
6729
|
+
w?: ConditionalValue<UtilityValues["width"] | CssVars | CssProperties["width"] | AnyString>
|
|
6730
6730
|
/**
|
|
6731
6731
|
* The **`min-width`** CSS property sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `min-width`.
|
|
6732
6732
|
*
|
|
@@ -6740,7 +6740,7 @@ w?: ConditionalValue<UtilityValues["width"] | CssProperties["width"] | AnyString
|
|
|
6740
6740
|
*
|
|
6741
6741
|
* @see https://developer.mozilla.org/docs/Web/CSS/min-width
|
|
6742
6742
|
*/
|
|
6743
|
-
minW?: ConditionalValue<UtilityValues["minWidth"] | CssProperties["minWidth"] | AnyString>
|
|
6743
|
+
minW?: ConditionalValue<UtilityValues["minWidth"] | CssVars | CssProperties["minWidth"] | AnyString>
|
|
6744
6744
|
/**
|
|
6745
6745
|
* The **`max-width`** CSS property sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `max-width`.
|
|
6746
6746
|
*
|
|
@@ -6754,7 +6754,7 @@ minW?: ConditionalValue<UtilityValues["minWidth"] | CssProperties["minWidth"] |
|
|
|
6754
6754
|
*
|
|
6755
6755
|
* @see https://developer.mozilla.org/docs/Web/CSS/max-width
|
|
6756
6756
|
*/
|
|
6757
|
-
maxW?: ConditionalValue<UtilityValues["maxWidth"] | CssProperties["maxWidth"] | AnyString>
|
|
6757
|
+
maxW?: ConditionalValue<UtilityValues["maxWidth"] | CssVars | CssProperties["maxWidth"] | AnyString>
|
|
6758
6758
|
/**
|
|
6759
6759
|
* The **`height`** CSS property specifies the height of an element. By default, the property defines the height of the content area. If `box-sizing` is set to `border-box`, however, it instead determines the height of the border area.
|
|
6760
6760
|
*
|
|
@@ -6768,7 +6768,7 @@ maxW?: ConditionalValue<UtilityValues["maxWidth"] | CssProperties["maxWidth"] |
|
|
|
6768
6768
|
*
|
|
6769
6769
|
* @see https://developer.mozilla.org/docs/Web/CSS/height
|
|
6770
6770
|
*/
|
|
6771
|
-
h?: ConditionalValue<UtilityValues["height"] | CssProperties["height"] | AnyString>
|
|
6771
|
+
h?: ConditionalValue<UtilityValues["height"] | CssVars | CssProperties["height"] | AnyString>
|
|
6772
6772
|
/**
|
|
6773
6773
|
* The **`min-height`** CSS property sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `min-height`.
|
|
6774
6774
|
*
|
|
@@ -6782,7 +6782,7 @@ h?: ConditionalValue<UtilityValues["height"] | CssProperties["height"] | AnyStri
|
|
|
6782
6782
|
*
|
|
6783
6783
|
* @see https://developer.mozilla.org/docs/Web/CSS/min-height
|
|
6784
6784
|
*/
|
|
6785
|
-
minH?: ConditionalValue<UtilityValues["minHeight"] | CssProperties["minHeight"] | AnyString>
|
|
6785
|
+
minH?: ConditionalValue<UtilityValues["minHeight"] | CssVars | CssProperties["minHeight"] | AnyString>
|
|
6786
6786
|
/**
|
|
6787
6787
|
* The **`max-height`** CSS property sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `max-height`.
|
|
6788
6788
|
*
|
|
@@ -6796,8 +6796,8 @@ minH?: ConditionalValue<UtilityValues["minHeight"] | CssProperties["minHeight"]
|
|
|
6796
6796
|
*
|
|
6797
6797
|
* @see https://developer.mozilla.org/docs/Web/CSS/max-height
|
|
6798
6798
|
*/
|
|
6799
|
-
maxH?: ConditionalValue<UtilityValues["maxHeight"] | CssProperties["maxHeight"] | AnyString>
|
|
6800
|
-
textShadowColor?: ConditionalValue<UtilityValues["textShadowColor"] | AnyString>
|
|
6799
|
+
maxH?: ConditionalValue<UtilityValues["maxHeight"] | CssVars | CssProperties["maxHeight"] | AnyString>
|
|
6800
|
+
textShadowColor?: ConditionalValue<UtilityValues["textShadowColor"] | CssVars | AnyString>
|
|
6801
6801
|
/**
|
|
6802
6802
|
* The **`background-position`** CSS property sets the initial position for each background image. The position is relative to the position layer set by `background-origin`.
|
|
6803
6803
|
*
|
|
@@ -6880,7 +6880,7 @@ bgClip?: ConditionalValue<CssProperties["backgroundClip"] | AnyString>
|
|
|
6880
6880
|
*
|
|
6881
6881
|
* @see https://developer.mozilla.org/docs/Web/CSS/background
|
|
6882
6882
|
*/
|
|
6883
|
-
bg?: ConditionalValue<UtilityValues["background"] | CssProperties["background"] | AnyString>
|
|
6883
|
+
bg?: ConditionalValue<UtilityValues["background"] | CssVars | CssProperties["background"] | AnyString>
|
|
6884
6884
|
/**
|
|
6885
6885
|
* The **`background-color`** CSS property sets the background color of an element.
|
|
6886
6886
|
*
|
|
@@ -6894,7 +6894,7 @@ bg?: ConditionalValue<UtilityValues["background"] | CssProperties["background"]
|
|
|
6894
6894
|
*
|
|
6895
6895
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-color
|
|
6896
6896
|
*/
|
|
6897
|
-
bgColor?: ConditionalValue<UtilityValues["backgroundColor"] | CssProperties["backgroundColor"] | AnyString>
|
|
6897
|
+
bgColor?: ConditionalValue<UtilityValues["backgroundColor"] | CssVars | CssProperties["backgroundColor"] | AnyString>
|
|
6898
6898
|
/**
|
|
6899
6899
|
* The **`background-origin`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding.
|
|
6900
6900
|
*
|
|
@@ -6922,7 +6922,7 @@ bgOrigin?: ConditionalValue<CssProperties["backgroundOrigin"] | AnyString>
|
|
|
6922
6922
|
*
|
|
6923
6923
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-image
|
|
6924
6924
|
*/
|
|
6925
|
-
bgImage?: ConditionalValue<UtilityValues["backgroundImage"] | CssProperties["backgroundImage"] | AnyString>
|
|
6925
|
+
bgImage?: ConditionalValue<UtilityValues["backgroundImage"] | CssVars | CssProperties["backgroundImage"] | AnyString>
|
|
6926
6926
|
/**
|
|
6927
6927
|
* The **`background-repeat`** CSS property sets how background images are repeated. A background image can be repeated along the horizontal and vertical axes, or not repeated at all.
|
|
6928
6928
|
*
|
|
@@ -6966,7 +6966,7 @@ bgBlendMode?: ConditionalValue<CssProperties["backgroundBlendMode"] | AnyString>
|
|
|
6966
6966
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-size
|
|
6967
6967
|
*/
|
|
6968
6968
|
bgSize?: ConditionalValue<CssProperties["backgroundSize"] | AnyString>
|
|
6969
|
-
bgGradient?: ConditionalValue<UtilityValues["backgroundGradient"] | AnyString>
|
|
6969
|
+
bgGradient?: ConditionalValue<UtilityValues["backgroundGradient"] | CssVars | AnyString>
|
|
6970
6970
|
/**
|
|
6971
6971
|
* The **`border-radius`** CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
|
|
6972
6972
|
*
|
|
@@ -6979,7 +6979,7 @@ bgSize?: ConditionalValue<CssProperties["backgroundSize"] | AnyString>
|
|
|
6979
6979
|
*
|
|
6980
6980
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-radius
|
|
6981
6981
|
*/
|
|
6982
|
-
rounded?: ConditionalValue<UtilityValues["borderRadius"] | CssProperties["borderRadius"] | AnyString>
|
|
6982
|
+
rounded?: ConditionalValue<UtilityValues["borderRadius"] | CssVars | CssProperties["borderRadius"] | AnyString>
|
|
6983
6983
|
/**
|
|
6984
6984
|
* The **`border-top-left-radius`** CSS property rounds the top-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
|
|
6985
6985
|
*
|
|
@@ -6994,7 +6994,7 @@ rounded?: ConditionalValue<UtilityValues["borderRadius"] | CssProperties["border
|
|
|
6994
6994
|
*
|
|
6995
6995
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius
|
|
6996
6996
|
*/
|
|
6997
|
-
roundedTopLeft?: ConditionalValue<UtilityValues["borderTopLeftRadius"] | CssProperties["borderTopLeftRadius"] | AnyString>
|
|
6997
|
+
roundedTopLeft?: ConditionalValue<UtilityValues["borderTopLeftRadius"] | CssVars | CssProperties["borderTopLeftRadius"] | AnyString>
|
|
6998
6998
|
/**
|
|
6999
6999
|
* The **`border-top-right-radius`** CSS property rounds the top-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
|
|
7000
7000
|
*
|
|
@@ -7009,7 +7009,7 @@ roundedTopLeft?: ConditionalValue<UtilityValues["borderTopLeftRadius"] | CssProp
|
|
|
7009
7009
|
*
|
|
7010
7010
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius
|
|
7011
7011
|
*/
|
|
7012
|
-
roundedTopRight?: ConditionalValue<UtilityValues["borderTopRightRadius"] | CssProperties["borderTopRightRadius"] | AnyString>
|
|
7012
|
+
roundedTopRight?: ConditionalValue<UtilityValues["borderTopRightRadius"] | CssVars | CssProperties["borderTopRightRadius"] | AnyString>
|
|
7013
7013
|
/**
|
|
7014
7014
|
* The **`border-bottom-right-radius`** CSS property rounds the bottom-right corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
|
|
7015
7015
|
*
|
|
@@ -7024,7 +7024,7 @@ roundedTopRight?: ConditionalValue<UtilityValues["borderTopRightRadius"] | CssPr
|
|
|
7024
7024
|
*
|
|
7025
7025
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius
|
|
7026
7026
|
*/
|
|
7027
|
-
roundedBottomRight?: ConditionalValue<UtilityValues["borderBottomRightRadius"] | CssProperties["borderBottomRightRadius"] | AnyString>
|
|
7027
|
+
roundedBottomRight?: ConditionalValue<UtilityValues["borderBottomRightRadius"] | CssVars | CssProperties["borderBottomRightRadius"] | AnyString>
|
|
7028
7028
|
/**
|
|
7029
7029
|
* The **`border-bottom-left-radius`** CSS property rounds the bottom-left corner of an element by specifying the radius (or the radius of the semi-major and semi-minor axes) of the ellipse defining the curvature of the corner.
|
|
7030
7030
|
*
|
|
@@ -7039,11 +7039,11 @@ roundedBottomRight?: ConditionalValue<UtilityValues["borderBottomRightRadius"] |
|
|
|
7039
7039
|
*
|
|
7040
7040
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius
|
|
7041
7041
|
*/
|
|
7042
|
-
roundedBottomLeft?: ConditionalValue<UtilityValues["borderBottomLeftRadius"] | CssProperties["borderBottomLeftRadius"] | AnyString>
|
|
7043
|
-
roundedTop?: ConditionalValue<UtilityValues["borderTopRadius"] | AnyString>
|
|
7044
|
-
roundedRight?: ConditionalValue<UtilityValues["borderRightRadius"] | AnyString>
|
|
7045
|
-
roundedBottom?: ConditionalValue<UtilityValues["borderBottomRadius"] | AnyString>
|
|
7046
|
-
roundedLeft?: ConditionalValue<UtilityValues["borderLeftRadius"] | AnyString>
|
|
7042
|
+
roundedBottomLeft?: ConditionalValue<UtilityValues["borderBottomLeftRadius"] | CssVars | CssProperties["borderBottomLeftRadius"] | AnyString>
|
|
7043
|
+
roundedTop?: ConditionalValue<UtilityValues["borderTopRadius"] | CssVars | AnyString>
|
|
7044
|
+
roundedRight?: ConditionalValue<UtilityValues["borderRightRadius"] | CssVars | AnyString>
|
|
7045
|
+
roundedBottom?: ConditionalValue<UtilityValues["borderBottomRadius"] | CssVars | AnyString>
|
|
7046
|
+
roundedLeft?: ConditionalValue<UtilityValues["borderLeftRadius"] | CssVars | AnyString>
|
|
7047
7047
|
/**
|
|
7048
7048
|
* The **`border-start-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
|
|
7049
7049
|
*
|
|
@@ -7057,7 +7057,7 @@ roundedBottomLeft?: ConditionalValue<UtilityValues["borderBottomLeftRadius"] | C
|
|
|
7057
7057
|
*
|
|
7058
7058
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius
|
|
7059
7059
|
*/
|
|
7060
|
-
roundedStartStart?: ConditionalValue<UtilityValues["borderStartStartRadius"] | CssProperties["borderStartStartRadius"] | AnyString>
|
|
7060
|
+
roundedStartStart?: ConditionalValue<UtilityValues["borderStartStartRadius"] | CssVars | CssProperties["borderStartStartRadius"] | AnyString>
|
|
7061
7061
|
/**
|
|
7062
7062
|
* The **`border-start-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
|
|
7063
7063
|
*
|
|
@@ -7071,8 +7071,8 @@ roundedStartStart?: ConditionalValue<UtilityValues["borderStartStartRadius"] | C
|
|
|
7071
7071
|
*
|
|
7072
7072
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius
|
|
7073
7073
|
*/
|
|
7074
|
-
roundedStartEnd?: ConditionalValue<UtilityValues["borderStartEndRadius"] | CssProperties["borderStartEndRadius"] | AnyString>
|
|
7075
|
-
roundedStart?: ConditionalValue<UtilityValues["borderStartRadius"] | AnyString>
|
|
7074
|
+
roundedStartEnd?: ConditionalValue<UtilityValues["borderStartEndRadius"] | CssVars | CssProperties["borderStartEndRadius"] | AnyString>
|
|
7075
|
+
roundedStart?: ConditionalValue<UtilityValues["borderStartRadius"] | CssVars | AnyString>
|
|
7076
7076
|
/**
|
|
7077
7077
|
* The **`border-end-start-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
|
|
7078
7078
|
*
|
|
@@ -7086,7 +7086,7 @@ roundedStartEnd?: ConditionalValue<UtilityValues["borderStartEndRadius"] | CssPr
|
|
|
7086
7086
|
*
|
|
7087
7087
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius
|
|
7088
7088
|
*/
|
|
7089
|
-
roundedEndStart?: ConditionalValue<UtilityValues["borderEndStartRadius"] | CssProperties["borderEndStartRadius"] | AnyString>
|
|
7089
|
+
roundedEndStart?: ConditionalValue<UtilityValues["borderEndStartRadius"] | CssVars | CssProperties["borderEndStartRadius"] | AnyString>
|
|
7090
7090
|
/**
|
|
7091
7091
|
* The **`border-end-end-radius`** CSS property defines a logical border radius on an element, which maps to a physical border radius that depends on the element's `writing-mode`, `direction`, and `text-orientation`. This is useful when building styles to work regardless of the text orientation and writing mode.
|
|
7092
7092
|
*
|
|
@@ -7100,8 +7100,8 @@ roundedEndStart?: ConditionalValue<UtilityValues["borderEndStartRadius"] | CssPr
|
|
|
7100
7100
|
*
|
|
7101
7101
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius
|
|
7102
7102
|
*/
|
|
7103
|
-
roundedEndEnd?: ConditionalValue<UtilityValues["borderEndEndRadius"] | CssProperties["borderEndEndRadius"] | AnyString>
|
|
7104
|
-
roundedEnd?: ConditionalValue<UtilityValues["borderEndRadius"] | AnyString>
|
|
7103
|
+
roundedEndEnd?: ConditionalValue<UtilityValues["borderEndEndRadius"] | CssVars | CssProperties["borderEndEndRadius"] | AnyString>
|
|
7104
|
+
roundedEnd?: ConditionalValue<UtilityValues["borderEndRadius"] | CssVars | AnyString>
|
|
7105
7105
|
/**
|
|
7106
7106
|
* The **`border-inline`** CSS property is a shorthand property for setting the individual logical inline border property values in a single place in the style sheet.
|
|
7107
7107
|
*
|
|
@@ -7113,7 +7113,7 @@ roundedEndEnd?: ConditionalValue<UtilityValues["borderEndEndRadius"] | CssProper
|
|
|
7113
7113
|
*
|
|
7114
7114
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline
|
|
7115
7115
|
*/
|
|
7116
|
-
borderX?: ConditionalValue<UtilityValues["borderInline"] | CssProperties["borderInline"] | AnyString>
|
|
7116
|
+
borderX?: ConditionalValue<UtilityValues["borderInline"] | CssVars | CssProperties["borderInline"] | AnyString>
|
|
7117
7117
|
/**
|
|
7118
7118
|
* 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`.
|
|
7119
7119
|
*
|
|
@@ -7141,7 +7141,7 @@ borderXWidth?: ConditionalValue<CssProperties["borderInlineWidth"] | AnyString>
|
|
|
7141
7141
|
*
|
|
7142
7142
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color
|
|
7143
7143
|
*/
|
|
7144
|
-
borderXColor?: ConditionalValue<UtilityValues["borderInlineColor"] | CssProperties["borderInlineColor"] | AnyString>
|
|
7144
|
+
borderXColor?: ConditionalValue<UtilityValues["borderInlineColor"] | CssVars | CssProperties["borderInlineColor"] | AnyString>
|
|
7145
7145
|
/**
|
|
7146
7146
|
* The **`border-block`** CSS property is a shorthand property for setting the individual logical block border property values in a single place in the style sheet.
|
|
7147
7147
|
*
|
|
@@ -7153,7 +7153,7 @@ borderXColor?: ConditionalValue<UtilityValues["borderInlineColor"] | CssProperti
|
|
|
7153
7153
|
*
|
|
7154
7154
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block
|
|
7155
7155
|
*/
|
|
7156
|
-
borderY?: ConditionalValue<UtilityValues["borderBlock"] | CssProperties["borderBlock"] | AnyString>
|
|
7156
|
+
borderY?: ConditionalValue<UtilityValues["borderBlock"] | CssVars | CssProperties["borderBlock"] | AnyString>
|
|
7157
7157
|
/**
|
|
7158
7158
|
* 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`.
|
|
7159
7159
|
*
|
|
@@ -7181,7 +7181,7 @@ borderYWidth?: ConditionalValue<CssProperties["borderBlockWidth"] | AnyString>
|
|
|
7181
7181
|
*
|
|
7182
7182
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
|
|
7183
7183
|
*/
|
|
7184
|
-
borderYColor?: ConditionalValue<UtilityValues["borderBlockColor"] | CssProperties["borderBlockColor"] | AnyString>
|
|
7184
|
+
borderYColor?: ConditionalValue<UtilityValues["borderBlockColor"] | CssVars | CssProperties["borderBlockColor"] | AnyString>
|
|
7185
7185
|
/**
|
|
7186
7186
|
* The **`border-inline-start`** CSS property is a shorthand property for setting the individual logical inline-start border property values in a single place in the style sheet.
|
|
7187
7187
|
*
|
|
@@ -7193,7 +7193,7 @@ borderYColor?: ConditionalValue<UtilityValues["borderBlockColor"] | CssPropertie
|
|
|
7193
7193
|
*
|
|
7194
7194
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start
|
|
7195
7195
|
*/
|
|
7196
|
-
borderStart?: ConditionalValue<UtilityValues["borderInlineStart"] | CssProperties["borderInlineStart"] | AnyString>
|
|
7196
|
+
borderStart?: ConditionalValue<UtilityValues["borderInlineStart"] | CssVars | CssProperties["borderInlineStart"] | AnyString>
|
|
7197
7197
|
/**
|
|
7198
7198
|
* The **`border-inline-start-width`** CSS property defines the width of the logical inline-start border 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`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
7199
7199
|
*
|
|
@@ -7222,7 +7222,7 @@ borderStartWidth?: ConditionalValue<CssProperties["borderInlineStartWidth"] | An
|
|
|
7222
7222
|
*
|
|
7223
7223
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color
|
|
7224
7224
|
*/
|
|
7225
|
-
borderStartColor?: ConditionalValue<UtilityValues["borderInlineStartColor"] | CssProperties["borderInlineStartColor"] | AnyString>
|
|
7225
|
+
borderStartColor?: ConditionalValue<UtilityValues["borderInlineStartColor"] | CssVars | CssProperties["borderInlineStartColor"] | AnyString>
|
|
7226
7226
|
/**
|
|
7227
7227
|
* 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.
|
|
7228
7228
|
*
|
|
@@ -7234,7 +7234,7 @@ borderStartColor?: ConditionalValue<UtilityValues["borderInlineStartColor"] | Cs
|
|
|
7234
7234
|
*
|
|
7235
7235
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end
|
|
7236
7236
|
*/
|
|
7237
|
-
borderEnd?: ConditionalValue<UtilityValues["borderInlineEnd"] | CssProperties["borderInlineEnd"] | AnyString>
|
|
7237
|
+
borderEnd?: ConditionalValue<UtilityValues["borderInlineEnd"] | CssVars | CssProperties["borderInlineEnd"] | AnyString>
|
|
7238
7238
|
/**
|
|
7239
7239
|
* The **`border-inline-end-width`** CSS property defines the width of the logical inline-end border 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`, `border-right-width`, `border-bottom-width`, or `border-left-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
7240
7240
|
*
|
|
@@ -7264,7 +7264,7 @@ borderEndWidth?: ConditionalValue<CssProperties["borderInlineEndWidth"] | AnyStr
|
|
|
7264
7264
|
*
|
|
7265
7265
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color
|
|
7266
7266
|
*/
|
|
7267
|
-
borderEndColor?: ConditionalValue<UtilityValues["borderInlineEndColor"] | CssProperties["borderInlineEndColor"] | AnyString>
|
|
7267
|
+
borderEndColor?: ConditionalValue<UtilityValues["borderInlineEndColor"] | CssVars | CssProperties["borderInlineEndColor"] | AnyString>
|
|
7268
7268
|
/**
|
|
7269
7269
|
* The **`box-shadow`** CSS property adds shadow effects around an element's frame. You can set multiple effects separated by commas. A box shadow is described by X and Y offsets relative to the element, blur and spread radius, and color.
|
|
7270
7270
|
*
|
|
@@ -7279,10 +7279,11 @@ borderEndColor?: ConditionalValue<UtilityValues["borderInlineEndColor"] | CssPro
|
|
|
7279
7279
|
*
|
|
7280
7280
|
* @see https://developer.mozilla.org/docs/Web/CSS/box-shadow
|
|
7281
7281
|
*/
|
|
7282
|
-
shadow?: ConditionalValue<UtilityValues["boxShadow"] | CssProperties["boxShadow"] | AnyString>
|
|
7283
|
-
shadowColor?: ConditionalValue<UtilityValues["boxShadowColor"] | AnyString>
|
|
7284
|
-
x?: ConditionalValue<UtilityValues["translateX"] | AnyString>
|
|
7285
|
-
y?: ConditionalValue<UtilityValues["translateY"] | AnyString>
|
|
7282
|
+
shadow?: ConditionalValue<UtilityValues["boxShadow"] | CssVars | CssProperties["boxShadow"] | AnyString>
|
|
7283
|
+
shadowColor?: ConditionalValue<UtilityValues["boxShadowColor"] | CssVars | AnyString>
|
|
7284
|
+
x?: ConditionalValue<UtilityValues["translateX"] | CssVars | AnyString>
|
|
7285
|
+
y?: ConditionalValue<UtilityValues["translateY"] | CssVars | AnyString>
|
|
7286
|
+
z?: ConditionalValue<UtilityValues["translateZ"] | CssVars | AnyString>
|
|
7286
7287
|
/**
|
|
7287
7288
|
* The `scroll-margin-block` shorthand property sets the scroll margins of an element in the block dimension.
|
|
7288
7289
|
*
|
|
@@ -7294,7 +7295,7 @@ shadow?: ConditionalValue<UtilityValues["boxShadow"] | CssProperties["boxShadow"
|
|
|
7294
7295
|
*
|
|
7295
7296
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
|
|
7296
7297
|
*/
|
|
7297
|
-
scrollMarginY?: ConditionalValue<UtilityValues["scrollMarginBlock"] | CssProperties["scrollMarginBlock"] | AnyString>
|
|
7298
|
+
scrollMarginY?: ConditionalValue<UtilityValues["scrollMarginBlock"] | CssVars | CssProperties["scrollMarginBlock"] | AnyString>
|
|
7298
7299
|
/**
|
|
7299
7300
|
* The `scroll-margin-inline` shorthand property sets the scroll margins of an element in the inline dimension.
|
|
7300
7301
|
*
|
|
@@ -7306,7 +7307,7 @@ scrollMarginY?: ConditionalValue<UtilityValues["scrollMarginBlock"] | CssPropert
|
|
|
7306
7307
|
*
|
|
7307
7308
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
|
|
7308
7309
|
*/
|
|
7309
|
-
scrollMarginX?: ConditionalValue<UtilityValues["scrollMarginInline"] | CssProperties["scrollMarginInline"] | AnyString>
|
|
7310
|
+
scrollMarginX?: ConditionalValue<UtilityValues["scrollMarginInline"] | CssVars | CssProperties["scrollMarginInline"] | AnyString>
|
|
7310
7311
|
/**
|
|
7311
7312
|
* The `scroll-padding-block` shorthand property sets the scroll padding of an element in the block dimension.
|
|
7312
7313
|
*
|
|
@@ -7318,7 +7319,7 @@ scrollMarginX?: ConditionalValue<UtilityValues["scrollMarginInline"] | CssProper
|
|
|
7318
7319
|
*
|
|
7319
7320
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
|
|
7320
7321
|
*/
|
|
7321
|
-
scrollPaddingY?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssProperties["scrollPaddingBlock"] | AnyString>
|
|
7322
|
+
scrollPaddingY?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssVars | CssProperties["scrollPaddingBlock"] | AnyString>
|
|
7322
7323
|
/**
|
|
7323
7324
|
* The `scroll-padding-inline` shorthand property sets the scroll padding of an element in the inline dimension.
|
|
7324
7325
|
*
|
|
@@ -7330,27 +7331,32 @@ scrollPaddingY?: ConditionalValue<UtilityValues["scrollPaddingBlock"] | CssPrope
|
|
|
7330
7331
|
*
|
|
7331
7332
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
|
|
7332
7333
|
*/
|
|
7333
|
-
scrollPaddingX?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssProperties["scrollPaddingInline"] | AnyString>
|
|
7334
|
-
hideFrom?: ConditionalValue<UtilityValues["hideFrom"] | AnyString>
|
|
7335
|
-
hideBelow?: ConditionalValue<UtilityValues["hideBelow"] | AnyString>
|
|
7336
|
-
|
|
7337
|
-
|
|
7338
|
-
|
|
7339
|
-
|
|
7340
|
-
|
|
7341
|
-
|
|
7342
|
-
|
|
7343
|
-
|
|
7344
|
-
|
|
7345
|
-
|
|
7346
|
-
|
|
7347
|
-
|
|
7348
|
-
|
|
7349
|
-
|
|
7350
|
-
|
|
7351
|
-
|
|
7352
|
-
|
|
7353
|
-
|
|
7334
|
+
scrollPaddingX?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssVars | CssProperties["scrollPaddingInline"] | AnyString>
|
|
7335
|
+
hideFrom?: ConditionalValue<UtilityValues["hideFrom"] | CssVars | AnyString>
|
|
7336
|
+
hideBelow?: ConditionalValue<UtilityValues["hideBelow"] | CssVars | AnyString>
|
|
7337
|
+
spaceX?: ConditionalValue<UtilityValues["spaceX"] | CssVars | AnyString>
|
|
7338
|
+
spaceY?: ConditionalValue<UtilityValues["spaceY"] | CssVars | AnyString>
|
|
7339
|
+
divideX?: ConditionalValue<string | number | AnyString>
|
|
7340
|
+
divideY?: ConditionalValue<string | number | AnyString>
|
|
7341
|
+
divideColor?: ConditionalValue<UtilityValues["divideColor"] | CssVars | AnyString>
|
|
7342
|
+
divideStyle?: ConditionalValue<UtilityValues["divideStyle"] | CssVars | AnyString>
|
|
7343
|
+
fontSmoothing?: ConditionalValue<UtilityValues["fontSmoothing"] | CssVars | AnyString>
|
|
7344
|
+
truncate?: ConditionalValue<UtilityValues["truncate"] | CssVars | AnyString>
|
|
7345
|
+
backgroundGradient?: ConditionalValue<UtilityValues["backgroundGradient"] | CssVars | AnyString>
|
|
7346
|
+
textGradient?: ConditionalValue<UtilityValues["textGradient"] | CssVars | AnyString>
|
|
7347
|
+
gradientFromPosition?: ConditionalValue<string | number | AnyString>
|
|
7348
|
+
gradientToPosition?: ConditionalValue<string | number | AnyString>
|
|
7349
|
+
gradientFrom?: ConditionalValue<UtilityValues["gradientFrom"] | CssVars | AnyString>
|
|
7350
|
+
gradientTo?: ConditionalValue<UtilityValues["gradientTo"] | CssVars | AnyString>
|
|
7351
|
+
gradientVia?: ConditionalValue<UtilityValues["gradientVia"] | CssVars | AnyString>
|
|
7352
|
+
gradientViaPosition?: ConditionalValue<string | number | AnyString>
|
|
7353
|
+
borderTopRadius?: ConditionalValue<UtilityValues["borderTopRadius"] | CssVars | AnyString>
|
|
7354
|
+
borderRightRadius?: ConditionalValue<UtilityValues["borderRightRadius"] | CssVars | AnyString>
|
|
7355
|
+
borderBottomRadius?: ConditionalValue<UtilityValues["borderBottomRadius"] | CssVars | AnyString>
|
|
7356
|
+
borderLeftRadius?: ConditionalValue<UtilityValues["borderLeftRadius"] | CssVars | AnyString>
|
|
7357
|
+
borderStartRadius?: ConditionalValue<UtilityValues["borderStartRadius"] | CssVars | AnyString>
|
|
7358
|
+
borderEndRadius?: ConditionalValue<UtilityValues["borderEndRadius"] | CssVars | AnyString>
|
|
7359
|
+
boxShadowColor?: ConditionalValue<UtilityValues["boxShadowColor"] | CssVars | AnyString>
|
|
7354
7360
|
brightness?: ConditionalValue<string | number | AnyString>
|
|
7355
7361
|
contrast?: ConditionalValue<string | number | AnyString>
|
|
7356
7362
|
grayscale?: ConditionalValue<string | number | AnyString>
|
|
@@ -7359,8 +7365,8 @@ scrollPaddingX?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssProp
|
|
|
7359
7365
|
saturate?: ConditionalValue<string | number | AnyString>
|
|
7360
7366
|
sepia?: ConditionalValue<string | number | AnyString>
|
|
7361
7367
|
dropShadow?: ConditionalValue<string | number | AnyString>
|
|
7362
|
-
blur?: ConditionalValue<UtilityValues["blur"] | AnyString>
|
|
7363
|
-
backdropBlur?: ConditionalValue<UtilityValues["backdropBlur"] | AnyString>
|
|
7368
|
+
blur?: ConditionalValue<UtilityValues["blur"] | CssVars | AnyString>
|
|
7369
|
+
backdropBlur?: ConditionalValue<UtilityValues["backdropBlur"] | CssVars | AnyString>
|
|
7364
7370
|
backdropBrightness?: ConditionalValue<string | number | AnyString>
|
|
7365
7371
|
backdropContrast?: ConditionalValue<string | number | AnyString>
|
|
7366
7372
|
backdropGrayscale?: ConditionalValue<string | number | AnyString>
|
|
@@ -7369,14 +7375,18 @@ scrollPaddingX?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssProp
|
|
|
7369
7375
|
backdropOpacity?: ConditionalValue<string | number | AnyString>
|
|
7370
7376
|
backdropSaturate?: ConditionalValue<string | number | AnyString>
|
|
7371
7377
|
backdropSepia?: ConditionalValue<string | number | AnyString>
|
|
7372
|
-
borderSpacingX?: ConditionalValue<UtilityValues["borderSpacingX"] | AnyString>
|
|
7373
|
-
borderSpacingY?: ConditionalValue<UtilityValues["borderSpacingY"] | AnyString>
|
|
7378
|
+
borderSpacingX?: ConditionalValue<UtilityValues["borderSpacingX"] | CssVars | AnyString>
|
|
7379
|
+
borderSpacingY?: ConditionalValue<UtilityValues["borderSpacingY"] | CssVars | AnyString>
|
|
7380
|
+
rotateX?: ConditionalValue<UtilityValues["rotateX"] | CssVars | AnyString>
|
|
7381
|
+
rotateY?: ConditionalValue<UtilityValues["rotateY"] | CssVars | AnyString>
|
|
7382
|
+
rotateZ?: ConditionalValue<UtilityValues["rotateZ"] | CssVars | AnyString>
|
|
7374
7383
|
scaleX?: ConditionalValue<string | number | AnyString>
|
|
7375
7384
|
scaleY?: ConditionalValue<string | number | AnyString>
|
|
7376
|
-
translateX?: ConditionalValue<UtilityValues["translateX"] | AnyString>
|
|
7377
|
-
translateY?: ConditionalValue<UtilityValues["translateY"] | AnyString>
|
|
7378
|
-
|
|
7379
|
-
|
|
7385
|
+
translateX?: ConditionalValue<UtilityValues["translateX"] | CssVars | AnyString>
|
|
7386
|
+
translateY?: ConditionalValue<UtilityValues["translateY"] | CssVars | AnyString>
|
|
7387
|
+
translateZ?: ConditionalValue<UtilityValues["translateZ"] | CssVars | AnyString>
|
|
7388
|
+
scrollbar?: ConditionalValue<UtilityValues["scrollbar"] | CssVars | AnyString>
|
|
7389
|
+
scrollSnapStrictness?: ConditionalValue<UtilityValues["scrollSnapStrictness"] | CssVars | AnyString>
|
|
7380
7390
|
/**
|
|
7381
7391
|
* The **`scroll-margin`** shorthand property sets all of the scroll margins of an element at once, assigning values much like the `margin` property does for margins of an element.
|
|
7382
7392
|
*
|
|
@@ -7389,7 +7399,7 @@ scrollPaddingX?: ConditionalValue<UtilityValues["scrollPaddingInline"] | CssProp
|
|
|
7389
7399
|
*
|
|
7390
7400
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
|
|
7391
7401
|
*/
|
|
7392
|
-
scrollSnapMargin?: ConditionalValue<UtilityValues["scrollSnapMargin"] | AnyString>
|
|
7402
|
+
scrollSnapMargin?: ConditionalValue<UtilityValues["scrollSnapMargin"] | CssVars | AnyString>
|
|
7393
7403
|
/**
|
|
7394
7404
|
* The `scroll-margin-top` property defines the top 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.
|
|
7395
7405
|
*
|
|
@@ -7404,7 +7414,7 @@ scrollSnapMargin?: ConditionalValue<UtilityValues["scrollSnapMargin"] | AnyStrin
|
|
|
7404
7414
|
*
|
|
7405
7415
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
|
|
7406
7416
|
*/
|
|
7407
|
-
scrollSnapMarginTop?: ConditionalValue<UtilityValues["scrollSnapMarginTop"] | AnyString>
|
|
7417
|
+
scrollSnapMarginTop?: ConditionalValue<UtilityValues["scrollSnapMarginTop"] | CssVars | AnyString>
|
|
7408
7418
|
/**
|
|
7409
7419
|
* 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.
|
|
7410
7420
|
*
|
|
@@ -7419,7 +7429,7 @@ scrollSnapMarginTop?: ConditionalValue<UtilityValues["scrollSnapMarginTop"] | An
|
|
|
7419
7429
|
*
|
|
7420
7430
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
|
|
7421
7431
|
*/
|
|
7422
|
-
scrollSnapMarginBottom?: ConditionalValue<UtilityValues["scrollSnapMarginBottom"] | AnyString>
|
|
7432
|
+
scrollSnapMarginBottom?: ConditionalValue<UtilityValues["scrollSnapMarginBottom"] | CssVars | AnyString>
|
|
7423
7433
|
/**
|
|
7424
7434
|
* 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.
|
|
7425
7435
|
*
|
|
@@ -7434,7 +7444,7 @@ scrollSnapMarginBottom?: ConditionalValue<UtilityValues["scrollSnapMarginBottom"
|
|
|
7434
7444
|
*
|
|
7435
7445
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
|
|
7436
7446
|
*/
|
|
7437
|
-
scrollSnapMarginLeft?: ConditionalValue<UtilityValues["scrollSnapMarginLeft"] | AnyString>
|
|
7447
|
+
scrollSnapMarginLeft?: ConditionalValue<UtilityValues["scrollSnapMarginLeft"] | CssVars | AnyString>
|
|
7438
7448
|
/**
|
|
7439
7449
|
* The `scroll-margin-right` property defines the right 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.
|
|
7440
7450
|
*
|
|
@@ -7449,9 +7459,9 @@ scrollSnapMarginLeft?: ConditionalValue<UtilityValues["scrollSnapMarginLeft"] |
|
|
|
7449
7459
|
*
|
|
7450
7460
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
|
|
7451
7461
|
*/
|
|
7452
|
-
scrollSnapMarginRight?: ConditionalValue<UtilityValues["scrollSnapMarginRight"] | AnyString>
|
|
7453
|
-
srOnly?: ConditionalValue<UtilityValues["srOnly"] | AnyString>
|
|
7454
|
-
debug?: ConditionalValue<UtilityValues["debug"] | AnyString>
|
|
7455
|
-
colorPalette?: ConditionalValue<UtilityValues["colorPalette"] | AnyString>
|
|
7456
|
-
textStyle?: ConditionalValue<UtilityValues["textStyle"] | AnyString>
|
|
7462
|
+
scrollSnapMarginRight?: ConditionalValue<UtilityValues["scrollSnapMarginRight"] | CssVars | AnyString>
|
|
7463
|
+
srOnly?: ConditionalValue<UtilityValues["srOnly"] | CssVars | AnyString>
|
|
7464
|
+
debug?: ConditionalValue<UtilityValues["debug"] | CssVars | AnyString>
|
|
7465
|
+
colorPalette?: ConditionalValue<UtilityValues["colorPalette"] | CssVars | AnyString>
|
|
7466
|
+
textStyle?: ConditionalValue<UtilityValues["textStyle"] | CssVars | AnyString>
|
|
7457
7467
|
}
|