@yahoo/uds 3.157.1 → 3.158.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (182) hide show
  1. package/dist/automated-config/dist/generated/autoVariants.cjs +26 -0
  2. package/dist/automated-config/dist/generated/autoVariants.d.cts +17 -0
  3. package/dist/automated-config/dist/generated/autoVariants.d.ts +17 -0
  4. package/dist/automated-config/dist/generated/autoVariants.js +26 -0
  5. package/dist/automated-config/dist/generated/generatedConfigs.cjs +3220 -545
  6. package/dist/automated-config/dist/generated/generatedConfigs.d.cts +335 -11
  7. package/dist/automated-config/dist/generated/generatedConfigs.d.ts +335 -11
  8. package/dist/automated-config/dist/generated/generatedConfigs.js +3218 -546
  9. package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +275 -44
  10. package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +4 -1
  11. package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.ts +4 -1
  12. package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +275 -44
  13. package/dist/automated-config/dist/types/ComponentConfig.d.cts +3 -1
  14. package/dist/automated-config/dist/types/ComponentConfig.d.ts +3 -1
  15. package/dist/automated-config/dist/utils/buildConfigSchema.cjs +43 -35
  16. package/dist/automated-config/dist/utils/buildConfigSchema.d.cts +4 -1
  17. package/dist/automated-config/dist/utils/buildConfigSchema.d.ts +4 -1
  18. package/dist/automated-config/dist/utils/buildConfigSchema.js +44 -36
  19. package/dist/automated-config/dist/utils/componentStatePseudoStates.cjs +4 -0
  20. package/dist/automated-config/dist/utils/componentStatePseudoStates.js +4 -1
  21. package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.cjs +5 -2
  22. package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.js +6 -3
  23. package/dist/automated-config/dist/utils/index.cjs +21 -5
  24. package/dist/automated-config/dist/utils/index.d.cts +1 -0
  25. package/dist/automated-config/dist/utils/index.d.ts +1 -0
  26. package/dist/automated-config/dist/utils/index.js +22 -6
  27. package/dist/automated-config/dist/utils/pseudoStateSelectors.cjs +6 -3
  28. package/dist/automated-config/dist/utils/pseudoStateSelectors.d.cts +1 -1
  29. package/dist/automated-config/dist/utils/pseudoStateSelectors.d.ts +1 -1
  30. package/dist/automated-config/dist/utils/pseudoStateSelectors.js +6 -3
  31. package/dist/components/client/Input/Input.cjs +1 -1
  32. package/dist/components/client/Input/Input.js +1 -1
  33. package/dist/components/client/Menu/Menu.Item.cjs +1 -0
  34. package/dist/components/client/Menu/Menu.Item.js +1 -0
  35. package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
  36. package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
  37. package/dist/components/client/Select/Select.cjs +179 -0
  38. package/dist/components/client/Select/Select.d.cts +55 -0
  39. package/dist/components/client/Select/Select.d.ts +56 -0
  40. package/dist/components/client/Select/Select.js +176 -0
  41. package/dist/components/client/Select/SelectContent.cjs +75 -0
  42. package/dist/components/client/Select/SelectContent.d.cts +44 -0
  43. package/dist/components/client/Select/SelectContent.d.ts +45 -0
  44. package/dist/components/client/Select/SelectContent.js +73 -0
  45. package/dist/components/client/Select/SelectDivider.cjs +63 -0
  46. package/dist/components/client/Select/SelectDivider.d.cts +44 -0
  47. package/dist/components/client/Select/SelectDivider.d.ts +45 -0
  48. package/dist/components/client/Select/SelectDivider.js +61 -0
  49. package/dist/components/client/Select/SelectHelpText.cjs +51 -0
  50. package/dist/components/client/Select/SelectHelpText.d.cts +27 -0
  51. package/dist/components/client/Select/SelectHelpText.d.ts +28 -0
  52. package/dist/components/client/Select/SelectHelpText.js +48 -0
  53. package/dist/components/client/Select/SelectItem.cjs +172 -0
  54. package/dist/components/client/Select/SelectItem.d.cts +29 -0
  55. package/dist/components/client/Select/SelectItem.d.ts +30 -0
  56. package/dist/components/client/Select/SelectItem.js +170 -0
  57. package/dist/components/client/Select/SelectTrigger.cjs +138 -0
  58. package/dist/components/client/Select/SelectTrigger.d.cts +27 -0
  59. package/dist/components/client/Select/SelectTrigger.d.ts +28 -0
  60. package/dist/components/client/Select/SelectTrigger.js +136 -0
  61. package/dist/components/client/Select/SelectValue.cjs +28 -0
  62. package/dist/components/client/Select/SelectValue.d.cts +19 -0
  63. package/dist/components/client/Select/SelectValue.d.ts +20 -0
  64. package/dist/components/client/Select/SelectValue.js +26 -0
  65. package/dist/components/client/Select/index.cjs +11 -0
  66. package/dist/components/client/Select/index.d.cts +6 -0
  67. package/dist/components/client/Select/index.d.ts +7 -0
  68. package/dist/components/client/Select/index.js +7 -0
  69. package/dist/components/client/Select/selectContext.cjs +20 -0
  70. package/dist/components/client/Select/selectContext.d.cts +23 -0
  71. package/dist/components/client/Select/selectContext.d.ts +24 -0
  72. package/dist/components/client/Select/selectContext.js +16 -0
  73. package/dist/components/client/Select/selectFieldStyles.cjs +85 -0
  74. package/dist/components/client/Select/selectFieldStyles.d.cts +37 -0
  75. package/dist/components/client/Select/selectFieldStyles.d.ts +38 -0
  76. package/dist/components/client/Select/selectFieldStyles.js +75 -0
  77. package/dist/components/client/index.cjs +8 -0
  78. package/dist/components/client/index.d.cts +5 -1
  79. package/dist/components/client/index.d.ts +5 -1
  80. package/dist/components/client/index.js +5 -1
  81. package/dist/components/index.cjs +8 -0
  82. package/dist/components/index.d.cts +5 -1
  83. package/dist/components/index.d.ts +5 -1
  84. package/dist/components/index.js +5 -1
  85. package/dist/config/dist/index.cjs +380 -70
  86. package/dist/config/dist/index.js +380 -70
  87. package/dist/css/dist/css/utils.cjs +3 -0
  88. package/dist/css/dist/css/utils.js +3 -0
  89. package/dist/css/dist/packages/config/dist/index.cjs +380 -70
  90. package/dist/css/dist/packages/config/dist/index.js +380 -70
  91. package/dist/index.cjs +11 -0
  92. package/dist/index.d.cts +7 -3
  93. package/dist/index.d.ts +7 -3
  94. package/dist/index.js +6 -2
  95. package/dist/styles/styler.d.cts +17 -0
  96. package/dist/styles/styler.d.ts +17 -0
  97. package/dist/styles/variants.d.cts +54 -0
  98. package/dist/styles/variants.d.ts +54 -0
  99. package/dist/tailwind/utils/index.cjs +3 -0
  100. package/dist/tailwind/utils/index.d.cts +2 -1
  101. package/dist/tailwind/utils/index.d.ts +2 -1
  102. package/dist/tailwind/utils/index.js +2 -1
  103. package/dist/tailwind-internal/dist/base/addColorModeVars.cjs +1 -1
  104. package/dist/tailwind-internal/dist/base/addColorModeVars.js +1 -1
  105. package/dist/tailwind-internal/dist/base/addColorModeVarsV2.cjs +1 -1
  106. package/dist/tailwind-internal/dist/base/addColorModeVarsV2.js +1 -1
  107. package/dist/tailwind-internal/dist/components/getFocusRingStyles.cjs +74 -6
  108. package/dist/tailwind-internal/dist/components/getFocusRingStyles.d.cts +14 -0
  109. package/dist/tailwind-internal/dist/components/getFocusRingStyles.d.ts +14 -0
  110. package/dist/tailwind-internal/dist/components/getFocusRingStyles.js +74 -7
  111. package/dist/tailwind-internal/dist/components/getResponsiveTextStyles.cjs +1 -1
  112. package/dist/tailwind-internal/dist/components/getResponsiveTextStyles.js +1 -1
  113. package/dist/tailwind-internal/dist/index.d.cts +1 -0
  114. package/dist/tailwind-internal/dist/index.d.ts +1 -0
  115. package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.cjs +3220 -545
  116. package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.js +3218 -546
  117. package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.cjs +4 -0
  118. package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.js +4 -1
  119. package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.cjs +21 -5
  120. package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.js +22 -6
  121. package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.cjs +6 -3
  122. package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.js +6 -3
  123. package/dist/tailwind-internal/dist/packages/config/dist/index.cjs +380 -70
  124. package/dist/tailwind-internal/dist/packages/config/dist/index.js +380 -70
  125. package/dist/tailwind-internal/dist/packages/css-tokens/dist/index.cjs +10 -10
  126. package/dist/tailwind-internal/dist/packages/css-tokens/dist/index.js +1 -1
  127. package/dist/tailwind-internal/dist/plugins/a11y.cjs +6 -2
  128. package/dist/tailwind-internal/dist/plugins/a11y.js +6 -2
  129. package/dist/tailwind-internal/dist/plugins/blurBgFallback.cjs +1 -1
  130. package/dist/tailwind-internal/dist/plugins/blurBgFallback.js +1 -1
  131. package/dist/tailwind-internal/dist/plugins/borderRadius.cjs +1 -1
  132. package/dist/tailwind-internal/dist/plugins/borderRadius.js +1 -1
  133. package/dist/tailwind-internal/dist/plugins/borderWidth.cjs +1 -1
  134. package/dist/tailwind-internal/dist/plugins/borderWidth.js +1 -1
  135. package/dist/tailwind-internal/dist/plugins/colors.cjs +2 -2
  136. package/dist/tailwind-internal/dist/plugins/colors.js +2 -2
  137. package/dist/tailwind-internal/dist/plugins/components.cjs +4 -1
  138. package/dist/tailwind-internal/dist/plugins/components.js +5 -2
  139. package/dist/tailwind-internal/dist/plugins/elevation.cjs +1 -1
  140. package/dist/tailwind-internal/dist/plugins/elevation.js +1 -1
  141. package/dist/tailwind-internal/dist/plugins/shadows.cjs +1 -1
  142. package/dist/tailwind-internal/dist/plugins/shadows.js +1 -1
  143. package/dist/tailwind-internal/dist/plugins/typography.cjs +2 -2
  144. package/dist/tailwind-internal/dist/plugins/typography.js +2 -2
  145. package/dist/tailwind-internal/dist/utils/getElevationStyles.cjs +1 -1
  146. package/dist/tailwind-internal/dist/utils/getElevationStyles.js +1 -1
  147. package/dist/tailwind-internal/dist/utils/getFontStyles.cjs +1 -1
  148. package/dist/tailwind-internal/dist/utils/getFontStyles.js +1 -1
  149. package/dist/tailwind-internal/dist/utils/getMotionStyles.cjs +1 -1
  150. package/dist/tailwind-internal/dist/utils/getMotionStyles.js +1 -1
  151. package/dist/tailwind-internal/dist/utils/getShadowPresetValues.cjs +1 -1
  152. package/dist/tailwind-internal/dist/utils/getShadowPresetValues.js +1 -1
  153. package/dist/tailwind-internal/dist/utils/getShadowStyles.cjs +1 -1
  154. package/dist/tailwind-internal/dist/utils/getShadowStyles.js +1 -1
  155. package/dist/tailwind-internal/dist/utils/parseTokens.cjs +2 -2
  156. package/dist/tailwind-internal/dist/utils/parseTokens.js +2 -2
  157. package/dist/tokens/automation/configs/index.cjs +3 -0
  158. package/dist/tokens/automation/configs/index.d.cts +2 -2
  159. package/dist/tokens/automation/configs/index.d.ts +2 -2
  160. package/dist/tokens/automation/configs/index.js +2 -2
  161. package/dist/tokens/automation/index.cjs +3 -0
  162. package/dist/tokens/automation/index.d.cts +2 -2
  163. package/dist/tokens/automation/index.d.ts +2 -2
  164. package/dist/tokens/automation/index.js +2 -2
  165. package/dist/tokens/index.cjs +3 -0
  166. package/dist/tokens/index.d.cts +3 -3
  167. package/dist/tokens/index.d.ts +3 -3
  168. package/dist/tokens/index.js +2 -2
  169. package/dist/tokens/types.d.cts +2 -2
  170. package/dist/tokens/types.d.ts +2 -2
  171. package/dist/types/dist/index.d.cts +36 -1
  172. package/dist/types/dist/index.d.ts +36 -1
  173. package/dist/uds/generated/componentData.cjs +407 -0
  174. package/dist/uds/generated/componentData.js +407 -0
  175. package/dist/uds/generated/migrationSchemaVersion.cjs +1 -1
  176. package/dist/uds/generated/migrationSchemaVersion.js +1 -1
  177. package/dist/uds/generated/tailwindPurge.cjs +1501 -315
  178. package/dist/uds/generated/tailwindPurge.js +1501 -315
  179. package/generated/componentData.json +496 -0
  180. package/generated/migrationSchemaVersion.ts +1 -1
  181. package/generated/tailwindPurge.ts +4 -4
  182. package/package.json +1 -1
