@yahoo/uds 3.141.0 → 3.142.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.
Files changed (64) hide show
  1. package/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +2 -2
  2. package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +2 -2
  3. package/dist/automated-config/dist/utils/index.cjs +1 -1
  4. package/dist/automated-config/dist/utils/index.js +1 -1
  5. package/dist/components/Divider/Divider.cjs +86 -5
  6. package/dist/components/Divider/Divider.d.cts +15 -4
  7. package/dist/components/Divider/Divider.d.ts +15 -4
  8. package/dist/components/Divider/Divider.js +88 -7
  9. package/dist/components/Divider/DividerLabel.cjs +30 -0
  10. package/dist/components/Divider/DividerLabel.d.cts +18 -0
  11. package/dist/components/Divider/DividerLabel.d.ts +18 -0
  12. package/dist/components/Divider/DividerLabel.js +28 -0
  13. package/dist/components/Divider/DividerLine.cjs +41 -0
  14. package/dist/components/Divider/DividerLine.d.cts +19 -0
  15. package/dist/components/Divider/DividerLine.d.ts +19 -0
  16. package/dist/components/Divider/DividerLine.js +39 -0
  17. package/dist/components/Divider/index.cjs +4 -0
  18. package/dist/components/Divider/index.d.cts +4 -1
  19. package/dist/components/Divider/index.d.ts +4 -1
  20. package/dist/components/Divider/index.js +3 -1
  21. package/dist/components/Divider/types.cjs +1 -0
  22. package/dist/components/Divider/types.d.cts +38 -0
  23. package/dist/components/Divider/types.d.ts +38 -0
  24. package/dist/components/Divider/types.js +1 -0
  25. package/dist/components/Divider/utils.cjs +33 -0
  26. package/dist/components/Divider/utils.d.cts +11 -0
  27. package/dist/components/Divider/utils.d.ts +11 -0
  28. package/dist/components/Divider/utils.js +29 -0
  29. package/dist/components/client/Menu/Menu.Divider.cjs +2 -2
  30. package/dist/components/client/Menu/Menu.Divider.js +2 -2
  31. package/dist/components/client/Popover/UDSPopoverConfigProvider.d.cts +1 -1
  32. package/dist/components/client/Popover/UDSPopoverConfigProvider.d.ts +1 -1
  33. package/dist/components/index.cjs +6 -0
  34. package/dist/components/index.d.cts +3 -1
  35. package/dist/components/index.d.ts +3 -1
  36. package/dist/components/index.js +5 -1
  37. package/dist/index.cjs +5 -1
  38. package/dist/index.d.cts +3 -1
  39. package/dist/index.d.ts +3 -1
  40. package/dist/index.js +4 -2
  41. package/dist/styles/styler.d.cts +3 -3
  42. package/dist/styles/styler.d.ts +3 -3
  43. package/dist/tailwind/dist/automated-config/dist/utils/index.cjs +1 -1
  44. package/dist/tailwind/dist/automated-config/dist/utils/index.js +1 -1
  45. package/dist/tailwind/dist/automated-config/dist/utils/index.js.map +1 -1
  46. package/dist/tokens/automation/index.cjs +1 -1
  47. package/dist/tokens/automation/index.js +1 -1
  48. package/dist/tokens/index.cjs +1 -1
  49. package/dist/tokens/index.js +1 -1
  50. package/dist/uds/generated/componentData.cjs +1418 -1416
  51. package/dist/uds/generated/componentData.js +1415 -1413
  52. package/dist/uds/generated/tailwindPurge.cjs +1688 -50
  53. package/dist/uds/generated/tailwindPurge.js +1688 -50
  54. package/generated/componentData.json +1826 -1813
  55. package/generated/tailwindPurge.ts +3 -3
  56. package/package.json +1 -1
  57. package/dist/components/Divider/DividerCore.cjs +0 -83
  58. package/dist/components/Divider/DividerCore.d.cts +0 -22
  59. package/dist/components/Divider/DividerCore.d.ts +0 -22
  60. package/dist/components/Divider/DividerCore.js +0 -81
  61. package/dist/components/Divider/DividerInternal.cjs +0 -31
  62. package/dist/components/Divider/DividerInternal.d.cts +0 -13
  63. package/dist/components/Divider/DividerInternal.d.ts +0 -13
  64. package/dist/components/Divider/DividerInternal.js +0 -29
