@yahoo/uds 3.146.0 → 3.147.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/styles/styler.d.cts +43 -43
  2. package/dist/styles/styler.d.ts +43 -43
  3. package/dist/tailwind/utils/index.d.cts +2 -2
  4. package/dist/tailwind/utils/index.d.ts +2 -2
  5. package/dist/tailwind-internal/dist/base/addFontFaceDeclarations.cjs +2 -2
  6. package/dist/tailwind-internal/dist/base/addFontFaceDeclarations.js +2 -2
  7. package/dist/tailwind-internal/dist/base/addFontVars.cjs +2 -2
  8. package/dist/tailwind-internal/dist/base/addFontVars.js +2 -2
  9. package/dist/tailwind-internal/dist/index.d.cts +1 -1
  10. package/dist/tailwind-internal/dist/index.d.ts +1 -1
  11. package/dist/tailwind-internal/dist/plugins/typography.cjs +3 -3
  12. package/dist/tailwind-internal/dist/plugins/typography.js +3 -3
  13. package/dist/tailwind-internal/dist/utils/addFontsPlugin.cjs +2 -2
  14. package/dist/tailwind-internal/dist/utils/addFontsPlugin.d.cts +6 -0
  15. package/dist/tailwind-internal/dist/utils/addFontsPlugin.d.ts +6 -0
  16. package/dist/tailwind-internal/dist/utils/addFontsPlugin.js +2 -2
  17. package/dist/tailwind-internal/dist/utils/composeTailwindPlugins.d.cts +7 -0
  18. package/dist/tailwind-internal/dist/utils/composeTailwindPlugins.d.ts +7 -0
  19. package/dist/tailwind-internal/dist/utils/getFontFaceDeclarations.cjs +3 -2
  20. package/dist/tailwind-internal/dist/utils/getFontFaceDeclarations.d.cts +59 -58
  21. package/dist/tailwind-internal/dist/utils/getFontFaceDeclarations.d.ts +59 -58
  22. package/dist/tailwind-internal/dist/utils/getFontFaceDeclarations.js +3 -2
  23. package/dist/tailwind-internal/dist/utils/getFontStyles.cjs +2 -2
  24. package/dist/tailwind-internal/dist/utils/getFontStyles.d.cts +2 -1
  25. package/dist/tailwind-internal/dist/utils/getFontStyles.d.ts +2 -1
  26. package/dist/tailwind-internal/dist/utils/getFontStyles.js +2 -2
  27. package/dist/tailwind-internal/dist/utils/getShadowStyles.d.cts +2 -2
  28. package/dist/tailwind-internal/dist/utils/getShadowStyles.d.ts +2 -2
  29. package/dist/uds/generated/componentData.cjs +764 -764
  30. package/dist/uds/generated/componentData.js +764 -764
  31. package/generated/componentData.json +1052 -1052
  32. package/package.json +1 -1
