@yahoo/uds 3.157.1 → 3.158.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.
- package/dist/automated-config/dist/generated/autoVariants.cjs +26 -0
- package/dist/automated-config/dist/generated/autoVariants.d.cts +17 -0
- package/dist/automated-config/dist/generated/autoVariants.d.ts +17 -0
- package/dist/automated-config/dist/generated/autoVariants.js +26 -0
- package/dist/automated-config/dist/generated/generatedConfigs.cjs +3220 -545
- package/dist/automated-config/dist/generated/generatedConfigs.d.cts +335 -11
- package/dist/automated-config/dist/generated/generatedConfigs.d.ts +335 -11
- package/dist/automated-config/dist/generated/generatedConfigs.js +3218 -546
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +275 -44
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +4 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.ts +4 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +275 -44
- package/dist/automated-config/dist/types/ComponentConfig.d.cts +3 -1
- package/dist/automated-config/dist/types/ComponentConfig.d.ts +3 -1
- package/dist/automated-config/dist/utils/buildConfigSchema.cjs +43 -35
- package/dist/automated-config/dist/utils/buildConfigSchema.d.cts +4 -1
- package/dist/automated-config/dist/utils/buildConfigSchema.d.ts +4 -1
- package/dist/automated-config/dist/utils/buildConfigSchema.js +44 -36
- package/dist/automated-config/dist/utils/componentStatePseudoStates.cjs +4 -0
- package/dist/automated-config/dist/utils/componentStatePseudoStates.js +4 -1
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.cjs +5 -2
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.js +6 -3
- package/dist/automated-config/dist/utils/index.cjs +21 -5
- package/dist/automated-config/dist/utils/index.d.cts +1 -0
- package/dist/automated-config/dist/utils/index.d.ts +1 -0
- package/dist/automated-config/dist/utils/index.js +22 -6
- package/dist/automated-config/dist/utils/pseudoStateSelectors.cjs +6 -3
- package/dist/automated-config/dist/utils/pseudoStateSelectors.d.cts +1 -1
- package/dist/automated-config/dist/utils/pseudoStateSelectors.d.ts +1 -1
- package/dist/automated-config/dist/utils/pseudoStateSelectors.js +6 -3
- package/dist/components/client/Input/Input.cjs +1 -1
- package/dist/components/client/Input/Input.js +1 -1
- package/dist/components/client/Menu/Menu.Item.cjs +1 -0
- package/dist/components/client/Menu/Menu.Item.js +1 -0
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
- package/dist/components/client/Select/Select.cjs +179 -0
- package/dist/components/client/Select/Select.d.cts +55 -0
- package/dist/components/client/Select/Select.d.ts +56 -0
- package/dist/components/client/Select/Select.js +176 -0
- package/dist/components/client/Select/SelectContent.cjs +75 -0
- package/dist/components/client/Select/SelectContent.d.cts +44 -0
- package/dist/components/client/Select/SelectContent.d.ts +45 -0
- package/dist/components/client/Select/SelectContent.js +73 -0
- package/dist/components/client/Select/SelectDivider.cjs +63 -0
- package/dist/components/client/Select/SelectDivider.d.cts +44 -0
- package/dist/components/client/Select/SelectDivider.d.ts +45 -0
- package/dist/components/client/Select/SelectDivider.js +61 -0
- package/dist/components/client/Select/SelectHelpText.cjs +51 -0
- package/dist/components/client/Select/SelectHelpText.d.cts +27 -0
- package/dist/components/client/Select/SelectHelpText.d.ts +28 -0
- package/dist/components/client/Select/SelectHelpText.js +48 -0
- package/dist/components/client/Select/SelectItem.cjs +172 -0
- package/dist/components/client/Select/SelectItem.d.cts +29 -0
- package/dist/components/client/Select/SelectItem.d.ts +30 -0
- package/dist/components/client/Select/SelectItem.js +170 -0
- package/dist/components/client/Select/SelectTrigger.cjs +138 -0
- package/dist/components/client/Select/SelectTrigger.d.cts +27 -0
- package/dist/components/client/Select/SelectTrigger.d.ts +28 -0
- package/dist/components/client/Select/SelectTrigger.js +136 -0
- package/dist/components/client/Select/SelectValue.cjs +28 -0
- package/dist/components/client/Select/SelectValue.d.cts +19 -0
- package/dist/components/client/Select/SelectValue.d.ts +20 -0
- package/dist/components/client/Select/SelectValue.js +26 -0
- package/dist/components/client/Select/index.cjs +11 -0
- package/dist/components/client/Select/index.d.cts +6 -0
- package/dist/components/client/Select/index.d.ts +7 -0
- package/dist/components/client/Select/index.js +7 -0
- package/dist/components/client/Select/selectContext.cjs +20 -0
- package/dist/components/client/Select/selectContext.d.cts +23 -0
- package/dist/components/client/Select/selectContext.d.ts +24 -0
- package/dist/components/client/Select/selectContext.js +16 -0
- package/dist/components/client/Select/selectFieldStyles.cjs +85 -0
- package/dist/components/client/Select/selectFieldStyles.d.cts +37 -0
- package/dist/components/client/Select/selectFieldStyles.d.ts +38 -0
- package/dist/components/client/Select/selectFieldStyles.js +75 -0
- package/dist/components/client/index.cjs +8 -0
- package/dist/components/client/index.d.cts +5 -1
- package/dist/components/client/index.d.ts +5 -1
- package/dist/components/client/index.js +5 -1
- package/dist/components/index.cjs +8 -0
- package/dist/components/index.d.cts +5 -1
- package/dist/components/index.d.ts +5 -1
- package/dist/components/index.js +5 -1
- package/dist/config/dist/index.cjs +380 -70
- package/dist/config/dist/index.js +380 -70
- package/dist/css/dist/css/utils.cjs +3 -0
- package/dist/css/dist/css/utils.js +3 -0
- package/dist/css/dist/packages/config/dist/index.cjs +380 -70
- package/dist/css/dist/packages/config/dist/index.js +380 -70
- package/dist/index.cjs +11 -0
- package/dist/index.d.cts +7 -3
- package/dist/index.d.ts +7 -3
- package/dist/index.js +6 -2
- package/dist/styles/styler.d.cts +42 -25
- package/dist/styles/styler.d.ts +42 -25
- package/dist/styles/variants.d.cts +54 -0
- package/dist/styles/variants.d.ts +54 -0
- package/dist/tailwind/utils/index.cjs +3 -0
- package/dist/tailwind/utils/index.d.cts +2 -1
- package/dist/tailwind/utils/index.d.ts +2 -1
- package/dist/tailwind/utils/index.js +2 -1
- package/dist/tailwind-internal/dist/base/addColorModeVars.cjs +1 -1
- package/dist/tailwind-internal/dist/base/addColorModeVars.js +1 -1
- package/dist/tailwind-internal/dist/base/addColorModeVarsV2.cjs +1 -1
- package/dist/tailwind-internal/dist/base/addColorModeVarsV2.js +1 -1
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.cjs +74 -6
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.d.cts +14 -0
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.d.ts +14 -0
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.js +74 -7
- package/dist/tailwind-internal/dist/components/getResponsiveTextStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/components/getResponsiveTextStyles.js +1 -1
- package/dist/tailwind-internal/dist/index.d.cts +1 -0
- package/dist/tailwind-internal/dist/index.d.ts +1 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.cjs +3220 -545
- package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.js +3218 -546
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.cjs +4 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.js +4 -1
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.cjs +21 -5
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.js +22 -6
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.cjs +6 -3
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.js +6 -3
- package/dist/tailwind-internal/dist/packages/config/dist/index.cjs +380 -70
- package/dist/tailwind-internal/dist/packages/config/dist/index.js +380 -70
- package/dist/tailwind-internal/dist/packages/css-tokens/dist/index.cjs +10 -10
- package/dist/tailwind-internal/dist/packages/css-tokens/dist/index.js +1 -1
- package/dist/tailwind-internal/dist/plugins/a11y.cjs +6 -2
- package/dist/tailwind-internal/dist/plugins/a11y.js +6 -2
- package/dist/tailwind-internal/dist/plugins/blurBgFallback.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/blurBgFallback.js +1 -1
- package/dist/tailwind-internal/dist/plugins/borderRadius.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/borderRadius.js +1 -1
- package/dist/tailwind-internal/dist/plugins/borderWidth.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/borderWidth.js +1 -1
- package/dist/tailwind-internal/dist/plugins/colors.cjs +2 -2
- package/dist/tailwind-internal/dist/plugins/colors.js +2 -2
- package/dist/tailwind-internal/dist/plugins/components.cjs +30 -26
- package/dist/tailwind-internal/dist/plugins/components.js +6 -2
- package/dist/tailwind-internal/dist/plugins/elevation.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/elevation.js +1 -1
- package/dist/tailwind-internal/dist/plugins/shadows.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/shadows.js +1 -1
- package/dist/tailwind-internal/dist/plugins/typography.cjs +2 -2
- package/dist/tailwind-internal/dist/plugins/typography.js +2 -2
- package/dist/tailwind-internal/dist/utils/getElevationStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getElevationStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/getFontStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getFontStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/getMotionStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getMotionStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowPresetValues.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowPresetValues.js +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowStyles.d.cts +2 -2
- package/dist/tailwind-internal/dist/utils/getShadowStyles.d.ts +2 -2
- package/dist/tailwind-internal/dist/utils/getShadowStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/parseTokens.cjs +2 -2
- package/dist/tailwind-internal/dist/utils/parseTokens.js +2 -2
- package/dist/tokens/automation/configs/index.cjs +3 -0
- package/dist/tokens/automation/configs/index.d.cts +2 -2
- package/dist/tokens/automation/configs/index.d.ts +2 -2
- package/dist/tokens/automation/configs/index.js +2 -2
- package/dist/tokens/automation/index.cjs +3 -0
- package/dist/tokens/automation/index.d.cts +2 -2
- package/dist/tokens/automation/index.d.ts +2 -2
- package/dist/tokens/automation/index.js +2 -2
- package/dist/tokens/index.cjs +3 -0
- package/dist/tokens/index.d.cts +3 -3
- package/dist/tokens/index.d.ts +3 -3
- package/dist/tokens/index.js +2 -2
- package/dist/tokens/types.d.cts +2 -2
- package/dist/tokens/types.d.ts +2 -2
- package/dist/types/dist/index.d.cts +36 -1
- package/dist/types/dist/index.d.ts +36 -1
- package/dist/uds/generated/componentData.cjs +528 -121
- package/dist/uds/generated/componentData.js +528 -121
- package/dist/uds/generated/migrationSchemaVersion.cjs +1 -1
- package/dist/uds/generated/migrationSchemaVersion.js +1 -1
- package/dist/uds/generated/tailwindPurge.cjs +1501 -315
- package/dist/uds/generated/tailwindPurge.js +1501 -315
- package/generated/componentData.json +630 -134
- package/generated/migrationSchemaVersion.ts +1 -1
- package/generated/tailwindPurge.ts +4 -4
- package/package.json +1 -1
|
@@ -12069,30 +12069,23 @@ const defaultUniversalTokensConfigAuto = {
|
|
|
12069
12069
|
valueType: "alias"
|
|
12070
12070
|
}
|
|
12071
12071
|
} },
|
|
12072
|
-
"item/variant/default/active/off/text": {
|
|
12073
|
-
|
|
12074
|
-
|
|
12075
|
-
|
|
12076
|
-
|
|
12077
|
-
valueType: "alias"
|
|
12078
|
-
},
|
|
12079
|
-
hover: {
|
|
12080
|
-
type: "foregroundPaletteColors",
|
|
12081
|
-
value: "brand",
|
|
12082
|
-
valueType: "alias"
|
|
12083
|
-
},
|
|
12084
|
-
rest: {
|
|
12085
|
-
type: "foregroundPaletteColors",
|
|
12086
|
-
value: "brand",
|
|
12087
|
-
valueType: "alias"
|
|
12088
|
-
}
|
|
12072
|
+
"item/variant/default/active/off/text": { color: {
|
|
12073
|
+
focused: {
|
|
12074
|
+
type: "foregroundPaletteColors",
|
|
12075
|
+
value: "brand",
|
|
12076
|
+
valueType: "alias"
|
|
12089
12077
|
},
|
|
12090
|
-
|
|
12091
|
-
type: "
|
|
12092
|
-
value: "
|
|
12078
|
+
hover: {
|
|
12079
|
+
type: "foregroundPaletteColors",
|
|
12080
|
+
value: "brand",
|
|
12093
12081
|
valueType: "alias"
|
|
12094
|
-
}
|
|
12095
|
-
|
|
12082
|
+
},
|
|
12083
|
+
rest: {
|
|
12084
|
+
type: "foregroundPaletteColors",
|
|
12085
|
+
value: "brand",
|
|
12086
|
+
valueType: "alias"
|
|
12087
|
+
}
|
|
12088
|
+
} },
|
|
12096
12089
|
"item/variant/default/active/on/icon": { color: {
|
|
12097
12090
|
focused: {
|
|
12098
12091
|
type: "foregroundPaletteColors",
|
|
@@ -12127,30 +12120,23 @@ const defaultUniversalTokensConfigAuto = {
|
|
|
12127
12120
|
valueType: "alias"
|
|
12128
12121
|
}
|
|
12129
12122
|
} },
|
|
12130
|
-
"item/variant/default/active/on/text": {
|
|
12131
|
-
|
|
12132
|
-
|
|
12133
|
-
|
|
12134
|
-
|
|
12135
|
-
valueType: "alias"
|
|
12136
|
-
},
|
|
12137
|
-
hover: {
|
|
12138
|
-
type: "foregroundPaletteColors",
|
|
12139
|
-
value: "brand",
|
|
12140
|
-
valueType: "alias"
|
|
12141
|
-
},
|
|
12142
|
-
rest: {
|
|
12143
|
-
type: "foregroundPaletteColors",
|
|
12144
|
-
value: "brand",
|
|
12145
|
-
valueType: "alias"
|
|
12146
|
-
}
|
|
12123
|
+
"item/variant/default/active/on/text": { color: {
|
|
12124
|
+
focused: {
|
|
12125
|
+
type: "foregroundPaletteColors",
|
|
12126
|
+
value: "brand",
|
|
12127
|
+
valueType: "alias"
|
|
12147
12128
|
},
|
|
12148
|
-
|
|
12149
|
-
type: "
|
|
12150
|
-
value: "
|
|
12129
|
+
hover: {
|
|
12130
|
+
type: "foregroundPaletteColors",
|
|
12131
|
+
value: "brand",
|
|
12151
12132
|
valueType: "alias"
|
|
12152
|
-
}
|
|
12153
|
-
|
|
12133
|
+
},
|
|
12134
|
+
rest: {
|
|
12135
|
+
type: "foregroundPaletteColors",
|
|
12136
|
+
value: "brand",
|
|
12137
|
+
valueType: "alias"
|
|
12138
|
+
}
|
|
12139
|
+
} },
|
|
12154
12140
|
"itemCheckbox/variant/default/active/off/endIcon": { color: {
|
|
12155
12141
|
focused: {
|
|
12156
12142
|
type: "foregroundPaletteColors",
|
|
@@ -12311,6 +12297,11 @@ const defaultUniversalTokensConfigAuto = {
|
|
|
12311
12297
|
type: "iconSizes",
|
|
12312
12298
|
value: "sm",
|
|
12313
12299
|
valueType: "alias"
|
|
12300
|
+
} } },
|
|
12301
|
+
"size/default/text": { textVariant: { rest: {
|
|
12302
|
+
type: "textVariants",
|
|
12303
|
+
value: "label2",
|
|
12304
|
+
valueType: "alias"
|
|
12314
12305
|
} } }
|
|
12315
12306
|
}
|
|
12316
12307
|
},
|
|
@@ -14027,6 +14018,246 @@ const defaultUniversalTokensConfigAuto = {
|
|
|
14027
14018
|
} }
|
|
14028
14019
|
} }
|
|
14029
14020
|
},
|
|
14021
|
+
select: {
|
|
14022
|
+
defaults: {
|
|
14023
|
+
size: "md",
|
|
14024
|
+
variant: "default"
|
|
14025
|
+
},
|
|
14026
|
+
variables: { "variant/default/root": {} }
|
|
14027
|
+
},
|
|
14028
|
+
selectContent: {
|
|
14029
|
+
defaults: {
|
|
14030
|
+
size: "default",
|
|
14031
|
+
variant: "default"
|
|
14032
|
+
},
|
|
14033
|
+
variables: {
|
|
14034
|
+
"size/default/root": {
|
|
14035
|
+
borderRadius: { rest: {
|
|
14036
|
+
type: "borderRadii",
|
|
14037
|
+
value: "md",
|
|
14038
|
+
valueType: "alias"
|
|
14039
|
+
} },
|
|
14040
|
+
borderWidth: { rest: {
|
|
14041
|
+
type: "borderWidths",
|
|
14042
|
+
value: "thin",
|
|
14043
|
+
valueType: "alias"
|
|
14044
|
+
} },
|
|
14045
|
+
gap: { rest: {
|
|
14046
|
+
type: "spacingAliases",
|
|
14047
|
+
value: "0",
|
|
14048
|
+
valueType: "alias"
|
|
14049
|
+
} },
|
|
14050
|
+
shadow: { rest: {
|
|
14051
|
+
type: "shadowVariants",
|
|
14052
|
+
value: "lg",
|
|
14053
|
+
valueType: "alias"
|
|
14054
|
+
} },
|
|
14055
|
+
spacingHorizontal: { rest: {
|
|
14056
|
+
type: "spacingAliases",
|
|
14057
|
+
value: "0",
|
|
14058
|
+
valueType: "alias"
|
|
14059
|
+
} },
|
|
14060
|
+
spacingVertical: { rest: {
|
|
14061
|
+
type: "spacingAliases",
|
|
14062
|
+
value: "0",
|
|
14063
|
+
valueType: "alias"
|
|
14064
|
+
} }
|
|
14065
|
+
},
|
|
14066
|
+
"variant/default/root": {
|
|
14067
|
+
backgroundColor: { rest: {
|
|
14068
|
+
type: "backgroundPaletteColors",
|
|
14069
|
+
value: "primary",
|
|
14070
|
+
valueType: "alias"
|
|
14071
|
+
} },
|
|
14072
|
+
borderColor: { rest: {
|
|
14073
|
+
type: "spectrumColors",
|
|
14074
|
+
value: "gray-3",
|
|
14075
|
+
valueType: "alias"
|
|
14076
|
+
} }
|
|
14077
|
+
}
|
|
14078
|
+
}
|
|
14079
|
+
},
|
|
14080
|
+
selectItem: {
|
|
14081
|
+
defaults: {
|
|
14082
|
+
size: "default",
|
|
14083
|
+
variant: "default"
|
|
14084
|
+
},
|
|
14085
|
+
variables: {
|
|
14086
|
+
"divider/variant/default/line": {
|
|
14087
|
+
borderColor: { rest: {
|
|
14088
|
+
type: "linePaletteColors",
|
|
14089
|
+
value: "secondary",
|
|
14090
|
+
valueType: "alias"
|
|
14091
|
+
} },
|
|
14092
|
+
borderWidth: { rest: {
|
|
14093
|
+
type: "borderWidths",
|
|
14094
|
+
value: "thin",
|
|
14095
|
+
valueType: "alias"
|
|
14096
|
+
} }
|
|
14097
|
+
},
|
|
14098
|
+
"divider/variant/default/root": {},
|
|
14099
|
+
"divider/variant/default/text": {
|
|
14100
|
+
color: { rest: {
|
|
14101
|
+
type: "foregroundPaletteColors",
|
|
14102
|
+
value: "muted",
|
|
14103
|
+
valueType: "alias"
|
|
14104
|
+
} },
|
|
14105
|
+
textVariant: { rest: {
|
|
14106
|
+
type: "textVariants",
|
|
14107
|
+
value: "caption2",
|
|
14108
|
+
valueType: "alias"
|
|
14109
|
+
} }
|
|
14110
|
+
},
|
|
14111
|
+
"item/variant/default/active/off/icon": { color: {
|
|
14112
|
+
focused: {
|
|
14113
|
+
type: "foregroundPaletteColors",
|
|
14114
|
+
value: "secondary",
|
|
14115
|
+
valueType: "alias"
|
|
14116
|
+
},
|
|
14117
|
+
hover: {
|
|
14118
|
+
type: "foregroundPaletteColors",
|
|
14119
|
+
value: "secondary",
|
|
14120
|
+
valueType: "alias"
|
|
14121
|
+
},
|
|
14122
|
+
pressed: {
|
|
14123
|
+
type: "foregroundPaletteColors",
|
|
14124
|
+
value: "secondary",
|
|
14125
|
+
valueType: "alias"
|
|
14126
|
+
},
|
|
14127
|
+
rest: {
|
|
14128
|
+
type: "foregroundPaletteColors",
|
|
14129
|
+
value: "secondary",
|
|
14130
|
+
valueType: "alias"
|
|
14131
|
+
}
|
|
14132
|
+
} },
|
|
14133
|
+
"item/variant/default/active/off/root": { backgroundColor: {
|
|
14134
|
+
focused: {
|
|
14135
|
+
type: "backgroundPaletteColors",
|
|
14136
|
+
value: "primary",
|
|
14137
|
+
valueType: "alias"
|
|
14138
|
+
},
|
|
14139
|
+
hover: {
|
|
14140
|
+
type: "backgroundPaletteColors",
|
|
14141
|
+
value: "primary",
|
|
14142
|
+
valueType: "alias"
|
|
14143
|
+
},
|
|
14144
|
+
pressed: {
|
|
14145
|
+
type: "backgroundPaletteColors",
|
|
14146
|
+
value: "primary",
|
|
14147
|
+
valueType: "alias"
|
|
14148
|
+
},
|
|
14149
|
+
rest: {
|
|
14150
|
+
type: "backgroundPaletteColors",
|
|
14151
|
+
value: "primary",
|
|
14152
|
+
valueType: "alias"
|
|
14153
|
+
}
|
|
14154
|
+
} },
|
|
14155
|
+
"item/variant/default/active/off/text": { color: {
|
|
14156
|
+
focused: {
|
|
14157
|
+
type: "foregroundPaletteColors",
|
|
14158
|
+
value: "secondary",
|
|
14159
|
+
valueType: "alias"
|
|
14160
|
+
},
|
|
14161
|
+
hover: {
|
|
14162
|
+
type: "foregroundPaletteColors",
|
|
14163
|
+
value: "secondary",
|
|
14164
|
+
valueType: "alias"
|
|
14165
|
+
},
|
|
14166
|
+
pressed: {
|
|
14167
|
+
type: "foregroundPaletteColors",
|
|
14168
|
+
value: "secondary",
|
|
14169
|
+
valueType: "alias"
|
|
14170
|
+
},
|
|
14171
|
+
rest: {
|
|
14172
|
+
type: "foregroundPaletteColors",
|
|
14173
|
+
value: "secondary",
|
|
14174
|
+
valueType: "alias"
|
|
14175
|
+
}
|
|
14176
|
+
} },
|
|
14177
|
+
"item/variant/default/active/on/icon": { color: {
|
|
14178
|
+
focused: {
|
|
14179
|
+
type: "foregroundPaletteColors",
|
|
14180
|
+
value: "secondary",
|
|
14181
|
+
valueType: "alias"
|
|
14182
|
+
},
|
|
14183
|
+
hover: {
|
|
14184
|
+
type: "foregroundPaletteColors",
|
|
14185
|
+
value: "secondary",
|
|
14186
|
+
valueType: "alias"
|
|
14187
|
+
},
|
|
14188
|
+
pressed: {
|
|
14189
|
+
type: "foregroundPaletteColors",
|
|
14190
|
+
value: "secondary",
|
|
14191
|
+
valueType: "alias"
|
|
14192
|
+
},
|
|
14193
|
+
rest: {
|
|
14194
|
+
type: "foregroundPaletteColors",
|
|
14195
|
+
value: "secondary",
|
|
14196
|
+
valueType: "alias"
|
|
14197
|
+
}
|
|
14198
|
+
} },
|
|
14199
|
+
"item/variant/default/active/on/root": { backgroundColor: {
|
|
14200
|
+
focused: {
|
|
14201
|
+
type: "backgroundPaletteColors",
|
|
14202
|
+
value: "primary",
|
|
14203
|
+
valueType: "alias"
|
|
14204
|
+
},
|
|
14205
|
+
hover: {
|
|
14206
|
+
type: "backgroundPaletteColors",
|
|
14207
|
+
value: "primary",
|
|
14208
|
+
valueType: "alias"
|
|
14209
|
+
},
|
|
14210
|
+
pressed: {
|
|
14211
|
+
type: "backgroundPaletteColors",
|
|
14212
|
+
value: "primary",
|
|
14213
|
+
valueType: "alias"
|
|
14214
|
+
},
|
|
14215
|
+
rest: {
|
|
14216
|
+
type: "backgroundPaletteColors",
|
|
14217
|
+
value: "primary",
|
|
14218
|
+
valueType: "alias"
|
|
14219
|
+
}
|
|
14220
|
+
} },
|
|
14221
|
+
"item/variant/default/active/on/text": { color: {
|
|
14222
|
+
focused: {
|
|
14223
|
+
type: "foregroundPaletteColors",
|
|
14224
|
+
value: "secondary",
|
|
14225
|
+
valueType: "alias"
|
|
14226
|
+
},
|
|
14227
|
+
hover: {
|
|
14228
|
+
type: "foregroundPaletteColors",
|
|
14229
|
+
value: "secondary",
|
|
14230
|
+
valueType: "alias"
|
|
14231
|
+
},
|
|
14232
|
+
pressed: {
|
|
14233
|
+
type: "foregroundPaletteColors",
|
|
14234
|
+
value: "secondary",
|
|
14235
|
+
valueType: "alias"
|
|
14236
|
+
},
|
|
14237
|
+
rest: {
|
|
14238
|
+
type: "foregroundPaletteColors",
|
|
14239
|
+
value: "secondary",
|
|
14240
|
+
valueType: "alias"
|
|
14241
|
+
}
|
|
14242
|
+
} },
|
|
14243
|
+
"size/default/endIcon": { size: { rest: {
|
|
14244
|
+
type: "iconSizes",
|
|
14245
|
+
value: "sm",
|
|
14246
|
+
valueType: "alias"
|
|
14247
|
+
} } },
|
|
14248
|
+
"size/default/root": {},
|
|
14249
|
+
"size/default/startIcon": { size: { rest: {
|
|
14250
|
+
type: "iconSizes",
|
|
14251
|
+
value: "sm",
|
|
14252
|
+
valueType: "alias"
|
|
14253
|
+
} } },
|
|
14254
|
+
"size/default/text": { textVariant: { rest: {
|
|
14255
|
+
type: "textVariants",
|
|
14256
|
+
value: "ui1",
|
|
14257
|
+
valueType: "alias"
|
|
14258
|
+
} } }
|
|
14259
|
+
}
|
|
14260
|
+
},
|
|
14030
14261
|
switch: {
|
|
14031
14262
|
defaults: {
|
|
14032
14263
|
size: "md",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
import { AvatarConfig, BadgeConfig, BannerConfig, BottomSheetConfig, ButtonConfig, CheckboxConfig, ChipConfig, DividerConfig, IconButtonConfig, InputConfig, LinkConfig, MenuContentConfig, MenuItemConfig, ModalConfig, PaddleNavConfig, PaginationConfig, PopoverConfig, RadioConfig, ScrimConfig, SwitchConfig, TabConfig, TabsConfig, ToastConfig, TooltipConfig } from "./generatedConfigs.cjs";
|
|
2
|
+
import { AvatarConfig, BadgeConfig, BannerConfig, BottomSheetConfig, ButtonConfig, CheckboxConfig, ChipConfig, DividerConfig, IconButtonConfig, InputConfig, LinkConfig, MenuContentConfig, MenuItemConfig, ModalConfig, PaddleNavConfig, PaginationConfig, PopoverConfig, RadioConfig, ScrimConfig, SelectConfig, SelectContentConfig, SelectItemConfig, SwitchConfig, TabConfig, TabsConfig, ToastConfig, TooltipConfig } from "./generatedConfigs.cjs";
|
|
3
3
|
import { ComponentSchema } from "../utils/buildConfigSchema.cjs";
|
|
4
4
|
|
|
5
5
|
//#region ../automated-config/dist/generated/universalTokensConfigAuto.d.ts
|
|
@@ -27,6 +27,9 @@ interface UniversalTokensConfigAuto {
|
|
|
27
27
|
popover: ComponentSchema<typeof PopoverConfig>;
|
|
28
28
|
radio: ComponentSchema<typeof RadioConfig>;
|
|
29
29
|
scrim: ComponentSchema<typeof ScrimConfig>;
|
|
30
|
+
select: ComponentSchema<typeof SelectConfig>;
|
|
31
|
+
selectContent: ComponentSchema<typeof SelectContentConfig>;
|
|
32
|
+
selectItem: ComponentSchema<typeof SelectItemConfig>;
|
|
30
33
|
switch: ComponentSchema<typeof SwitchConfig>;
|
|
31
34
|
tab: ComponentSchema<typeof TabConfig>;
|
|
32
35
|
tabs: ComponentSchema<typeof TabsConfig>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
import { AvatarConfig, BadgeConfig, BannerConfig, BottomSheetConfig, ButtonConfig, CheckboxConfig, ChipConfig, DividerConfig, IconButtonConfig, InputConfig, LinkConfig, MenuContentConfig, MenuItemConfig, ModalConfig, PaddleNavConfig, PaginationConfig, PopoverConfig, RadioConfig, ScrimConfig, SwitchConfig, TabConfig, TabsConfig, ToastConfig, TooltipConfig } from "./generatedConfigs.js";
|
|
2
|
+
import { AvatarConfig, BadgeConfig, BannerConfig, BottomSheetConfig, ButtonConfig, CheckboxConfig, ChipConfig, DividerConfig, IconButtonConfig, InputConfig, LinkConfig, MenuContentConfig, MenuItemConfig, ModalConfig, PaddleNavConfig, PaginationConfig, PopoverConfig, RadioConfig, ScrimConfig, SelectConfig, SelectContentConfig, SelectItemConfig, SwitchConfig, TabConfig, TabsConfig, ToastConfig, TooltipConfig } from "./generatedConfigs.js";
|
|
3
3
|
import { ComponentSchema } from "../utils/buildConfigSchema.js";
|
|
4
4
|
|
|
5
5
|
//#region ../automated-config/dist/generated/universalTokensConfigAuto.d.ts
|
|
@@ -27,6 +27,9 @@ interface UniversalTokensConfigAuto {
|
|
|
27
27
|
popover: ComponentSchema<typeof PopoverConfig>;
|
|
28
28
|
radio: ComponentSchema<typeof RadioConfig>;
|
|
29
29
|
scrim: ComponentSchema<typeof ScrimConfig>;
|
|
30
|
+
select: ComponentSchema<typeof SelectConfig>;
|
|
31
|
+
selectContent: ComponentSchema<typeof SelectContentConfig>;
|
|
32
|
+
selectItem: ComponentSchema<typeof SelectItemConfig>;
|
|
30
33
|
switch: ComponentSchema<typeof SwitchConfig>;
|
|
31
34
|
tab: ComponentSchema<typeof TabConfig>;
|
|
32
35
|
tabs: ComponentSchema<typeof TabsConfig>;
|