From 02f76f277e3c7ebfb17e46a295839a2a772455cb Mon Sep 17 00:00:00 2001 From: k8o <61353435+k35o@users.noreply.github.com> Date: Thu, 30 May 2024 16:38:02 +0900 Subject: [PATCH] Ensure props are used in strict-tokens-scope.ts. (#56) * fix: add props to strictTokens * chore: update test & add changeset --------- Co-authored-by: Alexandre Stahmer --- .changeset/lazy-rules-wink.md | 5 + .../__tests__/strict-tokens-scope.test.ts | 560 +++++++++--------- .../panda-plugins/src/strict-tokens-scope.ts | 2 +- 3 files changed, 288 insertions(+), 279 deletions(-) create mode 100644 .changeset/lazy-rules-wink.md diff --git a/.changeset/lazy-rules-wink.md b/.changeset/lazy-rules-wink.md new file mode 100644 index 000000000..2c1d88e8b --- /dev/null +++ b/.changeset/lazy-rules-wink.md @@ -0,0 +1,5 @@ +--- +"@pandabox/panda-plugins": patch +--- + +Fix an issue with the StrictTokensScope plugin when only using `props` (and no `categories`) diff --git a/packages/panda-plugins/__tests__/strict-tokens-scope.test.ts b/packages/panda-plugins/__tests__/strict-tokens-scope.test.ts index 7a831b9a3..753151f08 100644 --- a/packages/panda-plugins/__tests__/strict-tokens-scope.test.ts +++ b/packages/panda-plugins/__tests__/strict-tokens-scope.test.ts @@ -22649,7 +22649,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/accent-color */ - accentColor?: ConditionalValue> + accentColor?: ConditionalValue /** * 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. * @@ -22735,7 +22735,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/animation */ - animation?: ConditionalValue> + animation?: ConditionalValue /** * The **\`animation-composition\`** CSS property specifies the composite operation to use when multiple animations affect the same property simultaneously. * @@ -22764,7 +22764,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/animation-delay */ - animationDelay?: ConditionalValue> + animationDelay?: ConditionalValue /** * 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. * @@ -22952,7 +22952,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/aspect-ratio */ - aspectRatio?: ConditionalValue> + aspectRatio?: ConditionalValue azimuth?: ConditionalValue> /** * 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. @@ -22967,7 +22967,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/backdrop-filter */ - backdropFilter?: ConditionalValue> + backdropFilter?: ConditionalValue /** * The **\`backface-visibility\`** CSS property sets whether the back face of an element is visible when turned towards the user. * @@ -22994,7 +22994,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/background */ - background?: ConditionalValue> + background?: ConditionalValue /** * The **\`background-attachment\`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block. * @@ -23051,7 +23051,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/background-color */ - backgroundColor?: ConditionalValue> + backgroundColor?: ConditionalValue /** * The **\`background-image\`** CSS property sets one or more background images on an element. * @@ -23164,7 +23164,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/block-size */ - blockSize?: ConditionalValue> + blockSize?: ConditionalValue /** * The **\`border\`** shorthand CSS property sets an element's border. It sets the values of \`border-width\`, \`border-style\`, and \`border-color\`. * @@ -23176,7 +23176,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border */ - border?: ConditionalValue> + border?: ConditionalValue /** * 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. * @@ -23188,7 +23188,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-block */ - borderBlock?: ConditionalValue> + borderBlock?: ConditionalValue /** * 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\`. * @@ -23202,7 +23202,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-color */ - borderBlockColor?: ConditionalValue> + borderBlockColor?: ConditionalValue /** * 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\`. * @@ -23242,7 +23242,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end */ - borderBlockEnd?: ConditionalValue> + borderBlockEnd?: ConditionalValue /** * 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\`. * @@ -23256,7 +23256,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-end-color */ - borderBlockEndColor?: ConditionalValue> + borderBlockEndColor?: ConditionalValue /** * 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\`. * @@ -23296,7 +23296,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start */ - borderBlockStart?: ConditionalValue> + borderBlockStart?: ConditionalValue /** * 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\`. * @@ -23310,7 +23310,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-start-color */ - borderBlockStartColor?: ConditionalValue> + borderBlockStartColor?: ConditionalValue /** * 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\`. * @@ -23350,7 +23350,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom */ - borderBottom?: ConditionalValue> + borderBottom?: ConditionalValue /** * 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\`. * @@ -23364,7 +23364,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-color */ - borderBottomColor?: ConditionalValue> + borderBottomColor?: ConditionalValue /** * 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. * @@ -23379,7 +23379,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius */ - borderBottomLeftRadius?: ConditionalValue> + borderBottomLeftRadius?: ConditionalValue /** * 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. * @@ -23394,7 +23394,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius */ - borderBottomRightRadius?: ConditionalValue> + borderBottomRightRadius?: ConditionalValue /** * The **\`border-bottom-style\`** CSS property sets the line style of an element's bottom \`border\`. * @@ -23448,7 +23448,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-color */ - borderColor?: ConditionalValue> + borderColor?: ConditionalValue /** * 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. * @@ -23462,7 +23462,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius */ - borderEndEndRadius?: ConditionalValue> + borderEndEndRadius?: ConditionalValue /** * 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. * @@ -23476,7 +23476,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius */ - borderEndStartRadius?: ConditionalValue> + borderEndStartRadius?: ConditionalValue /** * The **\`border-image\`** CSS property draws an image around a given element. It replaces the element's regular border. * @@ -23571,7 +23571,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline */ - borderInline?: ConditionalValue> + borderInline?: ConditionalValue /** * 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. * @@ -23583,7 +23583,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end */ - borderInlineEnd?: ConditionalValue> + borderInlineEnd?: ConditionalValue /** * 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\`. * @@ -23597,7 +23597,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color */ - borderInlineColor?: ConditionalValue> + borderInlineColor?: ConditionalValue /** * 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\`. * @@ -23640,7 +23640,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color */ - borderInlineEndColor?: ConditionalValue> + borderInlineEndColor?: ConditionalValue /** * 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\`. * @@ -23682,7 +23682,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start */ - borderInlineStart?: ConditionalValue> + borderInlineStart?: ConditionalValue /** * 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\`. * @@ -23697,7 +23697,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color */ - borderInlineStartColor?: ConditionalValue> + borderInlineStartColor?: ConditionalValue /** * 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\`. * @@ -23738,7 +23738,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-left */ - borderLeft?: ConditionalValue> + borderLeft?: ConditionalValue /** * 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\`. * @@ -23752,7 +23752,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-left-color */ - borderLeftColor?: ConditionalValue> + borderLeftColor?: ConditionalValue /** * The **\`border-left-style\`** CSS property sets the line style of an element's left \`border\`. * @@ -23793,7 +23793,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-radius */ - borderRadius?: ConditionalValue> + borderRadius?: ConditionalValue /** * The **\`border-right\`** shorthand CSS property sets all the properties of an element's right border. * @@ -23805,7 +23805,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-right */ - borderRight?: ConditionalValue> + borderRight?: ConditionalValue /** * 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\`. * @@ -23819,7 +23819,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-right-color */ - borderRightColor?: ConditionalValue> + borderRightColor?: ConditionalValue /** * The **\`border-right-style\`** CSS property sets the line style of an element's right \`border\`. * @@ -23861,7 +23861,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-spacing */ - borderSpacing?: ConditionalValue> + borderSpacing?: ConditionalValue /** * 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. * @@ -23875,7 +23875,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius */ - borderStartEndRadius?: ConditionalValue> + borderStartEndRadius?: ConditionalValue /** * 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. * @@ -23889,7 +23889,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius */ - borderStartStartRadius?: ConditionalValue> + borderStartStartRadius?: ConditionalValue /** * The **\`border-style\`** shorthand CSS property sets the line style for all four sides of an element's border. * @@ -23913,7 +23913,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-top */ - borderTop?: ConditionalValue> + borderTop?: ConditionalValue /** * 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\`. * @@ -23927,7 +23927,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-top-color */ - borderTopColor?: ConditionalValue> + borderTopColor?: ConditionalValue /** * 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. * @@ -23942,7 +23942,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius */ - borderTopLeftRadius?: ConditionalValue> + borderTopLeftRadius?: ConditionalValue /** * 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. * @@ -23957,7 +23957,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius */ - borderTopRightRadius?: ConditionalValue> + borderTopRightRadius?: ConditionalValue /** * The **\`border-top-style\`** CSS property sets the line style of an element's top \`border\`. * @@ -24011,7 +24011,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/bottom */ - bottom?: ConditionalValue> + bottom?: ConditionalValue boxAlign?: ConditionalValue> /** * The **\`box-decoration-break\`** CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages. @@ -24048,7 +24048,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/box-shadow */ - boxShadow?: ConditionalValue> + boxShadow?: ConditionalValue /** * The **\`box-sizing\`** CSS property sets how the total width and height of an element is calculated. * @@ -24135,7 +24135,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/caret-color */ - caretColor?: ConditionalValue> + caretColor?: ConditionalValue /** * **Syntax**: \`auto | bar | block | underscore\` * @@ -24243,7 +24243,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/column-gap */ - columnGap?: ConditionalValue> + columnGap?: ConditionalValue /** * The **\`column-rule\`** shorthand CSS property sets the width, style, and color of the line drawn between columns in a multi-column layout. * @@ -24607,7 +24607,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/filter */ - filter?: ConditionalValue> + filter?: ConditionalValue /** * The **\`flex\`** CSS shorthand property sets how a flex _item_ will grow or shrink to fit the space available in its flex container. * @@ -24620,7 +24620,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/flex */ - flex?: ConditionalValue> + flex?: ConditionalValue /** * 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\`. * @@ -24635,7 +24635,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/flex-basis */ - flexBasis?: ConditionalValue> + flexBasis?: ConditionalValue /** * 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). * @@ -24722,7 +24722,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/float */ - float?: ConditionalValue> + float?: ConditionalValue /** * 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. * @@ -24748,7 +24748,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/font-family */ - fontFamily?: ConditionalValue> + fontFamily?: ConditionalValue /** * The **\`font-feature-settings\`** CSS property controls advanced typographic features in OpenType fonts. * @@ -24847,7 +24847,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/font-size */ - fontSize?: ConditionalValue> + fontSize?: ConditionalValue /** * 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). * @@ -25098,7 +25098,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/font-weight */ - fontWeight?: ConditionalValue> + fontWeight?: ConditionalValue /** * 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. * @@ -25125,7 +25125,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/gap */ - gap?: ConditionalValue> + gap?: ConditionalValue /** * The **\`grid\`** CSS property is a shorthand property that sets all of the explicit and implicit grid properties in a single declaration. * @@ -25163,7 +25163,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns */ - gridAutoColumns?: ConditionalValue> + gridAutoColumns?: ConditionalValue /** * The **\`grid-auto-flow\`** CSS property controls how the auto-placement algorithm works, specifying exactly how auto-placed items get flowed into the grid. * @@ -25191,7 +25191,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows */ - gridAutoRows?: ConditionalValue> + gridAutoRows?: ConditionalValue /** * 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. * @@ -25203,7 +25203,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/grid-column */ - gridColumn?: ConditionalValue> + gridColumn?: ConditionalValue /** * 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. * @@ -25218,7 +25218,7 @@ describe('strict-tokens-scope', () => { * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end */ gridColumnEnd?: ConditionalValue> - gridColumnGap?: ConditionalValue> + gridColumnGap?: ConditionalValue /** * 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. * @@ -25233,7 +25233,7 @@ describe('strict-tokens-scope', () => { * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-start */ gridColumnStart?: ConditionalValue> - gridGap?: ConditionalValue> + gridGap?: ConditionalValue /** * 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. * @@ -25245,7 +25245,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/grid-row */ - gridRow?: ConditionalValue> + gridRow?: ConditionalValue /** * 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. * @@ -25260,7 +25260,7 @@ describe('strict-tokens-scope', () => { * @see https://developer.mozilla.org/docs/Web/CSS/grid-row-end */ gridRowEnd?: ConditionalValue> - gridRowGap?: ConditionalValue> + gridRowGap?: ConditionalValue /** * 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. * @@ -25314,7 +25314,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-columns */ - gridTemplateColumns?: ConditionalValue> + gridTemplateColumns?: ConditionalValue /** * The **\`grid-template-rows\`** CSS property defines the line names and track sizing functions of the grid rows. * @@ -25328,7 +25328,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-rows */ - gridTemplateRows?: ConditionalValue> + gridTemplateRows?: ConditionalValue /** * 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. * @@ -25356,7 +25356,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/height */ - height?: ConditionalValue> + height?: ConditionalValue /** * The **\`hyphenate-character\`** CSS property sets the character (or string) used at the end of a line before a hyphenation break. * @@ -25462,7 +25462,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inline-size */ - inlineSize?: ConditionalValue> + inlineSize?: ConditionalValue /** * **Syntax**: \`auto | none\` * @@ -25480,7 +25480,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inset */ - inset?: ConditionalValue> + inset?: ConditionalValue /** * 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\`. * @@ -25492,7 +25492,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inset-block */ - insetBlock?: ConditionalValue> + insetBlock?: ConditionalValue /** * 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\`. * @@ -25506,7 +25506,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end */ - insetBlockEnd?: ConditionalValue> + insetBlockEnd?: ConditionalValue /** * 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\`. * @@ -25520,7 +25520,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start */ - insetBlockStart?: ConditionalValue> + insetBlockStart?: ConditionalValue /** * 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\`. * @@ -25532,7 +25532,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline */ - insetInline?: ConditionalValue> + insetInline?: ConditionalValue /** * 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\`. * @@ -25546,7 +25546,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end */ - insetInlineEnd?: ConditionalValue> + insetInlineEnd?: ConditionalValue /** * 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\`. * @@ -25560,7 +25560,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start */ - insetInlineStart?: ConditionalValue> + insetInlineStart?: ConditionalValue /** * The **\`isolation\`** CSS property determines whether an element must create a new stacking context. * @@ -25645,7 +25645,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/left */ - left?: ConditionalValue> + left?: ConditionalValue /** * 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. * @@ -25659,7 +25659,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/letter-spacing */ - letterSpacing?: ConditionalValue> + letterSpacing?: ConditionalValue /** * The **\`line-break\`** CSS property sets how to break lines of Chinese, Japanese, or Korean (CJK) text when working with punctuation and symbols. * @@ -25694,7 +25694,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/line-height */ - lineHeight?: ConditionalValue> + lineHeight?: ConditionalValue /** * 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. * @@ -25774,7 +25774,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin */ - margin?: ConditionalValue> + margin?: ConditionalValue /** * 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. * @@ -25786,7 +25786,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-block */ - marginBlock?: ConditionalValue> + marginBlock?: ConditionalValue /** * 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. * @@ -25800,7 +25800,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-end */ - marginBlockEnd?: ConditionalValue> + marginBlockEnd?: ConditionalValue /** * 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. * @@ -25814,7 +25814,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-block-start */ - marginBlockStart?: ConditionalValue> + marginBlockStart?: ConditionalValue /** * 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. * @@ -25828,7 +25828,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom */ - marginBottom?: ConditionalValue> + marginBottom?: ConditionalValue /** * 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. * @@ -25840,7 +25840,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline */ - marginInline?: ConditionalValue> + marginInline?: ConditionalValue /** * 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\`. * @@ -25855,7 +25855,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end */ - marginInlineEnd?: ConditionalValue> + marginInlineEnd?: ConditionalValue /** * 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\`. * @@ -25870,7 +25870,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start */ - marginInlineStart?: ConditionalValue> + marginInlineStart?: ConditionalValue /** * 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. * @@ -25884,7 +25884,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-left */ - marginLeft?: ConditionalValue> + marginLeft?: ConditionalValue /** * 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. * @@ -25898,7 +25898,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-right */ - marginRight?: ConditionalValue> + marginRight?: ConditionalValue /** * 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. * @@ -25912,7 +25912,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-top */ - marginTop?: ConditionalValue> + marginTop?: ConditionalValue /** * The \`margin-trim\` property allows the container to trim the margins of its children where they adjoin the container's edges. * @@ -26237,7 +26237,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/max-block-size */ - maxBlockSize?: ConditionalValue> + maxBlockSize?: ConditionalValue /** * 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\`. * @@ -26251,7 +26251,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/max-height */ - maxHeight?: ConditionalValue> + maxHeight?: ConditionalValue /** * 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\`. * @@ -26266,7 +26266,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/max-inline-size */ - maxInlineSize?: ConditionalValue> + maxInlineSize?: ConditionalValue /** * **Syntax**: \`none | \` * @@ -26286,7 +26286,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/max-width */ - maxWidth?: ConditionalValue> + maxWidth?: ConditionalValue /** * 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\`. * @@ -26300,7 +26300,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/min-block-size */ - minBlockSize?: ConditionalValue> + minBlockSize?: ConditionalValue /** * 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\`. * @@ -26314,7 +26314,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/min-height */ - minHeight?: ConditionalValue> + minHeight?: ConditionalValue /** * 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\`. * @@ -26328,7 +26328,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/min-inline-size */ - minInlineSize?: ConditionalValue> + minInlineSize?: ConditionalValue /** * 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\`. * @@ -26342,7 +26342,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/min-width */ - minWidth?: ConditionalValue> + minWidth?: ConditionalValue /** * 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. * @@ -26521,7 +26521,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/outline */ - outline?: ConditionalValue> + outline?: ConditionalValue /** * The **\`outline-color\`** CSS property sets the color of an element's outline. * @@ -26535,7 +26535,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/outline-color */ - outlineColor?: ConditionalValue> + outlineColor?: ConditionalValue /** * The **\`outline-offset\`** CSS property sets the amount of space between an outline and the edge or border of an element. * @@ -26549,7 +26549,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/outline-offset */ - outlineOffset?: ConditionalValue> + outlineOffset?: ConditionalValue /** * 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\`. * @@ -26786,7 +26786,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding */ - padding?: ConditionalValue> + padding?: ConditionalValue /** * 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. * @@ -26798,7 +26798,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-block */ - paddingBlock?: ConditionalValue> + paddingBlock?: ConditionalValue /** * 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. * @@ -26812,7 +26812,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-end */ - paddingBlockEnd?: ConditionalValue> + paddingBlockEnd?: ConditionalValue /** * 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. * @@ -26826,7 +26826,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-block-start */ - paddingBlockStart?: ConditionalValue> + paddingBlockStart?: ConditionalValue /** * The **\`padding-bottom\`** CSS property sets the height of the padding area on the bottom of an element. * @@ -26840,7 +26840,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-bottom */ - paddingBottom?: ConditionalValue> + paddingBottom?: ConditionalValue /** * 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. * @@ -26852,7 +26852,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline */ - paddingInline?: ConditionalValue> + paddingInline?: ConditionalValue /** * 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. * @@ -26867,7 +26867,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end */ - paddingInlineEnd?: ConditionalValue> + paddingInlineEnd?: ConditionalValue /** * 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. * @@ -26882,7 +26882,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start */ - paddingInlineStart?: ConditionalValue> + paddingInlineStart?: ConditionalValue /** * The **\`padding-left\`** CSS property sets the width of the padding area to the left of an element. * @@ -26896,7 +26896,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-left */ - paddingLeft?: ConditionalValue> + paddingLeft?: ConditionalValue /** * The **\`padding-right\`** CSS property sets the width of the padding area on the right of an element. * @@ -26910,7 +26910,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-right */ - paddingRight?: ConditionalValue> + paddingRight?: ConditionalValue /** * The **\`padding-top\`** CSS property sets the height of the padding area on the top of an element. * @@ -26924,7 +26924,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-top */ - paddingTop?: ConditionalValue> + paddingTop?: ConditionalValue /** * The **\`page\`** CSS property is used to specify the named page, a specific type of page defined by the \`@page\` at-rule. * @@ -27145,7 +27145,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/right */ - right?: ConditionalValue> + right?: ConditionalValue /** * 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. * @@ -27173,7 +27173,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/row-gap */ - rowGap?: ConditionalValue> + rowGap?: ConditionalValue /** * The **\`ruby-align\`** CSS property defines the distribution of the different ruby elements over the base. * @@ -27222,7 +27222,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scale */ - scale?: ConditionalValue> + scale?: ConditionalValue /** * The **\`scrollbar-color\`** CSS property sets the color of the scrollbar track and thumb. * @@ -27291,7 +27291,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin */ - scrollMargin?: ConditionalValue> + scrollMargin?: ConditionalValue /** * The \`scroll-margin-block\` shorthand property sets the scroll margins of an element in the block dimension. * @@ -27303,7 +27303,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block */ - scrollMarginBlock?: ConditionalValue> + scrollMarginBlock?: ConditionalValue /** * 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. * @@ -27317,7 +27317,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start */ - scrollMarginBlockStart?: ConditionalValue> + scrollMarginBlockStart?: ConditionalValue /** * 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. * @@ -27331,7 +27331,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end */ - scrollMarginBlockEnd?: ConditionalValue> + scrollMarginBlockEnd?: ConditionalValue /** * 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. * @@ -27346,7 +27346,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom */ - scrollMarginBottom?: ConditionalValue> + scrollMarginBottom?: ConditionalValue /** * The \`scroll-margin-inline\` shorthand property sets the scroll margins of an element in the inline dimension. * @@ -27358,7 +27358,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline */ - scrollMarginInline?: ConditionalValue> + scrollMarginInline?: ConditionalValue /** * 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. * @@ -27372,7 +27372,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start */ - scrollMarginInlineStart?: ConditionalValue> + scrollMarginInlineStart?: ConditionalValue /** * 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. * @@ -27386,7 +27386,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end */ - scrollMarginInlineEnd?: ConditionalValue> + scrollMarginInlineEnd?: ConditionalValue /** * 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. * @@ -27401,7 +27401,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left */ - scrollMarginLeft?: ConditionalValue> + scrollMarginLeft?: ConditionalValue /** * 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. * @@ -27416,7 +27416,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right */ - scrollMarginRight?: ConditionalValue> + scrollMarginRight?: ConditionalValue /** * 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. * @@ -27431,7 +27431,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top */ - scrollMarginTop?: ConditionalValue> + scrollMarginTop?: ConditionalValue /** * 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. * @@ -27443,7 +27443,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding */ - scrollPadding?: ConditionalValue> + scrollPadding?: ConditionalValue /** * The \`scroll-padding-block\` shorthand property sets the scroll padding of an element in the block dimension. * @@ -27455,7 +27455,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block */ - scrollPaddingBlock?: ConditionalValue> + scrollPaddingBlock?: ConditionalValue /** * 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. * @@ -27469,7 +27469,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start */ - scrollPaddingBlockStart?: ConditionalValue> + scrollPaddingBlockStart?: ConditionalValue /** * 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. * @@ -27483,7 +27483,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end */ - scrollPaddingBlockEnd?: ConditionalValue> + scrollPaddingBlockEnd?: ConditionalValue /** * 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. * @@ -27497,7 +27497,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom */ - scrollPaddingBottom?: ConditionalValue> + scrollPaddingBottom?: ConditionalValue /** * The \`scroll-padding-inline\` shorthand property sets the scroll padding of an element in the inline dimension. * @@ -27509,7 +27509,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline */ - scrollPaddingInline?: ConditionalValue> + scrollPaddingInline?: ConditionalValue /** * 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. * @@ -27523,7 +27523,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start */ - scrollPaddingInlineStart?: ConditionalValue> + scrollPaddingInlineStart?: ConditionalValue /** * 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. * @@ -27537,7 +27537,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end */ - scrollPaddingInlineEnd?: ConditionalValue> + scrollPaddingInlineEnd?: ConditionalValue /** * 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. * @@ -27551,7 +27551,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left */ - scrollPaddingLeft?: ConditionalValue> + scrollPaddingLeft?: ConditionalValue /** * 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. * @@ -27565,7 +27565,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right */ - scrollPaddingRight?: ConditionalValue> + scrollPaddingRight?: ConditionalValue /** * 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. * @@ -27579,7 +27579,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top */ - scrollPaddingTop?: ConditionalValue> + scrollPaddingTop?: ConditionalValue /** * 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. * @@ -27626,7 +27626,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type */ - scrollSnapType?: ConditionalValue> + scrollSnapType?: ConditionalValue scrollSnapTypeX?: ConditionalValue> scrollSnapTypeY?: ConditionalValue> /** @@ -27809,7 +27809,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-color */ - textDecorationColor?: ConditionalValue> + textDecorationColor?: ConditionalValue /** * 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. * @@ -27910,7 +27910,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color */ - textEmphasisColor?: ConditionalValue> + textEmphasisColor?: ConditionalValue /** * 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. * @@ -27954,7 +27954,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/text-indent */ - textIndent?: ConditionalValue> + textIndent?: ConditionalValue /** * The **\`text-justify\`** CSS property sets what type of justification should be applied to text when \`text-align\`\`: justify;\` is set on an element. * @@ -28025,7 +28025,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/text-shadow */ - textShadow?: ConditionalValue> + textShadow?: ConditionalValue /** * The **\`text-size-adjust\`** CSS property controls the text inflation algorithm used on some smartphones and tablets. Other browsers will ignore this property. * @@ -28096,7 +28096,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/text-wrap */ - textWrap?: ConditionalValue> + textWrap?: ConditionalValue /** * The **\`timeline-scope\`** CSS property modifies the scope of a named animation timeline. * @@ -28124,7 +28124,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/top */ - top?: ConditionalValue> + top?: ConditionalValue /** * 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). * @@ -28211,7 +28211,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/transition */ - transition?: ConditionalValue> + transition?: ConditionalValue /** * The **\`transition-behavior\`** CSS property specifies whether transitions will be started for properties whose animation behavior is discrete. * @@ -28240,7 +28240,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/transition-delay */ - transitionDelay?: ConditionalValue> + transitionDelay?: ConditionalValue /** * 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. * @@ -28255,7 +28255,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/transition-duration */ - transitionDuration?: ConditionalValue> + transitionDuration?: ConditionalValue /** * The **\`transition-property\`** CSS property sets the CSS properties to which a transition effect should be applied. * @@ -28285,7 +28285,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/transition-timing-function */ - transitionTimingFunction?: ConditionalValue> + transitionTimingFunction?: ConditionalValue /** * 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. * @@ -28299,7 +28299,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/translate */ - translate?: ConditionalValue> + translate?: ConditionalValue /** * 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. * @@ -28480,7 +28480,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/width */ - width?: ConditionalValue> + width?: ConditionalValue /** * 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. * @@ -28584,7 +28584,7 @@ describe('strict-tokens-scope', () => { colorInterpolation?: ConditionalValue> colorRendering?: ConditionalValue> dominantBaseline?: ConditionalValue> - fill?: ConditionalValue> + fill?: ConditionalValue fillOpacity?: ConditionalValue> fillRule?: ConditionalValue> floodColor?: ConditionalValue> @@ -28598,7 +28598,7 @@ describe('strict-tokens-scope', () => { shapeRendering?: ConditionalValue> stopColor?: ConditionalValue> stopOpacity?: ConditionalValue> - stroke?: ConditionalValue> + stroke?: ConditionalValue strokeDasharray?: ConditionalValue> strokeDashoffset?: ConditionalValue> strokeLinecap?: ConditionalValue> @@ -28633,7 +28633,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline */ - insetX?: ConditionalValue> + insetX?: ConditionalValue /** * 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\`. * @@ -28645,7 +28645,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inset-block */ - insetY?: ConditionalValue> + insetY?: ConditionalValue /** * 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\`. * @@ -28659,7 +28659,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end */ - insetEnd?: ConditionalValue> + insetEnd?: ConditionalValue /** * 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\`. * @@ -28673,7 +28673,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end */ - end?: ConditionalValue> + end?: ConditionalValue /** * 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\`. * @@ -28687,7 +28687,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start */ - insetStart?: ConditionalValue> + insetStart?: ConditionalValue /** * 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\`. * @@ -28701,7 +28701,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start */ - start?: ConditionalValue> + start?: ConditionalValue /** * 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). * @@ -28728,7 +28728,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding */ - p?: ConditionalValue> + p?: ConditionalValue /** * The **\`padding-left\`** CSS property sets the width of the padding area to the left of an element. * @@ -28742,7 +28742,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-left */ - pl?: ConditionalValue> + pl?: ConditionalValue /** * The **\`padding-right\`** CSS property sets the width of the padding area on the right of an element. * @@ -28756,7 +28756,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-right */ - pr?: ConditionalValue> + pr?: ConditionalValue /** * The **\`padding-top\`** CSS property sets the height of the padding area on the top of an element. * @@ -28770,7 +28770,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-top */ - pt?: ConditionalValue> + pt?: ConditionalValue /** * The **\`padding-bottom\`** CSS property sets the height of the padding area on the bottom of an element. * @@ -28784,7 +28784,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-bottom */ - pb?: ConditionalValue> + pb?: ConditionalValue /** * 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. * @@ -28796,7 +28796,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-block */ - py?: ConditionalValue> + py?: ConditionalValue /** * 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. * @@ -28808,7 +28808,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-block */ - paddingY?: ConditionalValue> + paddingY?: ConditionalValue /** * 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. * @@ -28820,7 +28820,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline */ - paddingX?: ConditionalValue> + paddingX?: ConditionalValue /** * 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. * @@ -28832,7 +28832,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline */ - px?: ConditionalValue> + px?: ConditionalValue /** * 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. * @@ -28847,7 +28847,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end */ - pe?: ConditionalValue> + pe?: ConditionalValue /** * 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. * @@ -28862,7 +28862,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-end */ - paddingEnd?: ConditionalValue> + paddingEnd?: ConditionalValue /** * 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. * @@ -28877,7 +28877,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start */ - ps?: ConditionalValue> + ps?: ConditionalValue /** * 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. * @@ -28892,7 +28892,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline-start */ - paddingStart?: ConditionalValue> + paddingStart?: ConditionalValue /** * 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. * @@ -28906,7 +28906,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-left */ - ml?: ConditionalValue> + ml?: ConditionalValue /** * 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. * @@ -28920,7 +28920,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-right */ - mr?: ConditionalValue> + mr?: ConditionalValue /** * 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. * @@ -28934,7 +28934,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-top */ - mt?: ConditionalValue> + mt?: ConditionalValue /** * 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. * @@ -28948,7 +28948,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-bottom */ - mb?: ConditionalValue> + mb?: ConditionalValue /** * The **\`margin\`** CSS shorthand property sets the margin area on all four sides of an element. * @@ -28960,7 +28960,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin */ - m?: ConditionalValue> + m?: ConditionalValue /** * 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. * @@ -28972,7 +28972,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-block */ - my?: ConditionalValue> + my?: ConditionalValue /** * 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. * @@ -28984,7 +28984,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-block */ - marginY?: ConditionalValue> + marginY?: ConditionalValue /** * 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. * @@ -28996,7 +28996,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline */ - mx?: ConditionalValue> + mx?: ConditionalValue /** * 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. * @@ -29008,7 +29008,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline */ - marginX?: ConditionalValue> + marginX?: ConditionalValue /** * 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\`. * @@ -29023,7 +29023,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end */ - me?: ConditionalValue> + me?: ConditionalValue /** * 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\`. * @@ -29038,7 +29038,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-end */ - marginEnd?: ConditionalValue> + marginEnd?: ConditionalValue /** * 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\`. * @@ -29053,7 +29053,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start */ - ms?: ConditionalValue> + ms?: ConditionalValue /** * 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\`. * @@ -29068,7 +29068,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/margin-inline-start */ - marginStart?: ConditionalValue> + marginStart?: ConditionalValue /** * 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\`. * @@ -29096,7 +29096,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/outline-color */ - ringColor?: ConditionalValue> + ringColor?: ConditionalValue /** * The **\`outline\`** CSS shorthand property sets most of the outline properties in a single declaration. * @@ -29108,7 +29108,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/outline */ - ring?: ConditionalValue> + ring?: ConditionalValue /** * The **\`outline-offset\`** CSS property sets the amount of space between an outline and the edge or border of an element. * @@ -29122,7 +29122,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/outline-offset */ - ringOffset?: ConditionalValue> + ringOffset?: ConditionalValue /** * 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. * @@ -29136,7 +29136,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/width */ - w?: ConditionalValue> + w?: ConditionalValue /** * 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\`. * @@ -29150,7 +29150,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/min-width */ - minW?: ConditionalValue> + minW?: ConditionalValue /** * 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\`. * @@ -29164,7 +29164,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/max-width */ - maxW?: ConditionalValue> + maxW?: ConditionalValue /** * 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. * @@ -29178,7 +29178,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/height */ - h?: ConditionalValue> + h?: ConditionalValue /** * 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\`. * @@ -29192,7 +29192,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/min-height */ - minH?: ConditionalValue> + minH?: ConditionalValue /** * 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\`. * @@ -29206,8 +29206,8 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/max-height */ - maxH?: ConditionalValue> - textShadowColor?: ConditionalValue> + maxH?: ConditionalValue + textShadowColor?: ConditionalValue /** * 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\`. * @@ -29290,7 +29290,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/background */ - bg?: ConditionalValue> + bg?: ConditionalValue /** * The **\`background-color\`** CSS property sets the background color of an element. * @@ -29304,7 +29304,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/background-color */ - bgColor?: ConditionalValue> + bgColor?: ConditionalValue /** * The **\`background-origin\`** CSS property sets the background's origin: from the border start, inside the border, or inside the padding. * @@ -29376,7 +29376,7 @@ describe('strict-tokens-scope', () => { * @see https://developer.mozilla.org/docs/Web/CSS/background-size */ bgSize?: ConditionalValue> - bgGradient?: ConditionalValue> + bgGradient?: ConditionalValue /** * 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. * @@ -29389,7 +29389,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-radius */ - rounded?: ConditionalValue> + rounded?: ConditionalValue /** * 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. * @@ -29404,7 +29404,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius */ - roundedTopLeft?: ConditionalValue> + roundedTopLeft?: ConditionalValue /** * 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. * @@ -29419,7 +29419,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius */ - roundedTopRight?: ConditionalValue> + roundedTopRight?: ConditionalValue /** * 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. * @@ -29434,7 +29434,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius */ - roundedBottomRight?: ConditionalValue> + roundedBottomRight?: ConditionalValue /** * 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. * @@ -29449,11 +29449,11 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius */ - roundedBottomLeft?: ConditionalValue> - roundedTop?: ConditionalValue> - roundedRight?: ConditionalValue> - roundedBottom?: ConditionalValue> - roundedLeft?: ConditionalValue> + roundedBottomLeft?: ConditionalValue + roundedTop?: ConditionalValue + roundedRight?: ConditionalValue + roundedBottom?: ConditionalValue + roundedLeft?: ConditionalValue /** * 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. * @@ -29467,7 +29467,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius */ - roundedStartStart?: ConditionalValue> + roundedStartStart?: ConditionalValue /** * 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. * @@ -29481,8 +29481,8 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius */ - roundedStartEnd?: ConditionalValue> - roundedStart?: ConditionalValue> + roundedStartEnd?: ConditionalValue + roundedStart?: ConditionalValue /** * 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. * @@ -29496,7 +29496,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius */ - roundedEndStart?: ConditionalValue> + roundedEndStart?: ConditionalValue /** * 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. * @@ -29510,8 +29510,8 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius */ - roundedEndEnd?: ConditionalValue> - roundedEnd?: ConditionalValue> + roundedEndEnd?: ConditionalValue + roundedEnd?: ConditionalValue /** * 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. * @@ -29523,7 +29523,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline */ - borderX?: ConditionalValue> + borderX?: ConditionalValue /** * 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\`. * @@ -29551,7 +29551,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color */ - borderXColor?: ConditionalValue> + borderXColor?: ConditionalValue /** * 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. * @@ -29563,7 +29563,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-block */ - borderY?: ConditionalValue> + borderY?: ConditionalValue /** * 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\`. * @@ -29591,7 +29591,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-block-color */ - borderYColor?: ConditionalValue> + borderYColor?: ConditionalValue /** * 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. * @@ -29603,7 +29603,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start */ - borderStart?: ConditionalValue> + borderStart?: ConditionalValue /** * 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\`. * @@ -29632,7 +29632,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color */ - borderStartColor?: ConditionalValue> + borderStartColor?: ConditionalValue /** * 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. * @@ -29644,7 +29644,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end */ - borderEnd?: ConditionalValue> + borderEnd?: ConditionalValue /** * 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\`. * @@ -29674,7 +29674,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color */ - borderEndColor?: ConditionalValue> + borderEndColor?: ConditionalValue /** * 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. * @@ -29689,10 +29689,10 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/box-shadow */ - shadow?: ConditionalValue> - shadowColor?: ConditionalValue> - x?: ConditionalValue> - y?: ConditionalValue> + shadow?: ConditionalValue + shadowColor?: ConditionalValue + x?: ConditionalValue + y?: ConditionalValue /** * The \`scroll-margin-block\` shorthand property sets the scroll margins of an element in the block dimension. * @@ -29704,7 +29704,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block */ - scrollMarginY?: ConditionalValue> + scrollMarginY?: ConditionalValue /** * The \`scroll-margin-inline\` shorthand property sets the scroll margins of an element in the inline dimension. * @@ -29716,7 +29716,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline */ - scrollMarginX?: ConditionalValue> + scrollMarginX?: ConditionalValue /** * The \`scroll-padding-block\` shorthand property sets the scroll padding of an element in the block dimension. * @@ -29728,7 +29728,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block */ - scrollPaddingY?: ConditionalValue> + scrollPaddingY?: ConditionalValue /** * The \`scroll-padding-inline\` shorthand property sets the scroll padding of an element in the inline dimension. * @@ -29740,53 +29740,53 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline */ - scrollPaddingX?: ConditionalValue> - hideFrom?: ConditionalValue> - hideBelow?: ConditionalValue> - divideX?: ConditionalValue> - divideY?: ConditionalValue> - divideColor?: ConditionalValue> - divideStyle?: ConditionalValue> - fontSmoothing?: ConditionalValue> - truncate?: ConditionalValue> - backgroundGradient?: ConditionalValue> - textGradient?: ConditionalValue> - gradientFrom?: ConditionalValue> - gradientTo?: ConditionalValue> - gradientVia?: ConditionalValue> - borderTopRadius?: ConditionalValue> - borderRightRadius?: ConditionalValue> - borderBottomRadius?: ConditionalValue> - borderLeftRadius?: ConditionalValue> - borderStartRadius?: ConditionalValue> - borderEndRadius?: ConditionalValue> - boxShadowColor?: ConditionalValue> - brightness?: ConditionalValue> - contrast?: ConditionalValue> - grayscale?: ConditionalValue> - hueRotate?: ConditionalValue> - invert?: ConditionalValue> - saturate?: ConditionalValue> - sepia?: ConditionalValue> - dropShadow?: ConditionalValue> - blur?: ConditionalValue> - backdropBlur?: ConditionalValue> - backdropBrightness?: ConditionalValue> - backdropContrast?: ConditionalValue> - backdropGrayscale?: ConditionalValue> - backdropHueRotate?: ConditionalValue> - backdropInvert?: ConditionalValue> - backdropOpacity?: ConditionalValue> - backdropSaturate?: ConditionalValue> - backdropSepia?: ConditionalValue> - borderSpacingX?: ConditionalValue> - borderSpacingY?: ConditionalValue> - scaleX?: ConditionalValue> - scaleY?: ConditionalValue> - translateX?: ConditionalValue> - translateY?: ConditionalValue> - scrollbar?: ConditionalValue> - scrollSnapStrictness?: ConditionalValue> + scrollPaddingX?: ConditionalValue + hideFrom?: ConditionalValue + hideBelow?: ConditionalValue + divideX?: ConditionalValue + divideY?: ConditionalValue + divideColor?: ConditionalValue + divideStyle?: ConditionalValue + fontSmoothing?: ConditionalValue + truncate?: ConditionalValue + backgroundGradient?: ConditionalValue + textGradient?: ConditionalValue + gradientFrom?: ConditionalValue + gradientTo?: ConditionalValue + gradientVia?: ConditionalValue + borderTopRadius?: ConditionalValue + borderRightRadius?: ConditionalValue + borderBottomRadius?: ConditionalValue + borderLeftRadius?: ConditionalValue + borderStartRadius?: ConditionalValue + borderEndRadius?: ConditionalValue + boxShadowColor?: ConditionalValue + brightness?: ConditionalValue + contrast?: ConditionalValue + grayscale?: ConditionalValue + hueRotate?: ConditionalValue + invert?: ConditionalValue + saturate?: ConditionalValue + sepia?: ConditionalValue + dropShadow?: ConditionalValue + blur?: ConditionalValue + backdropBlur?: ConditionalValue + backdropBrightness?: ConditionalValue + backdropContrast?: ConditionalValue + backdropGrayscale?: ConditionalValue + backdropHueRotate?: ConditionalValue + backdropInvert?: ConditionalValue + backdropOpacity?: ConditionalValue + backdropSaturate?: ConditionalValue + backdropSepia?: ConditionalValue + borderSpacingX?: ConditionalValue + borderSpacingY?: ConditionalValue + scaleX?: ConditionalValue + scaleY?: ConditionalValue + translateX?: ConditionalValue + translateY?: ConditionalValue + scrollbar?: ConditionalValue + scrollSnapStrictness?: ConditionalValue /** * 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. * @@ -29799,7 +29799,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin */ - scrollSnapMargin?: ConditionalValue> + scrollSnapMargin?: ConditionalValue /** * 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. * @@ -29814,7 +29814,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top */ - scrollSnapMarginTop?: ConditionalValue> + scrollSnapMarginTop?: ConditionalValue /** * 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. * @@ -29829,7 +29829,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom */ - scrollSnapMarginBottom?: ConditionalValue> + scrollSnapMarginBottom?: ConditionalValue /** * 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. * @@ -29844,7 +29844,7 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left */ - scrollSnapMarginLeft?: ConditionalValue> + scrollSnapMarginLeft?: ConditionalValue /** * 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. * @@ -29859,12 +29859,16 @@ describe('strict-tokens-scope', () => { * * @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right */ - scrollSnapMarginRight?: ConditionalValue> - srOnly?: ConditionalValue> - debug?: ConditionalValue> - colorPalette?: ConditionalValue> - textStyle?: ConditionalValue> - }" + scrollSnapMarginRight?: ConditionalValue + srOnly?: ConditionalValue + debug?: ConditionalValue + colorPalette?: ConditionalValue + textStyle?: ConditionalValue + } + + type StrictTokenProps = "color" + + type Restrict = Key extends StrictTokenProps ? Value : Value | Fallback" `) }) diff --git a/packages/panda-plugins/src/strict-tokens-scope.ts b/packages/panda-plugins/src/strict-tokens-scope.ts index c956382c2..a849ffc4e 100644 --- a/packages/panda-plugins/src/strict-tokens-scope.ts +++ b/packages/panda-plugins/src/strict-tokens-scope.ts @@ -76,7 +76,7 @@ export const transformPropTypes = ( }) }) - const strictTokenProps = Array.from(categoryByProp.keys()) + const strictTokenProps = props.concat(Array.from(categoryByProp.keys())) if (!strictTokenProps.length) return args.artifacts if (logger) {