@pandacss/studio 0.0.0-dev-20240315210222 → 0.0.0-dev-20240319203029
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/studio",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20240319203029",
|
|
4
4
|
"description": "The automated token documentation for Panda CSS",
|
|
5
5
|
"main": "dist/studio.js",
|
|
6
6
|
"module": "dist/studio.mjs",
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
"react": "18.2.0",
|
|
49
49
|
"react-dom": "18.2.0",
|
|
50
50
|
"vite": "5.1.3",
|
|
51
|
-
"@pandacss/config": "0.0.0-dev-
|
|
52
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
53
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
54
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
55
|
-
"@pandacss/types": "0.0.0-dev-
|
|
56
|
-
"@pandacss/astro-plugin-studio": "0.0.0-dev-
|
|
51
|
+
"@pandacss/config": "0.0.0-dev-20240319203029",
|
|
52
|
+
"@pandacss/logger": "0.0.0-dev-20240319203029",
|
|
53
|
+
"@pandacss/shared": "0.0.0-dev-20240319203029",
|
|
54
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20240319203029",
|
|
55
|
+
"@pandacss/types": "0.0.0-dev-20240319203029",
|
|
56
|
+
"@pandacss/astro-plugin-studio": "0.0.0-dev-20240319203029"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@types/react": "18.2.55",
|
|
@@ -5,7 +5,7 @@ import type { CssProperties } from './system-types';
|
|
|
5
5
|
import type { Token } from '../tokens/index';
|
|
6
6
|
|
|
7
7
|
type AnyString = (string & {})
|
|
8
|
-
|
|
8
|
+
type CssVars = `var(--${string})`
|
|
9
9
|
type CssVarValue = ConditionalValue<Token | AnyString | (number & {})>
|
|
10
10
|
|
|
11
11
|
type CssVarName = | AnyString
|
|
@@ -254,7 +254,7 @@ accentColor?: ConditionalValue<UtilityValues["accentColor"] | CssProperties["acc
|
|
|
254
254
|
*
|
|
255
255
|
* @see https://developer.mozilla.org/docs/Web/CSS/align-content
|
|
256
256
|
*/
|
|
257
|
-
alignContent?: ConditionalValue<CssProperties["alignContent"] | AnyString>
|
|
257
|
+
alignContent?: ConditionalValue<CssVars | CssProperties["alignContent"] | AnyString>
|
|
258
258
|
/**
|
|
259
259
|
* The CSS **`align-items`** property sets the `align-self` value on all direct children as a group. In Flexbox, it controls the alignment of items on the Cross Axis. In Grid Layout, it controls the alignment of items on the Block Axis within their grid area.
|
|
260
260
|
*
|
|
@@ -269,7 +269,7 @@ alignContent?: ConditionalValue<CssProperties["alignContent"] | AnyString>
|
|
|
269
269
|
*
|
|
270
270
|
* @see https://developer.mozilla.org/docs/Web/CSS/align-items
|
|
271
271
|
*/
|
|
272
|
-
alignItems?: ConditionalValue<CssProperties["alignItems"] | AnyString>
|
|
272
|
+
alignItems?: ConditionalValue<CssVars | CssProperties["alignItems"] | AnyString>
|
|
273
273
|
/**
|
|
274
274
|
* The **`align-self`** CSS property overrides a grid or flex item's `align-items` value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis.
|
|
275
275
|
*
|
|
@@ -284,7 +284,7 @@ alignItems?: ConditionalValue<CssProperties["alignItems"] | AnyString>
|
|
|
284
284
|
*
|
|
285
285
|
* @see https://developer.mozilla.org/docs/Web/CSS/align-self
|
|
286
286
|
*/
|
|
287
|
-
alignSelf?: ConditionalValue<CssProperties["alignSelf"] | AnyString>
|
|
287
|
+
alignSelf?: ConditionalValue<CssVars | CssProperties["alignSelf"] | AnyString>
|
|
288
288
|
/**
|
|
289
289
|
* The **`align-tracks`** CSS property sets the alignment in the masonry axis for grid containers that have masonry in their block axis.
|
|
290
290
|
*
|
|
@@ -312,7 +312,7 @@ alignTracks?: ConditionalValue<CssProperties["alignTracks"] | AnyString>
|
|
|
312
312
|
*
|
|
313
313
|
* @see https://developer.mozilla.org/docs/Web/CSS/all
|
|
314
314
|
*/
|
|
315
|
-
all?: ConditionalValue<CssProperties["all"] | AnyString>
|
|
315
|
+
all?: ConditionalValue<CssVars | CssProperties["all"] | AnyString>
|
|
316
316
|
/**
|
|
317
317
|
* The **`animation`** shorthand CSS property applies an animation between styles. It is a shorthand for `animation-name`, `animation-duration`, `animation-timing-function`, `animation-delay`, `animation-iteration-count`, `animation-direction`, `animation-fill-mode`, and `animation-play-state`.
|
|
318
318
|
*
|
|
@@ -339,7 +339,7 @@ animation?: ConditionalValue<UtilityValues["animation"] | CssProperties["animati
|
|
|
339
339
|
*
|
|
340
340
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-composition
|
|
341
341
|
*/
|
|
342
|
-
animationComposition?: ConditionalValue<CssProperties["animationComposition"] | AnyString>
|
|
342
|
+
animationComposition?: ConditionalValue<CssVars | CssProperties["animationComposition"] | AnyString>
|
|
343
343
|
/**
|
|
344
344
|
* The **`animation-delay`** CSS property specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation. The animation can start later, immediately from its beginning, or immediately and partway through the animation.
|
|
345
345
|
*
|
|
@@ -369,7 +369,7 @@ animationDelay?: ConditionalValue<UtilityValues["animationDelay"] | CssPropertie
|
|
|
369
369
|
*
|
|
370
370
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-direction
|
|
371
371
|
*/
|
|
372
|
-
animationDirection?: ConditionalValue<CssProperties["animationDirection"] | AnyString>
|
|
372
|
+
animationDirection?: ConditionalValue<CssVars | CssProperties["animationDirection"] | AnyString>
|
|
373
373
|
/**
|
|
374
374
|
* The **`animation-duration`** CSS property sets the length of time that an animation takes to complete one cycle.
|
|
375
375
|
*
|
|
@@ -399,7 +399,7 @@ animationDuration?: ConditionalValue<CssProperties["animationDuration"] | AnyStr
|
|
|
399
399
|
*
|
|
400
400
|
* @see https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode
|
|
401
401
|
*/
|
|
402
|
-
animationFillMode?: ConditionalValue<CssProperties["animationFillMode"] | AnyString>
|
|
402
|
+
animationFillMode?: ConditionalValue<CssVars | CssProperties["animationFillMode"] | AnyString>
|
|
403
403
|
/**
|
|
404
404
|
* The **`animation-iteration-count`** CSS property sets the number of times an animation sequence should be played before stopping.
|
|
405
405
|
*
|
|
@@ -528,7 +528,7 @@ animationTimeline?: ConditionalValue<CssProperties["animationTimeline"] | AnyStr
|
|
|
528
528
|
*
|
|
529
529
|
* @see https://developer.mozilla.org/docs/Web/CSS/appearance
|
|
530
530
|
*/
|
|
531
|
-
appearance?: ConditionalValue<CssProperties["appearance"] | AnyString>
|
|
531
|
+
appearance?: ConditionalValue<CssVars | CssProperties["appearance"] | AnyString>
|
|
532
532
|
/**
|
|
533
533
|
* The **`aspect-ratio`** CSS property sets a **preferred aspect ratio** for the box, which will be used in the calculation of auto sizes and some other layout functions.
|
|
534
534
|
*
|
|
@@ -572,7 +572,7 @@ backdropFilter?: ConditionalValue<UtilityValues["backdropFilter"] | CssPropertie
|
|
|
572
572
|
*
|
|
573
573
|
* @see https://developer.mozilla.org/docs/Web/CSS/backface-visibility
|
|
574
574
|
*/
|
|
575
|
-
backfaceVisibility?: ConditionalValue<CssProperties["backfaceVisibility"] | AnyString>
|
|
575
|
+
backfaceVisibility?: ConditionalValue<CssVars | CssProperties["backfaceVisibility"] | AnyString>
|
|
576
576
|
/**
|
|
577
577
|
* The **`background`** shorthand CSS property sets all background style properties at once, such as color, image, origin and size, or repeat method.
|
|
578
578
|
*
|
|
@@ -598,7 +598,7 @@ background?: ConditionalValue<UtilityValues["background"] | CssProperties["backg
|
|
|
598
598
|
*
|
|
599
599
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-attachment
|
|
600
600
|
*/
|
|
601
|
-
backgroundAttachment?: ConditionalValue<CssProperties["backgroundAttachment"] | AnyString>
|
|
601
|
+
backgroundAttachment?: ConditionalValue<CssVars | CssProperties["backgroundAttachment"] | AnyString>
|
|
602
602
|
/**
|
|
603
603
|
* The **`background-blend-mode`** CSS property sets how an element's background images should blend with each other and with the element's background color.
|
|
604
604
|
*
|
|
@@ -627,7 +627,7 @@ backgroundBlendMode?: ConditionalValue<CssProperties["backgroundBlendMode"] | An
|
|
|
627
627
|
*
|
|
628
628
|
* @see https://developer.mozilla.org/docs/Web/CSS/background-clip
|
|
629
629
|
*/
|
|
630
|
-
backgroundClip?: ConditionalValue<CssProperties["backgroundClip"] | AnyString>
|
|
630
|
+
backgroundClip?: ConditionalValue<CssVars | CssProperties["backgroundClip"] | AnyString>
|
|
631
631
|
/**
|
|
632
632
|
* The **`background-color`** CSS property sets the background color of an element.
|
|
633
633
|
*
|
|
@@ -806,7 +806,7 @@ borderBlockColor?: ConditionalValue<UtilityValues["borderBlockColor"] | CssPrope
|
|
|
806
806
|
*
|
|
807
807
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
|
|
808
808
|
*/
|
|
809
|
-
borderBlockStyle?: ConditionalValue<CssProperties["borderBlockStyle"] | AnyString>
|
|
809
|
+
borderBlockStyle?: ConditionalValue<CssVars | CssProperties["borderBlockStyle"] | AnyString>
|
|
810
810
|
/**
|
|
811
811
|
* The **`border-block-width`** CSS property defines the width of the logical block borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
812
812
|
*
|
|
@@ -860,7 +860,7 @@ borderBlockEndColor?: ConditionalValue<UtilityValues["borderBlockEndColor"] | Cs
|
|
|
860
860
|
*
|
|
861
861
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-style
|
|
862
862
|
*/
|
|
863
|
-
borderBlockEndStyle?: ConditionalValue<CssProperties["borderBlockEndStyle"] | AnyString>
|
|
863
|
+
borderBlockEndStyle?: ConditionalValue<CssVars | CssProperties["borderBlockEndStyle"] | AnyString>
|
|
864
864
|
/**
|
|
865
865
|
* The **`border-block-end-width`** CSS property defines the width of the logical block-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`.
|
|
866
866
|
*
|
|
@@ -914,7 +914,7 @@ borderBlockStartColor?: ConditionalValue<UtilityValues["borderBlockStartColor"]
|
|
|
914
914
|
*
|
|
915
915
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-style
|
|
916
916
|
*/
|
|
917
|
-
borderBlockStartStyle?: ConditionalValue<CssProperties["borderBlockStartStyle"] | AnyString>
|
|
917
|
+
borderBlockStartStyle?: ConditionalValue<CssVars | CssProperties["borderBlockStartStyle"] | AnyString>
|
|
918
918
|
/**
|
|
919
919
|
* The **`border-block-start-width`** CSS property defines the width of the logical block-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`.
|
|
920
920
|
*
|
|
@@ -998,7 +998,7 @@ borderBottomRightRadius?: ConditionalValue<UtilityValues["borderBottomRightRadiu
|
|
|
998
998
|
*
|
|
999
999
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-style
|
|
1000
1000
|
*/
|
|
1001
|
-
borderBottomStyle?: ConditionalValue<CssProperties["borderBottomStyle"] | AnyString>
|
|
1001
|
+
borderBottomStyle?: ConditionalValue<CssVars | CssProperties["borderBottomStyle"] | AnyString>
|
|
1002
1002
|
/**
|
|
1003
1003
|
* The **`border-bottom-width`** CSS property sets the width of the bottom border of an element.
|
|
1004
1004
|
*
|
|
@@ -1026,7 +1026,7 @@ borderBottomWidth?: ConditionalValue<CssProperties["borderBottomWidth"] | AnyStr
|
|
|
1026
1026
|
*
|
|
1027
1027
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-collapse
|
|
1028
1028
|
*/
|
|
1029
|
-
borderCollapse?: ConditionalValue<CssProperties["borderCollapse"] | AnyString>
|
|
1029
|
+
borderCollapse?: ConditionalValue<CssVars | CssProperties["borderCollapse"] | AnyString>
|
|
1030
1030
|
/**
|
|
1031
1031
|
* The **`border-color`** shorthand CSS property sets the color of an element's border.
|
|
1032
1032
|
*
|
|
@@ -1201,7 +1201,7 @@ borderInlineColor?: ConditionalValue<UtilityValues["borderInlineColor"] | CssPro
|
|
|
1201
1201
|
*
|
|
1202
1202
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
|
|
1203
1203
|
*/
|
|
1204
|
-
borderInlineStyle?: ConditionalValue<CssProperties["borderInlineStyle"] | AnyString>
|
|
1204
|
+
borderInlineStyle?: ConditionalValue<CssVars | CssProperties["borderInlineStyle"] | AnyString>
|
|
1205
1205
|
/**
|
|
1206
1206
|
* The **`border-inline-width`** CSS property defines the width of the logical inline borders of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-width` and `border-bottom-width`, or `border-left-width`, and `border-right-width` property depending on the values defined for `writing-mode`, `direction`, and `text-orientation`.
|
|
1207
1207
|
*
|
|
@@ -1245,7 +1245,7 @@ borderInlineEndColor?: ConditionalValue<UtilityValues["borderInlineEndColor"] |
|
|
|
1245
1245
|
*
|
|
1246
1246
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style
|
|
1247
1247
|
*/
|
|
1248
|
-
borderInlineEndStyle?: ConditionalValue<CssProperties["borderInlineEndStyle"] | AnyString>
|
|
1248
|
+
borderInlineEndStyle?: ConditionalValue<CssVars | CssProperties["borderInlineEndStyle"] | AnyString>
|
|
1249
1249
|
/**
|
|
1250
1250
|
* 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`.
|
|
1251
1251
|
*
|
|
@@ -1302,7 +1302,7 @@ borderInlineStartColor?: ConditionalValue<UtilityValues["borderInlineStartColor"
|
|
|
1302
1302
|
*
|
|
1303
1303
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style
|
|
1304
1304
|
*/
|
|
1305
|
-
borderInlineStartStyle?: ConditionalValue<CssProperties["borderInlineStartStyle"] | AnyString>
|
|
1305
|
+
borderInlineStartStyle?: ConditionalValue<CssVars | CssProperties["borderInlineStartStyle"] | AnyString>
|
|
1306
1306
|
/**
|
|
1307
1307
|
* 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`.
|
|
1308
1308
|
*
|
|
@@ -1356,7 +1356,7 @@ borderLeftColor?: ConditionalValue<UtilityValues["borderLeftColor"] | CssPropert
|
|
|
1356
1356
|
*
|
|
1357
1357
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-left-style
|
|
1358
1358
|
*/
|
|
1359
|
-
borderLeftStyle?: ConditionalValue<CssProperties["borderLeftStyle"] | AnyString>
|
|
1359
|
+
borderLeftStyle?: ConditionalValue<CssVars | CssProperties["borderLeftStyle"] | AnyString>
|
|
1360
1360
|
/**
|
|
1361
1361
|
* The **`border-left-width`** CSS property sets the width of the left border of an element.
|
|
1362
1362
|
*
|
|
@@ -1423,7 +1423,7 @@ borderRightColor?: ConditionalValue<UtilityValues["borderRightColor"] | CssPrope
|
|
|
1423
1423
|
*
|
|
1424
1424
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-right-style
|
|
1425
1425
|
*/
|
|
1426
|
-
borderRightStyle?: ConditionalValue<CssProperties["borderRightStyle"] | AnyString>
|
|
1426
|
+
borderRightStyle?: ConditionalValue<CssVars | CssProperties["borderRightStyle"] | AnyString>
|
|
1427
1427
|
/**
|
|
1428
1428
|
* The **`border-right-width`** CSS property sets the width of the right border of an element.
|
|
1429
1429
|
*
|
|
@@ -1561,7 +1561,7 @@ borderTopRightRadius?: ConditionalValue<UtilityValues["borderTopRightRadius"] |
|
|
|
1561
1561
|
*
|
|
1562
1562
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-top-style
|
|
1563
1563
|
*/
|
|
1564
|
-
borderTopStyle?: ConditionalValue<CssProperties["borderTopStyle"] | AnyString>
|
|
1564
|
+
borderTopStyle?: ConditionalValue<CssVars | CssProperties["borderTopStyle"] | AnyString>
|
|
1565
1565
|
/**
|
|
1566
1566
|
* The **`border-top-width`** CSS property sets the width of the top border of an element.
|
|
1567
1567
|
*
|
|
@@ -1616,7 +1616,7 @@ bottom?: ConditionalValue<UtilityValues["bottom"] | CssProperties["bottom"] | An
|
|
|
1616
1616
|
*
|
|
1617
1617
|
* @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break
|
|
1618
1618
|
*/
|
|
1619
|
-
boxDecorationBreak?: ConditionalValue<CssProperties["boxDecorationBreak"] | AnyString>
|
|
1619
|
+
boxDecorationBreak?: ConditionalValue<CssVars | CssProperties["boxDecorationBreak"] | AnyString>
|
|
1620
1620
|
boxDirection?: ConditionalValue<CssProperties["boxDirection"] | AnyString>
|
|
1621
1621
|
boxFlex?: ConditionalValue<CssProperties["boxFlex"] | AnyString>
|
|
1622
1622
|
boxFlexGroup?: ConditionalValue<CssProperties["boxFlexGroup"] | AnyString>
|
|
@@ -1653,7 +1653,7 @@ boxShadow?: ConditionalValue<UtilityValues["boxShadow"] | CssProperties["boxShad
|
|
|
1653
1653
|
*
|
|
1654
1654
|
* @see https://developer.mozilla.org/docs/Web/CSS/box-sizing
|
|
1655
1655
|
*/
|
|
1656
|
-
boxSizing?: ConditionalValue<CssProperties["boxSizing"] | AnyString>
|
|
1656
|
+
boxSizing?: ConditionalValue<CssVars | CssProperties["boxSizing"] | AnyString>
|
|
1657
1657
|
/**
|
|
1658
1658
|
* The **`break-after`** CSS property sets how page, column, or region breaks should behave after a generated box. If there is no generated box, the property is ignored.
|
|
1659
1659
|
*
|
|
@@ -1667,7 +1667,7 @@ boxSizing?: ConditionalValue<CssProperties["boxSizing"] | AnyString>
|
|
|
1667
1667
|
*
|
|
1668
1668
|
* @see https://developer.mozilla.org/docs/Web/CSS/break-after
|
|
1669
1669
|
*/
|
|
1670
|
-
breakAfter?: ConditionalValue<CssProperties["breakAfter"] | AnyString>
|
|
1670
|
+
breakAfter?: ConditionalValue<CssVars | CssProperties["breakAfter"] | AnyString>
|
|
1671
1671
|
/**
|
|
1672
1672
|
* The **`break-before`** CSS property sets how page, column, or region breaks should behave before a generated box. If there is no generated box, the property is ignored.
|
|
1673
1673
|
*
|
|
@@ -1681,7 +1681,7 @@ breakAfter?: ConditionalValue<CssProperties["breakAfter"] | AnyString>
|
|
|
1681
1681
|
*
|
|
1682
1682
|
* @see https://developer.mozilla.org/docs/Web/CSS/break-before
|
|
1683
1683
|
*/
|
|
1684
|
-
breakBefore?: ConditionalValue<CssProperties["breakBefore"] | AnyString>
|
|
1684
|
+
breakBefore?: ConditionalValue<CssVars | CssProperties["breakBefore"] | AnyString>
|
|
1685
1685
|
/**
|
|
1686
1686
|
* The **`break-inside`** CSS property sets how page, column, or region breaks should behave inside a generated box. If there is no generated box, the property is ignored.
|
|
1687
1687
|
*
|
|
@@ -1695,7 +1695,7 @@ breakBefore?: ConditionalValue<CssProperties["breakBefore"] | AnyString>
|
|
|
1695
1695
|
*
|
|
1696
1696
|
* @see https://developer.mozilla.org/docs/Web/CSS/break-inside
|
|
1697
1697
|
*/
|
|
1698
|
-
breakInside?: ConditionalValue<CssProperties["breakInside"] | AnyString>
|
|
1698
|
+
breakInside?: ConditionalValue<CssVars | CssProperties["breakInside"] | AnyString>
|
|
1699
1699
|
/**
|
|
1700
1700
|
* The **`caption-side`** CSS property puts the content of a table's `<caption>` on the specified side. The values are relative to the `writing-mode` of the table.
|
|
1701
1701
|
*
|
|
@@ -1709,7 +1709,7 @@ breakInside?: ConditionalValue<CssProperties["breakInside"] | AnyString>
|
|
|
1709
1709
|
*
|
|
1710
1710
|
* @see https://developer.mozilla.org/docs/Web/CSS/caption-side
|
|
1711
1711
|
*/
|
|
1712
|
-
captionSide?: ConditionalValue<CssProperties["captionSide"] | AnyString>
|
|
1712
|
+
captionSide?: ConditionalValue<CssVars | CssProperties["captionSide"] | AnyString>
|
|
1713
1713
|
/** **Syntax**: `<'caret-color'> || <'caret-shape'>` */
|
|
1714
1714
|
caret?: ConditionalValue<CssProperties["caret"] | AnyString>
|
|
1715
1715
|
/**
|
|
@@ -1745,7 +1745,7 @@ caretShape?: ConditionalValue<CssProperties["caretShape"] | AnyString>
|
|
|
1745
1745
|
*
|
|
1746
1746
|
* @see https://developer.mozilla.org/docs/Web/CSS/clear
|
|
1747
1747
|
*/
|
|
1748
|
-
clear?: ConditionalValue<CssProperties["clear"] | AnyString>
|
|
1748
|
+
clear?: ConditionalValue<CssVars | CssProperties["clear"] | AnyString>
|
|
1749
1749
|
clip?: ConditionalValue<CssProperties["clip"] | AnyString>
|
|
1750
1750
|
/**
|
|
1751
1751
|
* The **`clip-path`** CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden.
|
|
@@ -1819,7 +1819,7 @@ columnCount?: ConditionalValue<CssProperties["columnCount"] | AnyString>
|
|
|
1819
1819
|
*
|
|
1820
1820
|
* @see https://developer.mozilla.org/docs/Web/CSS/column-fill
|
|
1821
1821
|
*/
|
|
1822
|
-
columnFill?: ConditionalValue<CssProperties["columnFill"] | AnyString>
|
|
1822
|
+
columnFill?: ConditionalValue<CssVars | CssProperties["columnFill"] | AnyString>
|
|
1823
1823
|
/**
|
|
1824
1824
|
* The **`column-gap`** CSS property sets the size of the gap (gutter) between an element's columns.
|
|
1825
1825
|
*
|
|
@@ -1876,7 +1876,7 @@ columnRuleColor?: ConditionalValue<CssProperties["columnRuleColor"] | AnyString>
|
|
|
1876
1876
|
*
|
|
1877
1877
|
* @see https://developer.mozilla.org/docs/Web/CSS/column-rule-style
|
|
1878
1878
|
*/
|
|
1879
|
-
columnRuleStyle?: ConditionalValue<CssProperties["columnRuleStyle"] | AnyString>
|
|
1879
|
+
columnRuleStyle?: ConditionalValue<CssVars | CssProperties["columnRuleStyle"] | AnyString>
|
|
1880
1880
|
/**
|
|
1881
1881
|
* The **`column-rule-width`** CSS property sets the width of the line drawn between columns in a multi-column layout.
|
|
1882
1882
|
*
|
|
@@ -2084,7 +2084,7 @@ content?: ConditionalValue<CssProperties["content"] | AnyString>
|
|
|
2084
2084
|
*
|
|
2085
2085
|
* @see https://developer.mozilla.org/docs/Web/CSS/content-visibility
|
|
2086
2086
|
*/
|
|
2087
|
-
contentVisibility?: ConditionalValue<CssProperties["contentVisibility"] | AnyString>
|
|
2087
|
+
contentVisibility?: ConditionalValue<CssVars | CssProperties["contentVisibility"] | AnyString>
|
|
2088
2088
|
/**
|
|
2089
2089
|
* The **`counter-increment`** CSS property increases or decreases the value of a CSS counter by a given value.
|
|
2090
2090
|
*
|
|
@@ -2154,7 +2154,7 @@ cursor?: ConditionalValue<CssProperties["cursor"] | AnyString>
|
|
|
2154
2154
|
*
|
|
2155
2155
|
* @see https://developer.mozilla.org/docs/Web/CSS/direction
|
|
2156
2156
|
*/
|
|
2157
|
-
direction?: ConditionalValue<CssProperties["direction"] | AnyString>
|
|
2157
|
+
direction?: ConditionalValue<CssVars | CssProperties["direction"] | AnyString>
|
|
2158
2158
|
/**
|
|
2159
2159
|
* The **`display`** CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex.
|
|
2160
2160
|
*
|
|
@@ -2168,7 +2168,7 @@ direction?: ConditionalValue<CssProperties["direction"] | AnyString>
|
|
|
2168
2168
|
*
|
|
2169
2169
|
* @see https://developer.mozilla.org/docs/Web/CSS/display
|
|
2170
2170
|
*/
|
|
2171
|
-
display?: ConditionalValue<CssProperties["display"] | AnyString>
|
|
2171
|
+
display?: ConditionalValue<CssVars | CssProperties["display"] | AnyString>
|
|
2172
2172
|
/**
|
|
2173
2173
|
* The **`empty-cells`** CSS property sets whether borders and backgrounds appear around `<table>` cells that have no visible content.
|
|
2174
2174
|
*
|
|
@@ -2182,7 +2182,7 @@ display?: ConditionalValue<CssProperties["display"] | AnyString>
|
|
|
2182
2182
|
*
|
|
2183
2183
|
* @see https://developer.mozilla.org/docs/Web/CSS/empty-cells
|
|
2184
2184
|
*/
|
|
2185
|
-
emptyCells?: ConditionalValue<CssProperties["emptyCells"] | AnyString>
|
|
2185
|
+
emptyCells?: ConditionalValue<CssVars | CssProperties["emptyCells"] | AnyString>
|
|
2186
2186
|
/**
|
|
2187
2187
|
* The **`filter`** CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders.
|
|
2188
2188
|
*
|
|
@@ -2240,7 +2240,7 @@ flexBasis?: ConditionalValue<UtilityValues["flexBasis"] | CssProperties["flexBas
|
|
|
2240
2240
|
*
|
|
2241
2241
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex-direction
|
|
2242
2242
|
*/
|
|
2243
|
-
flexDirection?: ConditionalValue<CssProperties["flexDirection"] | AnyString>
|
|
2243
|
+
flexDirection?: ConditionalValue<CssVars | CssProperties["flexDirection"] | AnyString>
|
|
2244
2244
|
/**
|
|
2245
2245
|
* The **`flex-flow`** CSS shorthand property specifies the direction of a flex container, as well as its wrapping behavior.
|
|
2246
2246
|
*
|
|
@@ -2298,7 +2298,7 @@ flexShrink?: ConditionalValue<CssProperties["flexShrink"] | AnyString>
|
|
|
2298
2298
|
*
|
|
2299
2299
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex-wrap
|
|
2300
2300
|
*/
|
|
2301
|
-
flexWrap?: ConditionalValue<CssProperties["flexWrap"] | AnyString>
|
|
2301
|
+
flexWrap?: ConditionalValue<CssVars | CssProperties["flexWrap"] | AnyString>
|
|
2302
2302
|
/**
|
|
2303
2303
|
* The **`float`** CSS property places an element on the left or right side of its container, allowing text and inline elements to wrap around it. The element is removed from the normal flow of the page, though still remaining a part of the flow (in contrast to absolute positioning).
|
|
2304
2304
|
*
|
|
@@ -2312,7 +2312,7 @@ flexWrap?: ConditionalValue<CssProperties["flexWrap"] | AnyString>
|
|
|
2312
2312
|
*
|
|
2313
2313
|
* @see https://developer.mozilla.org/docs/Web/CSS/float
|
|
2314
2314
|
*/
|
|
2315
|
-
float?: ConditionalValue<UtilityValues["float"] | AnyString>
|
|
2315
|
+
float?: ConditionalValue<UtilityValues["float"] | CssVars | AnyString>
|
|
2316
2316
|
/**
|
|
2317
2317
|
* The **`font`** CSS shorthand property sets all the different properties of an element's font. Alternatively, it sets an element's font to a system font.
|
|
2318
2318
|
*
|
|
@@ -2368,7 +2368,7 @@ fontFeatureSettings?: ConditionalValue<CssProperties["fontFeatureSettings"] | An
|
|
|
2368
2368
|
*
|
|
2369
2369
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-kerning
|
|
2370
2370
|
*/
|
|
2371
|
-
fontKerning?: ConditionalValue<CssProperties["fontKerning"] | AnyString>
|
|
2371
|
+
fontKerning?: ConditionalValue<CssVars | CssProperties["fontKerning"] | AnyString>
|
|
2372
2372
|
/**
|
|
2373
2373
|
* The **`font-language-override`** CSS property controls the use of language-specific glyphs in a typeface.
|
|
2374
2374
|
*
|
|
@@ -2703,7 +2703,7 @@ fontWeight?: ConditionalValue<UtilityValues["fontWeight"] | CssProperties["fontW
|
|
|
2703
2703
|
*
|
|
2704
2704
|
* @see https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust
|
|
2705
2705
|
*/
|
|
2706
|
-
forcedColorAdjust?: ConditionalValue<CssProperties["forcedColorAdjust"] | AnyString>
|
|
2706
|
+
forcedColorAdjust?: ConditionalValue<CssVars | CssProperties["forcedColorAdjust"] | AnyString>
|
|
2707
2707
|
/**
|
|
2708
2708
|
* The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`.
|
|
2709
2709
|
*
|
|
@@ -3164,7 +3164,7 @@ insetInlineStart?: ConditionalValue<UtilityValues["insetInlineStart"] | CssPrope
|
|
|
3164
3164
|
*
|
|
3165
3165
|
* @see https://developer.mozilla.org/docs/Web/CSS/isolation
|
|
3166
3166
|
*/
|
|
3167
|
-
isolation?: ConditionalValue<CssProperties["isolation"] | AnyString>
|
|
3167
|
+
isolation?: ConditionalValue<CssVars | CssProperties["isolation"] | AnyString>
|
|
3168
3168
|
/**
|
|
3169
3169
|
* The CSS **`justify-content`** property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.
|
|
3170
3170
|
*
|
|
@@ -3264,7 +3264,7 @@ letterSpacing?: ConditionalValue<UtilityValues["letterSpacing"] | CssProperties[
|
|
|
3264
3264
|
*
|
|
3265
3265
|
* @see https://developer.mozilla.org/docs/Web/CSS/line-break
|
|
3266
3266
|
*/
|
|
3267
|
-
lineBreak?: ConditionalValue<CssProperties["lineBreak"] | AnyString>
|
|
3267
|
+
lineBreak?: ConditionalValue<CssVars | CssProperties["lineBreak"] | AnyString>
|
|
3268
3268
|
/**
|
|
3269
3269
|
* **Syntax**: `none | <integer>`
|
|
3270
3270
|
*
|
|
@@ -3946,7 +3946,7 @@ minWidth?: ConditionalValue<UtilityValues["minWidth"] | CssProperties["minWidth"
|
|
|
3946
3946
|
*
|
|
3947
3947
|
* @see https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode
|
|
3948
3948
|
*/
|
|
3949
|
-
mixBlendMode?: ConditionalValue<CssProperties["mixBlendMode"] | AnyString>
|
|
3949
|
+
mixBlendMode?: ConditionalValue<CssVars | CssProperties["mixBlendMode"] | AnyString>
|
|
3950
3950
|
/**
|
|
3951
3951
|
* The **`object-fit`** CSS property sets how the content of a replaced element, such as an `<img>` or `<video>`, should be resized to fit its container.
|
|
3952
3952
|
*
|
|
@@ -3960,7 +3960,7 @@ mixBlendMode?: ConditionalValue<CssProperties["mixBlendMode"] | AnyString>
|
|
|
3960
3960
|
*
|
|
3961
3961
|
* @see https://developer.mozilla.org/docs/Web/CSS/object-fit
|
|
3962
3962
|
*/
|
|
3963
|
-
objectFit?: ConditionalValue<CssProperties["objectFit"] | AnyString>
|
|
3963
|
+
objectFit?: ConditionalValue<CssVars | CssProperties["objectFit"] | AnyString>
|
|
3964
3964
|
/**
|
|
3965
3965
|
* The **`object-position`** CSS property specifies the alignment of the selected replaced element's contents within the element's box. Areas of the box which aren't covered by the replaced element's object will show the element's background.
|
|
3966
3966
|
*
|
|
@@ -4153,7 +4153,7 @@ outlineOffset?: ConditionalValue<UtilityValues["outlineOffset"] | CssProperties[
|
|
|
4153
4153
|
*
|
|
4154
4154
|
* @see https://developer.mozilla.org/docs/Web/CSS/outline-style
|
|
4155
4155
|
*/
|
|
4156
|
-
outlineStyle?: ConditionalValue<CssProperties["outlineStyle"] | AnyString>
|
|
4156
|
+
outlineStyle?: ConditionalValue<CssVars | CssProperties["outlineStyle"] | AnyString>
|
|
4157
4157
|
/**
|
|
4158
4158
|
* 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`.
|
|
4159
4159
|
*
|
|
@@ -4181,7 +4181,7 @@ outlineWidth?: ConditionalValue<CssProperties["outlineWidth"] | AnyString>
|
|
|
4181
4181
|
*
|
|
4182
4182
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow
|
|
4183
4183
|
*/
|
|
4184
|
-
overflow?: ConditionalValue<CssProperties["overflow"] | AnyString>
|
|
4184
|
+
overflow?: ConditionalValue<CssVars | CssProperties["overflow"] | AnyString>
|
|
4185
4185
|
/**
|
|
4186
4186
|
* **Syntax**: `auto | none`
|
|
4187
4187
|
*
|
|
@@ -4205,7 +4205,7 @@ overflowAnchor?: ConditionalValue<CssProperties["overflowAnchor"] | AnyString>
|
|
|
4205
4205
|
*
|
|
4206
4206
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-block
|
|
4207
4207
|
*/
|
|
4208
|
-
overflowBlock?: ConditionalValue<CssProperties["overflowBlock"] | AnyString>
|
|
4208
|
+
overflowBlock?: ConditionalValue<CssVars | CssProperties["overflowBlock"] | AnyString>
|
|
4209
4209
|
/**
|
|
4210
4210
|
* The **`overflow-clip-box`** CSS property specifies relative to which box the clipping happens when there is an overflow. It is short hand for the `overflow-clip-box-inline` and `overflow-clip-box-block` properties.
|
|
4211
4211
|
*
|
|
@@ -4237,7 +4237,7 @@ overflowClipMargin?: ConditionalValue<CssProperties["overflowClipMargin"] | AnyS
|
|
|
4237
4237
|
*
|
|
4238
4238
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-inline
|
|
4239
4239
|
*/
|
|
4240
|
-
overflowInline?: ConditionalValue<CssProperties["overflowInline"] | AnyString>
|
|
4240
|
+
overflowInline?: ConditionalValue<CssVars | CssProperties["overflowInline"] | AnyString>
|
|
4241
4241
|
/**
|
|
4242
4242
|
* The **`overflow-wrap`** CSS property applies to inline elements, setting whether the browser should insert line breaks within an otherwise unbreakable string to prevent text from overflowing its line box.
|
|
4243
4243
|
*
|
|
@@ -4252,7 +4252,7 @@ overflowInline?: ConditionalValue<CssProperties["overflowInline"] | AnyString>
|
|
|
4252
4252
|
*
|
|
4253
4253
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap
|
|
4254
4254
|
*/
|
|
4255
|
-
overflowWrap?: ConditionalValue<CssProperties["overflowWrap"] | AnyString>
|
|
4255
|
+
overflowWrap?: ConditionalValue<CssVars | CssProperties["overflowWrap"] | AnyString>
|
|
4256
4256
|
/**
|
|
4257
4257
|
* The **`overflow-x`** CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.
|
|
4258
4258
|
*
|
|
@@ -4266,7 +4266,7 @@ overflowWrap?: ConditionalValue<CssProperties["overflowWrap"] | AnyString>
|
|
|
4266
4266
|
*
|
|
4267
4267
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-x
|
|
4268
4268
|
*/
|
|
4269
|
-
overflowX?: ConditionalValue<CssProperties["overflowX"] | AnyString>
|
|
4269
|
+
overflowX?: ConditionalValue<CssVars | CssProperties["overflowX"] | AnyString>
|
|
4270
4270
|
/**
|
|
4271
4271
|
* The **`overflow-y`** CSS property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.
|
|
4272
4272
|
*
|
|
@@ -4280,7 +4280,7 @@ overflowX?: ConditionalValue<CssProperties["overflowX"] | AnyString>
|
|
|
4280
4280
|
*
|
|
4281
4281
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-y
|
|
4282
4282
|
*/
|
|
4283
|
-
overflowY?: ConditionalValue<CssProperties["overflowY"] | AnyString>
|
|
4283
|
+
overflowY?: ConditionalValue<CssVars | CssProperties["overflowY"] | AnyString>
|
|
4284
4284
|
/**
|
|
4285
4285
|
* The **`overlay`** CSS property specifies whether an element appearing in the top layer (for example, a shown popover or modal `<dialog>` element) is actually rendered in the top layer. This property is only relevant within a list of `transition-property` values, and only if `allow-discrete` is set as the `transition-behavior`.
|
|
4286
4286
|
*
|
|
@@ -4664,7 +4664,7 @@ placeSelf?: ConditionalValue<CssProperties["placeSelf"] | AnyString>
|
|
|
4664
4664
|
*
|
|
4665
4665
|
* @see https://developer.mozilla.org/docs/Web/CSS/pointer-events
|
|
4666
4666
|
*/
|
|
4667
|
-
pointerEvents?: ConditionalValue<CssProperties["pointerEvents"] | AnyString>
|
|
4667
|
+
pointerEvents?: ConditionalValue<CssVars | CssProperties["pointerEvents"] | AnyString>
|
|
4668
4668
|
/**
|
|
4669
4669
|
* The **`position`** CSS property sets how an element is positioned in a document. The `top`, `right`, `bottom`, and `left` properties determine the final location of positioned elements.
|
|
4670
4670
|
*
|
|
@@ -4678,7 +4678,7 @@ pointerEvents?: ConditionalValue<CssProperties["pointerEvents"] | AnyString>
|
|
|
4678
4678
|
*
|
|
4679
4679
|
* @see https://developer.mozilla.org/docs/Web/CSS/position
|
|
4680
4680
|
*/
|
|
4681
|
-
position?: ConditionalValue<CssProperties["position"] | AnyString>
|
|
4681
|
+
position?: ConditionalValue<CssVars | CssProperties["position"] | AnyString>
|
|
4682
4682
|
/**
|
|
4683
4683
|
* The **`print-color-adjust`** CSS property sets what, if anything, the user agent may do to optimize the appearance of the element on the output device. By default, the browser is allowed to make any adjustments to the element's appearance it determines to be necessary and prudent given the type and capabilities of the output device.
|
|
4684
4684
|
*
|
|
@@ -4721,7 +4721,7 @@ quotes?: ConditionalValue<CssProperties["quotes"] | AnyString>
|
|
|
4721
4721
|
*
|
|
4722
4722
|
* @see https://developer.mozilla.org/docs/Web/CSS/resize
|
|
4723
4723
|
*/
|
|
4724
|
-
resize?: ConditionalValue<CssProperties["resize"] | AnyString>
|
|
4724
|
+
resize?: ConditionalValue<CssVars | CssProperties["resize"] | AnyString>
|
|
4725
4725
|
/**
|
|
4726
4726
|
* The **`right`** CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned elements.
|
|
4727
4727
|
*
|
|
@@ -4868,7 +4868,7 @@ scrollbarWidth?: ConditionalValue<CssProperties["scrollbarWidth"] | AnyString>
|
|
|
4868
4868
|
*
|
|
4869
4869
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-behavior
|
|
4870
4870
|
*/
|
|
4871
|
-
scrollBehavior?: ConditionalValue<CssProperties["scrollBehavior"] | AnyString>
|
|
4871
|
+
scrollBehavior?: ConditionalValue<CssVars | CssProperties["scrollBehavior"] | AnyString>
|
|
4872
4872
|
/**
|
|
4873
4873
|
* 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.
|
|
4874
4874
|
*
|
|
@@ -5729,7 +5729,7 @@ top?: ConditionalValue<UtilityValues["top"] | CssProperties["top"] | AnyString>
|
|
|
5729
5729
|
*
|
|
5730
5730
|
* @see https://developer.mozilla.org/docs/Web/CSS/touch-action
|
|
5731
5731
|
*/
|
|
5732
|
-
touchAction?: ConditionalValue<CssProperties["touchAction"] | AnyString>
|
|
5732
|
+
touchAction?: ConditionalValue<CssVars | CssProperties["touchAction"] | AnyString>
|
|
5733
5733
|
/**
|
|
5734
5734
|
* The **`transform`** CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.
|
|
5735
5735
|
*
|
|
@@ -5758,7 +5758,7 @@ transform?: ConditionalValue<CssProperties["transform"] | AnyString>
|
|
|
5758
5758
|
*
|
|
5759
5759
|
* @see https://developer.mozilla.org/docs/Web/CSS/transform-box
|
|
5760
5760
|
*/
|
|
5761
|
-
transformBox?: ConditionalValue<CssProperties["transformBox"] | AnyString>
|
|
5761
|
+
transformBox?: ConditionalValue<CssVars | CssProperties["transformBox"] | AnyString>
|
|
5762
5762
|
/**
|
|
5763
5763
|
* The **`transform-origin`** CSS property sets the origin for an element's transformations.
|
|
5764
5764
|
*
|
|
@@ -5788,7 +5788,7 @@ transformOrigin?: ConditionalValue<CssProperties["transformOrigin"] | AnyString>
|
|
|
5788
5788
|
*
|
|
5789
5789
|
* @see https://developer.mozilla.org/docs/Web/CSS/transform-style
|
|
5790
5790
|
*/
|
|
5791
|
-
transformStyle?: ConditionalValue<CssProperties["transformStyle"] | AnyString>
|
|
5791
|
+
transformStyle?: ConditionalValue<CssVars | CssProperties["transformStyle"] | AnyString>
|
|
5792
5792
|
/**
|
|
5793
5793
|
* The **`transition`** CSS property is a shorthand property for `transition-property`, `transition-duration`, `transition-timing-function`, and `transition-delay`.
|
|
5794
5794
|
*
|
|
@@ -5918,7 +5918,7 @@ unicodeBidi?: ConditionalValue<CssProperties["unicodeBidi"] | AnyString>
|
|
|
5918
5918
|
*
|
|
5919
5919
|
* @see https://developer.mozilla.org/docs/Web/CSS/user-select
|
|
5920
5920
|
*/
|
|
5921
|
-
userSelect?: ConditionalValue<CssProperties["userSelect"] | AnyString>
|
|
5921
|
+
userSelect?: ConditionalValue<CssVars | CssProperties["userSelect"] | AnyString>
|
|
5922
5922
|
/**
|
|
5923
5923
|
* The **`vertical-align`** CSS property sets vertical alignment of an inline, inline-block or table-cell box.
|
|
5924
5924
|
*
|
|
@@ -6014,7 +6014,7 @@ viewTransitionName?: ConditionalValue<CssProperties["viewTransitionName"] | AnyS
|
|
|
6014
6014
|
*
|
|
6015
6015
|
* @see https://developer.mozilla.org/docs/Web/CSS/visibility
|
|
6016
6016
|
*/
|
|
6017
|
-
visibility?: ConditionalValue<CssProperties["visibility"] | AnyString>
|
|
6017
|
+
visibility?: ConditionalValue<CssVars | CssProperties["visibility"] | AnyString>
|
|
6018
6018
|
/**
|
|
6019
6019
|
* The **`white-space`** CSS property sets how white space inside an element is handled.
|
|
6020
6020
|
*
|
|
@@ -6098,7 +6098,7 @@ willChange?: ConditionalValue<CssProperties["willChange"] | AnyString>
|
|
|
6098
6098
|
*
|
|
6099
6099
|
* @see https://developer.mozilla.org/docs/Web/CSS/word-break
|
|
6100
6100
|
*/
|
|
6101
|
-
wordBreak?: ConditionalValue<CssProperties["wordBreak"] | AnyString>
|
|
6101
|
+
wordBreak?: ConditionalValue<CssVars | CssProperties["wordBreak"] | AnyString>
|
|
6102
6102
|
/**
|
|
6103
6103
|
* The **`word-spacing`** CSS property sets the length of space between words and between tags.
|
|
6104
6104
|
*
|
|
@@ -6139,7 +6139,7 @@ wordWrap?: ConditionalValue<CssProperties["wordWrap"] | AnyString>
|
|
|
6139
6139
|
*
|
|
6140
6140
|
* @see https://developer.mozilla.org/docs/Web/CSS/writing-mode
|
|
6141
6141
|
*/
|
|
6142
|
-
writingMode?: ConditionalValue<CssProperties["writingMode"] | AnyString>
|
|
6142
|
+
writingMode?: ConditionalValue<CssVars | CssProperties["writingMode"] | AnyString>
|
|
6143
6143
|
/**
|
|
6144
6144
|
* The **`z-index`** CSS property sets the z-order of a positioned element and its descendants or flex items. Overlapping elements with a larger z-index cover those with a smaller one.
|
|
6145
6145
|
*
|