@yahoo/uds 3.122.2 → 3.123.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/experimental/client/SegmentedControl.d.cts +2 -1
- package/dist/styles/styler.d.cts +12 -12
- package/dist/styles/styler.d.ts +12 -12
- package/dist/tailwind/dist/commands/css.cjs +17 -3
- package/dist/tailwind/dist/commands/css.d.cts.map +1 -1
- package/dist/tailwind/dist/commands/css.d.ts.map +1 -1
- package/dist/tailwind/dist/commands/css.helpers.cjs +2 -1
- package/dist/tailwind/dist/commands/css.helpers.js +2 -1
- package/dist/tailwind/dist/commands/css.helpers.js.map +1 -1
- package/dist/tailwind/dist/commands/css.js +17 -3
- package/dist/tailwind/dist/commands/css.js.map +1 -1
- package/dist/tailwind/dist/css/generate.cjs +3 -0
- package/dist/tailwind/dist/css/generate.helpers.cjs +14 -6
- package/dist/tailwind/dist/css/generate.helpers.js +15 -7
- package/dist/tailwind/dist/css/generate.helpers.js.map +1 -1
- package/dist/tailwind/dist/css/generate.js +3 -0
- package/dist/tailwind/dist/css/generate.js.map +1 -1
- package/dist/tailwind/dist/css/nodeUtils.cjs +91 -20
- package/dist/tailwind/dist/css/nodeUtils.js +90 -21
- package/dist/tailwind/dist/css/nodeUtils.js.map +1 -1
- package/dist/tailwind/dist/css/postcss.cjs +22 -1
- package/dist/tailwind/dist/css/postcss.helpers.cjs +12 -1
- package/dist/tailwind/dist/css/postcss.helpers.js +11 -1
- package/dist/tailwind/dist/css/postcss.helpers.js.map +1 -1
- package/dist/tailwind/dist/css/postcss.js +22 -2
- package/dist/tailwind/dist/css/postcss.js.map +1 -1
- package/dist/tailwind/dist/css/runner.cjs +171 -20
- package/dist/tailwind/dist/css/runner.helpers.cjs +58 -6
- package/dist/tailwind/dist/css/runner.helpers.js +54 -7
- package/dist/tailwind/dist/css/runner.helpers.js.map +1 -1
- package/dist/tailwind/dist/css/runner.js +172 -20
- package/dist/tailwind/dist/css/runner.js.map +1 -1
- package/dist/tailwind/dist/css/theme.d.cts +11 -0
- package/dist/tailwind/dist/css/theme.d.cts.map +1 -1
- package/dist/tailwind/dist/css/theme.d.ts +11 -0
- package/dist/tailwind/dist/css/theme.d.ts.map +1 -1
- package/dist/tailwind/dist/css/theme.js.map +1 -1
- package/dist/tailwind/dist/purger/optimized/ast/expressions.cjs +26 -3
- package/dist/tailwind/dist/purger/optimized/ast/expressions.js +26 -3
- package/dist/tailwind/dist/purger/optimized/ast/expressions.js.map +1 -1
- package/dist/uds/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/properties.d.cts +5 -0
- package/dist/uds/dist/automated-config/dist/types/ComponentConfig.d.cts +3 -0
- package/dist/uds/dist/automated-config/dist/types/ComponentStyles.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/types/ConfigSchema.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/utils/buildConfigSchema.d.cts +7 -0
- package/dist/uds/dist/automated-config/dist/utils/coalesceConfigVariant.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/utils/defaults.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/utils/getConfigVariantComponentStatesMatrix.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +3 -0
- package/dist/uds/dist/automated-config/dist/utils/getConfigVariantPseudoStates.d.cts +3 -0
- package/dist/uds/dist/automated-config/dist/utils/getConfigVariants.d.cts +2 -0
- package/dist/uds/dist/automated-config/dist/utils/index.d.cts +12 -0
- package/dist/uds/dist/automated-config/dist/utils/subcomponents.d.cts +2 -0
- package/dist/uds/dist/components/Box.d.cts +4 -0
- package/dist/uds/dist/components/Divider/Divider.d.cts +3 -0
- package/dist/uds/dist/components/Divider/DividerCore.d.cts +5 -0
- package/dist/uds/dist/components/Divider/DividerInternal.d.cts +5 -0
- package/dist/uds/dist/components/Divider/index.d.cts +2 -0
- package/dist/uds/dist/components/FormLabel.d.cts +4 -0
- package/dist/uds/dist/components/HStack.d.cts +5 -0
- package/dist/uds/dist/components/Icon.d.cts +4 -0
- package/dist/uds/dist/components/Image.d.cts +3 -0
- package/dist/uds/dist/components/Link.d.cts +4 -0
- package/dist/uds/dist/components/Scrim.d.cts +3 -0
- package/dist/uds/dist/components/Text.d.cts +4 -0
- package/dist/uds/dist/components/VStack.d.cts +5 -0
- package/dist/uds/dist/components/client/Avatar/Avatar.d.cts +2 -0
- package/dist/uds/dist/components/client/Avatar/AvatarIcon.d.cts +4 -0
- package/dist/uds/dist/components/client/Avatar/AvatarImage.d.cts +6 -0
- package/dist/uds/dist/components/client/Avatar/AvatarText.d.cts +4 -0
- package/dist/uds/dist/components/client/Avatar/index.d.cts +5 -0
- package/dist/uds/dist/components/client/Badge.d.cts +4 -0
- package/dist/uds/dist/components/client/BottomSheet/BottomSheet.d.cts +5 -0
- package/dist/uds/dist/components/client/BottomSheet/BottomSheetContent.d.cts +2 -0
- package/dist/uds/dist/components/client/BottomSheet/BottomSheetHeader.d.cts +2 -0
- package/dist/uds/dist/components/client/BottomSheet/BottomSheetProvider.d.cts +3 -0
- package/dist/uds/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.d.cts +3 -0
- package/dist/uds/dist/components/client/BottomSheet/index.d.cts +7 -0
- package/dist/uds/dist/components/client/BottomSheet/useBottomSheetStore.d.cts +2 -0
- package/dist/uds/dist/components/client/Button.d.cts +5 -0
- package/dist/uds/dist/components/client/Checkbox.d.cts +4 -0
- package/dist/uds/dist/components/client/Chip/Chip.d.cts +5 -0
- package/dist/uds/dist/components/client/Chip/ChipBase.d.cts +6 -0
- package/dist/uds/dist/components/client/Chip/ChipButton.d.cts +5 -0
- package/dist/uds/dist/components/client/Chip/ChipDismissible.d.cts +5 -0
- package/dist/uds/dist/components/client/Chip/ChipLink.d.cts +5 -0
- package/dist/uds/dist/components/client/Chip/ChipToggle.d.cts +5 -0
- package/dist/uds/dist/components/client/Chip/index.d.cts +6 -0
- package/dist/uds/dist/components/client/IconButton.d.cts +5 -0
- package/dist/uds/dist/components/client/Input/Input.d.cts +7 -0
- package/dist/uds/dist/components/client/Input/InputHelpText.d.cts +2 -0
- package/dist/uds/dist/components/client/Input/InputHelpTextInternal.d.cts +6 -0
- package/dist/uds/dist/components/client/Input/index.d.cts +3 -0
- package/dist/uds/dist/components/client/Menu/Menu.Content.d.cts +6 -0
- package/dist/uds/dist/components/client/Menu/Menu.Divider.d.cts +3 -0
- package/dist/uds/dist/components/client/Menu/Menu.Item.d.cts +6 -0
- package/dist/uds/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +6 -0
- package/dist/uds/dist/components/client/Menu/Menu.Provider.d.cts +3 -0
- package/dist/uds/dist/components/client/Menu/Menu.Trigger.d.cts +5 -0
- package/dist/uds/dist/components/client/Menu/Menu.d.cts +2 -0
- package/dist/uds/dist/components/client/Menu/Menu.index.d.cts +9 -0
- package/dist/uds/dist/components/client/Menu/index.d.cts +9 -0
- package/dist/uds/dist/components/client/Popover/Popover.d.cts +2 -0
- package/dist/uds/dist/components/client/Popover/PopoverContent.d.cts +5 -0
- package/dist/uds/dist/components/client/Popover/PopoverTrigger.d.cts +2 -0
- package/dist/uds/dist/components/client/Popover/UDSPopoverConfigProvider.d.cts +4 -0
- package/dist/uds/dist/components/client/Popover/index.d.cts +6 -0
- package/dist/uds/dist/components/client/Pressable.d.cts +4 -0
- package/dist/uds/dist/components/client/Radio/Radio.d.cts +4 -0
- package/dist/uds/dist/components/client/Radio/RadioGroupProvider.d.cts +4 -0
- package/dist/uds/dist/components/client/Radio/index.d.cts +3 -0
- package/dist/uds/dist/components/client/SpringMotionConfig.d.cts +5 -0
- package/dist/uds/dist/components/client/Switch.d.cts +4 -0
- package/dist/uds/dist/components/client/Toast/Toast.d.cts +8 -0
- package/dist/uds/dist/components/client/Toast/ToastContainer.d.cts +6 -0
- package/dist/uds/dist/components/client/Toast/ToastPortal.d.cts +3 -0
- package/dist/uds/dist/components/client/Toast/UDSToastConfigProvider.d.cts +5 -0
- package/dist/uds/dist/components/client/Toast/createToast.d.cts +6 -0
- package/dist/uds/dist/components/client/Toast/index.d.cts +6 -0
- package/dist/uds/dist/components/client/Tooltip/Tooltip.d.cts +2 -0
- package/dist/uds/dist/components/client/Tooltip/TooltipContent.d.cts +3 -0
- package/dist/uds/dist/components/client/Tooltip/TooltipTrigger.d.cts +2 -0
- package/dist/uds/dist/components/client/Tooltip/UDSTooltipConfigProvider.d.cts +5 -0
- package/dist/uds/dist/components/client/Tooltip/index.d.cts +6 -0
- package/dist/uds/dist/components/client/index.d.cts +59 -0
- package/dist/uds/dist/components/client/providers/UDSBreakpointsConfigProvider.d.cts +4 -0
- package/dist/uds/dist/components/client/providers/UDSConfigProvider.d.cts +3 -0
- package/dist/uds/dist/components/index.d.cts +61 -0
- package/dist/uds/dist/config/dist/index.d.cts +4 -0
- package/dist/uds/dist/css-tokens/dist/index.d.cts +2 -0
- package/dist/uds/dist/fixtures/dist/index.d.cts +2 -0
- package/dist/uds/dist/fonts/dist/index.d.cts +2 -0
- package/dist/uds/dist/index.d.cts +93 -0
- package/dist/uds/dist/modes/dist/index.d.cts +2 -0
- package/dist/uds/dist/runtime/bottomSheetConfig.d.cts +3 -0
- package/dist/uds/dist/runtime/breakpointsConfig.d.cts +4 -0
- package/dist/uds/dist/runtime/index.d.cts +7 -0
- package/dist/uds/dist/runtime/popoverConfig.d.cts +5 -0
- package/dist/uds/dist/runtime/toastConfig.d.cts +4 -0
- package/dist/uds/dist/runtime/tooltipConfig.d.cts +5 -0
- package/dist/uds/dist/runtime/udsConfig.d.cts +8 -0
- package/dist/uds/dist/styles/styler.d.cts +2 -0
- package/dist/uds/dist/styles/stylerTypes.d.cts +3 -0
- package/dist/uds/dist/tailwind/dist/config/dist/index.d.cts +2 -0
- package/dist/uds/dist/tailwind/dist/index.d.cts +3 -0
- package/dist/uds/dist/tailwind/dist/tailwind/components/getResponsiveTextStyles.d.cts +2 -0
- package/dist/uds/dist/tailwind/dist/utils/parseTokens.d.cts +2 -0
- package/dist/uds/dist/tokens/automation/index.d.cts +10 -0
- package/dist/uds/dist/tokens/configs/shadow.d.cts +3 -0
- package/dist/uds/dist/tokens/consts/cssTokens.d.cts +2 -0
- package/dist/uds/dist/tokens/consts/defaultModes.d.cts +2 -0
- package/dist/uds/dist/tokens/consts/fontDeclarationsMap.d.cts +2 -0
- package/dist/uds/dist/tokens/index.d.cts +28 -0
- package/dist/uds/dist/tokens/parseButtonVariants.d.cts +3 -0
- package/dist/uds/dist/tokens/types.d.cts +9 -0
- package/dist/uds/dist/tokens/utils/getFontUrls.d.cts +4 -0
- package/dist/uds/dist/tokens/utils/spectrum.d.cts +3 -0
- package/dist/uds/dist/types/dist/index.d.cts +11 -0
- package/dist/uds/dist/types.d.cts +2 -0
- package/dist/uds/generated/componentData.cjs +131 -131
- package/dist/uds/generated/componentData.js +131 -131
- package/generated/componentData.json +183 -183
- package/package.json +1 -1
|
@@ -993,134 +993,6 @@ var UDSBottomSheetConfigProvider = {
|
|
|
993
993
|
"runtimeConfigInternalComponentProps": {},
|
|
994
994
|
"motionVarPrefixes": []
|
|
995
995
|
};
|
|
996
|
-
var Chip = {
|
|
997
|
-
"name": "Chip",
|
|
998
|
-
"defaultProps": {},
|
|
999
|
-
"getStylesLiterals": {},
|
|
1000
|
-
"cxLiterals": [],
|
|
1001
|
-
"internalComponents": [
|
|
1002
|
-
"ChipDismissible",
|
|
1003
|
-
"ChipToggle",
|
|
1004
|
-
"ChipLink",
|
|
1005
|
-
"ChipButton"
|
|
1006
|
-
],
|
|
1007
|
-
"internalComponentProps": {},
|
|
1008
|
-
"propToVariantKeys": {},
|
|
1009
|
-
"runtimeConfigDefaultProps": {},
|
|
1010
|
-
"runtimeConfigGetStyles": {},
|
|
1011
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1012
|
-
"motionVarPrefixes": []
|
|
1013
|
-
};
|
|
1014
|
-
var ChipBase = {
|
|
1015
|
-
"name": "ChipBase",
|
|
1016
|
-
"defaultProps": {
|
|
1017
|
-
"size": "md",
|
|
1018
|
-
"as": "div"
|
|
1019
|
-
},
|
|
1020
|
-
"getStylesLiterals": {},
|
|
1021
|
-
"cxLiterals": [
|
|
1022
|
-
"pointer-events-none",
|
|
1023
|
-
"cursor-default",
|
|
1024
|
-
"opacity-50",
|
|
1025
|
-
"inline-flex",
|
|
1026
|
-
"items-center",
|
|
1027
|
-
"transition-[background-color,outline-color,box-shadow]",
|
|
1028
|
-
"truncate",
|
|
1029
|
-
"whitespace-nowrap",
|
|
1030
|
-
"text-center",
|
|
1031
|
-
"flex-1"
|
|
1032
|
-
],
|
|
1033
|
-
"internalComponents": [
|
|
1034
|
-
"IconSlot",
|
|
1035
|
-
"HStack",
|
|
1036
|
-
"As",
|
|
1037
|
-
"Text"
|
|
1038
|
-
],
|
|
1039
|
-
"internalComponentProps": { "Text": {
|
|
1040
|
-
"as": ["span"],
|
|
1041
|
-
"color": ["current"],
|
|
1042
|
-
"variant": ["inherit"]
|
|
1043
|
-
} },
|
|
1044
|
-
"propToVariantKeys": {
|
|
1045
|
-
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
1046
|
-
"startIcon": ["icon"],
|
|
1047
|
-
"endIcon": ["icon"]
|
|
1048
|
-
},
|
|
1049
|
-
"runtimeConfigDefaultProps": {},
|
|
1050
|
-
"runtimeConfigGetStyles": {},
|
|
1051
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1052
|
-
"motionVarPrefixes": []
|
|
1053
|
-
};
|
|
1054
|
-
var ChipButton = {
|
|
1055
|
-
"name": "ChipButton",
|
|
1056
|
-
"defaultProps": { "variant": "primary" },
|
|
1057
|
-
"getStylesLiterals": {},
|
|
1058
|
-
"cxLiterals": ["uds-ring"],
|
|
1059
|
-
"internalComponents": ["ChipBase"],
|
|
1060
|
-
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1061
|
-
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1062
|
-
"runtimeConfigDefaultProps": {},
|
|
1063
|
-
"runtimeConfigGetStyles": {},
|
|
1064
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1065
|
-
"motionVarPrefixes": []
|
|
1066
|
-
};
|
|
1067
|
-
var ChipDismissible = {
|
|
1068
|
-
"name": "ChipDismissible",
|
|
1069
|
-
"defaultProps": { "variant": "primary" },
|
|
1070
|
-
"getStylesLiterals": {},
|
|
1071
|
-
"cxLiterals": [
|
|
1072
|
-
"uds-chip-dismissible-button",
|
|
1073
|
-
"uds-hit-target",
|
|
1074
|
-
"uds-ring",
|
|
1075
|
-
"rounded-full"
|
|
1076
|
-
],
|
|
1077
|
-
"internalComponents": [
|
|
1078
|
-
"ChipBase",
|
|
1079
|
-
"IconSlot",
|
|
1080
|
-
"Pressable"
|
|
1081
|
-
],
|
|
1082
|
-
"internalComponentProps": {},
|
|
1083
|
-
"propToVariantKeys": {
|
|
1084
|
-
"variant": ["chipDismissibleVariantRoot", "chipDismissibleVariantIcon"],
|
|
1085
|
-
"dismissButtonAriaLabel": ["aria-label"]
|
|
1086
|
-
},
|
|
1087
|
-
"runtimeConfigDefaultProps": {},
|
|
1088
|
-
"runtimeConfigGetStyles": {},
|
|
1089
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1090
|
-
"motionVarPrefixes": []
|
|
1091
|
-
};
|
|
1092
|
-
var ChipLink = {
|
|
1093
|
-
"name": "ChipLink",
|
|
1094
|
-
"defaultProps": { "variant": "primary" },
|
|
1095
|
-
"getStylesLiterals": {},
|
|
1096
|
-
"cxLiterals": ["uds-ring"],
|
|
1097
|
-
"internalComponents": ["ChipBase"],
|
|
1098
|
-
"internalComponentProps": { "ChipBase": { "as": ["a"] } },
|
|
1099
|
-
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1100
|
-
"runtimeConfigDefaultProps": {},
|
|
1101
|
-
"runtimeConfigGetStyles": {},
|
|
1102
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1103
|
-
"motionVarPrefixes": []
|
|
1104
|
-
};
|
|
1105
|
-
var ChipToggle = {
|
|
1106
|
-
"name": "ChipToggle",
|
|
1107
|
-
"defaultProps": {
|
|
1108
|
-
"variant": "primary",
|
|
1109
|
-
"role": "checkbox"
|
|
1110
|
-
},
|
|
1111
|
-
"getStylesLiterals": {
|
|
1112
|
-
"chipToggleVariantActiveRoot": "on",
|
|
1113
|
-
"chipToggleVariantActiveRoot:1": "off"
|
|
1114
|
-
},
|
|
1115
|
-
"cxLiterals": ["uds-ring"],
|
|
1116
|
-
"internalComponents": ["ChipBase"],
|
|
1117
|
-
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1118
|
-
"propToVariantKeys": { "variant": ["chipToggleVariantRoot", "chipToggleVariantIcon"] },
|
|
1119
|
-
"runtimeConfigDefaultProps": {},
|
|
1120
|
-
"runtimeConfigGetStyles": {},
|
|
1121
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1122
|
-
"motionVarPrefixes": []
|
|
1123
|
-
};
|
|
1124
996
|
var Input = {
|
|
1125
997
|
"name": "Input",
|
|
1126
998
|
"defaultProps": {
|
|
@@ -1250,6 +1122,134 @@ var InputHelpTextInternal = {
|
|
|
1250
1122
|
"runtimeConfigInternalComponentProps": {},
|
|
1251
1123
|
"motionVarPrefixes": []
|
|
1252
1124
|
};
|
|
1125
|
+
var Chip = {
|
|
1126
|
+
"name": "Chip",
|
|
1127
|
+
"defaultProps": {},
|
|
1128
|
+
"getStylesLiterals": {},
|
|
1129
|
+
"cxLiterals": [],
|
|
1130
|
+
"internalComponents": [
|
|
1131
|
+
"ChipDismissible",
|
|
1132
|
+
"ChipToggle",
|
|
1133
|
+
"ChipLink",
|
|
1134
|
+
"ChipButton"
|
|
1135
|
+
],
|
|
1136
|
+
"internalComponentProps": {},
|
|
1137
|
+
"propToVariantKeys": {},
|
|
1138
|
+
"runtimeConfigDefaultProps": {},
|
|
1139
|
+
"runtimeConfigGetStyles": {},
|
|
1140
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1141
|
+
"motionVarPrefixes": []
|
|
1142
|
+
};
|
|
1143
|
+
var ChipBase = {
|
|
1144
|
+
"name": "ChipBase",
|
|
1145
|
+
"defaultProps": {
|
|
1146
|
+
"size": "md",
|
|
1147
|
+
"as": "div"
|
|
1148
|
+
},
|
|
1149
|
+
"getStylesLiterals": {},
|
|
1150
|
+
"cxLiterals": [
|
|
1151
|
+
"pointer-events-none",
|
|
1152
|
+
"cursor-default",
|
|
1153
|
+
"opacity-50",
|
|
1154
|
+
"inline-flex",
|
|
1155
|
+
"items-center",
|
|
1156
|
+
"transition-[background-color,outline-color,box-shadow]",
|
|
1157
|
+
"truncate",
|
|
1158
|
+
"whitespace-nowrap",
|
|
1159
|
+
"text-center",
|
|
1160
|
+
"flex-1"
|
|
1161
|
+
],
|
|
1162
|
+
"internalComponents": [
|
|
1163
|
+
"IconSlot",
|
|
1164
|
+
"HStack",
|
|
1165
|
+
"As",
|
|
1166
|
+
"Text"
|
|
1167
|
+
],
|
|
1168
|
+
"internalComponentProps": { "Text": {
|
|
1169
|
+
"as": ["span"],
|
|
1170
|
+
"color": ["current"],
|
|
1171
|
+
"variant": ["inherit"]
|
|
1172
|
+
} },
|
|
1173
|
+
"propToVariantKeys": {
|
|
1174
|
+
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
1175
|
+
"startIcon": ["icon"],
|
|
1176
|
+
"endIcon": ["icon"]
|
|
1177
|
+
},
|
|
1178
|
+
"runtimeConfigDefaultProps": {},
|
|
1179
|
+
"runtimeConfigGetStyles": {},
|
|
1180
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1181
|
+
"motionVarPrefixes": []
|
|
1182
|
+
};
|
|
1183
|
+
var ChipButton = {
|
|
1184
|
+
"name": "ChipButton",
|
|
1185
|
+
"defaultProps": { "variant": "primary" },
|
|
1186
|
+
"getStylesLiterals": {},
|
|
1187
|
+
"cxLiterals": ["uds-ring"],
|
|
1188
|
+
"internalComponents": ["ChipBase"],
|
|
1189
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1190
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1191
|
+
"runtimeConfigDefaultProps": {},
|
|
1192
|
+
"runtimeConfigGetStyles": {},
|
|
1193
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1194
|
+
"motionVarPrefixes": []
|
|
1195
|
+
};
|
|
1196
|
+
var ChipDismissible = {
|
|
1197
|
+
"name": "ChipDismissible",
|
|
1198
|
+
"defaultProps": { "variant": "primary" },
|
|
1199
|
+
"getStylesLiterals": {},
|
|
1200
|
+
"cxLiterals": [
|
|
1201
|
+
"uds-chip-dismissible-button",
|
|
1202
|
+
"uds-hit-target",
|
|
1203
|
+
"uds-ring",
|
|
1204
|
+
"rounded-full"
|
|
1205
|
+
],
|
|
1206
|
+
"internalComponents": [
|
|
1207
|
+
"ChipBase",
|
|
1208
|
+
"IconSlot",
|
|
1209
|
+
"Pressable"
|
|
1210
|
+
],
|
|
1211
|
+
"internalComponentProps": {},
|
|
1212
|
+
"propToVariantKeys": {
|
|
1213
|
+
"variant": ["chipDismissibleVariantRoot", "chipDismissibleVariantIcon"],
|
|
1214
|
+
"dismissButtonAriaLabel": ["aria-label"]
|
|
1215
|
+
},
|
|
1216
|
+
"runtimeConfigDefaultProps": {},
|
|
1217
|
+
"runtimeConfigGetStyles": {},
|
|
1218
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1219
|
+
"motionVarPrefixes": []
|
|
1220
|
+
};
|
|
1221
|
+
var ChipLink = {
|
|
1222
|
+
"name": "ChipLink",
|
|
1223
|
+
"defaultProps": { "variant": "primary" },
|
|
1224
|
+
"getStylesLiterals": {},
|
|
1225
|
+
"cxLiterals": ["uds-ring"],
|
|
1226
|
+
"internalComponents": ["ChipBase"],
|
|
1227
|
+
"internalComponentProps": { "ChipBase": { "as": ["a"] } },
|
|
1228
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1229
|
+
"runtimeConfigDefaultProps": {},
|
|
1230
|
+
"runtimeConfigGetStyles": {},
|
|
1231
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1232
|
+
"motionVarPrefixes": []
|
|
1233
|
+
};
|
|
1234
|
+
var ChipToggle = {
|
|
1235
|
+
"name": "ChipToggle",
|
|
1236
|
+
"defaultProps": {
|
|
1237
|
+
"variant": "primary",
|
|
1238
|
+
"role": "checkbox"
|
|
1239
|
+
},
|
|
1240
|
+
"getStylesLiterals": {
|
|
1241
|
+
"chipToggleVariantActiveRoot": "on",
|
|
1242
|
+
"chipToggleVariantActiveRoot:1": "off"
|
|
1243
|
+
},
|
|
1244
|
+
"cxLiterals": ["uds-ring"],
|
|
1245
|
+
"internalComponents": ["ChipBase"],
|
|
1246
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1247
|
+
"propToVariantKeys": { "variant": ["chipToggleVariantRoot", "chipToggleVariantIcon"] },
|
|
1248
|
+
"runtimeConfigDefaultProps": {},
|
|
1249
|
+
"runtimeConfigGetStyles": {},
|
|
1250
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1251
|
+
"motionVarPrefixes": []
|
|
1252
|
+
};
|
|
1253
1253
|
var Menu_Content = {
|
|
1254
1254
|
"name": "Menu.Content",
|
|
1255
1255
|
"defaultProps": {
|
|
@@ -2321,15 +2321,15 @@ var componentData_default = {
|
|
|
2321
2321
|
BottomSheetProvider,
|
|
2322
2322
|
BottomSheetTrigger,
|
|
2323
2323
|
UDSBottomSheetConfigProvider,
|
|
2324
|
+
Input,
|
|
2325
|
+
InputHelpText,
|
|
2326
|
+
InputHelpTextInternal,
|
|
2324
2327
|
Chip,
|
|
2325
2328
|
ChipBase,
|
|
2326
2329
|
ChipButton,
|
|
2327
2330
|
ChipDismissible,
|
|
2328
2331
|
ChipLink,
|
|
2329
2332
|
ChipToggle,
|
|
2330
|
-
Input,
|
|
2331
|
-
InputHelpText,
|
|
2332
|
-
InputHelpTextInternal,
|
|
2333
2333
|
"Menu.Content": Menu_Content,
|
|
2334
2334
|
"Menu.Divider": Menu_Divider,
|
|
2335
2335
|
"Menu.Item": Menu_Item,
|
|
@@ -992,134 +992,6 @@ var UDSBottomSheetConfigProvider = {
|
|
|
992
992
|
"runtimeConfigInternalComponentProps": {},
|
|
993
993
|
"motionVarPrefixes": []
|
|
994
994
|
};
|
|
995
|
-
var Chip = {
|
|
996
|
-
"name": "Chip",
|
|
997
|
-
"defaultProps": {},
|
|
998
|
-
"getStylesLiterals": {},
|
|
999
|
-
"cxLiterals": [],
|
|
1000
|
-
"internalComponents": [
|
|
1001
|
-
"ChipDismissible",
|
|
1002
|
-
"ChipToggle",
|
|
1003
|
-
"ChipLink",
|
|
1004
|
-
"ChipButton"
|
|
1005
|
-
],
|
|
1006
|
-
"internalComponentProps": {},
|
|
1007
|
-
"propToVariantKeys": {},
|
|
1008
|
-
"runtimeConfigDefaultProps": {},
|
|
1009
|
-
"runtimeConfigGetStyles": {},
|
|
1010
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1011
|
-
"motionVarPrefixes": []
|
|
1012
|
-
};
|
|
1013
|
-
var ChipBase = {
|
|
1014
|
-
"name": "ChipBase",
|
|
1015
|
-
"defaultProps": {
|
|
1016
|
-
"size": "md",
|
|
1017
|
-
"as": "div"
|
|
1018
|
-
},
|
|
1019
|
-
"getStylesLiterals": {},
|
|
1020
|
-
"cxLiterals": [
|
|
1021
|
-
"pointer-events-none",
|
|
1022
|
-
"cursor-default",
|
|
1023
|
-
"opacity-50",
|
|
1024
|
-
"inline-flex",
|
|
1025
|
-
"items-center",
|
|
1026
|
-
"transition-[background-color,outline-color,box-shadow]",
|
|
1027
|
-
"truncate",
|
|
1028
|
-
"whitespace-nowrap",
|
|
1029
|
-
"text-center",
|
|
1030
|
-
"flex-1"
|
|
1031
|
-
],
|
|
1032
|
-
"internalComponents": [
|
|
1033
|
-
"IconSlot",
|
|
1034
|
-
"HStack",
|
|
1035
|
-
"As",
|
|
1036
|
-
"Text"
|
|
1037
|
-
],
|
|
1038
|
-
"internalComponentProps": { "Text": {
|
|
1039
|
-
"as": ["span"],
|
|
1040
|
-
"color": ["current"],
|
|
1041
|
-
"variant": ["inherit"]
|
|
1042
|
-
} },
|
|
1043
|
-
"propToVariantKeys": {
|
|
1044
|
-
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
1045
|
-
"startIcon": ["icon"],
|
|
1046
|
-
"endIcon": ["icon"]
|
|
1047
|
-
},
|
|
1048
|
-
"runtimeConfigDefaultProps": {},
|
|
1049
|
-
"runtimeConfigGetStyles": {},
|
|
1050
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1051
|
-
"motionVarPrefixes": []
|
|
1052
|
-
};
|
|
1053
|
-
var ChipButton = {
|
|
1054
|
-
"name": "ChipButton",
|
|
1055
|
-
"defaultProps": { "variant": "primary" },
|
|
1056
|
-
"getStylesLiterals": {},
|
|
1057
|
-
"cxLiterals": ["uds-ring"],
|
|
1058
|
-
"internalComponents": ["ChipBase"],
|
|
1059
|
-
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1060
|
-
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1061
|
-
"runtimeConfigDefaultProps": {},
|
|
1062
|
-
"runtimeConfigGetStyles": {},
|
|
1063
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1064
|
-
"motionVarPrefixes": []
|
|
1065
|
-
};
|
|
1066
|
-
var ChipDismissible = {
|
|
1067
|
-
"name": "ChipDismissible",
|
|
1068
|
-
"defaultProps": { "variant": "primary" },
|
|
1069
|
-
"getStylesLiterals": {},
|
|
1070
|
-
"cxLiterals": [
|
|
1071
|
-
"uds-chip-dismissible-button",
|
|
1072
|
-
"uds-hit-target",
|
|
1073
|
-
"uds-ring",
|
|
1074
|
-
"rounded-full"
|
|
1075
|
-
],
|
|
1076
|
-
"internalComponents": [
|
|
1077
|
-
"ChipBase",
|
|
1078
|
-
"IconSlot",
|
|
1079
|
-
"Pressable"
|
|
1080
|
-
],
|
|
1081
|
-
"internalComponentProps": {},
|
|
1082
|
-
"propToVariantKeys": {
|
|
1083
|
-
"variant": ["chipDismissibleVariantRoot", "chipDismissibleVariantIcon"],
|
|
1084
|
-
"dismissButtonAriaLabel": ["aria-label"]
|
|
1085
|
-
},
|
|
1086
|
-
"runtimeConfigDefaultProps": {},
|
|
1087
|
-
"runtimeConfigGetStyles": {},
|
|
1088
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1089
|
-
"motionVarPrefixes": []
|
|
1090
|
-
};
|
|
1091
|
-
var ChipLink = {
|
|
1092
|
-
"name": "ChipLink",
|
|
1093
|
-
"defaultProps": { "variant": "primary" },
|
|
1094
|
-
"getStylesLiterals": {},
|
|
1095
|
-
"cxLiterals": ["uds-ring"],
|
|
1096
|
-
"internalComponents": ["ChipBase"],
|
|
1097
|
-
"internalComponentProps": { "ChipBase": { "as": ["a"] } },
|
|
1098
|
-
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1099
|
-
"runtimeConfigDefaultProps": {},
|
|
1100
|
-
"runtimeConfigGetStyles": {},
|
|
1101
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1102
|
-
"motionVarPrefixes": []
|
|
1103
|
-
};
|
|
1104
|
-
var ChipToggle = {
|
|
1105
|
-
"name": "ChipToggle",
|
|
1106
|
-
"defaultProps": {
|
|
1107
|
-
"variant": "primary",
|
|
1108
|
-
"role": "checkbox"
|
|
1109
|
-
},
|
|
1110
|
-
"getStylesLiterals": {
|
|
1111
|
-
"chipToggleVariantActiveRoot": "on",
|
|
1112
|
-
"chipToggleVariantActiveRoot:1": "off"
|
|
1113
|
-
},
|
|
1114
|
-
"cxLiterals": ["uds-ring"],
|
|
1115
|
-
"internalComponents": ["ChipBase"],
|
|
1116
|
-
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1117
|
-
"propToVariantKeys": { "variant": ["chipToggleVariantRoot", "chipToggleVariantIcon"] },
|
|
1118
|
-
"runtimeConfigDefaultProps": {},
|
|
1119
|
-
"runtimeConfigGetStyles": {},
|
|
1120
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1121
|
-
"motionVarPrefixes": []
|
|
1122
|
-
};
|
|
1123
995
|
var Input = {
|
|
1124
996
|
"name": "Input",
|
|
1125
997
|
"defaultProps": {
|
|
@@ -1249,6 +1121,134 @@ var InputHelpTextInternal = {
|
|
|
1249
1121
|
"runtimeConfigInternalComponentProps": {},
|
|
1250
1122
|
"motionVarPrefixes": []
|
|
1251
1123
|
};
|
|
1124
|
+
var Chip = {
|
|
1125
|
+
"name": "Chip",
|
|
1126
|
+
"defaultProps": {},
|
|
1127
|
+
"getStylesLiterals": {},
|
|
1128
|
+
"cxLiterals": [],
|
|
1129
|
+
"internalComponents": [
|
|
1130
|
+
"ChipDismissible",
|
|
1131
|
+
"ChipToggle",
|
|
1132
|
+
"ChipLink",
|
|
1133
|
+
"ChipButton"
|
|
1134
|
+
],
|
|
1135
|
+
"internalComponentProps": {},
|
|
1136
|
+
"propToVariantKeys": {},
|
|
1137
|
+
"runtimeConfigDefaultProps": {},
|
|
1138
|
+
"runtimeConfigGetStyles": {},
|
|
1139
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1140
|
+
"motionVarPrefixes": []
|
|
1141
|
+
};
|
|
1142
|
+
var ChipBase = {
|
|
1143
|
+
"name": "ChipBase",
|
|
1144
|
+
"defaultProps": {
|
|
1145
|
+
"size": "md",
|
|
1146
|
+
"as": "div"
|
|
1147
|
+
},
|
|
1148
|
+
"getStylesLiterals": {},
|
|
1149
|
+
"cxLiterals": [
|
|
1150
|
+
"pointer-events-none",
|
|
1151
|
+
"cursor-default",
|
|
1152
|
+
"opacity-50",
|
|
1153
|
+
"inline-flex",
|
|
1154
|
+
"items-center",
|
|
1155
|
+
"transition-[background-color,outline-color,box-shadow]",
|
|
1156
|
+
"truncate",
|
|
1157
|
+
"whitespace-nowrap",
|
|
1158
|
+
"text-center",
|
|
1159
|
+
"flex-1"
|
|
1160
|
+
],
|
|
1161
|
+
"internalComponents": [
|
|
1162
|
+
"IconSlot",
|
|
1163
|
+
"HStack",
|
|
1164
|
+
"As",
|
|
1165
|
+
"Text"
|
|
1166
|
+
],
|
|
1167
|
+
"internalComponentProps": { "Text": {
|
|
1168
|
+
"as": ["span"],
|
|
1169
|
+
"color": ["current"],
|
|
1170
|
+
"variant": ["inherit"]
|
|
1171
|
+
} },
|
|
1172
|
+
"propToVariantKeys": {
|
|
1173
|
+
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
1174
|
+
"startIcon": ["icon"],
|
|
1175
|
+
"endIcon": ["icon"]
|
|
1176
|
+
},
|
|
1177
|
+
"runtimeConfigDefaultProps": {},
|
|
1178
|
+
"runtimeConfigGetStyles": {},
|
|
1179
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1180
|
+
"motionVarPrefixes": []
|
|
1181
|
+
};
|
|
1182
|
+
var ChipButton = {
|
|
1183
|
+
"name": "ChipButton",
|
|
1184
|
+
"defaultProps": { "variant": "primary" },
|
|
1185
|
+
"getStylesLiterals": {},
|
|
1186
|
+
"cxLiterals": ["uds-ring"],
|
|
1187
|
+
"internalComponents": ["ChipBase"],
|
|
1188
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1189
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1190
|
+
"runtimeConfigDefaultProps": {},
|
|
1191
|
+
"runtimeConfigGetStyles": {},
|
|
1192
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1193
|
+
"motionVarPrefixes": []
|
|
1194
|
+
};
|
|
1195
|
+
var ChipDismissible = {
|
|
1196
|
+
"name": "ChipDismissible",
|
|
1197
|
+
"defaultProps": { "variant": "primary" },
|
|
1198
|
+
"getStylesLiterals": {},
|
|
1199
|
+
"cxLiterals": [
|
|
1200
|
+
"uds-chip-dismissible-button",
|
|
1201
|
+
"uds-hit-target",
|
|
1202
|
+
"uds-ring",
|
|
1203
|
+
"rounded-full"
|
|
1204
|
+
],
|
|
1205
|
+
"internalComponents": [
|
|
1206
|
+
"ChipBase",
|
|
1207
|
+
"IconSlot",
|
|
1208
|
+
"Pressable"
|
|
1209
|
+
],
|
|
1210
|
+
"internalComponentProps": {},
|
|
1211
|
+
"propToVariantKeys": {
|
|
1212
|
+
"variant": ["chipDismissibleVariantRoot", "chipDismissibleVariantIcon"],
|
|
1213
|
+
"dismissButtonAriaLabel": ["aria-label"]
|
|
1214
|
+
},
|
|
1215
|
+
"runtimeConfigDefaultProps": {},
|
|
1216
|
+
"runtimeConfigGetStyles": {},
|
|
1217
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1218
|
+
"motionVarPrefixes": []
|
|
1219
|
+
};
|
|
1220
|
+
var ChipLink = {
|
|
1221
|
+
"name": "ChipLink",
|
|
1222
|
+
"defaultProps": { "variant": "primary" },
|
|
1223
|
+
"getStylesLiterals": {},
|
|
1224
|
+
"cxLiterals": ["uds-ring"],
|
|
1225
|
+
"internalComponents": ["ChipBase"],
|
|
1226
|
+
"internalComponentProps": { "ChipBase": { "as": ["a"] } },
|
|
1227
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1228
|
+
"runtimeConfigDefaultProps": {},
|
|
1229
|
+
"runtimeConfigGetStyles": {},
|
|
1230
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1231
|
+
"motionVarPrefixes": []
|
|
1232
|
+
};
|
|
1233
|
+
var ChipToggle = {
|
|
1234
|
+
"name": "ChipToggle",
|
|
1235
|
+
"defaultProps": {
|
|
1236
|
+
"variant": "primary",
|
|
1237
|
+
"role": "checkbox"
|
|
1238
|
+
},
|
|
1239
|
+
"getStylesLiterals": {
|
|
1240
|
+
"chipToggleVariantActiveRoot": "on",
|
|
1241
|
+
"chipToggleVariantActiveRoot:1": "off"
|
|
1242
|
+
},
|
|
1243
|
+
"cxLiterals": ["uds-ring"],
|
|
1244
|
+
"internalComponents": ["ChipBase"],
|
|
1245
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1246
|
+
"propToVariantKeys": { "variant": ["chipToggleVariantRoot", "chipToggleVariantIcon"] },
|
|
1247
|
+
"runtimeConfigDefaultProps": {},
|
|
1248
|
+
"runtimeConfigGetStyles": {},
|
|
1249
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1250
|
+
"motionVarPrefixes": []
|
|
1251
|
+
};
|
|
1252
1252
|
var Menu_Content = {
|
|
1253
1253
|
"name": "Menu.Content",
|
|
1254
1254
|
"defaultProps": {
|
|
@@ -2320,15 +2320,15 @@ var componentData_default = {
|
|
|
2320
2320
|
BottomSheetProvider,
|
|
2321
2321
|
BottomSheetTrigger,
|
|
2322
2322
|
UDSBottomSheetConfigProvider,
|
|
2323
|
+
Input,
|
|
2324
|
+
InputHelpText,
|
|
2325
|
+
InputHelpTextInternal,
|
|
2323
2326
|
Chip,
|
|
2324
2327
|
ChipBase,
|
|
2325
2328
|
ChipButton,
|
|
2326
2329
|
ChipDismissible,
|
|
2327
2330
|
ChipLink,
|
|
2328
2331
|
ChipToggle,
|
|
2329
|
-
Input,
|
|
2330
|
-
InputHelpText,
|
|
2331
|
-
InputHelpTextInternal,
|
|
2332
2332
|
"Menu.Content": Menu_Content,
|
|
2333
2333
|
"Menu.Divider": Menu_Divider,
|
|
2334
2334
|
"Menu.Item": Menu_Item,
|