@@ -12,8 +12,8 @@ declare const cva: CVA<string>;
12
12
  declare const getStylesInternal: (props?: ({
13
13
  avatarIconVariantRoot?: "primary" | "secondary" | "default" | undefined;
14
14
  avatarImageVariantRoot?: "primary" | "secondary" | "default" | undefined;
15
- avatarSizeIcon?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "default" | "2xs" | "3xl" | undefined;
16
- avatarSizeRoot?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "default" | "2xs" | "3xl" | undefined;
15
+ avatarSizeIcon?: "xs" | "sm" | "md" | "lg" | "default" | "xl" | "2xl" | "2xs" | "3xl" | undefined;
16
+ avatarSizeRoot?: "xs" | "sm" | "md" | "lg" | "default" | "xl" | "2xl" | "2xs" | "3xl" | undefined;
17
17
  avatarTextVariantRoot?: "primary" | "secondary" | "default" | undefined;
18
18
  badgeSizeIcon?: "xs" | "sm" | "md" | "lg" | "default" | undefined;
19
19
  badgeSizeRoot?: "xs" | "sm" | "md" | "lg" | "default" | undefined;
@@ -33,8 +33,8 @@ declare const getStylesInternal: (props?: ({
33
33
  bottomsheetVariantRoot?: "default" | undefined;
34
34
  buttonSizeIcon?: "xs" | "sm" | "md" | "lg" | "default" | undefined;
35
35
  buttonSizeRoot?: "xs" | "sm" | "md" | "lg" | "default" | undefined;
36
- buttonVariantIcon?: "primary" | "secondary" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "tertiary" | "default" | "alert-tertiary" | "brand-tertiary" | "contrast-high" | "contrast-low" | "contrast-medium" | "info-tertiary" | "positive-tertiary" | "warning-tertiary" | undefined;
37
- buttonVariantRoot?: "primary" | "secondary" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "tertiary" | "default" | "alert-tertiary" | "brand-tertiary" | "contrast-high" | "contrast-low" | "contrast-medium" | "info-tertiary" | "positive-tertiary" | "warning-tertiary" | undefined;
36
+ buttonVariantIcon?: "primary" | "secondary" | "tertiary" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "default" | "alert-tertiary" | "brand-tertiary" | "contrast-high" | "contrast-low" | "contrast-medium" | "info-tertiary" | "positive-tertiary" | "warning-tertiary" | undefined;
37
+ buttonVariantRoot?: "primary" | "secondary" | "tertiary" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "default" | "alert-tertiary" | "brand-tertiary" | "contrast-high" | "contrast-low" | "contrast-medium" | "info-tertiary" | "positive-tertiary" | "warning-tertiary" | undefined;
38
38
  checkboxSizeCheckbox?: "sm" | "md" | "default" | undefined;
39
39
  checkboxSizeRoot?: "sm" | "md" | "default" | undefined;
40
40
  checkboxVariantCheckbox?: "primary" | "secondary" | "alert" | "alert-secondary" | "default" | undefined;
@@ -56,8 +56,8 @@ declare const getStylesInternal: (props?: ({
56
56
  dividerVariantLabel?: "primary" | "secondary" | "tertiary" | "muted" | "default" | undefined;
57
57
  dividerVariantLine?: "primary" | "secondary" | "tertiary" | "muted" | "default" | undefined;
58
58
  dividerVariantRoot?: "primary" | "secondary" | "tertiary" | "muted" | "default" | undefined;
59
- iconbuttonSizeIcon?: "xs" | "sm" | "md" | "lg" | "xl" | "default" | undefined;
60
- iconbuttonSizeRoot?: "xs" | "sm" | "md" | "lg" | "xl" | "default" | undefined;
59
+ iconbuttonSizeIcon?: "xs" | "sm" | "md" | "lg" | "default" | "xl" | undefined;
60
+ iconbuttonSizeRoot?: "xs" | "sm" | "md" | "lg" | "default" | "xl" | undefined;
61
61
  inputSizeEndIcon?: "md" | "lg" | "default" | undefined;
62
62
  inputSizeHelperIcon?: "md" | "lg" | "default" | undefined;
63
63
  inputSizeHelperText?: "md" | "lg" | "default" | undefined;
@@ -86,8 +86,8 @@ declare const getStylesInternal: (props?: ({
86
86
  inputVariantValueLabelRequired?: "empty" | "filled" | undefined;
87
87
  inputVariantValueRoot?: "empty" | "filled" | undefined;
88
88
  inputVariantValueStartIcon?: "empty" | "filled" | undefined;
89
- linkTextStyleIcon?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "default" | undefined;
90
- linkTextStyleRoot?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "default" | undefined;
89
+ linkTextStyleIcon?: "default" | "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | undefined;
90
+ linkTextStyleRoot?: "default" | "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | undefined;
91
91
  linkVariantIconEnd?: "primary" | "secondary" | "tertiary" | "on-color" | "default" | undefined;
92
92
  linkVariantIconStart?: "primary" | "secondary" | "tertiary" | "on-color" | "default" | undefined;
93
93
  linkVariantRoot?: "primary" | "secondary" | "tertiary" | "on-color" | "default" | undefined;
@@ -127,8 +127,8 @@ declare const getStylesInternal: (props?: ({
127
127
  modalVariantDescription?: "default" | undefined;
128
128
  modalVariantRoot?: "default" | undefined;
129
129
  modalVariantTitle?: "default" | undefined;
130
- paddlenavSizeIcon?: "xs" | "sm" | "md" | "lg" | "xl" | "default" | undefined;
131
- paddlenavSizeRoot?: "xs" | "sm" | "md" | "lg" | "xl" | "default" | undefined;
130
+ paddlenavSizeIcon?: "xs" | "sm" | "md" | "lg" | "default" | "xl" | undefined;
131
+ paddlenavSizeRoot?: "xs" | "sm" | "md" | "lg" | "default" | "xl" | undefined;
132
132
  paddlenavVariantBackground?: "primary" | "secondary" | "tertiary" | "default" | undefined;
133
133
  paddlenavVariantIcon?: "primary" | "secondary" | "tertiary" | "default" | undefined;
134
134
  paddlenavVariantRoot?: "primary" | "secondary" | "tertiary" | "default" | undefined;
@@ -176,10 +176,10 @@ declare const getStylesInternal: (props?: ({
176
176
  toastSizeIcon?: "default" | undefined;
177
177
  toastSizeLabel?: "default" | undefined;
178
178
  toastSizeRoot?: "default" | undefined;
179
- toastVariantActionButton?: "warning" | "info" | "loading" | "default" | "success" | "error" | undefined;
180
- toastVariantCloseIcon?: "warning" | "info" | "loading" | "default" | "success" | "error" | undefined;
181
- toastVariantIcon?: "warning" | "info" | "loading" | "default" | "success" | "error" | undefined;
182
- toastVariantRoot?: "warning" | "info" | "loading" | "default" | "success" | "error" | undefined;
179
+ toastVariantActionButton?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
180
+ toastVariantCloseIcon?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
181
+ toastVariantIcon?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
182
+ toastVariantRoot?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
183
183
  tooltipSizeBody?: "default" | undefined;
184
184
  tooltipSizeEndContent?: "default" | undefined;
185
185
  tooltipSizeIcon?: "default" | undefined;
@@ -190,11 +190,11 @@ declare const getStylesInternal: (props?: ({
190
190
  tooltipVariantIcon?: "default" | undefined;
191
191
  tooltipVariantRoot?: "default" | undefined;
192
192
  tooltipVariantSvg?: "default" | undefined;
193
- color?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "tertiary" | "muted" | "on-color" | undefined;
194
- placeholderColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "tertiary" | "muted" | "on-color" | undefined;
193
+ color?: "primary" | "secondary" | "tertiary" | "muted" | "on-color" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | undefined;
194
+ placeholderColor?: "primary" | "secondary" | "tertiary" | "muted" | "on-color" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | undefined;
195
195
  fontFamily?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | "sans" | "sans-alt" | "serif" | "serif-alt" | "mono" | undefined;
196
196
  fontSize?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | undefined;
197
- fontWeight?: "black" | "thin" | "medium" | "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | "bold" | "extralight" | "light" | "regular" | "semibold" | "extrabold" | undefined;
197
+ fontWeight?: "black" | "thin" | "medium" | "bold" | "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | "extralight" | "light" | "regular" | "semibold" | "extrabold" | undefined;
198
198
  lineHeight?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | undefined;
199
199
  letterSpacing?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | undefined;
200
200
  textAlign?: "center" | "justify" | "start" | "end" | undefined;
@@ -216,49 +216,49 @@ declare const getStylesInternal: (props?: ({
216
216
  columnGap?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
217
217
  rowGap?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
218
218
  backgroundColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
219
- borderColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "tertiary" | "muted" | undefined;
220
- borderStartColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "tertiary" | "muted" | undefined;
221
- borderEndColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "tertiary" | "muted" | undefined;
222
- borderBottomColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "tertiary" | "muted" | undefined;
223
- borderTopColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "tertiary" | "muted" | undefined;
224
- borderRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
225
- borderTopStartRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
226
- borderTopEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
227
- borderBottomStartRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
228
- borderBottomEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
229
- borderWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
230
- borderVerticalWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
231
- borderHorizontalWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
232
- borderStartWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
233
- borderEndWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
234
- borderTopWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
235
- borderBottomWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
219
+ borderColor?: "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
220
+ borderStartColor?: "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
221
+ borderEndColor?: "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
222
+ borderBottomColor?: "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
223
+ borderTopColor?: "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
224
+ borderRadius?: "xs" | "sm" | "md" | "lg" | "none" | "xl" | "full" | undefined;
225
+ borderTopStartRadius?: "xs" | "sm" | "md" | "lg" | "none" | "xl" | "full" | undefined;
226
+ borderTopEndRadius?: "xs" | "sm" | "md" | "lg" | "none" | "xl" | "full" | undefined;
227
+ borderBottomStartRadius?: "xs" | "sm" | "md" | "lg" | "none" | "xl" | "full" | undefined;
228
+ borderBottomEndRadius?: "xs" | "sm" | "md" | "lg" | "none" | "xl" | "full" | undefined;
229
+ borderWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
230
+ borderVerticalWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
231
+ borderHorizontalWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
232
+ borderStartWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
233
+ borderEndWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
234
+ borderTopWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
235
+ borderBottomWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
236
236
  avatarSize?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "2xs" | "3xl" | undefined;
237
237
  iconSize?: "xs" | "sm" | "md" | "lg" | undefined;
238
238
  alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
239
239
  alignItems?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | undefined;
240
- alignSelf?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | "auto" | undefined;
241
- flex?: "1" | "none" | "auto" | "initial" | undefined;
240
+ alignSelf?: "center" | "auto" | "flex-start" | "flex-end" | "stretch" | "baseline" | undefined;
241
+ flex?: "none" | "auto" | "1" | "initial" | undefined;
242
242
  flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
243
243
  flexGrow?: "0" | "1" | "2" | "3" | undefined;
244
244
  flexShrink?: "0" | "1" | undefined;
245
245
  flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
246
246
  justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
247
247
  flexBasis?: "min-content" | undefined;
248
- display?: "flex" | "table" | "none" | "block" | "inline-block" | "inline" | "inline-flex" | "inline-table" | "table-caption" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row-group" | "table-row" | "flow-root" | "grid" | "contents" | undefined;
248
+ display?: "table" | "none" | "grid" | "inline" | "flex" | "block" | "inline-block" | "inline-flex" | "inline-table" | "table-caption" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row-group" | "table-row" | "flow-root" | "contents" | undefined;
249
249
  overflow?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
250
250
  overflowX?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
251
251
  overflowY?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
252
- position?: "static" | "fixed" | "absolute" | "relative" | "sticky" | undefined;
253
- contentFit?: "none" | "fill" | "cover" | "contain" | "scale-down" | undefined;
252
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
253
+ contentFit?: "fill" | "none" | "cover" | "contain" | "scale-down" | undefined;
254
254
  colorMode?: "light" | "dark" | undefined;
255
255
  scaleMode?: "small" | "medium" | "xSmall" | "large" | "xLarge" | "xxLarge" | "xxxLarge" | undefined;
256
256
  width?: "full" | "fit" | "screen" | undefined;
257
257
  height?: "full" | "fit" | "screen" | undefined;
258
- dropShadow?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
259
- insetShadow?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "xs-invert" | "sm-invert" | "md-invert" | "lg-invert" | "xl-invert" | "2xl-invert" | undefined;
260
- nestedBorderRadiusSize?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
261
- nestedBorderRadiusWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
258
+ dropShadow?: "xs" | "sm" | "md" | "lg" | "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "xl" | "2xl" | undefined;
259
+ insetShadow?: "xs" | "sm" | "md" | "lg" | "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "xl" | "2xl" | "xs-invert" | "sm-invert" | "md-invert" | "lg-invert" | "xl-invert" | "2xl-invert" | undefined;
260
+ nestedBorderRadiusSize?: "xs" | "sm" | "md" | "lg" | "none" | "xl" | "full" | undefined;
261
+ nestedBorderRadiusWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
262
262
  nestedBorderRadiusSpacing?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
263
263
  nestedBorderRadius?: boolean | "first" | "last" | undefined;
264
264
  } & {
@@ -12,8 +12,8 @@ declare const cva: CVA<string>;
12
12
  declare const getStylesInternal: (props?: ({
13
13
  avatarIconVariantRoot?: "primary" | "secondary" | "default" | undefined;
14
14
  avatarImageVariantRoot?: "primary" | "secondary" | "default" | undefined;
15
- avatarSizeIcon?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "default" | "2xs" | "3xl" | undefined;
16
- avatarSizeRoot?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "default" | "2xs" | "3xl" | undefined;
15
+ avatarSizeIcon?: "xs" | "sm" | "md" | "lg" | "default" | "xl" | "2xl" | "2xs" | "3xl" | undefined;
16
+ avatarSizeRoot?: "xs" | "sm" | "md" | "lg" | "default" | "xl" | "2xl" | "2xs" | "3xl" | undefined;
17
17
  avatarTextVariantRoot?: "primary" | "secondary" | "default" | undefined;
18
18
  badgeSizeIcon?: "xs" | "sm" | "md" | "lg" | "default" | undefined;
19
19
  badgeSizeRoot?: "xs" | "sm" | "md" | "lg" | "default" | undefined;
@@ -33,8 +33,8 @@ declare const getStylesInternal: (props?: ({
33
33
  bottomsheetVariantRoot?: "default" | undefined;
34
34
  buttonSizeIcon?: "xs" | "sm" | "md" | "lg" | "default" | undefined;
35
35
  buttonSizeRoot?: "xs" | "sm" | "md" | "lg" | "default" | undefined;
36
- buttonVariantIcon?: "primary" | "secondary" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "tertiary" | "default" | "alert-tertiary" | "brand-tertiary" | "contrast-high" | "contrast-low" | "contrast-medium" | "info-tertiary" | "positive-tertiary" | "warning-tertiary" | undefined;
37
- buttonVariantRoot?: "primary" | "secondary" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "tertiary" | "default" | "alert-tertiary" | "brand-tertiary" | "contrast-high" | "contrast-low" | "contrast-medium" | "info-tertiary" | "positive-tertiary" | "warning-tertiary" | undefined;
36
+ buttonVariantIcon?: "primary" | "secondary" | "tertiary" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "default" | "alert-tertiary" | "brand-tertiary" | "contrast-high" | "contrast-low" | "contrast-medium" | "info-tertiary" | "positive-tertiary" | "warning-tertiary" | undefined;
37
+ buttonVariantRoot?: "primary" | "secondary" | "tertiary" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "default" | "alert-tertiary" | "brand-tertiary" | "contrast-high" | "contrast-low" | "contrast-medium" | "info-tertiary" | "positive-tertiary" | "warning-tertiary" | undefined;
38
38
  checkboxSizeCheckbox?: "sm" | "md" | "default" | undefined;
39
39
  checkboxSizeRoot?: "sm" | "md" | "default" | undefined;
40
40
  checkboxVariantCheckbox?: "primary" | "secondary" | "alert" | "alert-secondary" | "default" | undefined;
@@ -56,8 +56,8 @@ declare const getStylesInternal: (props?: ({
56
56
  dividerVariantLabel?: "primary" | "secondary" | "tertiary" | "muted" | "default" | undefined;
57
57
  dividerVariantLine?: "primary" | "secondary" | "tertiary" | "muted" | "default" | undefined;
58
58
  dividerVariantRoot?: "primary" | "secondary" | "tertiary" | "muted" | "default" | undefined;
59
- iconbuttonSizeIcon?: "xs" | "sm" | "md" | "lg" | "xl" | "default" | undefined;
60
- iconbuttonSizeRoot?: "xs" | "sm" | "md" | "lg" | "xl" | "default" | undefined;
59
+ iconbuttonSizeIcon?: "xs" | "sm" | "md" | "lg" | "default" | "xl" | undefined;
60
+ iconbuttonSizeRoot?: "xs" | "sm" | "md" | "lg" | "default" | "xl" | undefined;
61
61
  inputSizeEndIcon?: "md" | "lg" | "default" | undefined;
62
62
  inputSizeHelperIcon?: "md" | "lg" | "default" | undefined;
63
63
  inputSizeHelperText?: "md" | "lg" | "default" | undefined;
@@ -86,8 +86,8 @@ declare const getStylesInternal: (props?: ({
86
86
  inputVariantValueLabelRequired?: "empty" | "filled" | undefined;
87
87
  inputVariantValueRoot?: "empty" | "filled" | undefined;
88
88
  inputVariantValueStartIcon?: "empty" | "filled" | undefined;
89
- linkTextStyleIcon?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "default" | undefined;
90
- linkTextStyleRoot?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "default" | undefined;
89
+ linkTextStyleIcon?: "default" | "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | undefined;
90
+ linkTextStyleRoot?: "default" | "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | undefined;
91
91
  linkVariantIconEnd?: "primary" | "secondary" | "tertiary" | "on-color" | "default" | undefined;
92
92
  linkVariantIconStart?: "primary" | "secondary" | "tertiary" | "on-color" | "default" | undefined;
93
93
  linkVariantRoot?: "primary" | "secondary" | "tertiary" | "on-color" | "default" | undefined;
@@ -127,8 +127,8 @@ declare const getStylesInternal: (props?: ({
127
127
  modalVariantDescription?: "default" | undefined;
128
128
  modalVariantRoot?: "default" | undefined;
129
129
  modalVariantTitle?: "default" | undefined;
130
- paddlenavSizeIcon?: "xs" | "sm" | "md" | "lg" | "xl" | "default" | undefined;
131
- paddlenavSizeRoot?: "xs" | "sm" | "md" | "lg" | "xl" | "default" | undefined;
130
+ paddlenavSizeIcon?: "xs" | "sm" | "md" | "lg" | "default" | "xl" | undefined;
131
+ paddlenavSizeRoot?: "xs" | "sm" | "md" | "lg" | "default" | "xl" | undefined;
132
132
  paddlenavVariantBackground?: "primary" | "secondary" | "tertiary" | "default" | undefined;
133
133
  paddlenavVariantIcon?: "primary" | "secondary" | "tertiary" | "default" | undefined;
134
134
  paddlenavVariantRoot?: "primary" | "secondary" | "tertiary" | "default" | undefined;
@@ -176,10 +176,10 @@ declare const getStylesInternal: (props?: ({
176
176
  toastSizeIcon?: "default" | undefined;
177
177
  toastSizeLabel?: "default" | undefined;
178
178
  toastSizeRoot?: "default" | undefined;
179
- toastVariantActionButton?: "warning" | "info" | "loading" | "default" | "success" | "error" | undefined;
180
- toastVariantCloseIcon?: "warning" | "info" | "loading" | "default" | "success" | "error" | undefined;
181
- toastVariantIcon?: "warning" | "info" | "loading" | "default" | "success" | "error" | undefined;
182
- toastVariantRoot?: "warning" | "info" | "loading" | "default" | "success" | "error" | undefined;
179
+ toastVariantActionButton?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
180
+ toastVariantCloseIcon?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
181
+ toastVariantIcon?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
182
+ toastVariantRoot?: "warning" | "info" | "default" | "loading" | "success" | "error" | undefined;
183
183
  tooltipSizeBody?: "default" | undefined;
184
184
  tooltipSizeEndContent?: "default" | undefined;
185
185
  tooltipSizeIcon?: "default" | undefined;
@@ -190,11 +190,11 @@ declare const getStylesInternal: (props?: ({
190
190
  tooltipVariantIcon?: "default" | undefined;
191
191
  tooltipVariantRoot?: "default" | undefined;
192
192
  tooltipVariantSvg?: "default" | undefined;
193
- color?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "tertiary" | "muted" | "on-color" | undefined;
194
- placeholderColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "tertiary" | "muted" | "on-color" | undefined;
193
+ color?: "primary" | "secondary" | "tertiary" | "muted" | "on-color" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | undefined;
194
+ placeholderColor?: "primary" | "secondary" | "tertiary" | "muted" | "on-color" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | undefined;
195
195
  fontFamily?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | "sans" | "sans-alt" | "serif" | "serif-alt" | "mono" | undefined;
196
196
  fontSize?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | undefined;
197
- fontWeight?: "black" | "thin" | "medium" | "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | "bold" | "extralight" | "light" | "regular" | "semibold" | "extrabold" | undefined;
197
+ fontWeight?: "black" | "thin" | "medium" | "bold" | "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | "extralight" | "light" | "regular" | "semibold" | "extrabold" | undefined;
198
198
  lineHeight?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | undefined;
199
199
  letterSpacing?: "display1" | "display2" | "display3" | "title1" | "title2" | "title3" | "title4" | "headline1" | "body1" | "label1" | "label2" | "label3" | "label4" | "caption1" | "caption2" | "legal1" | "ui1" | "ui2" | "ui3" | "ui4" | "ui5" | "ui6" | "display1/emphasized" | "display2/emphasized" | "display3/emphasized" | "title1/emphasized" | "title2/emphasized" | "title3/emphasized" | "title4/emphasized" | "headline1/emphasized" | "body1/emphasized" | "label1/emphasized" | "label2/emphasized" | "label3/emphasized" | "label4/emphasized" | "caption1/emphasized" | "caption2/emphasized" | "legal1/emphasized" | "ui1/emphasized" | "ui2/emphasized" | "ui3/emphasized" | "ui4/emphasized" | "ui5/emphasized" | "ui6/emphasized" | undefined;
200
200
  textAlign?: "center" | "justify" | "start" | "end" | undefined;
@@ -216,49 +216,49 @@ declare const getStylesInternal: (props?: ({
216
216
  columnGap?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
217
217
  rowGap?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
218
218
  backgroundColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
219
- borderColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "tertiary" | "muted" | undefined;
220
- borderStartColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "tertiary" | "muted" | undefined;
221
- borderEndColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "tertiary" | "muted" | undefined;
222
- borderBottomColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "tertiary" | "muted" | undefined;
223
- borderTopColor?: "primary" | "secondary" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "tertiary" | "muted" | undefined;
224
- borderRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
225
- borderTopStartRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
226
- borderTopEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
227
- borderBottomStartRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
228
- borderBottomEndRadius?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
229
- borderWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
230
- borderVerticalWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
231
- borderHorizontalWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
232
- borderStartWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
233
- borderEndWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
234
- borderTopWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
235
- borderBottomWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
219
+ borderColor?: "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
220
+ borderStartColor?: "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
221
+ borderEndColor?: "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
222
+ borderBottomColor?: "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
223
+ borderTopColor?: "primary" | "secondary" | "tertiary" | "muted" | "accent" | "brand" | "alert" | "positive" | "warning" | "info" | "brand-secondary" | "alert-secondary" | "positive-secondary" | "warning-secondary" | "info-secondary" | "white" | "black" | "transparent" | "current" | "always/white" | "always/black" | "always/transparent" | "always/current" | "always/brand" | "always/accent" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | undefined;
224
+ borderRadius?: "xs" | "sm" | "md" | "lg" | "none" | "xl" | "full" | undefined;
225
+ borderTopStartRadius?: "xs" | "sm" | "md" | "lg" | "none" | "xl" | "full" | undefined;
226
+ borderTopEndRadius?: "xs" | "sm" | "md" | "lg" | "none" | "xl" | "full" | undefined;
227
+ borderBottomStartRadius?: "xs" | "sm" | "md" | "lg" | "none" | "xl" | "full" | undefined;
228
+ borderBottomEndRadius?: "xs" | "sm" | "md" | "lg" | "none" | "xl" | "full" | undefined;
229
+ borderWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
230
+ borderVerticalWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
231
+ borderHorizontalWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
232
+ borderStartWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
233
+ borderEndWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
234
+ borderTopWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
235
+ borderBottomWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
236
236
  avatarSize?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "2xs" | "3xl" | undefined;
237
237
  iconSize?: "xs" | "sm" | "md" | "lg" | undefined;
238
238
  alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
239
239
  alignItems?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | undefined;
240
- alignSelf?: "center" | "flex-start" | "flex-end" | "stretch" | "baseline" | "auto" | undefined;
241
- flex?: "1" | "none" | "auto" | "initial" | undefined;
240
+ alignSelf?: "center" | "auto" | "flex-start" | "flex-end" | "stretch" | "baseline" | undefined;
241
+ flex?: "none" | "auto" | "1" | "initial" | undefined;
242
242
  flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
243
243
  flexGrow?: "0" | "1" | "2" | "3" | undefined;
244
244
  flexShrink?: "0" | "1" | undefined;
245
245
  flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
246
246
  justifyContent?: "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly" | undefined;
247
247
  flexBasis?: "min-content" | undefined;
248
- display?: "flex" | "table" | "none" | "block" | "inline-block" | "inline" | "inline-flex" | "inline-table" | "table-caption" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row-group" | "table-row" | "flow-root" | "grid" | "contents" | undefined;
248
+ display?: "table" | "none" | "grid" | "inline" | "flex" | "block" | "inline-block" | "inline-flex" | "inline-table" | "table-caption" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row-group" | "table-row" | "flow-root" | "contents" | undefined;
249
249
  overflow?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
250
250
  overflowX?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
251
251
  overflowY?: "hidden" | "auto" | "clip" | "visible" | "scroll" | undefined;
252
- position?: "static" | "fixed" | "absolute" | "relative" | "sticky" | undefined;
253
- contentFit?: "none" | "fill" | "cover" | "contain" | "scale-down" | undefined;
252
+ position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
253
+ contentFit?: "fill" | "none" | "cover" | "contain" | "scale-down" | undefined;
254
254
  colorMode?: "light" | "dark" | undefined;
255
255
  scaleMode?: "small" | "medium" | "xSmall" | "large" | "xLarge" | "xxLarge" | "xxxLarge" | undefined;
256
256
  width?: "full" | "fit" | "screen" | undefined;
257
257
  height?: "full" | "fit" | "screen" | undefined;
258
- dropShadow?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined;
259
- insetShadow?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "xs-invert" | "sm-invert" | "md-invert" | "lg-invert" | "xl-invert" | "2xl-invert" | undefined;
260
- nestedBorderRadiusSize?: "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | undefined;
261
- nestedBorderRadiusWidth?: "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "none" | "thin" | "medium" | "thick" | undefined;
258
+ dropShadow?: "xs" | "sm" | "md" | "lg" | "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "xl" | "2xl" | undefined;
259
+ insetShadow?: "xs" | "sm" | "md" | "lg" | "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "xl" | "2xl" | "xs-invert" | "sm-invert" | "md-invert" | "lg-invert" | "xl-invert" | "2xl-invert" | undefined;
260
+ nestedBorderRadiusSize?: "xs" | "sm" | "md" | "lg" | "none" | "xl" | "full" | undefined;
261
+ nestedBorderRadiusWidth?: "none" | "elevation-0" | "elevation-1" | "elevation-2" | "elevation-3" | "elevation-4" | "elevation-5" | "thin" | "medium" | "thick" | undefined;
262
262
  nestedBorderRadiusSpacing?: "0" | "1" | "2" | "3" | "4" | "5" | "px" | "0.5" | "1.5" | "2.5" | "3.5" | "4.5" | "5.5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "14" | "16" | "20" | "24" | "28" | "32" | "36" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "72" | "80" | "96" | undefined;
263
263
  nestedBorderRadius?: boolean | "first" | "last" | undefined;
264
264
  } & {
@@ -1,6 +1,7 @@
1
1
 
2
2
  import { getInputStyles } from "../../tailwind-internal/dist/components/getInputStyles.cjs";
3
3
  import { udsToTailwindMap } from "../../tailwind-internal/dist/defaultTailwindThemeAsUdsConfig.cjs";
4
+ import { FontFamilyOverrides, getFontFaceDeclarations } from "../../tailwind-internal/dist/utils/getFontFaceDeclarations.cjs";
4
5
  import { TailwindPluginOptions, composeTailwindPlugins } from "../../tailwind-internal/dist/utils/composeTailwindPlugins.cjs";
5
6
  import { getUDSContent, tailwindPlugin } from "../../tailwind-internal/dist/tailwindPlugin.cjs";
6
7
  import { parseOpacityStep } from "../../tailwind-internal/dist/utils/opacity.cjs";
@@ -11,11 +12,10 @@ import { getBaseTextVars, getResponsiveTextStyles, textVariantsSafe } from "../.
11
12
  import { addFontsPlugin } from "../../tailwind-internal/dist/utils/addFontsPlugin.cjs";
12
13
  import { getColorModeStyles } from "../../tailwind-internal/dist/utils/getColorModeStyles.cjs";
13
14
  import { getElevationStyles } from "../../tailwind-internal/dist/utils/getElevationStyles.cjs";
14
- import { getFontFaceDeclarations } from "../../tailwind-internal/dist/utils/getFontFaceDeclarations.cjs";
15
15
  import { getFontStyles } from "../../tailwind-internal/dist/utils/getFontStyles.cjs";
16
16
  import { getMotionStyles } from "../../tailwind-internal/dist/utils/getMotionStyles.cjs";
17
17
  import { getScaleModeStyles } from "../../tailwind-internal/dist/utils/getScaleModeStyles.cjs";
18
18
  import { getShadowPresetValues } from "../../tailwind-internal/dist/utils/getShadowPresetValues.cjs";
19
19
  import { getShadowStyles } from "../../tailwind-internal/dist/utils/getShadowStyles.cjs";
20
20
  import { getShadowVars } from "../../tailwind-internal/dist/utils/getShadowVars.cjs";
21
- export { type PreserveVarsOptions, type TailwindPluginOptions, type WebTokens, addFontsPlugin, composeTailwindPlugins, getBaseTextVars, getColorModeStyles, getElevationStyles, getFontFaceDeclarations, getFontStyles, getIconStyles, getInputStyles, getMotionStyles, getResponsiveTextStyles, getScaleModeStyles, getShadowPresetValues, getShadowStyles, getShadowVars, getUDSContent, parseOpacityStep, parseTokens, preserveVars, preserveVarsCleanup, tailwindPlugin, textVariantsSafe, udsToTailwindMap };
21
+ export { type FontFamilyOverrides, type PreserveVarsOptions, type TailwindPluginOptions, type WebTokens, addFontsPlugin, composeTailwindPlugins, getBaseTextVars, getColorModeStyles, getElevationStyles, getFontFaceDeclarations, getFontStyles, getIconStyles, getInputStyles, getMotionStyles, getResponsiveTextStyles, getScaleModeStyles, getShadowPresetValues, getShadowStyles, getShadowVars, getUDSContent, parseOpacityStep, parseTokens, preserveVars, preserveVarsCleanup, tailwindPlugin, textVariantsSafe, udsToTailwindMap };
@@ -1,6 +1,7 @@
1
1
 
2
2
  import { getInputStyles } from "../../tailwind-internal/dist/components/getInputStyles.js";
3
3
  import { udsToTailwindMap } from "../../tailwind-internal/dist/defaultTailwindThemeAsUdsConfig.js";
4
+ import { FontFamilyOverrides, getFontFaceDeclarations } from "../../tailwind-internal/dist/utils/getFontFaceDeclarations.js";
4
5
  import { TailwindPluginOptions, composeTailwindPlugins } from "../../tailwind-internal/dist/utils/composeTailwindPlugins.js";
5
6
  import { getUDSContent, tailwindPlugin } from "../../tailwind-internal/dist/tailwindPlugin.js";
6
7
  import { parseOpacityStep } from "../../tailwind-internal/dist/utils/opacity.js";
@@ -11,11 +12,10 @@ import { getBaseTextVars, getResponsiveTextStyles, textVariantsSafe } from "../.
11
12
  import { addFontsPlugin } from "../../tailwind-internal/dist/utils/addFontsPlugin.js";
12
13
  import { getColorModeStyles } from "../../tailwind-internal/dist/utils/getColorModeStyles.js";
13
14
  import { getElevationStyles } from "../../tailwind-internal/dist/utils/getElevationStyles.js";
14
- import { getFontFaceDeclarations } from "../../tailwind-internal/dist/utils/getFontFaceDeclarations.js";
15
15
  import { getFontStyles } from "../../tailwind-internal/dist/utils/getFontStyles.js";
16
16
  import { getMotionStyles } from "../../tailwind-internal/dist/utils/getMotionStyles.js";
17
17
  import { getScaleModeStyles } from "../../tailwind-internal/dist/utils/getScaleModeStyles.js";
18
18
  import { getShadowPresetValues } from "../../tailwind-internal/dist/utils/getShadowPresetValues.js";
19
19
  import { getShadowStyles } from "../../tailwind-internal/dist/utils/getShadowStyles.js";
20
20
  import { getShadowVars } from "../../tailwind-internal/dist/utils/getShadowVars.js";
21
- export { type PreserveVarsOptions, type TailwindPluginOptions, type WebTokens, addFontsPlugin, composeTailwindPlugins, getBaseTextVars, getColorModeStyles, getElevationStyles, getFontFaceDeclarations, getFontStyles, getIconStyles, getInputStyles, getMotionStyles, getResponsiveTextStyles, getScaleModeStyles, getShadowPresetValues, getShadowStyles, getShadowVars, getUDSContent, parseOpacityStep, parseTokens, preserveVars, preserveVarsCleanup, tailwindPlugin, textVariantsSafe, udsToTailwindMap };
21
+ export { type FontFamilyOverrides, type PreserveVarsOptions, type TailwindPluginOptions, type WebTokens, addFontsPlugin, composeTailwindPlugins, getBaseTextVars, getColorModeStyles, getElevationStyles, getFontFaceDeclarations, getFontStyles, getIconStyles, getInputStyles, getMotionStyles, getResponsiveTextStyles, getScaleModeStyles, getShadowPresetValues, getShadowStyles, getShadowVars, getUDSContent, parseOpacityStep, parseTokens, preserveVars, preserveVarsCleanup, tailwindPlugin, textVariantsSafe, udsToTailwindMap };
@@ -2,8 +2,8 @@
2
2
  const require_getFontFaceDeclarations = require("../utils/getFontFaceDeclarations.cjs");
3
3
  //#region ../tailwind-internal/dist/base/addFontFaceDeclarations.js
4
4
  /*! © 2026 Yahoo, Inc. UDS Tailwind Internal v0.0.0-development */
5
- function addFontFaceDeclarations(fontIds, { addBase }) {
6
- const declarations = require_getFontFaceDeclarations.getFontFaceDeclarations(fontIds);
5
+ function addFontFaceDeclarations(fontIds, { addBase }, fontFamilyOverrides) {
6
+ const declarations = require_getFontFaceDeclarations.getFontFaceDeclarations(fontIds, fontFamilyOverrides);
7
7
  for (const declaration of declarations) addBase({ "@font-face": declaration });
8
8
  }
9
9
  //#endregion
@@ -2,8 +2,8 @@
2
2
  import { getFontFaceDeclarations } from "../utils/getFontFaceDeclarations.js";
3
3
  //#region ../tailwind-internal/dist/base/addFontFaceDeclarations.js
4
4
  /*! © 2026 Yahoo, Inc. UDS Tailwind Internal v0.0.0-development */
5
- function addFontFaceDeclarations(fontIds, { addBase }) {
6
- const declarations = getFontFaceDeclarations(fontIds);
5
+ function addFontFaceDeclarations(fontIds, { addBase }, fontFamilyOverrides) {
6
+ const declarations = getFontFaceDeclarations(fontIds, fontFamilyOverrides);
7
7
  for (const declaration of declarations) addBase({ "@font-face": declaration });
8
8
  }
9
9
  //#endregion
@@ -2,8 +2,8 @@
2
2
  const require_getFontStyles = require("../utils/getFontStyles.cjs");
3
3
  //#region ../tailwind-internal/dist/base/addFontVars.js
4
4
  /*! © 2026 Yahoo, Inc. UDS Tailwind Internal v0.0.0-development */
5
- function addFontVars(config, { addBase }) {
6
- addBase(require_getFontStyles.getFontStyles(config));
5
+ function addFontVars(config, { addBase }, fontFamilyOverrides) {
6
+ addBase(require_getFontStyles.getFontStyles(config, fontFamilyOverrides));
7
7
  }
8
8
  //#endregion
9
9
  exports.addFontVars = addFontVars;
@@ -2,8 +2,8 @@
2
2
  import { getFontStyles } from "../utils/getFontStyles.js";
3
3
  //#region ../tailwind-internal/dist/base/addFontVars.js
4
4
  /*! © 2026 Yahoo, Inc. UDS Tailwind Internal v0.0.0-development */
5
- function addFontVars(config, { addBase }) {
6
- addBase(getFontStyles(config));
5
+ function addFontVars(config, { addBase }, fontFamilyOverrides) {
6
+ addBase(getFontStyles(config, fontFamilyOverrides));
7
7
  }
8
8
  //#endregion
9
9
  export { addFontVars };
@@ -1,6 +1,7 @@
1
1
 
2
2
  import { getInputStyles } from "./components/getInputStyles.cjs";
3
3
  import { udsToTailwindMap } from "./defaultTailwindThemeAsUdsConfig.cjs";
4
+ import { FontFamilyOverrides, getFontFaceDeclarations } from "./utils/getFontFaceDeclarations.cjs";
4
5
  import { TailwindPluginOptions, composeTailwindPlugins } from "./utils/composeTailwindPlugins.cjs";
5
6
  import { getUDSContent, tailwindPlugin } from "./tailwindPlugin.cjs";
6
7
  import { ALLOWED_ENTRY_FILE_EXTENSIONS, DEFAULT_ENTRY, EntryValue, ResolvedEntryPath, formatEntryValue, getAllowedEntryFileGlobPatterns, hasAllowedEntryFileExtension, normalizeEntryPaths, resolveEntryPaths, stripAllowedEntryFileExtension } from "./utils/entryPoints.cjs";
@@ -12,7 +13,6 @@ import { getBaseTextVars, getResponsiveTextStyles, textVariantsSafe } from "./co
12
13
  import { addFontsPlugin } from "./utils/addFontsPlugin.cjs";
13
14
  import { getColorModeStyles } from "./utils/getColorModeStyles.cjs";
14
15
  import { getElevationStyles } from "./utils/getElevationStyles.cjs";
15
- import { getFontFaceDeclarations } from "./utils/getFontFaceDeclarations.cjs";
16
16
  import { getFontStyles } from "./utils/getFontStyles.cjs";
17
17
  import { getMotionStyles } from "./utils/getMotionStyles.cjs";
18
18
  import { getScaleModeStyles } from "./utils/getScaleModeStyles.cjs";