@@ -0,0 +1,39 @@
1
+ /*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
2
+ import { cx, getStyles } from "../../styles/styler.js";
3
+ import { Box } from "../Box.js";
4
+ import { forwardRef, useMemo } from "react";
5
+ import { jsx } from "react/jsx-runtime";
6
+ //#region src/components/Divider/DividerLine.tsx
7
+ /**
8
+ * **The configured line element used by Divider.**
9
+ *
10
+ * @description
11
+ * DividerLine can be used inside Divider for custom composition, or directly
12
+ * inside HStack/VStack when a fully manual layout is easier.
13
+ *
14
+ * @category Layout
15
+ * @platform web
16
+ */
17
+ const DividerLine = forwardRef(function DividerLine({ variant = "primary", vertical = false, className, style, "aria-hidden": ariaHidden = true, ...boxProps }, ref) {
18
+ return /* @__PURE__ */ jsx(Box, {
19
+ "aria-hidden": ariaHidden,
20
+ className: cx(variant !== "inherit" && getStyles({ dividerVariantLine: variant }), className),
21
+ flex: "1",
22
+ ref,
23
+ style: useMemo(() => vertical ? {
24
+ borderTopWidth: 0,
25
+ borderRightWidth: 0,
26
+ borderBottomWidth: 0,
27
+ ...style
28
+ } : {
29
+ borderLeftWidth: 0,
30
+ borderRightWidth: 0,
31
+ borderBottomWidth: 0,
32
+ ...style
33
+ }, [style, vertical]),
34
+ ...boxProps
35
+ });
36
+ });
37
+ DividerLine.displayName = "DividerLine";
38
+ //#endregion
39
+ export { DividerLine };
@@ -1,4 +1,8 @@
1
1
  /*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const require_components_Divider_DividerLabel = require("./DividerLabel.cjs");
4
+ const require_components_Divider_DividerLine = require("./DividerLine.cjs");
3
5
  const require_components_Divider_Divider = require("./Divider.cjs");
4
6
  exports.Divider = require_components_Divider_Divider.Divider;
7
+ exports.DividerLabel = require_components_Divider_DividerLabel.DividerLabel;
8
+ exports.DividerLine = require_components_Divider_DividerLine.DividerLine;
@@ -1,3 +1,6 @@
1
1
 
2
+ import { DividerVariant } from "./types.cjs";
2
3
  import { Divider, DividerProps } from "./Divider.cjs";
3
- export { Divider, type DividerProps };
4
+ import { DividerLabel, DividerLabelProps } from "./DividerLabel.cjs";
5
+ import { DividerLine, DividerLineProps } from "./DividerLine.cjs";
6
+ export { Divider, DividerLabel, type DividerLabelProps, DividerLine, type DividerLineProps, type DividerProps, type DividerVariant };
@@ -1,3 +1,6 @@
1
1
 
2
+ import { DividerVariant } from "./types.js";
2
3
  import { Divider, DividerProps } from "./Divider.js";
3
- export { Divider, type DividerProps };
4
+ import { DividerLabel, DividerLabelProps } from "./DividerLabel.js";
5
+ import { DividerLine, DividerLineProps } from "./DividerLine.js";
6
+ export { Divider, DividerLabel, type DividerLabelProps, DividerLine, type DividerLineProps, type DividerProps, type DividerVariant };
@@ -1,3 +1,5 @@
1
1
  /*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
2
+ import { DividerLabel } from "./DividerLabel.js";
3
+ import { DividerLine } from "./DividerLine.js";
2
4
  import { Divider } from "./Divider.js";
3
- export { Divider };
5
+ export { Divider, DividerLabel, DividerLine };
@@ -0,0 +1 @@
1
+ /*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
@@ -0,0 +1,38 @@
1
+
2
+ import { UniversalDividerProps, UniversalStackProps } from "../../types/dist/index.cjs";
3
+ import { BoxProps } from "../Box.cjs";
4
+ import { Text, TextProps } from "../Text.cjs";
5
+ import { ComponentProps, HTMLAttributes, ReactNode } from "react";
6
+
7
+ //#region src/components/Divider/types.d.ts
8
+ type DataAttributes = {
9
+ [name: `data-${string}`]: string;
10
+ };
11
+ type DividerVariant = NonNullable<UniversalDividerProps['variant']>;
12
+ type DividerVariantWithInherit = DividerVariant | 'inherit';
13
+ interface DividerProps extends Omit<BoxProps, 'color' | 'borderColor' | 'borderWidth'>, Omit<UniversalStackProps, 'separator' | 'asChild'>, Omit<UniversalDividerProps, 'variant'> {
14
+ /** The visual style variant of the divider. @default 'primary' */
15
+ variant?: DividerVariantWithInherit;
16
+ /** Optional label or manual DividerLine/DividerLabel composition. */
17
+ children?: ReactNode;
18
+ /** Props to be passed into various slots within the convenience component. */
19
+ slotProps?: {
20
+ root?: Partial<HTMLAttributes<HTMLDivElement> & DataAttributes>;
21
+ label?: Partial<ComponentProps<typeof Text> & DataAttributes>;
22
+ line?: Partial<HTMLAttributes<HTMLDivElement> & DataAttributes>;
23
+ };
24
+ }
25
+ interface DividerLineProps extends Omit<BoxProps, 'borderColor' | 'borderWidth' | 'children'> {
26
+ /** The visual style variant of the divider line. Inherits from Divider when composed. */
27
+ variant?: DividerVariantWithInherit;
28
+ /** Whether to render as a vertical line. Inherits from Divider when composed. */
29
+ vertical?: boolean;
30
+ }
31
+ interface DividerLabelProps extends Omit<TextProps, 'variant'> {
32
+ /** The visual style variant of the divider label. Inherits from Divider when composed. */
33
+ variant?: DividerVariantWithInherit;
34
+ /** Optional text style override. Defaults to the configured divider label typography. */
35
+ textVariant?: TextProps['variant'];
36
+ }
37
+ //#endregion
38
+ export { type DividerLabelProps, type DividerLineProps, type DividerProps, type DividerVariant };
@@ -0,0 +1,38 @@
1
+
2
+ import { UniversalDividerProps, UniversalStackProps } from "../../types/dist/index.js";
3
+ import { BoxProps } from "../Box.js";
4
+ import { Text, TextProps } from "../Text.js";
5
+ import { ComponentProps, HTMLAttributes, ReactNode } from "react";
6
+
7
+ //#region src/components/Divider/types.d.ts
8
+ type DataAttributes = {
9
+ [name: `data-${string}`]: string;
10
+ };
11
+ type DividerVariant = NonNullable<UniversalDividerProps['variant']>;
12
+ type DividerVariantWithInherit = DividerVariant | 'inherit';
13
+ interface DividerProps extends Omit<BoxProps, 'color' | 'borderColor' | 'borderWidth'>, Omit<UniversalStackProps, 'separator' | 'asChild'>, Omit<UniversalDividerProps, 'variant'> {
14
+ /** The visual style variant of the divider. @default 'primary' */
15
+ variant?: DividerVariantWithInherit;
16
+ /** Optional label or manual DividerLine/DividerLabel composition. */
17
+ children?: ReactNode;
18
+ /** Props to be passed into various slots within the convenience component. */
19
+ slotProps?: {
20
+ root?: Partial<HTMLAttributes<HTMLDivElement> & DataAttributes>;
21
+ label?: Partial<ComponentProps<typeof Text> & DataAttributes>;
22
+ line?: Partial<HTMLAttributes<HTMLDivElement> & DataAttributes>;
23
+ };
24
+ }
25
+ interface DividerLineProps extends Omit<BoxProps, 'borderColor' | 'borderWidth' | 'children'> {
26
+ /** The visual style variant of the divider line. Inherits from Divider when composed. */
27
+ variant?: DividerVariantWithInherit;
28
+ /** Whether to render as a vertical line. Inherits from Divider when composed. */
29
+ vertical?: boolean;
30
+ }
31
+ interface DividerLabelProps extends Omit<TextProps, 'variant'> {
32
+ /** The visual style variant of the divider label. Inherits from Divider when composed. */
33
+ variant?: DividerVariantWithInherit;
34
+ /** Optional text style override. Defaults to the configured divider label typography. */
35
+ textVariant?: TextProps['variant'];
36
+ }
37
+ //#endregion
38
+ export { type DividerLabelProps, type DividerLineProps, type DividerProps, type DividerVariant };
@@ -0,0 +1 @@
1
+ /*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
@@ -0,0 +1,33 @@
1
+ /*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ require("../../_virtual/_rolldown/runtime.cjs");
4
+ const require_components_Divider_DividerLabel = require("./DividerLabel.cjs");
5
+ const require_components_Divider_DividerLine = require("./DividerLine.cjs");
6
+ let react = require("react");
7
+ //#region src/components/Divider/utils.ts
8
+ function isDividerLineElement(child) {
9
+ return (0, react.isValidElement)(child) && child.type === require_components_Divider_DividerLine.DividerLine;
10
+ }
11
+ function isDividerLabelElement(child) {
12
+ return (0, react.isValidElement)(child) && child.type === require_components_Divider_DividerLabel.DividerLabel;
13
+ }
14
+ function hasManualLine(children) {
15
+ return react.Children.toArray(children).some((child) => isDividerLineElement(child));
16
+ }
17
+ function shouldWrapInLabel(children) {
18
+ return react.Children.toArray(children).every((child) => typeof child === "string" || typeof child === "number");
19
+ }
20
+ function renderManualChildren(children, variant, vertical) {
21
+ return react.Children.map(children, (child) => {
22
+ if (isDividerLineElement(child)) return (0, react.cloneElement)(child, {
23
+ variant: child.props.variant ?? variant,
24
+ vertical: child.props.vertical ?? vertical
25
+ });
26
+ if (isDividerLabelElement(child)) return (0, react.cloneElement)(child, { variant: child.props.variant ?? variant });
27
+ return child;
28
+ });
29
+ }
30
+ //#endregion
31
+ exports.hasManualLine = hasManualLine;
32
+ exports.renderManualChildren = renderManualChildren;
33
+ exports.shouldWrapInLabel = shouldWrapInLabel;
@@ -0,0 +1,11 @@
1
+
2
+ import { DividerLabelProps, DividerLineProps, DividerProps } from "./types.cjs";
3
+ import * as _$react from "react";
4
+ import { ReactElement, ReactNode } from "react";
5
+
6
+ //#region src/components/Divider/utils.d.ts
7
+ declare function hasManualLine(children: ReactNode): boolean;
8
+ declare function shouldWrapInLabel(children: ReactNode): boolean;
9
+ declare function renderManualChildren(children: ReactNode, variant: DividerProps['variant'], vertical: boolean): (string | number | bigint | ReactElement<unknown, string | _$react.JSXElementConstructor<any>> | Iterable<ReactNode> | Promise<string | number | bigint | boolean | _$react.ReactPortal | ReactElement<unknown, string | _$react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | _$react.FunctionComponentElement<DividerLineProps> | _$react.FunctionComponentElement<DividerLabelProps>)[] | null | undefined;
10
+ //#endregion
11
+ export { hasManualLine, renderManualChildren, shouldWrapInLabel };
@@ -0,0 +1,11 @@
1
+
2
+ import { DividerLabelProps, DividerLineProps, DividerProps } from "./types.js";
3
+ import * as _$react from "react";
4
+ import { ReactElement, ReactNode } from "react";
5
+
6
+ //#region src/components/Divider/utils.d.ts
7
+ declare function hasManualLine(children: ReactNode): boolean;
8
+ declare function shouldWrapInLabel(children: ReactNode): boolean;
9
+ declare function renderManualChildren(children: ReactNode, variant: DividerProps['variant'], vertical: boolean): (string | number | bigint | ReactElement<unknown, string | _$react.JSXElementConstructor<any>> | Iterable<ReactNode> | Promise<string | number | bigint | boolean | _$react.ReactPortal | ReactElement<unknown, string | _$react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | _$react.FunctionComponentElement<DividerLineProps> | _$react.FunctionComponentElement<DividerLabelProps>)[] | null | undefined;
10
+ //#endregion
11
+ export { hasManualLine, renderManualChildren, shouldWrapInLabel };
@@ -0,0 +1,29 @@
1
+ /*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
2
+ import { DividerLabel } from "./DividerLabel.js";
3
+ import { DividerLine } from "./DividerLine.js";
4
+ import { Children, cloneElement, isValidElement } from "react";
5
+ //#region src/components/Divider/utils.ts
6
+ function isDividerLineElement(child) {
7
+ return isValidElement(child) && child.type === DividerLine;
8
+ }
9
+ function isDividerLabelElement(child) {
10
+ return isValidElement(child) && child.type === DividerLabel;
11
+ }
12
+ function hasManualLine(children) {
13
+ return Children.toArray(children).some((child) => isDividerLineElement(child));
14
+ }
15
+ function shouldWrapInLabel(children) {
16
+ return Children.toArray(children).every((child) => typeof child === "string" || typeof child === "number");
17
+ }
18
+ function renderManualChildren(children, variant, vertical) {
19
+ return Children.map(children, (child) => {
20
+ if (isDividerLineElement(child)) return cloneElement(child, {
21
+ variant: child.props.variant ?? variant,
22
+ vertical: child.props.vertical ?? vertical
23
+ });
24
+ if (isDividerLabelElement(child)) return cloneElement(child, { variant: child.props.variant ?? variant });
25
+ return child;
26
+ });
27
+ }
28
+ //#endregion
29
+ export { hasManualLine, renderManualChildren, shouldWrapInLabel };
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
4
4
  require("../../../_virtual/_rolldown/runtime.cjs");
5
5
  const require_styles_styler = require("../../../styles/styler.cjs");
6
- const require_components_Divider_DividerInternal = require("../../Divider/DividerInternal.cjs");
6
+ const require_components_Divider_Divider = require("../../Divider/Divider.cjs");
7
7
  let react = require("react");
8
8
  let react_jsx_runtime = require("react/jsx-runtime");
9
9
  //#region src/components/client/Menu/Menu.Divider.tsx
@@ -46,7 +46,7 @@ let react_jsx_runtime = require("react/jsx-runtime");
46
46
  * @related [Menu](https://uds.build/docs/components/menu), [Menu.Item](https://uds.build/docs/components/menu-item), [Divider](https://uds.build/docs/components/divider)
47
47
  **/
