@yahoo/uds 3.156.2 → 3.157.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.
- package/dist/automated-config/dist/generated/autoVariants.cjs +9 -4
- package/dist/automated-config/dist/generated/autoVariants.d.cts +2 -1
- package/dist/automated-config/dist/generated/autoVariants.d.ts +2 -1
- package/dist/automated-config/dist/generated/autoVariants.js +9 -4
- package/dist/automated-config/dist/generated/generatedConfigs.cjs +3011 -3038
- package/dist/automated-config/dist/generated/generatedConfigs.d.cts +143 -140
- package/dist/automated-config/dist/generated/generatedConfigs.d.ts +143 -140
- package/dist/automated-config/dist/generated/generatedConfigs.js +3011 -3038
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +1227 -501
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +1227 -501
- package/dist/automated-config/dist/properties.cjs +1 -1
- package/dist/automated-config/dist/properties.d.cts +15 -0
- package/dist/automated-config/dist/properties.d.ts +15 -0
- package/dist/automated-config/dist/properties.js +1 -1
- package/dist/automated-config/dist/types/ComponentConfig.d.cts +77 -4
- package/dist/automated-config/dist/types/ComponentConfig.d.ts +77 -4
- package/dist/automated-config/dist/types/ConfigSchema.d.cts +14 -2
- package/dist/automated-config/dist/types/ConfigSchema.d.ts +14 -2
- package/dist/automated-config/dist/types/StateAxis.cjs +90 -0
- package/dist/automated-config/dist/types/StateAxis.d.cts +70 -0
- package/dist/automated-config/dist/types/StateAxis.d.ts +70 -0
- package/dist/automated-config/dist/types/StateAxis.js +84 -0
- package/dist/automated-config/dist/utils/buildConfigSchema.cjs +98 -82
- package/dist/automated-config/dist/utils/buildConfigSchema.d.cts +32 -10
- package/dist/automated-config/dist/utils/buildConfigSchema.d.ts +32 -10
- package/dist/automated-config/dist/utils/buildConfigSchema.js +99 -83
- package/dist/automated-config/dist/utils/canonicalizeStateKey.cjs +32 -0
- package/dist/automated-config/dist/utils/canonicalizeStateKey.d.cts +48 -0
- package/dist/automated-config/dist/utils/canonicalizeStateKey.d.ts +48 -0
- package/dist/automated-config/dist/utils/canonicalizeStateKey.js +31 -0
- package/dist/automated-config/dist/utils/getConfigComponentVariant.d.cts +8 -0
- package/dist/automated-config/dist/utils/getConfigComponentVariant.d.ts +8 -0
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +3 -3
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +3 -3
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.cjs +12 -5
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.d.cts +8 -1
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.d.ts +8 -1
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.js +12 -5
- package/dist/automated-config/dist/utils/index.cjs +407 -97
- package/dist/automated-config/dist/utils/index.d.cts +66 -16
- package/dist/automated-config/dist/utils/index.d.ts +66 -16
- package/dist/automated-config/dist/utils/index.js +408 -99
- package/dist/automated-config/dist/utils/pseudoStateSelectors.cjs +122 -0
- package/dist/automated-config/dist/utils/pseudoStateSelectors.d.cts +80 -0
- package/dist/automated-config/dist/utils/pseudoStateSelectors.d.ts +80 -0
- package/dist/automated-config/dist/utils/pseudoStateSelectors.js +120 -0
- package/dist/automated-config/dist/utils/resolvePropertyStates.cjs +131 -0
- package/dist/automated-config/dist/utils/resolvePropertyStates.d.cts +49 -0
- package/dist/automated-config/dist/utils/resolvePropertyStates.d.ts +49 -0
- package/dist/automated-config/dist/utils/resolvePropertyStates.js +130 -0
- package/dist/automated-config/dist/utils/resolveSlotByCascade.cjs +118 -0
- package/dist/automated-config/dist/utils/resolveSlotByCascade.d.cts +68 -0
- package/dist/automated-config/dist/utils/resolveSlotByCascade.d.ts +68 -0
- package/dist/automated-config/dist/utils/resolveSlotByCascade.js +117 -0
- package/dist/automated-config/dist/utils/variantConfigGuards.d.cts +13 -0
- package/dist/automated-config/dist/utils/variantConfigGuards.d.ts +13 -0
- package/dist/components/client/Input/Input.cjs +42 -6
- package/dist/components/client/Input/Input.d.cts +13 -0
- package/dist/components/client/Input/Input.d.ts +13 -0
- package/dist/components/client/Input/Input.js +42 -6
- package/dist/config/dist/index.cjs +221 -550
- package/dist/config/dist/index.js +221 -550
- package/dist/css/dist/commands/css.cjs +1 -0
- package/dist/css/dist/commands/css.helpers.cjs +6 -0
- package/dist/css/dist/commands/css.helpers.js +6 -0
- package/dist/css/dist/commands/css.js +1 -0
- package/dist/css/dist/css/generate.cjs +4 -2
- package/dist/css/dist/css/generate.d.cts +28 -0
- package/dist/css/dist/css/generate.d.ts +28 -0
- package/dist/css/dist/css/generate.helpers.cjs +5 -1
- package/dist/css/dist/css/generate.helpers.js +6 -2
- package/dist/css/dist/css/generate.js +4 -2
- package/dist/css/dist/css/postcss.cjs +81 -0
- package/dist/css/dist/css/postcss.helpers.cjs +60 -0
- package/dist/css/dist/css/postcss.helpers.js +59 -1
- package/dist/css/dist/css/postcss.js +82 -2
- package/dist/css/dist/css/runner.cjs +12 -2
- package/dist/css/dist/css/runner.js +12 -2
- package/dist/css/dist/css/theme.d.cts +6 -0
- package/dist/css/dist/css/theme.d.ts +6 -0
- package/dist/css/dist/packages/automated-config/dist/properties.cjs +1 -1
- package/dist/css/dist/packages/automated-config/dist/properties.js +1 -1
- package/dist/css/dist/packages/automated-config/dist/utils/index.d.cts +6 -0
- package/dist/css/dist/packages/automated-config/dist/utils/index.d.ts +6 -0
- package/dist/css/dist/packages/config/dist/index.cjs +221 -550
- package/dist/css/dist/packages/config/dist/index.js +221 -550
- package/dist/css/dist/utils/optimizeCSS.cjs +59 -0
- package/dist/css/dist/utils/optimizeCSS.js +59 -0
- package/dist/index.cjs +25 -0
- package/dist/index.d.cts +10 -3
- package/dist/index.d.ts +10 -3
- package/dist/index.js +9 -2
- package/dist/styles/styler.d.cts +12 -11
- package/dist/styles/styler.d.ts +12 -11
- package/dist/styles/variants.d.cts +9 -4
- package/dist/styles/variants.d.ts +9 -4
- package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.cjs +3011 -3038
- package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.js +3011 -3038
- package/dist/tailwind-internal/dist/packages/automated-config/dist/properties.cjs +1 -1
- package/dist/tailwind-internal/dist/packages/automated-config/dist/properties.js +1 -1
- package/dist/tailwind-internal/dist/packages/automated-config/dist/types/StateAxis.cjs +81 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/types/StateAxis.js +76 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/canonicalizeStateKey.cjs +33 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/canonicalizeStateKey.js +32 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.cjs +0 -7
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.js +1 -7
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.cjs +354 -97
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.d.cts +6 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.d.ts +6 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.js +355 -98
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.cjs +122 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.js +121 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/resolvePropertyStates.cjs +132 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/resolvePropertyStates.js +131 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/resolveSlotByCascade.cjs +95 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/resolveSlotByCascade.js +95 -0
- package/dist/tailwind-internal/dist/packages/config/dist/index.cjs +221 -550
- package/dist/tailwind-internal/dist/packages/config/dist/index.js +221 -550
- package/dist/tailwind-internal/dist/plugins/components.cjs +28 -24
- package/dist/tailwind-internal/dist/plugins/components.js +28 -24
- package/dist/tailwind-internal/dist/utils/composeTailwindPlugins.d.cts +3 -0
- package/dist/tailwind-internal/dist/utils/composeTailwindPlugins.d.ts +3 -0
- package/dist/tailwind-internal/dist/utils/getShadowStyles.d.cts +2 -2
- package/dist/tailwind-internal/dist/utils/getShadowStyles.d.ts +2 -2
- package/dist/tokens/automation/index.cjs +25 -0
- package/dist/tokens/automation/index.d.cts +9 -2
- package/dist/tokens/automation/index.d.ts +9 -2
- package/dist/tokens/automation/index.js +9 -2
- package/dist/tokens/index.cjs +25 -0
- package/dist/tokens/index.d.cts +10 -3
- package/dist/tokens/index.d.ts +10 -3
- package/dist/tokens/index.js +9 -2
- package/dist/tokens/types.d.cts +1 -1
- package/dist/tokens/types.d.ts +1 -1
- package/dist/uds/generated/componentData.cjs +2202 -2200
- package/dist/uds/generated/componentData.js +2202 -2200
- package/dist/uds/generated/migrationSchemaVersion.cjs +1 -1
- package/dist/uds/generated/migrationSchemaVersion.js +1 -1
- package/dist/uds/generated/tailwindPurge.cjs +79 -78
- package/dist/uds/generated/tailwindPurge.js +79 -78
- package/generated/componentData.json +2720 -2718
- package/generated/migrationSchemaVersion.ts +1 -1
- package/generated/tailwindPurge.ts +2 -2
- package/package.json +1 -1
|
@@ -14884,29 +14884,74 @@ const defaultTokensConfig = {
|
|
|
14884
14884
|
value: "6",
|
|
14885
14885
|
valueType: "alias"
|
|
14886
14886
|
} } },
|
|
14887
|
-
"size/lg/
|
|
14888
|
-
borderRadius: {
|
|
14889
|
-
|
|
14890
|
-
|
|
14891
|
-
|
|
14892
|
-
|
|
14887
|
+
"size/lg/inputWrapperDynamic": {
|
|
14888
|
+
borderRadius: {
|
|
14889
|
+
"focus-within": {
|
|
14890
|
+
type: "borderRadii",
|
|
14891
|
+
value: "md",
|
|
14892
|
+
valueType: "alias"
|
|
14893
|
+
},
|
|
14894
|
+
hover: {
|
|
14895
|
+
type: "borderRadii",
|
|
14896
|
+
value: "md",
|
|
14897
|
+
valueType: "alias"
|
|
14898
|
+
},
|
|
14899
|
+
invalid: {
|
|
14900
|
+
type: "borderRadii",
|
|
14901
|
+
value: "md",
|
|
14902
|
+
valueType: "alias"
|
|
14903
|
+
},
|
|
14904
|
+
pressed: {
|
|
14905
|
+
type: "borderRadii",
|
|
14906
|
+
value: "md",
|
|
14907
|
+
valueType: "alias"
|
|
14908
|
+
},
|
|
14909
|
+
readonly: {
|
|
14910
|
+
type: "borderRadii",
|
|
14911
|
+
value: "md",
|
|
14912
|
+
valueType: "alias"
|
|
14913
|
+
},
|
|
14914
|
+
rest: {
|
|
14915
|
+
type: "borderRadii",
|
|
14916
|
+
value: "md",
|
|
14917
|
+
valueType: "alias"
|
|
14918
|
+
}
|
|
14919
|
+
},
|
|
14893
14920
|
borderWidth: {
|
|
14921
|
+
"focus-within": {
|
|
14922
|
+
type: "borderWidths",
|
|
14923
|
+
value: "thin",
|
|
14924
|
+
valueType: "alias"
|
|
14925
|
+
},
|
|
14926
|
+
hover: {
|
|
14927
|
+
type: "borderWidths",
|
|
14928
|
+
value: "thin",
|
|
14929
|
+
valueType: "alias"
|
|
14930
|
+
},
|
|
14894
14931
|
invalid: {
|
|
14895
14932
|
type: "borderWidths",
|
|
14896
14933
|
value: "thin",
|
|
14897
14934
|
valueType: "alias"
|
|
14898
14935
|
},
|
|
14899
14936
|
pressed: {
|
|
14937
|
+
isEnabled: true,
|
|
14900
14938
|
type: "borderWidths",
|
|
14901
14939
|
value: "medium",
|
|
14902
14940
|
valueType: "alias"
|
|
14903
14941
|
},
|
|
14942
|
+
readonly: {
|
|
14943
|
+
type: "borderWidths",
|
|
14944
|
+
value: "thin",
|
|
14945
|
+
valueType: "alias"
|
|
14946
|
+
},
|
|
14904
14947
|
rest: {
|
|
14905
14948
|
type: "borderWidths",
|
|
14906
14949
|
value: "thin",
|
|
14907
14950
|
valueType: "alias"
|
|
14908
14951
|
}
|
|
14909
|
-
}
|
|
14952
|
+
}
|
|
14953
|
+
},
|
|
14954
|
+
"size/lg/inputWrapperStatic": {
|
|
14910
14955
|
gap: { rest: {
|
|
14911
14956
|
type: "spacingAliases",
|
|
14912
14957
|
value: "3",
|
|
@@ -14922,18 +14967,11 @@ const defaultTokensConfig = {
|
|
|
14922
14967
|
value: "3.5",
|
|
14923
14968
|
valueType: "alias"
|
|
14924
14969
|
} },
|
|
14925
|
-
textVariant: {
|
|
14926
|
-
|
|
14927
|
-
|
|
14928
|
-
|
|
14929
|
-
|
|
14930
|
-
},
|
|
14931
|
-
rest: {
|
|
14932
|
-
type: "textVariants",
|
|
14933
|
-
value: "ui2",
|
|
14934
|
-
valueType: "alias"
|
|
14935
|
-
}
|
|
14936
|
-
}
|
|
14970
|
+
textVariant: { rest: {
|
|
14971
|
+
type: "textVariants",
|
|
14972
|
+
value: "ui2",
|
|
14973
|
+
valueType: "alias"
|
|
14974
|
+
} }
|
|
14937
14975
|
},
|
|
14938
14976
|
"size/lg/label": { textVariant: { rest: {
|
|
14939
14977
|
type: "textVariants",
|
|
@@ -14966,29 +15004,74 @@ const defaultTokensConfig = {
|
|
|
14966
15004
|
value: "6",
|
|
14967
15005
|
valueType: "alias"
|
|
14968
15006
|
} } },
|
|
14969
|
-
"size/md/
|
|
14970
|
-
borderRadius: {
|
|
14971
|
-
|
|
14972
|
-
|
|
14973
|
-
|
|
14974
|
-
|
|
15007
|
+
"size/md/inputWrapperDynamic": {
|
|
15008
|
+
borderRadius: {
|
|
15009
|
+
"focus-within": {
|
|
15010
|
+
type: "borderRadii",
|
|
15011
|
+
value: "md",
|
|
15012
|
+
valueType: "alias"
|
|
15013
|
+
},
|
|
15014
|
+
hover: {
|
|
15015
|
+
type: "borderRadii",
|
|
15016
|
+
value: "md",
|
|
15017
|
+
valueType: "alias"
|
|
15018
|
+
},
|
|
15019
|
+
invalid: {
|
|
15020
|
+
type: "borderRadii",
|
|
15021
|
+
value: "md",
|
|
15022
|
+
valueType: "alias"
|
|
15023
|
+
},
|
|
15024
|
+
pressed: {
|
|
15025
|
+
type: "borderRadii",
|
|
15026
|
+
value: "md",
|
|
15027
|
+
valueType: "alias"
|
|
15028
|
+
},
|
|
15029
|
+
readonly: {
|
|
15030
|
+
type: "borderRadii",
|
|
15031
|
+
value: "md",
|
|
15032
|
+
valueType: "alias"
|
|
15033
|
+
},
|
|
15034
|
+
rest: {
|
|
15035
|
+
type: "borderRadii",
|
|
15036
|
+
value: "md",
|
|
15037
|
+
valueType: "alias"
|
|
15038
|
+
}
|
|
15039
|
+
},
|
|
14975
15040
|
borderWidth: {
|
|
15041
|
+
"focus-within": {
|
|
15042
|
+
type: "borderWidths",
|
|
15043
|
+
value: "thin",
|
|
15044
|
+
valueType: "alias"
|
|
15045
|
+
},
|
|
15046
|
+
hover: {
|
|
15047
|
+
type: "borderWidths",
|
|
15048
|
+
value: "thin",
|
|
15049
|
+
valueType: "alias"
|
|
15050
|
+
},
|
|
14976
15051
|
invalid: {
|
|
14977
15052
|
type: "borderWidths",
|
|
14978
15053
|
value: "thin",
|
|
14979
15054
|
valueType: "alias"
|
|
14980
15055
|
},
|
|
14981
15056
|
pressed: {
|
|
15057
|
+
isEnabled: true,
|
|
14982
15058
|
type: "borderWidths",
|
|
14983
15059
|
value: "medium",
|
|
14984
15060
|
valueType: "alias"
|
|
14985
15061
|
},
|
|
15062
|
+
readonly: {
|
|
15063
|
+
type: "borderWidths",
|
|
15064
|
+
value: "thin",
|
|
15065
|
+
valueType: "alias"
|
|
15066
|
+
},
|
|
14986
15067
|
rest: {
|
|
14987
15068
|
type: "borderWidths",
|
|
14988
15069
|
value: "thin",
|
|
14989
15070
|
valueType: "alias"
|
|
14990
15071
|
}
|
|
14991
|
-
}
|
|
15072
|
+
}
|
|
15073
|
+
},
|
|
15074
|
+
"size/md/inputWrapperStatic": {
|
|
14992
15075
|
gap: { rest: {
|
|
14993
15076
|
type: "spacingAliases",
|
|
14994
15077
|
value: "3.5",
|
|
@@ -15004,18 +15087,11 @@ const defaultTokensConfig = {
|
|
|
15004
15087
|
value: "2",
|
|
15005
15088
|
valueType: "alias"
|
|
15006
15089
|
} },
|
|
15007
|
-
textVariant: {
|
|
15008
|
-
|
|
15009
|
-
|
|
15010
|
-
|
|
15011
|
-
|
|
15012
|
-
},
|
|
15013
|
-
rest: {
|
|
15014
|
-
type: "textVariants",
|
|
15015
|
-
value: "ui2",
|
|
15016
|
-
valueType: "alias"
|
|
15017
|
-
}
|
|
15018
|
-
}
|
|
15090
|
+
textVariant: { rest: {
|
|
15091
|
+
type: "textVariants",
|
|
15092
|
+
value: "ui2",
|
|
15093
|
+
valueType: "alias"
|
|
15094
|
+
} }
|
|
15019
15095
|
},
|
|
15020
15096
|
"size/md/label": { textVariant: { rest: {
|
|
15021
15097
|
type: "textVariants",
|
|
@@ -15028,40 +15104,40 @@ const defaultTokensConfig = {
|
|
|
15028
15104
|
value: "md",
|
|
15029
15105
|
valueType: "alias"
|
|
15030
15106
|
} } },
|
|
15031
|
-
"variant/default/
|
|
15032
|
-
disabled: {
|
|
15033
|
-
type: "foregroundPaletteColors",
|
|
15034
|
-
value: "muted",
|
|
15035
|
-
valueType: "alias"
|
|
15036
|
-
},
|
|
15107
|
+
"variant/default/endIcon": { color: {
|
|
15037
15108
|
"focus-within": {
|
|
15109
|
+
isEnabled: true,
|
|
15038
15110
|
type: "foregroundPaletteColors",
|
|
15039
15111
|
value: "primary",
|
|
15040
15112
|
valueType: "alias"
|
|
15041
15113
|
},
|
|
15042
15114
|
hover: {
|
|
15115
|
+
isEnabled: true,
|
|
15043
15116
|
type: "foregroundPaletteColors",
|
|
15044
15117
|
value: "primary",
|
|
15045
15118
|
valueType: "alias"
|
|
15046
15119
|
},
|
|
15047
15120
|
invalid: {
|
|
15121
|
+
isEnabled: true,
|
|
15048
15122
|
type: "foregroundPaletteColors",
|
|
15049
15123
|
value: "alert",
|
|
15050
15124
|
valueType: "alias"
|
|
15051
15125
|
},
|
|
15052
15126
|
"invalid&hover": {
|
|
15127
|
+
isEnabled: true,
|
|
15053
15128
|
type: "foregroundPaletteColors",
|
|
15054
15129
|
value: "alert",
|
|
15055
15130
|
valueType: "alias"
|
|
15056
15131
|
},
|
|
15057
15132
|
"invalid&pressed": {
|
|
15133
|
+
isEnabled: true,
|
|
15058
15134
|
type: "foregroundPaletteColors",
|
|
15059
15135
|
value: "alert",
|
|
15060
15136
|
valueType: "alias"
|
|
15061
15137
|
},
|
|
15062
15138
|
pressed: {
|
|
15063
15139
|
type: "foregroundPaletteColors",
|
|
15064
|
-
value: "
|
|
15140
|
+
value: "muted",
|
|
15065
15141
|
valueType: "alias"
|
|
15066
15142
|
},
|
|
15067
15143
|
readonly: {
|
|
@@ -15075,12 +15151,7 @@ const defaultTokensConfig = {
|
|
|
15075
15151
|
valueType: "alias"
|
|
15076
15152
|
}
|
|
15077
15153
|
} },
|
|
15078
|
-
"variant/default/
|
|
15079
|
-
disabled: {
|
|
15080
|
-
type: "foregroundPaletteColors",
|
|
15081
|
-
value: "muted",
|
|
15082
|
-
valueType: "alias"
|
|
15083
|
-
},
|
|
15154
|
+
"variant/default/helperIcon": { color: {
|
|
15084
15155
|
"focus-within": {
|
|
15085
15156
|
type: "foregroundPaletteColors",
|
|
15086
15157
|
value: "muted",
|
|
@@ -15092,16 +15163,19 @@ const defaultTokensConfig = {
|
|
|
15092
15163
|
valueType: "alias"
|
|
15093
15164
|
},
|
|
15094
15165
|
invalid: {
|
|
15166
|
+
isEnabled: true,
|
|
15095
15167
|
type: "foregroundPaletteColors",
|
|
15096
15168
|
value: "alert",
|
|
15097
15169
|
valueType: "alias"
|
|
15098
15170
|
},
|
|
15099
15171
|
"invalid&hover": {
|
|
15172
|
+
isEnabled: true,
|
|
15100
15173
|
type: "foregroundPaletteColors",
|
|
15101
15174
|
value: "alert",
|
|
15102
15175
|
valueType: "alias"
|
|
15103
15176
|
},
|
|
15104
15177
|
"invalid&pressed": {
|
|
15178
|
+
isEnabled: true,
|
|
15105
15179
|
type: "foregroundPaletteColors",
|
|
15106
15180
|
value: "alert",
|
|
15107
15181
|
valueType: "alias"
|
|
@@ -15122,12 +15196,7 @@ const defaultTokensConfig = {
|
|
|
15122
15196
|
valueType: "alias"
|
|
15123
15197
|
}
|
|
15124
15198
|
} },
|
|
15125
|
-
"variant/default/
|
|
15126
|
-
disabled: {
|
|
15127
|
-
type: "foregroundPaletteColors",
|
|
15128
|
-
value: "brand",
|
|
15129
|
-
valueType: "alias"
|
|
15130
|
-
},
|
|
15199
|
+
"variant/default/helperText": { color: {
|
|
15131
15200
|
"focus-within": {
|
|
15132
15201
|
type: "foregroundPaletteColors",
|
|
15133
15202
|
value: "brand",
|
|
@@ -15139,21 +15208,25 @@ const defaultTokensConfig = {
|
|
|
15139
15208
|
valueType: "alias"
|
|
15140
15209
|
},
|
|
15141
15210
|
invalid: {
|
|
15211
|
+
isEnabled: true,
|
|
15142
15212
|
type: "foregroundPaletteColors",
|
|
15143
15213
|
value: "alert",
|
|
15144
15214
|
valueType: "alias"
|
|
15145
15215
|
},
|
|
15146
15216
|
"invalid&hover": {
|
|
15217
|
+
isEnabled: true,
|
|
15147
15218
|
type: "foregroundPaletteColors",
|
|
15148
15219
|
value: "alert",
|
|
15149
15220
|
valueType: "alias"
|
|
15150
15221
|
},
|
|
15151
15222
|
"invalid&pressed": {
|
|
15223
|
+
isEnabled: true,
|
|
15152
15224
|
type: "foregroundPaletteColors",
|
|
15153
15225
|
value: "alert",
|
|
15154
15226
|
valueType: "alias"
|
|
15155
15227
|
},
|
|
15156
15228
|
pressed: {
|
|
15229
|
+
isEnabled: true,
|
|
15157
15230
|
type: "foregroundPaletteColors",
|
|
15158
15231
|
value: "muted",
|
|
15159
15232
|
valueType: "alias"
|
|
@@ -15169,40 +15242,39 @@ const defaultTokensConfig = {
|
|
|
15169
15242
|
valueType: "alias"
|
|
15170
15243
|
}
|
|
15171
15244
|
} },
|
|
15172
|
-
"variant/default/
|
|
15173
|
-
disabled: {
|
|
15174
|
-
type: "foregroundPaletteColors",
|
|
15175
|
-
value: "muted",
|
|
15176
|
-
valueType: "alias"
|
|
15177
|
-
},
|
|
15245
|
+
"variant/default/input": { color: {
|
|
15178
15246
|
"focus-within": {
|
|
15247
|
+
isEnabled: true,
|
|
15179
15248
|
type: "foregroundPaletteColors",
|
|
15180
15249
|
value: "primary",
|
|
15181
15250
|
valueType: "alias"
|
|
15182
15251
|
},
|
|
15183
15252
|
hover: {
|
|
15253
|
+
isEnabled: true,
|
|
15184
15254
|
type: "foregroundPaletteColors",
|
|
15185
15255
|
value: "primary",
|
|
15186
15256
|
valueType: "alias"
|
|
15187
15257
|
},
|
|
15188
15258
|
invalid: {
|
|
15189
15259
|
type: "foregroundPaletteColors",
|
|
15190
|
-
value: "
|
|
15260
|
+
value: "muted",
|
|
15191
15261
|
valueType: "alias"
|
|
15192
15262
|
},
|
|
15193
15263
|
"invalid&hover": {
|
|
15194
15264
|
type: "foregroundPaletteColors",
|
|
15195
|
-
value: "
|
|
15265
|
+
value: "muted",
|
|
15196
15266
|
valueType: "alias"
|
|
15197
15267
|
},
|
|
15198
15268
|
"invalid&pressed": {
|
|
15269
|
+
isEnabled: true,
|
|
15199
15270
|
type: "foregroundPaletteColors",
|
|
15200
15271
|
value: "primary",
|
|
15201
15272
|
valueType: "alias"
|
|
15202
15273
|
},
|
|
15203
15274
|
pressed: {
|
|
15275
|
+
isEnabled: true,
|
|
15204
15276
|
type: "foregroundPaletteColors",
|
|
15205
|
-
value: "
|
|
15277
|
+
value: "secondary",
|
|
15206
15278
|
valueType: "alias"
|
|
15207
15279
|
},
|
|
15208
15280
|
readonly: {
|
|
@@ -15216,20 +15288,16 @@ const defaultTokensConfig = {
|
|
|
15216
15288
|
valueType: "alias"
|
|
15217
15289
|
}
|
|
15218
15290
|
} },
|
|
15219
|
-
"variant/default/
|
|
15220
|
-
disabled: {
|
|
15221
|
-
type: "foregroundPaletteColors",
|
|
15222
|
-
value: "muted",
|
|
15223
|
-
valueType: "alias"
|
|
15224
|
-
},
|
|
15291
|
+
"variant/default/inputPlaceholder": { color: {
|
|
15225
15292
|
"focus-within": {
|
|
15293
|
+
isEnabled: true,
|
|
15226
15294
|
type: "foregroundPaletteColors",
|
|
15227
15295
|
value: "primary",
|
|
15228
15296
|
valueType: "alias"
|
|
15229
15297
|
},
|
|
15230
15298
|
hover: {
|
|
15231
15299
|
type: "foregroundPaletteColors",
|
|
15232
|
-
value: "
|
|
15300
|
+
value: "muted",
|
|
15233
15301
|
valueType: "alias"
|
|
15234
15302
|
},
|
|
15235
15303
|
invalid: {
|
|
@@ -15249,7 +15317,7 @@ const defaultTokensConfig = {
|
|
|
15249
15317
|
},
|
|
15250
15318
|
pressed: {
|
|
15251
15319
|
type: "foregroundPaletteColors",
|
|
15252
|
-
value: "
|
|
15320
|
+
value: "muted",
|
|
15253
15321
|
valueType: "alias"
|
|
15254
15322
|
},
|
|
15255
15323
|
readonly: {
|
|
@@ -15263,13 +15331,8 @@ const defaultTokensConfig = {
|
|
|
15263
15331
|
valueType: "alias"
|
|
15264
15332
|
}
|
|
15265
15333
|
} },
|
|
15266
|
-
"variant/default/
|
|
15334
|
+
"variant/default/inputWrapper": {
|
|
15267
15335
|
backgroundColor: {
|
|
15268
|
-
disabled: {
|
|
15269
|
-
type: "backgroundPaletteColors",
|
|
15270
|
-
value: "primary",
|
|
15271
|
-
valueType: "alias"
|
|
15272
|
-
},
|
|
15273
15336
|
"focus-within": {
|
|
15274
15337
|
type: "backgroundPaletteColors",
|
|
15275
15338
|
value: "primary",
|
|
@@ -15312,44 +15375,46 @@ const defaultTokensConfig = {
|
|
|
15312
15375
|
}
|
|
15313
15376
|
},
|
|
15314
15377
|
borderColor: {
|
|
15315
|
-
disabled: {
|
|
15316
|
-
type: "linePaletteColors",
|
|
15317
|
-
value: "secondary",
|
|
15318
|
-
valueType: "alias"
|
|
15319
|
-
},
|
|
15320
15378
|
"focus-within": {
|
|
15379
|
+
isEnabled: true,
|
|
15321
15380
|
type: "linePaletteColors",
|
|
15322
15381
|
value: "brand",
|
|
15323
15382
|
valueType: "alias"
|
|
15324
15383
|
},
|
|
15325
15384
|
hover: {
|
|
15385
|
+
isEnabled: true,
|
|
15326
15386
|
type: "linePaletteColors",
|
|
15327
15387
|
value: "brand",
|
|
15328
15388
|
valueType: "alias"
|
|
15329
15389
|
},
|
|
15330
15390
|
invalid: {
|
|
15391
|
+
isEnabled: true,
|
|
15331
15392
|
type: "linePaletteColors",
|
|
15332
15393
|
value: "alert",
|
|
15333
15394
|
valueType: "alias"
|
|
15334
15395
|
},
|
|
15335
15396
|
"invalid&hover": {
|
|
15336
|
-
|
|
15337
|
-
|
|
15397
|
+
isEnabled: true,
|
|
15398
|
+
type: "spectrumColors",
|
|
15399
|
+
value: "red-11",
|
|
15338
15400
|
valueType: "alias"
|
|
15339
15401
|
},
|
|
15340
15402
|
"invalid&pressed": {
|
|
15403
|
+
isEnabled: true,
|
|
15341
15404
|
type: "linePaletteColors",
|
|
15342
15405
|
value: "alert",
|
|
15343
15406
|
valueType: "alias"
|
|
15344
15407
|
},
|
|
15345
15408
|
pressed: {
|
|
15409
|
+
isEnabled: true,
|
|
15346
15410
|
type: "linePaletteColors",
|
|
15347
15411
|
value: "brand",
|
|
15348
15412
|
valueType: "alias"
|
|
15349
15413
|
},
|
|
15350
15414
|
readonly: {
|
|
15415
|
+
isEnabled: true,
|
|
15351
15416
|
type: "linePaletteColors",
|
|
15352
|
-
value: "
|
|
15417
|
+
value: "tertiary",
|
|
15353
15418
|
valueType: "alias"
|
|
15354
15419
|
},
|
|
15355
15420
|
rest: {
|
|
@@ -15359,38 +15424,38 @@ const defaultTokensConfig = {
|
|
|
15359
15424
|
}
|
|
15360
15425
|
}
|
|
15361
15426
|
},
|
|
15362
|
-
"variant/default/
|
|
15363
|
-
disabled: {
|
|
15364
|
-
type: "foregroundPaletteColors",
|
|
15365
|
-
value: "muted",
|
|
15366
|
-
valueType: "alias"
|
|
15367
|
-
},
|
|
15427
|
+
"variant/default/label": { color: {
|
|
15368
15428
|
"focus-within": {
|
|
15369
15429
|
type: "foregroundPaletteColors",
|
|
15370
15430
|
value: "secondary",
|
|
15371
15431
|
valueType: "alias"
|
|
15372
15432
|
},
|
|
15373
15433
|
hover: {
|
|
15434
|
+
isEnabled: true,
|
|
15374
15435
|
type: "foregroundPaletteColors",
|
|
15375
15436
|
value: "primary",
|
|
15376
15437
|
valueType: "alias"
|
|
15377
15438
|
},
|
|
15378
15439
|
invalid: {
|
|
15440
|
+
isEnabled: true,
|
|
15379
15441
|
type: "foregroundPaletteColors",
|
|
15380
15442
|
value: "alert",
|
|
15381
15443
|
valueType: "alias"
|
|
15382
15444
|
},
|
|
15383
15445
|
"invalid&hover": {
|
|
15446
|
+
isEnabled: true,
|
|
15384
15447
|
type: "foregroundPaletteColors",
|
|
15385
15448
|
value: "alert",
|
|
15386
15449
|
valueType: "alias"
|
|
15387
15450
|
},
|
|
15388
15451
|
"invalid&pressed": {
|
|
15452
|
+
isEnabled: true,
|
|
15389
15453
|
type: "foregroundPaletteColors",
|
|
15390
15454
|
value: "alert",
|
|
15391
15455
|
valueType: "alias"
|
|
15392
15456
|
},
|
|
15393
15457
|
pressed: {
|
|
15458
|
+
isEnabled: true,
|
|
15394
15459
|
type: "foregroundPaletteColors",
|
|
15395
15460
|
value: "primary",
|
|
15396
15461
|
valueType: "alias"
|
|
@@ -15406,12 +15471,7 @@ const defaultTokensConfig = {
|
|
|
15406
15471
|
valueType: "alias"
|
|
15407
15472
|
}
|
|
15408
15473
|
} },
|
|
15409
|
-
"variant/default/
|
|
15410
|
-
disabled: {
|
|
15411
|
-
type: "foregroundPaletteColors",
|
|
15412
|
-
value: "muted",
|
|
15413
|
-
valueType: "alias"
|
|
15414
|
-
},
|
|
15474
|
+
"variant/default/labelRequired": { color: {
|
|
15415
15475
|
"focus-within": {
|
|
15416
15476
|
type: "foregroundPaletteColors",
|
|
15417
15477
|
value: "muted",
|
|
@@ -15423,16 +15483,19 @@ const defaultTokensConfig = {
|
|
|
15423
15483
|
valueType: "alias"
|
|
15424
15484
|
},
|
|
15425
15485
|
invalid: {
|
|
15486
|
+
isEnabled: true,
|
|
15426
15487
|
type: "foregroundPaletteColors",
|
|
15427
15488
|
value: "alert",
|
|
15428
15489
|
valueType: "alias"
|
|
15429
15490
|
},
|
|
15430
15491
|
"invalid&hover": {
|
|
15492
|
+
isEnabled: true,
|
|
15431
15493
|
type: "foregroundPaletteColors",
|
|
15432
15494
|
value: "alert",
|
|
15433
15495
|
valueType: "alias"
|
|
15434
15496
|
},
|
|
15435
15497
|
"invalid&pressed": {
|
|
15498
|
+
isEnabled: true,
|
|
15436
15499
|
type: "foregroundPaletteColors",
|
|
15437
15500
|
value: "alert",
|
|
15438
15501
|
valueType: "alias"
|
|
@@ -15453,39 +15516,40 @@ const defaultTokensConfig = {
|
|
|
15453
15516
|
valueType: "alias"
|
|
15454
15517
|
}
|
|
15455
15518
|
} },
|
|
15456
|
-
"variant/default/
|
|
15457
|
-
"variant/default/
|
|
15458
|
-
disabled: {
|
|
15459
|
-
type: "foregroundPaletteColors",
|
|
15460
|
-
value: "muted",
|
|
15461
|
-
valueType: "alias"
|
|
15462
|
-
},
|
|
15519
|
+
"variant/default/root": {},
|
|
15520
|
+
"variant/default/startIcon": { color: {
|
|
15463
15521
|
"focus-within": {
|
|
15522
|
+
isEnabled: true,
|
|
15464
15523
|
type: "foregroundPaletteColors",
|
|
15465
15524
|
value: "primary",
|
|
15466
15525
|
valueType: "alias"
|
|
15467
15526
|
},
|
|
15468
15527
|
hover: {
|
|
15528
|
+
isEnabled: true,
|
|
15469
15529
|
type: "foregroundPaletteColors",
|
|
15470
15530
|
value: "primary",
|
|
15471
15531
|
valueType: "alias"
|
|
15472
15532
|
},
|
|
15473
15533
|
invalid: {
|
|
15534
|
+
isEnabled: true,
|
|
15474
15535
|
type: "foregroundPaletteColors",
|
|
15475
15536
|
value: "alert",
|
|
15476
15537
|
valueType: "alias"
|
|
15477
15538
|
},
|
|
15478
15539
|
"invalid&hover": {
|
|
15540
|
+
isEnabled: true,
|
|
15479
15541
|
type: "foregroundPaletteColors",
|
|
15480
15542
|
value: "alert",
|
|
15481
15543
|
valueType: "alias"
|
|
15482
15544
|
},
|
|
15483
15545
|
"invalid&pressed": {
|
|
15546
|
+
isEnabled: true,
|
|
15484
15547
|
type: "foregroundPaletteColors",
|
|
15485
15548
|
value: "alert",
|
|
15486
15549
|
valueType: "alias"
|
|
15487
15550
|
},
|
|
15488
15551
|
pressed: {
|
|
15552
|
+
isEnabled: true,
|
|
15489
15553
|
type: "foregroundPaletteColors",
|
|
15490
15554
|
value: "primary",
|
|
15491
15555
|
valueType: "alias"
|
|
@@ -15501,479 +15565,86 @@ const defaultTokensConfig = {
|
|
|
15501
15565
|
valueType: "alias"
|
|
15502
15566
|
}
|
|
15503
15567
|
} },
|
|
15504
|
-
"variant/default/value/
|
|
15505
|
-
|
|
15568
|
+
"variant/default/value/empty/endIcon": { color: { pressed: {
|
|
15569
|
+
isEnabled: true,
|
|
15570
|
+
type: "foregroundPaletteColors",
|
|
15571
|
+
value: "primary",
|
|
15572
|
+
valueType: "alias"
|
|
15573
|
+
} } },
|
|
15574
|
+
"variant/default/value/empty/input": { color: {
|
|
15575
|
+
invalid: {
|
|
15576
|
+
isEnabled: true,
|
|
15506
15577
|
type: "foregroundPaletteColors",
|
|
15507
|
-
value: "
|
|
15578
|
+
value: "primary",
|
|
15508
15579
|
valueType: "alias"
|
|
15509
15580
|
},
|
|
15510
|
-
|
|
15581
|
+
pressed: {
|
|
15582
|
+
isEnabled: true,
|
|
15511
15583
|
type: "foregroundPaletteColors",
|
|
15512
15584
|
value: "primary",
|
|
15513
15585
|
valueType: "alias"
|
|
15514
|
-
}
|
|
15586
|
+
}
|
|
15587
|
+
} },
|
|
15588
|
+
"variant/default/value/empty/inputPlaceholder": { color: {
|
|
15515
15589
|
hover: {
|
|
15590
|
+
isEnabled: true,
|
|
15516
15591
|
type: "foregroundPaletteColors",
|
|
15517
15592
|
value: "primary",
|
|
15518
15593
|
valueType: "alias"
|
|
15519
15594
|
},
|
|
15520
|
-
|
|
15595
|
+
pressed: {
|
|
15596
|
+
isEnabled: true,
|
|
15521
15597
|
type: "foregroundPaletteColors",
|
|
15522
|
-
value: "
|
|
15598
|
+
value: "primary",
|
|
15523
15599
|
valueType: "alias"
|
|
15524
|
-
}
|
|
15600
|
+
}
|
|
15601
|
+
} },
|
|
15602
|
+
"variant/default/value/empty/inputWrapper": { borderColor: {
|
|
15525
15603
|
"invalid&hover": {
|
|
15526
|
-
|
|
15604
|
+
isEnabled: true,
|
|
15605
|
+
type: "linePaletteColors",
|
|
15527
15606
|
value: "alert",
|
|
15528
15607
|
valueType: "alias"
|
|
15529
15608
|
},
|
|
15530
|
-
|
|
15531
|
-
|
|
15532
|
-
|
|
15609
|
+
readonly: {
|
|
15610
|
+
isEnabled: true,
|
|
15611
|
+
type: "linePaletteColors",
|
|
15612
|
+
value: "secondary",
|
|
15533
15613
|
valueType: "alias"
|
|
15534
|
-
}
|
|
15535
|
-
|
|
15614
|
+
}
|
|
15615
|
+
} },
|
|
15616
|
+
"variant/default/value/filled/helperText": { color: { rest: {
|
|
15617
|
+
isEnabled: true,
|
|
15618
|
+
type: "foregroundPaletteColors",
|
|
15619
|
+
value: "muted",
|
|
15620
|
+
valueType: "alias"
|
|
15621
|
+
} } },
|
|
15622
|
+
"variant/default/value/filled/input": { color: {
|
|
15623
|
+
invalid: {
|
|
15624
|
+
isEnabled: true,
|
|
15536
15625
|
type: "foregroundPaletteColors",
|
|
15537
15626
|
value: "muted",
|
|
15538
15627
|
valueType: "alias"
|
|
15539
15628
|
},
|
|
15540
15629
|
readonly: {
|
|
15630
|
+
isEnabled: true,
|
|
15541
15631
|
type: "foregroundPaletteColors",
|
|
15542
15632
|
value: "muted",
|
|
15543
15633
|
valueType: "alias"
|
|
15544
15634
|
},
|
|
15545
15635
|
rest: {
|
|
15636
|
+
isEnabled: true,
|
|
15546
15637
|
type: "foregroundPaletteColors",
|
|
15547
|
-
value: "
|
|
15638
|
+
value: "secondary",
|
|
15548
15639
|
valueType: "alias"
|
|
15549
15640
|
}
|
|
15550
15641
|
} },
|
|
15551
|
-
"variant/default/value/filled/
|
|
15552
|
-
|
|
15553
|
-
|
|
15554
|
-
|
|
15555
|
-
|
|
15556
|
-
|
|
15557
|
-
"focus-within": {
|
|
15558
|
-
type: "foregroundPaletteColors",
|
|
15559
|
-
value: "muted",
|
|
15560
|
-
valueType: "alias"
|
|
15561
|
-
},
|
|
15562
|
-
hover: {
|
|
15563
|
-
type: "foregroundPaletteColors",
|
|
15564
|
-
value: "muted",
|
|
15565
|
-
valueType: "alias"
|
|
15566
|
-
},
|
|
15567
|
-
invalid: {
|
|
15568
|
-
type: "foregroundPaletteColors",
|
|
15569
|
-
value: "alert",
|
|
15570
|
-
valueType: "alias"
|
|
15571
|
-
},
|
|
15572
|
-
"invalid&hover": {
|
|
15573
|
-
type: "foregroundPaletteColors",
|
|
15574
|
-
value: "alert",
|
|
15575
|
-
valueType: "alias"
|
|
15576
|
-
},
|
|
15577
|
-
"invalid&pressed": {
|
|
15578
|
-
type: "foregroundPaletteColors",
|
|
15579
|
-
value: "alert",
|
|
15580
|
-
valueType: "alias"
|
|
15581
|
-
},
|
|
15582
|
-
pressed: {
|
|
15583
|
-
type: "foregroundPaletteColors",
|
|
15584
|
-
value: "muted",
|
|
15585
|
-
valueType: "alias"
|
|
15586
|
-
},
|
|
15587
|
-
readonly: {
|
|
15588
|
-
type: "foregroundPaletteColors",
|
|
15589
|
-
value: "muted",
|
|
15590
|
-
valueType: "alias"
|
|
15591
|
-
},
|
|
15592
|
-
rest: {
|
|
15593
|
-
type: "foregroundPaletteColors",
|
|
15594
|
-
value: "muted",
|
|
15595
|
-
valueType: "alias"
|
|
15596
|
-
}
|
|
15597
|
-
} },
|
|
15598
|
-
"variant/default/value/filled/helperText": { color: {
|
|
15599
|
-
disabled: {
|
|
15600
|
-
type: "foregroundPaletteColors",
|
|
15601
|
-
value: "muted",
|
|
15602
|
-
valueType: "alias"
|
|
15603
|
-
},
|
|
15604
|
-
"focus-within": {
|
|
15605
|
-
type: "foregroundPaletteColors",
|
|
15606
|
-
value: "muted",
|
|
15607
|
-
valueType: "alias"
|
|
15608
|
-
},
|
|
15609
|
-
hover: {
|
|
15610
|
-
type: "foregroundPaletteColors",
|
|
15611
|
-
value: "muted",
|
|
15612
|
-
valueType: "alias"
|
|
15613
|
-
},
|
|
15614
|
-
invalid: {
|
|
15615
|
-
type: "foregroundPaletteColors",
|
|
15616
|
-
value: "alert",
|
|
15617
|
-
valueType: "alias"
|
|
15618
|
-
},
|
|
15619
|
-
"invalid&hover": {
|
|
15620
|
-
type: "foregroundPaletteColors",
|
|
15621
|
-
value: "alert",
|
|
15622
|
-
valueType: "alias"
|
|
15623
|
-
},
|
|
15624
|
-
"invalid&pressed": {
|
|
15625
|
-
type: "foregroundPaletteColors",
|
|
15626
|
-
value: "alert",
|
|
15627
|
-
valueType: "alias"
|
|
15628
|
-
},
|
|
15629
|
-
pressed: {
|
|
15630
|
-
type: "foregroundPaletteColors",
|
|
15631
|
-
value: "muted",
|
|
15632
|
-
valueType: "alias"
|
|
15633
|
-
},
|
|
15634
|
-
readonly: {
|
|
15635
|
-
type: "foregroundPaletteColors",
|
|
15636
|
-
value: "muted",
|
|
15637
|
-
valueType: "alias"
|
|
15638
|
-
},
|
|
15639
|
-
rest: {
|
|
15640
|
-
type: "foregroundPaletteColors",
|
|
15641
|
-
value: "muted",
|
|
15642
|
-
valueType: "alias"
|
|
15643
|
-
}
|
|
15644
|
-
} },
|
|
15645
|
-
"variant/default/value/filled/input": { color: {
|
|
15646
|
-
disabled: {
|
|
15647
|
-
type: "foregroundPaletteColors",
|
|
15648
|
-
value: "muted",
|
|
15649
|
-
valueType: "alias"
|
|
15650
|
-
},
|
|
15651
|
-
"focus-within": {
|
|
15652
|
-
type: "foregroundPaletteColors",
|
|
15653
|
-
value: "primary",
|
|
15654
|
-
valueType: "alias"
|
|
15655
|
-
},
|
|
15656
|
-
hover: {
|
|
15657
|
-
type: "foregroundPaletteColors",
|
|
15658
|
-
value: "primary",
|
|
15659
|
-
valueType: "alias"
|
|
15660
|
-
},
|
|
15661
|
-
invalid: {
|
|
15662
|
-
type: "foregroundPaletteColors",
|
|
15663
|
-
value: "muted",
|
|
15664
|
-
valueType: "alias"
|
|
15665
|
-
},
|
|
15666
|
-
"invalid&hover": {
|
|
15667
|
-
type: "foregroundPaletteColors",
|
|
15668
|
-
value: "muted",
|
|
15669
|
-
valueType: "alias"
|
|
15670
|
-
},
|
|
15671
|
-
"invalid&pressed": {
|
|
15672
|
-
type: "foregroundPaletteColors",
|
|
15673
|
-
value: "primary",
|
|
15674
|
-
valueType: "alias"
|
|
15675
|
-
},
|
|
15676
|
-
pressed: {
|
|
15677
|
-
type: "foregroundPaletteColors",
|
|
15678
|
-
value: "secondary",
|
|
15679
|
-
valueType: "alias"
|
|
15680
|
-
},
|
|
15681
|
-
readonly: {
|
|
15682
|
-
type: "foregroundPaletteColors",
|
|
15683
|
-
value: "muted",
|
|
15684
|
-
valueType: "alias"
|
|
15685
|
-
},
|
|
15686
|
-
rest: {
|
|
15687
|
-
type: "foregroundPaletteColors",
|
|
15688
|
-
value: "secondary",
|
|
15689
|
-
valueType: "alias"
|
|
15690
|
-
}
|
|
15691
|
-
} },
|
|
15692
|
-
"variant/default/value/filled/inputPlaceholder": { color: {
|
|
15693
|
-
disabled: {
|
|
15694
|
-
type: "foregroundPaletteColors",
|
|
15695
|
-
value: "muted",
|
|
15696
|
-
valueType: "alias"
|
|
15697
|
-
},
|
|
15698
|
-
"focus-within": {
|
|
15699
|
-
type: "foregroundPaletteColors",
|
|
15700
|
-
value: "primary",
|
|
15701
|
-
valueType: "alias"
|
|
15702
|
-
},
|
|
15703
|
-
hover: {
|
|
15704
|
-
type: "foregroundPaletteColors",
|
|
15705
|
-
value: "muted",
|
|
15706
|
-
valueType: "alias"
|
|
15707
|
-
},
|
|
15708
|
-
invalid: {
|
|
15709
|
-
type: "foregroundPaletteColors",
|
|
15710
|
-
value: "muted",
|
|
15711
|
-
valueType: "alias"
|
|
15712
|
-
},
|
|
15713
|
-
"invalid&hover": {
|
|
15714
|
-
type: "foregroundPaletteColors",
|
|
15715
|
-
value: "muted",
|
|
15716
|
-
valueType: "alias"
|
|
15717
|
-
},
|
|
15718
|
-
"invalid&pressed": {
|
|
15719
|
-
type: "foregroundPaletteColors",
|
|
15720
|
-
value: "muted",
|
|
15721
|
-
valueType: "alias"
|
|
15722
|
-
},
|
|
15723
|
-
pressed: {
|
|
15724
|
-
type: "foregroundPaletteColors",
|
|
15725
|
-
value: "muted",
|
|
15726
|
-
valueType: "alias"
|
|
15727
|
-
},
|
|
15728
|
-
readonly: {
|
|
15729
|
-
type: "foregroundPaletteColors",
|
|
15730
|
-
value: "muted",
|
|
15731
|
-
valueType: "alias"
|
|
15732
|
-
},
|
|
15733
|
-
rest: {
|
|
15734
|
-
type: "foregroundPaletteColors",
|
|
15735
|
-
value: "muted",
|
|
15736
|
-
valueType: "alias"
|
|
15737
|
-
}
|
|
15738
|
-
} },
|
|
15739
|
-
"variant/default/value/filled/inputWrapper": {
|
|
15740
|
-
backgroundColor: {
|
|
15741
|
-
disabled: {
|
|
15742
|
-
type: "backgroundPaletteColors",
|
|
15743
|
-
value: "primary",
|
|
15744
|
-
valueType: "alias"
|
|
15745
|
-
},
|
|
15746
|
-
"focus-within": {
|
|
15747
|
-
type: "backgroundPaletteColors",
|
|
15748
|
-
value: "primary",
|
|
15749
|
-
valueType: "alias"
|
|
15750
|
-
},
|
|
15751
|
-
hover: {
|
|
15752
|
-
type: "backgroundPaletteColors",
|
|
15753
|
-
value: "primary",
|
|
15754
|
-
valueType: "alias"
|
|
15755
|
-
},
|
|
15756
|
-
invalid: {
|
|
15757
|
-
type: "backgroundPaletteColors",
|
|
15758
|
-
value: "primary",
|
|
15759
|
-
valueType: "alias"
|
|
15760
|
-
},
|
|
15761
|
-
"invalid&hover": {
|
|
15762
|
-
type: "backgroundPaletteColors",
|
|
15763
|
-
value: "primary",
|
|
15764
|
-
valueType: "alias"
|
|
15765
|
-
},
|
|
15766
|
-
"invalid&pressed": {
|
|
15767
|
-
type: "backgroundPaletteColors",
|
|
15768
|
-
value: "primary",
|
|
15769
|
-
valueType: "alias"
|
|
15770
|
-
},
|
|
15771
|
-
pressed: {
|
|
15772
|
-
type: "backgroundPaletteColors",
|
|
15773
|
-
value: "primary",
|
|
15774
|
-
valueType: "alias"
|
|
15775
|
-
},
|
|
15776
|
-
readonly: {
|
|
15777
|
-
type: "backgroundPaletteColors",
|
|
15778
|
-
value: "secondary",
|
|
15779
|
-
valueType: "alias"
|
|
15780
|
-
},
|
|
15781
|
-
rest: {
|
|
15782
|
-
type: "backgroundPaletteColors",
|
|
15783
|
-
value: "primary",
|
|
15784
|
-
valueType: "alias"
|
|
15785
|
-
}
|
|
15786
|
-
},
|
|
15787
|
-
borderColor: {
|
|
15788
|
-
disabled: {
|
|
15789
|
-
type: "linePaletteColors",
|
|
15790
|
-
value: "tertiary",
|
|
15791
|
-
valueType: "alias"
|
|
15792
|
-
},
|
|
15793
|
-
"focus-within": {
|
|
15794
|
-
type: "linePaletteColors",
|
|
15795
|
-
value: "brand",
|
|
15796
|
-
valueType: "alias"
|
|
15797
|
-
},
|
|
15798
|
-
hover: {
|
|
15799
|
-
type: "linePaletteColors",
|
|
15800
|
-
value: "brand",
|
|
15801
|
-
valueType: "alias"
|
|
15802
|
-
},
|
|
15803
|
-
invalid: {
|
|
15804
|
-
type: "linePaletteColors",
|
|
15805
|
-
value: "alert",
|
|
15806
|
-
valueType: "alias"
|
|
15807
|
-
},
|
|
15808
|
-
"invalid&hover": {
|
|
15809
|
-
type: "spectrumColors",
|
|
15810
|
-
value: "red-11",
|
|
15811
|
-
valueType: "alias"
|
|
15812
|
-
},
|
|
15813
|
-
"invalid&pressed": {
|
|
15814
|
-
type: "linePaletteColors",
|
|
15815
|
-
value: "alert",
|
|
15816
|
-
valueType: "alias"
|
|
15817
|
-
},
|
|
15818
|
-
pressed: {
|
|
15819
|
-
type: "linePaletteColors",
|
|
15820
|
-
value: "brand",
|
|
15821
|
-
valueType: "alias"
|
|
15822
|
-
},
|
|
15823
|
-
readonly: {
|
|
15824
|
-
type: "linePaletteColors",
|
|
15825
|
-
value: "tertiary",
|
|
15826
|
-
valueType: "alias"
|
|
15827
|
-
},
|
|
15828
|
-
rest: {
|
|
15829
|
-
type: "linePaletteColors",
|
|
15830
|
-
value: "secondary",
|
|
15831
|
-
valueType: "alias"
|
|
15832
|
-
}
|
|
15833
|
-
}
|
|
15834
|
-
},
|
|
15835
|
-
"variant/default/value/filled/label": { color: {
|
|
15836
|
-
disabled: {
|
|
15837
|
-
type: "foregroundPaletteColors",
|
|
15838
|
-
value: "muted",
|
|
15839
|
-
valueType: "alias"
|
|
15840
|
-
},
|
|
15841
|
-
"focus-within": {
|
|
15842
|
-
type: "foregroundPaletteColors",
|
|
15843
|
-
value: "secondary",
|
|
15844
|
-
valueType: "alias"
|
|
15845
|
-
},
|
|
15846
|
-
hover: {
|
|
15847
|
-
type: "foregroundPaletteColors",
|
|
15848
|
-
value: "primary",
|
|
15849
|
-
valueType: "alias"
|
|
15850
|
-
},
|
|
15851
|
-
invalid: {
|
|
15852
|
-
type: "foregroundPaletteColors",
|
|
15853
|
-
value: "alert",
|
|
15854
|
-
valueType: "alias"
|
|
15855
|
-
},
|
|
15856
|
-
"invalid&hover": {
|
|
15857
|
-
type: "foregroundPaletteColors",
|
|
15858
|
-
value: "alert",
|
|
15859
|
-
valueType: "alias"
|
|
15860
|
-
},
|
|
15861
|
-
"invalid&pressed": {
|
|
15862
|
-
type: "foregroundPaletteColors",
|
|
15863
|
-
value: "alert",
|
|
15864
|
-
valueType: "alias"
|
|
15865
|
-
},
|
|
15866
|
-
pressed: {
|
|
15867
|
-
type: "foregroundPaletteColors",
|
|
15868
|
-
value: "primary",
|
|
15869
|
-
valueType: "alias"
|
|
15870
|
-
},
|
|
15871
|
-
readonly: {
|
|
15872
|
-
type: "foregroundPaletteColors",
|
|
15873
|
-
value: "secondary",
|
|
15874
|
-
valueType: "alias"
|
|
15875
|
-
},
|
|
15876
|
-
rest: {
|
|
15877
|
-
type: "foregroundPaletteColors",
|
|
15878
|
-
value: "secondary",
|
|
15879
|
-
valueType: "alias"
|
|
15880
|
-
}
|
|
15881
|
-
} },
|
|
15882
|
-
"variant/default/value/filled/labelRequired": { color: {
|
|
15883
|
-
disabled: {
|
|
15884
|
-
type: "foregroundPaletteColors",
|
|
15885
|
-
value: "muted",
|
|
15886
|
-
valueType: "alias"
|
|
15887
|
-
},
|
|
15888
|
-
"focus-within": {
|
|
15889
|
-
type: "foregroundPaletteColors",
|
|
15890
|
-
value: "muted",
|
|
15891
|
-
valueType: "alias"
|
|
15892
|
-
},
|
|
15893
|
-
hover: {
|
|
15894
|
-
type: "foregroundPaletteColors",
|
|
15895
|
-
value: "muted",
|
|
15896
|
-
valueType: "alias"
|
|
15897
|
-
},
|
|
15898
|
-
invalid: {
|
|
15899
|
-
type: "foregroundPaletteColors",
|
|
15900
|
-
value: "alert",
|
|
15901
|
-
valueType: "alias"
|
|
15902
|
-
},
|
|
15903
|
-
"invalid&hover": {
|
|
15904
|
-
type: "foregroundPaletteColors",
|
|
15905
|
-
value: "alert",
|
|
15906
|
-
valueType: "alias"
|
|
15907
|
-
},
|
|
15908
|
-
"invalid&pressed": {
|
|
15909
|
-
type: "foregroundPaletteColors",
|
|
15910
|
-
value: "alert",
|
|
15911
|
-
valueType: "alias"
|
|
15912
|
-
},
|
|
15913
|
-
pressed: {
|
|
15914
|
-
type: "foregroundPaletteColors",
|
|
15915
|
-
value: "muted",
|
|
15916
|
-
valueType: "alias"
|
|
15917
|
-
},
|
|
15918
|
-
readonly: {
|
|
15919
|
-
type: "foregroundPaletteColors",
|
|
15920
|
-
value: "muted",
|
|
15921
|
-
valueType: "alias"
|
|
15922
|
-
},
|
|
15923
|
-
rest: {
|
|
15924
|
-
type: "foregroundPaletteColors",
|
|
15925
|
-
value: "muted",
|
|
15926
|
-
valueType: "alias"
|
|
15927
|
-
}
|
|
15928
|
-
} },
|
|
15929
|
-
"variant/default/value/filled/root": {},
|
|
15930
|
-
"variant/default/value/filled/startIcon": { color: {
|
|
15931
|
-
disabled: {
|
|
15932
|
-
type: "foregroundPaletteColors",
|
|
15933
|
-
value: "muted",
|
|
15934
|
-
valueType: "alias"
|
|
15935
|
-
},
|
|
15936
|
-
"focus-within": {
|
|
15937
|
-
type: "foregroundPaletteColors",
|
|
15938
|
-
value: "primary",
|
|
15939
|
-
valueType: "alias"
|
|
15940
|
-
},
|
|
15941
|
-
hover: {
|
|
15942
|
-
type: "foregroundPaletteColors",
|
|
15943
|
-
value: "primary",
|
|
15944
|
-
valueType: "alias"
|
|
15945
|
-
},
|
|
15946
|
-
invalid: {
|
|
15947
|
-
type: "foregroundPaletteColors",
|
|
15948
|
-
value: "alert",
|
|
15949
|
-
valueType: "alias"
|
|
15950
|
-
},
|
|
15951
|
-
"invalid&hover": {
|
|
15952
|
-
type: "foregroundPaletteColors",
|
|
15953
|
-
value: "alert",
|
|
15954
|
-
valueType: "alias"
|
|
15955
|
-
},
|
|
15956
|
-
"invalid&pressed": {
|
|
15957
|
-
type: "foregroundPaletteColors",
|
|
15958
|
-
value: "alert",
|
|
15959
|
-
valueType: "alias"
|
|
15960
|
-
},
|
|
15961
|
-
pressed: {
|
|
15962
|
-
type: "foregroundPaletteColors",
|
|
15963
|
-
value: "primary",
|
|
15964
|
-
valueType: "alias"
|
|
15965
|
-
},
|
|
15966
|
-
readonly: {
|
|
15967
|
-
type: "foregroundPaletteColors",
|
|
15968
|
-
value: "muted",
|
|
15969
|
-
valueType: "alias"
|
|
15970
|
-
},
|
|
15971
|
-
rest: {
|
|
15972
|
-
type: "foregroundPaletteColors",
|
|
15973
|
-
value: "muted",
|
|
15974
|
-
valueType: "alias"
|
|
15975
|
-
}
|
|
15976
|
-
} }
|
|
15642
|
+
"variant/default/value/filled/inputWrapper": { backgroundColor: { readonly: {
|
|
15643
|
+
isEnabled: true,
|
|
15644
|
+
type: "backgroundPaletteColors",
|
|
15645
|
+
value: "secondary",
|
|
15646
|
+
valueType: "alias"
|
|
15647
|
+
} } }
|
|
15977
15648
|
}
|
|
15978
15649
|
},
|
|
15979
15650
|
link: {
|
|
@@ -29227,8 +28898,8 @@ const defaultTokensConfig = {
|
|
|
29227
28898
|
}
|
|
29228
28899
|
}
|
|
29229
28900
|
},
|
|
29230
|
-
version: "v0.
|
|
29231
|
-
version: "v0.
|
|
28901
|
+
version: "v0.98.0",
|
|
28902
|
+
version: "v0.98.0"
|
|
29232
28903
|
};
|
|
29233
28904
|
//#endregion
|
|
29234
28905
|
exports.defaultTokensConfig = defaultTokensConfig;
|