@godxjp/ui 8.3.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-CLU46QR2.js → chunk-442ULAA6.js} +12 -4
- package/dist/{chunk-P4HFJQID.js → chunk-5D42MFB4.js} +54 -92
- package/dist/{chunk-PIQXAOWS.js → chunk-KXOAZGPA.js} +2 -2
- package/dist/{chunk-ZY5NUG4B.js → chunk-VN72SWHX.js} +17 -3
- package/dist/{chunk-6PA2YHRE.js → chunk-XQMPK4GM.js} +0 -15
- package/dist/components/admin/index.d.ts +5 -10
- package/dist/components/admin/index.js +13 -14
- package/dist/components/data-display/card.d.ts +2 -2
- package/dist/components/data-entry/command.d.ts +1 -1
- package/dist/components/data-entry/index.js +7 -7
- package/dist/components/data-entry/upload.js +3 -3
- 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/layout/index.d.ts +7 -6
- package/dist/components/layout/index.js +2 -2
- package/dist/components/navigation/index.d.ts +2 -2
- package/dist/components/navigation/index.js +2 -2
- package/dist/components/query/index.d.ts +2 -2
- package/dist/components/query/index.js +193 -4
- package/dist/components/ui/index.d.ts +2 -2
- package/dist/components/ui/index.js +12 -12
- package/dist/{feedback.prop-BR5JOpPl.d.ts → feedback.prop-Nc9Aa8SV.d.ts} +1 -3
- package/dist/{filter-bar-WjnQOs2C.d.ts → filter-bar-BycYH10i.d.ts} +2 -2
- package/dist/form/index.js +71 -3
- package/dist/index.d.ts +5 -14
- package/dist/index.js +18 -20
- package/dist/{inline-DqfYlGKj.d.ts → inline-DCqn4O29.d.ts} +2 -2
- package/dist/{layout.prop-Baq9muDN.d.ts → layout.prop-DwJKI6ka.d.ts} +2 -0
- package/dist/props/components/index.d.ts +3 -3
- package/dist/props/index.d.ts +3 -3
- package/dist/props/index.js +1 -1
- package/dist/props/registry.d.ts +0 -5
- package/dist/props/registry.js +1 -1
- package/dist/{query.prop-DuODxsiU.d.ts → query.prop-BDdz9L1G.d.ts} +1 -1
- package/package.json +4 -3
- package/dist/chunk-7WRZG2IG.js +0 -71
- package/dist/chunk-GLEEJYGQ.js +0 -193
- /package/dist/{chunk-HKD6ERY7.js → chunk-LDSLS6HE.js} +0 -0
|
@@ -4,7 +4,6 @@ import { Collapsible, CollapsibleTrigger, CollapsibleContent } from './chunk-DV5
|
|
|
4
4
|
import { densityClass, pageContainerVariantClass, Flex } from './chunk-TILFZBTE.js';
|
|
5
5
|
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
6
6
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
7
|
-
import { Link } from 'react-router-dom';
|
|
8
7
|
import { ChevronRight, ChevronDown, PanelLeftOpen, PanelLeftClose, Search, Bell, SlidersHorizontal } from 'lucide-react';
|
|
9
8
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
10
9
|
import * as React from 'react';
|
|
@@ -19,6 +18,7 @@ function PageContainerRoot({
|
|
|
19
18
|
extra,
|
|
20
19
|
footer,
|
|
21
20
|
breadcrumb,
|
|
21
|
+
linkComponent: LinkComponent = "a",
|
|
22
22
|
density = "default",
|
|
23
23
|
variant = "default",
|
|
24
24
|
stickyFooter = false,
|
|
@@ -40,7 +40,15 @@ function PageContainerRoot({
|
|
|
40
40
|
breadcrumb && breadcrumb.length > 0 && /* @__PURE__ */ jsx("nav", { "aria-label": "Breadcrumb", className: "ui-breadcrumb", children: /* @__PURE__ */ jsx("ol", { className: "ui-breadcrumb-list", children: breadcrumb.map((item, i) => {
|
|
41
41
|
const isLast = i === breadcrumb.length - 1;
|
|
42
42
|
return /* @__PURE__ */ jsxs("li", { className: "ui-inline-xs", children: [
|
|
43
|
-
item.to && !isLast ? /* @__PURE__ */ jsx(
|
|
43
|
+
item.to && !isLast ? /* @__PURE__ */ jsx(
|
|
44
|
+
LinkComponent,
|
|
45
|
+
{
|
|
46
|
+
href: item.to,
|
|
47
|
+
to: item.to,
|
|
48
|
+
className: "hover:text-foreground hover:underline",
|
|
49
|
+
children: item.label
|
|
50
|
+
}
|
|
51
|
+
) : /* @__PURE__ */ jsx(
|
|
44
52
|
"span",
|
|
45
53
|
{
|
|
46
54
|
className: isLast ? "text-foreground" : "",
|
|
@@ -101,11 +109,11 @@ function AppShell({
|
|
|
101
109
|
footer !== void 0 && /* @__PURE__ */ jsx("footer", { className: "app-footer", children: footer })
|
|
102
110
|
] });
|
|
103
111
|
}
|
|
104
|
-
function Breadcrumb({ items }) {
|
|
112
|
+
function Breadcrumb({ items, linkComponent: LinkComponent = "a" }) {
|
|
105
113
|
return /* @__PURE__ */ jsx("nav", { "aria-label": "Breadcrumb", className: "ui-breadcrumb", children: /* @__PURE__ */ jsx("ol", { className: "ui-breadcrumb-list", children: items.map((item, index) => {
|
|
106
114
|
const isLast = index === items.length - 1;
|
|
107
115
|
return /* @__PURE__ */ jsxs("li", { className: "ui-breadcrumb-item", children: [
|
|
108
|
-
item.to && !isLast ? /* @__PURE__ */ jsx(
|
|
116
|
+
item.to && !isLast ? /* @__PURE__ */ jsx(LinkComponent, { href: item.to, to: item.to, className: "ui-breadcrumb-link", children: item.label }) : /* @__PURE__ */ jsx("span", { className: "ui-breadcrumb-current", "aria-current": isLast ? "page" : void 0, children: item.label }),
|
|
109
117
|
!isLast ? /* @__PURE__ */ jsx(ChevronRight, { "aria-hidden": "true" }) : null
|
|
110
118
|
] }, item.to ?? index);
|
|
111
119
|
}) }) });
|
|
@@ -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,6 +1,6 @@
|
|
|
1
|
-
import { Slider } from './chunk-CRERCLIZ.js';
|
|
2
1
|
import { formatBytes } from './chunk-4R7QL3MW.js';
|
|
3
|
-
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from './chunk-
|
|
2
|
+
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from './chunk-5D42MFB4.js';
|
|
3
|
+
import { Slider } from './chunk-CRERCLIZ.js';
|
|
4
4
|
import { Button } from './chunk-M4PZNAMV.js';
|
|
5
5
|
import { controlIconClass } from './chunk-IBK5D2Q6.js';
|
|
6
6
|
import { useTranslation } from './chunk-RLGHEV4A.js';
|
|
@@ -5,7 +5,6 @@ import { APP_DATE_FORMAT_OPTIONS, getDateFormatLabel } from './chunk-FXFJF4YA.js
|
|
|
5
5
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
6
6
|
import { X, ChevronRight, Languages, Globe, Clock, CalendarDays } from 'lucide-react';
|
|
7
7
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
8
|
-
import { Link } from 'react-router-dom';
|
|
9
8
|
import * as React from 'react';
|
|
10
9
|
|
|
11
10
|
function Toolbar({ onClear, hasActiveFilters = true, className, children }) {
|
|
@@ -26,12 +25,27 @@ function ToolbarGroup({ label, className, children }) {
|
|
|
26
25
|
}
|
|
27
26
|
var FilterBar = Toolbar;
|
|
28
27
|
var FilterGroup = ToolbarGroup;
|
|
29
|
-
function PageHeader({
|
|
28
|
+
function PageHeader({
|
|
29
|
+
title,
|
|
30
|
+
description,
|
|
31
|
+
breadcrumb,
|
|
32
|
+
actions,
|
|
33
|
+
linkComponent: LinkComponent = "a",
|
|
34
|
+
className
|
|
35
|
+
}) {
|
|
30
36
|
return /* @__PURE__ */ jsxs("header", { className: cn("ui-page-header", className), children: [
|
|
31
37
|
breadcrumb && breadcrumb.length > 0 && /* @__PURE__ */ jsx("nav", { "aria-label": "Breadcrumb", className: "ui-breadcrumb", children: /* @__PURE__ */ jsx("ol", { className: "ui-breadcrumb-list", children: breadcrumb.map((item, i) => {
|
|
32
38
|
const isLast = i === breadcrumb.length - 1;
|
|
33
39
|
return /* @__PURE__ */ jsxs("li", { className: "ui-inline-xs", children: [
|
|
34
|
-
item.to && !isLast ? /* @__PURE__ */ jsx(
|
|
40
|
+
item.to && !isLast ? /* @__PURE__ */ jsx(
|
|
41
|
+
LinkComponent,
|
|
42
|
+
{
|
|
43
|
+
href: item.to,
|
|
44
|
+
to: item.to,
|
|
45
|
+
className: "hover:text-foreground hover:underline",
|
|
46
|
+
children: item.label
|
|
47
|
+
}
|
|
48
|
+
) : /* @__PURE__ */ jsx(
|
|
35
49
|
"span",
|
|
36
50
|
{
|
|
37
51
|
className: isLast ? "text-foreground" : "",
|
|
@@ -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",
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
export { B as BreadcrumbItem } from '../../navigation.prop-BKlxd-j7.js';
|
|
2
|
-
export { c as FlexProp, I as InlineProp, P as PageContainerProp, P as PageContainerProps, d as PageHeaderProp, i as StackProp } from '../../layout.prop-
|
|
3
|
-
export { F as FilterBar, a as FilterGroup, P as PageHeader, T as Toolbar, b as ToolbarGroup } from '../../filter-bar-
|
|
4
|
-
export { F as Flex, I as Inline, P as PageContainer, S as Stack } from '../../inline-
|
|
2
|
+
export { c as FlexProp, I as InlineProp, P as PageContainerProp, P as PageContainerProps, d as PageHeaderProp, i as StackProp } from '../../layout.prop-DwJKI6ka.js';
|
|
3
|
+
export { F as FilterBar, a as FilterGroup, P as PageHeader, T as Toolbar, b as ToolbarGroup } from '../../filter-bar-BycYH10i.js';
|
|
4
|
+
export { F as Flex, I as Inline, P as PageContainer, S as Stack } from '../../inline-DCqn4O29.js';
|
|
5
5
|
export { C as ColumnDef, D as DataTable, a as Density, b as Descriptions, E as EmptyState } from '../../data-table-B_q7j992.js';
|
|
6
6
|
export { Badge } from '../data-display/badge.js';
|
|
7
7
|
export { C as ChoiceField, F as Field, a as FormField, S as SearchInput } from '../../search-input-cezAxpgb.js';
|
|
8
8
|
export { a as SkeletonCard, b as SkeletonDetail, d as SkeletonRows, e as SkeletonStat, f as SkeletonTable } from '../../skeleton-uWAjSacg.js';
|
|
9
|
-
export { AlertMutationFeedback, ButtonRefetch, DataState, InfiniteQueryState, MutationFeedback, PrefetchLink, QueryRefetchButton, flattenItemPages } from '../query/index.js';
|
|
10
9
|
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../feedback/alert.js';
|
|
11
10
|
export { Upload, useUploadDraft } from '../data-entry/upload.js';
|
|
12
11
|
export { Cascader } from '../data-entry/cascader.js';
|
|
@@ -15,7 +14,7 @@ export { Transfer } from '../data-entry/transfer.js';
|
|
|
15
14
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../navigation/tabs.js';
|
|
16
15
|
export { Pagination } from '../navigation/pagination.js';
|
|
17
16
|
export { Steps } from '../navigation/steps.js';
|
|
18
|
-
export { AlertDialog, Dialog,
|
|
17
|
+
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../feedback/dialog.js';
|
|
19
18
|
export { Toaster } from '../feedback/sonner.js';
|
|
20
19
|
export { L as LegacyToastOptions, t as toast, u as useToast } from '../../use-toast-Dsw3yE2S.js';
|
|
21
20
|
export { useDebouncedValue, useTimeoutFlag } from '../../lib/hooks.js';
|
|
@@ -33,11 +32,7 @@ import '../../interaction.prop-DSFizzP6.js';
|
|
|
33
32
|
import '../../data-display.prop-Cf2p9QC4.js';
|
|
34
33
|
import 'class-variance-authority/types';
|
|
35
34
|
import 'class-variance-authority';
|
|
36
|
-
import '../../
|
|
37
|
-
import '@tanstack/react-query';
|
|
38
|
-
import 'react-router-dom';
|
|
39
|
-
import '../../general.prop-DoHDCRmL.js';
|
|
40
|
-
import '../../feedback.prop-BR5JOpPl.js';
|
|
35
|
+
import '../../feedback.prop-Nc9Aa8SV.js';
|
|
41
36
|
import '@radix-ui/react-checkbox';
|
|
42
37
|
import '@radix-ui/react-radio-group';
|
|
43
38
|
import '@radix-ui/react-slider';
|
|
@@ -1,33 +1,32 @@
|
|
|
1
|
-
import '../../chunk-
|
|
2
|
-
export { FilterBar, FilterGroup, PageHeader, Toolbar, ToolbarGroup } from '../../chunk-
|
|
3
|
-
import '../../chunk-HL3G4SVG.js';
|
|
1
|
+
import '../../chunk-LDSLS6HE.js';
|
|
2
|
+
export { FilterBar, FilterGroup, PageHeader, Toolbar, ToolbarGroup } from '../../chunk-VN72SWHX.js';
|
|
4
3
|
import '../../chunk-B73NA66T.js';
|
|
5
4
|
import '../../chunk-WGWI7EGL.js';
|
|
6
5
|
export { Pagination } from '../../chunk-56NYZNVY.js';
|
|
7
6
|
export { Steps } from '../../chunk-OJZ6C2HM.js';
|
|
8
7
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
9
|
-
export {
|
|
8
|
+
export { toast, useToast } from '../../chunk-B3WX53JQ.js';
|
|
9
|
+
export { SkeletonCard, SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-AINW5WYN.js';
|
|
10
|
+
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
11
|
+
export { PageContainer, Stack } from '../../chunk-442ULAA6.js';
|
|
10
12
|
import '../../chunk-FRU44GA2.js';
|
|
11
13
|
import '../../chunk-TO33OY4L.js';
|
|
14
|
+
import '../../chunk-32WO3YLB.js';
|
|
12
15
|
import '../../chunk-W4REF4TD.js';
|
|
13
|
-
|
|
16
|
+
import '../../chunk-HL3G4SVG.js';
|
|
17
|
+
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-ZRRLOOBX.js';
|
|
14
18
|
export { SearchInput, Transfer } from '../../chunk-INSF6K3Y.js';
|
|
15
19
|
export { TreeSelect } from '../../chunk-6J7GRCDA.js';
|
|
16
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
20
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-KXOAZGPA.js';
|
|
21
|
+
export { formatBytes, formatCurrency, formatDateLong, formatDateTime, formatRelative, humanError, shortId } from '../../chunk-4R7QL3MW.js';
|
|
22
|
+
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../../chunk-5D42MFB4.js';
|
|
17
23
|
import '../../chunk-CAEL2ZD2.js';
|
|
18
24
|
import '../../chunk-CRERCLIZ.js';
|
|
25
|
+
import '../../chunk-KDBGFJJI.js';
|
|
19
26
|
export { Cascader } from '../../chunk-HB2OHB5X.js';
|
|
20
27
|
import '../../chunk-SMLKNECP.js';
|
|
21
28
|
import '../../chunk-O24Z3ULJ.js';
|
|
22
29
|
export { ChoiceField, Field } from '../../chunk-26CPAKUP.js';
|
|
23
|
-
export { toast, useToast } from '../../chunk-B3WX53JQ.js';
|
|
24
|
-
export { SkeletonCard, SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-AINW5WYN.js';
|
|
25
|
-
import '../../chunk-32WO3YLB.js';
|
|
26
|
-
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-ZRRLOOBX.js';
|
|
27
|
-
export { formatBytes, formatCurrency, formatDateLong, formatDateTime, formatRelative, humanError, shortId } from '../../chunk-4R7QL3MW.js';
|
|
28
|
-
export { AlertDialog, Dialog, DialogConfirm, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../../chunk-P4HFJQID.js';
|
|
29
|
-
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
30
|
-
import '../../chunk-KDBGFJJI.js';
|
|
31
30
|
import '../../chunk-HTEL5DQI.js';
|
|
32
31
|
import '../../chunk-VOHTRR5X.js';
|
|
33
32
|
export { DataTable, Descriptions, EmptyState } from '../../chunk-JBHXILI4.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?: "default" | "compact" | 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?: "default" | "compact" | null | undefined;
|
|
24
24
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & {
|
|
25
25
|
size?: CardSize;
|
|
26
26
|
accent?: CardAccent;
|
|
@@ -21,7 +21,7 @@ declare const CommandInput: React.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<
|
|
|
21
21
|
ref?: React.Ref<HTMLInputElement>;
|
|
22
22
|
} & {
|
|
23
23
|
asChild?: boolean;
|
|
24
|
-
}, "key" | "asChild" | keyof React.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "
|
|
24
|
+
}, "key" | "asChild" | keyof React.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "value" | "type"> & {
|
|
25
25
|
value?: string;
|
|
26
26
|
onValueChange?: (search: string) => void;
|
|
27
27
|
} & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1,28 +1,28 @@
|
|
|
1
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 { Textarea } from '../../chunk-EOTOCNT7.js';
|
|
3
4
|
export { TimeInput } from '../../chunk-QLMXEJSY.js';
|
|
4
5
|
export { TimePicker } from '../../chunk-6YBYAEXD.js';
|
|
6
|
+
export { DateRangePicker } from '../../chunk-N3JPLJ3B.js';
|
|
5
7
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-25RYBC5T.js';
|
|
6
8
|
export { Switch } from '../../chunk-R2W2FX5Q.js';
|
|
7
|
-
export {
|
|
9
|
+
export { Autocomplete } from '../../chunk-GKXPALFT.js';
|
|
8
10
|
export { ColorPicker } from '../../chunk-3TS3G4U3.js';
|
|
9
11
|
export { Combobox } from '../../chunk-JKHWLPM5.js';
|
|
10
12
|
export { DatePicker } from '../../chunk-LJLGABFV.js';
|
|
11
|
-
export { DateRangePicker } from '../../chunk-N3JPLJ3B.js';
|
|
12
13
|
export { Calendar } from '../../chunk-IOGU3ZWF.js';
|
|
13
|
-
export { Autocomplete } from '../../chunk-GKXPALFT.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
|
+
import '../../chunk-4R7QL3MW.js';
|
|
18
|
+
import '../../chunk-5D42MFB4.js';
|
|
17
19
|
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-CAEL2ZD2.js';
|
|
18
20
|
export { Slider } from '../../chunk-CRERCLIZ.js';
|
|
21
|
+
export { SearchSelect } from '../../chunk-KDBGFJJI.js';
|
|
19
22
|
export { Cascader } from '../../chunk-HB2OHB5X.js';
|
|
20
23
|
import '../../chunk-SMLKNECP.js';
|
|
21
24
|
export { Checkbox, CheckboxGroup } from '../../chunk-O24Z3ULJ.js';
|
|
22
25
|
export { ChoiceField, Field } from '../../chunk-26CPAKUP.js';
|
|
23
|
-
import '../../chunk-4R7QL3MW.js';
|
|
24
|
-
import '../../chunk-P4HFJQID.js';
|
|
25
|
-
export { SearchSelect } from '../../chunk-KDBGFJJI.js';
|
|
26
26
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-HTEL5DQI.js';
|
|
27
27
|
export { Input } from '../../chunk-VOHTRR5X.js';
|
|
28
28
|
import '../../chunk-TILFZBTE.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
2
|
-
import '../../chunk-CRERCLIZ.js';
|
|
1
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-KXOAZGPA.js';
|
|
3
2
|
import '../../chunk-4R7QL3MW.js';
|
|
4
|
-
import '../../chunk-
|
|
3
|
+
import '../../chunk-5D42MFB4.js';
|
|
4
|
+
import '../../chunk-CRERCLIZ.js';
|
|
5
5
|
import '../../chunk-VOHTRR5X.js';
|
|
6
6
|
import '../../chunk-M4PZNAMV.js';
|
|
7
7
|
import '../../chunk-IBK5D2Q6.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 { Toaster } from '../../chunk-TO7URV7U.js';
|
|
5
6
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
6
7
|
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-ZRRLOOBX.js';
|
|
7
8
|
import '../../chunk-4R7QL3MW.js';
|
|
8
|
-
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose,
|
|
9
|
-
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
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,12 +1,12 @@
|
|
|
1
|
-
export { F as Flex, I as Inline, P as PageContainer, S as Stack } from '../../inline-
|
|
1
|
+
export { F as Flex, I as Inline, P as PageContainer, S as Stack } from '../../inline-DCqn4O29.js';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
-
import { e as PageInsetProp, A as AppShellProp, g as SidebarProp, k as TopbarProp, R as ResponsiveGridColumnsProp } from '../../layout.prop-
|
|
4
|
-
export { F as FlexAlignProp, a as FlexDirectionProp, b as FlexJustifyProp, c as FlexProp, c as FlexProps, I as InlineProp, I as InlineProps, P as PageContainerProp, P as PageContainerProps, S as SidebarItem, f as SidebarProduct, h as SidebarSection, i as StackProp, i as StackProps, T as TopbarProduct, j as TopbarProject } from '../../layout.prop-
|
|
3
|
+
import { e as PageInsetProp, A as AppShellProp, g as SidebarProp, k as TopbarProp, R as ResponsiveGridColumnsProp } from '../../layout.prop-DwJKI6ka.js';
|
|
4
|
+
export { F as FlexAlignProp, a as FlexDirectionProp, b as FlexJustifyProp, c as FlexProp, c as FlexProps, I as InlineProp, I as InlineProps, P as PageContainerProp, P as PageContainerProps, S as SidebarItem, f as SidebarProduct, h as SidebarSection, i as StackProp, i as StackProps, T as TopbarProduct, j as TopbarProject } from '../../layout.prop-DwJKI6ka.js';
|
|
5
5
|
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from './resizable.js';
|
|
6
|
+
import * as React from 'react';
|
|
7
|
+
import { ElementType, ReactNode } from 'react';
|
|
6
8
|
import { a as BreadcrumbProp } from '../../navigation.prop-BKlxd-j7.js';
|
|
7
9
|
export { B as BreadcrumbItem, B as BreadcrumbItemProp } from '../../navigation.prop-BKlxd-j7.js';
|
|
8
|
-
import * as React from 'react';
|
|
9
|
-
import { ReactNode } from 'react';
|
|
10
10
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
11
11
|
export { A as AspectRatio } from '../../aspect-ratio-DGoYrOry.js';
|
|
12
12
|
import '../../shared.prop-BsNSXeqD.js';
|
|
@@ -22,8 +22,9 @@ declare function AppShell({ sidebar, topbar, topbarLeft, topbarRight, logo, brea
|
|
|
22
22
|
|
|
23
23
|
type BreadcrumbProps = {
|
|
24
24
|
items: BreadcrumbProp;
|
|
25
|
+
linkComponent?: ElementType;
|
|
25
26
|
};
|
|
26
|
-
declare function Breadcrumb({ items }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
|
|
27
|
+
declare function Breadcrumb({ items, linkComponent: LinkComponent }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
|
|
27
28
|
|
|
28
29
|
declare function Sidebar({ activeId, onSelect, sections, product, onProductClick, brand, collapsed, footer, }: SidebarProp): react_jsx_runtime.JSX.Element;
|
|
29
30
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { AppShell, Breadcrumb, PageContainer, PageInset, ResponsiveGrid, Separator, Sidebar, SplitPane, Stack, Topbar } from '../../chunk-
|
|
1
|
+
export { AppShell, Breadcrumb, PageContainer, PageInset, ResponsiveGrid, Separator, Sidebar, SplitPane, Stack, Topbar } from '../../chunk-442ULAA6.js';
|
|
2
2
|
export { AspectRatio } from '../../chunk-FRU44GA2.js';
|
|
3
3
|
import '../../chunk-TO33OY4L.js';
|
|
4
|
-
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../../chunk-W4REF4TD.js';
|
|
5
4
|
import '../../chunk-32WO3YLB.js';
|
|
5
|
+
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../../chunk-W4REF4TD.js';
|
|
6
6
|
import '../../chunk-DV52WNXO.js';
|
|
7
7
|
export { Flex, Inline } from '../../chunk-TILFZBTE.js';
|
|
8
8
|
import '../../chunk-DY5C44UP.js';
|