48
48
  const MenuDivider = (0, react.forwardRef)(function MenuDivider({ role = "separator", contentPosition = "start", gap = "4", children, spacingVertical = children ? "2" : "0", spacingHorizontal = children ? "4" : "0", className, ...props }, ref) {
49
- return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_components_Divider_DividerInternal.DividerInternal, {
49
+ return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_components_Divider_Divider.Divider, {
50
50
  ref,
51
51
  role,
52
52
  variant: "inherit",
@@ -1,7 +1,7 @@
1
1
  /*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
2
2
  "use client";
3
3
  import { getStyles } from "../../../styles/styler.js";
4
- import { DividerInternal } from "../../Divider/DividerInternal.js";
4
+ import { Divider } from "../../Divider/Divider.js";
5
5
  import { forwardRef } from "react";
6
6
  import { jsx } from "react/jsx-runtime";
7
7
  //#region src/components/client/Menu/Menu.Divider.tsx
@@ -44,7 +44,7 @@ import { jsx } from "react/jsx-runtime";
44
44
  * @related [Menu](https://uds.build/docs/components/menu), [Menu.Item](https://uds.build/docs/components/menu-item), [Divider](https://uds.build/docs/components/divider)
45
45
  **/
46
46
  const MenuDivider = forwardRef(function MenuDivider({ role = "separator", contentPosition = "start", gap = "4", children, spacingVertical = children ? "2" : "0", spacingHorizontal = children ? "4" : "0", className, ...props }, ref) {
47
- return /* @__PURE__ */ jsx(DividerInternal, {
47
+ return /* @__PURE__ */ jsx(Divider, {
48
48
  ref,
49
49
  role,
50
50
  variant: "inherit",
@@ -29,7 +29,7 @@ declare function usePopoverConfig(sizeProp?: PopoverSize | undefined, variantPro
29
29
  gap: SpacingAlias;
30
30
  dismissButtonSpacing: SpacingAlias;
31
31
  dismissIconSize: number;
32
- ariaKitPlacement: ("top-start" | "top-end" | "bottom-start" | "bottom-end" | ("top" | "bottom" | "left" | "right") | "left-start" | "right-start" | "left-end" | "right-end") | undefined;
32
+ ariaKitPlacement: ("bottom-start" | "bottom-end" | "top-start" | "top-end" | ("bottom" | "left" | "right" | "top") | "left-start" | "right-start" | "left-end" | "right-end") | undefined;
33
33
  animationDuration: number;
34
34
  };
35
35
  //#endregion
@@ -30,7 +30,7 @@ declare function usePopoverConfig(sizeProp?: PopoverSize | undefined, variantPro
30
30
  gap: SpacingAlias;
31
31
  dismissButtonSpacing: SpacingAlias;
32
32
  dismissIconSize: number;
33
- ariaKitPlacement: ("top-start" | "top-end" | "bottom-start" | "bottom-end" | ("top" | "bottom" | "left" | "right") | "left-start" | "right-start" | "left-end" | "right-end") | undefined;
33
+ ariaKitPlacement: ("bottom-start" | "bottom-end" | "top-start" | "top-end" | ("bottom" | "left" | "right" | "top") | "left-start" | "right-start" | "left-end" | "right-end") | undefined;
34
34
  animationDuration: number;
35
35
  };
36
36
  //#endregion
@@ -11,6 +11,8 @@ const require_components_Banner_BannerTitle = require("./Banner/BannerTitle.cjs"
11
11
  const require_components_Box = require("./Box.cjs");
12
12
  const require_components_HStack = require("./HStack.cjs");
13
13
  const require_components_VStack = require("./VStack.cjs");
14
+ const require_components_Divider_DividerLabel = require("./Divider/DividerLabel.cjs");
15
+ const require_components_Divider_DividerLine = require("./Divider/DividerLine.cjs");
14
16
  const require_components_Divider_Divider = require("./Divider/Divider.cjs");
15
17
  const require_components_FormLabel = require("./FormLabel.cjs");
16
18
  const require_components_Image = require("./Image.cjs");
@@ -94,6 +96,8 @@ var components_exports = /* @__PURE__ */ require_runtime.__exportAll({
94
96
  ChipLink: () => require_components_client_Chip_ChipLink.ChipLink,
95
97
  ChipToggle: () => require_components_client_Chip_ChipToggle.ChipToggle,
96
98
  Divider: () => require_components_Divider_Divider.Divider,
99
+ DividerLabel: () => require_components_Divider_DividerLabel.DividerLabel,
100
+ DividerLine: () => require_components_Divider_DividerLine.DividerLine,
97
101
  FormLabel: () => require_components_FormLabel.FormLabel,
98
102
  HStack: () => require_components_HStack.HStack,
99
103
  Icon: () => require_components_Icon.Icon,
@@ -166,6 +170,8 @@ exports.ChipDismissible = require_components_client_Chip_ChipDismissible.ChipDis
166
170
  exports.ChipLink = require_components_client_Chip_ChipLink.ChipLink;
167
171
  exports.ChipToggle = require_components_client_Chip_ChipToggle.ChipToggle;
168
172
  exports.Divider = require_components_Divider_Divider.Divider;
173
+ exports.DividerLabel = require_components_Divider_DividerLabel.DividerLabel;
174
+ exports.DividerLine = require_components_Divider_DividerLine.DividerLine;
169
175
  exports.FormLabel = require_components_FormLabel.FormLabel;
170
176
  exports.HStack = require_components_HStack.HStack;
171
177
  exports.Icon = require_components_Icon.Icon;
@@ -7,6 +7,8 @@ import { BannerTitle, BannerTitleProps } from "./Banner/BannerTitle.cjs";
7
7
  import { Box, BoxProps } from "./Box.cjs";
8
8
  import { Text, TextProps } from "./Text.cjs";
9
9
  import { Divider, DividerProps } from "./Divider/Divider.cjs";
10
+ import { DividerLabel, DividerLabelProps } from "./Divider/DividerLabel.cjs";
11
+ import { DividerLine, DividerLineProps } from "./Divider/DividerLine.cjs";
10
12
  import { FormLabel, FormLabelProps } from "./FormLabel.cjs";
11
13
  import { HStack, HStackProps } from "./HStack.cjs";
12
14
  import { Icon, IconProps } from "./Icon.cjs";
@@ -74,4 +76,4 @@ import { TooltipContent } from "./client/Tooltip/TooltipContent.cjs";
74
76
  import { TooltipTrigger } from "./client/Tooltip/TooltipTrigger.cjs";
75
77
  import { UDSTooltipConfigProvider, UDSTooltipConfigProviderProps } from "./client/Tooltip/UDSTooltipConfigProvider.cjs";
76
78
  import { Modal, ModalProps } from "./client/Modal/Modal.cjs";
77
- 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, 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, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, type ModalProps, ModalTitle, type ModalTitleProps, 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, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
79
+ 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, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, type ModalProps, ModalTitle, type ModalTitleProps, 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, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
@@ -7,6 +7,8 @@ import { BannerTitle, BannerTitleProps } from "./Banner/BannerTitle.js";
7
7
  import { Box, BoxProps } from "./Box.js";
8
8
  import { Text, TextProps } from "./Text.js";
9
9
  import { Divider, DividerProps } from "./Divider/Divider.js";
10
+ import { DividerLabel, DividerLabelProps } from "./Divider/DividerLabel.js";
11
+ import { DividerLine, DividerLineProps } from "./Divider/DividerLine.js";
10
12
  import { FormLabel, FormLabelProps } from "./FormLabel.js";
11
13
  import { HStack, HStackProps } from "./HStack.js";
12
14
  import { Icon, IconProps } from "./Icon.js";
@@ -74,4 +76,4 @@ import { TooltipContent } from "./client/Tooltip/TooltipContent.js";
74
76
  import { TooltipTrigger } from "./client/Tooltip/TooltipTrigger.js";
75
77
  import { UDSTooltipConfigProvider, UDSTooltipConfigProviderProps } from "./client/Tooltip/UDSTooltipConfigProvider.js";
76
78
  import { Modal, ModalProps } from "./client/Modal/Modal.js";
77
- 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, 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, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, type ModalProps, ModalTitle, type ModalTitleProps, 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, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
79
+ 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, ModalActions, type ModalActionsProps, ModalContent, type ModalContentProps, ModalDescription, type ModalDescriptionProps, type ModalProps, ModalTitle, type ModalTitleProps, 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, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
@@ -10,6 +10,8 @@ import { BannerTitle } from "./Banner/BannerTitle.js";
10
10
  import { Box } from "./Box.js";
11
11
  import { HStack } from "./HStack.js";
12
12
  import { VStack } from "./VStack.js";
13
+ import { DividerLabel } from "./Divider/DividerLabel.js";
14
+ import { DividerLine } from "./Divider/DividerLine.js";
13
15
  import { Divider } from "./Divider/Divider.js";
14
16
  import { FormLabel } from "./FormLabel.js";
15
17
  import { Image } from "./Image.js";
@@ -93,6 +95,8 @@ var components_exports = /* @__PURE__ */ __exportAll({
93
95
  ChipLink: () => ChipLink,
94
96
  ChipToggle: () => ChipToggle,
95
97
  Divider: () => Divider,
98
+ DividerLabel: () => DividerLabel,
99
+ DividerLine: () => DividerLine,
96
100
  FormLabel: () => FormLabel,
97
101
  HStack: () => HStack,
98
102
  Icon: () => Icon,
@@ -141,4 +145,4 @@ var components_exports = /* @__PURE__ */ __exportAll({
141
145
  useToastConfig: () => useToastConfig
142
146
  });
143
147
  //#endregion
144
- 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, FormLabel, HStack, Icon, IconButton, Image, Input, InputHelpText, Link, Menu_index_exports as Menu, Modal, ModalActions, ModalContent, ModalDescription, ModalTitle, 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, components_exports, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
148
+ 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, ModalTitle, 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, components_exports, createToast, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig };
package/dist/index.cjs CHANGED
@@ -14,6 +14,8 @@ const require_components_Banner_BannerTitle = require("./components/Banner/Banne
14
14
  const require_components_Box = require("./components/Box.cjs");
15
15
  const require_components_HStack = require("./components/HStack.cjs");
16
16
  const require_components_VStack = require("./components/VStack.cjs");
17
+ const require_components_Divider_DividerLabel = require("./components/Divider/DividerLabel.cjs");
18
+ const require_components_Divider_DividerLine = require("./components/Divider/DividerLine.cjs");
17
19
  const require_components_Divider_Divider = require("./components/Divider/Divider.cjs");
18
20
  const require_components_FormLabel = require("./components/FormLabel.cjs");
19
21
  const require_components_Image = require("./components/Image.cjs");
@@ -31,13 +33,13 @@ const require_components_client_BottomSheet_BottomSheetDismiss = require("./comp
31
33
  const require_components_client_BottomSheet_BottomSheetHeader = require("./components/client/BottomSheet/BottomSheetHeader.cjs");
32
34
  const require_components_client_BottomSheet_BottomSheetProvider = require("./components/client/BottomSheet/BottomSheetProvider.cjs");
33
35
  const require_components_client_BottomSheet_BottomSheetTrigger = require("./components/client/BottomSheet/BottomSheetTrigger.cjs");
36
+ const require_generateDefaultClassName = require("./automated-config/dist/utils/generateDefaultClassName.cjs");
34
37
  const require_generateSchemaKey = require("./automated-config/dist/utils/generateSchemaKey.cjs");
35
38
  const require_buildConfigSchema = require("./automated-config/dist/utils/buildConfigSchema.cjs");
36
39
  const require_cartesianProduct = require("./automated-config/dist/utils/cartesianProduct.cjs");
37
40
  const require_subcomponents = require("./automated-config/dist/utils/subcomponents.cjs");
38
41
  const require_coalesceConfigVariant = require("./automated-config/dist/utils/coalesceConfigVariant.cjs");
39
42
  const require_defaults = require("./automated-config/dist/utils/defaults.cjs");
40
- const require_generateDefaultClassName = require("./automated-config/dist/utils/generateDefaultClassName.cjs");
41
43
  const require_generateKeyFromFlatConfigPath = require("./automated-config/dist/utils/generateKeyFromFlatConfigPath.cjs");
42
44
  const require_getConfigVariantComponentStatesMatrix = require("./automated-config/dist/utils/getConfigVariantComponentStatesMatrix.cjs");
43
45
  const require_getConfigVariantProperties = require("./automated-config/dist/utils/getConfigVariantProperties.cjs");
@@ -157,6 +159,8 @@ exports.DEFAULT_SCALE_MODE_FOR_APP = require_index$3.DEFAULT_SCALE_MODE_FOR_APP;
157
159
  exports.DROP_SHADOW_PREFIX = require_index$1.DROP_SHADOW_PREFIX;
158
160
  exports.Divider = require_components_Divider_Divider.Divider;
159
161
  exports.DividerConfig = require_generatedConfigs.DividerConfig;
162
+ exports.DividerLabel = require_components_Divider_DividerLabel.DividerLabel;
163
+ exports.DividerLine = require_components_Divider_DividerLine.DividerLine;
160
164
  exports.FONT_DECLARATIONS_MAP = require_index$4.FONT_DECLARATIONS_MAP;
161
165
  exports.FONT_FAMILY_PREFIX = require_index$1.FONT_FAMILY_PREFIX;
162
166
  exports.FONT_SIZE_PREFIX = require_index$1.FONT_SIZE_PREFIX;
package/dist/index.d.cts CHANGED
@@ -39,6 +39,8 @@ import { BannerTitle, BannerTitleProps } from "./components/Banner/BannerTitle.c
39
39
  import { Box, BoxProps } from "./components/Box.cjs";
40
40
  import { Text, TextProps } from "./components/Text.cjs";
41
41
  import { Divider, DividerProps } from "./components/Divider/Divider.cjs";
42
+ import { DividerLabel, DividerLabelProps } from "./components/Divider/DividerLabel.cjs";
43
+ import { DividerLine, DividerLineProps } from "./components/Divider/DividerLine.cjs";
42
44
  import { FormLabel, FormLabelProps } from "./components/FormLabel.cjs";
43
45
  import { HStack, HStackProps } from "./components/HStack.cjs";
44
46
  import { Icon, IconProps } from "./components/Icon.cjs";
@@ -116,4 +118,4 @@ import { UDSTooltipConfigProvider, UDSTooltipConfigProviderProps } from "./compo
116
118
  import { SetState } from "./types.cjs";
117
119
  import { UDSThemeConfig, UDSThemeConfigInput, UDSThemeContext, defineTheme } from "./tailwind/dist/css/theme.cjs";
118
120
  import { Modal, ModalProps } from "./components/client/Modal/Modal.cjs";
119
- export { ALWAYS_PREFIX, AVATAR_SIZE_PREFIX, AllPossibleProperties, AllSelectors, AllVariantKeys, AlwaysPaletteAlias, AlwaysPaletteAliasWithPrefix, AlwaysPaletteColor, Animation, AriaAttribute, AutoComponentName, Avatar, AvatarAbbreviationStrategy, AvatarConfig, AvatarIcon, AvatarIconProps, AvatarImage, AvatarImageProps, AvatarProps, AvatarShape, AvatarSize, AvatarSizeConfig, AvatarText, AvatarTextProps, AvatarVariant, BACKGROUND_BLUR_COLOR_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, BackgroundColor, BackgroundPalette, BackgroundPaletteAlias, BackgroundStyleProps, BackwardsCompatibleReactElement, Badge, BadgeConfig, BadgeProps, BadgeSize, BadgeVariant, Banner, BannerConfig, BannerContent, BannerContentProps, BannerDescription, BannerDescriptionProps, BannerInnerShadowOption, BannerProps, BannerSize, BannerTitle, BannerTitleProps, BannerVariant, BaseSelector, BorderRadius, BorderRadiusConfig, BorderStyleProps, BorderWidth, BorderWidthConfig, BorderWidthWithElevation, BottomSheet, BottomSheetConfig, BottomSheetContent, BottomSheetContentProps, BottomSheetController, BottomSheetDismiss, BottomSheetDismissProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetHeight, BottomSheetProps, BottomSheetProvider, BottomSheetProviderProps, BottomSheetSnapPoints, BottomSheetTrigger, BottomSheetTriggerProps, BottomSheetVariant, Box, BoxProps, Breakpoint, BreakpointValue, BreakpointWithBase, BreakpointsConfig, Button, ButtonConfig, ButtonPalette, ButtonPaletteColor, ButtonProps, ButtonSize, ButtonSpectrumColor, ButtonVariant, ButtonVariantFlat, Checkbox, CheckboxConfig, CheckboxProps, CheckboxSize, CheckboxValue, CheckboxVariant, Chip, ChipButton, ChipButtonProps, ChipConfig, ChipDismissible, ChipDismissibleProps, ChipLink, ChipLinkProps, ChipProps, ChipSize, ChipToggle, ChipToggleProps, ChipVariant, ColorMode, ColorModeConfig, ColorModeForApp, ColorsConfig, ComponentConfig, ComponentSchema, ComponentStateConfig, ConfigurableComponentName, ConfigurablePropertiesName, CssStyleObject, CustomSizingStyleProps, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_FOR_APP, DEFAULT_HIGH_CONTRAST_MODE, DEFAULT_REGION_MODE, DEFAULT_SCALE_MODE, DEFAULT_SCALE_MODE_CLASSNAME, DEFAULT_SCALE_MODE_FOR_APP, DROP_SHADOW_PREFIX, DataAttribute, DeprecatedAlwaysPaletteAlias, Display, Divider, DividerConfig, DividerProps, DividerVariant, ElevationAlias, ElevationBackgroundFillColor, ElevationBorderColor, ElevationConfig, ElevationCustomInsetShadows, ElevationCustomShadows, ElevationGlobalRampConfig, ElevationGlobalRampSettings, ElevationLevel, ElevationPreset, ElevationSurfaceColor, ExtractUrlFromFontFaceRule, FONT_DECLARATIONS_MAP, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, Flex, FlexAlignContent, FlexAlignItems, FlexAlignSelf, FlexBasis, FlexDirection, FlexGrow, FlexJustifyContent, FlexShrink, FlexStyleProps, FlexWrap, FocusRingColor, FocusRingConfig, FocusRingModeConfig, FocusRingOffset, FocusRingWidth, FontAlias, FontAxisConfig, FontConfig, FontCssVar, FontDeclarationConfig, FontDeclarationItemConfig, FontDeclarationMap, FontFamilyCDNUrl, FontFamilyConfig, FontID, FontSize, FontSizeConfig, FontSlantConfig, FontType, FontUrlConfig, FontUrlMap, FontWeightConfig, FontWeightDescriptive, FontWeightForFont, FontWeightNumeric, FontWidthConfig, ForegroundColor, ForegroundPalette, ForegroundPaletteAlias, FormLabel, FormLabelProps, GenericIconComponent, GetMotionVarParams, GlobalDefaultsConfig, HStack, HStackProps, HighContrastMode, Hue, HueStep, ICON_SIZE_PREFIX, INSET_SHADOW_PREFIX, INVERT_COLOR_MODE_CLASSNAME, Icon, IconButton, IconButtonConfig, IconButtonProps, IconButtonSize, IconPixelSize, IconProps, IconPropsWithSVGProps, IconSize, IconSizeConfig, IconSlotRenderProps, IconVariant, Image, ImageProps, ImagePropsWithImgProps, ImageStyleProps, ImgElementProps, Input, InputConfig, InputHelpText, InputHelpTextProps, InputProps, InputSize, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, LayerConfig, LayoutStyleProps, LineClampAlias, LineColor, LineHeight, LineHeightConfig, LinePalette, LinePaletteAlias, Link, LinkConfig, LinkProps, LinkTextVariant, LinkVariant, LinkableValue, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, MaxLengthArray, Menu_index_d_exports as Menu, MenuContentConfig, MenuContentProps, MenuDividerProps, MenuItemCheckboxProps, MenuItemConfig, MenuItemProps, MenuPlacement, MenuProviderProps, MenuTriggerProps, Modal, ModalActions, ModalActionsProps, ModalConfig, ModalContent, ModalContentProps, ModalDescription, ModalDescriptionProps, ModalProps, ModalSize, ModalTitle, ModalTitleProps, ModalVariant, Modes, MotionConfig, MotionCssVar, MotionSpringConfig, MotionSpringConfigOptions, MotionVariant, MotionVariantSpeed, MotionVariantValues, NestedBorderRadiusStyleProps, OUTLINE_PREFIX, OpacityStep, Overflow, PSEUDO_STYLE_SELECTOR_MAP, Palette, PaletteConfig, PaletteType, PaletteValue, ParentVariantSelector, Percentage, PercentageUnit, PixelsUnit, PlatformMode, Popover, PopoverConfig, PopoverContent, UniversalPopoverContentProps as PopoverContentProps, PopoverPlacement, UniversalPopoverProps as PopoverProps, PopoverSize, PopoverTrigger, UniversalPopoverTriggerProps as PopoverTriggerProps, PopoverVariant, Position, PossibleStates, PossibleStatesWithRest, Pressable, PressableProps, PropertyToPaletteAliasMap, RGBAUnit, RGBColorValue, RGBUnit, Radio, RadioConfig, RadioGroupProvider, RadioGroupProviderProps, RadioProps, RadioSize, RadioValue, RadioVariant, RegionMode, RemsUnit, ResolvedTokensConfig, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SVGElementProps, SYSTEM_COLOR_MODE_CLASSNAME, ScaleConfig, ScaleEffect, ScaleMode, ScaleModeConfig, ScaleModeForApp, Scrim, ScrimConfig, ScrimProps, SelectedConfigurableProperty, SetState, ShadowAlwaysColor, ShadowColor, ShadowColorConfig, ShadowConfig, ShadowOffset, ShadowOpacity, ShadowPalette, ShadowPaletteAlias, ShadowPaletteColor, ShadowPreset, ShadowSpectrumColor, ShadowSpreadRadius, ShadowStyleProps, ShadowType, ShadowTypeConfig, ShadowVariant, ShadowVariantConfig, ShadowVariantInvert, ShadowVariantWithElevation, ShadowVariantWithInvert, SharedPaletteAlias, SizeStyleProps, SpacingAlias, SpacingConfig, SpacingStyleProps, SpectrumColor, SpectrumConfig, SpectrumRGB, SpectrumValue, SpectrumValueEntry, SpringMotionConfig, SpringMotionConfigProps, StateStyleProps, StyleProps, SubComponentConfig, Switch, SwitchConfig, SwitchProps, SwitchSize, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, TShirtSize, TShirtSizeCommon, Tab, TabConfig, TabList, TabListProps, TabPanel, TabPanelProps, TabProps, Tabs, TabsConfig, TabsProps, TabsVariant, Text, TextDecorationLine, TextProperty, TextProps, TextStyleProps, TextTransform, TextTransformConfig, TextVariant, TextVariantTypography, TextVariantUi, TextVariantWithoutEmphasized, Toast, ToastConfig, ToastContainer, ToastContainerProps, ToastLoadingPromise, ToastPortal, ToastPortalProps, ToastPosition, ToastProps, ToastSize, ToastVariant, Tooltip, TooltipConfig, TooltipContent, UniversalTooltipContentProps as TooltipContentProps, TooltipPlacement, UniversalTooltipProps as TooltipProps, TooltipSize, TooltipTrigger, UniversalTooltipTriggerProps as TooltipTriggerProps, TooltipVariant, TransitionDelay, TransitionDuration, TransitionTiming, TypographyConfig, TypographyResponsiveProperty, TypographyStyle, TypographyStyleProperty, TypographyUnitValue, UDSBottomSheetConfigContextType, UDSBreakpointsConfigContextType, UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, UDSConfigContextType, UDSConfigProvider, UDSConfigProviderProps, UDSModalConfigContextType, UDSModalConfigProvider, UDSModalConfigProviderProps, UDSPopoverConfigContextType, UDSPopoverConfigProvider, UDSPopoverConfigProviderProps, type UDSThemeConfig, type UDSThemeConfigInput, type UDSThemeContext, UDSToastConfigContextType, UDSToastConfigProvider, UDSToastConfigProviderProps, UDSTooltipConfigContextType, UDSTooltipConfigProvider, UDSTooltipConfigProviderProps, UDS_PREFIX, UdsCssVar, UnitlessUnit, UniversalAvatarBaseProps, UniversalAvatarIconProps, UniversalAvatarImageProps, UniversalAvatarProps, UniversalAvatarTextProps, UniversalBadgeProps, UniversalBannerProps, UniversalBottomSheetContentProps, UniversalBottomSheetHeaderProps, UniversalBottomSheetProps, UniversalBoxProps, UniversalButtonProps, UniversalCheckboxProps, UniversalChipBaseProps, UniversalChipButtonProps, UniversalChipDismissibleProps, UniversalChipLinkProps, UniversalChipProps, UniversalChipToggleProps, UniversalDividerProps, UniversalFormLabelProps, UniversalIconButtonProps, UniversalIconProps, UniversalIconSlot, UniversalImageProps, UniversalInputProps, UniversalLinkProps, UniversalMenuItemProps, UniversalModalActionsProps, UniversalModalContentProps, UniversalModalDescriptionProps, UniversalModalProps, UniversalModalTitleProps, UniversalPopoverContentProps, UniversalPopoverProps, UniversalPopoverTriggerProps, UniversalPressableProps, UniversalRadioGroupProps, UniversalRadioProps, UniversalStackProps, UniversalSwitchProps, UniversalTabListProps, UniversalTabPanelProps, UniversalTabProps, UniversalTabsProps, UniversalTabsVariant, UniversalTextProps, UniversalToastProps, UniversalTokensConfig, UniversalTokensConfigAuto, UniversalTokensConfigAutoBase, UniversalTokensConfigBase, UniversalTokensConfigGeneric, UniversalTooltipContentProps, UniversalTooltipProps, UniversalTooltipTriggerProps, VStack, VStackProps, VariantConfig, VariantConfigWithComponentStates, VariantConfigWithProperties, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, alwaysPalette, buildConfigSchema, cartesianProduct, coalesceConfigVariant, configToBottomSheetConfigContext, configToBreakpointsConfigContext, configToModalConfigContext, configToPopoverConfigContext, configToToastConfigContext, configToTooltipConfigContext, configToUDSConfigContext, createComponentStates, createConfigurableProperty, createLayerConfig, createSubComponentConfig, createToast, createVariantConfig, createVariantConfigWithComponentStates, createVariantConfigWithProperties, cva, cx, defineTheme, deprecatedAlwaysPalette, entries, findFixtureType, fontUrls, fromEntries, generateClassName, generateConfigStyles, generateDeclaration, generateDefaultClassName, generateKeyFromFlatConfigPath, generateSchemaKey, generateStyles, getConfigDefaultValue, getConfigSubcomponents, getConfigVariantComponentStates, getConfigVariantComponentStatesMatrix, getConfigVariantProperties, getConfigVariantPseudoStates, getConfigVariants, getFontUrls, getFontUrlsByIds, getMotionVar, getShadowLayerValue, getStyles, getStylesCacheKeySymbol, isConfigDefaultValue, mapValues, newAlwaysPalette, parseButtonVariantFlat, shadow, spectrumRgbToString, statePseudoMapDocsMode, textVariantsSafe, toRgbChannel, toSpectrumValueEntry, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig, variants };
121
+ export { ALWAYS_PREFIX, AVATAR_SIZE_PREFIX, AllPossibleProperties, AllSelectors, AllVariantKeys, AlwaysPaletteAlias, AlwaysPaletteAliasWithPrefix, AlwaysPaletteColor, Animation, AriaAttribute, AutoComponentName, Avatar, AvatarAbbreviationStrategy, AvatarConfig, AvatarIcon, AvatarIconProps, AvatarImage, AvatarImageProps, AvatarProps, AvatarShape, AvatarSize, AvatarSizeConfig, AvatarText, AvatarTextProps, AvatarVariant, BACKGROUND_BLUR_COLOR_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, BackgroundColor, BackgroundPalette, BackgroundPaletteAlias, BackgroundStyleProps, BackwardsCompatibleReactElement, Badge, BadgeConfig, BadgeProps, BadgeSize, BadgeVariant, Banner, BannerConfig, BannerContent, BannerContentProps, BannerDescription, BannerDescriptionProps, BannerInnerShadowOption, BannerProps, BannerSize, BannerTitle, BannerTitleProps, BannerVariant, BaseSelector, BorderRadius, BorderRadiusConfig, BorderStyleProps, BorderWidth, BorderWidthConfig, BorderWidthWithElevation, BottomSheet, BottomSheetConfig, BottomSheetContent, BottomSheetContentProps, BottomSheetController, BottomSheetDismiss, BottomSheetDismissProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetHeight, BottomSheetProps, BottomSheetProvider, BottomSheetProviderProps, BottomSheetSnapPoints, BottomSheetTrigger, BottomSheetTriggerProps, BottomSheetVariant, Box, BoxProps, Breakpoint, BreakpointValue, BreakpointWithBase, BreakpointsConfig, Button, ButtonConfig, ButtonPalette, ButtonPaletteColor, ButtonProps, ButtonSize, ButtonSpectrumColor, ButtonVariant, ButtonVariantFlat, Checkbox, CheckboxConfig, CheckboxProps, CheckboxSize, CheckboxValue, CheckboxVariant, Chip, ChipButton, ChipButtonProps, ChipConfig, ChipDismissible, ChipDismissibleProps, ChipLink, ChipLinkProps, ChipProps, ChipSize, ChipToggle, ChipToggleProps, ChipVariant, ColorMode, ColorModeConfig, ColorModeForApp, ColorsConfig, ComponentConfig, ComponentSchema, ComponentStateConfig, ConfigurableComponentName, ConfigurablePropertiesName, CssStyleObject, CustomSizingStyleProps, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_FOR_APP, DEFAULT_HIGH_CONTRAST_MODE, DEFAULT_REGION_MODE, DEFAULT_SCALE_MODE, DEFAULT_SCALE_MODE_CLASSNAME, DEFAULT_SCALE_MODE_FOR_APP, DROP_SHADOW_PREFIX, DataAttribute, DeprecatedAlwaysPaletteAlias, Display, Divider, DividerConfig, DividerLabel, DividerLabelProps, DividerLine, DividerLineProps, DividerProps, DividerVariant, ElevationAlias, ElevationBackgroundFillColor, ElevationBorderColor, ElevationConfig, ElevationCustomInsetShadows, ElevationCustomShadows, ElevationGlobalRampConfig, ElevationGlobalRampSettings, ElevationLevel, ElevationPreset, ElevationSurfaceColor, ExtractUrlFromFontFaceRule, FONT_DECLARATIONS_MAP, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, Flex, FlexAlignContent, FlexAlignItems, FlexAlignSelf, FlexBasis, FlexDirection, FlexGrow, FlexJustifyContent, FlexShrink, FlexStyleProps, FlexWrap, FocusRingColor, FocusRingConfig, FocusRingModeConfig, FocusRingOffset, FocusRingWidth, FontAlias, FontAxisConfig, FontConfig, FontCssVar, FontDeclarationConfig, FontDeclarationItemConfig, FontDeclarationMap, FontFamilyCDNUrl, FontFamilyConfig, FontID, FontSize, FontSizeConfig, FontSlantConfig, FontType, FontUrlConfig, FontUrlMap, FontWeightConfig, FontWeightDescriptive, FontWeightForFont, FontWeightNumeric, FontWidthConfig, ForegroundColor, ForegroundPalette, ForegroundPaletteAlias, FormLabel, FormLabelProps, GenericIconComponent, GetMotionVarParams, GlobalDefaultsConfig, HStack, HStackProps, HighContrastMode, Hue, HueStep, ICON_SIZE_PREFIX, INSET_SHADOW_PREFIX, INVERT_COLOR_MODE_CLASSNAME, Icon, IconButton, IconButtonConfig, IconButtonProps, IconButtonSize, IconPixelSize, IconProps, IconPropsWithSVGProps, IconSize, IconSizeConfig, IconSlotRenderProps, IconVariant, Image, ImageProps, ImagePropsWithImgProps, ImageStyleProps, ImgElementProps, Input, InputConfig, InputHelpText, InputHelpTextProps, InputProps, InputSize, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, LayerConfig, LayoutStyleProps, LineClampAlias, LineColor, LineHeight, LineHeightConfig, LinePalette, LinePaletteAlias, Link, LinkConfig, LinkProps, LinkTextVariant, LinkVariant, LinkableValue, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, MaxLengthArray, Menu_index_d_exports as Menu, MenuContentConfig, MenuContentProps, MenuDividerProps, MenuItemCheckboxProps, MenuItemConfig, MenuItemProps, MenuPlacement, MenuProviderProps, MenuTriggerProps, Modal, ModalActions, ModalActionsProps, ModalConfig, ModalContent, ModalContentProps, ModalDescription, ModalDescriptionProps, ModalProps, ModalSize, ModalTitle, ModalTitleProps, ModalVariant, Modes, MotionConfig, MotionCssVar, MotionSpringConfig, MotionSpringConfigOptions, MotionVariant, MotionVariantSpeed, MotionVariantValues, NestedBorderRadiusStyleProps, OUTLINE_PREFIX, OpacityStep, Overflow, PSEUDO_STYLE_SELECTOR_MAP, Palette, PaletteConfig, PaletteType, PaletteValue, ParentVariantSelector, Percentage, PercentageUnit, PixelsUnit, PlatformMode, Popover, PopoverConfig, PopoverContent, UniversalPopoverContentProps as PopoverContentProps, PopoverPlacement, UniversalPopoverProps as PopoverProps, PopoverSize, PopoverTrigger, UniversalPopoverTriggerProps as PopoverTriggerProps, PopoverVariant, Position, PossibleStates, PossibleStatesWithRest, Pressable, PressableProps, PropertyToPaletteAliasMap, RGBAUnit, RGBColorValue, RGBUnit, Radio, RadioConfig, RadioGroupProvider, RadioGroupProviderProps, RadioProps, RadioSize, RadioValue, RadioVariant, RegionMode, RemsUnit, ResolvedTokensConfig, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SVGElementProps, SYSTEM_COLOR_MODE_CLASSNAME, ScaleConfig, ScaleEffect, ScaleMode, ScaleModeConfig, ScaleModeForApp, Scrim, ScrimConfig, ScrimProps, SelectedConfigurableProperty, SetState, ShadowAlwaysColor, ShadowColor, ShadowColorConfig, ShadowConfig, ShadowOffset, ShadowOpacity, ShadowPalette, ShadowPaletteAlias, ShadowPaletteColor, ShadowPreset, ShadowSpectrumColor, ShadowSpreadRadius, ShadowStyleProps, ShadowType, ShadowTypeConfig, ShadowVariant, ShadowVariantConfig, ShadowVariantInvert, ShadowVariantWithElevation, ShadowVariantWithInvert, SharedPaletteAlias, SizeStyleProps, SpacingAlias, SpacingConfig, SpacingStyleProps, SpectrumColor, SpectrumConfig, SpectrumRGB, SpectrumValue, SpectrumValueEntry, SpringMotionConfig, SpringMotionConfigProps, StateStyleProps, StyleProps, SubComponentConfig, Switch, SwitchConfig, SwitchProps, SwitchSize, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, TShirtSize, TShirtSizeCommon, Tab, TabConfig, TabList, TabListProps, TabPanel, TabPanelProps, TabProps, Tabs, TabsConfig, TabsProps, TabsVariant, Text, TextDecorationLine, TextProperty, TextProps, TextStyleProps, TextTransform, TextTransformConfig, TextVariant, TextVariantTypography, TextVariantUi, TextVariantWithoutEmphasized, Toast, ToastConfig, ToastContainer, ToastContainerProps, ToastLoadingPromise, ToastPortal, ToastPortalProps, ToastPosition, ToastProps, ToastSize, ToastVariant, Tooltip, TooltipConfig, TooltipContent, UniversalTooltipContentProps as TooltipContentProps, TooltipPlacement, UniversalTooltipProps as TooltipProps, TooltipSize, TooltipTrigger, UniversalTooltipTriggerProps as TooltipTriggerProps, TooltipVariant, TransitionDelay, TransitionDuration, TransitionTiming, TypographyConfig, TypographyResponsiveProperty, TypographyStyle, TypographyStyleProperty, TypographyUnitValue, UDSBottomSheetConfigContextType, UDSBreakpointsConfigContextType, UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, UDSConfigContextType, UDSConfigProvider, UDSConfigProviderProps, UDSModalConfigContextType, UDSModalConfigProvider, UDSModalConfigProviderProps, UDSPopoverConfigContextType, UDSPopoverConfigProvider, UDSPopoverConfigProviderProps, type UDSThemeConfig, type UDSThemeConfigInput, type UDSThemeContext, UDSToastConfigContextType, UDSToastConfigProvider, UDSToastConfigProviderProps, UDSTooltipConfigContextType, UDSTooltipConfigProvider, UDSTooltipConfigProviderProps, UDS_PREFIX, UdsCssVar, UnitlessUnit, UniversalAvatarBaseProps, UniversalAvatarIconProps, UniversalAvatarImageProps, UniversalAvatarProps, UniversalAvatarTextProps, UniversalBadgeProps, UniversalBannerProps, UniversalBottomSheetContentProps, UniversalBottomSheetHeaderProps, UniversalBottomSheetProps, UniversalBoxProps, UniversalButtonProps, UniversalCheckboxProps, UniversalChipBaseProps, UniversalChipButtonProps, UniversalChipDismissibleProps, UniversalChipLinkProps, UniversalChipProps, UniversalChipToggleProps, UniversalDividerProps, UniversalFormLabelProps, UniversalIconButtonProps, UniversalIconProps, UniversalIconSlot, UniversalImageProps, UniversalInputProps, UniversalLinkProps, UniversalMenuItemProps, UniversalModalActionsProps, UniversalModalContentProps, UniversalModalDescriptionProps, UniversalModalProps, UniversalModalTitleProps, UniversalPopoverContentProps, UniversalPopoverProps, UniversalPopoverTriggerProps, UniversalPressableProps, UniversalRadioGroupProps, UniversalRadioProps, UniversalStackProps, UniversalSwitchProps, UniversalTabListProps, UniversalTabPanelProps, UniversalTabProps, UniversalTabsProps, UniversalTabsVariant, UniversalTextProps, UniversalToastProps, UniversalTokensConfig, UniversalTokensConfigAuto, UniversalTokensConfigAutoBase, UniversalTokensConfigBase, UniversalTokensConfigGeneric, UniversalTooltipContentProps, UniversalTooltipProps, UniversalTooltipTriggerProps, VStack, VStackProps, VariantConfig, VariantConfigWithComponentStates, VariantConfigWithProperties, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, alwaysPalette, buildConfigSchema, cartesianProduct, coalesceConfigVariant, configToBottomSheetConfigContext, configToBreakpointsConfigContext, configToModalConfigContext, configToPopoverConfigContext, configToToastConfigContext, configToTooltipConfigContext, configToUDSConfigContext, createComponentStates, createConfigurableProperty, createLayerConfig, createSubComponentConfig, createToast, createVariantConfig, createVariantConfigWithComponentStates, createVariantConfigWithProperties, cva, cx, defineTheme, deprecatedAlwaysPalette, entries, findFixtureType, fontUrls, fromEntries, generateClassName, generateConfigStyles, generateDeclaration, generateDefaultClassName, generateKeyFromFlatConfigPath, generateSchemaKey, generateStyles, getConfigDefaultValue, getConfigSubcomponents, getConfigVariantComponentStates, getConfigVariantComponentStatesMatrix, getConfigVariantProperties, getConfigVariantPseudoStates, getConfigVariants, getFontUrls, getFontUrlsByIds, getMotionVar, getShadowLayerValue, getStyles, getStylesCacheKeySymbol, isConfigDefaultValue, mapValues, newAlwaysPalette, parseButtonVariantFlat, shadow, spectrumRgbToString, statePseudoMapDocsMode, textVariantsSafe, toRgbChannel, toSpectrumValueEntry, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig, variants };
package/dist/index.d.ts CHANGED
@@ -39,6 +39,8 @@ import { BannerTitle, BannerTitleProps } from "./components/Banner/BannerTitle.j
39
39
  import { Box, BoxProps } from "./components/Box.js";
40
40
  import { Text, TextProps } from "./components/Text.js";
41
41
  import { Divider, DividerProps } from "./components/Divider/Divider.js";
42
+ import { DividerLabel, DividerLabelProps } from "./components/Divider/DividerLabel.js";
43
+ import { DividerLine, DividerLineProps } from "./components/Divider/DividerLine.js";
42
44
  import { FormLabel, FormLabelProps } from "./components/FormLabel.js";
43
45
  import { HStack, HStackProps } from "./components/HStack.js";
44
46
  import { Icon, IconProps } from "./components/Icon.js";
@@ -116,4 +118,4 @@ import { UDSTooltipConfigProvider, UDSTooltipConfigProviderProps } from "./compo
116
118
  import { SetState } from "./types.js";
117
119
  import { UDSThemeConfig, UDSThemeConfigInput, UDSThemeContext, defineTheme } from "./tailwind/dist/css/theme.js";
118
120
  import { Modal, ModalProps } from "./components/client/Modal/Modal.js";
119
- export { ALWAYS_PREFIX, AVATAR_SIZE_PREFIX, AllPossibleProperties, AllSelectors, AllVariantKeys, AlwaysPaletteAlias, AlwaysPaletteAliasWithPrefix, AlwaysPaletteColor, Animation, AriaAttribute, AutoComponentName, Avatar, AvatarAbbreviationStrategy, AvatarConfig, AvatarIcon, AvatarIconProps, AvatarImage, AvatarImageProps, AvatarProps, AvatarShape, AvatarSize, AvatarSizeConfig, AvatarText, AvatarTextProps, AvatarVariant, BACKGROUND_BLUR_COLOR_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, BackgroundColor, BackgroundPalette, BackgroundPaletteAlias, BackgroundStyleProps, BackwardsCompatibleReactElement, Badge, BadgeConfig, BadgeProps, BadgeSize, BadgeVariant, Banner, BannerConfig, BannerContent, BannerContentProps, BannerDescription, BannerDescriptionProps, BannerInnerShadowOption, BannerProps, BannerSize, BannerTitle, BannerTitleProps, BannerVariant, BaseSelector, BorderRadius, BorderRadiusConfig, BorderStyleProps, BorderWidth, BorderWidthConfig, BorderWidthWithElevation, BottomSheet, BottomSheetConfig, BottomSheetContent, BottomSheetContentProps, BottomSheetController, BottomSheetDismiss, BottomSheetDismissProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetHeight, BottomSheetProps, BottomSheetProvider, BottomSheetProviderProps, BottomSheetSnapPoints, BottomSheetTrigger, BottomSheetTriggerProps, BottomSheetVariant, Box, BoxProps, Breakpoint, BreakpointValue, BreakpointWithBase, BreakpointsConfig, Button, ButtonConfig, ButtonPalette, ButtonPaletteColor, ButtonProps, ButtonSize, ButtonSpectrumColor, ButtonVariant, ButtonVariantFlat, Checkbox, CheckboxConfig, CheckboxProps, CheckboxSize, CheckboxValue, CheckboxVariant, Chip, ChipButton, ChipButtonProps, ChipConfig, ChipDismissible, ChipDismissibleProps, ChipLink, ChipLinkProps, ChipProps, ChipSize, ChipToggle, ChipToggleProps, ChipVariant, ColorMode, ColorModeConfig, ColorModeForApp, ColorsConfig, ComponentConfig, ComponentSchema, ComponentStateConfig, ConfigurableComponentName, ConfigurablePropertiesName, CssStyleObject, CustomSizingStyleProps, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_FOR_APP, DEFAULT_HIGH_CONTRAST_MODE, DEFAULT_REGION_MODE, DEFAULT_SCALE_MODE, DEFAULT_SCALE_MODE_CLASSNAME, DEFAULT_SCALE_MODE_FOR_APP, DROP_SHADOW_PREFIX, DataAttribute, DeprecatedAlwaysPaletteAlias, Display, Divider, DividerConfig, DividerProps, DividerVariant, ElevationAlias, ElevationBackgroundFillColor, ElevationBorderColor, ElevationConfig, ElevationCustomInsetShadows, ElevationCustomShadows, ElevationGlobalRampConfig, ElevationGlobalRampSettings, ElevationLevel, ElevationPreset, ElevationSurfaceColor, ExtractUrlFromFontFaceRule, FONT_DECLARATIONS_MAP, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, Flex, FlexAlignContent, FlexAlignItems, FlexAlignSelf, FlexBasis, FlexDirection, FlexGrow, FlexJustifyContent, FlexShrink, FlexStyleProps, FlexWrap, FocusRingColor, FocusRingConfig, FocusRingModeConfig, FocusRingOffset, FocusRingWidth, FontAlias, FontAxisConfig, FontConfig, FontCssVar, FontDeclarationConfig, FontDeclarationItemConfig, FontDeclarationMap, FontFamilyCDNUrl, FontFamilyConfig, FontID, FontSize, FontSizeConfig, FontSlantConfig, FontType, FontUrlConfig, FontUrlMap, FontWeightConfig, FontWeightDescriptive, FontWeightForFont, FontWeightNumeric, FontWidthConfig, ForegroundColor, ForegroundPalette, ForegroundPaletteAlias, FormLabel, FormLabelProps, GenericIconComponent, GetMotionVarParams, GlobalDefaultsConfig, HStack, HStackProps, HighContrastMode, Hue, HueStep, ICON_SIZE_PREFIX, INSET_SHADOW_PREFIX, INVERT_COLOR_MODE_CLASSNAME, Icon, IconButton, IconButtonConfig, IconButtonProps, IconButtonSize, IconPixelSize, IconProps, IconPropsWithSVGProps, IconSize, IconSizeConfig, IconSlotRenderProps, IconVariant, Image, ImageProps, ImagePropsWithImgProps, ImageStyleProps, ImgElementProps, Input, InputConfig, InputHelpText, InputHelpTextProps, InputProps, InputSize, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, LayerConfig, LayoutStyleProps, LineClampAlias, LineColor, LineHeight, LineHeightConfig, LinePalette, LinePaletteAlias, Link, LinkConfig, LinkProps, LinkTextVariant, LinkVariant, LinkableValue, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, MaxLengthArray, Menu_index_d_exports as Menu, MenuContentConfig, MenuContentProps, MenuDividerProps, MenuItemCheckboxProps, MenuItemConfig, MenuItemProps, MenuPlacement, MenuProviderProps, MenuTriggerProps, Modal, ModalActions, ModalActionsProps, ModalConfig, ModalContent, ModalContentProps, ModalDescription, ModalDescriptionProps, ModalProps, ModalSize, ModalTitle, ModalTitleProps, ModalVariant, Modes, MotionConfig, MotionCssVar, MotionSpringConfig, MotionSpringConfigOptions, MotionVariant, MotionVariantSpeed, MotionVariantValues, NestedBorderRadiusStyleProps, OUTLINE_PREFIX, OpacityStep, Overflow, PSEUDO_STYLE_SELECTOR_MAP, Palette, PaletteConfig, PaletteType, PaletteValue, ParentVariantSelector, Percentage, PercentageUnit, PixelsUnit, PlatformMode, Popover, PopoverConfig, PopoverContent, UniversalPopoverContentProps as PopoverContentProps, PopoverPlacement, UniversalPopoverProps as PopoverProps, PopoverSize, PopoverTrigger, UniversalPopoverTriggerProps as PopoverTriggerProps, PopoverVariant, Position, PossibleStates, PossibleStatesWithRest, Pressable, PressableProps, PropertyToPaletteAliasMap, RGBAUnit, RGBColorValue, RGBUnit, Radio, RadioConfig, RadioGroupProvider, RadioGroupProviderProps, RadioProps, RadioSize, RadioValue, RadioVariant, RegionMode, RemsUnit, ResolvedTokensConfig, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SVGElementProps, SYSTEM_COLOR_MODE_CLASSNAME, ScaleConfig, ScaleEffect, ScaleMode, ScaleModeConfig, ScaleModeForApp, Scrim, ScrimConfig, ScrimProps, SelectedConfigurableProperty, SetState, ShadowAlwaysColor, ShadowColor, ShadowColorConfig, ShadowConfig, ShadowOffset, ShadowOpacity, ShadowPalette, ShadowPaletteAlias, ShadowPaletteColor, ShadowPreset, ShadowSpectrumColor, ShadowSpreadRadius, ShadowStyleProps, ShadowType, ShadowTypeConfig, ShadowVariant, ShadowVariantConfig, ShadowVariantInvert, ShadowVariantWithElevation, ShadowVariantWithInvert, SharedPaletteAlias, SizeStyleProps, SpacingAlias, SpacingConfig, SpacingStyleProps, SpectrumColor, SpectrumConfig, SpectrumRGB, SpectrumValue, SpectrumValueEntry, SpringMotionConfig, SpringMotionConfigProps, StateStyleProps, StyleProps, SubComponentConfig, Switch, SwitchConfig, SwitchProps, SwitchSize, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, TShirtSize, TShirtSizeCommon, Tab, TabConfig, TabList, TabListProps, TabPanel, TabPanelProps, TabProps, Tabs, TabsConfig, TabsProps, TabsVariant, Text, TextDecorationLine, TextProperty, TextProps, TextStyleProps, TextTransform, TextTransformConfig, TextVariant, TextVariantTypography, TextVariantUi, TextVariantWithoutEmphasized, Toast, ToastConfig, ToastContainer, ToastContainerProps, ToastLoadingPromise, ToastPortal, ToastPortalProps, ToastPosition, ToastProps, ToastSize, ToastVariant, Tooltip, TooltipConfig, TooltipContent, UniversalTooltipContentProps as TooltipContentProps, TooltipPlacement, UniversalTooltipProps as TooltipProps, TooltipSize, TooltipTrigger, UniversalTooltipTriggerProps as TooltipTriggerProps, TooltipVariant, TransitionDelay, TransitionDuration, TransitionTiming, TypographyConfig, TypographyResponsiveProperty, TypographyStyle, TypographyStyleProperty, TypographyUnitValue, UDSBottomSheetConfigContextType, UDSBreakpointsConfigContextType, UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, UDSConfigContextType, UDSConfigProvider, UDSConfigProviderProps, UDSModalConfigContextType, UDSModalConfigProvider, UDSModalConfigProviderProps, UDSPopoverConfigContextType, UDSPopoverConfigProvider, UDSPopoverConfigProviderProps, type UDSThemeConfig, type UDSThemeConfigInput, type UDSThemeContext, UDSToastConfigContextType, UDSToastConfigProvider, UDSToastConfigProviderProps, UDSTooltipConfigContextType, UDSTooltipConfigProvider, UDSTooltipConfigProviderProps, UDS_PREFIX, UdsCssVar, UnitlessUnit, UniversalAvatarBaseProps, UniversalAvatarIconProps, UniversalAvatarImageProps, UniversalAvatarProps, UniversalAvatarTextProps, UniversalBadgeProps, UniversalBannerProps, UniversalBottomSheetContentProps, UniversalBottomSheetHeaderProps, UniversalBottomSheetProps, UniversalBoxProps, UniversalButtonProps, UniversalCheckboxProps, UniversalChipBaseProps, UniversalChipButtonProps, UniversalChipDismissibleProps, UniversalChipLinkProps, UniversalChipProps, UniversalChipToggleProps, UniversalDividerProps, UniversalFormLabelProps, UniversalIconButtonProps, UniversalIconProps, UniversalIconSlot, UniversalImageProps, UniversalInputProps, UniversalLinkProps, UniversalMenuItemProps, UniversalModalActionsProps, UniversalModalContentProps, UniversalModalDescriptionProps, UniversalModalProps, UniversalModalTitleProps, UniversalPopoverContentProps, UniversalPopoverProps, UniversalPopoverTriggerProps, UniversalPressableProps, UniversalRadioGroupProps, UniversalRadioProps, UniversalStackProps, UniversalSwitchProps, UniversalTabListProps, UniversalTabPanelProps, UniversalTabProps, UniversalTabsProps, UniversalTabsVariant, UniversalTextProps, UniversalToastProps, UniversalTokensConfig, UniversalTokensConfigAuto, UniversalTokensConfigAutoBase, UniversalTokensConfigBase, UniversalTokensConfigGeneric, UniversalTooltipContentProps, UniversalTooltipProps, UniversalTooltipTriggerProps, VStack, VStackProps, VariantConfig, VariantConfigWithComponentStates, VariantConfigWithProperties, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, alwaysPalette, buildConfigSchema, cartesianProduct, coalesceConfigVariant, configToBottomSheetConfigContext, configToBreakpointsConfigContext, configToModalConfigContext, configToPopoverConfigContext, configToToastConfigContext, configToTooltipConfigContext, configToUDSConfigContext, createComponentStates, createConfigurableProperty, createLayerConfig, createSubComponentConfig, createToast, createVariantConfig, createVariantConfigWithComponentStates, createVariantConfigWithProperties, cva, cx, defineTheme, deprecatedAlwaysPalette, entries, findFixtureType, fontUrls, fromEntries, generateClassName, generateConfigStyles, generateDeclaration, generateDefaultClassName, generateKeyFromFlatConfigPath, generateSchemaKey, generateStyles, getConfigDefaultValue, getConfigSubcomponents, getConfigVariantComponentStates, getConfigVariantComponentStatesMatrix, getConfigVariantProperties, getConfigVariantPseudoStates, getConfigVariants, getFontUrls, getFontUrlsByIds, getMotionVar, getShadowLayerValue, getStyles, getStylesCacheKeySymbol, isConfigDefaultValue, mapValues, newAlwaysPalette, parseButtonVariantFlat, shadow, spectrumRgbToString, statePseudoMapDocsMode, textVariantsSafe, toRgbChannel, toSpectrumValueEntry, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig, variants };
121
+ export { ALWAYS_PREFIX, AVATAR_SIZE_PREFIX, AllPossibleProperties, AllSelectors, AllVariantKeys, AlwaysPaletteAlias, AlwaysPaletteAliasWithPrefix, AlwaysPaletteColor, Animation, AriaAttribute, AutoComponentName, Avatar, AvatarAbbreviationStrategy, AvatarConfig, AvatarIcon, AvatarIconProps, AvatarImage, AvatarImageProps, AvatarProps, AvatarShape, AvatarSize, AvatarSizeConfig, AvatarText, AvatarTextProps, AvatarVariant, BACKGROUND_BLUR_COLOR_PREFIX, BACKGROUND_BLUR_FALLBACK_COLOR_PREFIX, BACKGROUND_BLUR_RADIUS_PREFIX, BACKGROUND_COLOR_PREFIX, BORDER_RADIUS_PREFIX, BORDER_WIDTH_PREFIX, BUTTON_GAP_VAR, BUTTON_SCALE_EFFECT, BUTTON_SCALE_EFFECT_HOVER, BUTTON_SCALE_EFFECT_PRESSED, BUTTON_SCALE_EFFECT_REST, BackgroundColor, BackgroundPalette, BackgroundPaletteAlias, BackgroundStyleProps, BackwardsCompatibleReactElement, Badge, BadgeConfig, BadgeProps, BadgeSize, BadgeVariant, Banner, BannerConfig, BannerContent, BannerContentProps, BannerDescription, BannerDescriptionProps, BannerInnerShadowOption, BannerProps, BannerSize, BannerTitle, BannerTitleProps, BannerVariant, BaseSelector, BorderRadius, BorderRadiusConfig, BorderStyleProps, BorderWidth, BorderWidthConfig, BorderWidthWithElevation, BottomSheet, BottomSheetConfig, BottomSheetContent, BottomSheetContentProps, BottomSheetController, BottomSheetDismiss, BottomSheetDismissProps, BottomSheetHeader, BottomSheetHeaderProps, BottomSheetHeight, BottomSheetProps, BottomSheetProvider, BottomSheetProviderProps, BottomSheetSnapPoints, BottomSheetTrigger, BottomSheetTriggerProps, BottomSheetVariant, Box, BoxProps, Breakpoint, BreakpointValue, BreakpointWithBase, BreakpointsConfig, Button, ButtonConfig, ButtonPalette, ButtonPaletteColor, ButtonProps, ButtonSize, ButtonSpectrumColor, ButtonVariant, ButtonVariantFlat, Checkbox, CheckboxConfig, CheckboxProps, CheckboxSize, CheckboxValue, CheckboxVariant, Chip, ChipButton, ChipButtonProps, ChipConfig, ChipDismissible, ChipDismissibleProps, ChipLink, ChipLinkProps, ChipProps, ChipSize, ChipToggle, ChipToggleProps, ChipVariant, ColorMode, ColorModeConfig, ColorModeForApp, ColorsConfig, ComponentConfig, ComponentSchema, ComponentStateConfig, ConfigurableComponentName, ConfigurablePropertiesName, CssStyleObject, CustomSizingStyleProps, DARK_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE, DEFAULT_COLOR_MODE_CLASSNAME, DEFAULT_COLOR_MODE_FOR_APP, DEFAULT_HIGH_CONTRAST_MODE, DEFAULT_REGION_MODE, DEFAULT_SCALE_MODE, DEFAULT_SCALE_MODE_CLASSNAME, DEFAULT_SCALE_MODE_FOR_APP, DROP_SHADOW_PREFIX, DataAttribute, DeprecatedAlwaysPaletteAlias, Display, Divider, DividerConfig, DividerLabel, DividerLabelProps, DividerLine, DividerLineProps, DividerProps, DividerVariant, ElevationAlias, ElevationBackgroundFillColor, ElevationBorderColor, ElevationConfig, ElevationCustomInsetShadows, ElevationCustomShadows, ElevationGlobalRampConfig, ElevationGlobalRampSettings, ElevationLevel, ElevationPreset, ElevationSurfaceColor, ExtractUrlFromFontFaceRule, FONT_DECLARATIONS_MAP, FONT_FAMILY_PREFIX, FONT_SIZE_PREFIX, FONT_SLANT_PREFIX, FONT_WEIGHT_PREFIX, FONT_WIDTH_PREFIX, Flex, FlexAlignContent, FlexAlignItems, FlexAlignSelf, FlexBasis, FlexDirection, FlexGrow, FlexJustifyContent, FlexShrink, FlexStyleProps, FlexWrap, FocusRingColor, FocusRingConfig, FocusRingModeConfig, FocusRingOffset, FocusRingWidth, FontAlias, FontAxisConfig, FontConfig, FontCssVar, FontDeclarationConfig, FontDeclarationItemConfig, FontDeclarationMap, FontFamilyCDNUrl, FontFamilyConfig, FontID, FontSize, FontSizeConfig, FontSlantConfig, FontType, FontUrlConfig, FontUrlMap, FontWeightConfig, FontWeightDescriptive, FontWeightForFont, FontWeightNumeric, FontWidthConfig, ForegroundColor, ForegroundPalette, ForegroundPaletteAlias, FormLabel, FormLabelProps, GenericIconComponent, GetMotionVarParams, GlobalDefaultsConfig, HStack, HStackProps, HighContrastMode, Hue, HueStep, ICON_SIZE_PREFIX, INSET_SHADOW_PREFIX, INVERT_COLOR_MODE_CLASSNAME, Icon, IconButton, IconButtonConfig, IconButtonProps, IconButtonSize, IconPixelSize, IconProps, IconPropsWithSVGProps, IconSize, IconSizeConfig, IconSlotRenderProps, IconVariant, Image, ImageProps, ImagePropsWithImgProps, ImageStyleProps, ImgElementProps, Input, InputConfig, InputHelpText, InputHelpTextProps, InputProps, InputSize, LARGE_SCALE_MODE_CLASSNAME, LETTER_SPACING_PREFIX, LIGHT_COLOR_MODE_CLASSNAME, LINE_COLOR_PREFIX, LINE_HEIGHT_PREFIX, LayerConfig, LayoutStyleProps, LineClampAlias, LineColor, LineHeight, LineHeightConfig, LinePalette, LinePaletteAlias, Link, LinkConfig, LinkProps, LinkTextVariant, LinkVariant, LinkableValue, MEDIUM_SCALE_MODE_CLASSNAME, MOTION_PREFIX, MaxLengthArray, Menu_index_d_exports as Menu, MenuContentConfig, MenuContentProps, MenuDividerProps, MenuItemCheckboxProps, MenuItemConfig, MenuItemProps, MenuPlacement, MenuProviderProps, MenuTriggerProps, Modal, ModalActions, ModalActionsProps, ModalConfig, ModalContent, ModalContentProps, ModalDescription, ModalDescriptionProps, ModalProps, ModalSize, ModalTitle, ModalTitleProps, ModalVariant, Modes, MotionConfig, MotionCssVar, MotionSpringConfig, MotionSpringConfigOptions, MotionVariant, MotionVariantSpeed, MotionVariantValues, NestedBorderRadiusStyleProps, OUTLINE_PREFIX, OpacityStep, Overflow, PSEUDO_STYLE_SELECTOR_MAP, Palette, PaletteConfig, PaletteType, PaletteValue, ParentVariantSelector, Percentage, PercentageUnit, PixelsUnit, PlatformMode, Popover, PopoverConfig, PopoverContent, UniversalPopoverContentProps as PopoverContentProps, PopoverPlacement, UniversalPopoverProps as PopoverProps, PopoverSize, PopoverTrigger, UniversalPopoverTriggerProps as PopoverTriggerProps, PopoverVariant, Position, PossibleStates, PossibleStatesWithRest, Pressable, PressableProps, PropertyToPaletteAliasMap, RGBAUnit, RGBColorValue, RGBUnit, Radio, RadioConfig, RadioGroupProvider, RadioGroupProviderProps, RadioProps, RadioSize, RadioValue, RadioVariant, RegionMode, RemsUnit, ResolvedTokensConfig, SMALL_SCALE_MODE_CLASSNAME, SPECTRUM_COLOR_PREFIX, SVGElementProps, SYSTEM_COLOR_MODE_CLASSNAME, ScaleConfig, ScaleEffect, ScaleMode, ScaleModeConfig, ScaleModeForApp, Scrim, ScrimConfig, ScrimProps, SelectedConfigurableProperty, SetState, ShadowAlwaysColor, ShadowColor, ShadowColorConfig, ShadowConfig, ShadowOffset, ShadowOpacity, ShadowPalette, ShadowPaletteAlias, ShadowPaletteColor, ShadowPreset, ShadowSpectrumColor, ShadowSpreadRadius, ShadowStyleProps, ShadowType, ShadowTypeConfig, ShadowVariant, ShadowVariantConfig, ShadowVariantInvert, ShadowVariantWithElevation, ShadowVariantWithInvert, SharedPaletteAlias, SizeStyleProps, SpacingAlias, SpacingConfig, SpacingStyleProps, SpectrumColor, SpectrumConfig, SpectrumRGB, SpectrumValue, SpectrumValueEntry, SpringMotionConfig, SpringMotionConfigProps, StateStyleProps, StyleProps, SubComponentConfig, Switch, SwitchConfig, SwitchProps, SwitchSize, TEXT_RESPONSIVE_BREAKPOINT_CLASSNAMES, TEXT_RESPONSIVE_CLASSNAME, TEXT_TRANSFORM_PREFIX, TShirtSize, TShirtSizeCommon, Tab, TabConfig, TabList, TabListProps, TabPanel, TabPanelProps, TabProps, Tabs, TabsConfig, TabsProps, TabsVariant, Text, TextDecorationLine, TextProperty, TextProps, TextStyleProps, TextTransform, TextTransformConfig, TextVariant, TextVariantTypography, TextVariantUi, TextVariantWithoutEmphasized, Toast, ToastConfig, ToastContainer, ToastContainerProps, ToastLoadingPromise, ToastPortal, ToastPortalProps, ToastPosition, ToastProps, ToastSize, ToastVariant, Tooltip, TooltipConfig, TooltipContent, UniversalTooltipContentProps as TooltipContentProps, TooltipPlacement, UniversalTooltipProps as TooltipProps, TooltipSize, TooltipTrigger, UniversalTooltipTriggerProps as TooltipTriggerProps, TooltipVariant, TransitionDelay, TransitionDuration, TransitionTiming, TypographyConfig, TypographyResponsiveProperty, TypographyStyle, TypographyStyleProperty, TypographyUnitValue, UDSBottomSheetConfigContextType, UDSBreakpointsConfigContextType, UDSBreakpointsConfigProvider, UDSBreakpointsConfigProviderProps, UDSConfigContextType, UDSConfigProvider, UDSConfigProviderProps, UDSModalConfigContextType, UDSModalConfigProvider, UDSModalConfigProviderProps, UDSPopoverConfigContextType, UDSPopoverConfigProvider, UDSPopoverConfigProviderProps, type UDSThemeConfig, type UDSThemeConfigInput, type UDSThemeContext, UDSToastConfigContextType, UDSToastConfigProvider, UDSToastConfigProviderProps, UDSTooltipConfigContextType, UDSTooltipConfigProvider, UDSTooltipConfigProviderProps, UDS_PREFIX, UdsCssVar, UnitlessUnit, UniversalAvatarBaseProps, UniversalAvatarIconProps, UniversalAvatarImageProps, UniversalAvatarProps, UniversalAvatarTextProps, UniversalBadgeProps, UniversalBannerProps, UniversalBottomSheetContentProps, UniversalBottomSheetHeaderProps, UniversalBottomSheetProps, UniversalBoxProps, UniversalButtonProps, UniversalCheckboxProps, UniversalChipBaseProps, UniversalChipButtonProps, UniversalChipDismissibleProps, UniversalChipLinkProps, UniversalChipProps, UniversalChipToggleProps, UniversalDividerProps, UniversalFormLabelProps, UniversalIconButtonProps, UniversalIconProps, UniversalIconSlot, UniversalImageProps, UniversalInputProps, UniversalLinkProps, UniversalMenuItemProps, UniversalModalActionsProps, UniversalModalContentProps, UniversalModalDescriptionProps, UniversalModalProps, UniversalModalTitleProps, UniversalPopoverContentProps, UniversalPopoverProps, UniversalPopoverTriggerProps, UniversalPressableProps, UniversalRadioGroupProps, UniversalRadioProps, UniversalStackProps, UniversalSwitchProps, UniversalTabListProps, UniversalTabPanelProps, UniversalTabProps, UniversalTabsProps, UniversalTabsVariant, UniversalTextProps, UniversalToastProps, UniversalTokensConfig, UniversalTokensConfigAuto, UniversalTokensConfigAutoBase, UniversalTokensConfigBase, UniversalTokensConfigGeneric, UniversalTooltipContentProps, UniversalTooltipProps, UniversalTooltipTriggerProps, VStack, VStackProps, VariantConfig, VariantConfigWithComponentStates, VariantConfigWithProperties, XLARGE_SCALE_MODE_CLASSNAME, XSMALL_SCALE_MODE_CLASSNAME, XXLARGE_SCALE_MODE_CLASSNAME, XXXLARGE_SCALE_MODE_CLASSNAME, alwaysPalette, buildConfigSchema, cartesianProduct, coalesceConfigVariant, configToBottomSheetConfigContext, configToBreakpointsConfigContext, configToModalConfigContext, configToPopoverConfigContext, configToToastConfigContext, configToTooltipConfigContext, configToUDSConfigContext, createComponentStates, createConfigurableProperty, createLayerConfig, createSubComponentConfig, createToast, createVariantConfig, createVariantConfigWithComponentStates, createVariantConfigWithProperties, cva, cx, defineTheme, deprecatedAlwaysPalette, entries, findFixtureType, fontUrls, fromEntries, generateClassName, generateConfigStyles, generateDeclaration, generateDefaultClassName, generateKeyFromFlatConfigPath, generateSchemaKey, generateStyles, getConfigDefaultValue, getConfigSubcomponents, getConfigVariantComponentStates, getConfigVariantComponentStatesMatrix, getConfigVariantProperties, getConfigVariantPseudoStates, getConfigVariants, getFontUrls, getFontUrlsByIds, getMotionVar, getShadowLayerValue, getStyles, getStylesCacheKeySymbol, isConfigDefaultValue, mapValues, newAlwaysPalette, parseButtonVariantFlat, shadow, spectrumRgbToString, statePseudoMapDocsMode, textVariantsSafe, toRgbChannel, toSpectrumValueEntry, useBottomSheetStore, useBreakpointsConfig, useModalConfig, useToastConfig, variants };