@@ -16272,42 +16272,23 @@ const defaultTokensConfig = {
16272
16272
  valueType: "alias"
16273
16273
  }
16274
16274
  } },
16275
- "item/variant/default/active/off/text": {
16276
- color: {
16277
- focused: {
16278
- type: "foregroundPaletteColors",
16279
- value: "brand-secondary",
16280
- valueType: "alias"
16281
- },
16282
- hover: {
16283
- type: "foregroundPaletteColors",
16284
- value: "brand-secondary",
16285
- valueType: "alias"
16286
- },
16287
- rest: {
16288
- type: "foregroundPaletteColors",
16289
- value: "secondary",
16290
- valueType: "alias"
16291
- }
16275
+ "item/variant/default/active/off/text": { color: {
16276
+ focused: {
16277
+ type: "foregroundPaletteColors",
16278
+ value: "brand-secondary",
16279
+ valueType: "alias"
16292
16280
  },
16293
- textVariant: {
16294
- focused: {
16295
- type: "textVariants",
16296
- value: "ui1",
16297
- valueType: "alias"
16298
- },
16299
- hover: {
16300
- type: "textVariants",
16301
- value: "ui1",
16302
- valueType: "alias"
16303
- },
16304
- rest: {
16305
- type: "textVariants",
16306
- value: "ui1",
16307
- valueType: "alias"
16308
- }
16281
+ hover: {
16282
+ type: "foregroundPaletteColors",
16283
+ value: "brand-secondary",
16284
+ valueType: "alias"
16285
+ },
16286
+ rest: {
16287
+ type: "foregroundPaletteColors",
16288
+ value: "secondary",
16289
+ valueType: "alias"
16309
16290
  }
16310
- },
16291
+ } },
16311
16292
  "item/variant/default/active/on/icon": { color: {
16312
16293
  focused: {
16313
16294
  type: "foregroundPaletteColors",
@@ -16342,42 +16323,23 @@ const defaultTokensConfig = {
16342
16323
  valueType: "alias"
16343
16324
  }
16344
16325
  } },
16345
- "item/variant/default/active/on/text": {
16346
- color: {
16347
- focused: {
16348
- type: "foregroundPaletteColors",
16349
- value: "brand-secondary",
16350
- valueType: "alias"
16351
- },
16352
- hover: {
16353
- type: "foregroundPaletteColors",
16354
- value: "brand-secondary",
16355
- valueType: "alias"
16356
- },
16357
- rest: {
16358
- type: "foregroundPaletteColors",
16359
- value: "brand-secondary",
16360
- valueType: "alias"
16361
- }
16326
+ "item/variant/default/active/on/text": { color: {
16327
+ focused: {
16328
+ type: "foregroundPaletteColors",
16329
+ value: "brand-secondary",
16330
+ valueType: "alias"
16362
16331
  },
16363
- textVariant: {
16364
- focused: {
16365
- type: "textVariants",
16366
- value: "ui1",
16367
- valueType: "alias"
16368
- },
16369
- hover: {
16370
- type: "textVariants",
16371
- value: "ui1",
16372
- valueType: "alias"
16373
- },
16374
- rest: {
16375
- type: "textVariants",
16376
- value: "ui1",
16377
- valueType: "alias"
16378
- }
16332
+ hover: {
16333
+ type: "foregroundPaletteColors",
16334
+ value: "brand-secondary",
16335
+ valueType: "alias"
16336
+ },
16337
+ rest: {
16338
+ type: "foregroundPaletteColors",
16339
+ value: "brand-secondary",
16340
+ valueType: "alias"
16379
16341
  }
16380
- },
16342
+ } },
16381
16343
  "itemCheckbox/variant/default/active/off/endIcon": { color: {
16382
16344
  focused: {
16383
16345
  type: "foregroundPaletteColors",
@@ -16558,6 +16520,11 @@ const defaultTokensConfig = {
16558
16520
  valueType: "alias"
16559
16521
  } } },
16560
16522
  "size/default/root": {},
16523
+ "size/default/text": { textVariant: { rest: {
16524
+ type: "textVariants",
16525
+ value: "ui1",
16526
+ valueType: "alias"
16527
+ } } },
16561
16528
  "size/default/startIcon": { size: { rest: {
16562
16529
  type: "iconSizes",
16563
16530
  value: "sm",
@@ -18680,6 +18647,349 @@ const defaultTokensConfig = {
18680
18647
  } }
18681
18648
  } }
18682
18649
  },
18650
+ select: {
18651
+ defaults: {
18652
+ size: "md",
18653
+ variant: "default"
18654
+ },
18655
+ variables: {
18656
+ "variant/default/endIcon": { color: {
18657
+ "focus-within": {
18658
+ isEnabled: true,
18659
+ type: "foregroundPaletteColors",
18660
+ value: "primary",
18661
+ valueType: "alias"
18662
+ },
18663
+ hover: {
18664
+ isEnabled: true,
18665
+ type: "foregroundPaletteColors",
18666
+ value: "primary",
18667
+ valueType: "alias"
18668
+ },
18669
+ invalid: {
18670
+ isEnabled: true,
18671
+ type: "foregroundPaletteColors",
18672
+ value: "alert",
18673
+ valueType: "alias"
18674
+ },
18675
+ "invalid&hover": {
18676
+ isEnabled: true,
18677
+ type: "foregroundPaletteColors",
18678
+ value: "alert",
18679
+ valueType: "alias"
18680
+ },
18681
+ "invalid&pressed": {
18682
+ isEnabled: true,
18683
+ type: "foregroundPaletteColors",
18684
+ value: "alert",
18685
+ valueType: "alias"
18686
+ },
18687
+ pressed: {
18688
+ type: "foregroundPaletteColors",
18689
+ value: "muted",
18690
+ valueType: "alias"
18691
+ },
18692
+ readonly: {
18693
+ type: "foregroundPaletteColors",
18694
+ value: "muted",
18695
+ valueType: "alias"
18696
+ },
18697
+ rest: {
18698
+ type: "foregroundPaletteColors",
18699
+ value: "muted",
18700
+ valueType: "alias"
18701
+ }
18702
+ } },
18703
+ "variant/default/root": {},
18704
+ "variant/default/startIcon": { color: {
18705
+ "focus-within": {
18706
+ isEnabled: true,
18707
+ type: "foregroundPaletteColors",
18708
+ value: "primary",
18709
+ valueType: "alias"
18710
+ },
18711
+ hover: {
18712
+ isEnabled: true,
18713
+ type: "foregroundPaletteColors",
18714
+ value: "primary",
18715
+ valueType: "alias"
18716
+ },
18717
+ invalid: {
18718
+ isEnabled: true,
18719
+ type: "foregroundPaletteColors",
18720
+ value: "alert",
18721
+ valueType: "alias"
18722
+ },
18723
+ "invalid&hover": {
18724
+ isEnabled: true,
18725
+ type: "foregroundPaletteColors",
18726
+ value: "alert",
18727
+ valueType: "alias"
18728
+ },
18729
+ "invalid&pressed": {
18730
+ isEnabled: true,
18731
+ type: "foregroundPaletteColors",
18732
+ value: "alert",
18733
+ valueType: "alias"
18734
+ },
18735
+ pressed: {
18736
+ isEnabled: true,
18737
+ type: "foregroundPaletteColors",
18738
+ value: "primary",
18739
+ valueType: "alias"
18740
+ },
18741
+ readonly: {
18742
+ type: "foregroundPaletteColors",
18743
+ value: "muted",
18744
+ valueType: "alias"
18745
+ },
18746
+ rest: {
18747
+ type: "foregroundPaletteColors",
18748
+ value: "muted",
18749
+ valueType: "alias"
18750
+ }
18751
+ } },
18752
+ "variant/default/value/empty/endIcon": { color: { pressed: {
18753
+ isEnabled: true,
18754
+ type: "foregroundPaletteColors",
18755
+ value: "primary",
18756
+ valueType: "alias"
18757
+ } } }
18758
+ }
18759
+ },
18760
+ selectContent: {
18761
+ defaults: {
18762
+ size: "default",
18763
+ variant: "default"
18764
+ },
18765
+ variables: {
18766
+ "size/default/root": {
18767
+ borderRadius: { rest: {
18768
+ type: "borderRadii",
18769
+ value: "md",
18770
+ valueType: "alias"
18771
+ } },
18772
+ borderWidth: { rest: {
18773
+ type: "borderWidths",
18774
+ value: "thin",
18775
+ valueType: "alias"
18776
+ } },
18777
+ gap: { rest: {
18778
+ type: "spacingAliases",
18779
+ value: "0",
18780
+ valueType: "alias"
18781
+ } },
18782
+ shadow: { rest: {
18783
+ type: "shadowVariants",
18784
+ value: "lg",
18785
+ valueType: "alias"
18786
+ } },
18787
+ spacingHorizontal: { rest: {
18788
+ type: "spacingAliases",
18789
+ value: "0",
18790
+ valueType: "alias"
18791
+ } },
18792
+ spacingVertical: { rest: {
18793
+ type: "spacingAliases",
18794
+ value: "0",
18795
+ valueType: "alias"
18796
+ } }
18797
+ },
18798
+ "variant/default/root": {
18799
+ backgroundColor: { rest: {
18800
+ type: "backgroundPaletteColors",
18801
+ value: "primary",
18802
+ valueType: "alias"
18803
+ } },
18804
+ borderColor: { rest: {
18805
+ type: "spectrumColors",
18806
+ value: "gray-3",
18807
+ valueType: "alias"
18808
+ } }
18809
+ }
18810
+ }
18811
+ },
18812
+ selectItem: {
18813
+ defaults: {
18814
+ size: "default",
18815
+ variant: "default"
18816
+ },
18817
+ variables: {
18818
+ "divider/variant/default/line": {
18819
+ borderColor: { rest: {
18820
+ type: "linePaletteColors",
18821
+ value: "secondary",
18822
+ valueType: "alias"
18823
+ } },
18824
+ borderWidth: { rest: {
18825
+ type: "borderWidths",
18826
+ value: "thin",
18827
+ valueType: "alias"
18828
+ } }
18829
+ },
18830
+ "divider/variant/default/root": {},
18831
+ "divider/variant/default/text": {
18832
+ color: { rest: {
18833
+ type: "foregroundPaletteColors",
18834
+ value: "muted",
18835
+ valueType: "alias"
18836
+ } },
18837
+ textVariant: { rest: {
18838
+ type: "textVariants",
18839
+ value: "caption2",
18840
+ valueType: "alias"
18841
+ } }
18842
+ },
18843
+ "item/variant/default/active/off/root": { backgroundColor: {
18844
+ focused: {
18845
+ type: "backgroundPaletteColors",
18846
+ value: "secondary",
18847
+ valueType: "alias"
18848
+ },
18849
+ hover: {
18850
+ type: "backgroundPaletteColors",
18851
+ value: "secondary",
18852
+ valueType: "alias"
18853
+ },
18854
+ pressed: {
18855
+ type: "backgroundPaletteColors",
18856
+ value: "secondary",
18857
+ valueType: "alias"
18858
+ },
18859
+ rest: {
18860
+ type: "backgroundPaletteColors",
18861
+ value: "primary",
18862
+ valueType: "alias"
18863
+ }
18864
+ } },
18865
+ "item/variant/default/active/off/text": { color: {
18866
+ focused: {
18867
+ type: "foregroundPaletteColors",
18868
+ value: "brand",
18869
+ valueType: "alias"
18870
+ },
18871
+ hover: {
18872
+ type: "foregroundPaletteColors",
18873
+ value: "brand",
18874
+ valueType: "alias"
18875
+ },
18876
+ pressed: {
18877
+ type: "foregroundPaletteColors",
18878
+ value: "brand",
18879
+ valueType: "alias"
18880
+ },
18881
+ rest: {
18882
+ type: "foregroundPaletteColors",
18883
+ value: "secondary",
18884
+ valueType: "alias"
18885
+ }
18886
+ } },
18887
+ "item/variant/default/active/off/icon": { color: {
18888
+ focused: {
18889
+ type: "foregroundPaletteColors",
18890
+ value: "brand",
18891
+ valueType: "alias"
18892
+ },
18893
+ hover: {
18894
+ type: "foregroundPaletteColors",
18895
+ value: "brand",
18896
+ valueType: "alias"
18897
+ },
18898
+ pressed: {
18899
+ type: "foregroundPaletteColors",
18900
+ value: "brand",
18901
+ valueType: "alias"
18902
+ },
18903
+ rest: {
18904
+ type: "foregroundPaletteColors",
18905
+ value: "secondary",
18906
+ valueType: "alias"
18907
+ }
18908
+ } },
18909
+ "item/variant/default/active/on/icon": { color: {
18910
+ focused: {
18911
+ type: "foregroundPaletteColors",
18912
+ value: "brand",
18913
+ valueType: "alias"
18914
+ },
18915
+ hover: {
18916
+ type: "foregroundPaletteColors",
18917
+ value: "brand",
18918
+ valueType: "alias"
18919
+ },
18920
+ pressed: {
18921
+ type: "foregroundPaletteColors",
18922
+ value: "brand",
18923
+ valueType: "alias"
18924
+ },
18925
+ rest: {
18926
+ type: "foregroundPaletteColors",
18927
+ value: "brand",
18928
+ valueType: "alias"
18929
+ }
18930
+ } },
18931
+ "item/variant/default/active/on/root": { backgroundColor: {
18932
+ focused: {
18933
+ type: "backgroundPaletteColors",
18934
+ value: "secondary",
18935
+ valueType: "alias"
18936
+ },
18937
+ hover: {
18938
+ type: "backgroundPaletteColors",
18939
+ value: "secondary",
18940
+ valueType: "alias"
18941
+ },
18942
+ pressed: {
18943
+ type: "backgroundPaletteColors",
18944
+ value: "secondary",
18945
+ valueType: "alias"
18946
+ },
18947
+ rest: {
18948
+ type: "backgroundPaletteColors",
18949
+ value: "brand-secondary",
18950
+ valueType: "alias"
18951
+ }
18952
+ } },
18953
+ "item/variant/default/active/on/text": { color: {
18954
+ focused: {
18955
+ type: "foregroundPaletteColors",
18956
+ value: "brand",
18957
+ valueType: "alias"
18958
+ },
18959
+ hover: {
18960
+ type: "foregroundPaletteColors",
18961
+ value: "brand",
18962
+ valueType: "alias"
18963
+ },
18964
+ pressed: {
18965
+ type: "foregroundPaletteColors",
18966
+ value: "brand",
18967
+ valueType: "alias"
18968
+ },
18969
+ rest: {
18970
+ type: "foregroundPaletteColors",
18971
+ value: "brand",
18972
+ valueType: "alias"
18973
+ }
18974
+ } },
18975
+ "size/default/root": {},
18976
+ "size/default/text": { textVariant: { rest: {
18977
+ type: "textVariants",
18978
+ value: "ui1",
18979
+ valueType: "alias"
18980
+ } } },
18981
+ "size/default/startIcon": { size: { rest: {
18982
+ type: "iconSizes",
18983
+ value: "sm",
18984
+ valueType: "alias"
18985
+ } } },
18986
+ "size/default/endIcon": { size: { rest: {
18987
+ type: "iconSizes",
18988
+ value: "sm",
18989
+ valueType: "alias"
18990
+ } } }
18991
+ }
18992
+ },
18683
18993
  shadow: {
18684
18994
  drop: {
18685
18995
  "2xl": [{
@@ -28898,8 +29208,8 @@ const defaultTokensConfig = {
28898
29208
  }
28899
29209
  }
28900
29210
  },
28901
- version: "v0.99.0",
28902
- version: "v0.99.0"
29211
+ version: "v0.100.0",
29212
+ version: "v0.100.0"
28903
29213
  };
28904
29214
  //#endregion
28905
29215
  export { defaultTokensConfig };
@@ -20,6 +20,9 @@ const extractVariantDefaults = (config) => {
20
20
  input: "Input",
21
21
  link: "Link",
22
22
  menu: "Menu",
23
+ select: "Select",
24
+ selectContent: "SelectContent",
25
+ selectItem: "SelectItem",
23
26
  radio: "Radio",
24
27
  switch: "Switch",
25
28
  tab: "Tab",
@@ -20,6 +20,9 @@ const extractVariantDefaults = (config) => {
20
20
  input: "Input",
21
21
  link: "Link",
22
22
  menu: "Menu",
23
+ select: "Select",
24
+ selectContent: "SelectContent",
25
+ selectItem: "SelectItem",
23
26
  radio: "Radio",
24
27
  switch: "Switch",
25
28
  tab: "Tab",