@yahoo/uds 3.157.0 → 3.158.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/automated-config/dist/generated/autoVariants.cjs +26 -0
- package/dist/automated-config/dist/generated/autoVariants.d.cts +17 -0
- package/dist/automated-config/dist/generated/autoVariants.d.ts +17 -0
- package/dist/automated-config/dist/generated/autoVariants.js +26 -0
- package/dist/automated-config/dist/generated/generatedConfigs.cjs +3287 -596
- package/dist/automated-config/dist/generated/generatedConfigs.d.cts +350 -12
- package/dist/automated-config/dist/generated/generatedConfigs.d.ts +350 -12
- package/dist/automated-config/dist/generated/generatedConfigs.js +3285 -597
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +276 -45
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +8 -2
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.ts +8 -2
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +276 -45
- package/dist/automated-config/dist/properties.cjs +8 -1
- package/dist/automated-config/dist/properties.d.cts +8 -0
- package/dist/automated-config/dist/properties.d.ts +8 -0
- package/dist/automated-config/dist/properties.js +8 -1
- package/dist/automated-config/dist/types/ComponentConfig.d.cts +3 -1
- package/dist/automated-config/dist/types/ComponentConfig.d.ts +3 -1
- package/dist/automated-config/dist/utils/buildConfigSchema.cjs +48 -33
- package/dist/automated-config/dist/utils/buildConfigSchema.d.cts +14 -4
- package/dist/automated-config/dist/utils/buildConfigSchema.d.ts +14 -4
- package/dist/automated-config/dist/utils/buildConfigSchema.js +49 -34
- package/dist/automated-config/dist/utils/componentStatePseudoStates.cjs +4 -0
- package/dist/automated-config/dist/utils/componentStatePseudoStates.js +4 -1
- package/dist/automated-config/dist/utils/getButtonControlHeight.cjs +129 -0
- package/dist/automated-config/dist/utils/getButtonControlHeight.d.cts +133 -0
- package/dist/automated-config/dist/utils/getButtonControlHeight.d.ts +133 -0
- package/dist/automated-config/dist/utils/getButtonControlHeight.js +122 -0
- package/dist/automated-config/dist/utils/getButtonControlHeightPx.cjs +114 -0
- package/dist/automated-config/dist/utils/getButtonControlHeightPx.d.cts +78 -0
- package/dist/automated-config/dist/utils/getButtonControlHeightPx.d.ts +78 -0
- package/dist/automated-config/dist/utils/getButtonControlHeightPx.js +108 -0
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +2 -2
- package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +2 -2
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.cjs +5 -2
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.js +6 -3
- package/dist/automated-config/dist/utils/iconButtonMatchButtonHeight.cjs +110 -0
- package/dist/automated-config/dist/utils/iconButtonMatchButtonHeight.d.cts +19 -0
- package/dist/automated-config/dist/utils/iconButtonMatchButtonHeight.d.ts +19 -0
- package/dist/automated-config/dist/utils/iconButtonMatchButtonHeight.js +108 -0
- package/dist/automated-config/dist/utils/index.cjs +106 -33
- package/dist/automated-config/dist/utils/index.d.cts +16 -4
- package/dist/automated-config/dist/utils/index.d.ts +16 -4
- package/dist/automated-config/dist/utils/index.js +107 -34
- package/dist/automated-config/dist/utils/isConfiguratorPropertyVisible.cjs +15 -0
- package/dist/automated-config/dist/utils/isConfiguratorPropertyVisible.d.cts +20 -0
- package/dist/automated-config/dist/utils/isConfiguratorPropertyVisible.d.ts +20 -0
- package/dist/automated-config/dist/utils/isConfiguratorPropertyVisible.js +15 -0
- package/dist/automated-config/dist/utils/pseudoStateSelectors.cjs +6 -3
- package/dist/automated-config/dist/utils/pseudoStateSelectors.d.cts +1 -1
- package/dist/automated-config/dist/utils/pseudoStateSelectors.d.ts +1 -1
- package/dist/automated-config/dist/utils/pseudoStateSelectors.js +6 -3
- package/dist/components/client/Button.cjs +3 -3
- package/dist/components/client/Button.js +3 -3
- package/dist/components/client/Input/Input.cjs +1 -1
- package/dist/components/client/Input/Input.js +1 -1
- package/dist/components/client/Menu/Menu.Item.cjs +1 -0
- package/dist/components/client/Menu/Menu.Item.js +1 -0
- package/dist/components/client/Select/Select.cjs +179 -0
- package/dist/components/client/Select/Select.d.cts +55 -0
- package/dist/components/client/Select/Select.d.ts +56 -0
- package/dist/components/client/Select/Select.js +176 -0
- package/dist/components/client/Select/SelectContent.cjs +75 -0
- package/dist/components/client/Select/SelectContent.d.cts +44 -0
- package/dist/components/client/Select/SelectContent.d.ts +45 -0
- package/dist/components/client/Select/SelectContent.js +73 -0
- package/dist/components/client/Select/SelectDivider.cjs +63 -0
- package/dist/components/client/Select/SelectDivider.d.cts +44 -0
- package/dist/components/client/Select/SelectDivider.d.ts +45 -0
- package/dist/components/client/Select/SelectDivider.js +61 -0
- package/dist/components/client/Select/SelectHelpText.cjs +51 -0
- package/dist/components/client/Select/SelectHelpText.d.cts +27 -0
- package/dist/components/client/Select/SelectHelpText.d.ts +28 -0
- package/dist/components/client/Select/SelectHelpText.js +48 -0
- package/dist/components/client/Select/SelectItem.cjs +172 -0
- package/dist/components/client/Select/SelectItem.d.cts +29 -0
- package/dist/components/client/Select/SelectItem.d.ts +30 -0
- package/dist/components/client/Select/SelectItem.js +170 -0
- package/dist/components/client/Select/SelectTrigger.cjs +138 -0
- package/dist/components/client/Select/SelectTrigger.d.cts +27 -0
- package/dist/components/client/Select/SelectTrigger.d.ts +28 -0
- package/dist/components/client/Select/SelectTrigger.js +136 -0
- package/dist/components/client/Select/SelectValue.cjs +28 -0
- package/dist/components/client/Select/SelectValue.d.cts +19 -0
- package/dist/components/client/Select/SelectValue.d.ts +20 -0
- package/dist/components/client/Select/SelectValue.js +26 -0
- package/dist/components/client/Select/index.cjs +11 -0
- package/dist/components/client/Select/index.d.cts +6 -0
- package/dist/components/client/Select/index.d.ts +7 -0
- package/dist/components/client/Select/index.js +7 -0
- package/dist/components/client/Select/selectContext.cjs +20 -0
- package/dist/components/client/Select/selectContext.d.cts +23 -0
- package/dist/components/client/Select/selectContext.d.ts +24 -0
- package/dist/components/client/Select/selectContext.js +16 -0
- package/dist/components/client/Select/selectFieldStyles.cjs +85 -0
- package/dist/components/client/Select/selectFieldStyles.d.cts +37 -0
- package/dist/components/client/Select/selectFieldStyles.d.ts +38 -0
- package/dist/components/client/Select/selectFieldStyles.js +75 -0
- package/dist/components/client/index.cjs +8 -0
- package/dist/components/client/index.d.cts +5 -1
- package/dist/components/client/index.d.ts +5 -1
- package/dist/components/client/index.js +5 -1
- package/dist/components/index.cjs +8 -0
- package/dist/components/index.d.cts +5 -1
- package/dist/components/index.d.ts +5 -1
- package/dist/components/index.js +5 -1
- package/dist/config/dist/index.cjs +383 -73
- package/dist/config/dist/index.js +383 -73
- package/dist/css/dist/css/utils.cjs +3 -0
- package/dist/css/dist/css/utils.js +3 -0
- package/dist/css/dist/packages/automated-config/dist/properties.cjs +8 -1
- package/dist/css/dist/packages/automated-config/dist/properties.js +8 -1
- package/dist/css/dist/packages/config/dist/index.cjs +383 -73
- package/dist/css/dist/packages/config/dist/index.js +383 -73
- package/dist/css-tokens/dist/index.cjs +2 -0
- package/dist/css-tokens/dist/index.d.cts +2 -1
- package/dist/css-tokens/dist/index.d.ts +2 -1
- package/dist/css-tokens/dist/index.js +2 -1
- package/dist/index.cjs +34 -0
- package/dist/index.d.cts +12 -4
- package/dist/index.d.ts +12 -4
- package/dist/index.js +11 -3
- package/dist/styles/styler.d.cts +29 -12
- package/dist/styles/styler.d.ts +29 -12
- package/dist/styles/variants.d.cts +54 -0
- package/dist/styles/variants.d.ts +54 -0
- package/dist/tailwind/utils/index.cjs +3 -0
- package/dist/tailwind/utils/index.d.cts +2 -1
- package/dist/tailwind/utils/index.d.ts +2 -1
- package/dist/tailwind/utils/index.js +2 -1
- package/dist/tailwind-internal/dist/base/addColorModeVars.cjs +1 -1
- package/dist/tailwind-internal/dist/base/addColorModeVars.js +1 -1
- package/dist/tailwind-internal/dist/base/addColorModeVarsV2.cjs +1 -1
- package/dist/tailwind-internal/dist/base/addColorModeVarsV2.js +1 -1
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.cjs +74 -6
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.d.cts +14 -0
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.d.ts +14 -0
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.js +74 -7
- package/dist/tailwind-internal/dist/components/getResponsiveTextStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/components/getResponsiveTextStyles.js +1 -1
- package/dist/tailwind-internal/dist/index.d.cts +1 -0
- package/dist/tailwind-internal/dist/index.d.ts +1 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.cjs +3287 -596
- package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.js +3285 -597
- package/dist/tailwind-internal/dist/packages/automated-config/dist/properties.cjs +8 -1
- package/dist/tailwind-internal/dist/packages/automated-config/dist/properties.js +8 -1
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.cjs +4 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.js +4 -1
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/getButtonControlHeight.cjs +126 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/getButtonControlHeight.js +123 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/iconButtonMatchButtonHeight.cjs +20 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/iconButtonMatchButtonHeight.js +20 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.cjs +103 -33
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.js +104 -34
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.cjs +6 -3
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.js +6 -3
- package/dist/tailwind-internal/dist/packages/config/dist/index.cjs +383 -73
- package/dist/tailwind-internal/dist/packages/config/dist/index.js +383 -73
- package/dist/tailwind-internal/dist/packages/css-tokens/dist/index.cjs +12 -10
- package/dist/tailwind-internal/dist/packages/css-tokens/dist/index.js +3 -2
- package/dist/tailwind-internal/dist/plugins/a11y.cjs +6 -2
- package/dist/tailwind-internal/dist/plugins/a11y.js +6 -2
- package/dist/tailwind-internal/dist/plugins/blurBgFallback.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/blurBgFallback.js +1 -1
- package/dist/tailwind-internal/dist/plugins/borderRadius.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/borderRadius.js +1 -1
- package/dist/tailwind-internal/dist/plugins/borderWidth.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/borderWidth.js +1 -1
- package/dist/tailwind-internal/dist/plugins/colors.cjs +2 -2
- package/dist/tailwind-internal/dist/plugins/colors.js +2 -2
- package/dist/tailwind-internal/dist/plugins/components.cjs +5 -2
- package/dist/tailwind-internal/dist/plugins/components.js +6 -3
- package/dist/tailwind-internal/dist/plugins/elevation.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/elevation.js +1 -1
- package/dist/tailwind-internal/dist/plugins/shadows.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/shadows.js +1 -1
- package/dist/tailwind-internal/dist/plugins/typography.cjs +2 -2
- package/dist/tailwind-internal/dist/plugins/typography.js +2 -2
- package/dist/tailwind-internal/dist/utils/getElevationStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getElevationStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/getFontStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getFontStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/getMotionStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getMotionStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowPresetValues.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowPresetValues.js +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/parseTokens.cjs +2 -2
- package/dist/tailwind-internal/dist/utils/parseTokens.js +2 -2
- package/dist/tokens/automation/configs/index.cjs +3 -0
- package/dist/tokens/automation/configs/index.d.cts +2 -2
- package/dist/tokens/automation/configs/index.d.ts +2 -2
- package/dist/tokens/automation/configs/index.js +2 -2
- package/dist/tokens/automation/index.cjs +25 -0
- package/dist/tokens/automation/index.d.cts +6 -2
- package/dist/tokens/automation/index.d.ts +6 -2
- package/dist/tokens/automation/index.js +6 -2
- package/dist/tokens/consts/cssTokens.cjs +1 -0
- package/dist/tokens/consts/cssTokens.d.cts +2 -2
- package/dist/tokens/consts/cssTokens.d.ts +2 -2
- package/dist/tokens/consts/cssTokens.js +2 -2
- package/dist/tokens/index.cjs +26 -0
- package/dist/tokens/index.d.cts +8 -4
- package/dist/tokens/index.d.ts +8 -4
- package/dist/tokens/index.js +7 -3
- package/dist/tokens/types.d.cts +2 -2
- package/dist/tokens/types.d.ts +2 -2
- package/dist/types/dist/index.d.cts +36 -1
- package/dist/types/dist/index.d.ts +36 -1
- package/dist/uds/generated/componentData.cjs +718 -308
- package/dist/uds/generated/componentData.js +718 -308
- package/dist/uds/generated/migrationSchemaVersion.cjs +1 -1
- package/dist/uds/generated/migrationSchemaVersion.js +1 -1
- package/dist/uds/generated/tailwindPurge.cjs +1501 -315
- package/dist/uds/generated/tailwindPurge.js +1501 -315
- package/generated/componentData.json +897 -398
- package/generated/migrationSchemaVersion.ts +1 -1
- package/generated/tailwindPurge.ts +4 -4
- package/package.json +1 -1
|
@@ -798,6 +798,7 @@ var componentData_default = {
|
|
|
798
798
|
"uds-ring",
|
|
799
799
|
"uds-hit-target",
|
|
800
800
|
"inline-flex",
|
|
801
|
+
"max-w-full",
|
|
801
802
|
"overflow-hidden",
|
|
802
803
|
"justify-center",
|
|
803
804
|
"items-center",
|
|
@@ -814,8 +815,10 @@ var componentData_default = {
|
|
|
814
815
|
"withIcon",
|
|
815
816
|
"uds-button-with-gap",
|
|
816
817
|
"animate-spin",
|
|
818
|
+
"min-w-0",
|
|
817
819
|
"truncate",
|
|
818
820
|
"flex",
|
|
821
|
+
"shrink-0",
|
|
819
822
|
"overflow-clip",
|
|
820
823
|
"uds-button-icon-container"
|
|
821
824
|
],
|
|
@@ -1074,6 +1077,7 @@ var componentData_default = {
|
|
|
1074
1077
|
"menuitemItemVariantRoot": "default",
|
|
1075
1078
|
"menuitemItemVariantActiveRoot": "on",
|
|
1076
1079
|
"menuitemItemVariantActiveRoot:1": "off",
|
|
1080
|
+
"menuitemSizeText": "default",
|
|
1077
1081
|
"menuitemItemVariantText": "default",
|
|
1078
1082
|
"menuitemItemVariantActiveText": "on",
|
|
1079
1083
|
"menuitemItemVariantActiveText:1": "off",
|
|
@@ -1667,172 +1671,211 @@ var componentData_default = {
|
|
|
1667
1671
|
"runtimeConfigInternalComponentProps": {},
|
|
1668
1672
|
"motionVarPrefixes": []
|
|
1669
1673
|
},
|
|
1670
|
-
|
|
1671
|
-
"name": "
|
|
1672
|
-
"defaultProps": {
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
"UDSBottomSheetConfigProvider",
|
|
1678
|
-
"UDSToastConfigProvider",
|
|
1679
|
-
"UDSTooltipConfigProvider",
|
|
1680
|
-
"UDSPopoverConfigProvider",
|
|
1681
|
-
"UDSModalConfigProvider"
|
|
1682
|
-
],
|
|
1683
|
-
"internalComponentProps": {},
|
|
1684
|
-
"propToVariantKeys": {},
|
|
1685
|
-
"runtimeConfigDefaultProps": {},
|
|
1686
|
-
"runtimeConfigGetStyles": {},
|
|
1687
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1688
|
-
"motionVarPrefixes": []
|
|
1689
|
-
},
|
|
1690
|
-
UDSBreakpointsConfigProvider: {
|
|
1691
|
-
"name": "UDSBreakpointsConfigProvider",
|
|
1692
|
-
"defaultProps": {},
|
|
1693
|
-
"getStylesLiterals": {},
|
|
1694
|
-
"cxLiterals": [],
|
|
1695
|
-
"internalComponents": ["UDSBreakpointsConfigContext.Provider"],
|
|
1696
|
-
"internalComponentProps": {},
|
|
1697
|
-
"propToVariantKeys": {},
|
|
1698
|
-
"runtimeConfigDefaultProps": {},
|
|
1699
|
-
"runtimeConfigGetStyles": {},
|
|
1700
|
-
"runtimeConfigInternalComponentProps": {},
|
|
1701
|
-
"motionVarPrefixes": []
|
|
1702
|
-
},
|
|
1703
|
-
TabList: {
|
|
1704
|
-
"name": "TabList",
|
|
1705
|
-
"defaultProps": { "variant": "primary" },
|
|
1674
|
+
Select: {
|
|
1675
|
+
"name": "Select",
|
|
1676
|
+
"defaultProps": {
|
|
1677
|
+
"size": "md",
|
|
1678
|
+
"width": "full",
|
|
1679
|
+
"defaultValue": ""
|
|
1680
|
+
},
|
|
1706
1681
|
"getStylesLiterals": {
|
|
1707
|
-
"
|
|
1708
|
-
"
|
|
1682
|
+
"inputVariantRoot": "default",
|
|
1683
|
+
"inputVariantValueRoot": "empty",
|
|
1684
|
+
"inputVariantValueRoot:1": "filled",
|
|
1685
|
+
"inputVariantLabel": "default",
|
|
1686
|
+
"inputVariantValueLabel": "empty",
|
|
1687
|
+
"inputVariantValueLabel:1": "filled",
|
|
1688
|
+
"inputVariantLabelRequired": "default",
|
|
1689
|
+
"inputVariantValueLabelRequired": "empty",
|
|
1690
|
+
"inputVariantValueLabelRequired:1": "filled",
|
|
1691
|
+
"inputVariantInputWrapper": "default",
|
|
1692
|
+
"inputVariantValueInputWrapper": "empty",
|
|
1693
|
+
"inputVariantValueInputWrapper:1": "filled",
|
|
1694
|
+
"inputVariantInput": "default",
|
|
1695
|
+
"inputVariantValueInput": "empty",
|
|
1696
|
+
"inputVariantValueInput:1": "filled",
|
|
1697
|
+
"inputVariantInputPlaceholder": "default",
|
|
1698
|
+
"inputVariantValueInputPlaceholder": "empty",
|
|
1699
|
+
"inputVariantValueInputPlaceholder:1": "filled",
|
|
1700
|
+
"inputVariantStartIcon": "default",
|
|
1701
|
+
"inputVariantValueStartIcon": "empty",
|
|
1702
|
+
"inputVariantValueStartIcon:1": "filled",
|
|
1703
|
+
"inputVariantEndIcon": "default",
|
|
1704
|
+
"inputVariantValueEndIcon": "empty",
|
|
1705
|
+
"inputVariantValueEndIcon:1": "filled",
|
|
1706
|
+
"inputVariantHelperText": "default",
|
|
1707
|
+
"inputVariantValueHelperText": "empty",
|
|
1708
|
+
"inputVariantValueHelperText:1": "filled",
|
|
1709
|
+
"inputVariantHelperIcon": "default",
|
|
1710
|
+
"inputVariantValueHelperIcon": "empty",
|
|
1711
|
+
"inputVariantValueHelperIcon:1": "filled"
|
|
1709
1712
|
},
|
|
1710
1713
|
"cxLiterals": [
|
|
1711
|
-
"
|
|
1712
|
-
"absolute",
|
|
1713
|
-
"bottom-0",
|
|
1714
|
-
"left-0",
|
|
1715
|
-
"right-0",
|
|
1716
|
-
"h-[var(--uds-tab-underline-width,0px)]",
|
|
1717
|
-
"bg-[var(--uds-tab-underline-color,transparent)]",
|
|
1718
|
-
"transition-[height,background-color]",
|
|
1719
|
-
"duration-[240ms]",
|
|
1720
|
-
"ease-[cubic-bezier(0.2,0,0,1)]",
|
|
1721
|
-
"!m-0",
|
|
1722
|
-
"!p-0",
|
|
1723
|
-
"!gap-0",
|
|
1724
|
-
"box-border",
|
|
1725
|
-
"z-0",
|
|
1726
|
-
"min-w-0",
|
|
1727
|
-
"min-h-0",
|
|
1714
|
+
"opacity-50",
|
|
1728
1715
|
"flex",
|
|
1729
|
-
"
|
|
1716
|
+
"w-full",
|
|
1730
1717
|
"items-center",
|
|
1731
|
-
"
|
|
1732
|
-
"
|
|
1733
|
-
"
|
|
1734
|
-
"
|
|
1735
|
-
"
|
|
1736
|
-
"
|
|
1737
|
-
"
|
|
1738
|
-
"left",
|
|
1739
|
-
"
|
|
1740
|
-
"
|
|
1741
|
-
"
|
|
1742
|
-
"
|
|
1743
|
-
"top",
|
|
1744
|
-
"width",
|
|
1745
|
-
"height",
|
|
1746
|
-
"1)",
|
|
1747
|
-
"--uds-tab-underline-color",
|
|
1748
|
-
"--uds-tab-underline-width"
|
|
1718
|
+
"min-w-[200px]",
|
|
1719
|
+
"uds-ring-shadow",
|
|
1720
|
+
"uds-ring-within",
|
|
1721
|
+
"uds-select-field-trigger",
|
|
1722
|
+
"grow",
|
|
1723
|
+
"bg-transparent",
|
|
1724
|
+
"bg-clip-text",
|
|
1725
|
+
"text-left",
|
|
1726
|
+
"focus-visible:outline-none",
|
|
1727
|
+
"cursor-not-allowed",
|
|
1728
|
+
"cursor-pointer",
|
|
1729
|
+
"text-muted"
|
|
1749
1730
|
],
|
|
1750
|
-
"internalComponents": [
|
|
1751
|
-
|
|
1752
|
-
|
|
1731
|
+
"internalComponents": [
|
|
1732
|
+
"SelectTrigger",
|
|
1733
|
+
"SelectHelpText",
|
|
1734
|
+
"SelectFieldContext.Provider",
|
|
1735
|
+
"VStack",
|
|
1736
|
+
"Box",
|
|
1737
|
+
"SpringMotionConfig",
|
|
1738
|
+
"AriakitSelectProvider",
|
|
1739
|
+
"SelectRoot"
|
|
1740
|
+
],
|
|
1741
|
+
"internalComponentProps": {
|
|
1742
|
+
"Box": {
|
|
1743
|
+
"spacingBottom": ["2"],
|
|
1744
|
+
"columnGap": ["0.5"],
|
|
1745
|
+
"alignItems": ["flex-end"]
|
|
1746
|
+
},
|
|
1747
|
+
"SpringMotionConfig": { "reducedMotion": ["user"] }
|
|
1748
|
+
},
|
|
1749
|
+
"propToVariantKeys": { "size": [
|
|
1750
|
+
"inputSizeRoot",
|
|
1751
|
+
"inputSizeLabel",
|
|
1752
|
+
"inputSizeInputWrapperStatic",
|
|
1753
|
+
"inputSizeInputWrapperDynamic",
|
|
1754
|
+
"inputSizeInput",
|
|
1755
|
+
"inputSizeStartIcon",
|
|
1756
|
+
"inputSizeEndIcon",
|
|
1757
|
+
"inputSizeHelperText",
|
|
1758
|
+
"inputSizeHelperIcon"
|
|
1759
|
+
] },
|
|
1753
1760
|
"runtimeConfigDefaultProps": {},
|
|
1754
1761
|
"runtimeConfigGetStyles": {},
|
|
1755
1762
|
"runtimeConfigInternalComponentProps": {},
|
|
1756
|
-
"motionVarPrefixes": []
|
|
1763
|
+
"motionVarPrefixes": ["--uds-motion-subtle-3-", "--uds-motion-smooth-3-"]
|
|
1757
1764
|
},
|
|
1758
|
-
|
|
1759
|
-
"name": "
|
|
1760
|
-
"defaultProps": {
|
|
1765
|
+
SelectContent: {
|
|
1766
|
+
"name": "SelectContent",
|
|
1767
|
+
"defaultProps": {
|
|
1768
|
+
"size": "default",
|
|
1769
|
+
"variant": "default"
|
|
1770
|
+
},
|
|
1761
1771
|
"getStylesLiterals": {},
|
|
1762
|
-
"cxLiterals": [],
|
|
1763
|
-
"internalComponents": ["
|
|
1764
|
-
"internalComponentProps": {
|
|
1765
|
-
|
|
1772
|
+
"cxLiterals": ["z-50", "focus:outline-none"],
|
|
1773
|
+
"internalComponents": ["SelectPopover", "VStack"],
|
|
1774
|
+
"internalComponentProps": { "VStack": {
|
|
1775
|
+
"elevation": ["3"],
|
|
1776
|
+
"overflow": ["auto"],
|
|
1777
|
+
"borderRadius": ["md"]
|
|
1778
|
+
} },
|
|
1779
|
+
"propToVariantKeys": {
|
|
1780
|
+
"size": ["selectcontentSizeRoot"],
|
|
1781
|
+
"variant": ["selectcontentVariantRoot"]
|
|
1782
|
+
},
|
|
1766
1783
|
"runtimeConfigDefaultProps": {},
|
|
1767
1784
|
"runtimeConfigGetStyles": {},
|
|
1768
1785
|
"runtimeConfigInternalComponentProps": {},
|
|
1769
1786
|
"motionVarPrefixes": []
|
|
1770
1787
|
},
|
|
1771
|
-
|
|
1772
|
-
"name": "
|
|
1773
|
-
"defaultProps": {
|
|
1788
|
+
SelectHelpText: {
|
|
1789
|
+
"name": "SelectHelpText",
|
|
1790
|
+
"defaultProps": {},
|
|
1774
1791
|
"getStylesLiterals": {
|
|
1775
|
-
"
|
|
1776
|
-
"
|
|
1777
|
-
"
|
|
1778
|
-
"
|
|
1792
|
+
"inputVariantRoot": "default",
|
|
1793
|
+
"inputVariantValueRoot": "empty",
|
|
1794
|
+
"inputVariantValueRoot:1": "filled",
|
|
1795
|
+
"inputVariantLabel": "default",
|
|
1796
|
+
"inputVariantValueLabel": "empty",
|
|
1797
|
+
"inputVariantValueLabel:1": "filled",
|
|
1798
|
+
"inputVariantLabelRequired": "default",
|
|
1799
|
+
"inputVariantValueLabelRequired": "empty",
|
|
1800
|
+
"inputVariantValueLabelRequired:1": "filled",
|
|
1801
|
+
"inputVariantInputWrapper": "default",
|
|
1802
|
+
"inputVariantValueInputWrapper": "empty",
|
|
1803
|
+
"inputVariantValueInputWrapper:1": "filled",
|
|
1804
|
+
"inputVariantInput": "default",
|
|
1805
|
+
"inputVariantValueInput": "empty",
|
|
1806
|
+
"inputVariantValueInput:1": "filled",
|
|
1807
|
+
"inputVariantInputPlaceholder": "default",
|
|
1808
|
+
"inputVariantValueInputPlaceholder": "empty",
|
|
1809
|
+
"inputVariantValueInputPlaceholder:1": "filled",
|
|
1810
|
+
"inputVariantStartIcon": "default",
|
|
1811
|
+
"inputVariantValueStartIcon": "empty",
|
|
1812
|
+
"inputVariantValueStartIcon:1": "filled",
|
|
1813
|
+
"inputVariantEndIcon": "default",
|
|
1814
|
+
"inputVariantValueEndIcon": "empty",
|
|
1815
|
+
"inputVariantValueEndIcon:1": "filled",
|
|
1816
|
+
"inputVariantHelperText": "default",
|
|
1817
|
+
"inputVariantValueHelperText": "empty",
|
|
1818
|
+
"inputVariantValueHelperText:1": "filled",
|
|
1819
|
+
"inputVariantHelperIcon": "default",
|
|
1820
|
+
"inputVariantValueHelperIcon": "empty",
|
|
1821
|
+
"inputVariantValueHelperIcon:1": "filled"
|
|
1779
1822
|
},
|
|
1780
1823
|
"cxLiterals": [
|
|
1781
|
-
"
|
|
1782
|
-
"
|
|
1783
|
-
"
|
|
1784
|
-
"left-0",
|
|
1785
|
-
"right-0",
|
|
1786
|
-
"h-[var(--uds-tab-underline-width,0px)]",
|
|
1787
|
-
"bg-[var(--uds-tab-underline-color,transparent)]",
|
|
1788
|
-
"transition-[height,background-color]",
|
|
1789
|
-
"duration-[240ms]",
|
|
1790
|
-
"ease-[cubic-bezier(0.2,0,0,1)]",
|
|
1791
|
-
"!bg-transparent",
|
|
1792
|
-
"!shadow-none",
|
|
1793
|
-
"inline-flex",
|
|
1824
|
+
"opacity-50",
|
|
1825
|
+
"flex",
|
|
1826
|
+
"w-full",
|
|
1794
1827
|
"items-center",
|
|
1795
|
-
"
|
|
1796
|
-
"
|
|
1797
|
-
"
|
|
1798
|
-
"
|
|
1828
|
+
"min-w-[200px]",
|
|
1829
|
+
"uds-ring-shadow",
|
|
1830
|
+
"uds-ring-within",
|
|
1831
|
+
"uds-select-field-trigger",
|
|
1832
|
+
"grow",
|
|
1833
|
+
"bg-transparent",
|
|
1834
|
+
"bg-clip-text",
|
|
1835
|
+
"text-left",
|
|
1836
|
+
"focus-visible:outline-none",
|
|
1837
|
+
"cursor-not-allowed",
|
|
1799
1838
|
"cursor-pointer",
|
|
1800
|
-
"
|
|
1801
|
-
"whitespace-nowrap",
|
|
1802
|
-
"uds-ring",
|
|
1803
|
-
"opacity-50",
|
|
1804
|
-
"cursor-default",
|
|
1805
|
-
"border-solid",
|
|
1806
|
-
"border-b-solid",
|
|
1807
|
-
"transition-colors"
|
|
1839
|
+
"text-muted"
|
|
1808
1840
|
],
|
|
1809
1841
|
"internalComponents": [
|
|
1810
1842
|
"IconSlot",
|
|
1811
|
-
"
|
|
1812
|
-
"
|
|
1843
|
+
"AnimateHeightChange",
|
|
1844
|
+
"HStack"
|
|
1813
1845
|
],
|
|
1814
|
-
"internalComponentProps": {
|
|
1815
|
-
"
|
|
1816
|
-
"
|
|
1817
|
-
|
|
1818
|
-
|
|
1846
|
+
"internalComponentProps": {
|
|
1847
|
+
"AnimateHeightChange": { "layoutVariant": ["bouncy"] },
|
|
1848
|
+
"HStack": {
|
|
1849
|
+
"gap": ["1"],
|
|
1850
|
+
"alignItems": ["center"],
|
|
1851
|
+
"spacingTop": ["2"]
|
|
1852
|
+
}
|
|
1853
|
+
},
|
|
1819
1854
|
"propToVariantKeys": {
|
|
1820
|
-
"
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1855
|
+
"size": [
|
|
1856
|
+
"inputSizeRoot",
|
|
1857
|
+
"inputSizeLabel",
|
|
1858
|
+
"inputSizeInputWrapperStatic",
|
|
1859
|
+
"inputSizeInputWrapperDynamic",
|
|
1860
|
+
"inputSizeInput",
|
|
1861
|
+
"inputSizeStartIcon",
|
|
1862
|
+
"inputSizeEndIcon",
|
|
1863
|
+
"inputSizeHelperText",
|
|
1864
|
+
"inputSizeHelperIcon"
|
|
1865
|
+
],
|
|
1866
|
+
"helperTextIcon": ["icon"]
|
|
1824
1867
|
},
|
|
1825
1868
|
"runtimeConfigDefaultProps": {},
|
|
1826
1869
|
"runtimeConfigGetStyles": {},
|
|
1827
1870
|
"runtimeConfigInternalComponentProps": {},
|
|
1828
1871
|
"motionVarPrefixes": []
|
|
1829
1872
|
},
|
|
1830
|
-
|
|
1831
|
-
"name": "
|
|
1873
|
+
SelectValue: {
|
|
1874
|
+
"name": "SelectValue",
|
|
1832
1875
|
"defaultProps": {},
|
|
1833
1876
|
"getStylesLiterals": {},
|
|
1834
1877
|
"cxLiterals": [],
|
|
1835
|
-
"internalComponents": ["
|
|
1878
|
+
"internalComponents": ["AriakitSelectValue"],
|
|
1836
1879
|
"internalComponentProps": {},
|
|
1837
1880
|
"propToVariantKeys": {},
|
|
1838
1881
|
"runtimeConfigDefaultProps": {},
|
|
@@ -1840,15 +1883,380 @@ var componentData_default = {
|
|
|
1840
1883
|
"runtimeConfigInternalComponentProps": {},
|
|
1841
1884
|
"motionVarPrefixes": []
|
|
1842
1885
|
},
|
|
1843
|
-
|
|
1844
|
-
"name": "
|
|
1886
|
+
SelectTrigger: {
|
|
1887
|
+
"name": "SelectTrigger",
|
|
1845
1888
|
"defaultProps": {},
|
|
1846
|
-
"getStylesLiterals": {
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1889
|
+
"getStylesLiterals": {
|
|
1890
|
+
"inputVariantRoot": "default",
|
|
1891
|
+
"inputVariantValueRoot": "empty",
|
|
1892
|
+
"inputVariantValueRoot:1": "filled",
|
|
1893
|
+
"inputVariantLabel": "default",
|
|
1894
|
+
"inputVariantValueLabel": "empty",
|
|
1895
|
+
"inputVariantValueLabel:1": "filled",
|
|
1896
|
+
"inputVariantLabelRequired": "default",
|
|
1897
|
+
"inputVariantValueLabelRequired": "empty",
|
|
1898
|
+
"inputVariantValueLabelRequired:1": "filled",
|
|
1899
|
+
"inputVariantInputWrapper": "default",
|
|
1900
|
+
"inputVariantValueInputWrapper": "empty",
|
|
1901
|
+
"inputVariantValueInputWrapper:1": "filled",
|
|
1902
|
+
"inputVariantInput": "default",
|
|
1903
|
+
"inputVariantValueInput": "empty",
|
|
1904
|
+
"inputVariantValueInput:1": "filled",
|
|
1905
|
+
"inputVariantInputPlaceholder": "default",
|
|
1906
|
+
"inputVariantValueInputPlaceholder": "empty",
|
|
1907
|
+
"inputVariantValueInputPlaceholder:1": "filled",
|
|
1908
|
+
"inputVariantStartIcon": "default",
|
|
1909
|
+
"inputVariantValueStartIcon": "empty",
|
|
1910
|
+
"inputVariantValueStartIcon:1": "filled",
|
|
1911
|
+
"inputVariantEndIcon": "default",
|
|
1912
|
+
"inputVariantValueEndIcon": "empty",
|
|
1913
|
+
"inputVariantValueEndIcon:1": "filled",
|
|
1914
|
+
"inputVariantHelperText": "default",
|
|
1915
|
+
"inputVariantValueHelperText": "empty",
|
|
1916
|
+
"inputVariantValueHelperText:1": "filled",
|
|
1917
|
+
"inputVariantHelperIcon": "default",
|
|
1918
|
+
"inputVariantValueHelperIcon": "empty",
|
|
1919
|
+
"inputVariantValueHelperIcon:1": "filled"
|
|
1920
|
+
},
|
|
1921
|
+
"cxLiterals": [
|
|
1922
|
+
"flex",
|
|
1923
|
+
"w-full",
|
|
1924
|
+
"min-w-0",
|
|
1925
|
+
"items-center",
|
|
1926
|
+
"border-0",
|
|
1927
|
+
"bg-transparent",
|
|
1928
|
+
"rounded-[inherit]",
|
|
1929
|
+
"outline-none",
|
|
1930
|
+
"shadow-none",
|
|
1931
|
+
"uds-hit-target",
|
|
1932
|
+
"cursor-not-allowed",
|
|
1933
|
+
"cursor-pointer",
|
|
1934
|
+
"self-stretch",
|
|
1935
|
+
"truncate",
|
|
1936
|
+
"text-left",
|
|
1937
|
+
"opacity-50",
|
|
1938
|
+
"min-w-[200px]",
|
|
1939
|
+
"uds-ring-shadow",
|
|
1940
|
+
"uds-ring-within",
|
|
1941
|
+
"uds-select-field-trigger",
|
|
1942
|
+
"grow",
|
|
1943
|
+
"bg-clip-text",
|
|
1944
|
+
"focus-visible:outline-none",
|
|
1945
|
+
"text-muted"
|
|
1946
|
+
],
|
|
1947
|
+
"internalComponents": [
|
|
1948
|
+
"IconSlot",
|
|
1949
|
+
"StartIcon",
|
|
1950
|
+
"SelectValue",
|
|
1951
|
+
"EndIcon",
|
|
1952
|
+
"Box",
|
|
1953
|
+
"AriakitSelect",
|
|
1954
|
+
"HStack"
|
|
1955
|
+
],
|
|
1956
|
+
"internalComponentProps": {
|
|
1957
|
+
"Box": {
|
|
1958
|
+
"position": ["relative"],
|
|
1959
|
+
"display": ["flex"],
|
|
1960
|
+
"alignItems": ["center"],
|
|
1961
|
+
"width": ["full"]
|
|
1962
|
+
},
|
|
1963
|
+
"HStack": {
|
|
1964
|
+
"alignItems": ["center"],
|
|
1965
|
+
"gap": ["1"],
|
|
1966
|
+
"className": ["shrink-0"]
|
|
1967
|
+
}
|
|
1968
|
+
},
|
|
1969
|
+
"propToVariantKeys": {
|
|
1970
|
+
"size": [
|
|
1971
|
+
"inputSizeRoot",
|
|
1972
|
+
"inputSizeLabel",
|
|
1973
|
+
"inputSizeInputWrapperStatic",
|
|
1974
|
+
"inputSizeInputWrapperDynamic",
|
|
1975
|
+
"inputSizeInput",
|
|
1976
|
+
"inputSizeStartIcon",
|
|
1977
|
+
"inputSizeEndIcon",
|
|
1978
|
+
"inputSizeHelperText",
|
|
1979
|
+
"inputSizeHelperIcon"
|
|
1980
|
+
],
|
|
1981
|
+
"startIcon": ["icon"],
|
|
1982
|
+
"placeholder": ["fallback"],
|
|
1983
|
+
"endIcon": ["icon"]
|
|
1984
|
+
},
|
|
1985
|
+
"runtimeConfigDefaultProps": {},
|
|
1986
|
+
"runtimeConfigGetStyles": {},
|
|
1987
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1988
|
+
"motionVarPrefixes": []
|
|
1989
|
+
},
|
|
1990
|
+
SelectItem: {
|
|
1991
|
+
"name": "SelectItem",
|
|
1992
|
+
"defaultProps": {},
|
|
1993
|
+
"getStylesLiterals": {
|
|
1994
|
+
"selectitemItemVariantRoot": "default",
|
|
1995
|
+
"selectitemItemVariantActiveRoot": "on",
|
|
1996
|
+
"selectitemItemVariantActiveRoot:1": "off",
|
|
1997
|
+
"selectitemSizeText": "default",
|
|
1998
|
+
"selectitemItemVariantText": "default",
|
|
1999
|
+
"selectitemItemVariantActiveText": "on",
|
|
2000
|
+
"selectitemItemVariantActiveText:1": "off",
|
|
2001
|
+
"selectitemItemVariantIcon": "default",
|
|
2002
|
+
"selectitemItemVariantActiveIcon": "on",
|
|
2003
|
+
"selectitemItemVariantActiveIcon:1": "off",
|
|
2004
|
+
"textAlign": "start",
|
|
2005
|
+
"selectitemSizeRoot": "default",
|
|
2006
|
+
"flexDirection": "row",
|
|
2007
|
+
"spacing": "0",
|
|
2008
|
+
"spacingHorizontal": "4",
|
|
2009
|
+
"spacingVertical": "3.5",
|
|
2010
|
+
"columnGap": "2",
|
|
2011
|
+
"alignItems": "center",
|
|
2012
|
+
"justifyContent": "space-between",
|
|
2013
|
+
"width": "full",
|
|
2014
|
+
"selectitemSizeStartIcon": "default",
|
|
2015
|
+
"selectitemSizeEndIcon": "default"
|
|
2016
|
+
},
|
|
2017
|
+
"cxLiterals": [
|
|
2018
|
+
"uds-select-item",
|
|
2019
|
+
"flex",
|
|
2020
|
+
"cursor-pointer",
|
|
2021
|
+
"outline-none",
|
|
2022
|
+
"data-[active-item]:z-10",
|
|
2023
|
+
"uds-ring",
|
|
2024
|
+
"!-outline-offset-2",
|
|
2025
|
+
"duration-20",
|
|
2026
|
+
"transition-[font-variation-settings]",
|
|
2027
|
+
"ease-in-out",
|
|
2028
|
+
"z-0",
|
|
2029
|
+
"opacity-50",
|
|
2030
|
+
"cursor-not-allowed",
|
|
2031
|
+
"truncate",
|
|
2032
|
+
"uds-start-icon",
|
|
2033
|
+
"inline-flex",
|
|
2034
|
+
"shrink-0",
|
|
2035
|
+
"items-center",
|
|
2036
|
+
"uds-end-icon"
|
|
2037
|
+
],
|
|
2038
|
+
"internalComponents": [
|
|
2039
|
+
"IconSlot",
|
|
2040
|
+
"AriakitSelectItem",
|
|
2041
|
+
"HStack",
|
|
2042
|
+
"AnimatePresence"
|
|
2043
|
+
],
|
|
2044
|
+
"internalComponentProps": {
|
|
2045
|
+
"HStack": {
|
|
2046
|
+
"gap": ["2"],
|
|
2047
|
+
"alignItems": ["center"],
|
|
2048
|
+
"width": ["full"]
|
|
2049
|
+
},
|
|
2050
|
+
"AnimatePresence": { "mode": ["popLayout"] }
|
|
2051
|
+
},
|
|
2052
|
+
"propToVariantKeys": { "startIcon": ["icon"] },
|
|
2053
|
+
"runtimeConfigDefaultProps": {},
|
|
2054
|
+
"runtimeConfigGetStyles": {},
|
|
2055
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2056
|
+
"motionVarPrefixes": []
|
|
2057
|
+
},
|
|
2058
|
+
SelectDivider: {
|
|
2059
|
+
"name": "SelectDivider",
|
|
2060
|
+
"defaultProps": {
|
|
2061
|
+
"contentPosition": "start",
|
|
2062
|
+
"gap": "4"
|
|
2063
|
+
},
|
|
2064
|
+
"getStylesLiterals": {
|
|
2065
|
+
"selectitemDividerVariantRoot": "default",
|
|
2066
|
+
"selectitemDividerVariantText": "default",
|
|
2067
|
+
"selectitemDividerVariantLine": "default"
|
|
2068
|
+
},
|
|
2069
|
+
"cxLiterals": [],
|
|
2070
|
+
"internalComponents": ["Divider"],
|
|
2071
|
+
"internalComponentProps": { "Divider": { "variant": ["inherit"] } },
|
|
2072
|
+
"propToVariantKeys": {},
|
|
2073
|
+
"runtimeConfigDefaultProps": {},
|
|
2074
|
+
"runtimeConfigGetStyles": {},
|
|
2075
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2076
|
+
"motionVarPrefixes": []
|
|
2077
|
+
},
|
|
2078
|
+
UDSConfigProvider: {
|
|
2079
|
+
"name": "UDSConfigProvider",
|
|
2080
|
+
"defaultProps": {},
|
|
2081
|
+
"getStylesLiterals": {},
|
|
2082
|
+
"cxLiterals": [],
|
|
2083
|
+
"internalComponents": [
|
|
2084
|
+
"UDSBreakpointsConfigProvider",
|
|
2085
|
+
"UDSBottomSheetConfigProvider",
|
|
2086
|
+
"UDSToastConfigProvider",
|
|
2087
|
+
"UDSTooltipConfigProvider",
|
|
2088
|
+
"UDSPopoverConfigProvider",
|
|
2089
|
+
"UDSModalConfigProvider"
|
|
2090
|
+
],
|
|
2091
|
+
"internalComponentProps": {},
|
|
2092
|
+
"propToVariantKeys": {},
|
|
2093
|
+
"runtimeConfigDefaultProps": {},
|
|
2094
|
+
"runtimeConfigGetStyles": {},
|
|
2095
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2096
|
+
"motionVarPrefixes": []
|
|
2097
|
+
},
|
|
2098
|
+
UDSBreakpointsConfigProvider: {
|
|
2099
|
+
"name": "UDSBreakpointsConfigProvider",
|
|
2100
|
+
"defaultProps": {},
|
|
2101
|
+
"getStylesLiterals": {},
|
|
2102
|
+
"cxLiterals": [],
|
|
2103
|
+
"internalComponents": ["UDSBreakpointsConfigContext.Provider"],
|
|
2104
|
+
"internalComponentProps": {},
|
|
2105
|
+
"propToVariantKeys": {},
|
|
2106
|
+
"runtimeConfigDefaultProps": {},
|
|
2107
|
+
"runtimeConfigGetStyles": {},
|
|
2108
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2109
|
+
"motionVarPrefixes": []
|
|
2110
|
+
},
|
|
2111
|
+
TabList: {
|
|
2112
|
+
"name": "TabList",
|
|
2113
|
+
"defaultProps": { "variant": "primary" },
|
|
2114
|
+
"getStylesLiterals": {
|
|
2115
|
+
"tabSizeRoot": "default",
|
|
2116
|
+
"tabVariantActiveRoot": "on"
|
|
2117
|
+
},
|
|
2118
|
+
"cxLiterals": [
|
|
2119
|
+
"pointer-events-none",
|
|
2120
|
+
"absolute",
|
|
2121
|
+
"bottom-0",
|
|
2122
|
+
"left-0",
|
|
2123
|
+
"right-0",
|
|
2124
|
+
"h-[var(--uds-tab-underline-width,0px)]",
|
|
2125
|
+
"bg-[var(--uds-tab-underline-color,transparent)]",
|
|
2126
|
+
"transition-[height,background-color]",
|
|
2127
|
+
"duration-[240ms]",
|
|
2128
|
+
"ease-[cubic-bezier(0.2,0,0,1)]",
|
|
2129
|
+
"!m-0",
|
|
2130
|
+
"!p-0",
|
|
2131
|
+
"!gap-0",
|
|
2132
|
+
"box-border",
|
|
2133
|
+
"z-0",
|
|
2134
|
+
"min-w-0",
|
|
2135
|
+
"min-h-0",
|
|
2136
|
+
"flex",
|
|
2137
|
+
"flex-row",
|
|
2138
|
+
"items-center",
|
|
2139
|
+
"overflow-x-auto",
|
|
2140
|
+
"overflow-y-clip",
|
|
2141
|
+
"scrollbar-none",
|
|
2142
|
+
"[overflow-clip-margin:6px]",
|
|
2143
|
+
"overflow-clip",
|
|
2144
|
+
"[overflow-clip-margin:8px]",
|
|
2145
|
+
"relative",
|
|
2146
|
+
"left",
|
|
2147
|
+
"240ms",
|
|
2148
|
+
"cubic-bezier(0.2,",
|
|
2149
|
+
"0,",
|
|
2150
|
+
"1),",
|
|
2151
|
+
"top",
|
|
2152
|
+
"width",
|
|
2153
|
+
"height",
|
|
2154
|
+
"1)",
|
|
2155
|
+
"--uds-tab-underline-color",
|
|
2156
|
+
"--uds-tab-underline-width"
|
|
2157
|
+
],
|
|
2158
|
+
"internalComponents": ["AriakitTabList"],
|
|
2159
|
+
"internalComponentProps": {},
|
|
2160
|
+
"propToVariantKeys": { "variant": ["tabsVariantRoot", "tabVariantRoot"] },
|
|
2161
|
+
"runtimeConfigDefaultProps": {},
|
|
2162
|
+
"runtimeConfigGetStyles": {},
|
|
2163
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2164
|
+
"motionVarPrefixes": []
|
|
2165
|
+
},
|
|
2166
|
+
Tabs: {
|
|
2167
|
+
"name": "Tabs",
|
|
2168
|
+
"defaultProps": { "variant": "primary" },
|
|
2169
|
+
"getStylesLiterals": {},
|
|
2170
|
+
"cxLiterals": [],
|
|
2171
|
+
"internalComponents": ["TabsContext.Provider", "TabProvider"],
|
|
2172
|
+
"internalComponentProps": {},
|
|
2173
|
+
"propToVariantKeys": { "onSelectionChange": ["setSelectedId"] },
|
|
2174
|
+
"runtimeConfigDefaultProps": {},
|
|
2175
|
+
"runtimeConfigGetStyles": {},
|
|
2176
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2177
|
+
"motionVarPrefixes": []
|
|
2178
|
+
},
|
|
2179
|
+
Tab: {
|
|
2180
|
+
"name": "Tab",
|
|
2181
|
+
"defaultProps": { "variant": "primary" },
|
|
2182
|
+
"getStylesLiterals": {
|
|
2183
|
+
"tabSizeRoot": "default",
|
|
2184
|
+
"tabVariantActiveRoot": "off",
|
|
2185
|
+
"tabVariantActiveRoot:1": "on",
|
|
2186
|
+
"tabSizeIcon": "default"
|
|
2187
|
+
},
|
|
2188
|
+
"cxLiterals": [
|
|
2189
|
+
"pointer-events-none",
|
|
2190
|
+
"absolute",
|
|
2191
|
+
"bottom-0",
|
|
2192
|
+
"left-0",
|
|
2193
|
+
"right-0",
|
|
2194
|
+
"h-[var(--uds-tab-underline-width,0px)]",
|
|
2195
|
+
"bg-[var(--uds-tab-underline-color,transparent)]",
|
|
2196
|
+
"transition-[height,background-color]",
|
|
2197
|
+
"duration-[240ms]",
|
|
2198
|
+
"ease-[cubic-bezier(0.2,0,0,1)]",
|
|
2199
|
+
"!bg-transparent",
|
|
2200
|
+
"!shadow-none",
|
|
2201
|
+
"inline-flex",
|
|
2202
|
+
"items-center",
|
|
2203
|
+
"shrink-0",
|
|
2204
|
+
"box-border",
|
|
2205
|
+
"relative",
|
|
2206
|
+
"z-[1]",
|
|
2207
|
+
"cursor-pointer",
|
|
2208
|
+
"select-none",
|
|
2209
|
+
"whitespace-nowrap",
|
|
2210
|
+
"uds-ring",
|
|
2211
|
+
"opacity-50",
|
|
2212
|
+
"cursor-default",
|
|
2213
|
+
"border-solid",
|
|
2214
|
+
"border-b-solid",
|
|
2215
|
+
"transition-colors"
|
|
2216
|
+
],
|
|
2217
|
+
"internalComponents": [
|
|
2218
|
+
"IconSlot",
|
|
2219
|
+
"AriakitTab",
|
|
2220
|
+
"Text"
|
|
2221
|
+
],
|
|
2222
|
+
"internalComponentProps": { "Text": {
|
|
2223
|
+
"variant": ["inherit"],
|
|
2224
|
+
"as": ["span"],
|
|
2225
|
+
"color": ["current"]
|
|
2226
|
+
} },
|
|
2227
|
+
"propToVariantKeys": {
|
|
2228
|
+
"variant": ["tabVariantRoot", "tabVariantIcon"],
|
|
2229
|
+
"activeState": ["tabVariantActiveIcon"],
|
|
2230
|
+
"startIcon": ["icon"],
|
|
2231
|
+
"endIcon": ["icon"]
|
|
2232
|
+
},
|
|
2233
|
+
"runtimeConfigDefaultProps": {},
|
|
2234
|
+
"runtimeConfigGetStyles": {},
|
|
2235
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2236
|
+
"motionVarPrefixes": []
|
|
2237
|
+
},
|
|
2238
|
+
TabPanel: {
|
|
2239
|
+
"name": "TabPanel",
|
|
2240
|
+
"defaultProps": {},
|
|
2241
|
+
"getStylesLiterals": {},
|
|
2242
|
+
"cxLiterals": [],
|
|
2243
|
+
"internalComponents": ["AriakitTabPanel"],
|
|
2244
|
+
"internalComponentProps": {},
|
|
2245
|
+
"propToVariantKeys": {},
|
|
2246
|
+
"runtimeConfigDefaultProps": {},
|
|
2247
|
+
"runtimeConfigGetStyles": {},
|
|
2248
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2249
|
+
"motionVarPrefixes": []
|
|
2250
|
+
},
|
|
2251
|
+
UDSToastConfigProvider: {
|
|
2252
|
+
"name": "UDSToastConfigProvider",
|
|
2253
|
+
"defaultProps": {},
|
|
2254
|
+
"getStylesLiterals": {},
|
|
2255
|
+
"cxLiterals": [],
|
|
2256
|
+
"internalComponents": ["ToastContext.Provider"],
|
|
2257
|
+
"internalComponentProps": {},
|
|
2258
|
+
"propToVariantKeys": {},
|
|
2259
|
+
"runtimeConfigDefaultProps": {},
|
|
1852
2260
|
"runtimeConfigGetStyles": {},
|
|
1853
2261
|
"runtimeConfigInternalComponentProps": {},
|
|
1854
2262
|
"motionVarPrefixes": []
|
|
@@ -2119,39 +2527,124 @@ var componentData_default = {
|
|
|
2119
2527
|
"hover:bg-carbon-15/10",
|
|
2120
2528
|
"active:bg-carbon-15/15",
|
|
2121
2529
|
"uds-ring",
|
|
2122
|
-
"absolute",
|
|
2123
|
-
"z-[4]"
|
|
2530
|
+
"absolute",
|
|
2531
|
+
"z-[4]"
|
|
2532
|
+
],
|
|
2533
|
+
"internalComponents": [
|
|
2534
|
+
"PopoverDismiss",
|
|
2535
|
+
"IconSlot",
|
|
2536
|
+
"PopoverArrow",
|
|
2537
|
+
"Popover",
|
|
2538
|
+
"SvgFloatingOverlay",
|
|
2539
|
+
"Box",
|
|
2540
|
+
"Pressable"
|
|
2541
|
+
],
|
|
2542
|
+
"internalComponentProps": {},
|
|
2543
|
+
"propToVariantKeys": { "closeIcon": ["icon"] },
|
|
2544
|
+
"runtimeConfigDefaultProps": {
|
|
2545
|
+
"size": "popover.defaultSize",
|
|
2546
|
+
"variant": "popover.defaultVariant"
|
|
2547
|
+
},
|
|
2548
|
+
"runtimeConfigGetStyles": {
|
|
2549
|
+
"spacingTop": ["popover.spacingVertical.${size}"],
|
|
2550
|
+
"spacingStart": ["popover.spacingHorizontal.${size}"],
|
|
2551
|
+
"spacingBottom": ["popover.spacingVertical.${size}"],
|
|
2552
|
+
"spacingEnd": ["popover.spacingHorizontal.${size}"]
|
|
2553
|
+
},
|
|
2554
|
+
"runtimeConfigInternalComponentProps": { "SvgFloatingOverlay": { "borderRadius": ["popover.borderRadius.${size}"] } },
|
|
2555
|
+
"motionVarPrefixes": []
|
|
2556
|
+
},
|
|
2557
|
+
PopoverContext: {
|
|
2558
|
+
"name": "PopoverContext",
|
|
2559
|
+
"defaultProps": {},
|
|
2560
|
+
"getStylesLiterals": {},
|
|
2561
|
+
"cxLiterals": [],
|
|
2562
|
+
"internalComponents": [],
|
|
2563
|
+
"internalComponentProps": {},
|
|
2564
|
+
"propToVariantKeys": {},
|
|
2565
|
+
"runtimeConfigDefaultProps": {},
|
|
2566
|
+
"runtimeConfigGetStyles": {},
|
|
2567
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2568
|
+
"motionVarPrefixes": []
|
|
2569
|
+
},
|
|
2570
|
+
PopoverTrigger: {
|
|
2571
|
+
"name": "PopoverTrigger",
|
|
2572
|
+
"defaultProps": {},
|
|
2573
|
+
"getStylesLiterals": {},
|
|
2574
|
+
"cxLiterals": [],
|
|
2575
|
+
"internalComponents": ["PopoverDisclosure"],
|
|
2576
|
+
"internalComponentProps": { "PopoverDisclosure": { "className": ["inline"] } },
|
|
2577
|
+
"propToVariantKeys": { "children": ["render"] },
|
|
2578
|
+
"runtimeConfigDefaultProps": {},
|
|
2579
|
+
"runtimeConfigGetStyles": {},
|
|
2580
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2581
|
+
"motionVarPrefixes": []
|
|
2582
|
+
},
|
|
2583
|
+
Popover: {
|
|
2584
|
+
"name": "Popover",
|
|
2585
|
+
"defaultProps": {},
|
|
2586
|
+
"getStylesLiterals": {},
|
|
2587
|
+
"cxLiterals": ["uds:popover-open"],
|
|
2588
|
+
"internalComponents": ["PopoverInternalContext.Provider", "PopoverProvider"],
|
|
2589
|
+
"internalComponentProps": {},
|
|
2590
|
+
"propToVariantKeys": {},
|
|
2591
|
+
"runtimeConfigDefaultProps": {
|
|
2592
|
+
"size": "popover.defaultSize",
|
|
2593
|
+
"variant": "popover.defaultVariant"
|
|
2594
|
+
},
|
|
2595
|
+
"runtimeConfigGetStyles": {},
|
|
2596
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2597
|
+
"motionVarPrefixes": []
|
|
2598
|
+
},
|
|
2599
|
+
ChipButton: {
|
|
2600
|
+
"name": "ChipButton",
|
|
2601
|
+
"defaultProps": { "variant": "primary" },
|
|
2602
|
+
"getStylesLiterals": {},
|
|
2603
|
+
"cxLiterals": ["uds-ring"],
|
|
2604
|
+
"internalComponents": ["ChipBase"],
|
|
2605
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
2606
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
2607
|
+
"runtimeConfigDefaultProps": {},
|
|
2608
|
+
"runtimeConfigGetStyles": {},
|
|
2609
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2610
|
+
"motionVarPrefixes": []
|
|
2611
|
+
},
|
|
2612
|
+
ChipDismissible: {
|
|
2613
|
+
"name": "ChipDismissible",
|
|
2614
|
+
"defaultProps": { "variant": "primary" },
|
|
2615
|
+
"getStylesLiterals": {},
|
|
2616
|
+
"cxLiterals": [
|
|
2617
|
+
"uds-chip-dismissible-button",
|
|
2618
|
+
"uds-hit-target",
|
|
2619
|
+
"uds-ring",
|
|
2620
|
+
"rounded-full"
|
|
2124
2621
|
],
|
|
2125
2622
|
"internalComponents": [
|
|
2126
|
-
"
|
|
2623
|
+
"ChipBase",
|
|
2127
2624
|
"IconSlot",
|
|
2128
|
-
"PopoverArrow",
|
|
2129
|
-
"Popover",
|
|
2130
|
-
"SvgFloatingOverlay",
|
|
2131
|
-
"Box",
|
|
2132
2625
|
"Pressable"
|
|
2133
2626
|
],
|
|
2134
2627
|
"internalComponentProps": {},
|
|
2135
|
-
"propToVariantKeys": {
|
|
2136
|
-
|
|
2137
|
-
"
|
|
2138
|
-
"variant": "popover.defaultVariant"
|
|
2139
|
-
},
|
|
2140
|
-
"runtimeConfigGetStyles": {
|
|
2141
|
-
"spacingTop": ["popover.spacingVertical.${size}"],
|
|
2142
|
-
"spacingStart": ["popover.spacingHorizontal.${size}"],
|
|
2143
|
-
"spacingBottom": ["popover.spacingVertical.${size}"],
|
|
2144
|
-
"spacingEnd": ["popover.spacingHorizontal.${size}"]
|
|
2628
|
+
"propToVariantKeys": {
|
|
2629
|
+
"variant": ["chipDismissibleVariantRoot", "chipDismissibleVariantIcon"],
|
|
2630
|
+
"dismissButtonAriaLabel": ["aria-label"]
|
|
2145
2631
|
},
|
|
2146
|
-
"
|
|
2632
|
+
"runtimeConfigDefaultProps": {},
|
|
2633
|
+
"runtimeConfigGetStyles": {},
|
|
2634
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2147
2635
|
"motionVarPrefixes": []
|
|
2148
2636
|
},
|
|
2149
|
-
|
|
2150
|
-
"name": "
|
|
2637
|
+
Chip: {
|
|
2638
|
+
"name": "Chip",
|
|
2151
2639
|
"defaultProps": {},
|
|
2152
2640
|
"getStylesLiterals": {},
|
|
2153
2641
|
"cxLiterals": [],
|
|
2154
|
-
"internalComponents": [
|
|
2642
|
+
"internalComponents": [
|
|
2643
|
+
"ChipDismissible",
|
|
2644
|
+
"ChipToggle",
|
|
2645
|
+
"ChipLink",
|
|
2646
|
+
"ChipButton"
|
|
2647
|
+
],
|
|
2155
2648
|
"internalComponentProps": {},
|
|
2156
2649
|
"propToVariantKeys": {},
|
|
2157
2650
|
"runtimeConfigDefaultProps": {},
|
|
@@ -2159,31 +2652,76 @@ var componentData_default = {
|
|
|
2159
2652
|
"runtimeConfigInternalComponentProps": {},
|
|
2160
2653
|
"motionVarPrefixes": []
|
|
2161
2654
|
},
|
|
2162
|
-
|
|
2163
|
-
"name": "
|
|
2164
|
-
"defaultProps": {
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
"
|
|
2169
|
-
|
|
2655
|
+
ChipToggle: {
|
|
2656
|
+
"name": "ChipToggle",
|
|
2657
|
+
"defaultProps": {
|
|
2658
|
+
"variant": "primary",
|
|
2659
|
+
"role": "checkbox"
|
|
2660
|
+
},
|
|
2661
|
+
"getStylesLiterals": {
|
|
2662
|
+
"chipToggleVariantActiveRoot": "on",
|
|
2663
|
+
"chipToggleVariantActiveRoot:1": "off"
|
|
2664
|
+
},
|
|
2665
|
+
"cxLiterals": ["uds-ring"],
|
|
2666
|
+
"internalComponents": ["ChipBase"],
|
|
2667
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
2668
|
+
"propToVariantKeys": { "variant": ["chipToggleVariantRoot", "chipToggleVariantIcon"] },
|
|
2170
2669
|
"runtimeConfigDefaultProps": {},
|
|
2171
2670
|
"runtimeConfigGetStyles": {},
|
|
2172
2671
|
"runtimeConfigInternalComponentProps": {},
|
|
2173
2672
|
"motionVarPrefixes": []
|
|
2174
2673
|
},
|
|
2175
|
-
|
|
2176
|
-
"name": "
|
|
2177
|
-
"defaultProps": {
|
|
2674
|
+
ChipBase: {
|
|
2675
|
+
"name": "ChipBase",
|
|
2676
|
+
"defaultProps": {
|
|
2677
|
+
"size": "md",
|
|
2678
|
+
"as": "div"
|
|
2679
|
+
},
|
|
2178
2680
|
"getStylesLiterals": {},
|
|
2179
|
-
"cxLiterals": [
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
"
|
|
2185
|
-
"
|
|
2681
|
+
"cxLiterals": [
|
|
2682
|
+
"pointer-events-none",
|
|
2683
|
+
"cursor-default",
|
|
2684
|
+
"opacity-50",
|
|
2685
|
+
"inline-flex",
|
|
2686
|
+
"items-center",
|
|
2687
|
+
"transition-[background-color,outline-color,box-shadow]",
|
|
2688
|
+
"truncate",
|
|
2689
|
+
"whitespace-nowrap",
|
|
2690
|
+
"text-center",
|
|
2691
|
+
"flex-1",
|
|
2692
|
+
"md",
|
|
2693
|
+
"primary"
|
|
2694
|
+
],
|
|
2695
|
+
"internalComponents": [
|
|
2696
|
+
"IconSlot",
|
|
2697
|
+
"HStack",
|
|
2698
|
+
"As",
|
|
2699
|
+
"Text"
|
|
2700
|
+
],
|
|
2701
|
+
"internalComponentProps": { "Text": {
|
|
2702
|
+
"as": ["span"],
|
|
2703
|
+
"color": ["current"],
|
|
2704
|
+
"variant": ["inherit"]
|
|
2705
|
+
} },
|
|
2706
|
+
"propToVariantKeys": {
|
|
2707
|
+
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
2708
|
+
"startIcon": ["icon"],
|
|
2709
|
+
"endIcon": ["icon"]
|
|
2186
2710
|
},
|
|
2711
|
+
"runtimeConfigDefaultProps": {},
|
|
2712
|
+
"runtimeConfigGetStyles": {},
|
|
2713
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2714
|
+
"motionVarPrefixes": []
|
|
2715
|
+
},
|
|
2716
|
+
ChipLink: {
|
|
2717
|
+
"name": "ChipLink",
|
|
2718
|
+
"defaultProps": { "variant": "primary" },
|
|
2719
|
+
"getStylesLiterals": {},
|
|
2720
|
+
"cxLiterals": ["uds-ring"],
|
|
2721
|
+
"internalComponents": ["ChipBase"],
|
|
2722
|
+
"internalComponentProps": { "ChipBase": { "as": ["a"] } },
|
|
2723
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
2724
|
+
"runtimeConfigDefaultProps": {},
|
|
2187
2725
|
"runtimeConfigGetStyles": {},
|
|
2188
2726
|
"runtimeConfigInternalComponentProps": {},
|
|
2189
2727
|
"motionVarPrefixes": []
|
|
@@ -2241,6 +2779,8 @@ var componentData_default = {
|
|
|
2241
2779
|
"cxLiterals": [
|
|
2242
2780
|
"opacity-50",
|
|
2243
2781
|
"min-w-[200px]",
|
|
2782
|
+
"uds-ring-shadow",
|
|
2783
|
+
"uds-ring-within",
|
|
2244
2784
|
"grow",
|
|
2245
2785
|
"uds-hit-target",
|
|
2246
2786
|
"bg-transparent",
|
|
@@ -2320,136 +2860,6 @@ var componentData_default = {
|
|
|
2320
2860
|
"runtimeConfigInternalComponentProps": {},
|
|
2321
2861
|
"motionVarPrefixes": []
|
|
2322
2862
|
},
|
|
2323
|
-
ChipButton: {
|
|
2324
|
-
"name": "ChipButton",
|
|
2325
|
-
"defaultProps": { "variant": "primary" },
|
|
2326
|
-
"getStylesLiterals": {},
|
|
2327
|
-
"cxLiterals": ["uds-ring"],
|
|
2328
|
-
"internalComponents": ["ChipBase"],
|
|
2329
|
-
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
2330
|
-
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
2331
|
-
"runtimeConfigDefaultProps": {},
|
|
2332
|
-
"runtimeConfigGetStyles": {},
|
|
2333
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2334
|
-
"motionVarPrefixes": []
|
|
2335
|
-
},
|
|
2336
|
-
ChipDismissible: {
|
|
2337
|
-
"name": "ChipDismissible",
|
|
2338
|
-
"defaultProps": { "variant": "primary" },
|
|
2339
|
-
"getStylesLiterals": {},
|
|
2340
|
-
"cxLiterals": [
|
|
2341
|
-
"uds-chip-dismissible-button",
|
|
2342
|
-
"uds-hit-target",
|
|
2343
|
-
"uds-ring",
|
|
2344
|
-
"rounded-full"
|
|
2345
|
-
],
|
|
2346
|
-
"internalComponents": [
|
|
2347
|
-
"ChipBase",
|
|
2348
|
-
"IconSlot",
|
|
2349
|
-
"Pressable"
|
|
2350
|
-
],
|
|
2351
|
-
"internalComponentProps": {},
|
|
2352
|
-
"propToVariantKeys": {
|
|
2353
|
-
"variant": ["chipDismissibleVariantRoot", "chipDismissibleVariantIcon"],
|
|
2354
|
-
"dismissButtonAriaLabel": ["aria-label"]
|
|
2355
|
-
},
|
|
2356
|
-
"runtimeConfigDefaultProps": {},
|
|
2357
|
-
"runtimeConfigGetStyles": {},
|
|
2358
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2359
|
-
"motionVarPrefixes": []
|
|
2360
|
-
},
|
|
2361
|
-
Chip: {
|
|
2362
|
-
"name": "Chip",
|
|
2363
|
-
"defaultProps": {},
|
|
2364
|
-
"getStylesLiterals": {},
|
|
2365
|
-
"cxLiterals": [],
|
|
2366
|
-
"internalComponents": [
|
|
2367
|
-
"ChipDismissible",
|
|
2368
|
-
"ChipToggle",
|
|
2369
|
-
"ChipLink",
|
|
2370
|
-
"ChipButton"
|
|
2371
|
-
],
|
|
2372
|
-
"internalComponentProps": {},
|
|
2373
|
-
"propToVariantKeys": {},
|
|
2374
|
-
"runtimeConfigDefaultProps": {},
|
|
2375
|
-
"runtimeConfigGetStyles": {},
|
|
2376
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2377
|
-
"motionVarPrefixes": []
|
|
2378
|
-
},
|
|
2379
|
-
ChipToggle: {
|
|
2380
|
-
"name": "ChipToggle",
|
|
2381
|
-
"defaultProps": {
|
|
2382
|
-
"variant": "primary",
|
|
2383
|
-
"role": "checkbox"
|
|
2384
|
-
},
|
|
2385
|
-
"getStylesLiterals": {
|
|
2386
|
-
"chipToggleVariantActiveRoot": "on",
|
|
2387
|
-
"chipToggleVariantActiveRoot:1": "off"
|
|
2388
|
-
},
|
|
2389
|
-
"cxLiterals": ["uds-ring"],
|
|
2390
|
-
"internalComponents": ["ChipBase"],
|
|
2391
|
-
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
2392
|
-
"propToVariantKeys": { "variant": ["chipToggleVariantRoot", "chipToggleVariantIcon"] },
|
|
2393
|
-
"runtimeConfigDefaultProps": {},
|
|
2394
|
-
"runtimeConfigGetStyles": {},
|
|
2395
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2396
|
-
"motionVarPrefixes": []
|
|
2397
|
-
},
|
|
2398
|
-
ChipBase: {
|
|
2399
|
-
"name": "ChipBase",
|
|
2400
|
-
"defaultProps": {
|
|
2401
|
-
"size": "md",
|
|
2402
|
-
"as": "div"
|
|
2403
|
-
},
|
|
2404
|
-
"getStylesLiterals": {},
|
|
2405
|
-
"cxLiterals": [
|
|
2406
|
-
"pointer-events-none",
|
|
2407
|
-
"cursor-default",
|
|
2408
|
-
"opacity-50",
|
|
2409
|
-
"inline-flex",
|
|
2410
|
-
"items-center",
|
|
2411
|
-
"transition-[background-color,outline-color,box-shadow]",
|
|
2412
|
-
"truncate",
|
|
2413
|
-
"whitespace-nowrap",
|
|
2414
|
-
"text-center",
|
|
2415
|
-
"flex-1",
|
|
2416
|
-
"md",
|
|
2417
|
-
"primary"
|
|
2418
|
-
],
|
|
2419
|
-
"internalComponents": [
|
|
2420
|
-
"IconSlot",
|
|
2421
|
-
"HStack",
|
|
2422
|
-
"As",
|
|
2423
|
-
"Text"
|
|
2424
|
-
],
|
|
2425
|
-
"internalComponentProps": { "Text": {
|
|
2426
|
-
"as": ["span"],
|
|
2427
|
-
"color": ["current"],
|
|
2428
|
-
"variant": ["inherit"]
|
|
2429
|
-
} },
|
|
2430
|
-
"propToVariantKeys": {
|
|
2431
|
-
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
2432
|
-
"startIcon": ["icon"],
|
|
2433
|
-
"endIcon": ["icon"]
|
|
2434
|
-
},
|
|
2435
|
-
"runtimeConfigDefaultProps": {},
|
|
2436
|
-
"runtimeConfigGetStyles": {},
|
|
2437
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2438
|
-
"motionVarPrefixes": []
|
|
2439
|
-
},
|
|
2440
|
-
ChipLink: {
|
|
2441
|
-
"name": "ChipLink",
|
|
2442
|
-
"defaultProps": { "variant": "primary" },
|
|
2443
|
-
"getStylesLiterals": {},
|
|
2444
|
-
"cxLiterals": ["uds-ring"],
|
|
2445
|
-
"internalComponents": ["ChipBase"],
|
|
2446
|
-
"internalComponentProps": { "ChipBase": { "as": ["a"] } },
|
|
2447
|
-
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
2448
|
-
"runtimeConfigDefaultProps": {},
|
|
2449
|
-
"runtimeConfigGetStyles": {},
|
|
2450
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2451
|
-
"motionVarPrefixes": []
|
|
2452
|
-
},
|
|
2453
2863
|
AvatarImage: {
|
|
2454
2864
|
"name": "AvatarImage",
|
|
2455
2865
|
"defaultProps": {
|