@yahoo/uds 3.157.1 → 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 +3220 -545
- package/dist/automated-config/dist/generated/generatedConfigs.d.cts +335 -11
- package/dist/automated-config/dist/generated/generatedConfigs.d.ts +335 -11
- package/dist/automated-config/dist/generated/generatedConfigs.js +3218 -546
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +275 -44
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +4 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.ts +4 -1
- package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +275 -44
- package/dist/automated-config/dist/types/ComponentConfig.d.cts +3 -1
- package/dist/automated-config/dist/types/ComponentConfig.d.ts +3 -1
- package/dist/automated-config/dist/utils/buildConfigSchema.cjs +43 -35
- package/dist/automated-config/dist/utils/buildConfigSchema.d.cts +4 -1
- package/dist/automated-config/dist/utils/buildConfigSchema.d.ts +4 -1
- package/dist/automated-config/dist/utils/buildConfigSchema.js +44 -36
- package/dist/automated-config/dist/utils/componentStatePseudoStates.cjs +4 -0
- package/dist/automated-config/dist/utils/componentStatePseudoStates.js +4 -1
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.cjs +5 -2
- package/dist/automated-config/dist/utils/getConfigVariantPseudoStates.js +6 -3
- package/dist/automated-config/dist/utils/index.cjs +21 -5
- package/dist/automated-config/dist/utils/index.d.cts +1 -0
- package/dist/automated-config/dist/utils/index.d.ts +1 -0
- package/dist/automated-config/dist/utils/index.js +22 -6
- package/dist/automated-config/dist/utils/pseudoStateSelectors.cjs +6 -3
- package/dist/automated-config/dist/utils/pseudoStateSelectors.d.cts +1 -1
- package/dist/automated-config/dist/utils/pseudoStateSelectors.d.ts +1 -1
- package/dist/automated-config/dist/utils/pseudoStateSelectors.js +6 -3
- package/dist/components/client/Input/Input.cjs +1 -1
- package/dist/components/client/Input/Input.js +1 -1
- package/dist/components/client/Menu/Menu.Item.cjs +1 -0
- package/dist/components/client/Menu/Menu.Item.js +1 -0
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
- package/dist/components/client/Select/Select.cjs +179 -0
- package/dist/components/client/Select/Select.d.cts +55 -0
- package/dist/components/client/Select/Select.d.ts +56 -0
- package/dist/components/client/Select/Select.js +176 -0
- package/dist/components/client/Select/SelectContent.cjs +75 -0
- package/dist/components/client/Select/SelectContent.d.cts +44 -0
- package/dist/components/client/Select/SelectContent.d.ts +45 -0
- package/dist/components/client/Select/SelectContent.js +73 -0
- package/dist/components/client/Select/SelectDivider.cjs +63 -0
- package/dist/components/client/Select/SelectDivider.d.cts +44 -0
- package/dist/components/client/Select/SelectDivider.d.ts +45 -0
- package/dist/components/client/Select/SelectDivider.js +61 -0
- package/dist/components/client/Select/SelectHelpText.cjs +51 -0
- package/dist/components/client/Select/SelectHelpText.d.cts +27 -0
- package/dist/components/client/Select/SelectHelpText.d.ts +28 -0
- package/dist/components/client/Select/SelectHelpText.js +48 -0
- package/dist/components/client/Select/SelectItem.cjs +172 -0
- package/dist/components/client/Select/SelectItem.d.cts +29 -0
- package/dist/components/client/Select/SelectItem.d.ts +30 -0
- package/dist/components/client/Select/SelectItem.js +170 -0
- package/dist/components/client/Select/SelectTrigger.cjs +138 -0
- package/dist/components/client/Select/SelectTrigger.d.cts +27 -0
- package/dist/components/client/Select/SelectTrigger.d.ts +28 -0
- package/dist/components/client/Select/SelectTrigger.js +136 -0
- package/dist/components/client/Select/SelectValue.cjs +28 -0
- package/dist/components/client/Select/SelectValue.d.cts +19 -0
- package/dist/components/client/Select/SelectValue.d.ts +20 -0
- package/dist/components/client/Select/SelectValue.js +26 -0
- package/dist/components/client/Select/index.cjs +11 -0
- package/dist/components/client/Select/index.d.cts +6 -0
- package/dist/components/client/Select/index.d.ts +7 -0
- package/dist/components/client/Select/index.js +7 -0
- package/dist/components/client/Select/selectContext.cjs +20 -0
- package/dist/components/client/Select/selectContext.d.cts +23 -0
- package/dist/components/client/Select/selectContext.d.ts +24 -0
- package/dist/components/client/Select/selectContext.js +16 -0
- package/dist/components/client/Select/selectFieldStyles.cjs +85 -0
- package/dist/components/client/Select/selectFieldStyles.d.cts +37 -0
- package/dist/components/client/Select/selectFieldStyles.d.ts +38 -0
- package/dist/components/client/Select/selectFieldStyles.js +75 -0
- package/dist/components/client/index.cjs +8 -0
- package/dist/components/client/index.d.cts +5 -1
- package/dist/components/client/index.d.ts +5 -1
- package/dist/components/client/index.js +5 -1
- package/dist/components/index.cjs +8 -0
- package/dist/components/index.d.cts +5 -1
- package/dist/components/index.d.ts +5 -1
- package/dist/components/index.js +5 -1
- package/dist/config/dist/index.cjs +380 -70
- package/dist/config/dist/index.js +380 -70
- package/dist/css/dist/css/utils.cjs +3 -0
- package/dist/css/dist/css/utils.js +3 -0
- package/dist/css/dist/packages/config/dist/index.cjs +380 -70
- package/dist/css/dist/packages/config/dist/index.js +380 -70
- package/dist/index.cjs +11 -0
- package/dist/index.d.cts +7 -3
- package/dist/index.d.ts +7 -3
- package/dist/index.js +6 -2
- package/dist/styles/styler.d.cts +17 -0
- package/dist/styles/styler.d.ts +17 -0
- package/dist/styles/variants.d.cts +54 -0
- package/dist/styles/variants.d.ts +54 -0
- package/dist/tailwind/utils/index.cjs +3 -0
- package/dist/tailwind/utils/index.d.cts +2 -1
- package/dist/tailwind/utils/index.d.ts +2 -1
- package/dist/tailwind/utils/index.js +2 -1
- package/dist/tailwind-internal/dist/base/addColorModeVars.cjs +1 -1
- package/dist/tailwind-internal/dist/base/addColorModeVars.js +1 -1
- package/dist/tailwind-internal/dist/base/addColorModeVarsV2.cjs +1 -1
- package/dist/tailwind-internal/dist/base/addColorModeVarsV2.js +1 -1
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.cjs +74 -6
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.d.cts +14 -0
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.d.ts +14 -0
- package/dist/tailwind-internal/dist/components/getFocusRingStyles.js +74 -7
- package/dist/tailwind-internal/dist/components/getResponsiveTextStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/components/getResponsiveTextStyles.js +1 -1
- package/dist/tailwind-internal/dist/index.d.cts +1 -0
- package/dist/tailwind-internal/dist/index.d.ts +1 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.cjs +3220 -545
- package/dist/tailwind-internal/dist/packages/automated-config/dist/generated/generatedConfigs.js +3218 -546
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.cjs +4 -0
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/componentStatePseudoStates.js +4 -1
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.cjs +21 -5
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/index.js +22 -6
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.cjs +6 -3
- package/dist/tailwind-internal/dist/packages/automated-config/dist/utils/pseudoStateSelectors.js +6 -3
- package/dist/tailwind-internal/dist/packages/config/dist/index.cjs +380 -70
- package/dist/tailwind-internal/dist/packages/config/dist/index.js +380 -70
- package/dist/tailwind-internal/dist/packages/css-tokens/dist/index.cjs +10 -10
- package/dist/tailwind-internal/dist/packages/css-tokens/dist/index.js +1 -1
- package/dist/tailwind-internal/dist/plugins/a11y.cjs +6 -2
- package/dist/tailwind-internal/dist/plugins/a11y.js +6 -2
- package/dist/tailwind-internal/dist/plugins/blurBgFallback.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/blurBgFallback.js +1 -1
- package/dist/tailwind-internal/dist/plugins/borderRadius.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/borderRadius.js +1 -1
- package/dist/tailwind-internal/dist/plugins/borderWidth.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/borderWidth.js +1 -1
- package/dist/tailwind-internal/dist/plugins/colors.cjs +2 -2
- package/dist/tailwind-internal/dist/plugins/colors.js +2 -2
- package/dist/tailwind-internal/dist/plugins/components.cjs +4 -1
- package/dist/tailwind-internal/dist/plugins/components.js +5 -2
- package/dist/tailwind-internal/dist/plugins/elevation.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/elevation.js +1 -1
- package/dist/tailwind-internal/dist/plugins/shadows.cjs +1 -1
- package/dist/tailwind-internal/dist/plugins/shadows.js +1 -1
- package/dist/tailwind-internal/dist/plugins/typography.cjs +2 -2
- package/dist/tailwind-internal/dist/plugins/typography.js +2 -2
- package/dist/tailwind-internal/dist/utils/getElevationStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getElevationStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/getFontStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getFontStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/getMotionStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getMotionStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowPresetValues.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowPresetValues.js +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowStyles.cjs +1 -1
- package/dist/tailwind-internal/dist/utils/getShadowStyles.js +1 -1
- package/dist/tailwind-internal/dist/utils/parseTokens.cjs +2 -2
- package/dist/tailwind-internal/dist/utils/parseTokens.js +2 -2
- package/dist/tokens/automation/configs/index.cjs +3 -0
- package/dist/tokens/automation/configs/index.d.cts +2 -2
- package/dist/tokens/automation/configs/index.d.ts +2 -2
- package/dist/tokens/automation/configs/index.js +2 -2
- package/dist/tokens/automation/index.cjs +3 -0
- package/dist/tokens/automation/index.d.cts +2 -2
- package/dist/tokens/automation/index.d.ts +2 -2
- package/dist/tokens/automation/index.js +2 -2
- package/dist/tokens/index.cjs +3 -0
- package/dist/tokens/index.d.cts +3 -3
- package/dist/tokens/index.d.ts +3 -3
- package/dist/tokens/index.js +2 -2
- package/dist/tokens/types.d.cts +2 -2
- package/dist/tokens/types.d.ts +2 -2
- package/dist/types/dist/index.d.cts +36 -1
- package/dist/types/dist/index.d.ts +36 -1
- package/dist/uds/generated/componentData.cjs +407 -0
- package/dist/uds/generated/componentData.js +407 -0
- 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 +496 -0
- package/generated/migrationSchemaVersion.ts +1 -1
- package/generated/tailwindPurge.ts +4 -4
- package/package.json +1 -1
|
@@ -1077,6 +1077,7 @@ var componentData_default = {
|
|
|
1077
1077
|
"menuitemItemVariantRoot": "default",
|
|
1078
1078
|
"menuitemItemVariantActiveRoot": "on",
|
|
1079
1079
|
"menuitemItemVariantActiveRoot:1": "off",
|
|
1080
|
+
"menuitemSizeText": "default",
|
|
1080
1081
|
"menuitemItemVariantText": "default",
|
|
1081
1082
|
"menuitemItemVariantActiveText": "on",
|
|
1082
1083
|
"menuitemItemVariantActiveText:1": "off",
|
|
@@ -1670,6 +1671,410 @@ var componentData_default = {
|
|
|
1670
1671
|
"runtimeConfigInternalComponentProps": {},
|
|
1671
1672
|
"motionVarPrefixes": []
|
|
1672
1673
|
},
|
|
1674
|
+
Select: {
|
|
1675
|
+
"name": "Select",
|
|
1676
|
+
"defaultProps": {
|
|
1677
|
+
"size": "md",
|
|
1678
|
+
"width": "full",
|
|
1679
|
+
"defaultValue": ""
|
|
1680
|
+
},
|
|
1681
|
+
"getStylesLiterals": {
|
|
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"
|
|
1712
|
+
},
|
|
1713
|
+
"cxLiterals": [
|
|
1714
|
+
"opacity-50",
|
|
1715
|
+
"flex",
|
|
1716
|
+
"w-full",
|
|
1717
|
+
"items-center",
|
|
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"
|
|
1730
|
+
],
|
|
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
|
+
] },
|
|
1760
|
+
"runtimeConfigDefaultProps": {},
|
|
1761
|
+
"runtimeConfigGetStyles": {},
|
|
1762
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1763
|
+
"motionVarPrefixes": ["--uds-motion-subtle-3-", "--uds-motion-smooth-3-"]
|
|
1764
|
+
},
|
|
1765
|
+
SelectContent: {
|
|
1766
|
+
"name": "SelectContent",
|
|
1767
|
+
"defaultProps": {
|
|
1768
|
+
"size": "default",
|
|
1769
|
+
"variant": "default"
|
|
1770
|
+
},
|
|
1771
|
+
"getStylesLiterals": {},
|
|
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
|
+
},
|
|
1783
|
+
"runtimeConfigDefaultProps": {},
|
|
1784
|
+
"runtimeConfigGetStyles": {},
|
|
1785
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1786
|
+
"motionVarPrefixes": []
|
|
1787
|
+
},
|
|
1788
|
+
SelectHelpText: {
|
|
1789
|
+
"name": "SelectHelpText",
|
|
1790
|
+
"defaultProps": {},
|
|
1791
|
+
"getStylesLiterals": {
|
|
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"
|
|
1822
|
+
},
|
|
1823
|
+
"cxLiterals": [
|
|
1824
|
+
"opacity-50",
|
|
1825
|
+
"flex",
|
|
1826
|
+
"w-full",
|
|
1827
|
+
"items-center",
|
|
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",
|
|
1838
|
+
"cursor-pointer",
|
|
1839
|
+
"text-muted"
|
|
1840
|
+
],
|
|
1841
|
+
"internalComponents": [
|
|
1842
|
+
"IconSlot",
|
|
1843
|
+
"AnimateHeightChange",
|
|
1844
|
+
"HStack"
|
|
1845
|
+
],
|
|
1846
|
+
"internalComponentProps": {
|
|
1847
|
+
"AnimateHeightChange": { "layoutVariant": ["bouncy"] },
|
|
1848
|
+
"HStack": {
|
|
1849
|
+
"gap": ["1"],
|
|
1850
|
+
"alignItems": ["center"],
|
|
1851
|
+
"spacingTop": ["2"]
|
|
1852
|
+
}
|
|
1853
|
+
},
|
|
1854
|
+
"propToVariantKeys": {
|
|
1855
|
+
"size": [
|
|
1856
|
+
"inputSizeRoot",
|
|
1857
|
+
"inputSizeLabel",
|
|
1858
|
+
"inputSizeInputWrapperStatic",
|
|
1859
|
+
"inputSizeInputWrapperDynamic",
|
|
1860
|
+
"inputSizeInput",
|
|
1861
|
+
"inputSizeStartIcon",
|
|
1862
|
+
"inputSizeEndIcon",
|
|
1863
|
+
"inputSizeHelperText",
|
|
1864
|
+
"inputSizeHelperIcon"
|
|
1865
|
+
],
|
|
1866
|
+
"helperTextIcon": ["icon"]
|
|
1867
|
+
},
|
|
1868
|
+
"runtimeConfigDefaultProps": {},
|
|
1869
|
+
"runtimeConfigGetStyles": {},
|
|
1870
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1871
|
+
"motionVarPrefixes": []
|
|
1872
|
+
},
|
|
1873
|
+
SelectValue: {
|
|
1874
|
+
"name": "SelectValue",
|
|
1875
|
+
"defaultProps": {},
|
|
1876
|
+
"getStylesLiterals": {},
|
|
1877
|
+
"cxLiterals": [],
|
|
1878
|
+
"internalComponents": ["AriakitSelectValue"],
|
|
1879
|
+
"internalComponentProps": {},
|
|
1880
|
+
"propToVariantKeys": {},
|
|
1881
|
+
"runtimeConfigDefaultProps": {},
|
|
1882
|
+
"runtimeConfigGetStyles": {},
|
|
1883
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1884
|
+
"motionVarPrefixes": []
|
|
1885
|
+
},
|
|
1886
|
+
SelectTrigger: {
|
|
1887
|
+
"name": "SelectTrigger",
|
|
1888
|
+
"defaultProps": {},
|
|
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
|
+
},
|
|
1673
2078
|
UDSConfigProvider: {
|
|
1674
2079
|
"name": "UDSConfigProvider",
|
|
1675
2080
|
"defaultProps": {},
|
|
@@ -2374,6 +2779,8 @@ var componentData_default = {
|
|
|
2374
2779
|
"cxLiterals": [
|
|
2375
2780
|
"opacity-50",
|
|
2376
2781
|
"min-w-[200px]",
|
|
2782
|
+
"uds-ring-shadow",
|
|
2783
|
+
"uds-ring-within",
|
|
2377
2784
|
"grow",
|
|
2378
2785
|
"uds-hit-target",
|
|
2379
2786
|
"bg-transparent",
|