@arcfusionz/arc-primitive-ui 0.2.7 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/AlertDialog/AlertDialog.d.ts +117 -0
- package/dist/components/AlertDialog/AlertDialog.js +111 -0
- package/dist/components/AlertDialog/index.d.ts +2 -0
- package/dist/components/AlertDialog/index.js +2 -0
- package/dist/index.d.ts +5 -3
- package/dist/index.js +3 -2
- package/package.json +1 -1
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { DialogScrollBehavior, DialogSize } from "../Dialog/Dialog.js";
|
|
2
|
+
import "../Dialog/index.js";
|
|
3
|
+
import { ComponentPropsWithoutRef, HTMLAttributes } from "react";
|
|
4
|
+
import { AlertDialog } from "@base-ui/react/alert-dialog";
|
|
5
|
+
//#region src/components/AlertDialog/AlertDialog.d.ts
|
|
6
|
+
type AlertDialogSize = Exclude<DialogSize, "full">;
|
|
7
|
+
type AlertDialogScrollBehavior = DialogScrollBehavior;
|
|
8
|
+
/**
|
|
9
|
+
* Groups all parts of the alert dialog and owns its state. Renders no DOM.
|
|
10
|
+
*
|
|
11
|
+
* Base UI keeps alert dialogs modal, assigns `role="alertdialog"`, prevents
|
|
12
|
+
* pointer dismissal, traps focus, restores focus on close, and supports both
|
|
13
|
+
* controlled and uncontrolled state. All root props pass through unchanged.
|
|
14
|
+
*/
|
|
15
|
+
declare const AlertDialog$1: typeof AlertDialog.Root;
|
|
16
|
+
type AlertDialogProps = AlertDialog.Root.Props;
|
|
17
|
+
/** Creates a handle that connects detached triggers to an alert dialog root. */
|
|
18
|
+
declare const createAlertDialogHandle: typeof AlertDialog.createHandle;
|
|
19
|
+
interface AlertDialogTriggerProps extends Omit<ComponentPropsWithoutRef<typeof AlertDialog.Trigger>, "className"> {
|
|
20
|
+
className?: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Opens the alert dialog. Compose its unstyled button with Button through
|
|
24
|
+
* `render`: `<AlertDialogTrigger render={<Button>Delete</Button>} />`.
|
|
25
|
+
*/
|
|
26
|
+
declare const AlertDialogTrigger: import("react").ForwardRefExoticComponent<AlertDialogTriggerProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
27
|
+
interface AlertDialogCancelProps extends Omit<ComponentPropsWithoutRef<typeof AlertDialog.Close>, "className"> {
|
|
28
|
+
className?: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Closes the alert dialog without committing the proposed action. Place it
|
|
32
|
+
* before `AlertDialogAction` in DOM order so it receives initial focus by
|
|
33
|
+
* default, and compose it with a neutral Button variant through `render`.
|
|
34
|
+
*/
|
|
35
|
+
declare const AlertDialogCancel: import("react").ForwardRefExoticComponent<AlertDialogCancelProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
36
|
+
interface AlertDialogActionProps extends Omit<ComponentPropsWithoutRef<typeof AlertDialog.Close>, "className"> {
|
|
37
|
+
className?: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Closes the alert dialog and represents the committed decision. Compose it
|
|
41
|
+
* with a Button whose variant reflects the consequence (usually `primary`
|
|
42
|
+
* or `destructive`) and handle the action with `onClick`.
|
|
43
|
+
*/
|
|
44
|
+
declare const AlertDialogAction: import("react").ForwardRefExoticComponent<AlertDialogActionProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
45
|
+
interface AlertDialogPopupVariantsOptions {
|
|
46
|
+
/** Width preset for the confirmation surface. */
|
|
47
|
+
size?: AlertDialogSize;
|
|
48
|
+
/** Whether tall content scrolls inside the popup or in the surrounding viewport. */
|
|
49
|
+
scrollBehavior?: AlertDialogScrollBehavior;
|
|
50
|
+
/** Additional classes merged after the preset classes. */
|
|
51
|
+
className?: string;
|
|
52
|
+
}
|
|
53
|
+
/** Class list for an element styled as the alert dialog surface. */
|
|
54
|
+
declare function alertDialogPopupVariants({ size, scrollBehavior, className }?: AlertDialogPopupVariantsOptions): string;
|
|
55
|
+
interface AlertDialogPopupProps extends Omit<ComponentPropsWithoutRef<typeof AlertDialog.Popup>, "className" | "initialFocus" | "finalFocus" | "render"> {
|
|
56
|
+
/**
|
|
57
|
+
* Width preset: `sm` 384px (default) for a concise decision, `md` 512px
|
|
58
|
+
* for supporting details, and `lg` 672px for reviewing a larger impact
|
|
59
|
+
* summary. The popup shrinks below the preset to preserve a 16px margin.
|
|
60
|
+
*/
|
|
61
|
+
size?: AlertDialogSize;
|
|
62
|
+
/**
|
|
63
|
+
* How content taller than the viewport scrolls. `inside` (default) caps
|
|
64
|
+
* and scrolls the popup; `outside` lets the surface grow while the modal
|
|
65
|
+
* viewport scrolls.
|
|
66
|
+
*/
|
|
67
|
+
scrollBehavior?: AlertDialogScrollBehavior;
|
|
68
|
+
/**
|
|
69
|
+
* Keep the portal mounted while closed. Use this when preserving expensive
|
|
70
|
+
* content or local state is worth the extra DOM.
|
|
71
|
+
*/
|
|
72
|
+
keepMounted?: boolean;
|
|
73
|
+
/** Element to portal into instead of `<body>`, such as a scoped stacking context or inline preview. */
|
|
74
|
+
container?: ComponentPropsWithoutRef<typeof AlertDialog.Portal>["container"];
|
|
75
|
+
/**
|
|
76
|
+
* Element to focus when the popup opens. By default Base UI focuses the
|
|
77
|
+
* first tabbable element (normally `AlertDialogCancel`); pass `false` to
|
|
78
|
+
* preserve focus or a ref/function to select a specific target.
|
|
79
|
+
*/
|
|
80
|
+
initialFocus?: ComponentPropsWithoutRef<typeof AlertDialog.Popup>["initialFocus"];
|
|
81
|
+
/**
|
|
82
|
+
* Element to focus after the popup closes. Base UI restores the trigger or
|
|
83
|
+
* previously focused element by default; pass a ref/function to override it.
|
|
84
|
+
*/
|
|
85
|
+
finalFocus?: ComponentPropsWithoutRef<typeof AlertDialog.Popup>["finalFocus"];
|
|
86
|
+
/** Replace the popup element or compose it with another component while preserving behavior and ARIA wiring. */
|
|
87
|
+
render?: ComponentPropsWithoutRef<typeof AlertDialog.Popup>["render"];
|
|
88
|
+
/** Additional classes merged after the popup preset classes. */
|
|
89
|
+
className?: string;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* The alert-dialog surface. Bundles Base UI's Portal, Backdrop, Viewport, and
|
|
93
|
+
* Popup; `initialFocus`, `finalFocus`, `render`, and other popup props pass
|
|
94
|
+
* through. Include `AlertDialogTitle` or provide an accessible name directly.
|
|
95
|
+
*/
|
|
96
|
+
declare const AlertDialogPopup: import("react").ForwardRefExoticComponent<AlertDialogPopupProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
97
|
+
interface AlertDialogHeaderProps extends HTMLAttributes<HTMLDivElement> {}
|
|
98
|
+
/** Groups the title and description with standard spacing. */
|
|
99
|
+
declare const AlertDialogHeader: import("react").ForwardRefExoticComponent<AlertDialogHeaderProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
100
|
+
interface AlertDialogFooterProps extends HTMLAttributes<HTMLDivElement> {}
|
|
101
|
+
/** Action row: right-aligned on desktop and stacked with the committing action on top on small screens. */
|
|
102
|
+
declare const AlertDialogFooter: import("react").ForwardRefExoticComponent<AlertDialogFooterProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
103
|
+
interface AlertDialogTitleProps extends Omit<ComponentPropsWithoutRef<typeof AlertDialog.Title>, "className"> {
|
|
104
|
+
className?: string;
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* Accessible heading announced when the alert dialog opens. Base UI wires it
|
|
108
|
+
* to `aria-labelledby`; keep the copy specific enough to stand on its own.
|
|
109
|
+
*/
|
|
110
|
+
declare const AlertDialogTitle: import("react").ForwardRefExoticComponent<AlertDialogTitleProps & import("react").RefAttributes<HTMLHeadingElement>>;
|
|
111
|
+
interface AlertDialogDescriptionProps extends Omit<ComponentPropsWithoutRef<typeof AlertDialog.Description>, "className"> {
|
|
112
|
+
className?: string;
|
|
113
|
+
}
|
|
114
|
+
/** Supporting detail announced after the title via `aria-describedby`. */
|
|
115
|
+
declare const AlertDialogDescription: import("react").ForwardRefExoticComponent<AlertDialogDescriptionProps & import("react").RefAttributes<HTMLParagraphElement>>;
|
|
116
|
+
//#endregion
|
|
117
|
+
export { AlertDialog$1 as AlertDialog, AlertDialogAction, AlertDialogActionProps, AlertDialogCancel, AlertDialogCancelProps, AlertDialogDescription, AlertDialogDescriptionProps, AlertDialogFooter, AlertDialogFooterProps, AlertDialogHeader, AlertDialogHeaderProps, AlertDialogPopup, AlertDialogPopupProps, AlertDialogPopupVariantsOptions, AlertDialogProps, AlertDialogScrollBehavior, AlertDialogSize, AlertDialogTitle, AlertDialogTitleProps, AlertDialogTrigger, AlertDialogTriggerProps, alertDialogPopupVariants, createAlertDialogHandle };
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { cn } from "../../lib/cn.js";
|
|
2
|
+
import { dialogPopupVariants } from "../Dialog/Dialog.js";
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
5
|
+
import { AlertDialog } from "@base-ui/react/alert-dialog";
|
|
6
|
+
//#region src/components/AlertDialog/AlertDialog.tsx
|
|
7
|
+
/**
|
|
8
|
+
* Groups all parts of the alert dialog and owns its state. Renders no DOM.
|
|
9
|
+
*
|
|
10
|
+
* Base UI keeps alert dialogs modal, assigns `role="alertdialog"`, prevents
|
|
11
|
+
* pointer dismissal, traps focus, restores focus on close, and supports both
|
|
12
|
+
* controlled and uncontrolled state. All root props pass through unchanged.
|
|
13
|
+
*/
|
|
14
|
+
const AlertDialog$1 = AlertDialog.Root;
|
|
15
|
+
/** Creates a handle that connects detached triggers to an alert dialog root. */
|
|
16
|
+
const createAlertDialogHandle = AlertDialog.createHandle;
|
|
17
|
+
/**
|
|
18
|
+
* Opens the alert dialog. Compose its unstyled button with Button through
|
|
19
|
+
* `render`: `<AlertDialogTrigger render={<Button>Delete</Button>} />`.
|
|
20
|
+
*/
|
|
21
|
+
const AlertDialogTrigger = forwardRef((props, ref) => /* @__PURE__ */ jsx(AlertDialog.Trigger, {
|
|
22
|
+
ref,
|
|
23
|
+
...props
|
|
24
|
+
}));
|
|
25
|
+
AlertDialogTrigger.displayName = "AlertDialogTrigger";
|
|
26
|
+
/**
|
|
27
|
+
* Closes the alert dialog without committing the proposed action. Place it
|
|
28
|
+
* before `AlertDialogAction` in DOM order so it receives initial focus by
|
|
29
|
+
* default, and compose it with a neutral Button variant through `render`.
|
|
30
|
+
*/
|
|
31
|
+
const AlertDialogCancel = forwardRef((props, ref) => /* @__PURE__ */ jsx(AlertDialog.Close, {
|
|
32
|
+
ref,
|
|
33
|
+
...props
|
|
34
|
+
}));
|
|
35
|
+
AlertDialogCancel.displayName = "AlertDialogCancel";
|
|
36
|
+
/**
|
|
37
|
+
* Closes the alert dialog and represents the committed decision. Compose it
|
|
38
|
+
* with a Button whose variant reflects the consequence (usually `primary`
|
|
39
|
+
* or `destructive`) and handle the action with `onClick`.
|
|
40
|
+
*/
|
|
41
|
+
const AlertDialogAction = forwardRef((props, ref) => /* @__PURE__ */ jsx(AlertDialog.Close, {
|
|
42
|
+
ref,
|
|
43
|
+
...props
|
|
44
|
+
}));
|
|
45
|
+
AlertDialogAction.displayName = "AlertDialogAction";
|
|
46
|
+
const backdropClasses = "fixed inset-0 z-50 min-h-dvh bg-overlay supports-[-webkit-touch-callout:none]:absolute motion-safe:transition-opacity motion-safe:duration-150 motion-safe:ease-out data-starting-style:opacity-0 data-ending-style:opacity-0";
|
|
47
|
+
const viewportBaseClasses = "fixed inset-0 z-50 flex data-closed:pointer-events-none";
|
|
48
|
+
const viewportInsideClasses = "pointer-events-none p-4";
|
|
49
|
+
const viewportOutsideClasses = "overflow-y-auto overscroll-contain px-4 py-12";
|
|
50
|
+
/** Class list for an element styled as the alert dialog surface. */
|
|
51
|
+
function alertDialogPopupVariants({ size = "sm", scrollBehavior = "inside", className } = {}) {
|
|
52
|
+
return dialogPopupVariants({
|
|
53
|
+
size,
|
|
54
|
+
scrollBehavior,
|
|
55
|
+
className
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* The alert-dialog surface. Bundles Base UI's Portal, Backdrop, Viewport, and
|
|
60
|
+
* Popup; `initialFocus`, `finalFocus`, `render`, and other popup props pass
|
|
61
|
+
* through. Include `AlertDialogTitle` or provide an accessible name directly.
|
|
62
|
+
*/
|
|
63
|
+
const AlertDialogPopup = forwardRef(({ size = "sm", scrollBehavior = "inside", keepMounted = false, container, className, ...rest }, ref) => /* @__PURE__ */ jsxs(AlertDialog.Portal, {
|
|
64
|
+
keepMounted,
|
|
65
|
+
container,
|
|
66
|
+
children: [/* @__PURE__ */ jsx(AlertDialog.Backdrop, { className: backdropClasses }), /* @__PURE__ */ jsx(AlertDialog.Viewport, {
|
|
67
|
+
className: cn(viewportBaseClasses, scrollBehavior === "inside" ? viewportInsideClasses : viewportOutsideClasses),
|
|
68
|
+
children: /* @__PURE__ */ jsx(AlertDialog.Popup, {
|
|
69
|
+
ref,
|
|
70
|
+
className: cn(alertDialogPopupVariants({
|
|
71
|
+
size,
|
|
72
|
+
scrollBehavior
|
|
73
|
+
}), className),
|
|
74
|
+
...rest
|
|
75
|
+
})
|
|
76
|
+
})]
|
|
77
|
+
}));
|
|
78
|
+
AlertDialogPopup.displayName = "AlertDialogPopup";
|
|
79
|
+
/** Groups the title and description with standard spacing. */
|
|
80
|
+
const AlertDialogHeader = forwardRef(({ className, ...rest }, ref) => /* @__PURE__ */ jsx("div", {
|
|
81
|
+
ref,
|
|
82
|
+
className: cn("flex flex-col gap-1.5", className),
|
|
83
|
+
...rest
|
|
84
|
+
}));
|
|
85
|
+
AlertDialogHeader.displayName = "AlertDialogHeader";
|
|
86
|
+
/** Action row: right-aligned on desktop and stacked with the committing action on top on small screens. */
|
|
87
|
+
const AlertDialogFooter = forwardRef(({ className, ...rest }, ref) => /* @__PURE__ */ jsx("div", {
|
|
88
|
+
ref,
|
|
89
|
+
className: cn("flex flex-col-reverse gap-2 sm:flex-row sm:items-center sm:justify-end", className),
|
|
90
|
+
...rest
|
|
91
|
+
}));
|
|
92
|
+
AlertDialogFooter.displayName = "AlertDialogFooter";
|
|
93
|
+
/**
|
|
94
|
+
* Accessible heading announced when the alert dialog opens. Base UI wires it
|
|
95
|
+
* to `aria-labelledby`; keep the copy specific enough to stand on its own.
|
|
96
|
+
*/
|
|
97
|
+
const AlertDialogTitle = forwardRef(({ className, ...rest }, ref) => /* @__PURE__ */ jsx(AlertDialog.Title, {
|
|
98
|
+
ref,
|
|
99
|
+
className: cn("font-heading text-xl font-semibold text-foreground", className),
|
|
100
|
+
...rest
|
|
101
|
+
}));
|
|
102
|
+
AlertDialogTitle.displayName = "AlertDialogTitle";
|
|
103
|
+
/** Supporting detail announced after the title via `aria-describedby`. */
|
|
104
|
+
const AlertDialogDescription = forwardRef(({ className, ...rest }, ref) => /* @__PURE__ */ jsx(AlertDialog.Description, {
|
|
105
|
+
ref,
|
|
106
|
+
className: cn("font-sans text-sm text-muted-foreground", className),
|
|
107
|
+
...rest
|
|
108
|
+
}));
|
|
109
|
+
AlertDialogDescription.displayName = "AlertDialogDescription";
|
|
110
|
+
//#endregion
|
|
111
|
+
export { AlertDialog$1 as AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogPopup, AlertDialogTitle, AlertDialogTrigger, alertDialogPopupVariants, createAlertDialogHandle };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { AlertDialog, AlertDialogAction, AlertDialogActionProps, AlertDialogCancel, AlertDialogCancelProps, AlertDialogDescription, AlertDialogDescriptionProps, AlertDialogFooter, AlertDialogFooterProps, AlertDialogHeader, AlertDialogHeaderProps, AlertDialogPopup, AlertDialogPopupProps, AlertDialogPopupVariantsOptions, AlertDialogProps, AlertDialogScrollBehavior, AlertDialogSize, AlertDialogTitle, AlertDialogTitleProps, AlertDialogTrigger, AlertDialogTriggerProps, alertDialogPopupVariants, createAlertDialogHandle } from "./AlertDialog.js";
|
|
2
|
+
export { AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogPopup, type AlertDialogPopupProps, type AlertDialogPopupVariantsOptions, type AlertDialogProps, type AlertDialogScrollBehavior, type AlertDialogSize, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, alertDialogPopupVariants, createAlertDialogHandle };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogPopup, AlertDialogTitle, AlertDialogTrigger, alertDialogPopupVariants, createAlertDialogHandle } from "./AlertDialog.js";
|
|
2
|
+
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogPopup, AlertDialogTitle, AlertDialogTrigger, alertDialogPopupVariants, createAlertDialogHandle };
|
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,10 @@ import { Accordion, AccordionChevronPosition, AccordionHeader, AccordionHeaderPr
|
|
|
4
4
|
import "./components/Accordion/index.js";
|
|
5
5
|
import { Alert, AlertAppearance, AlertProps, AlertVariant, AlertVariantsOptions, alertVariants } from "./components/Alert/Alert.js";
|
|
6
6
|
import "./components/Alert/index.js";
|
|
7
|
+
import { Dialog, DialogClose, DialogCloseProps, DialogDescription, DialogDescriptionProps, DialogFooter, DialogFooterProps, DialogHeader, DialogHeaderProps, DialogPopup, DialogPopupProps, DialogPopupVariantsOptions, DialogProps, DialogScrollBehavior, DialogSize, DialogTitle, DialogTitleProps, DialogTrigger, DialogTriggerProps, dialogPopupVariants } from "./components/Dialog/Dialog.js";
|
|
8
|
+
import "./components/Dialog/index.js";
|
|
9
|
+
import { AlertDialog, AlertDialogAction, AlertDialogActionProps, AlertDialogCancel, AlertDialogCancelProps, AlertDialogDescription, AlertDialogDescriptionProps, AlertDialogFooter, AlertDialogFooterProps, AlertDialogHeader, AlertDialogHeaderProps, AlertDialogPopup, AlertDialogPopupProps, AlertDialogPopupVariantsOptions, AlertDialogProps, AlertDialogScrollBehavior, AlertDialogSize, AlertDialogTitle, AlertDialogTitleProps, AlertDialogTrigger, AlertDialogTriggerProps, alertDialogPopupVariants, createAlertDialogHandle } from "./components/AlertDialog/AlertDialog.js";
|
|
10
|
+
import "./components/AlertDialog/index.js";
|
|
7
11
|
import { Avatar, AvatarBadge, AvatarBadgeProps, AvatarFallback, AvatarFallbackProps, AvatarGroup, AvatarGroupProps, AvatarImage, AvatarImageProps, AvatarProps, AvatarShape, AvatarSize, AvatarVariantsOptions, avatarVariants } from "./components/Avatar/Avatar.js";
|
|
8
12
|
import "./components/Avatar/index.js";
|
|
9
13
|
import { Badge, BadgeAppearance, BadgeProps, BadgeSize, BadgeVariant, BadgeVariantsOptions, badgeVariants } from "./components/Badge/Badge.js";
|
|
@@ -29,8 +33,6 @@ import { DatePicker, DatePickerCalendarProps, DatePickerPopupProps, DatePickerPr
|
|
|
29
33
|
import "./components/DatePicker/index.js";
|
|
30
34
|
import { DateRangePicker, DateRangePickerCalendarProps, DateRangePickerPopupProps, DateRangePickerProps, DateRangePickerSize, DateRangePickerVariant, DateRangePickerVariantsOptions, dateRangePickerVariants } from "./components/DateRangePicker/DateRangePicker.js";
|
|
31
35
|
import "./components/DateRangePicker/index.js";
|
|
32
|
-
import { Dialog, DialogClose, DialogCloseProps, DialogDescription, DialogDescriptionProps, DialogFooter, DialogFooterProps, DialogHeader, DialogHeaderProps, DialogPopup, DialogPopupProps, DialogPopupVariantsOptions, DialogProps, DialogScrollBehavior, DialogSize, DialogTitle, DialogTitleProps, DialogTrigger, DialogTriggerProps, dialogPopupVariants } from "./components/Dialog/Dialog.js";
|
|
33
|
-
import "./components/Dialog/index.js";
|
|
34
36
|
import { Divider, DividerLabelPosition, DividerOrientation, DividerProps, DividerVariant, DividerVariantsOptions, dividerVariants } from "./components/Divider/Divider.js";
|
|
35
37
|
import "./components/Divider/index.js";
|
|
36
38
|
import { Drawer, DrawerClose, DrawerCloseProps, DrawerDescription, DrawerDescriptionProps, DrawerFooter, DrawerFooterProps, DrawerHeader, DrawerHeaderProps, DrawerIndent, DrawerIndentBackground, DrawerIndentBackgroundProps, DrawerIndentProps, DrawerPopup, DrawerPopupProps, DrawerPopupVariantsOptions, DrawerProps, DrawerProvider, DrawerSide, DrawerSize, DrawerSwipeArea, DrawerSwipeAreaProps, DrawerTitle, DrawerTitleProps, DrawerTrigger, DrawerTriggerProps, DrawerVirtualKeyboardProvider, createDrawerHandle, drawerPopupVariants } from "./components/Drawer/Drawer.js";
|
|
@@ -74,4 +76,4 @@ import "./components/Tooltip/index.js";
|
|
|
74
76
|
import { Typography, TypographyProps, TypographyVariant, TypographyVariantsOptions, typographyVariants } from "./components/Typography/Typography.js";
|
|
75
77
|
import "./components/Typography/index.js";
|
|
76
78
|
import { cn } from "./lib/cn.js";
|
|
77
|
-
export { AILoader, type AILoaderProps, type AILoaderRenderState, type AILoaderSize, type AILoaderState, type AILoaderTone, Accordion, type AccordionChevronPosition, AccordionHeader, type AccordionHeaderProps, AccordionItem, type AccordionItemProps, AccordionPanel, type AccordionPanelProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionVariant, Alert, type AlertAppearance, type AlertProps, type AlertVariant, type AlertVariantsOptions, Avatar, AvatarBadge, type AvatarBadgeProps, AvatarFallback, type AvatarFallbackProps, AvatarGroup, type AvatarGroupProps, AvatarImage, type AvatarImageProps, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarVariantsOptions, Badge, type BadgeAppearance, type BadgeProps, type BadgeSize, type BadgeVariant, type BadgeVariantsOptions, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, type BreadcrumbLinkVariantsOptions, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, type ButtonVariantsOptions, Calendar, type CalendarDateRange, type CalendarMode, type CalendarProps, type CalendarState, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, type CheckboxVariantsOptions, Combobox, type ComboboxAlign, ComboboxChip, type ComboboxChipProps, ComboboxChipRemove, type ComboboxChipRemoveProps, ComboboxChips, type ComboboxChipsProps, ComboboxClear, type ComboboxClearProps, ComboboxCollection, type ComboboxCollectionProps, ComboboxGroup, ComboboxGroupLabel, type ComboboxGroupLabelProps, type ComboboxGroupProps, ComboboxInput, ComboboxInputGroup, type ComboboxInputGroupProps, type ComboboxInputGroupVariantsOptions, type ComboboxInputProps, ComboboxItem, type ComboboxItemProps, ComboboxLabel, type ComboboxLabelProps, ComboboxPopup, type ComboboxPopupProps, type ComboboxProps, ComboboxSeparator, type ComboboxSeparatorProps, type ComboboxSize, ComboboxTrigger, type ComboboxTriggerProps, type ComboboxTriggerSize, type ComboboxTriggerVariant, ComboboxValue, type ComboboxValueProps, ContextMenu, type ContextMenuAlign, ContextMenuCheckboxItem, type ContextMenuCheckboxItemProps, ContextMenuGroup, ContextMenuGroupLabel, type ContextMenuGroupLabelProps, type ContextMenuGroupProps, ContextMenuItem, type ContextMenuItemProps, type ContextMenuItemVariant, ContextMenuLinkItem, type ContextMenuLinkItemProps, ContextMenuPopup, type ContextMenuPopupProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, type ContextMenuSide, ContextMenuSubmenuRoot, type ContextMenuSubmenuRootProps, ContextMenuSubmenuTrigger, type ContextMenuSubmenuTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, DatePicker, type DatePickerCalendarProps, type DatePickerPopupProps, type DatePickerProps, type DatePickerSize, type DatePickerVariant, type DatePickerVariantsOptions, DateRangePicker, type DateRangePickerCalendarProps, type DateRangePickerPopupProps, type DateRangePickerProps, type DateRangePickerSize, type DateRangePickerVariant, type DateRangePickerVariantsOptions, Dialog, DialogClose, type DialogCloseProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogPopup, type DialogPopupProps, type DialogPopupVariantsOptions, type DialogProps, type DialogScrollBehavior, type DialogSize, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Divider, type DividerLabelPosition, type DividerOrientation, type DividerProps, type DividerVariant, type DividerVariantsOptions, Drawer, DrawerClose, type DrawerCloseProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerIndent, DrawerIndentBackground, type DrawerIndentBackgroundProps, type DrawerIndentProps, DrawerPopup, type DrawerPopupProps, type DrawerPopupVariantsOptions, type DrawerProps, DrawerProvider, type DrawerSide, type DrawerSize, DrawerSwipeArea, type DrawerSwipeAreaProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DrawerVirtualKeyboardProvider, Field, type FieldControlProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldItem, type FieldItemProps, FieldLabel, type FieldLabelProps, type FieldLabelVariantsOptions, type FieldOrientation, type FieldProps, FieldValidity, type FieldValidityProps, Fieldset, FieldsetDescription, type FieldsetDescriptionProps, FieldsetLegend, type FieldsetLegendProps, type FieldsetLegendVariant, type FieldsetProps, Form, type FormProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonProps, type InputGroupProps, type InputProps, type InputSize, type InputVariantsOptions, Menu, type MenuAlign, MenuCheckboxItem, type MenuCheckboxItemProps, MenuGroup, MenuGroupLabel, type MenuGroupLabelProps, type MenuGroupProps, type MenuHandle, MenuItem, type MenuItemProps, type MenuItemVariant, type MenuItemVariantsOptions, MenuLinkItem, type MenuLinkItemProps, MenuPopup, type MenuPopupProps, type MenuProps, MenuRadioGroup, type MenuRadioGroupProps, MenuRadioItem, type MenuRadioItemProps, MenuSeparator, type MenuSeparatorProps, MenuShortcut, type MenuShortcutProps, type MenuSide, MenuSubmenuRoot, type MenuSubmenuRootProps, MenuSubmenuTrigger, type MenuSubmenuTriggerProps, MenuTrigger, type MenuTriggerProps, Meter, type MeterIndicatorVariantsOptions, type MeterProps, type MeterSize, type MeterTrackVariantsOptions, type MeterVariant, Popover, type PopoverAlign, PopoverClose, type PopoverCloseProps, PopoverDescription, type PopoverDescriptionProps, type PopoverHandle, PopoverPopup, type PopoverPopupProps, type PopoverPopupVariantsOptions, type PopoverProps, type PopoverSide, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressIndicatorVariantsOptions, type ProgressProps, type ProgressSize, type ProgressTrackVariantsOptions, type ProgressVariant, Radio, RadioGroup, type RadioGroupProps, type RadioProps, type RadioSize, type RadioVariantsOptions, Select, type SelectAlign, SelectGroup, SelectGroupLabel, type SelectGroupLabelProps, type SelectGroupProps, SelectItem, type SelectItemProps, SelectLabel, type SelectLabelProps, SelectPopup, type SelectPopupProps, type SelectProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerProps, type SelectTriggerSize, type SelectTriggerVariant, type SelectTriggerVariantsOptions, SelectValue, type SelectValueProps, Skeleton, type SkeletonAnimation, type SkeletonProps, type SkeletonRenderState, type SkeletonVariant, type SkeletonVariantsOptions, Stepper, StepperDescription, type StepperDescriptionProps, StepperIndicator, type StepperIndicatorProps, StepperItem, type StepperItemProps, type StepperOrientation, type StepperProps, StepperSeparator, type StepperSeparatorProps, type StepperSize, StepperTitle, type StepperTitleProps, StepperTrigger, type StepperTriggerProps, type StepperTriggerVariantsOptions, Switch, type SwitchLabelPosition, type SwitchProps, type SwitchSize, type SwitchVariantsOptions, SystemState, type SystemStateBackground, type SystemStateProps, type SystemStateRenderState, type SystemStateScope, type SystemStateTitleLevel, type SystemStateVariant, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, type TableCaptionRenderState, type TableCaptionSide, TableCell, type TableCellProps, TableContainer, type TableContainerProps, type TableContainerRenderState, type TableContainerVariant, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableLayout, type TableProps, type TableRenderState, TableRow, type TableRowProps, type TableRowRenderState, type TableSize, Tabs, type TabsIndicatorPosition, TabsList, type TabsListProps, type TabsListVariantsOptions, TabsPanel, type TabsPanelProps, type TabsProps, type TabsSize, TabsTab, type TabsTabProps, type TabsTabVariantsOptions, type TabsVariant, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, TimelineDescription, type TimelineDescriptionProps, TimelineIndicator, type TimelineIndicatorAppearance, type TimelineIndicatorProps, type TimelineIndicatorVariant, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, type TimelineSeparatorVariant, type TimelineSize, TimelineTime, type TimelineTimeProps, TimelineTitle, type TimelineTitleProps, type ToastData, type ToastManager, type ToastObject, type ToastOptions, type ToastPosition, type ToastPromiseOptions, type ToastType, type ToastUpdateOptions, Toaster, type ToasterProps, Toggle, ToggleGroup, type ToggleGroupProps, type ToggleProps, type ToggleSize, type ToggleVariant, type ToggleVariantsOptions, Tooltip, type TooltipAlign, type TooltipHandle, TooltipPopup, type TooltipPopupProps, type TooltipPopupVariantsOptions, type TooltipProps, TooltipProvider, type TooltipProviderProps, type TooltipSide, TooltipTrigger, type TooltipTriggerProps, Typography, type TypographyProps, type TypographyVariant, type TypographyVariantsOptions, alertVariants, avatarVariants, badgeVariants, breadcrumbLinkVariants, buttonVariants, checkboxVariants, cn, comboboxInputGroupVariants, createDrawerHandle, createMenuHandle, createPopoverHandle, createToastManager, createTooltipHandle, datePickerVariants, dateRangePickerVariants, dialogPopupVariants, dividerVariants, drawerPopupVariants, fieldLabelVariants, inputVariants, menuItemVariants, meterIndicatorVariants, meterTrackVariants, popoverPopupVariants, progressIndicatorVariants, progressTrackVariants, radioVariants, selectTriggerVariants, skeletonVariants, stepperTriggerVariants, switchVariants, tabsListVariants, tabsTabVariants, toast, toggleVariants, tooltipPopupVariants, typographyVariants, useComboboxFilter, useComboboxFilteredItems, useFieldControl };
|
|
79
|
+
export { AILoader, type AILoaderProps, type AILoaderRenderState, type AILoaderSize, type AILoaderState, type AILoaderTone, Accordion, type AccordionChevronPosition, AccordionHeader, type AccordionHeaderProps, AccordionItem, type AccordionItemProps, AccordionPanel, type AccordionPanelProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionVariant, Alert, type AlertAppearance, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogPopup, type AlertDialogPopupProps, type AlertDialogPopupVariantsOptions, type AlertDialogProps, type AlertDialogScrollBehavior, type AlertDialogSize, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, type AlertProps, type AlertVariant, type AlertVariantsOptions, Avatar, AvatarBadge, type AvatarBadgeProps, AvatarFallback, type AvatarFallbackProps, AvatarGroup, type AvatarGroupProps, AvatarImage, type AvatarImageProps, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarVariantsOptions, Badge, type BadgeAppearance, type BadgeProps, type BadgeSize, type BadgeVariant, type BadgeVariantsOptions, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, type BreadcrumbLinkVariantsOptions, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, type ButtonVariantsOptions, Calendar, type CalendarDateRange, type CalendarMode, type CalendarProps, type CalendarState, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, type CheckboxVariantsOptions, Combobox, type ComboboxAlign, ComboboxChip, type ComboboxChipProps, ComboboxChipRemove, type ComboboxChipRemoveProps, ComboboxChips, type ComboboxChipsProps, ComboboxClear, type ComboboxClearProps, ComboboxCollection, type ComboboxCollectionProps, ComboboxGroup, ComboboxGroupLabel, type ComboboxGroupLabelProps, type ComboboxGroupProps, ComboboxInput, ComboboxInputGroup, type ComboboxInputGroupProps, type ComboboxInputGroupVariantsOptions, type ComboboxInputProps, ComboboxItem, type ComboboxItemProps, ComboboxLabel, type ComboboxLabelProps, ComboboxPopup, type ComboboxPopupProps, type ComboboxProps, ComboboxSeparator, type ComboboxSeparatorProps, type ComboboxSize, ComboboxTrigger, type ComboboxTriggerProps, type ComboboxTriggerSize, type ComboboxTriggerVariant, ComboboxValue, type ComboboxValueProps, ContextMenu, type ContextMenuAlign, ContextMenuCheckboxItem, type ContextMenuCheckboxItemProps, ContextMenuGroup, ContextMenuGroupLabel, type ContextMenuGroupLabelProps, type ContextMenuGroupProps, ContextMenuItem, type ContextMenuItemProps, type ContextMenuItemVariant, ContextMenuLinkItem, type ContextMenuLinkItemProps, ContextMenuPopup, type ContextMenuPopupProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, type ContextMenuSide, ContextMenuSubmenuRoot, type ContextMenuSubmenuRootProps, ContextMenuSubmenuTrigger, type ContextMenuSubmenuTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, DatePicker, type DatePickerCalendarProps, type DatePickerPopupProps, type DatePickerProps, type DatePickerSize, type DatePickerVariant, type DatePickerVariantsOptions, DateRangePicker, type DateRangePickerCalendarProps, type DateRangePickerPopupProps, type DateRangePickerProps, type DateRangePickerSize, type DateRangePickerVariant, type DateRangePickerVariantsOptions, Dialog, DialogClose, type DialogCloseProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogPopup, type DialogPopupProps, type DialogPopupVariantsOptions, type DialogProps, type DialogScrollBehavior, type DialogSize, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Divider, type DividerLabelPosition, type DividerOrientation, type DividerProps, type DividerVariant, type DividerVariantsOptions, Drawer, DrawerClose, type DrawerCloseProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerIndent, DrawerIndentBackground, type DrawerIndentBackgroundProps, type DrawerIndentProps, DrawerPopup, type DrawerPopupProps, type DrawerPopupVariantsOptions, type DrawerProps, DrawerProvider, type DrawerSide, type DrawerSize, DrawerSwipeArea, type DrawerSwipeAreaProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, DrawerVirtualKeyboardProvider, Field, type FieldControlProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldItem, type FieldItemProps, FieldLabel, type FieldLabelProps, type FieldLabelVariantsOptions, type FieldOrientation, type FieldProps, FieldValidity, type FieldValidityProps, Fieldset, FieldsetDescription, type FieldsetDescriptionProps, FieldsetLegend, type FieldsetLegendProps, type FieldsetLegendVariant, type FieldsetProps, Form, type FormProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonProps, type InputGroupProps, type InputProps, type InputSize, type InputVariantsOptions, Menu, type MenuAlign, MenuCheckboxItem, type MenuCheckboxItemProps, MenuGroup, MenuGroupLabel, type MenuGroupLabelProps, type MenuGroupProps, type MenuHandle, MenuItem, type MenuItemProps, type MenuItemVariant, type MenuItemVariantsOptions, MenuLinkItem, type MenuLinkItemProps, MenuPopup, type MenuPopupProps, type MenuProps, MenuRadioGroup, type MenuRadioGroupProps, MenuRadioItem, type MenuRadioItemProps, MenuSeparator, type MenuSeparatorProps, MenuShortcut, type MenuShortcutProps, type MenuSide, MenuSubmenuRoot, type MenuSubmenuRootProps, MenuSubmenuTrigger, type MenuSubmenuTriggerProps, MenuTrigger, type MenuTriggerProps, Meter, type MeterIndicatorVariantsOptions, type MeterProps, type MeterSize, type MeterTrackVariantsOptions, type MeterVariant, Popover, type PopoverAlign, PopoverClose, type PopoverCloseProps, PopoverDescription, type PopoverDescriptionProps, type PopoverHandle, PopoverPopup, type PopoverPopupProps, type PopoverPopupVariantsOptions, type PopoverProps, type PopoverSide, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressIndicatorVariantsOptions, type ProgressProps, type ProgressSize, type ProgressTrackVariantsOptions, type ProgressVariant, Radio, RadioGroup, type RadioGroupProps, type RadioProps, type RadioSize, type RadioVariantsOptions, Select, type SelectAlign, SelectGroup, SelectGroupLabel, type SelectGroupLabelProps, type SelectGroupProps, SelectItem, type SelectItemProps, SelectLabel, type SelectLabelProps, SelectPopup, type SelectPopupProps, type SelectProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerProps, type SelectTriggerSize, type SelectTriggerVariant, type SelectTriggerVariantsOptions, SelectValue, type SelectValueProps, Skeleton, type SkeletonAnimation, type SkeletonProps, type SkeletonRenderState, type SkeletonVariant, type SkeletonVariantsOptions, Stepper, StepperDescription, type StepperDescriptionProps, StepperIndicator, type StepperIndicatorProps, StepperItem, type StepperItemProps, type StepperOrientation, type StepperProps, StepperSeparator, type StepperSeparatorProps, type StepperSize, StepperTitle, type StepperTitleProps, StepperTrigger, type StepperTriggerProps, type StepperTriggerVariantsOptions, Switch, type SwitchLabelPosition, type SwitchProps, type SwitchSize, type SwitchVariantsOptions, SystemState, type SystemStateBackground, type SystemStateProps, type SystemStateRenderState, type SystemStateScope, type SystemStateTitleLevel, type SystemStateVariant, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, type TableCaptionRenderState, type TableCaptionSide, TableCell, type TableCellProps, TableContainer, type TableContainerProps, type TableContainerRenderState, type TableContainerVariant, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableLayout, type TableProps, type TableRenderState, TableRow, type TableRowProps, type TableRowRenderState, type TableSize, Tabs, type TabsIndicatorPosition, TabsList, type TabsListProps, type TabsListVariantsOptions, TabsPanel, type TabsPanelProps, type TabsProps, type TabsSize, TabsTab, type TabsTabProps, type TabsTabVariantsOptions, type TabsVariant, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, TimelineDescription, type TimelineDescriptionProps, TimelineIndicator, type TimelineIndicatorAppearance, type TimelineIndicatorProps, type TimelineIndicatorVariant, TimelineItem, type TimelineItemProps, type TimelineProps, TimelineSeparator, type TimelineSeparatorProps, type TimelineSeparatorVariant, type TimelineSize, TimelineTime, type TimelineTimeProps, TimelineTitle, type TimelineTitleProps, type ToastData, type ToastManager, type ToastObject, type ToastOptions, type ToastPosition, type ToastPromiseOptions, type ToastType, type ToastUpdateOptions, Toaster, type ToasterProps, Toggle, ToggleGroup, type ToggleGroupProps, type ToggleProps, type ToggleSize, type ToggleVariant, type ToggleVariantsOptions, Tooltip, type TooltipAlign, type TooltipHandle, TooltipPopup, type TooltipPopupProps, type TooltipPopupVariantsOptions, type TooltipProps, TooltipProvider, type TooltipProviderProps, type TooltipSide, TooltipTrigger, type TooltipTriggerProps, Typography, type TypographyProps, type TypographyVariant, type TypographyVariantsOptions, alertDialogPopupVariants, alertVariants, avatarVariants, badgeVariants, breadcrumbLinkVariants, buttonVariants, checkboxVariants, cn, comboboxInputGroupVariants, createAlertDialogHandle, createDrawerHandle, createMenuHandle, createPopoverHandle, createToastManager, createTooltipHandle, datePickerVariants, dateRangePickerVariants, dialogPopupVariants, dividerVariants, drawerPopupVariants, fieldLabelVariants, inputVariants, menuItemVariants, meterIndicatorVariants, meterTrackVariants, popoverPopupVariants, progressIndicatorVariants, progressTrackVariants, radioVariants, selectTriggerVariants, skeletonVariants, stepperTriggerVariants, switchVariants, tabsListVariants, tabsTabVariants, toast, toggleVariants, tooltipPopupVariants, typographyVariants, useComboboxFilter, useComboboxFilteredItems, useFieldControl };
|
package/dist/index.js
CHANGED
|
@@ -2,6 +2,8 @@ import { cn } from "./lib/cn.js";
|
|
|
2
2
|
import { Accordion, AccordionHeader, AccordionItem, AccordionPanel, AccordionTrigger } from "./components/Accordion/Accordion.js";
|
|
3
3
|
import { AILoader } from "./components/AILoader/AILoader.js";
|
|
4
4
|
import { Alert, alertVariants } from "./components/Alert/Alert.js";
|
|
5
|
+
import { Dialog, DialogClose, DialogDescription, DialogFooter, DialogHeader, DialogPopup, DialogTitle, DialogTrigger, dialogPopupVariants } from "./components/Dialog/Dialog.js";
|
|
6
|
+
import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogPopup, AlertDialogTitle, AlertDialogTrigger, alertDialogPopupVariants, createAlertDialogHandle } from "./components/AlertDialog/AlertDialog.js";
|
|
5
7
|
import { Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarImage, avatarVariants } from "./components/Avatar/Avatar.js";
|
|
6
8
|
import { Badge, badgeVariants } from "./components/Badge/Badge.js";
|
|
7
9
|
import { Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, breadcrumbLinkVariants } from "./components/Breadcrumb/Breadcrumb.js";
|
|
@@ -17,7 +19,6 @@ import { ContextMenu, ContextMenuCheckboxItem, ContextMenuGroup, ContextMenuGrou
|
|
|
17
19
|
import { Popover, PopoverClose, PopoverDescription, PopoverPopup, PopoverTitle, PopoverTrigger, createPopoverHandle, popoverPopupVariants } from "./components/Popover/Popover.js";
|
|
18
20
|
import { DatePicker, datePickerVariants } from "./components/DatePicker/DatePicker.js";
|
|
19
21
|
import { DateRangePicker, dateRangePickerVariants } from "./components/DateRangePicker/DateRangePicker.js";
|
|
20
|
-
import { Dialog, DialogClose, DialogDescription, DialogFooter, DialogHeader, DialogPopup, DialogTitle, DialogTrigger, dialogPopupVariants } from "./components/Dialog/Dialog.js";
|
|
21
22
|
import { Divider, dividerVariants } from "./components/Divider/Divider.js";
|
|
22
23
|
import { Drawer, DrawerClose, DrawerDescription, DrawerFooter, DrawerHeader, DrawerIndent, DrawerIndentBackground, DrawerPopup, DrawerProvider, DrawerSwipeArea, DrawerTitle, DrawerTrigger, DrawerVirtualKeyboardProvider, createDrawerHandle, drawerPopupVariants } from "./components/Drawer/Drawer.js";
|
|
23
24
|
import { Field, FieldDescription, FieldError, FieldItem, FieldLabel, FieldValidity, fieldLabelVariants } from "./components/Field/Field.js";
|
|
@@ -37,4 +38,4 @@ import { Toaster, createToastManager, toast } from "./components/Toast/Toast.js"
|
|
|
37
38
|
import { Toggle, ToggleGroup, toggleVariants } from "./components/Toggle/Toggle.js";
|
|
38
39
|
import { Tooltip, TooltipPopup, TooltipProvider, TooltipTrigger, createTooltipHandle, tooltipPopupVariants } from "./components/Tooltip/Tooltip.js";
|
|
39
40
|
import { Typography, typographyVariants } from "./components/Typography/Typography.js";
|
|
40
|
-
export { AILoader, Accordion, AccordionHeader, AccordionItem, AccordionPanel, AccordionTrigger, Alert, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Checkbox, CheckboxGroup, Combobox, ComboboxChip, ComboboxChipRemove, ComboboxChips, ComboboxClear, ComboboxCollection, ComboboxGroup, ComboboxGroupLabel, ComboboxInput, ComboboxInputGroup, ComboboxItem, ComboboxLabel, ComboboxPopup, ComboboxSeparator, ComboboxTrigger, ComboboxValue, ContextMenu, ContextMenuCheckboxItem, ContextMenuGroup, ContextMenuGroupLabel, ContextMenuItem, ContextMenuLinkItem, ContextMenuPopup, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSubmenuRoot, ContextMenuSubmenuTrigger, ContextMenuTrigger, DatePicker, DateRangePicker, Dialog, DialogClose, DialogDescription, DialogFooter, DialogHeader, DialogPopup, DialogTitle, DialogTrigger, Divider, Drawer, DrawerClose, DrawerDescription, DrawerFooter, DrawerHeader, DrawerIndent, DrawerIndentBackground, DrawerPopup, DrawerProvider, DrawerSwipeArea, DrawerTitle, DrawerTrigger, DrawerVirtualKeyboardProvider, Field, FieldDescription, FieldError, FieldItem, FieldLabel, FieldValidity, Fieldset, FieldsetDescription, FieldsetLegend, Form, Input, InputGroup, InputGroupAddon, Menu, MenuCheckboxItem, MenuGroup, MenuGroupLabel, MenuItem, MenuLinkItem, MenuPopup, MenuRadioGroup, MenuRadioItem, MenuSeparator, MenuShortcut, MenuSubmenuRoot, MenuSubmenuTrigger, MenuTrigger, Meter, Popover, PopoverClose, PopoverDescription, PopoverPopup, PopoverTitle, PopoverTrigger, Progress, Radio, RadioGroup, Select, SelectGroup, SelectGroupLabel, SelectItem, SelectLabel, SelectPopup, SelectSeparator, SelectTrigger, SelectValue, Skeleton, Stepper, StepperDescription, StepperIndicator, StepperItem, StepperSeparator, StepperTitle, StepperTrigger, Switch, SystemState, Table, TableBody, TableCaption, TableCell, TableContainer, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsList, TabsPanel, TabsTab, Timeline, TimelineConnector, TimelineContent, TimelineDescription, TimelineIndicator, TimelineItem, TimelineSeparator, TimelineTime, TimelineTitle, Toaster, Toggle, ToggleGroup, Tooltip, TooltipPopup, TooltipProvider, TooltipTrigger, Typography, alertVariants, avatarVariants, badgeVariants, breadcrumbLinkVariants, buttonVariants, checkboxVariants, cn, comboboxInputGroupVariants, createDrawerHandle, createMenuHandle, createPopoverHandle, createToastManager, createTooltipHandle, datePickerVariants, dateRangePickerVariants, dialogPopupVariants, dividerVariants, drawerPopupVariants, fieldLabelVariants, inputVariants, menuItemVariants, meterIndicatorVariants, meterTrackVariants, popoverPopupVariants, progressIndicatorVariants, progressTrackVariants, radioVariants, selectTriggerVariants, skeletonVariants, stepperTriggerVariants, switchVariants, tabsListVariants, tabsTabVariants, toast, toggleVariants, tooltipPopupVariants, typographyVariants, useComboboxFilter, useComboboxFilteredItems, useFieldControl };
|
|
41
|
+
export { AILoader, Accordion, AccordionHeader, AccordionItem, AccordionPanel, AccordionTrigger, Alert, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogPopup, AlertDialogTitle, AlertDialogTrigger, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Checkbox, CheckboxGroup, Combobox, ComboboxChip, ComboboxChipRemove, ComboboxChips, ComboboxClear, ComboboxCollection, ComboboxGroup, ComboboxGroupLabel, ComboboxInput, ComboboxInputGroup, ComboboxItem, ComboboxLabel, ComboboxPopup, ComboboxSeparator, ComboboxTrigger, ComboboxValue, ContextMenu, ContextMenuCheckboxItem, ContextMenuGroup, ContextMenuGroupLabel, ContextMenuItem, ContextMenuLinkItem, ContextMenuPopup, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSubmenuRoot, ContextMenuSubmenuTrigger, ContextMenuTrigger, DatePicker, DateRangePicker, Dialog, DialogClose, DialogDescription, DialogFooter, DialogHeader, DialogPopup, DialogTitle, DialogTrigger, Divider, Drawer, DrawerClose, DrawerDescription, DrawerFooter, DrawerHeader, DrawerIndent, DrawerIndentBackground, DrawerPopup, DrawerProvider, DrawerSwipeArea, DrawerTitle, DrawerTrigger, DrawerVirtualKeyboardProvider, Field, FieldDescription, FieldError, FieldItem, FieldLabel, FieldValidity, Fieldset, FieldsetDescription, FieldsetLegend, Form, Input, InputGroup, InputGroupAddon, Menu, MenuCheckboxItem, MenuGroup, MenuGroupLabel, MenuItem, MenuLinkItem, MenuPopup, MenuRadioGroup, MenuRadioItem, MenuSeparator, MenuShortcut, MenuSubmenuRoot, MenuSubmenuTrigger, MenuTrigger, Meter, Popover, PopoverClose, PopoverDescription, PopoverPopup, PopoverTitle, PopoverTrigger, Progress, Radio, RadioGroup, Select, SelectGroup, SelectGroupLabel, SelectItem, SelectLabel, SelectPopup, SelectSeparator, SelectTrigger, SelectValue, Skeleton, Stepper, StepperDescription, StepperIndicator, StepperItem, StepperSeparator, StepperTitle, StepperTrigger, Switch, SystemState, Table, TableBody, TableCaption, TableCell, TableContainer, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsList, TabsPanel, TabsTab, Timeline, TimelineConnector, TimelineContent, TimelineDescription, TimelineIndicator, TimelineItem, TimelineSeparator, TimelineTime, TimelineTitle, Toaster, Toggle, ToggleGroup, Tooltip, TooltipPopup, TooltipProvider, TooltipTrigger, Typography, alertDialogPopupVariants, alertVariants, avatarVariants, badgeVariants, breadcrumbLinkVariants, buttonVariants, checkboxVariants, cn, comboboxInputGroupVariants, createAlertDialogHandle, createDrawerHandle, createMenuHandle, createPopoverHandle, createToastManager, createTooltipHandle, datePickerVariants, dateRangePickerVariants, dialogPopupVariants, dividerVariants, drawerPopupVariants, fieldLabelVariants, inputVariants, menuItemVariants, meterIndicatorVariants, meterTrackVariants, popoverPopupVariants, progressIndicatorVariants, progressTrackVariants, radioVariants, selectTriggerVariants, skeletonVariants, stepperTriggerVariants, switchVariants, tabsListVariants, tabsTabVariants, toast, toggleVariants, tooltipPopupVariants, typographyVariants, useComboboxFilter, useComboboxFilteredItems, useFieldControl };
|