@godxjp/ui 12.0.2 → 12.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-QQWA5ZRQ.js → chunk-2TYRT5XH.js} +1 -1
- package/dist/{chunk-COYMFVBQ.js → chunk-6WSWK7TU.js} +1 -1
- package/dist/{chunk-EPTRMMM5.js → chunk-7HF56YHC.js} +1 -1
- package/dist/{chunk-EZHHJQWQ.js → chunk-A6VFHPS6.js} +15 -7
- package/dist/{chunk-UJUWAQE5.js → chunk-LCQFYL44.js} +9 -2
- package/dist/{chunk-PCUCCBIY.js → chunk-MXEVP5S2.js} +1 -1
- package/dist/components/admin/index.js +15 -15
- package/dist/components/data-display/card.d.ts +2 -2
- package/dist/components/data-entry/index.js +5 -5
- package/dist/components/data-entry/select.js +1 -1
- package/dist/components/data-entry/upload.js +2 -2
- package/dist/components/data-grid/index.js +1 -1
- package/dist/components/feedback/dialog.js +1 -1
- package/dist/components/feedback/index.js +2 -2
- package/dist/components/feedback/sheet.js +1 -1
- package/dist/components/layout/index.js +1 -1
- package/dist/components/navigation/index.js +5 -5
- package/dist/components/navigation/pagination.js +2 -2
- package/dist/components/ui/index.js +13 -13
- package/dist/index.js +17 -17
- package/package.json +1 -1
|
@@ -260,7 +260,7 @@ var SelectTrigger = React.forwardRef(({ className, children, size = "md", ...pro
|
|
|
260
260
|
"data-size": size,
|
|
261
261
|
className: cn(
|
|
262
262
|
controlTriggerClass,
|
|
263
|
-
"focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 data-[placeholder]:text-muted-foreground [&_svg:not([class*='text-'])]:text-muted-foreground w-
|
|
263
|
+
"focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 data-[placeholder]:text-muted-foreground [&_svg:not([class*='text-'])]:text-muted-foreground w-full gap-2 whitespace-nowrap shadow-xs transition-[color,box-shadow] outline-none focus-visible:ring-[3px] *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center *:data-[slot=select-value]:gap-2",
|
|
264
264
|
className
|
|
265
265
|
),
|
|
266
266
|
...props,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-
|
|
1
|
+
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-2TYRT5XH.js';
|
|
2
2
|
import { Button } from './chunk-M4PZNAMV.js';
|
|
3
3
|
import { useTranslation } from './chunk-TXRYSMOD.js';
|
|
4
4
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-
|
|
1
|
+
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-2TYRT5XH.js';
|
|
2
2
|
import { Button } from './chunk-M4PZNAMV.js';
|
|
3
3
|
import { useOptionalAppContext, useTranslation, APP_TIME_FORMAT_OPTIONS, getTimeFormatLabel, resolveTimezonePickerOptions, getTimezoneLabel, APP_LOCALES } from './chunk-TXRYSMOD.js';
|
|
4
4
|
import { APP_DATE_FORMAT_OPTIONS, getDateFormatLabel } from './chunk-3ELRYXJK.js';
|
|
@@ -79,13 +79,21 @@ var SheetHeader = ({ className, ...props }) => /* @__PURE__ */ jsx(
|
|
|
79
79
|
...props
|
|
80
80
|
}
|
|
81
81
|
);
|
|
82
|
-
var SheetFooter = ({ className, ...props }) =>
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
82
|
+
var SheetFooter = ({ className, ...props }) => (
|
|
83
|
+
// Pinned action bar (Ant Design Drawer footer): sticks to the bottom, full-bleed top border, actions
|
|
84
|
+
// RIGHT-aligned (primary rightmost). A destructive / clear / reset action goes far-LEFT — give it
|
|
85
|
+
// `className="mr-auto"`. See cardinal rule "Drawer & dialog footer layout".
|
|
86
|
+
/* @__PURE__ */ jsx(
|
|
87
|
+
"div",
|
|
88
|
+
{
|
|
89
|
+
"data-slot": "sheet-footer",
|
|
90
|
+
className: cn(
|
|
91
|
+
"mt-auto -mx-6 flex flex-wrap items-center justify-end gap-2 border-t border-border px-6 pt-4",
|
|
92
|
+
className
|
|
93
|
+
),
|
|
94
|
+
...props
|
|
95
|
+
}
|
|
96
|
+
)
|
|
89
97
|
);
|
|
90
98
|
var SheetTitle = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
91
99
|
DialogPrimitive.Title,
|
|
@@ -69,7 +69,11 @@ var DialogContent = React.forwardRef(({ className, children, showClose, showClos
|
|
|
69
69
|
DialogContent.displayName = "DialogContent";
|
|
70
70
|
var DialogHeader = ({ className, ...props }) => /* @__PURE__ */ jsx("div", { "data-slot": "dialog-header", className, ...props });
|
|
71
71
|
DialogHeader.displayName = "DialogHeader";
|
|
72
|
-
var DialogFooter = ({ className, ...props }) =>
|
|
72
|
+
var DialogFooter = ({ className, ...props }) => (
|
|
73
|
+
// Layout (right-aligned actions, mobile column-reverse) lives in feedback-layout.css
|
|
74
|
+
// [data-slot="dialog-footer"]. Destructive action goes far-left via `className="mr-auto"`.
|
|
75
|
+
/* @__PURE__ */ jsx("div", { "data-slot": "dialog-footer", className, ...props })
|
|
76
|
+
);
|
|
73
77
|
DialogFooter.displayName = "DialogFooter";
|
|
74
78
|
var DialogTitle = React.forwardRef(({ className, ...props }, ref) => {
|
|
75
79
|
const cls = cn(className);
|
|
@@ -134,7 +138,10 @@ var AlertDialogContent = React.forwardRef(({ className, children, showClose, sho
|
|
|
134
138
|
AlertDialogContent.displayName = "AlertDialogContent";
|
|
135
139
|
var AlertDialogHeader = ({ className, ...props }) => /* @__PURE__ */ jsx("div", { "data-slot": "dialog-header", className: cn(className), ...props });
|
|
136
140
|
AlertDialogHeader.displayName = "AlertDialogHeader";
|
|
137
|
-
var AlertDialogFooter = ({ className, ...props }) =>
|
|
141
|
+
var AlertDialogFooter = ({ className, ...props }) => (
|
|
142
|
+
// Layout lives in feedback-layout.css [data-slot="dialog-footer"] (right-aligned actions).
|
|
143
|
+
/* @__PURE__ */ jsx("div", { "data-slot": "dialog-footer", className: cn(className), ...props })
|
|
144
|
+
);
|
|
138
145
|
AlertDialogFooter.displayName = "AlertDialogFooter";
|
|
139
146
|
var AlertDialogTitle = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
140
147
|
AlertDialogPrimitive.Title,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogFooter } from './chunk-UJUWAQE5.js';
|
|
2
1
|
import { formatBytes } from './chunk-FK5QEFVY.js';
|
|
2
|
+
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogFooter } from './chunk-LCQFYL44.js';
|
|
3
3
|
import { Slider } from './chunk-CRERCLIZ.js';
|
|
4
4
|
import { Button } from './chunk-M4PZNAMV.js';
|
|
5
5
|
import { controlIconClass } from './chunk-IBK5D2Q6.js';
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
import '../../chunk-GJXOBDER.js';
|
|
2
|
-
export {
|
|
2
|
+
export { Toolbar, ToolbarGroup } from '../../chunk-7HF56YHC.js';
|
|
3
|
+
export { Steps } from '../../chunk-FOANNF6Z.js';
|
|
4
|
+
import '../../chunk-B73NA66T.js';
|
|
5
|
+
import '../../chunk-WGWI7EGL.js';
|
|
6
|
+
export { Pagination } from '../../chunk-6WSWK7TU.js';
|
|
7
|
+
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
3
8
|
export { PageContainer } from '../../chunk-ZM4SMKEI.js';
|
|
4
|
-
export { SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-COD66MFF.js';
|
|
5
|
-
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
6
9
|
import '../../chunk-XK3M3VRR.js';
|
|
7
|
-
import '../../chunk-32WO3YLB.js';
|
|
8
10
|
import '../../chunk-W4REF4TD.js';
|
|
9
|
-
export { Toolbar, ToolbarGroup } from '../../chunk-EPTRMMM5.js';
|
|
10
11
|
import '../../chunk-HL3G4SVG.js';
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
export {
|
|
14
|
-
|
|
15
|
-
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
16
|
-
import '../../chunk-LMKUKCTN.js';
|
|
12
|
+
export { toast, useToast } from '../../chunk-B3WX53JQ.js';
|
|
13
|
+
export { SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-COD66MFF.js';
|
|
14
|
+
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
15
|
+
import '../../chunk-32WO3YLB.js';
|
|
17
16
|
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-2JCSS6B4.js';
|
|
18
17
|
export { Transfer } from '../../chunk-JSQOCVM6.js';
|
|
19
18
|
export { TreeSelect } from '../../chunk-PO5ISUFA.js';
|
|
20
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
21
|
-
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../../chunk-UJUWAQE5.js';
|
|
22
|
-
export { SearchInput } from '../../chunk-BCBK4FLV.js';
|
|
19
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-MXEVP5S2.js';
|
|
23
20
|
export { formatBytes, formatCurrency, humanError, shortId } from '../../chunk-FK5QEFVY.js';
|
|
24
|
-
|
|
21
|
+
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../../chunk-LCQFYL44.js';
|
|
25
22
|
import '../../chunk-CRERCLIZ.js';
|
|
23
|
+
import '../../chunk-LMKUKCTN.js';
|
|
24
|
+
export { SearchInput } from '../../chunk-BCBK4FLV.js';
|
|
25
|
+
import '../../chunk-2TYRT5XH.js';
|
|
26
26
|
export { Cascader } from '../../chunk-FK2JDABO.js';
|
|
27
27
|
import '../../chunk-SMLKNECP.js';
|
|
28
28
|
import '../../chunk-HTEL5DQI.js';
|
|
@@ -11,7 +11,7 @@ type CardVariant = "default" | "muted" | "outline" | "featured";
|
|
|
11
11
|
/** Padding density — base 16px · tight 12px · cozy 20px. */
|
|
12
12
|
type CardDensity = "tight" | "cozy";
|
|
13
13
|
declare const cardVariants: (props?: ({
|
|
14
|
-
size?: "
|
|
14
|
+
size?: "compact" | "md" | null | undefined;
|
|
15
15
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
16
16
|
type CardProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof cardVariants> & {
|
|
17
17
|
size?: CardSize;
|
|
@@ -20,7 +20,7 @@ type CardProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof card
|
|
|
20
20
|
density?: CardDensity;
|
|
21
21
|
};
|
|
22
22
|
declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
23
|
-
size?: "
|
|
23
|
+
size?: "compact" | "md" | null | undefined;
|
|
24
24
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & {
|
|
25
25
|
size?: CardSize;
|
|
26
26
|
accent?: CardAccent;
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
export { InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, PasswordInput, Rating, TagInput } from '../../chunk-L2MEN2VK.js';
|
|
2
2
|
export { PasswordStrength, Toggle, ToggleGroup, ToggleGroupItem, usePasswordStrength } from '../../chunk-VSUYVT2Q.js';
|
|
3
|
+
export { TimeInput } from '../../chunk-MMFIL33F.js';
|
|
3
4
|
export { TimePicker } from '../../chunk-YGD4CCQC.js';
|
|
4
5
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-S2IJKT3D.js';
|
|
5
6
|
export { Switch } from '../../chunk-I7NQ2LIL.js';
|
|
6
7
|
export { Textarea } from '../../chunk-EOTOCNT7.js';
|
|
7
|
-
export { TimeInput } from '../../chunk-MMFIL33F.js';
|
|
8
8
|
export { ColorPicker } from '../../chunk-SIUIIIQW.js';
|
|
9
9
|
export { DatePicker } from '../../chunk-WJNR3RAG.js';
|
|
10
10
|
export { DateRangePicker } from '../../chunk-WBUUCU7R.js';
|
|
11
11
|
export { Calendar } from '../../chunk-FTOG7D4T.js';
|
|
12
12
|
export { Transfer } from '../../chunk-JSQOCVM6.js';
|
|
13
13
|
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from '../../chunk-PO5ISUFA.js';
|
|
14
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
15
|
-
import '../../chunk-UJUWAQE5.js';
|
|
16
|
-
export { SearchInput } from '../../chunk-BCBK4FLV.js';
|
|
14
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-MXEVP5S2.js';
|
|
17
15
|
import '../../chunk-FK5QEFVY.js';
|
|
18
|
-
|
|
16
|
+
import '../../chunk-LCQFYL44.js';
|
|
19
17
|
export { Slider } from '../../chunk-CRERCLIZ.js';
|
|
18
|
+
export { SearchInput } from '../../chunk-BCBK4FLV.js';
|
|
19
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-2TYRT5XH.js';
|
|
20
20
|
export { Cascader } from '../../chunk-FK2JDABO.js';
|
|
21
21
|
import '../../chunk-SMLKNECP.js';
|
|
22
22
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-HTEL5DQI.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-
|
|
1
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-2TYRT5XH.js';
|
|
2
2
|
import '../../chunk-HTEL5DQI.js';
|
|
3
3
|
import '../../chunk-VOHTRR5X.js';
|
|
4
4
|
import '../../chunk-M4PZNAMV.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
2
|
-
import '../../chunk-UJUWAQE5.js';
|
|
1
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-MXEVP5S2.js';
|
|
3
2
|
import '../../chunk-FK5QEFVY.js';
|
|
3
|
+
import '../../chunk-LCQFYL44.js';
|
|
4
4
|
import '../../chunk-CRERCLIZ.js';
|
|
5
5
|
import '../../chunk-VOHTRR5X.js';
|
|
6
6
|
import '../../chunk-M4PZNAMV.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuCheckboxItem } from '../../chunk-LMKUKCTN.js';
|
|
2
2
|
import { SearchInput } from '../../chunk-BCBK4FLV.js';
|
|
3
|
-
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from '../../chunk-
|
|
3
|
+
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from '../../chunk-2TYRT5XH.js';
|
|
4
4
|
import '../../chunk-HTEL5DQI.js';
|
|
5
5
|
import '../../chunk-VOHTRR5X.js';
|
|
6
6
|
import { EmptyState } from '../../chunk-YD7V2HGZ.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger } from '../../chunk-
|
|
1
|
+
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger } from '../../chunk-LCQFYL44.js';
|
|
2
2
|
import '../../chunk-VOHTRR5X.js';
|
|
3
3
|
import '../../chunk-M4PZNAMV.js';
|
|
4
4
|
import '../../chunk-7PWBC4BY.js';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from '../../chunk-WFUIE252.js';
|
|
2
|
-
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-
|
|
2
|
+
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-A6VFHPS6.js';
|
|
3
3
|
export { toast, useToast } from '../../chunk-B3WX53JQ.js';
|
|
4
4
|
export { Skeleton, SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-COD66MFF.js';
|
|
5
5
|
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
6
6
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
7
7
|
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-2JCSS6B4.js';
|
|
8
|
-
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from '../../chunk-UJUWAQE5.js';
|
|
9
8
|
import '../../chunk-FK5QEFVY.js';
|
|
9
|
+
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from '../../chunk-LCQFYL44.js';
|
|
10
10
|
import '../../chunk-VOHTRR5X.js';
|
|
11
11
|
import '../../chunk-INIIF7F7.js';
|
|
12
12
|
import '../../chunk-M4PZNAMV.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-
|
|
1
|
+
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-A6VFHPS6.js';
|
|
2
2
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { AppShell, Breadcrumb, PageContainer, ResponsiveGrid, Sidebar, SidebarHeader, SidebarItem, SidebarSection, SplitPane, Topbar } from '../../chunk-ZM4SMKEI.js';
|
|
2
2
|
export { AspectRatio, Separator } from '../../chunk-XK3M3VRR.js';
|
|
3
|
-
import '../../chunk-32WO3YLB.js';
|
|
4
3
|
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../../chunk-W4REF4TD.js';
|
|
4
|
+
import '../../chunk-32WO3YLB.js';
|
|
5
5
|
import '../../chunk-LMKUKCTN.js';
|
|
6
6
|
import '../../chunk-DV52WNXO.js';
|
|
7
7
|
export { Flex } from '../../chunk-INIIF7F7.js';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { AppSettingPicker, Toolbar, ToolbarGroup } from '../../chunk-
|
|
2
|
-
export {
|
|
1
|
+
export { AppSettingPicker, Toolbar, ToolbarGroup } from '../../chunk-7HF56YHC.js';
|
|
2
|
+
export { Steps } from '../../chunk-FOANNF6Z.js';
|
|
3
3
|
export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from '../../chunk-B73NA66T.js';
|
|
4
4
|
export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport } from '../../chunk-WGWI7EGL.js';
|
|
5
|
-
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-
|
|
6
|
-
export { Steps } from '../../chunk-FOANNF6Z.js';
|
|
5
|
+
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-6WSWK7TU.js';
|
|
7
6
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
7
|
+
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from '../../chunk-HL3G4SVG.js';
|
|
8
8
|
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from '../../chunk-LMKUKCTN.js';
|
|
9
|
-
import '../../chunk-
|
|
9
|
+
import '../../chunk-2TYRT5XH.js';
|
|
10
10
|
import '../../chunk-HTEL5DQI.js';
|
|
11
11
|
import '../../chunk-VOHTRR5X.js';
|
|
12
12
|
import '../../chunk-M4PZNAMV.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-6WSWK7TU.js';
|
|
2
|
+
import '../../chunk-2TYRT5XH.js';
|
|
3
3
|
import '../../chunk-HTEL5DQI.js';
|
|
4
4
|
import '../../chunk-VOHTRR5X.js';
|
|
5
5
|
import '../../chunk-M4PZNAMV.js';
|
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
export { Avatar, AvatarFallback, AvatarImage } from '../../chunk-QTUJSRDH.js';
|
|
2
2
|
export { Card, CardAction, CardContent, CardCover, CardDescription, CardFooter, CardHeader, CardTitle, StatCard } from '../../chunk-P5KPCT6R.js';
|
|
3
3
|
export { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, useCarousel } from '../../chunk-XVD5SLDL.js';
|
|
4
|
-
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-
|
|
4
|
+
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-A6VFHPS6.js';
|
|
5
5
|
export { PasswordStrength, Toggle, ToggleGroup, ToggleGroupItem, toggleVariants, usePasswordStrength } from '../../chunk-VSUYVT2Q.js';
|
|
6
|
+
export { TimeInput } from '../../chunk-MMFIL33F.js';
|
|
6
7
|
export { TimePicker } from '../../chunk-YGD4CCQC.js';
|
|
7
8
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-S2IJKT3D.js';
|
|
8
9
|
export { Switch } from '../../chunk-I7NQ2LIL.js';
|
|
9
10
|
export { Textarea } from '../../chunk-EOTOCNT7.js';
|
|
10
|
-
export { TimeInput } from '../../chunk-MMFIL33F.js';
|
|
11
11
|
export { ColorPicker } from '../../chunk-SIUIIIQW.js';
|
|
12
12
|
export { DatePicker } from '../../chunk-WJNR3RAG.js';
|
|
13
13
|
export { DateRangePicker } from '../../chunk-WBUUCU7R.js';
|
|
14
14
|
export { Calendar } from '../../chunk-FTOG7D4T.js';
|
|
15
|
-
export { Skeleton } from '../../chunk-COD66MFF.js';
|
|
16
|
-
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
17
|
-
export { AspectRatio, Separator } from '../../chunk-XK3M3VRR.js';
|
|
18
|
-
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
19
|
-
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../../chunk-W4REF4TD.js';
|
|
20
|
-
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from '../../chunk-HL3G4SVG.js';
|
|
21
15
|
export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from '../../chunk-B73NA66T.js';
|
|
22
16
|
export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport } from '../../chunk-WGWI7EGL.js';
|
|
23
|
-
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-
|
|
17
|
+
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-6WSWK7TU.js';
|
|
24
18
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
25
|
-
export {
|
|
19
|
+
export { AspectRatio, Separator } from '../../chunk-XK3M3VRR.js';
|
|
20
|
+
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../../chunk-W4REF4TD.js';
|
|
21
|
+
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from '../../chunk-HL3G4SVG.js';
|
|
22
|
+
export { Skeleton } from '../../chunk-COD66MFF.js';
|
|
23
|
+
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
24
|
+
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
26
25
|
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-2JCSS6B4.js';
|
|
27
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
28
|
-
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger } from '../../chunk-UJUWAQE5.js';
|
|
26
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-MXEVP5S2.js';
|
|
29
27
|
import '../../chunk-FK5QEFVY.js';
|
|
30
|
-
export {
|
|
28
|
+
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger } from '../../chunk-LCQFYL44.js';
|
|
31
29
|
export { Slider } from '../../chunk-CRERCLIZ.js';
|
|
30
|
+
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from '../../chunk-LMKUKCTN.js';
|
|
31
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-2TYRT5XH.js';
|
|
32
32
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-HTEL5DQI.js';
|
|
33
33
|
export { Input } from '../../chunk-VOHTRR5X.js';
|
|
34
34
|
import '../../chunk-INIIF7F7.js';
|
package/dist/index.js
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
1
|
import './chunk-WFUIE252.js';
|
|
2
|
-
import './chunk-
|
|
2
|
+
import './chunk-A6VFHPS6.js';
|
|
3
3
|
import './chunk-L2MEN2VK.js';
|
|
4
4
|
import './chunk-VSUYVT2Q.js';
|
|
5
|
+
import './chunk-MMFIL33F.js';
|
|
5
6
|
import './chunk-YGD4CCQC.js';
|
|
6
7
|
import './chunk-S2IJKT3D.js';
|
|
7
8
|
import './chunk-I7NQ2LIL.js';
|
|
8
9
|
import './chunk-EOTOCNT7.js';
|
|
9
|
-
import './chunk-MMFIL33F.js';
|
|
10
10
|
import './chunk-SIUIIIQW.js';
|
|
11
11
|
import './chunk-WJNR3RAG.js';
|
|
12
12
|
import './chunk-WBUUCU7R.js';
|
|
13
13
|
import './chunk-FTOG7D4T.js';
|
|
14
14
|
import './chunk-GJXOBDER.js';
|
|
15
|
-
export {
|
|
15
|
+
export { Toolbar, ToolbarGroup } from './chunk-7HF56YHC.js';
|
|
16
|
+
export { Steps } from './chunk-FOANNF6Z.js';
|
|
17
|
+
import './chunk-B73NA66T.js';
|
|
18
|
+
import './chunk-WGWI7EGL.js';
|
|
19
|
+
export { Pagination } from './chunk-6WSWK7TU.js';
|
|
20
|
+
export { Tabs, TabsContent, TabsList, TabsTrigger } from './chunk-V3N266PT.js';
|
|
16
21
|
export { PageContainer } from './chunk-ZM4SMKEI.js';
|
|
17
|
-
export { SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from './chunk-COD66MFF.js';
|
|
18
|
-
export { Toaster } from './chunk-TO7URV7U.js';
|
|
19
22
|
import './chunk-XK3M3VRR.js';
|
|
20
|
-
import './chunk-32WO3YLB.js';
|
|
21
23
|
import './chunk-W4REF4TD.js';
|
|
22
|
-
export { Toolbar, ToolbarGroup } from './chunk-EPTRMMM5.js';
|
|
23
24
|
import './chunk-HL3G4SVG.js';
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
export {
|
|
27
|
-
|
|
28
|
-
export { Tabs, TabsContent, TabsList, TabsTrigger } from './chunk-V3N266PT.js';
|
|
29
|
-
import './chunk-LMKUKCTN.js';
|
|
25
|
+
export { toast, useToast } from './chunk-B3WX53JQ.js';
|
|
26
|
+
export { SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from './chunk-COD66MFF.js';
|
|
27
|
+
export { Toaster } from './chunk-TO7URV7U.js';
|
|
28
|
+
import './chunk-32WO3YLB.js';
|
|
30
29
|
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from './chunk-2JCSS6B4.js';
|
|
31
30
|
export { Transfer } from './chunk-JSQOCVM6.js';
|
|
32
31
|
export { TreeSelect } from './chunk-PO5ISUFA.js';
|
|
33
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from './chunk-
|
|
34
|
-
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from './chunk-UJUWAQE5.js';
|
|
35
|
-
export { SearchInput } from './chunk-BCBK4FLV.js';
|
|
32
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from './chunk-MXEVP5S2.js';
|
|
36
33
|
export { formatBytes, formatCurrency, humanError, shortId } from './chunk-FK5QEFVY.js';
|
|
37
|
-
|
|
34
|
+
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from './chunk-LCQFYL44.js';
|
|
38
35
|
import './chunk-CRERCLIZ.js';
|
|
36
|
+
import './chunk-LMKUKCTN.js';
|
|
37
|
+
export { SearchInput } from './chunk-BCBK4FLV.js';
|
|
38
|
+
import './chunk-2TYRT5XH.js';
|
|
39
39
|
export { Cascader } from './chunk-FK2JDABO.js';
|
|
40
40
|
import './chunk-SMLKNECP.js';
|
|
41
41
|
import './chunk-HTEL5DQI.js';
|