@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
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
|
+
"use client";
|
|
3
|
+
"use client";
|
|
4
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
5
|
+
require("../../../_virtual/_rolldown/runtime.cjs");
|
|
6
|
+
let react = require("react");
|
|
7
|
+
//#region src/components/client/Select/selectContext.tsx
|
|
8
|
+
const SelectFieldContext = (0, react.createContext)(null);
|
|
9
|
+
function useSelectFieldContext() {
|
|
10
|
+
const context = (0, react.useContext)(SelectFieldContext);
|
|
11
|
+
if (!context) throw new Error("Select subcomponents must be used within Select");
|
|
12
|
+
return context;
|
|
13
|
+
}
|
|
14
|
+
function useOptionalSelectFieldContext() {
|
|
15
|
+
return (0, react.useContext)(SelectFieldContext);
|
|
16
|
+
}
|
|
17
|
+
//#endregion
|
|
18
|
+
exports.SelectFieldContext = SelectFieldContext;
|
|
19
|
+
exports.useOptionalSelectFieldContext = useOptionalSelectFieldContext;
|
|
20
|
+
exports.useSelectFieldContext = useSelectFieldContext;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
2
|
+
import { SelectSize, UniversalBoxProps } from "../../../types/dist/index.cjs";
|
|
3
|
+
import * as _$react from "react";
|
|
4
|
+
import { RefObject } from "react";
|
|
5
|
+
|
|
6
|
+
//#region src/components/client/Select/selectContext.d.ts
|
|
7
|
+
type SelectFieldContextValue = {
|
|
8
|
+
size: SelectSize;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
readOnly?: boolean;
|
|
11
|
+
required?: boolean;
|
|
12
|
+
hasError?: boolean;
|
|
13
|
+
width?: UniversalBoxProps['width'];
|
|
14
|
+
reduceMotion?: boolean;
|
|
15
|
+
uid: string;
|
|
16
|
+
helpTextId?: string; /** Outer field wrapper; used to anchor SelectContent width and gutter. */
|
|
17
|
+
triggerWrapperRef: RefObject<HTMLDivElement | null>;
|
|
18
|
+
};
|
|
19
|
+
declare const SelectFieldContext: _$react.Context<SelectFieldContextValue | null>;
|
|
20
|
+
declare function useSelectFieldContext(): SelectFieldContextValue;
|
|
21
|
+
declare function useOptionalSelectFieldContext(): SelectFieldContextValue | null;
|
|
22
|
+
//#endregion
|
|
23
|
+
export { SelectFieldContext, type SelectFieldContextValue, useOptionalSelectFieldContext, useSelectFieldContext };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
|
|
2
|
+
"use client";
|
|
3
|
+
import { SelectSize, UniversalBoxProps } from "../../../types/dist/index.js";
|
|
4
|
+
import * as _$react from "react";
|
|
5
|
+
import { RefObject } from "react";
|
|
6
|
+
|
|
7
|
+
//#region src/components/client/Select/selectContext.d.ts
|
|
8
|
+
type SelectFieldContextValue = {
|
|
9
|
+
size: SelectSize;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
readOnly?: boolean;
|
|
12
|
+
required?: boolean;
|
|
13
|
+
hasError?: boolean;
|
|
14
|
+
width?: UniversalBoxProps['width'];
|
|
15
|
+
reduceMotion?: boolean;
|
|
16
|
+
uid: string;
|
|
17
|
+
helpTextId?: string; /** Outer field wrapper; used to anchor SelectContent width and gutter. */
|
|
18
|
+
triggerWrapperRef: RefObject<HTMLDivElement | null>;
|
|
19
|
+
};
|
|
20
|
+
declare const SelectFieldContext: _$react.Context<SelectFieldContextValue | null>;
|
|
21
|
+
declare function useSelectFieldContext(): SelectFieldContextValue;
|
|
22
|
+
declare function useOptionalSelectFieldContext(): SelectFieldContextValue | null;
|
|
23
|
+
//#endregion
|
|
24
|
+
export { SelectFieldContext, type SelectFieldContextValue, useOptionalSelectFieldContext, useSelectFieldContext };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
|
+
"use client";
|
|
3
|
+
"use client";
|
|
4
|
+
import { createContext, useContext } from "react";
|
|
5
|
+
//#region src/components/client/Select/selectContext.tsx
|
|
6
|
+
const SelectFieldContext = createContext(null);
|
|
7
|
+
function useSelectFieldContext() {
|
|
8
|
+
const context = useContext(SelectFieldContext);
|
|
9
|
+
if (!context) throw new Error("Select subcomponents must be used within Select");
|
|
10
|
+
return context;
|
|
11
|
+
}
|
|
12
|
+
function useOptionalSelectFieldContext() {
|
|
13
|
+
return useContext(SelectFieldContext);
|
|
14
|
+
}
|
|
15
|
+
//#endregion
|
|
16
|
+
export { SelectFieldContext, useOptionalSelectFieldContext, useSelectFieldContext };
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
|
+
"use client";
|
|
3
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
4
|
+
const require_styles_styler = require("../../../styles/styler.cjs");
|
|
5
|
+
//#region src/components/client/Select/selectFieldStyles.ts
|
|
6
|
+
function getSelectRootClassName({ size, hasValue, disabled, className }) {
|
|
7
|
+
return require_styles_styler.getStyles({
|
|
8
|
+
inputSizeRoot: size,
|
|
9
|
+
inputVariantRoot: "default",
|
|
10
|
+
inputVariantValueRoot: !hasValue ? "empty" : "filled",
|
|
11
|
+
className: require_styles_styler.cx([className, disabled ? "opacity-50" : ""])
|
|
12
|
+
});
|
|
13
|
+
}
|
|
14
|
+
function getSelectLabelClassName(size, hasValue) {
|
|
15
|
+
return require_styles_styler.cx(require_styles_styler.getStyles({
|
|
16
|
+
inputSizeLabel: size,
|
|
17
|
+
inputVariantLabel: "default",
|
|
18
|
+
inputVariantValueLabel: !hasValue ? "empty" : "filled"
|
|
19
|
+
}));
|
|
20
|
+
}
|
|
21
|
+
function getSelectLabelRequiredClassName(hasValue) {
|
|
22
|
+
return require_styles_styler.getStyles({
|
|
23
|
+
inputVariantLabelRequired: "default",
|
|
24
|
+
inputVariantValueLabelRequired: !hasValue ? "empty" : "filled"
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
/** Marks Select field triggers so Input `focus-within` wrapper rules skip them. */
|
|
28
|
+
const SELECT_FIELD_TRIGGER_CLASS = "uds-select-field-trigger";
|
|
29
|
+
function getSelectTriggerWrapperClassName(size, hasValue, className) {
|
|
30
|
+
return require_styles_styler.cx(require_styles_styler.getStyles({
|
|
31
|
+
inputSizeInputWrapperStatic: size,
|
|
32
|
+
inputSizeInputWrapperDynamic: size,
|
|
33
|
+
inputVariantInputWrapper: "default",
|
|
34
|
+
inputVariantValueInputWrapper: !hasValue ? "empty" : "filled"
|
|
35
|
+
}), "flex", "w-full", "items-center", "min-w-[200px]", "uds-ring-shadow", "uds-ring-within", SELECT_FIELD_TRIGGER_CLASS, className);
|
|
36
|
+
}
|
|
37
|
+
function getSelectTriggerClassName({ size, hasValue, disabled, className }) {
|
|
38
|
+
return require_styles_styler.getStyles({
|
|
39
|
+
inputSizeInput: size,
|
|
40
|
+
inputVariantInput: "default",
|
|
41
|
+
inputVariantValueInput: !hasValue ? "empty" : "filled",
|
|
42
|
+
inputVariantInputPlaceholder: "default",
|
|
43
|
+
inputVariantValueInputPlaceholder: !hasValue ? "empty" : "filled",
|
|
44
|
+
className: require_styles_styler.cx("grow", "bg-transparent", "bg-clip-text", "text-left", "focus-visible:outline-none", disabled ? "cursor-not-allowed" : "cursor-pointer", !hasValue && "text-muted", className)
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
function getSelectStartIconClassName(size, hasValue) {
|
|
48
|
+
return require_styles_styler.getStyles({
|
|
49
|
+
inputSizeStartIcon: size,
|
|
50
|
+
inputVariantStartIcon: "default",
|
|
51
|
+
inputVariantValueStartIcon: !hasValue ? "empty" : "filled"
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
function getSelectEndIconClassName(size, hasValue) {
|
|
55
|
+
return require_styles_styler.getStyles({
|
|
56
|
+
inputSizeEndIcon: size,
|
|
57
|
+
inputVariantEndIcon: "default",
|
|
58
|
+
inputVariantValueEndIcon: !hasValue ? "empty" : "filled"
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
function getSelectHelpTextClassName(size, hasValue) {
|
|
62
|
+
return require_styles_styler.cx(require_styles_styler.getStyles({
|
|
63
|
+
inputSizeHelperText: size,
|
|
64
|
+
inputVariantHelperText: "default",
|
|
65
|
+
inputVariantValueHelperText: !hasValue ? "empty" : "filled"
|
|
66
|
+
}));
|
|
67
|
+
}
|
|
68
|
+
function getSelectHelperIconClassName(size, hasValue) {
|
|
69
|
+
return require_styles_styler.getStyles({
|
|
70
|
+
inputSizeHelperIcon: size,
|
|
71
|
+
inputVariantHelperIcon: "default",
|
|
72
|
+
inputVariantValueHelperIcon: !hasValue ? "empty" : "filled"
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
//#endregion
|
|
76
|
+
exports.SELECT_FIELD_TRIGGER_CLASS = SELECT_FIELD_TRIGGER_CLASS;
|
|
77
|
+
exports.getSelectEndIconClassName = getSelectEndIconClassName;
|
|
78
|
+
exports.getSelectHelpTextClassName = getSelectHelpTextClassName;
|
|
79
|
+
exports.getSelectHelperIconClassName = getSelectHelperIconClassName;
|
|
80
|
+
exports.getSelectLabelClassName = getSelectLabelClassName;
|
|
81
|
+
exports.getSelectLabelRequiredClassName = getSelectLabelRequiredClassName;
|
|
82
|
+
exports.getSelectRootClassName = getSelectRootClassName;
|
|
83
|
+
exports.getSelectStartIconClassName = getSelectStartIconClassName;
|
|
84
|
+
exports.getSelectTriggerClassName = getSelectTriggerClassName;
|
|
85
|
+
exports.getSelectTriggerWrapperClassName = getSelectTriggerWrapperClassName;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
|
|
2
|
+
import { SelectSize } from "../../../types/dist/index.cjs";
|
|
3
|
+
//#region src/components/client/Select/selectFieldStyles.d.ts
|
|
4
|
+
type SelectTriggerStyleOptions = {
|
|
5
|
+
size: SelectSize;
|
|
6
|
+
hasValue: boolean;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
className?: string;
|
|
9
|
+
};
|
|
10
|
+
declare function getSelectRootClassName({
|
|
11
|
+
size,
|
|
12
|
+
hasValue,
|
|
13
|
+
disabled,
|
|
14
|
+
className
|
|
15
|
+
}: {
|
|
16
|
+
size: SelectSize;
|
|
17
|
+
hasValue: boolean;
|
|
18
|
+
disabled?: boolean;
|
|
19
|
+
className?: string;
|
|
20
|
+
}): string;
|
|
21
|
+
declare function getSelectLabelClassName(size: SelectSize, hasValue: boolean): string;
|
|
22
|
+
declare function getSelectLabelRequiredClassName(hasValue: boolean): string;
|
|
23
|
+
/** Marks Select field triggers so Input `focus-within` wrapper rules skip them. */
|
|
24
|
+
declare const SELECT_FIELD_TRIGGER_CLASS = "uds-select-field-trigger";
|
|
25
|
+
declare function getSelectTriggerWrapperClassName(size: SelectSize, hasValue: boolean, className?: string): string;
|
|
26
|
+
declare function getSelectTriggerClassName({
|
|
27
|
+
size,
|
|
28
|
+
hasValue,
|
|
29
|
+
disabled,
|
|
30
|
+
className
|
|
31
|
+
}: SelectTriggerStyleOptions): string;
|
|
32
|
+
declare function getSelectStartIconClassName(size: SelectSize, hasValue: boolean): string;
|
|
33
|
+
declare function getSelectEndIconClassName(size: SelectSize, hasValue: boolean): string;
|
|
34
|
+
declare function getSelectHelpTextClassName(size: SelectSize, hasValue: boolean): string;
|
|
35
|
+
declare function getSelectHelperIconClassName(size: SelectSize, hasValue: boolean): string;
|
|
36
|
+
//#endregion
|
|
37
|
+
export { SELECT_FIELD_TRIGGER_CLASS, getSelectEndIconClassName, getSelectHelpTextClassName, getSelectHelperIconClassName, getSelectLabelClassName, getSelectLabelRequiredClassName, getSelectRootClassName, getSelectStartIconClassName, getSelectTriggerClassName, getSelectTriggerWrapperClassName };
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
|
|
2
|
+
"use client";
|
|
3
|
+
import { SelectSize } from "../../../types/dist/index.js";
|
|
4
|
+
//#region src/components/client/Select/selectFieldStyles.d.ts
|
|
5
|
+
type SelectTriggerStyleOptions = {
|
|
6
|
+
size: SelectSize;
|
|
7
|
+
hasValue: boolean;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
className?: string;
|
|
10
|
+
};
|
|
11
|
+
declare function getSelectRootClassName({
|
|
12
|
+
size,
|
|
13
|
+
hasValue,
|
|
14
|
+
disabled,
|
|
15
|
+
className
|
|
16
|
+
}: {
|
|
17
|
+
size: SelectSize;
|
|
18
|
+
hasValue: boolean;
|
|
19
|
+
disabled?: boolean;
|
|
20
|
+
className?: string;
|
|
21
|
+
}): string;
|
|
22
|
+
declare function getSelectLabelClassName(size: SelectSize, hasValue: boolean): string;
|
|
23
|
+
declare function getSelectLabelRequiredClassName(hasValue: boolean): string;
|
|
24
|
+
/** Marks Select field triggers so Input `focus-within` wrapper rules skip them. */
|
|
25
|
+
declare const SELECT_FIELD_TRIGGER_CLASS = "uds-select-field-trigger";
|
|
26
|
+
declare function getSelectTriggerWrapperClassName(size: SelectSize, hasValue: boolean, className?: string): string;
|
|
27
|
+
declare function getSelectTriggerClassName({
|
|
28
|
+
size,
|
|
29
|
+
hasValue,
|
|
30
|
+
disabled,
|
|
31
|
+
className
|
|
32
|
+
}: SelectTriggerStyleOptions): string;
|
|
33
|
+
declare function getSelectStartIconClassName(size: SelectSize, hasValue: boolean): string;
|
|
34
|
+
declare function getSelectEndIconClassName(size: SelectSize, hasValue: boolean): string;
|
|
35
|
+
declare function getSelectHelpTextClassName(size: SelectSize, hasValue: boolean): string;
|
|
36
|
+
declare function getSelectHelperIconClassName(size: SelectSize, hasValue: boolean): string;
|
|
37
|
+
//#endregion
|
|
38
|
+
export { SELECT_FIELD_TRIGGER_CLASS, getSelectEndIconClassName, getSelectHelpTextClassName, getSelectHelperIconClassName, getSelectLabelClassName, getSelectLabelRequiredClassName, getSelectRootClassName, getSelectStartIconClassName, getSelectTriggerClassName, getSelectTriggerWrapperClassName };
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
|
+
"use client";
|
|
3
|
+
import { cx, getStyles } from "../../../styles/styler.js";
|
|
4
|
+
//#region src/components/client/Select/selectFieldStyles.ts
|
|
5
|
+
function getSelectRootClassName({ size, hasValue, disabled, className }) {
|
|
6
|
+
return getStyles({
|
|
7
|
+
inputSizeRoot: size,
|
|
8
|
+
inputVariantRoot: "default",
|
|
9
|
+
inputVariantValueRoot: !hasValue ? "empty" : "filled",
|
|
10
|
+
className: cx([className, disabled ? "opacity-50" : ""])
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
function getSelectLabelClassName(size, hasValue) {
|
|
14
|
+
return cx(getStyles({
|
|
15
|
+
inputSizeLabel: size,
|
|
16
|
+
inputVariantLabel: "default",
|
|
17
|
+
inputVariantValueLabel: !hasValue ? "empty" : "filled"
|
|
18
|
+
}));
|
|
19
|
+
}
|
|
20
|
+
function getSelectLabelRequiredClassName(hasValue) {
|
|
21
|
+
return getStyles({
|
|
22
|
+
inputVariantLabelRequired: "default",
|
|
23
|
+
inputVariantValueLabelRequired: !hasValue ? "empty" : "filled"
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
/** Marks Select field triggers so Input `focus-within` wrapper rules skip them. */
|
|
27
|
+
const SELECT_FIELD_TRIGGER_CLASS = "uds-select-field-trigger";
|
|
28
|
+
function getSelectTriggerWrapperClassName(size, hasValue, className) {
|
|
29
|
+
return cx(getStyles({
|
|
30
|
+
inputSizeInputWrapperStatic: size,
|
|
31
|
+
inputSizeInputWrapperDynamic: size,
|
|
32
|
+
inputVariantInputWrapper: "default",
|
|
33
|
+
inputVariantValueInputWrapper: !hasValue ? "empty" : "filled"
|
|
34
|
+
}), "flex", "w-full", "items-center", "min-w-[200px]", "uds-ring-shadow", "uds-ring-within", SELECT_FIELD_TRIGGER_CLASS, className);
|
|
35
|
+
}
|
|
36
|
+
function getSelectTriggerClassName({ size, hasValue, disabled, className }) {
|
|
37
|
+
return getStyles({
|
|
38
|
+
inputSizeInput: size,
|
|
39
|
+
inputVariantInput: "default",
|
|
40
|
+
inputVariantValueInput: !hasValue ? "empty" : "filled",
|
|
41
|
+
inputVariantInputPlaceholder: "default",
|
|
42
|
+
inputVariantValueInputPlaceholder: !hasValue ? "empty" : "filled",
|
|
43
|
+
className: cx("grow", "bg-transparent", "bg-clip-text", "text-left", "focus-visible:outline-none", disabled ? "cursor-not-allowed" : "cursor-pointer", !hasValue && "text-muted", className)
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
function getSelectStartIconClassName(size, hasValue) {
|
|
47
|
+
return getStyles({
|
|
48
|
+
inputSizeStartIcon: size,
|
|
49
|
+
inputVariantStartIcon: "default",
|
|
50
|
+
inputVariantValueStartIcon: !hasValue ? "empty" : "filled"
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
function getSelectEndIconClassName(size, hasValue) {
|
|
54
|
+
return getStyles({
|
|
55
|
+
inputSizeEndIcon: size,
|
|
56
|
+
inputVariantEndIcon: "default",
|
|
57
|
+
inputVariantValueEndIcon: !hasValue ? "empty" : "filled"
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
function getSelectHelpTextClassName(size, hasValue) {
|
|
61
|
+
return cx(getStyles({
|
|
62
|
+
inputSizeHelperText: size,
|
|
63
|
+
inputVariantHelperText: "default",
|
|
64
|
+
inputVariantValueHelperText: !hasValue ? "empty" : "filled"
|
|
65
|
+
}));
|
|
66
|
+
}
|
|
67
|
+
function getSelectHelperIconClassName(size, hasValue) {
|
|
68
|
+
return getStyles({
|
|
69
|
+
inputSizeHelperIcon: size,
|
|
70
|
+
inputVariantHelperIcon: "default",
|
|
71
|
+
inputVariantValueHelperIcon: !hasValue ? "empty" : "filled"
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
//#endregion
|
|
75
|
+
export { SELECT_FIELD_TRIGGER_CLASS, getSelectEndIconClassName, getSelectHelpTextClassName, getSelectHelperIconClassName, getSelectLabelClassName, getSelectLabelRequiredClassName, getSelectRootClassName, getSelectStartIconClassName, getSelectTriggerClassName, getSelectTriggerWrapperClassName };
|
|
@@ -56,6 +56,10 @@ const require_components_client_Tooltip_UDSTooltipConfigProvider = require("./To
|
|
|
56
56
|
const require_components_client_providers_UDSConfigProvider = require("./providers/UDSConfigProvider.cjs");
|
|
57
57
|
const require_components_client_Radio_Radio = require("./Radio/Radio.cjs");
|
|
58
58
|
const require_components_client_Radio_RadioGroupProvider = require("./Radio/RadioGroupProvider.cjs");
|
|
59
|
+
const require_components_client_Select_Select = require("./Select/Select.cjs");
|
|
60
|
+
const require_components_client_Select_SelectContent = require("./Select/SelectContent.cjs");
|
|
61
|
+
const require_components_client_Select_SelectDivider = require("./Select/SelectDivider.cjs");
|
|
62
|
+
const require_components_client_Select_SelectItem = require("./Select/SelectItem.cjs");
|
|
59
63
|
const require_components_client_Switch = require("./Switch.cjs");
|
|
60
64
|
const require_components_client_Tabs_Tab = require("./Tabs/Tab.cjs");
|
|
61
65
|
const require_components_client_Tabs_TabList = require("./Tabs/TabList.cjs");
|
|
@@ -118,6 +122,10 @@ exports.PopoverTrigger = require_components_client_Popover_PopoverTrigger.Popove
|
|
|
118
122
|
exports.Pressable = require_components_client_Pressable.Pressable;
|
|
119
123
|
exports.Radio = require_components_client_Radio_Radio.Radio;
|
|
120
124
|
exports.RadioGroupProvider = require_components_client_Radio_RadioGroupProvider.RadioGroupProvider;
|
|
125
|
+
exports.Select = require_components_client_Select_Select.Select;
|
|
126
|
+
exports.SelectContent = require_components_client_Select_SelectContent.SelectContent;
|
|
127
|
+
exports.SelectDivider = require_components_client_Select_SelectDivider.SelectDivider;
|
|
128
|
+
exports.SelectItem = require_components_client_Select_SelectItem.SelectItem;
|
|
121
129
|
exports.SpringMotionConfig = require_components_client_SpringMotionConfig.SpringMotionConfig;
|
|
122
130
|
exports.Switch = require_components_client_Switch.Switch;
|
|
123
131
|
exports.Tab = require_components_client_Tabs_Tab.Tab;
|
|
@@ -58,6 +58,10 @@ import { UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, useBre
|
|
|
58
58
|
import { UDSConfigProvider, UDSConfigProviderProps } from "./providers/UDSConfigProvider.cjs";
|
|
59
59
|
import { Radio, RadioProps } from "./Radio/Radio.cjs";
|
|
60
60
|
import { RadioGroupProvider, RadioGroupProviderProps } from "./Radio/RadioGroupProvider.cjs";
|
|
61
|
+
import { Select, SelectProps } from "./Select/Select.cjs";
|
|
62
|
+
import { SelectContent, SelectContentProps } from "./Select/SelectContent.cjs";
|
|
63
|
+
import { SelectDivider, SelectDividerProps } from "./Select/SelectDivider.cjs";
|
|
64
|
+
import { SelectItem, SelectItemProps } from "./Select/SelectItem.cjs";
|
|
61
65
|
import { Switch, SwitchProps } from "./Switch.cjs";
|
|
62
66
|
import { Tab, TabProps } from "./Tabs/Tab.cjs";
|
|
63
67
|
import { TabList, TabListProps } from "./Tabs/TabList.cjs";
|
|
@@ -74,4 +78,4 @@ import { TooltipContent } from "./Tooltip/TooltipContent.cjs";
|
|
|
74
78
|
import { TooltipTrigger } from "./Tooltip/TooltipTrigger.cjs";
|
|
75
79
|
import { UDSTooltipConfigProvider, UDSTooltipConfigProviderProps } from "./Tooltip/UDSTooltipConfigProvider.cjs";
|
|
76
80
|
import { Modal, ModalProps } from "./Modal/Modal.cjs";
|
|
77
|
-
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, BottomSheet, BottomSheetContent, type BottomSheetContentProps, type BottomSheetController, BottomSheetDismiss, type BottomSheetDismissProps, BottomSheetHeader, type BottomSheetHeaderProps, type BottomSheetProps, BottomSheetProvider, type BottomSheetProviderProps, BottomSheetTrigger, type BottomSheetTriggerProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, IconButton, type IconButtonProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Modal, type ModalAPI, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalPortal, type ModalProps, ModalTitle, type ModalTitleProps, PaddleButtonNext, type PaddleButtonNextProps, PaddleButtonPrevious, type PaddleButtonPreviousProps, PaddleNav, PaddleNavContent, type PaddleNavContentProps, type PaddleNavProps, Pagination, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationNumbers, type PaginationNumbersProps, PaginationPrev, type PaginationPrevProps, type PaginationProps, Popover, PopoverContent, type UniversalPopoverContentProps as PopoverContentProps, type UniversalPopoverProps as PopoverProps, PopoverTrigger, type UniversalPopoverTriggerProps as PopoverTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, type TabsVariant, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, Tooltip, TooltipContent, type UniversalTooltipContentProps as TooltipContentProps, type UniversalTooltipProps as TooltipProps, TooltipTrigger, type UniversalTooltipTriggerProps as TooltipTriggerProps, UDSBottomSheetConfigProvider, type UDSBottomSheetConfigProviderProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSModalConfigProvider, type UDSModalConfigProviderProps, UDSPopoverConfigProvider, type UDSPopoverConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
|
|
81
|
+
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, BottomSheet, BottomSheetContent, type BottomSheetContentProps, type BottomSheetController, BottomSheetDismiss, type BottomSheetDismissProps, BottomSheetHeader, type BottomSheetHeaderProps, type BottomSheetProps, BottomSheetProvider, type BottomSheetProviderProps, BottomSheetTrigger, type BottomSheetTriggerProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, IconButton, type IconButtonProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Modal, type ModalAPI, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalPortal, type ModalProps, ModalTitle, type ModalTitleProps, PaddleButtonNext, type PaddleButtonNextProps, PaddleButtonPrevious, type PaddleButtonPreviousProps, PaddleNav, PaddleNavContent, type PaddleNavContentProps, type PaddleNavProps, Pagination, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationNumbers, type PaginationNumbersProps, PaginationPrev, type PaginationPrevProps, type PaginationProps, Popover, PopoverContent, type UniversalPopoverContentProps as PopoverContentProps, type UniversalPopoverProps as PopoverProps, PopoverTrigger, type UniversalPopoverTriggerProps as PopoverTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, Select, SelectContent, type SelectContentProps, SelectDivider, type SelectDividerProps, SelectItem, type SelectItemProps, type SelectProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, type TabsVariant, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, Tooltip, TooltipContent, type UniversalTooltipContentProps as TooltipContentProps, type UniversalTooltipProps as TooltipProps, TooltipTrigger, type UniversalTooltipTriggerProps as TooltipTriggerProps, UDSBottomSheetConfigProvider, type UDSBottomSheetConfigProviderProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSModalConfigProvider, type UDSModalConfigProviderProps, UDSPopoverConfigProvider, type UDSPopoverConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
|
|
@@ -59,6 +59,10 @@ import { UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, useBre
|
|
|
59
59
|
import { UDSConfigProvider, UDSConfigProviderProps } from "./providers/UDSConfigProvider.js";
|
|
60
60
|
import { Radio, RadioProps } from "./Radio/Radio.js";
|
|
61
61
|
import { RadioGroupProvider, RadioGroupProviderProps } from "./Radio/RadioGroupProvider.js";
|
|
62
|
+
import { Select, SelectProps } from "./Select/Select.js";
|
|
63
|
+
import { SelectContent, SelectContentProps } from "./Select/SelectContent.js";
|
|
64
|
+
import { SelectDivider, SelectDividerProps } from "./Select/SelectDivider.js";
|
|
65
|
+
import { SelectItem, SelectItemProps } from "./Select/SelectItem.js";
|
|
62
66
|
import { Switch, SwitchProps } from "./Switch.js";
|
|
63
67
|
import { Tab, TabProps } from "./Tabs/Tab.js";
|
|
64
68
|
import { TabList, TabListProps } from "./Tabs/TabList.js";
|
|
@@ -75,4 +79,4 @@ import { TooltipContent } from "./Tooltip/TooltipContent.js";
|
|
|
75
79
|
import { TooltipTrigger } from "./Tooltip/TooltipTrigger.js";
|
|
76
80
|
import { UDSTooltipConfigProvider, UDSTooltipConfigProviderProps } from "./Tooltip/UDSTooltipConfigProvider.js";
|
|
77
81
|
import { Modal, ModalProps } from "./Modal/Modal.js";
|
|
78
|
-
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, BottomSheet, BottomSheetContent, type BottomSheetContentProps, type BottomSheetController, BottomSheetDismiss, type BottomSheetDismissProps, BottomSheetHeader, type BottomSheetHeaderProps, type BottomSheetProps, BottomSheetProvider, type BottomSheetProviderProps, BottomSheetTrigger, type BottomSheetTriggerProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, IconButton, type IconButtonProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Modal, type ModalAPI, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalPortal, type ModalProps, ModalTitle, type ModalTitleProps, PaddleButtonNext, type PaddleButtonNextProps, PaddleButtonPrevious, type PaddleButtonPreviousProps, PaddleNav, PaddleNavContent, type PaddleNavContentProps, type PaddleNavProps, Pagination, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationNumbers, type PaginationNumbersProps, PaginationPrev, type PaginationPrevProps, type PaginationProps, Popover, PopoverContent, type UniversalPopoverContentProps as PopoverContentProps, type UniversalPopoverProps as PopoverProps, PopoverTrigger, type UniversalPopoverTriggerProps as PopoverTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, type TabsVariant, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, Tooltip, TooltipContent, type UniversalTooltipContentProps as TooltipContentProps, type UniversalTooltipProps as TooltipProps, TooltipTrigger, type UniversalTooltipTriggerProps as TooltipTriggerProps, UDSBottomSheetConfigProvider, type UDSBottomSheetConfigProviderProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSModalConfigProvider, type UDSModalConfigProviderProps, UDSPopoverConfigProvider, type UDSPopoverConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
|
|
82
|
+
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, BottomSheet, BottomSheetContent, type BottomSheetContentProps, type BottomSheetController, BottomSheetDismiss, type BottomSheetDismissProps, BottomSheetHeader, type BottomSheetHeaderProps, type BottomSheetProps, BottomSheetProvider, type BottomSheetProviderProps, BottomSheetTrigger, type BottomSheetTriggerProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, IconButton, type IconButtonProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Modal, type ModalAPI, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalPortal, type ModalProps, ModalTitle, type ModalTitleProps, PaddleButtonNext, type PaddleButtonNextProps, PaddleButtonPrevious, type PaddleButtonPreviousProps, PaddleNav, PaddleNavContent, type PaddleNavContentProps, type PaddleNavProps, Pagination, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationNumbers, type PaginationNumbersProps, PaginationPrev, type PaginationPrevProps, type PaginationProps, Popover, PopoverContent, type UniversalPopoverContentProps as PopoverContentProps, type UniversalPopoverProps as PopoverProps, PopoverTrigger, type UniversalPopoverTriggerProps as PopoverTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, Select, SelectContent, type SelectContentProps, SelectDivider, type SelectDividerProps, SelectItem, type SelectItemProps, type SelectProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, type TabsVariant, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, Tooltip, TooltipContent, type UniversalTooltipContentProps as TooltipContentProps, type UniversalTooltipProps as TooltipProps, TooltipTrigger, type UniversalTooltipTriggerProps as TooltipTriggerProps, UDSBottomSheetConfigProvider, type UDSBottomSheetConfigProviderProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSModalConfigProvider, type UDSModalConfigProviderProps, UDSPopoverConfigProvider, type UDSPopoverConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
|
|
@@ -55,6 +55,10 @@ import { UDSTooltipConfigProvider } from "./Tooltip/UDSTooltipConfigProvider.js"
|
|
|
55
55
|
import { UDSConfigProvider } from "./providers/UDSConfigProvider.js";
|
|
56
56
|
import { Radio } from "./Radio/Radio.js";
|
|
57
57
|
import { RadioGroupProvider } from "./Radio/RadioGroupProvider.js";
|
|
58
|
+
import { Select } from "./Select/Select.js";
|
|
59
|
+
import { SelectContent } from "./Select/SelectContent.js";
|
|
60
|
+
import { SelectDivider } from "./Select/SelectDivider.js";
|
|
61
|
+
import { SelectItem } from "./Select/SelectItem.js";
|
|
58
62
|
import { Switch } from "./Switch.js";
|
|
59
63
|
import { Tab } from "./Tabs/Tab.js";
|
|
60
64
|
import { TabList } from "./Tabs/TabList.js";
|
|
@@ -67,4 +71,4 @@ import { ToastPortal } from "./Toast/ToastPortal.js";
|
|
|
67
71
|
import { Tooltip } from "./Tooltip/Tooltip.js";
|
|
68
72
|
import { TooltipContent } from "./Tooltip/TooltipContent.js";
|
|
69
73
|
import { TooltipTrigger } from "./Tooltip/TooltipTrigger.js";
|
|
70
|
-
export { Avatar, AvatarIcon, AvatarImage, AvatarText, Badge, BottomSheet, BottomSheetContent, BottomSheetDismiss, BottomSheetHeader, BottomSheetProvider, BottomSheetTrigger, Button, Checkbox, Chip, ChipButton, ChipDismissible, ChipLink, ChipToggle, IconButton, Input, InputHelpText, Menu_index_exports as Menu, Modal, ModalActions, ModalContent, ModalDescription, ModalPortal, ModalTitle, PaddleButtonNext, PaddleButtonPrevious, PaddleNav, PaddleNavContent, Pagination, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationNumbers, PaginationPrev, Popover, PopoverContent, PopoverTrigger, Pressable, Radio, RadioGroupProvider, SpringMotionConfig, Switch, Tab, TabList, TabPanel, Tabs, Toast, ToastContainer, ToastPortal, Tooltip, TooltipContent, TooltipTrigger, UDSBottomSheetConfigProvider, UDSBreakpointsConfigProvider, UDSConfigProvider, UDSModalConfigProvider, UDSPopoverConfigProvider, UDSToastConfigProvider, UDSTooltipConfigProvider, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
|
|
74
|
+
export { Avatar, AvatarIcon, AvatarImage, AvatarText, Badge, BottomSheet, BottomSheetContent, BottomSheetDismiss, BottomSheetHeader, BottomSheetProvider, BottomSheetTrigger, Button, Checkbox, Chip, ChipButton, ChipDismissible, ChipLink, ChipToggle, IconButton, Input, InputHelpText, Menu_index_exports as Menu, Modal, ModalActions, ModalContent, ModalDescription, ModalPortal, ModalTitle, PaddleButtonNext, PaddleButtonPrevious, PaddleNav, PaddleNavContent, Pagination, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationNumbers, PaginationPrev, Popover, PopoverContent, PopoverTrigger, Pressable, Radio, RadioGroupProvider, Select, SelectContent, SelectDivider, SelectItem, SpringMotionConfig, Switch, Tab, TabList, TabPanel, Tabs, Toast, ToastContainer, ToastPortal, Tooltip, TooltipContent, TooltipTrigger, UDSBottomSheetConfigProvider, UDSBreakpointsConfigProvider, UDSConfigProvider, UDSModalConfigProvider, UDSPopoverConfigProvider, UDSToastConfigProvider, UDSTooltipConfigProvider, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
|
|
@@ -70,6 +70,10 @@ const require_components_client_Tooltip_UDSTooltipConfigProvider = require("./cl
|
|
|
70
70
|
const require_components_client_providers_UDSConfigProvider = require("./client/providers/UDSConfigProvider.cjs");
|
|
71
71
|
const require_components_client_Radio_Radio = require("./client/Radio/Radio.cjs");
|
|
72
72
|
const require_components_client_Radio_RadioGroupProvider = require("./client/Radio/RadioGroupProvider.cjs");
|
|
73
|
+
const require_components_client_Select_Select = require("./client/Select/Select.cjs");
|
|
74
|
+
const require_components_client_Select_SelectContent = require("./client/Select/SelectContent.cjs");
|
|
75
|
+
const require_components_client_Select_SelectDivider = require("./client/Select/SelectDivider.cjs");
|
|
76
|
+
const require_components_client_Select_SelectItem = require("./client/Select/SelectItem.cjs");
|
|
73
77
|
const require_components_client_Switch = require("./client/Switch.cjs");
|
|
74
78
|
const require_components_client_Tabs_Tab = require("./client/Tabs/Tab.cjs");
|
|
75
79
|
const require_components_client_Tabs_TabList = require("./client/Tabs/TabList.cjs");
|
|
@@ -146,6 +150,10 @@ exports.Pressable = require_components_client_Pressable.Pressable;
|
|
|
146
150
|
exports.Radio = require_components_client_Radio_Radio.Radio;
|
|
147
151
|
exports.RadioGroupProvider = require_components_client_Radio_RadioGroupProvider.RadioGroupProvider;
|
|
148
152
|
exports.Scrim = require_components_Scrim.Scrim;
|
|
153
|
+
exports.Select = require_components_client_Select_Select.Select;
|
|
154
|
+
exports.SelectContent = require_components_client_Select_SelectContent.SelectContent;
|
|
155
|
+
exports.SelectDivider = require_components_client_Select_SelectDivider.SelectDivider;
|
|
156
|
+
exports.SelectItem = require_components_client_Select_SelectItem.SelectItem;
|
|
149
157
|
exports.SpringMotionConfig = require_components_client_SpringMotionConfig.SpringMotionConfig;
|
|
150
158
|
exports.Switch = require_components_client_Switch.Switch;
|
|
151
159
|
exports.Tab = require_components_client_Tabs_Tab.Tab;
|
|
@@ -73,6 +73,10 @@ import { UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, useBre
|
|
|
73
73
|
import { UDSConfigProvider, UDSConfigProviderProps } from "./client/providers/UDSConfigProvider.cjs";
|
|
74
74
|
import { Radio, RadioProps } from "./client/Radio/Radio.cjs";
|
|
75
75
|
import { RadioGroupProvider, RadioGroupProviderProps } from "./client/Radio/RadioGroupProvider.cjs";
|
|
76
|
+
import { Select, SelectProps } from "./client/Select/Select.cjs";
|
|
77
|
+
import { SelectContent, SelectContentProps } from "./client/Select/SelectContent.cjs";
|
|
78
|
+
import { SelectDivider, SelectDividerProps } from "./client/Select/SelectDivider.cjs";
|
|
79
|
+
import { SelectItem, SelectItemProps } from "./client/Select/SelectItem.cjs";
|
|
76
80
|
import { Switch, SwitchProps } from "./client/Switch.cjs";
|
|
77
81
|
import { Tab, TabProps } from "./client/Tabs/Tab.cjs";
|
|
78
82
|
import { TabList, TabListProps } from "./client/Tabs/TabList.cjs";
|
|
@@ -89,4 +93,4 @@ import { TooltipContent } from "./client/Tooltip/TooltipContent.cjs";
|
|
|
89
93
|
import { TooltipTrigger } from "./client/Tooltip/TooltipTrigger.cjs";
|
|
90
94
|
import { UDSTooltipConfigProvider, UDSTooltipConfigProviderProps } from "./client/Tooltip/UDSTooltipConfigProvider.cjs";
|
|
91
95
|
import { Modal, ModalProps } from "./client/Modal/Modal.cjs";
|
|
92
|
-
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, Banner, BannerContent, type BannerContentProps, BannerDescription, type BannerDescriptionProps, type BannerProps, BannerTitle, type BannerTitleProps, BottomSheet, BottomSheetContent, type BottomSheetContentProps, type BottomSheetController, BottomSheetDismiss, type BottomSheetDismissProps, BottomSheetHeader, type BottomSheetHeaderProps, type BottomSheetProps, BottomSheetProvider, type BottomSheetProviderProps, BottomSheetTrigger, type BottomSheetTriggerProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, Divider, DividerLabel, type DividerLabelProps, DividerLine, type DividerLineProps, type DividerProps, FormLabel, type FormLabelProps, HStack, type HStackProps, Icon, IconButton, type IconButtonProps, type IconProps, Image, type ImageProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Link, type LinkProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Modal, type ModalAPI, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalPortal, type ModalProps, ModalTitle, type ModalTitleProps, PaddleButtonNext, type PaddleButtonNextProps, PaddleButtonPrevious, type PaddleButtonPreviousProps, PaddleNav, PaddleNavContent, type PaddleNavContentProps, type PaddleNavProps, Pagination, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationNumbers, type PaginationNumbersProps, PaginationPrev, type PaginationPrevProps, type PaginationProps, Popover, PopoverContent, type UniversalPopoverContentProps as PopoverContentProps, type UniversalPopoverProps as PopoverProps, PopoverTrigger, type UniversalPopoverTriggerProps as PopoverTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, Scrim, type ScrimProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, type TabsVariant, Text, type TextProps, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, Tooltip, TooltipContent, type UniversalTooltipContentProps as TooltipContentProps, type UniversalTooltipProps as TooltipProps, TooltipTrigger, type UniversalTooltipTriggerProps as TooltipTriggerProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSModalConfigProvider, type UDSModalConfigProviderProps, UDSPopoverConfigProvider, type UDSPopoverConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, VStack, type VStackProps, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
|
|
96
|
+
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, Banner, BannerContent, type BannerContentProps, BannerDescription, type BannerDescriptionProps, type BannerProps, BannerTitle, type BannerTitleProps, BottomSheet, BottomSheetContent, type BottomSheetContentProps, type BottomSheetController, BottomSheetDismiss, type BottomSheetDismissProps, BottomSheetHeader, type BottomSheetHeaderProps, type BottomSheetProps, BottomSheetProvider, type BottomSheetProviderProps, BottomSheetTrigger, type BottomSheetTriggerProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, Divider, DividerLabel, type DividerLabelProps, DividerLine, type DividerLineProps, type DividerProps, FormLabel, type FormLabelProps, HStack, type HStackProps, Icon, IconButton, type IconButtonProps, type IconProps, Image, type ImageProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Link, type LinkProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Modal, type ModalAPI, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalPortal, type ModalProps, ModalTitle, type ModalTitleProps, PaddleButtonNext, type PaddleButtonNextProps, PaddleButtonPrevious, type PaddleButtonPreviousProps, PaddleNav, PaddleNavContent, type PaddleNavContentProps, type PaddleNavProps, Pagination, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationNumbers, type PaginationNumbersProps, PaginationPrev, type PaginationPrevProps, type PaginationProps, Popover, PopoverContent, type UniversalPopoverContentProps as PopoverContentProps, type UniversalPopoverProps as PopoverProps, PopoverTrigger, type UniversalPopoverTriggerProps as PopoverTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, Scrim, type ScrimProps, Select, SelectContent, type SelectContentProps, SelectDivider, type SelectDividerProps, SelectItem, type SelectItemProps, type SelectProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, type TabsVariant, Text, type TextProps, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, Tooltip, TooltipContent, type UniversalTooltipContentProps as TooltipContentProps, type UniversalTooltipProps as TooltipProps, TooltipTrigger, type UniversalTooltipTriggerProps as TooltipTriggerProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSModalConfigProvider, type UDSModalConfigProviderProps, UDSPopoverConfigProvider, type UDSPopoverConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, VStack, type VStackProps, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
|
|
@@ -73,6 +73,10 @@ import { UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, useBre
|
|
|
73
73
|
import { UDSConfigProvider, UDSConfigProviderProps } from "./client/providers/UDSConfigProvider.js";
|
|
74
74
|
import { Radio, RadioProps } from "./client/Radio/Radio.js";
|
|
75
75
|
import { RadioGroupProvider, RadioGroupProviderProps } from "./client/Radio/RadioGroupProvider.js";
|
|
76
|
+
import { Select, SelectProps } from "./client/Select/Select.js";
|
|
77
|
+
import { SelectContent, SelectContentProps } from "./client/Select/SelectContent.js";
|
|
78
|
+
import { SelectDivider, SelectDividerProps } from "./client/Select/SelectDivider.js";
|
|
79
|
+
import { SelectItem, SelectItemProps } from "./client/Select/SelectItem.js";
|
|
76
80
|
import { Switch, SwitchProps } from "./client/Switch.js";
|
|
77
81
|
import { Tab, TabProps } from "./client/Tabs/Tab.js";
|
|
78
82
|
import { TabList, TabListProps } from "./client/Tabs/TabList.js";
|
|
@@ -89,4 +93,4 @@ import { TooltipContent } from "./client/Tooltip/TooltipContent.js";
|
|
|
89
93
|
import { TooltipTrigger } from "./client/Tooltip/TooltipTrigger.js";
|
|
90
94
|
import { UDSTooltipConfigProvider, UDSTooltipConfigProviderProps } from "./client/Tooltip/UDSTooltipConfigProvider.js";
|
|
91
95
|
import { Modal, ModalProps } from "./client/Modal/Modal.js";
|
|
92
|
-
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, Banner, BannerContent, type BannerContentProps, BannerDescription, type BannerDescriptionProps, type BannerProps, BannerTitle, type BannerTitleProps, BottomSheet, BottomSheetContent, type BottomSheetContentProps, type BottomSheetController, BottomSheetDismiss, type BottomSheetDismissProps, BottomSheetHeader, type BottomSheetHeaderProps, type BottomSheetProps, BottomSheetProvider, type BottomSheetProviderProps, BottomSheetTrigger, type BottomSheetTriggerProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, Divider, DividerLabel, type DividerLabelProps, DividerLine, type DividerLineProps, type DividerProps, FormLabel, type FormLabelProps, HStack, type HStackProps, Icon, IconButton, type IconButtonProps, type IconProps, Image, type ImageProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Link, type LinkProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Modal, type ModalAPI, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalPortal, type ModalProps, ModalTitle, type ModalTitleProps, PaddleButtonNext, type PaddleButtonNextProps, PaddleButtonPrevious, type PaddleButtonPreviousProps, PaddleNav, PaddleNavContent, type PaddleNavContentProps, type PaddleNavProps, Pagination, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationNumbers, type PaginationNumbersProps, PaginationPrev, type PaginationPrevProps, type PaginationProps, Popover, PopoverContent, type UniversalPopoverContentProps as PopoverContentProps, type UniversalPopoverProps as PopoverProps, PopoverTrigger, type UniversalPopoverTriggerProps as PopoverTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, Scrim, type ScrimProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, type TabsVariant, Text, type TextProps, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, Tooltip, TooltipContent, type UniversalTooltipContentProps as TooltipContentProps, type UniversalTooltipProps as TooltipProps, TooltipTrigger, type UniversalTooltipTriggerProps as TooltipTriggerProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSModalConfigProvider, type UDSModalConfigProviderProps, UDSPopoverConfigProvider, type UDSPopoverConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, VStack, type VStackProps, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
|
|
96
|
+
export { Avatar, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarProps, AvatarText, type AvatarTextProps, Badge, type BadgeProps, Banner, BannerContent, type BannerContentProps, BannerDescription, type BannerDescriptionProps, type BannerProps, BannerTitle, type BannerTitleProps, BottomSheet, BottomSheetContent, type BottomSheetContentProps, type BottomSheetController, BottomSheetDismiss, type BottomSheetDismissProps, BottomSheetHeader, type BottomSheetHeaderProps, type BottomSheetProps, BottomSheetProvider, type BottomSheetProviderProps, BottomSheetTrigger, type BottomSheetTriggerProps, Box, type BoxProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, ChipButton, type ChipButtonProps, ChipDismissible, type ChipDismissibleProps, ChipLink, type ChipLinkProps, type ChipProps, ChipToggle, type ChipToggleProps, Divider, DividerLabel, type DividerLabelProps, DividerLine, type DividerLineProps, type DividerProps, FormLabel, type FormLabelProps, HStack, type HStackProps, Icon, IconButton, type IconButtonProps, type IconProps, Image, type ImageProps, Input, InputHelpText, type InputHelpTextProps, type InputProps, Link, type LinkProps, Menu_index_d_exports as Menu, type MenuContentProps, type MenuDividerProps, type MenuItemCheckboxProps, type MenuItemProps, type MenuPlacement, type MenuProviderProps, type MenuTriggerProps, Modal, type ModalAPI, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, ModalPortal, type ModalProps, ModalTitle, type ModalTitleProps, PaddleButtonNext, type PaddleButtonNextProps, PaddleButtonPrevious, type PaddleButtonPreviousProps, PaddleNav, PaddleNavContent, type PaddleNavContentProps, type PaddleNavProps, Pagination, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationNumbers, type PaginationNumbersProps, PaginationPrev, type PaginationPrevProps, type PaginationProps, Popover, PopoverContent, type UniversalPopoverContentProps as PopoverContentProps, type UniversalPopoverProps as PopoverProps, PopoverTrigger, type UniversalPopoverTriggerProps as PopoverTriggerProps, Pressable, type PressableProps, Radio, RadioGroupProvider, type RadioGroupProviderProps, type RadioProps, Scrim, type ScrimProps, Select, SelectContent, type SelectContentProps, SelectDivider, type SelectDividerProps, SelectItem, type SelectItemProps, type SelectProps, SpringMotionConfig, type SpringMotionConfigProps, Switch, type SwitchProps, Tab, TabList, type TabListProps, TabPanel, type TabPanelProps, type TabProps, Tabs, type TabsProps, type TabsVariant, Text, type TextProps, Toast, ToastContainer, type ToastContainerProps, type ToastLoadingPromise, ToastPortal, type ToastPortalProps, type ToastProps, Tooltip, TooltipContent, type UniversalTooltipContentProps as TooltipContentProps, type UniversalTooltipProps as TooltipProps, TooltipTrigger, type UniversalTooltipTriggerProps as TooltipTriggerProps, UDSBreakpointsConfigProvider, type UDSBreakpointsConfigProviderProps, UDSConfigProvider, type UDSConfigProviderProps, UDSModalConfigProvider, type UDSModalConfigProviderProps, UDSPopoverConfigProvider, type UDSPopoverConfigProviderProps, UDSToastConfigProvider, type UDSToastConfigProviderProps, UDSTooltipConfigProvider, type UDSTooltipConfigProviderProps, VStack, type VStackProps, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
|
package/dist/components/index.js
CHANGED
|
@@ -69,6 +69,10 @@ import { UDSTooltipConfigProvider } from "./client/Tooltip/UDSTooltipConfigProvi
|
|
|
69
69
|
import { UDSConfigProvider } from "./client/providers/UDSConfigProvider.js";
|
|
70
70
|
import { Radio } from "./client/Radio/Radio.js";
|
|
71
71
|
import { RadioGroupProvider } from "./client/Radio/RadioGroupProvider.js";
|
|
72
|
+
import { Select } from "./client/Select/Select.js";
|
|
73
|
+
import { SelectContent } from "./client/Select/SelectContent.js";
|
|
74
|
+
import { SelectDivider } from "./client/Select/SelectDivider.js";
|
|
75
|
+
import { SelectItem } from "./client/Select/SelectItem.js";
|
|
72
76
|
import { Switch } from "./client/Switch.js";
|
|
73
77
|
import { Tab } from "./client/Tabs/Tab.js";
|
|
74
78
|
import { TabList } from "./client/Tabs/TabList.js";
|
|
@@ -81,4 +85,4 @@ import { ToastPortal } from "./client/Toast/ToastPortal.js";
|
|
|
81
85
|
import { Tooltip } from "./client/Tooltip/Tooltip.js";
|
|
82
86
|
import { TooltipContent } from "./client/Tooltip/TooltipContent.js";
|
|
83
87
|
import { TooltipTrigger } from "./client/Tooltip/TooltipTrigger.js";
|
|
84
|
-
export { Avatar, AvatarIcon, AvatarImage, AvatarText, Badge, Banner, BannerContent, BannerDescription, BannerTitle, BottomSheet, BottomSheetContent, BottomSheetDismiss, BottomSheetHeader, BottomSheetProvider, BottomSheetTrigger, Box, Button, Checkbox, Chip, ChipButton, ChipDismissible, ChipLink, ChipToggle, Divider, DividerLabel, DividerLine, FormLabel, HStack, Icon, IconButton, Image, Input, InputHelpText, Link, Menu_index_exports as Menu, Modal, ModalActions, ModalContent, ModalDescription, ModalPortal, ModalTitle, PaddleButtonNext, PaddleButtonPrevious, PaddleNav, PaddleNavContent, Pagination, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationNumbers, PaginationPrev, Popover, PopoverContent, PopoverTrigger, Pressable, Radio, RadioGroupProvider, Scrim, SpringMotionConfig, Switch, Tab, TabList, TabPanel, Tabs, Text, Toast, ToastContainer, ToastPortal, Tooltip, TooltipContent, TooltipTrigger, UDSBreakpointsConfigProvider, UDSConfigProvider, UDSModalConfigProvider, UDSPopoverConfigProvider, UDSToastConfigProvider, UDSTooltipConfigProvider, VStack, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
|
|
88
|
+
export { Avatar, AvatarIcon, AvatarImage, AvatarText, Badge, Banner, BannerContent, BannerDescription, BannerTitle, BottomSheet, BottomSheetContent, BottomSheetDismiss, BottomSheetHeader, BottomSheetProvider, BottomSheetTrigger, Box, Button, Checkbox, Chip, ChipButton, ChipDismissible, ChipLink, ChipToggle, Divider, DividerLabel, DividerLine, FormLabel, HStack, Icon, IconButton, Image, Input, InputHelpText, Link, Menu_index_exports as Menu, Modal, ModalActions, ModalContent, ModalDescription, ModalPortal, ModalTitle, PaddleButtonNext, PaddleButtonPrevious, PaddleNav, PaddleNavContent, Pagination, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationNumbers, PaginationPrev, Popover, PopoverContent, PopoverTrigger, Pressable, Radio, RadioGroupProvider, Scrim, Select, SelectContent, SelectDivider, SelectItem, SpringMotionConfig, Switch, Tab, TabList, TabPanel, Tabs, Text, Toast, ToastContainer, ToastPortal, Tooltip, TooltipContent, TooltipTrigger, UDSBreakpointsConfigProvider, UDSConfigProvider, UDSModalConfigProvider, UDSPopoverConfigProvider, UDSToastConfigProvider, UDSTooltipConfigProvider, VStack, createModal, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
|