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