@godxjp/ui 9.0.0 → 9.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-TBXQJCBQ.js → chunk-56NYZNVY.js} +1 -1
- package/dist/{chunk-P4HFJQID.js → chunk-5D42MFB4.js} +54 -92
- package/dist/{chunk-RSC5K7RP.js → chunk-6YK3IJXW.js} +1 -1
- package/dist/{chunk-2ACNEQOI.js → chunk-CAEL2ZD2.js} +1 -1
- package/dist/{chunk-JOLM73YQ.js → chunk-GKXPALFT.js} +1 -1
- package/dist/{chunk-Z6HNY2PL.js → chunk-KXOAZGPA.js} +1 -1
- package/dist/{chunk-32ZUUKML.js → chunk-VN72SWHX.js} +1 -1
- package/dist/{chunk-6PA2YHRE.js → chunk-XQMPK4GM.js} +0 -15
- package/dist/components/admin/index.d.ts +2 -2
- package/dist/components/admin/index.js +8 -8
- package/dist/components/data-entry/autocomplete.js +3 -3
- package/dist/components/data-entry/index.js +10 -10
- package/dist/components/data-entry/select.js +3 -3
- package/dist/components/data-entry/upload.js +2 -2
- package/dist/components/feedback/alert.d.ts +2 -2
- package/dist/components/feedback/dialog.d.ts +5 -13
- package/dist/components/feedback/dialog.js +1 -1
- package/dist/components/feedback/index.d.ts +2 -2
- package/dist/components/feedback/index.js +2 -2
- package/dist/components/navigation/index.js +5 -5
- package/dist/components/navigation/pagination.js +4 -4
- package/dist/components/ui/index.d.ts +2 -2
- package/dist/components/ui/index.js +11 -11
- package/dist/{feedback.prop-BR5JOpPl.d.ts → feedback.prop-Nc9Aa8SV.d.ts} +1 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.js +13 -13
- package/dist/props/components/index.d.ts +1 -1
- package/dist/props/index.d.ts +1 -1
- package/dist/props/index.js +1 -1
- package/dist/props/registry.d.ts +0 -5
- package/dist/props/registry.js +1 -1
- package/package.json +1 -1
- package/dist/{chunk-GKED65NV.js → chunk-KDBGFJJI.js} +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-
|
|
1
|
+
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-CAEL2ZD2.js';
|
|
2
2
|
import { Button } from './chunk-M4PZNAMV.js';
|
|
3
3
|
import { useTranslation } from './chunk-RLGHEV4A.js';
|
|
4
4
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
@@ -9,21 +9,10 @@ import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
|
9
9
|
import { X } from 'lucide-react';
|
|
10
10
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
return React.useContext(DialogModeContext);
|
|
15
|
-
}
|
|
16
|
-
function DialogRoot({ mode = "form", ...props }) {
|
|
17
|
-
if (mode === "confirm") {
|
|
18
|
-
return /* @__PURE__ */ jsx(DialogModeContext.Provider, { value: "confirm", children: /* @__PURE__ */ jsx(AlertDialogPrimitive.Root, { "data-slot": "dialog", ...props }) });
|
|
19
|
-
}
|
|
20
|
-
return /* @__PURE__ */ jsx(DialogModeContext.Provider, { value: "form", children: /* @__PURE__ */ jsx(DialogPrimitive.Root, { "data-slot": "dialog", ...props }) });
|
|
12
|
+
function DialogRoot(props) {
|
|
13
|
+
return /* @__PURE__ */ jsx(DialogPrimitive.Root, { "data-slot": "dialog", ...props });
|
|
21
14
|
}
|
|
22
15
|
function DialogTrigger(props) {
|
|
23
|
-
const mode = useDialogMode();
|
|
24
|
-
if (mode === "confirm") {
|
|
25
|
-
return /* @__PURE__ */ jsx(AlertDialogPrimitive.Trigger, { "data-slot": "dialog-trigger", ...props });
|
|
26
|
-
}
|
|
27
16
|
return /* @__PURE__ */ jsx(DialogPrimitive.Trigger, { "data-slot": "dialog-trigger", ...props });
|
|
28
17
|
}
|
|
29
18
|
function DialogPortal(props) {
|
|
@@ -46,31 +35,6 @@ var DialogOverlay = React.forwardRef(({ className, ...props }, ref) => /* @__PUR
|
|
|
46
35
|
));
|
|
47
36
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
48
37
|
var DialogContent = React.forwardRef(({ className, children, showClose, showCloseButton: showCloseButtonProp, ...props }, ref) => {
|
|
49
|
-
const mode = useDialogMode();
|
|
50
|
-
if (mode === "confirm") {
|
|
51
|
-
return /* @__PURE__ */ jsxs(AlertDialogPrimitive.Portal, { children: [
|
|
52
|
-
/* @__PURE__ */ jsx(
|
|
53
|
-
AlertDialogPrimitive.Overlay,
|
|
54
|
-
{
|
|
55
|
-
"data-slot": "dialog-overlay",
|
|
56
|
-
className: "ui-dialog-overlay data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:animate-in data-[state=open]:fade-in-0"
|
|
57
|
-
}
|
|
58
|
-
),
|
|
59
|
-
/* @__PURE__ */ jsx(
|
|
60
|
-
AlertDialogPrimitive.Content,
|
|
61
|
-
{
|
|
62
|
-
ref,
|
|
63
|
-
"data-slot": "dialog-content",
|
|
64
|
-
className: cn(
|
|
65
|
-
"data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95 duration-200 outline-none",
|
|
66
|
-
className
|
|
67
|
-
),
|
|
68
|
-
...props,
|
|
69
|
-
children
|
|
70
|
-
}
|
|
71
|
-
)
|
|
72
|
-
] });
|
|
73
|
-
}
|
|
74
38
|
const showCloseButton = showCloseButtonProp ?? showClose ?? true;
|
|
75
39
|
return /* @__PURE__ */ jsxs(DialogPortal, { children: [
|
|
76
40
|
/* @__PURE__ */ jsx(DialogOverlay, {}),
|
|
@@ -108,28 +72,12 @@ DialogHeader.displayName = "DialogHeader";
|
|
|
108
72
|
var DialogFooter = ({ className, ...props }) => /* @__PURE__ */ jsx("div", { "data-slot": "dialog-footer", className, ...props });
|
|
109
73
|
DialogFooter.displayName = "DialogFooter";
|
|
110
74
|
var DialogTitle = React.forwardRef(({ className, ...props }, ref) => {
|
|
111
|
-
const mode = useDialogMode();
|
|
112
75
|
const cls = cn(className);
|
|
113
|
-
if (mode === "confirm") {
|
|
114
|
-
return /* @__PURE__ */ jsx(AlertDialogPrimitive.Title, { ref, "data-slot": "dialog-title", className: cls, ...props });
|
|
115
|
-
}
|
|
116
76
|
return /* @__PURE__ */ jsx(DialogPrimitive.Title, { ref, "data-slot": "dialog-title", className: cls, ...props });
|
|
117
77
|
});
|
|
118
78
|
DialogTitle.displayName = "DialogTitle";
|
|
119
79
|
var DialogDescription = React.forwardRef(({ className, ...props }, ref) => {
|
|
120
|
-
const mode = useDialogMode();
|
|
121
80
|
const cls = cn(className);
|
|
122
|
-
if (mode === "confirm") {
|
|
123
|
-
return /* @__PURE__ */ jsx(
|
|
124
|
-
AlertDialogPrimitive.Description,
|
|
125
|
-
{
|
|
126
|
-
ref,
|
|
127
|
-
"data-slot": "dialog-description",
|
|
128
|
-
className: cls,
|
|
129
|
-
...props
|
|
130
|
-
}
|
|
131
|
-
);
|
|
132
|
-
}
|
|
133
81
|
return /* @__PURE__ */ jsx(
|
|
134
82
|
DialogPrimitive.Description,
|
|
135
83
|
{
|
|
@@ -184,40 +132,56 @@ function AlertDialog({
|
|
|
184
132
|
if (!keepOpenOnConfirm) onOpenChange(false);
|
|
185
133
|
})();
|
|
186
134
|
};
|
|
187
|
-
return /* @__PURE__ */ jsx(
|
|
188
|
-
/* @__PURE__ */
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
"
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
135
|
+
return /* @__PURE__ */ jsx(AlertDialogPrimitive.Root, { "data-slot": "dialog", open, onOpenChange: handleOpenChange, children: /* @__PURE__ */ jsxs(AlertDialogPrimitive.Portal, { children: [
|
|
136
|
+
/* @__PURE__ */ jsx(
|
|
137
|
+
AlertDialogPrimitive.Overlay,
|
|
138
|
+
{
|
|
139
|
+
"data-slot": "dialog-overlay",
|
|
140
|
+
className: "ui-dialog-overlay data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:animate-in data-[state=open]:fade-in-0"
|
|
141
|
+
}
|
|
142
|
+
),
|
|
143
|
+
/* @__PURE__ */ jsxs(
|
|
144
|
+
AlertDialogPrimitive.Content,
|
|
145
|
+
{
|
|
146
|
+
"data-slot": "dialog-content",
|
|
147
|
+
className: "data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95 duration-200 outline-none",
|
|
148
|
+
children: [
|
|
149
|
+
/* @__PURE__ */ jsxs(DialogHeader, { children: [
|
|
150
|
+
/* @__PURE__ */ jsx(AlertDialogPrimitive.Title, { "data-slot": "dialog-title", children: title }),
|
|
151
|
+
description ? /* @__PURE__ */ jsx(AlertDialogPrimitive.Description, { "data-slot": "dialog-description", children: description }) : null
|
|
152
|
+
] }),
|
|
153
|
+
needsPhrase && /* @__PURE__ */ jsxs("div", { className: "ui-stack-xs", children: [
|
|
154
|
+
/* @__PURE__ */ jsx(Label, { htmlFor: inputId, className: "text-sm", children: t("common.typeToConfirm", { phrase: confirmPhrase }) }),
|
|
155
|
+
/* @__PURE__ */ jsx(
|
|
156
|
+
Input,
|
|
157
|
+
{
|
|
158
|
+
id: inputId,
|
|
159
|
+
value: typed,
|
|
160
|
+
onChange: (e) => {
|
|
161
|
+
setTyped(e.target.value);
|
|
162
|
+
},
|
|
163
|
+
autoComplete: "off",
|
|
164
|
+
spellCheck: false,
|
|
165
|
+
placeholder: confirmPhrase,
|
|
166
|
+
"aria-required": "true"
|
|
167
|
+
}
|
|
168
|
+
)
|
|
169
|
+
] }),
|
|
170
|
+
/* @__PURE__ */ jsxs(DialogFooter, { children: [
|
|
171
|
+
/* @__PURE__ */ jsx(DialogCancel, { asChild: true, children: /* @__PURE__ */ jsx(Button, { variant: "ghost", disabled: pending, children: resolvedCancel }) }),
|
|
172
|
+
/* @__PURE__ */ jsx(
|
|
173
|
+
Button,
|
|
174
|
+
{
|
|
175
|
+
variant: effectiveVariant === "destructive" ? "destructive" : "default",
|
|
176
|
+
onClick: handleConfirm,
|
|
177
|
+
disabled: pending || !phraseMatches,
|
|
178
|
+
children: pending ? t("common.working") : resolvedConfirm
|
|
179
|
+
}
|
|
180
|
+
)
|
|
181
|
+
] })
|
|
182
|
+
]
|
|
183
|
+
}
|
|
184
|
+
)
|
|
221
185
|
] }) });
|
|
222
186
|
}
|
|
223
187
|
var Dialog = Object.assign(DialogRoot, {
|
|
@@ -231,9 +195,7 @@ var Dialog = Object.assign(DialogRoot, {
|
|
|
231
195
|
Description: DialogDescription,
|
|
232
196
|
Close: DialogClose,
|
|
233
197
|
Action: DialogAction,
|
|
234
|
-
Cancel: DialogCancel
|
|
235
|
-
Confirm: AlertDialog
|
|
198
|
+
Cancel: DialogCancel
|
|
236
199
|
});
|
|
237
|
-
var DialogConfirm = AlertDialog;
|
|
238
200
|
|
|
239
|
-
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose,
|
|
201
|
+
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Select, SelectTrigger, SelectValue, SelectContent, SelectGroup, SelectItem } from './chunk-
|
|
1
|
+
import { Select, SelectTrigger, SelectValue, SelectContent, SelectGroup, SelectItem } from './chunk-CAEL2ZD2.js';
|
|
2
2
|
import { Input } from './chunk-VOHTRR5X.js';
|
|
3
3
|
import { Inline } from './chunk-TILFZBTE.js';
|
|
4
4
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { formatBytes } from './chunk-4R7QL3MW.js';
|
|
2
|
-
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from './chunk-
|
|
2
|
+
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from './chunk-5D42MFB4.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,4 +1,4 @@
|
|
|
1
|
-
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-
|
|
1
|
+
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-CAEL2ZD2.js';
|
|
2
2
|
import { Button } from './chunk-M4PZNAMV.js';
|
|
3
3
|
import { useTranslation, useOptionalAppContext, APP_LOCALES, resolveTimezonePickerOptions, getTimezoneLabel, APP_TIME_FORMAT_OPTIONS, getTimeFormatLabel } from './chunk-RLGHEV4A.js';
|
|
4
4
|
import { APP_DATE_FORMAT_OPTIONS, getDateFormatLabel } from './chunk-FXFJF4YA.js';
|
|
@@ -683,21 +683,6 @@ var COMPONENT_PROP_REGISTRY = {
|
|
|
683
683
|
file: "components/data-display.prop.ts",
|
|
684
684
|
vocabulary: ["ColumnDefProp", "DensityProp", "SortStateProp", "SelectedIdsProp"]
|
|
685
685
|
},
|
|
686
|
-
DialogConfirmProp: {
|
|
687
|
-
group: "feedback",
|
|
688
|
-
file: "components/feedback.prop.ts",
|
|
689
|
-
vocabulary: [
|
|
690
|
-
"OpenProp",
|
|
691
|
-
"OnOpenChangeProp",
|
|
692
|
-
"TitleProp",
|
|
693
|
-
"DescriptionProp",
|
|
694
|
-
"ConfirmLabelProp",
|
|
695
|
-
"CancelLabelProp",
|
|
696
|
-
"ConfirmVariantProp",
|
|
697
|
-
"OnValueChangeProp",
|
|
698
|
-
"PendingProp"
|
|
699
|
-
]
|
|
700
|
-
},
|
|
701
686
|
AlertDialogProp: {
|
|
702
687
|
group: "feedback",
|
|
703
688
|
file: "components/feedback.prop.ts",
|
|
@@ -14,7 +14,7 @@ export { Transfer } from '../data-entry/transfer.js';
|
|
|
14
14
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../navigation/tabs.js';
|
|
15
15
|
export { Pagination } from '../navigation/pagination.js';
|
|
16
16
|
export { Steps } from '../navigation/steps.js';
|
|
17
|
-
export { AlertDialog, Dialog,
|
|
17
|
+
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../feedback/dialog.js';
|
|
18
18
|
export { Toaster } from '../feedback/sonner.js';
|
|
19
19
|
export { L as LegacyToastOptions, t as toast, u as useToast } from '../../use-toast-Dsw3yE2S.js';
|
|
20
20
|
export { useDebouncedValue, useTimeoutFlag } from '../../lib/hooks.js';
|
|
@@ -32,7 +32,7 @@ import '../../interaction.prop-DSFizzP6.js';
|
|
|
32
32
|
import '../../data-display.prop-Cf2p9QC4.js';
|
|
33
33
|
import 'class-variance-authority/types';
|
|
34
34
|
import 'class-variance-authority';
|
|
35
|
-
import '../../feedback.prop-
|
|
35
|
+
import '../../feedback.prop-Nc9Aa8SV.js';
|
|
36
36
|
import '@radix-ui/react-checkbox';
|
|
37
37
|
import '@radix-ui/react-radio-group';
|
|
38
38
|
import '@radix-ui/react-slider';
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import '../../chunk-LDSLS6HE.js';
|
|
2
|
-
export { FilterBar, FilterGroup, PageHeader, Toolbar, ToolbarGroup } from '../../chunk-
|
|
2
|
+
export { FilterBar, FilterGroup, PageHeader, Toolbar, ToolbarGroup } from '../../chunk-VN72SWHX.js';
|
|
3
3
|
import '../../chunk-B73NA66T.js';
|
|
4
4
|
import '../../chunk-WGWI7EGL.js';
|
|
5
|
-
export { Pagination } from '../../chunk-
|
|
5
|
+
export { Pagination } from '../../chunk-56NYZNVY.js';
|
|
6
6
|
export { Steps } from '../../chunk-OJZ6C2HM.js';
|
|
7
7
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
8
8
|
export { toast, useToast } from '../../chunk-B3WX53JQ.js';
|
|
9
9
|
export { SkeletonCard, SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-AINW5WYN.js';
|
|
10
|
-
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-ZRRLOOBX.js';
|
|
11
10
|
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
12
11
|
export { PageContainer, Stack } from '../../chunk-442ULAA6.js';
|
|
13
12
|
import '../../chunk-FRU44GA2.js';
|
|
@@ -15,20 +14,21 @@ import '../../chunk-TO33OY4L.js';
|
|
|
15
14
|
import '../../chunk-32WO3YLB.js';
|
|
16
15
|
import '../../chunk-W4REF4TD.js';
|
|
17
16
|
import '../../chunk-HL3G4SVG.js';
|
|
17
|
+
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-ZRRLOOBX.js';
|
|
18
18
|
export { SearchInput, Transfer } from '../../chunk-INSF6K3Y.js';
|
|
19
19
|
export { TreeSelect } from '../../chunk-6J7GRCDA.js';
|
|
20
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
20
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-KXOAZGPA.js';
|
|
21
21
|
export { formatBytes, formatCurrency, formatDateLong, formatDateTime, formatRelative, humanError, shortId } from '../../chunk-4R7QL3MW.js';
|
|
22
|
-
export { AlertDialog, Dialog,
|
|
22
|
+
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../../chunk-5D42MFB4.js';
|
|
23
|
+
import '../../chunk-CAEL2ZD2.js';
|
|
23
24
|
import '../../chunk-CRERCLIZ.js';
|
|
24
|
-
import '../../chunk-
|
|
25
|
-
import '../../chunk-GKED65NV.js';
|
|
25
|
+
import '../../chunk-KDBGFJJI.js';
|
|
26
26
|
export { Cascader } from '../../chunk-HB2OHB5X.js';
|
|
27
27
|
import '../../chunk-SMLKNECP.js';
|
|
28
28
|
import '../../chunk-O24Z3ULJ.js';
|
|
29
29
|
export { ChoiceField, Field } from '../../chunk-26CPAKUP.js';
|
|
30
|
-
import '../../chunk-VOHTRR5X.js';
|
|
31
30
|
import '../../chunk-HTEL5DQI.js';
|
|
31
|
+
import '../../chunk-VOHTRR5X.js';
|
|
32
32
|
export { DataTable, Descriptions, EmptyState } from '../../chunk-JBHXILI4.js';
|
|
33
33
|
import '../../chunk-DV52WNXO.js';
|
|
34
34
|
export { Flex, Inline } from '../../chunk-TILFZBTE.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { Autocomplete } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
3
|
-
import '../../chunk-VOHTRR5X.js';
|
|
1
|
+
export { Autocomplete } from '../../chunk-GKXPALFT.js';
|
|
2
|
+
import '../../chunk-KDBGFJJI.js';
|
|
4
3
|
import '../../chunk-HTEL5DQI.js';
|
|
4
|
+
import '../../chunk-VOHTRR5X.js';
|
|
5
5
|
import '../../chunk-M4PZNAMV.js';
|
|
6
6
|
import '../../chunk-DY5C44UP.js';
|
|
7
7
|
import '../../chunk-IBK5D2Q6.js';
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
export { CountryOptionLabel, CountrySelect, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, PasswordInput, Rating, TagInput } from '../../chunk-
|
|
1
|
+
export { CountryOptionLabel, CountrySelect, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, PasswordInput, Rating, TagInput } from '../../chunk-6YK3IJXW.js';
|
|
2
2
|
export { Toggle, ToggleGroup, ToggleGroupItem } from '../../chunk-FYM3MJSK.js';
|
|
3
|
-
export { Switch } from '../../chunk-R2W2FX5Q.js';
|
|
4
3
|
export { Textarea } from '../../chunk-EOTOCNT7.js';
|
|
5
4
|
export { TimeInput } from '../../chunk-QLMXEJSY.js';
|
|
6
5
|
export { TimePicker } from '../../chunk-6YBYAEXD.js';
|
|
7
|
-
export { DatePicker } from '../../chunk-LJLGABFV.js';
|
|
8
6
|
export { DateRangePicker } from '../../chunk-N3JPLJ3B.js';
|
|
9
7
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-25RYBC5T.js';
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
8
|
+
export { Switch } from '../../chunk-R2W2FX5Q.js';
|
|
9
|
+
export { Autocomplete } from '../../chunk-GKXPALFT.js';
|
|
12
10
|
export { ColorPicker } from '../../chunk-3TS3G4U3.js';
|
|
13
11
|
export { Combobox } from '../../chunk-JKHWLPM5.js';
|
|
12
|
+
export { DatePicker } from '../../chunk-LJLGABFV.js';
|
|
13
|
+
export { Calendar } from '../../chunk-IOGU3ZWF.js';
|
|
14
14
|
export { SearchInput, Transfer } from '../../chunk-INSF6K3Y.js';
|
|
15
15
|
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from '../../chunk-6J7GRCDA.js';
|
|
16
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
16
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-KXOAZGPA.js';
|
|
17
17
|
import '../../chunk-4R7QL3MW.js';
|
|
18
|
-
import '../../chunk-
|
|
18
|
+
import '../../chunk-5D42MFB4.js';
|
|
19
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-CAEL2ZD2.js';
|
|
19
20
|
export { Slider } from '../../chunk-CRERCLIZ.js';
|
|
20
|
-
export {
|
|
21
|
-
export { SearchSelect } from '../../chunk-GKED65NV.js';
|
|
21
|
+
export { SearchSelect } from '../../chunk-KDBGFJJI.js';
|
|
22
22
|
export { Cascader } from '../../chunk-HB2OHB5X.js';
|
|
23
23
|
import '../../chunk-SMLKNECP.js';
|
|
24
24
|
export { Checkbox, CheckboxGroup } from '../../chunk-O24Z3ULJ.js';
|
|
25
25
|
export { ChoiceField, Field } from '../../chunk-26CPAKUP.js';
|
|
26
|
-
export { Input } from '../../chunk-VOHTRR5X.js';
|
|
27
26
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-HTEL5DQI.js';
|
|
27
|
+
export { Input } from '../../chunk-VOHTRR5X.js';
|
|
28
28
|
import '../../chunk-TILFZBTE.js';
|
|
29
29
|
import '../../chunk-M4PZNAMV.js';
|
|
30
30
|
import '../../chunk-DY5C44UP.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
3
|
-
import '../../chunk-VOHTRR5X.js';
|
|
1
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-CAEL2ZD2.js';
|
|
2
|
+
import '../../chunk-KDBGFJJI.js';
|
|
4
3
|
import '../../chunk-HTEL5DQI.js';
|
|
4
|
+
import '../../chunk-VOHTRR5X.js';
|
|
5
5
|
import '../../chunk-M4PZNAMV.js';
|
|
6
6
|
import '../../chunk-DY5C44UP.js';
|
|
7
7
|
import '../../chunk-IBK5D2Q6.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
1
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-KXOAZGPA.js';
|
|
2
2
|
import '../../chunk-4R7QL3MW.js';
|
|
3
|
-
import '../../chunk-
|
|
3
|
+
import '../../chunk-5D42MFB4.js';
|
|
4
4
|
import '../../chunk-CRERCLIZ.js';
|
|
5
5
|
import '../../chunk-VOHTRR5X.js';
|
|
6
6
|
import '../../chunk-M4PZNAMV.js';
|
|
@@ -3,8 +3,8 @@ import { H as HandlerProp, a as ClassNameProp, C as ChildrenProp } from '../../s
|
|
|
3
3
|
import { I as IconProp } from '../../content.prop-DrV_zDy-.js';
|
|
4
4
|
import { A as AlertVariantProp, T as ToneProp } from '../../interaction.prop-DSFizzP6.js';
|
|
5
5
|
import * as React from 'react';
|
|
6
|
-
import { e as AlertQueryErrorProp } from '../../feedback.prop-
|
|
7
|
-
export { A as AlertActionsProp, A as AlertActionsProps, a as AlertContentProp, a as AlertContentProps, b as AlertDescriptionProp, b as AlertDescriptionProps, d as AlertProp, d as AlertProps, f as AlertTitleProp, f as AlertTitleProps } from '../../feedback.prop-
|
|
6
|
+
import { e as AlertQueryErrorProp } from '../../feedback.prop-Nc9Aa8SV.js';
|
|
7
|
+
export { A as AlertActionsProp, A as AlertActionsProps, a as AlertContentProp, a as AlertContentProps, b as AlertDescriptionProp, b as AlertDescriptionProps, d as AlertProp, d as AlertProps, f as AlertTitleProp, f as AlertTitleProps } from '../../feedback.prop-Nc9Aa8SV.js';
|
|
8
8
|
|
|
9
9
|
declare const AlertBase: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
10
10
|
variant?: AlertVariantProp;
|
|
@@ -2,18 +2,13 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
4
4
|
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
5
|
-
import { c as AlertDialogProp } from '../../feedback.prop-
|
|
6
|
-
export { D as DialogConfirmProp, D as DialogConfirmProps } from '../../feedback.prop-BR5JOpPl.js';
|
|
5
|
+
import { c as AlertDialogProp } from '../../feedback.prop-Nc9Aa8SV.js';
|
|
7
6
|
import '../../shared.prop-BsNSXeqD.js';
|
|
8
7
|
import '../../content.prop-DrV_zDy-.js';
|
|
9
8
|
import '../../interaction.prop-DSFizzP6.js';
|
|
10
9
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
type DialogRootProps = React.ComponentProps<typeof DialogPrimitive.Root> & {
|
|
14
|
-
mode?: DialogMode;
|
|
15
|
-
};
|
|
16
|
-
declare function DialogRoot({ mode, ...props }: DialogRootProps): react_jsx_runtime.JSX.Element;
|
|
10
|
+
type DialogRootProps = React.ComponentProps<typeof DialogPrimitive.Root> & {};
|
|
11
|
+
declare function DialogRoot(props: DialogRootProps): react_jsx_runtime.JSX.Element;
|
|
17
12
|
declare function DialogTrigger(props: React.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
18
13
|
declare function DialogPortal(props: React.ComponentProps<typeof DialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
19
14
|
declare function DialogClose(props: React.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element;
|
|
@@ -36,7 +31,7 @@ declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogPrim
|
|
|
36
31
|
declare const DialogAction: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
37
32
|
/** Confirm mode — dismiss without action (maps to Radix AlertDialogCancel). */
|
|
38
33
|
declare const DialogCancel: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
39
|
-
/** Preset: confirm / destructive / type-to-confirm
|
|
34
|
+
/** Preset: confirm / destructive / type-to-confirm without compound markup. */
|
|
40
35
|
declare function AlertDialog({ open, onOpenChange, title, description, confirmLabel, cancelLabel, variant, confirmPhrase, onConfirm, keepOpenOnConfirm, pending, }: AlertDialogProp): react_jsx_runtime.JSX.Element;
|
|
41
36
|
declare const Dialog: typeof DialogRoot & {
|
|
42
37
|
Trigger: typeof DialogTrigger;
|
|
@@ -59,9 +54,6 @@ declare const Dialog: typeof DialogRoot & {
|
|
|
59
54
|
Close: typeof DialogClose;
|
|
60
55
|
Action: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
61
56
|
Cancel: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
62
|
-
Confirm: typeof AlertDialog;
|
|
63
57
|
};
|
|
64
|
-
/** @deprecated Use AlertDialog. */
|
|
65
|
-
declare const DialogConfirm: typeof AlertDialog;
|
|
66
58
|
|
|
67
|
-
export { AlertDialog, AlertDialogProp, AlertDialogProp as AlertDialogProps, Dialog, DialogAction, DialogCancel, DialogClose,
|
|
59
|
+
export { AlertDialog, AlertDialogProp, AlertDialogProp as AlertDialogProps, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose,
|
|
1
|
+
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger } from '../../chunk-5D42MFB4.js';
|
|
2
2
|
import '../../chunk-VOHTRR5X.js';
|
|
3
3
|
import '../../chunk-M4PZNAMV.js';
|
|
4
4
|
import '../../chunk-7PWBC4BY.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose,
|
|
1
|
+
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from './dialog.js';
|
|
2
2
|
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from './sheet.js';
|
|
3
3
|
export { Toaster } from './sonner.js';
|
|
4
4
|
export { L as LegacyToastOptions, t as toast, u as useToast } from '../../use-toast-Dsw3yE2S.js';
|
|
@@ -10,7 +10,7 @@ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
|
10
10
|
import * as vaul from 'vaul';
|
|
11
11
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
12
12
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
13
|
-
export { A as AlertActionsProp, A as AlertActionsProps, a as AlertContentProp, a as AlertContentProps, b as AlertDescriptionProp, b as AlertDescriptionProps, c as AlertDialogProp, c as AlertDialogProps, d as AlertProp, d as AlertProps, e as AlertQueryErrorProp, e as AlertQueryErrorProps, f as AlertTitleProp, f as AlertTitleProps
|
|
13
|
+
export { A as AlertActionsProp, A as AlertActionsProps, a as AlertContentProp, a as AlertContentProps, b as AlertDescriptionProp, b as AlertDescriptionProps, c as AlertDialogProp, c as AlertDialogProps, d as AlertProp, d as AlertProps, e as AlertQueryErrorProp, e as AlertQueryErrorProps, f as AlertTitleProp, f as AlertTitleProps } from '../../feedback.prop-Nc9Aa8SV.js';
|
|
14
14
|
import '@radix-ui/react-alert-dialog';
|
|
15
15
|
import '../../shared.prop-BsNSXeqD.js';
|
|
16
16
|
import '../../content.prop-DrV_zDy-.js';
|
|
@@ -2,11 +2,11 @@ export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, Dr
|
|
|
2
2
|
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-BHV2FUOA.js';
|
|
3
3
|
export { toast, useToast } from '../../chunk-B3WX53JQ.js';
|
|
4
4
|
export { Skeleton, SkeletonCard, SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-AINW5WYN.js';
|
|
5
|
-
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-ZRRLOOBX.js';
|
|
6
5
|
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
7
6
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
7
|
+
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-ZRRLOOBX.js';
|
|
8
8
|
import '../../chunk-4R7QL3MW.js';
|
|
9
|
-
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose,
|
|
9
|
+
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from '../../chunk-5D42MFB4.js';
|
|
10
10
|
import '../../chunk-VOHTRR5X.js';
|
|
11
11
|
import '../../chunk-TILFZBTE.js';
|
|
12
12
|
import '../../chunk-M4PZNAMV.js';
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export { DateFormatPicker, FilterBar, FilterGroup, LocalePicker, PageHeader, TimeFormatPicker, TimezonePicker, Toolbar, ToolbarGroup } from '../../chunk-
|
|
1
|
+
export { DateFormatPicker, FilterBar, FilterGroup, LocalePicker, PageHeader, TimeFormatPicker, TimezonePicker, Toolbar, ToolbarGroup } from '../../chunk-VN72SWHX.js';
|
|
2
2
|
export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from '../../chunk-B73NA66T.js';
|
|
3
3
|
export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport } from '../../chunk-WGWI7EGL.js';
|
|
4
|
-
export { Pagination } from '../../chunk-
|
|
4
|
+
export { Pagination } from '../../chunk-56NYZNVY.js';
|
|
5
5
|
export { Steps } from '../../chunk-OJZ6C2HM.js';
|
|
6
6
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
7
7
|
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from '../../chunk-TO33OY4L.js';
|
|
8
8
|
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from '../../chunk-HL3G4SVG.js';
|
|
9
|
-
import '../../chunk-
|
|
10
|
-
import '../../chunk-
|
|
11
|
-
import '../../chunk-VOHTRR5X.js';
|
|
9
|
+
import '../../chunk-CAEL2ZD2.js';
|
|
10
|
+
import '../../chunk-KDBGFJJI.js';
|
|
12
11
|
import '../../chunk-HTEL5DQI.js';
|
|
12
|
+
import '../../chunk-VOHTRR5X.js';
|
|
13
13
|
import '../../chunk-M4PZNAMV.js';
|
|
14
14
|
import '../../chunk-DY5C44UP.js';
|
|
15
15
|
import '../../chunk-IBK5D2Q6.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { Pagination } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
3
|
-
import '../../chunk-
|
|
4
|
-
import '../../chunk-VOHTRR5X.js';
|
|
1
|
+
export { Pagination } from '../../chunk-56NYZNVY.js';
|
|
2
|
+
import '../../chunk-CAEL2ZD2.js';
|
|
3
|
+
import '../../chunk-KDBGFJJI.js';
|
|
5
4
|
import '../../chunk-HTEL5DQI.js';
|
|
5
|
+
import '../../chunk-VOHTRR5X.js';
|
|
6
6
|
import '../../chunk-M4PZNAMV.js';
|
|
7
7
|
import '../../chunk-DY5C44UP.js';
|
|
8
8
|
import '../../chunk-IBK5D2Q6.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../feedback/alert.js';
|
|
2
|
-
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose,
|
|
2
|
+
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger } from '../feedback/dialog.js';
|
|
3
3
|
export { A as AspectRatio } from '../../aspect-ratio-DGoYrOry.js';
|
|
4
4
|
export { Autocomplete } from '../data-entry/autocomplete.js';
|
|
5
5
|
export { A as Avatar, a as AvatarFallback, b as AvatarImage } from '../../avatar-D9MdXzfF.js';
|
|
@@ -38,7 +38,7 @@ export { Textarea, TextareaProps } from '../data-entry/textarea.js';
|
|
|
38
38
|
export { TimePicker } from '../data-entry/time-picker.js';
|
|
39
39
|
export { T as Toggle, a as ToggleGroup, b as ToggleGroupItem, c as ToggleProps, t as toggleVariants } from '../../toggle-group-BulJgKh3.js';
|
|
40
40
|
export { Upload, useUploadDraft } from '../data-entry/upload.js';
|
|
41
|
-
export { A as AlertActionsProp, A as AlertActionsProps, a as AlertContentProp, a as AlertContentProps, b as AlertDescriptionProp, b as AlertDescriptionProps, c as AlertDialogProp, c as AlertDialogProps, d as AlertProp, d as AlertProps, e as AlertQueryErrorProp, e as AlertQueryErrorProps, f as AlertTitleProp, f as AlertTitleProps
|
|
41
|
+
export { A as AlertActionsProp, A as AlertActionsProps, a as AlertContentProp, a as AlertContentProps, b as AlertDescriptionProp, b as AlertDescriptionProps, c as AlertDialogProp, c as AlertDialogProps, d as AlertProp, d as AlertProps, e as AlertQueryErrorProp, e as AlertQueryErrorProps, f as AlertTitleProp, f as AlertTitleProps } from '../../feedback.prop-Nc9Aa8SV.js';
|
|
42
42
|
export { a as AutocompleteProp, a as AutocompleteProps, C as CalendarProp, C as CalendarProps, g as ColorPickerProp, g as ColorPickerProps, D as DatePickerProp, D as DatePickerProps, k as DateRangePickerProp, k as DateRangePickerProps, R as RadioGroupProp, R as RadioGroupProps, t as SliderProp, t as SliderProps, u as SwitchProp, u as SwitchProps, v as TimePickerProp, v as TimePickerProps, U as UploadCommitAction, E as UploadFileItem, G as UploadFileItemProp, H as UploadProp, H as UploadProps, J as UploadVariant, K as UploadVariantProp, L as collectUploadCommitActions, M as createUploadItem } from '../../data-entry.prop-CDkOajPj.js';
|
|
43
43
|
export { B as ButtonProp, B as ButtonProps } from '../../general.prop-DoHDCRmL.js';
|
|
44
44
|
export { P as PaginationProp, P as PaginationProps } from '../../navigation.prop-8DgElO0c.js';
|
|
@@ -3,38 +3,38 @@ export { Card, CardAction, CardContent, CardCover, CardDescription, CardFooter,
|
|
|
3
3
|
export { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, useCarousel } from '../../chunk-HCM4JAC2.js';
|
|
4
4
|
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-BHV2FUOA.js';
|
|
5
5
|
export { Toggle, ToggleGroup, ToggleGroupItem, toggleVariants } from '../../chunk-FYM3MJSK.js';
|
|
6
|
-
export { Switch } from '../../chunk-R2W2FX5Q.js';
|
|
7
6
|
export { Textarea } from '../../chunk-EOTOCNT7.js';
|
|
8
7
|
export { TimeInput } from '../../chunk-QLMXEJSY.js';
|
|
9
8
|
export { TimePicker } from '../../chunk-6YBYAEXD.js';
|
|
10
|
-
export { DatePicker } from '../../chunk-LJLGABFV.js';
|
|
11
9
|
export { DateRangePicker } from '../../chunk-N3JPLJ3B.js';
|
|
12
10
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-25RYBC5T.js';
|
|
13
|
-
export {
|
|
14
|
-
export {
|
|
11
|
+
export { Switch } from '../../chunk-R2W2FX5Q.js';
|
|
12
|
+
export { Autocomplete } from '../../chunk-GKXPALFT.js';
|
|
15
13
|
export { ColorPicker } from '../../chunk-3TS3G4U3.js';
|
|
16
14
|
export { Combobox } from '../../chunk-JKHWLPM5.js';
|
|
15
|
+
export { DatePicker } from '../../chunk-LJLGABFV.js';
|
|
16
|
+
export { Calendar } from '../../chunk-IOGU3ZWF.js';
|
|
17
17
|
export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from '../../chunk-B73NA66T.js';
|
|
18
18
|
export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport } from '../../chunk-WGWI7EGL.js';
|
|
19
|
-
export { Pagination } from '../../chunk-
|
|
19
|
+
export { Pagination } from '../../chunk-56NYZNVY.js';
|
|
20
20
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
21
21
|
export { Skeleton } from '../../chunk-AINW5WYN.js';
|
|
22
|
-
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-ZRRLOOBX.js';
|
|
23
22
|
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
24
23
|
export { AspectRatio } from '../../chunk-FRU44GA2.js';
|
|
25
24
|
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from '../../chunk-TO33OY4L.js';
|
|
26
25
|
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../../chunk-W4REF4TD.js';
|
|
27
26
|
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from '../../chunk-HL3G4SVG.js';
|
|
28
|
-
export {
|
|
27
|
+
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-ZRRLOOBX.js';
|
|
28
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-KXOAZGPA.js';
|
|
29
29
|
import '../../chunk-4R7QL3MW.js';
|
|
30
|
-
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose,
|
|
30
|
+
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger } from '../../chunk-5D42MFB4.js';
|
|
31
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-CAEL2ZD2.js';
|
|
31
32
|
export { Slider } from '../../chunk-CRERCLIZ.js';
|
|
32
|
-
|
|
33
|
-
import '../../chunk-GKED65NV.js';
|
|
33
|
+
import '../../chunk-KDBGFJJI.js';
|
|
34
34
|
export { Checkbox } from '../../chunk-O24Z3ULJ.js';
|
|
35
35
|
import '../../chunk-26CPAKUP.js';
|
|
36
|
-
export { Input } from '../../chunk-VOHTRR5X.js';
|
|
37
36
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-HTEL5DQI.js';
|
|
37
|
+
export { Input } from '../../chunk-VOHTRR5X.js';
|
|
38
38
|
import '../../chunk-TILFZBTE.js';
|
|
39
39
|
export { Button, buttonVariants } from '../../chunk-M4PZNAMV.js';
|
|
40
40
|
export { Badge } from '../../chunk-UIYEAUWA.js';
|
|
@@ -20,8 +20,6 @@ type AlertDialogProp = {
|
|
|
20
20
|
keepOpenOnConfirm?: boolean;
|
|
21
21
|
pending?: PendingProp;
|
|
22
22
|
};
|
|
23
|
-
/** @see DialogConfirm — deprecated alias for AlertDialog. */
|
|
24
|
-
type DialogConfirmProp = AlertDialogProp;
|
|
25
23
|
/** @see Alert */
|
|
26
24
|
type AlertQueryErrorProp = {
|
|
27
25
|
error: unknown;
|
|
@@ -64,4 +62,4 @@ type SkeletonRowsProp = {
|
|
|
64
62
|
columns?: number;
|
|
65
63
|
};
|
|
66
64
|
|
|
67
|
-
export type { AlertActionsProp as A,
|
|
65
|
+
export type { AlertActionsProp as A, SkeletonRowsProp as S, AlertContentProp as a, AlertDescriptionProp as b, AlertDialogProp as c, AlertProp as d, AlertQueryErrorProp as e, AlertTitleProp as f };
|
package/dist/index.d.ts
CHANGED
|
@@ -14,14 +14,14 @@ export { Transfer } from './components/data-entry/transfer.js';
|
|
|
14
14
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from './components/navigation/tabs.js';
|
|
15
15
|
export { Pagination } from './components/navigation/pagination.js';
|
|
16
16
|
export { Steps } from './components/navigation/steps.js';
|
|
17
|
-
export { AlertDialog, Dialog,
|
|
17
|
+
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from './components/feedback/dialog.js';
|
|
18
18
|
export { Toaster } from './components/feedback/sonner.js';
|
|
19
19
|
export { L as LegacyToastOptions, t as toast, u as useToast } from './use-toast-Dsw3yE2S.js';
|
|
20
20
|
export { useDebouncedValue, useTimeoutFlag } from './lib/hooks.js';
|
|
21
21
|
export { formatBytes, formatCurrency, formatDateLong, formatDateTime, formatRelative, humanError, shortId } from './components/admin/index.js';
|
|
22
22
|
export { cn } from './lib/utils.js';
|
|
23
23
|
export { F as FieldProps, L as collectUploadCommitActions, M as createUploadItem } from './data-entry.prop-CDkOajPj.js';
|
|
24
|
-
export { c as AlertDialogProps } from './feedback.prop-
|
|
24
|
+
export { c as AlertDialogProps } from './feedback.prop-Nc9Aa8SV.js';
|
|
25
25
|
export { e as ToolbarGroupProps, f as ToolbarProps } from './navigation.prop-8DgElO0c.js';
|
|
26
26
|
export { j as formatDate } from './format-date-ByyZoqI5.js';
|
|
27
27
|
import './shared.prop-BsNSXeqD.js';
|
package/dist/index.js
CHANGED
|
@@ -1,28 +1,27 @@
|
|
|
1
1
|
import './chunk-WFUIE252.js';
|
|
2
2
|
import './chunk-BHV2FUOA.js';
|
|
3
|
-
import './chunk-
|
|
3
|
+
import './chunk-6YK3IJXW.js';
|
|
4
4
|
import './chunk-FYM3MJSK.js';
|
|
5
|
-
import './chunk-R2W2FX5Q.js';
|
|
6
5
|
import './chunk-EOTOCNT7.js';
|
|
7
6
|
import './chunk-QLMXEJSY.js';
|
|
8
7
|
import './chunk-6YBYAEXD.js';
|
|
9
|
-
import './chunk-LJLGABFV.js';
|
|
10
8
|
import './chunk-N3JPLJ3B.js';
|
|
11
9
|
import './chunk-25RYBC5T.js';
|
|
12
|
-
import './chunk-
|
|
13
|
-
import './chunk-
|
|
10
|
+
import './chunk-R2W2FX5Q.js';
|
|
11
|
+
import './chunk-GKXPALFT.js';
|
|
14
12
|
import './chunk-3TS3G4U3.js';
|
|
15
13
|
import './chunk-JKHWLPM5.js';
|
|
14
|
+
import './chunk-LJLGABFV.js';
|
|
15
|
+
import './chunk-IOGU3ZWF.js';
|
|
16
16
|
import './chunk-LDSLS6HE.js';
|
|
17
|
-
export { FilterBar, FilterGroup, PageHeader, Toolbar, ToolbarGroup } from './chunk-
|
|
17
|
+
export { FilterBar, FilterGroup, PageHeader, Toolbar, ToolbarGroup } from './chunk-VN72SWHX.js';
|
|
18
18
|
import './chunk-B73NA66T.js';
|
|
19
19
|
import './chunk-WGWI7EGL.js';
|
|
20
|
-
export { Pagination } from './chunk-
|
|
20
|
+
export { Pagination } from './chunk-56NYZNVY.js';
|
|
21
21
|
export { Steps } from './chunk-OJZ6C2HM.js';
|
|
22
22
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from './chunk-V3N266PT.js';
|
|
23
23
|
export { toast, useToast } from './chunk-B3WX53JQ.js';
|
|
24
24
|
export { SkeletonCard, SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from './chunk-AINW5WYN.js';
|
|
25
|
-
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from './chunk-ZRRLOOBX.js';
|
|
26
25
|
export { Toaster } from './chunk-TO7URV7U.js';
|
|
27
26
|
export { PageContainer, Stack } from './chunk-442ULAA6.js';
|
|
28
27
|
import './chunk-FRU44GA2.js';
|
|
@@ -30,20 +29,21 @@ import './chunk-TO33OY4L.js';
|
|
|
30
29
|
import './chunk-32WO3YLB.js';
|
|
31
30
|
import './chunk-W4REF4TD.js';
|
|
32
31
|
import './chunk-HL3G4SVG.js';
|
|
32
|
+
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from './chunk-ZRRLOOBX.js';
|
|
33
33
|
export { SearchInput, Transfer } from './chunk-INSF6K3Y.js';
|
|
34
34
|
export { TreeSelect } from './chunk-6J7GRCDA.js';
|
|
35
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from './chunk-
|
|
35
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from './chunk-KXOAZGPA.js';
|
|
36
36
|
export { formatBytes, formatCurrency, formatDateLong, formatDateTime, formatRelative, humanError, shortId } from './chunk-4R7QL3MW.js';
|
|
37
|
-
export { AlertDialog, Dialog,
|
|
37
|
+
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from './chunk-5D42MFB4.js';
|
|
38
|
+
import './chunk-CAEL2ZD2.js';
|
|
38
39
|
import './chunk-CRERCLIZ.js';
|
|
39
|
-
import './chunk-
|
|
40
|
-
import './chunk-GKED65NV.js';
|
|
40
|
+
import './chunk-KDBGFJJI.js';
|
|
41
41
|
export { Cascader } from './chunk-HB2OHB5X.js';
|
|
42
42
|
import './chunk-SMLKNECP.js';
|
|
43
43
|
import './chunk-O24Z3ULJ.js';
|
|
44
44
|
export { ChoiceField, Field } from './chunk-26CPAKUP.js';
|
|
45
|
-
import './chunk-VOHTRR5X.js';
|
|
46
45
|
import './chunk-HTEL5DQI.js';
|
|
46
|
+
import './chunk-VOHTRR5X.js';
|
|
47
47
|
export { DataTable, Descriptions, EmptyState } from './chunk-JBHXILI4.js';
|
|
48
48
|
import './chunk-DV52WNXO.js';
|
|
49
49
|
export { Flex, Inline } from './chunk-TILFZBTE.js';
|
|
@@ -2,7 +2,7 @@ export { A as AppShellProp, I as InlineProp, P as PageContainerProp, d as PageHe
|
|
|
2
2
|
export { B as ButtonProp } from '../../general.prop-DoHDCRmL.js';
|
|
3
3
|
export { A as AutocompleteOptionProp, a as AutocompleteProp, C as CalendarProp, b as CascaderProp, c as CheckboxGroupProp, d as CheckboxProp, f as ChoiceOptionProp, g as ColorPickerProp, D as DatePickerProp, k as DateRangePickerProp, l as FormFieldProp, I as InputProp, R as RadioGroupProp, m as RadioProp, S as SearchInputProp, s as ShowCheckedStrategyProp, t as SliderProp, u as SwitchProp, T as TextareaProp, v as TimePickerProp, w as TransferItemProp, x as TransferProp, y as TreeFieldNamesProp, z as TreeOptionProp, B as TreeSelectProp, G as UploadFileItemProp, H as UploadProp, K as UploadVariantProp } from '../../data-entry.prop-CDkOajPj.js';
|
|
4
4
|
export { B as BadgeProp, D as DataTableProp, a as DescriptionsItemProp, b as DescriptionsProp, E as EmptyStateProp } from '../../data-display.prop-Cf2p9QC4.js';
|
|
5
|
-
export { A as AlertActionsProp, a as AlertContentProp, b as AlertDescriptionProp, d as AlertProp, e as AlertQueryErrorProp, f as AlertTitleProp,
|
|
5
|
+
export { A as AlertActionsProp, a as AlertContentProp, b as AlertDescriptionProp, d as AlertProp, e as AlertQueryErrorProp, f as AlertTitleProp, S as SkeletonRowsProp } from '../../feedback.prop-Nc9Aa8SV.js';
|
|
6
6
|
export { D as DataStateProp, I as InfiniteQueryHelpers, a as InfiniteQueryStateProp, M as MutationFeedbackProp, P as PrefetchLinkProp, Q as QueryRefetchButtonProp } from '../../query.prop-BDdz9L1G.js';
|
|
7
7
|
export { F as FilterBarProp, a as FilterGroupProp, P as PaginationProp, S as StepItemProp, b as StepStatusProp, c as StepsProp, T as TabItemProp, d as TabsProp } from '../../navigation.prop-8DgElO0c.js';
|
|
8
8
|
export { A as AppContextValue, a as AppProviderProp, D as DateFormatPickerProp, L as LocalePickerProp, T as TimeFormatPickerProp, b as TimezonePickerProp } from '../../app.prop-DnIXFzLi.js';
|
package/dist/props/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export { A as AppShellProp, I as InlineProp, I as InlineProps, P as PageContaine
|
|
|
8
8
|
export { B as ButtonProp, B as ButtonProps } from '../general.prop-DoHDCRmL.js';
|
|
9
9
|
export { A as AutocompleteOptionProp, a as AutocompleteProp, C as CalendarProp, b as CascaderProp, c as CheckboxGroupProp, d as CheckboxProp, f as ChoiceOptionProp, g as ColorPickerProp, D as DatePickerProp, k as DateRangePickerProp, l as FormFieldProp, I as InputProp, R as RadioGroupProp, m as RadioProp, S as SearchInputProp, s as ShowCheckedStrategyProp, t as SliderProp, u as SwitchProp, T as TextareaProp, v as TimePickerProp, w as TransferItemProp, x as TransferProp, y as TreeFieldNamesProp, z as TreeOptionProp, B as TreeSelectProp, G as UploadFileItemProp, H as UploadProp, K as UploadVariantProp } from '../data-entry.prop-CDkOajPj.js';
|
|
10
10
|
export { B as BadgeProp, D as DataTableProp, a as DescriptionsItemProp, b as DescriptionsProp, E as EmptyStateProp } from '../data-display.prop-Cf2p9QC4.js';
|
|
11
|
-
export { A as AlertActionsProp, a as AlertContentProp, b as AlertDescriptionProp, d as AlertProp, e as AlertQueryErrorProp, f as AlertTitleProp,
|
|
11
|
+
export { A as AlertActionsProp, a as AlertContentProp, b as AlertDescriptionProp, d as AlertProp, e as AlertQueryErrorProp, f as AlertTitleProp, S as SkeletonRowsProp } from '../feedback.prop-Nc9Aa8SV.js';
|
|
12
12
|
export { D as DataStateProp, I as InfiniteQueryHelpers, a as InfiniteQueryStateProp, M as MutationFeedbackProp, P as PrefetchLinkProp, Q as QueryRefetchButtonProp } from '../query.prop-BDdz9L1G.js';
|
|
13
13
|
export { F as FilterBarProp, a as FilterGroupProp, P as PaginationProp, S as StepItemProp, b as StepStatusProp, c as StepsProp, T as TabItemProp, d as TabsProp } from '../navigation.prop-8DgElO0c.js';
|
|
14
14
|
export { A as AppContextValue, a as AppProviderProp, D as DateFormatPickerProp, L as LocalePickerProp, T as TimeFormatPickerProp, b as TimezonePickerProp } from '../app.prop-DnIXFzLi.js';
|
package/dist/props/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import '../chunk-B775Y6BE.js';
|
|
2
2
|
import '../chunk-ZT5UEUBO.js';
|
|
3
|
-
export { COMPONENT_PROP_REGISTRY, PROP_ALIASES_FORBIDDEN, VOCABULARY_REGISTRY } from '../chunk-
|
|
3
|
+
export { COMPONENT_PROP_REGISTRY, PROP_ALIASES_FORBIDDEN, VOCABULARY_REGISTRY } from '../chunk-XQMPK4GM.js';
|
package/dist/props/registry.d.ts
CHANGED
|
@@ -672,11 +672,6 @@ declare const COMPONENT_PROP_REGISTRY: {
|
|
|
672
672
|
readonly file: "components/data-display.prop.ts";
|
|
673
673
|
readonly vocabulary: readonly ["ColumnDefProp", "DensityProp", "SortStateProp", "SelectedIdsProp"];
|
|
674
674
|
};
|
|
675
|
-
readonly DialogConfirmProp: {
|
|
676
|
-
readonly group: "feedback";
|
|
677
|
-
readonly file: "components/feedback.prop.ts";
|
|
678
|
-
readonly vocabulary: readonly ["OpenProp", "OnOpenChangeProp", "TitleProp", "DescriptionProp", "ConfirmLabelProp", "CancelLabelProp", "ConfirmVariantProp", "OnValueChangeProp", "PendingProp"];
|
|
679
|
-
};
|
|
680
675
|
readonly AlertDialogProp: {
|
|
681
676
|
readonly group: "feedback";
|
|
682
677
|
readonly file: "components/feedback.prop.ts";
|
package/dist/props/registry.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { COMPONENT_PROP_REGISTRY, PROP_ALIASES_FORBIDDEN, VOCABULARY_REGISTRY } from '../chunk-
|
|
1
|
+
export { COMPONENT_PROP_REGISTRY, PROP_ALIASES_FORBIDDEN, VOCABULARY_REGISTRY } from '../chunk-XQMPK4GM.js';
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Input } from './chunk-VOHTRR5X.js';
|
|
2
1
|
import { Command, CommandList, CommandItem, CommandGroup } from './chunk-HTEL5DQI.js';
|
|
2
|
+
import { Input } from './chunk-VOHTRR5X.js';
|
|
3
3
|
import { Button } from './chunk-M4PZNAMV.js';
|
|
4
4
|
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
5
5
|
import { useTranslation } from './chunk-RLGHEV4A.js';
|