@godxjp/ui 9.1.0 → 9.2.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/app/index.d.ts +1 -1
- package/dist/{app.prop-DnIXFzLi.d.ts → app.prop-UTc4j4nj.d.ts} +5 -0
- package/dist/aspect-ratio-CZZJd9Km.d.ts +9 -0
- package/dist/{chunk-442ULAA6.js → chunk-26WDEDWL.js} +112 -41
- package/dist/{chunk-56NYZNVY.js → chunk-6HQMUUQW.js} +122 -43
- package/dist/{chunk-VN72SWHX.js → chunk-6MCI7W5G.js} +14 -2
- package/dist/{chunk-5D42MFB4.js → chunk-FVPCVZL3.js} +71 -2
- package/dist/{chunk-KXOAZGPA.js → chunk-G6Q32VHO.js} +2 -2
- package/dist/chunk-QWLXN6CT.js +162 -0
- package/dist/{chunk-FRU44GA2.js → chunk-XK3M3VRR.js} +16 -2
- package/dist/components/admin/index.d.ts +3 -3
- package/dist/components/admin/index.js +19 -19
- package/dist/components/data-display/card.d.ts +2 -2
- package/dist/components/data-display/index.js +2 -2
- package/dist/components/data-entry/cascader.js +1 -1
- package/dist/components/data-entry/index.d.ts +1 -1
- package/dist/components/data-entry/index.js +12 -12
- package/dist/components/data-entry/transfer.js +2 -2
- package/dist/components/data-entry/tree-select.js +1 -1
- package/dist/components/data-entry/upload.js +4 -4
- package/dist/components/feedback/alert.js +2 -2
- package/dist/components/feedback/dialog.d.ts +20 -1
- package/dist/components/feedback/dialog.js +2 -2
- package/dist/components/feedback/index.d.ts +9 -17
- package/dist/components/feedback/index.js +6 -6
- package/dist/components/layout/index.d.ts +25 -10
- package/dist/components/layout/index.js +3 -3
- package/dist/components/navigation/index.d.ts +5 -5
- package/dist/components/navigation/index.js +3 -3
- package/dist/components/navigation/pagination.d.ts +20 -2
- package/dist/components/navigation/pagination.js +1 -1
- package/dist/components/query/index.js +2 -2
- package/dist/components/ui/index.d.ts +9 -6
- package/dist/components/ui/index.js +18 -17
- package/dist/{filter-bar-BycYH10i.d.ts → filter-bar-B5TPUqEO.d.ts} +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +26 -26
- package/dist/{inline-DCqn4O29.d.ts → inline-CDSVAN54.d.ts} +1 -1
- package/dist/{layout.prop-DwJKI6ka.d.ts → layout.prop-JE2TcRyL.d.ts} +8 -2
- package/dist/{toggle-group-BulJgKh3.d.ts → password-strength-kQkloEeo.d.ts} +22 -1
- package/dist/props/components/index.d.ts +2 -2
- package/dist/props/index.d.ts +2 -2
- package/dist/styles/data-entry-layout.css +71 -0
- package/dist/styles/layout.css +48 -0
- package/dist/tooltip-Bf2KjRy8.d.ts +14 -0
- package/package.json +2 -1
- package/dist/aspect-ratio-DGoYrOry.d.ts +0 -6
- package/dist/chunk-FYM3MJSK.js +0 -59
- package/dist/{chunk-INSF6K3Y.js → chunk-457KVJTX.js} +1 -1
- package/dist/{chunk-ZRRLOOBX.js → chunk-E7HBHUJY.js} +1 -1
- package/dist/{chunk-6YK3IJXW.js → chunk-ETLAI3QU.js} +0 -0
- package/dist/{chunk-JBHXILI4.js → chunk-S6TBIL7J.js} +1 -1
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
import { cn } from './chunk-U7N2A7A3.js';
|
|
2
|
+
import * as React2 from 'react';
|
|
3
|
+
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
4
|
+
import { cva } from 'class-variance-authority';
|
|
5
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
6
|
+
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
7
|
+
import { Check, X } from 'lucide-react';
|
|
8
|
+
|
|
9
|
+
var toggleVariants = cva("ui-toggle", {
|
|
10
|
+
variants: {
|
|
11
|
+
variant: {
|
|
12
|
+
default: "ui-toggle-default",
|
|
13
|
+
outline: "ui-toggle-outline"
|
|
14
|
+
},
|
|
15
|
+
size: {
|
|
16
|
+
sm: "ui-toggle-sm",
|
|
17
|
+
default: "ui-toggle-default-size",
|
|
18
|
+
lg: "ui-toggle-lg"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
defaultVariants: {
|
|
22
|
+
variant: "default",
|
|
23
|
+
size: "default"
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
var Toggle = React2.forwardRef(({ className, variant, size, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
27
|
+
TogglePrimitive.Root,
|
|
28
|
+
{
|
|
29
|
+
ref,
|
|
30
|
+
"data-slot": "toggle",
|
|
31
|
+
className: cn(toggleVariants({ variant, size }), className),
|
|
32
|
+
...props
|
|
33
|
+
}
|
|
34
|
+
));
|
|
35
|
+
Toggle.displayName = TogglePrimitive.Root.displayName;
|
|
36
|
+
var ToggleGroup = React2.forwardRef(({ className, variant = "default", size = "default", children, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
37
|
+
ToggleGroupPrimitive.Root,
|
|
38
|
+
{
|
|
39
|
+
ref,
|
|
40
|
+
"data-slot": "toggle-group",
|
|
41
|
+
"data-variant": variant,
|
|
42
|
+
"data-size": size,
|
|
43
|
+
className: cn("ui-toggle-group", className),
|
|
44
|
+
...props,
|
|
45
|
+
children
|
|
46
|
+
}
|
|
47
|
+
));
|
|
48
|
+
ToggleGroup.displayName = ToggleGroupPrimitive.Root.displayName;
|
|
49
|
+
var ToggleGroupItem = React2.forwardRef(({ className, variant, size, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
50
|
+
ToggleGroupPrimitive.Item,
|
|
51
|
+
{
|
|
52
|
+
ref,
|
|
53
|
+
"data-slot": "toggle-group-item",
|
|
54
|
+
className: cn(toggleVariants({ variant, size }), className),
|
|
55
|
+
...props
|
|
56
|
+
}
|
|
57
|
+
));
|
|
58
|
+
ToggleGroupItem.displayName = ToggleGroupPrimitive.Item.displayName;
|
|
59
|
+
var DEFAULT_PASSWORD_RULES = ["length", "upper", "lower", "number", "symbol"];
|
|
60
|
+
var DEFAULT_LABELS = {
|
|
61
|
+
weak: "Weak",
|
|
62
|
+
fair: "Fair",
|
|
63
|
+
strong: "Strong"
|
|
64
|
+
};
|
|
65
|
+
function usePasswordStrength(value, rules = [...DEFAULT_PASSWORD_RULES]) {
|
|
66
|
+
const uniqueRules = [...new Set(rules)];
|
|
67
|
+
const checks = {
|
|
68
|
+
length: value.length >= 8,
|
|
69
|
+
upper: /[A-Z]/.test(value),
|
|
70
|
+
lower: /[a-z]/.test(value),
|
|
71
|
+
number: /\d/.test(value),
|
|
72
|
+
symbol: /[^A-Za-z0-9]/.test(value)
|
|
73
|
+
};
|
|
74
|
+
const passed = uniqueRules.filter((rule) => checks[rule]).length;
|
|
75
|
+
const score = Math.max(0, Math.min(4, passed));
|
|
76
|
+
return { score, checks };
|
|
77
|
+
}
|
|
78
|
+
function scoreTone(score) {
|
|
79
|
+
if (score <= 1) return "destructive";
|
|
80
|
+
if (score <= 3) return "warning";
|
|
81
|
+
return "success";
|
|
82
|
+
}
|
|
83
|
+
function scoreLabel(score, labels) {
|
|
84
|
+
if (score <= 1) return labels.weak;
|
|
85
|
+
if (score <= 3) return labels.fair;
|
|
86
|
+
return labels.strong;
|
|
87
|
+
}
|
|
88
|
+
function PasswordStrength({
|
|
89
|
+
value,
|
|
90
|
+
rules = [...DEFAULT_PASSWORD_RULES],
|
|
91
|
+
showChecklist = true,
|
|
92
|
+
labels = DEFAULT_LABELS
|
|
93
|
+
}) {
|
|
94
|
+
const normalizedRules = [...new Set(rules)];
|
|
95
|
+
const { score, checks } = usePasswordStrength(value, normalizedRules);
|
|
96
|
+
const tone = scoreTone(score);
|
|
97
|
+
const segments = Array.from({ length: 5 });
|
|
98
|
+
return /* @__PURE__ */ jsxs("div", { className: "ui-password-strength", children: [
|
|
99
|
+
/* @__PURE__ */ jsx(
|
|
100
|
+
"div",
|
|
101
|
+
{
|
|
102
|
+
className: "ui-password-strength-track",
|
|
103
|
+
role: "img",
|
|
104
|
+
"aria-label": `Password strength ${score}/4`,
|
|
105
|
+
children: segments.map((_, index) => {
|
|
106
|
+
const filled = index < score + 1;
|
|
107
|
+
return /* @__PURE__ */ jsx(
|
|
108
|
+
"span",
|
|
109
|
+
{
|
|
110
|
+
className: "ui-password-strength-segment",
|
|
111
|
+
"data-tone": filled ? tone : void 0,
|
|
112
|
+
"data-state": filled ? "filled" : "empty",
|
|
113
|
+
"aria-hidden": "true"
|
|
114
|
+
},
|
|
115
|
+
index
|
|
116
|
+
);
|
|
117
|
+
})
|
|
118
|
+
}
|
|
119
|
+
),
|
|
120
|
+
/* @__PURE__ */ jsxs("div", { className: "ui-password-strength-meta", children: [
|
|
121
|
+
/* @__PURE__ */ jsx("span", { className: "ui-password-strength-label", children: scoreLabel(score, labels) }),
|
|
122
|
+
/* @__PURE__ */ jsxs("span", { className: "ui-password-strength-score", "aria-hidden": "true", children: [
|
|
123
|
+
score,
|
|
124
|
+
"/4"
|
|
125
|
+
] })
|
|
126
|
+
] }),
|
|
127
|
+
showChecklist ? /* @__PURE__ */ jsx("ul", { className: "ui-password-strength-checklist", children: normalizedRules.map((rule) => /* @__PURE__ */ jsxs(
|
|
128
|
+
"li",
|
|
129
|
+
{
|
|
130
|
+
className: "ui-password-strength-checklist-item",
|
|
131
|
+
"data-state": checks[rule] ? "passed" : "failed",
|
|
132
|
+
children: [
|
|
133
|
+
checks[rule] ? /* @__PURE__ */ jsx(Check, { "aria-hidden": "true" }) : /* @__PURE__ */ jsx(X, { "aria-hidden": "true" }),
|
|
134
|
+
/* @__PURE__ */ jsx("span", { children: labelForRule(rule) })
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
rule
|
|
138
|
+
)) }) : null,
|
|
139
|
+
/* @__PURE__ */ jsxs("span", { className: "sr-only", "aria-live": "polite", children: [
|
|
140
|
+
scoreLabel(score, labels),
|
|
141
|
+
" password strength"
|
|
142
|
+
] })
|
|
143
|
+
] });
|
|
144
|
+
}
|
|
145
|
+
function labelForRule(rule) {
|
|
146
|
+
switch (rule) {
|
|
147
|
+
case "length":
|
|
148
|
+
return "8+ characters";
|
|
149
|
+
case "upper":
|
|
150
|
+
return "Contains uppercase letter";
|
|
151
|
+
case "lower":
|
|
152
|
+
return "Contains lowercase letter";
|
|
153
|
+
case "number":
|
|
154
|
+
return "Contains number";
|
|
155
|
+
case "symbol":
|
|
156
|
+
return "Contains symbol";
|
|
157
|
+
default:
|
|
158
|
+
return rule;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export { PasswordStrength, Toggle, ToggleGroup, ToggleGroupItem, toggleVariants, usePasswordStrength };
|
|
@@ -1,8 +1,22 @@
|
|
|
1
1
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
-
import * as
|
|
3
|
+
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
4
4
|
import { jsx } from 'react/jsx-runtime';
|
|
5
|
+
import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
|
|
5
6
|
|
|
7
|
+
var Separator = React.forwardRef(({ className, orientation = "horizontal", decorative = true, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
8
|
+
SeparatorPrimitive.Root,
|
|
9
|
+
{
|
|
10
|
+
ref,
|
|
11
|
+
"data-slot": "separator",
|
|
12
|
+
"data-orientation": orientation,
|
|
13
|
+
orientation,
|
|
14
|
+
decorative,
|
|
15
|
+
className: cn("ui-separator", className),
|
|
16
|
+
...props
|
|
17
|
+
}
|
|
18
|
+
));
|
|
19
|
+
Separator.displayName = SeparatorPrimitive.Root.displayName;
|
|
6
20
|
var AspectRatio = React.forwardRef(({ className, ratio = 16 / 9, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
7
21
|
AspectRatioPrimitive.Root,
|
|
8
22
|
{
|
|
@@ -15,4 +29,4 @@ var AspectRatio = React.forwardRef(({ className, ratio = 16 / 9, ...props }, ref
|
|
|
15
29
|
));
|
|
16
30
|
AspectRatio.displayName = AspectRatioPrimitive.Root.displayName;
|
|
17
31
|
|
|
18
|
-
export { AspectRatio };
|
|
32
|
+
export { AspectRatio, Separator };
|
|
@@ -1,7 +1,7 @@
|
|
|
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,
|
|
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, j as StackProp } from '../../layout.prop-JE2TcRyL.js';
|
|
3
|
+
export { F as FilterBar, a as FilterGroup, P as PageHeader, T as Toolbar, b as ToolbarGroup } from '../../filter-bar-B5TPUqEO.js';
|
|
4
|
+
export { F as Flex, I as Inline, P as PageContainer, S as Stack } from '../../inline-CDSVAN54.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';
|
|
@@ -1,25 +1,14 @@
|
|
|
1
1
|
import '../../chunk-LDSLS6HE.js';
|
|
2
|
-
export { FilterBar, FilterGroup, PageHeader, Toolbar, ToolbarGroup } from '../../chunk-
|
|
2
|
+
export { FilterBar, FilterGroup, PageHeader, Toolbar, ToolbarGroup } from '../../chunk-6MCI7W5G.js';
|
|
3
3
|
import '../../chunk-B73NA66T.js';
|
|
4
4
|
import '../../chunk-WGWI7EGL.js';
|
|
5
|
-
export { Pagination } from '../../chunk-
|
|
5
|
+
export { Pagination } from '../../chunk-6HQMUUQW.js';
|
|
6
6
|
export { Steps } from '../../chunk-OJZ6C2HM.js';
|
|
7
7
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
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';
|
|
12
|
-
import '../../chunk-FRU44GA2.js';
|
|
13
|
-
import '../../chunk-TO33OY4L.js';
|
|
14
|
-
import '../../chunk-32WO3YLB.js';
|
|
15
|
-
import '../../chunk-W4REF4TD.js';
|
|
16
8
|
import '../../chunk-HL3G4SVG.js';
|
|
17
|
-
export {
|
|
18
|
-
export { SearchInput, Transfer } from '../../chunk-INSF6K3Y.js';
|
|
9
|
+
export { SearchInput, Transfer } from '../../chunk-457KVJTX.js';
|
|
19
10
|
export { TreeSelect } from '../../chunk-6J7GRCDA.js';
|
|
20
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
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';
|
|
11
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-G6Q32VHO.js';
|
|
23
12
|
import '../../chunk-CAEL2ZD2.js';
|
|
24
13
|
import '../../chunk-CRERCLIZ.js';
|
|
25
14
|
import '../../chunk-KDBGFJJI.js';
|
|
@@ -28,19 +17,30 @@ import '../../chunk-SMLKNECP.js';
|
|
|
28
17
|
import '../../chunk-O24Z3ULJ.js';
|
|
29
18
|
export { ChoiceField, Field } from '../../chunk-26CPAKUP.js';
|
|
30
19
|
import '../../chunk-HTEL5DQI.js';
|
|
20
|
+
export { toast, useToast } from '../../chunk-B3WX53JQ.js';
|
|
21
|
+
export { SkeletonCard, SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-AINW5WYN.js';
|
|
22
|
+
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-E7HBHUJY.js';
|
|
23
|
+
export { formatBytes, formatCurrency, formatDateLong, formatDateTime, formatRelative, humanError, shortId } from '../../chunk-4R7QL3MW.js';
|
|
24
|
+
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../../chunk-FVPCVZL3.js';
|
|
31
25
|
import '../../chunk-VOHTRR5X.js';
|
|
32
|
-
export {
|
|
26
|
+
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
27
|
+
export { PageContainer, Stack } from '../../chunk-26WDEDWL.js';
|
|
28
|
+
import '../../chunk-XK3M3VRR.js';
|
|
29
|
+
import '../../chunk-TO33OY4L.js';
|
|
30
|
+
import '../../chunk-W4REF4TD.js';
|
|
31
|
+
import '../../chunk-32WO3YLB.js';
|
|
32
|
+
export { DataTable, Descriptions, EmptyState } from '../../chunk-S6TBIL7J.js';
|
|
33
|
+
import '../../chunk-M4PZNAMV.js';
|
|
33
34
|
import '../../chunk-DV52WNXO.js';
|
|
34
35
|
export { Flex, Inline } from '../../chunk-TILFZBTE.js';
|
|
35
|
-
import '../../chunk-M4PZNAMV.js';
|
|
36
36
|
export { Badge } from '../../chunk-UIYEAUWA.js';
|
|
37
37
|
import '../../chunk-DY5C44UP.js';
|
|
38
38
|
import '../../chunk-3KPEZ5CF.js';
|
|
39
39
|
import '../../chunk-4MMIMZMK.js';
|
|
40
40
|
import '../../chunk-IBK5D2Q6.js';
|
|
41
|
-
export { FormField } from '../../chunk-F7PG4OEV.js';
|
|
42
|
-
import '../../chunk-7PWBC4BY.js';
|
|
43
41
|
import '../../chunk-RLGHEV4A.js';
|
|
44
42
|
export { formatDate } from '../../chunk-FXFJF4YA.js';
|
|
43
|
+
export { FormField } from '../../chunk-F7PG4OEV.js';
|
|
44
|
+
import '../../chunk-7PWBC4BY.js';
|
|
45
45
|
export { useDebouncedValue, useTimeoutFlag } from '../../chunk-LFW37FGG.js';
|
|
46
46
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -11,7 +11,7 @@ type CardVariant = "default" | "muted" | "outline" | "featured";
|
|
|
11
11
|
/** Padding density — base 16px · tight 12px · cozy 20px. */
|
|
12
12
|
type CardDensity = "tight" | "cozy";
|
|
13
13
|
declare const cardVariants: (props?: ({
|
|
14
|
-
size?: "
|
|
14
|
+
size?: "compact" | "default" | null | undefined;
|
|
15
15
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
16
16
|
type CardProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof cardVariants> & {
|
|
17
17
|
size?: CardSize;
|
|
@@ -20,7 +20,7 @@ type CardProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof card
|
|
|
20
20
|
density?: CardDensity;
|
|
21
21
|
};
|
|
22
22
|
declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
23
|
-
size?: "
|
|
23
|
+
size?: "compact" | "default" | null | undefined;
|
|
24
24
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & {
|
|
25
25
|
size?: CardSize;
|
|
26
26
|
accent?: CardAccent;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export { Avatar, AvatarFallback, AvatarImage } from '../../chunk-QTUJSRDH.js';
|
|
2
2
|
export { Card, CardAction, CardContent, CardCover, CardDescription, CardFooter, CardHeader, CardTitle, StatCard } from '../../chunk-O2OUNXV4.js';
|
|
3
3
|
export { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious } from '../../chunk-HCM4JAC2.js';
|
|
4
|
-
export { DataTable, Descriptions, EmptyState } from '../../chunk-
|
|
4
|
+
export { DataTable, Descriptions, EmptyState } from '../../chunk-S6TBIL7J.js';
|
|
5
|
+
import '../../chunk-M4PZNAMV.js';
|
|
5
6
|
export { Collapsible, CollapsibleContent, CollapsibleTrigger } from '../../chunk-DV52WNXO.js';
|
|
6
7
|
import '../../chunk-TILFZBTE.js';
|
|
7
|
-
import '../../chunk-M4PZNAMV.js';
|
|
8
8
|
import { Badge } from '../../chunk-UIYEAUWA.js';
|
|
9
9
|
export { Badge } from '../../chunk-UIYEAUWA.js';
|
|
10
10
|
export { Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger } from '../../chunk-DY5C44UP.js';
|
|
@@ -7,7 +7,7 @@ import '../../chunk-M4PZNAMV.js';
|
|
|
7
7
|
import '../../chunk-DY5C44UP.js';
|
|
8
8
|
import '../../chunk-3KPEZ5CF.js';
|
|
9
9
|
import '../../chunk-IBK5D2Q6.js';
|
|
10
|
-
import '../../chunk-7PWBC4BY.js';
|
|
11
10
|
import '../../chunk-RLGHEV4A.js';
|
|
12
11
|
import '../../chunk-FXFJF4YA.js';
|
|
12
|
+
import '../../chunk-7PWBC4BY.js';
|
|
13
13
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -11,7 +11,7 @@ import { h as CountryOptionLabelProp, j as CountrySelectProp, q as SearchSelectP
|
|
|
11
11
|
export { a as AutocompleteProps, C as CalendarProps, b as CascaderProps, e as ChoiceFieldProps, g as ColorPickerProps, i as CountryOptionProp, D as DatePickerProps, k as DateRangePickerProps, F as FieldProps, n as SearchSelectLoadParamsProp, o as SearchSelectLoadResultProp, p as SearchSelectOption, t as SliderProps, u as SwitchProps, v as TimePickerProps, w as TransferItemProp, x as TransferProps, B as TreeSelectProps, U as UploadCommitAction, E as UploadFileItem, H as UploadProps, J as UploadVariant, L as collectUploadCommitActions, M as createUploadItem } from '../../data-entry.prop-CDkOajPj.js';
|
|
12
12
|
export { Switch } from './switch.js';
|
|
13
13
|
export { Combobox, ComboboxOption, ComboboxProps } from './combobox.js';
|
|
14
|
-
export { T as Toggle,
|
|
14
|
+
export { P as PasswordRule, a as PasswordStrength, b as PasswordStrengthLabels, c as PasswordStrengthProps, d as PasswordStrengthReturn, T as Toggle, e as ToggleGroup, f as ToggleGroupItem, g as ToggleProps, u as usePasswordStrength } from '../../password-strength-kQkloEeo.js';
|
|
15
15
|
export { Slider } from './slider.js';
|
|
16
16
|
export { Calendar } from './calendar.js';
|
|
17
17
|
export { DatePicker } from './date-picker.js';
|
|
@@ -1,21 +1,19 @@
|
|
|
1
|
-
export { CountryOptionLabel, CountrySelect, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, PasswordInput, Rating, TagInput } from '../../chunk-
|
|
2
|
-
export { Toggle, ToggleGroup, ToggleGroupItem } from '../../chunk-
|
|
1
|
+
export { CountryOptionLabel, CountrySelect, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, PasswordInput, Rating, TagInput } from '../../chunk-ETLAI3QU.js';
|
|
2
|
+
export { PasswordStrength, Toggle, ToggleGroup, ToggleGroupItem, usePasswordStrength } from '../../chunk-QWLXN6CT.js';
|
|
3
|
+
export { Switch } from '../../chunk-R2W2FX5Q.js';
|
|
3
4
|
export { Textarea } from '../../chunk-EOTOCNT7.js';
|
|
4
5
|
export { TimeInput } from '../../chunk-QLMXEJSY.js';
|
|
5
6
|
export { TimePicker } from '../../chunk-6YBYAEXD.js';
|
|
7
|
+
export { DatePicker } from '../../chunk-LJLGABFV.js';
|
|
6
8
|
export { DateRangePicker } from '../../chunk-N3JPLJ3B.js';
|
|
7
9
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-25RYBC5T.js';
|
|
8
|
-
export { Switch } from '../../chunk-R2W2FX5Q.js';
|
|
9
10
|
export { Autocomplete } from '../../chunk-GKXPALFT.js';
|
|
11
|
+
export { Calendar } from '../../chunk-IOGU3ZWF.js';
|
|
10
12
|
export { ColorPicker } from '../../chunk-3TS3G4U3.js';
|
|
11
13
|
export { Combobox } from '../../chunk-JKHWLPM5.js';
|
|
12
|
-
export {
|
|
13
|
-
export { Calendar } from '../../chunk-IOGU3ZWF.js';
|
|
14
|
-
export { SearchInput, Transfer } from '../../chunk-INSF6K3Y.js';
|
|
14
|
+
export { SearchInput, Transfer } from '../../chunk-457KVJTX.js';
|
|
15
15
|
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from '../../chunk-6J7GRCDA.js';
|
|
16
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
17
|
-
import '../../chunk-4R7QL3MW.js';
|
|
18
|
-
import '../../chunk-5D42MFB4.js';
|
|
16
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-G6Q32VHO.js';
|
|
19
17
|
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-CAEL2ZD2.js';
|
|
20
18
|
export { Slider } from '../../chunk-CRERCLIZ.js';
|
|
21
19
|
export { SearchSelect } from '../../chunk-KDBGFJJI.js';
|
|
@@ -24,15 +22,17 @@ import '../../chunk-SMLKNECP.js';
|
|
|
24
22
|
export { Checkbox, CheckboxGroup } from '../../chunk-O24Z3ULJ.js';
|
|
25
23
|
export { ChoiceField, Field } from '../../chunk-26CPAKUP.js';
|
|
26
24
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-HTEL5DQI.js';
|
|
25
|
+
import '../../chunk-4R7QL3MW.js';
|
|
26
|
+
import '../../chunk-FVPCVZL3.js';
|
|
27
27
|
export { Input } from '../../chunk-VOHTRR5X.js';
|
|
28
|
-
import '../../chunk-TILFZBTE.js';
|
|
29
28
|
import '../../chunk-M4PZNAMV.js';
|
|
29
|
+
import '../../chunk-TILFZBTE.js';
|
|
30
30
|
import '../../chunk-DY5C44UP.js';
|
|
31
31
|
import '../../chunk-3KPEZ5CF.js';
|
|
32
32
|
import '../../chunk-IBK5D2Q6.js';
|
|
33
|
-
export { FormField } from '../../chunk-F7PG4OEV.js';
|
|
34
|
-
export { Label } from '../../chunk-7PWBC4BY.js';
|
|
35
33
|
import '../../chunk-RLGHEV4A.js';
|
|
36
34
|
import '../../chunk-FXFJF4YA.js';
|
|
35
|
+
export { FormField } from '../../chunk-F7PG4OEV.js';
|
|
36
|
+
export { Label } from '../../chunk-7PWBC4BY.js';
|
|
37
37
|
import '../../chunk-LFW37FGG.js';
|
|
38
38
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { Transfer } from '../../chunk-
|
|
1
|
+
export { Transfer } from '../../chunk-457KVJTX.js';
|
|
2
2
|
import '../../chunk-SMLKNECP.js';
|
|
3
3
|
import '../../chunk-O24Z3ULJ.js';
|
|
4
4
|
import '../../chunk-26CPAKUP.js';
|
|
5
5
|
import '../../chunk-VOHTRR5X.js';
|
|
6
6
|
import '../../chunk-M4PZNAMV.js';
|
|
7
7
|
import '../../chunk-3KPEZ5CF.js';
|
|
8
|
-
import '../../chunk-7PWBC4BY.js';
|
|
9
8
|
import '../../chunk-RLGHEV4A.js';
|
|
10
9
|
import '../../chunk-FXFJF4YA.js';
|
|
10
|
+
import '../../chunk-7PWBC4BY.js';
|
|
11
11
|
import '../../chunk-LFW37FGG.js';
|
|
12
12
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -7,7 +7,7 @@ import '../../chunk-M4PZNAMV.js';
|
|
|
7
7
|
import '../../chunk-DY5C44UP.js';
|
|
8
8
|
import '../../chunk-3KPEZ5CF.js';
|
|
9
9
|
import '../../chunk-IBK5D2Q6.js';
|
|
10
|
-
import '../../chunk-7PWBC4BY.js';
|
|
11
10
|
import '../../chunk-RLGHEV4A.js';
|
|
12
11
|
import '../../chunk-FXFJF4YA.js';
|
|
12
|
+
import '../../chunk-7PWBC4BY.js';
|
|
13
13
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
2
|
-
import '../../chunk-4R7QL3MW.js';
|
|
3
|
-
import '../../chunk-5D42MFB4.js';
|
|
1
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-G6Q32VHO.js';
|
|
4
2
|
import '../../chunk-CRERCLIZ.js';
|
|
3
|
+
import '../../chunk-4R7QL3MW.js';
|
|
4
|
+
import '../../chunk-FVPCVZL3.js';
|
|
5
5
|
import '../../chunk-VOHTRR5X.js';
|
|
6
6
|
import '../../chunk-M4PZNAMV.js';
|
|
7
7
|
import '../../chunk-IBK5D2Q6.js';
|
|
8
|
-
import '../../chunk-7PWBC4BY.js';
|
|
9
8
|
import '../../chunk-RLGHEV4A.js';
|
|
10
9
|
import '../../chunk-FXFJF4YA.js';
|
|
10
|
+
import '../../chunk-7PWBC4BY.js';
|
|
11
11
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-
|
|
1
|
+
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-E7HBHUJY.js';
|
|
2
2
|
import '../../chunk-4R7QL3MW.js';
|
|
3
|
-
import '../../chunk-TILFZBTE.js';
|
|
4
3
|
import '../../chunk-M4PZNAMV.js';
|
|
4
|
+
import '../../chunk-TILFZBTE.js';
|
|
5
5
|
import '../../chunk-RLGHEV4A.js';
|
|
6
6
|
import '../../chunk-FXFJF4YA.js';
|
|
7
7
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -27,10 +27,29 @@ declare const DialogFooter: {
|
|
|
27
27
|
};
|
|
28
28
|
declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
29
29
|
declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
30
|
+
declare const AlertDialogTrigger: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
31
|
+
declare const AlertDialogPortal: React.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
|
|
32
|
+
declare const AlertDialogOverlay: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
33
|
+
declare const AlertDialogContent: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
34
|
+
showClose?: boolean;
|
|
35
|
+
showCloseButton?: boolean;
|
|
36
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
37
|
+
declare const AlertDialogHeader: {
|
|
38
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
39
|
+
displayName: string;
|
|
40
|
+
};
|
|
41
|
+
declare const AlertDialogFooter: {
|
|
42
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
43
|
+
displayName: string;
|
|
44
|
+
};
|
|
45
|
+
declare const AlertDialogTitle: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
46
|
+
declare const AlertDialogDescription: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
30
47
|
/** Confirm mode — primary action (maps to Radix AlertDialogAction). */
|
|
31
48
|
declare const DialogAction: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
32
49
|
/** Confirm mode — dismiss without action (maps to Radix AlertDialogCancel). */
|
|
33
50
|
declare const DialogCancel: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
51
|
+
declare const AlertDialogAction: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
52
|
+
declare const AlertDialogCancel: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
34
53
|
/** Preset: confirm / destructive / type-to-confirm without compound markup. */
|
|
35
54
|
declare function AlertDialog({ open, onOpenChange, title, description, confirmLabel, cancelLabel, variant, confirmPhrase, onConfirm, keepOpenOnConfirm, pending, }: AlertDialogProp): react_jsx_runtime.JSX.Element;
|
|
36
55
|
declare const Dialog: typeof DialogRoot & {
|
|
@@ -56,4 +75,4 @@ declare const Dialog: typeof DialogRoot & {
|
|
|
56
75
|
Cancel: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
57
76
|
};
|
|
58
77
|
|
|
59
|
-
export { AlertDialog, AlertDialogProp, AlertDialogProp as AlertDialogProps, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger };
|
|
78
|
+
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogProp, AlertDialogProp as AlertDialogProps, AlertDialogTitle, AlertDialogTrigger, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger } from '../../chunk-
|
|
1
|
+
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger } from '../../chunk-FVPCVZL3.js';
|
|
2
2
|
import '../../chunk-VOHTRR5X.js';
|
|
3
3
|
import '../../chunk-M4PZNAMV.js';
|
|
4
|
-
import '../../chunk-7PWBC4BY.js';
|
|
5
4
|
import '../../chunk-RLGHEV4A.js';
|
|
6
5
|
import '../../chunk-FXFJF4YA.js';
|
|
6
|
+
import '../../chunk-7PWBC4BY.js';
|
|
7
7
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,32 +1,24 @@
|
|
|
1
|
-
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from './dialog.js';
|
|
1
|
+
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from './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';
|
|
5
5
|
export { S as Skeleton, a as SkeletonCard, b as SkeletonDetail, c as SkeletonProps, d as SkeletonRows, e as SkeletonStat, f as SkeletonTable } from '../../skeleton-uWAjSacg.js';
|
|
6
6
|
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from './alert.js';
|
|
7
|
-
|
|
8
|
-
import * as React from 'react';
|
|
9
|
-
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
7
|
+
export { T as Tooltip, a as TooltipContent, b as TooltipProvider, c as TooltipTrigger } from '../../tooltip-Bf2KjRy8.js';
|
|
10
8
|
import * as vaul from 'vaul';
|
|
11
9
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
12
10
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
11
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
12
|
+
import * as React from 'react';
|
|
13
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
|
-
import '../../shared.prop-BsNSXeqD.js';
|
|
16
|
-
import '../../content.prop-DrV_zDy-.js';
|
|
17
|
-
import '../../interaction.prop-DSFizzP6.js';
|
|
18
15
|
import 'class-variance-authority/types';
|
|
19
16
|
import 'class-variance-authority';
|
|
20
17
|
import 'sonner';
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
declare function Tooltip({ delayDuration, ...props }: React.ComponentProps<typeof TooltipPrimitive.Root> & {
|
|
26
|
-
delayDuration?: number;
|
|
27
|
-
}): react_jsx_runtime.JSX.Element;
|
|
28
|
-
declare const TooltipTrigger: React.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
29
|
-
declare const TooltipContent: React.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
18
|
+
import '../../shared.prop-BsNSXeqD.js';
|
|
19
|
+
import '../../content.prop-DrV_zDy-.js';
|
|
20
|
+
import '../../interaction.prop-DSFizzP6.js';
|
|
21
|
+
import '@radix-ui/react-tooltip';
|
|
30
22
|
|
|
31
23
|
declare function Drawer({ shouldScaleBackground, ...props }: React.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
|
|
32
24
|
declare namespace Drawer {
|
|
@@ -42,4 +34,4 @@ declare function DrawerFooter({ className, ...props }: React.HTMLAttributes<HTML
|
|
|
42
34
|
declare const DrawerTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
43
35
|
declare const DrawerDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
44
36
|
|
|
45
|
-
export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger
|
|
37
|
+
export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger };
|
|
@@ -2,16 +2,16 @@ 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 {
|
|
6
|
-
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
7
|
-
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-ZRRLOOBX.js';
|
|
5
|
+
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-E7HBHUJY.js';
|
|
8
6
|
import '../../chunk-4R7QL3MW.js';
|
|
9
|
-
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from '../../chunk-
|
|
7
|
+
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Dialog, DialogAction, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from '../../chunk-FVPCVZL3.js';
|
|
10
8
|
import '../../chunk-VOHTRR5X.js';
|
|
11
|
-
|
|
9
|
+
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
10
|
+
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
12
11
|
import '../../chunk-M4PZNAMV.js';
|
|
12
|
+
import '../../chunk-TILFZBTE.js';
|
|
13
13
|
import '../../chunk-IBK5D2Q6.js';
|
|
14
|
-
import '../../chunk-7PWBC4BY.js';
|
|
15
14
|
import '../../chunk-RLGHEV4A.js';
|
|
16
15
|
import '../../chunk-FXFJF4YA.js';
|
|
16
|
+
import '../../chunk-7PWBC4BY.js';
|
|
17
17
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,18 +1,18 @@
|
|
|
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-CDSVAN54.js';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
-
import { e as PageInsetProp, A as AppShellProp,
|
|
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,
|
|
3
|
+
import { e as PageInsetProp, A as AppShellProp, h as SidebarProp, S as SidebarItemData, l as TopbarProp, R as ResponsiveGridColumnsProp } from '../../layout.prop-JE2TcRyL.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, g as SidebarProduct, i as SidebarSectionProp, j as StackProp, j as StackProps, T as TopbarProduct, k as TopbarProject } from '../../layout.prop-JE2TcRyL.js';
|
|
5
5
|
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from './resizable.js';
|
|
6
6
|
import * as React from 'react';
|
|
7
7
|
import { ElementType, ReactNode } from 'react';
|
|
8
8
|
import { a as BreadcrumbProp } from '../../navigation.prop-BKlxd-j7.js';
|
|
9
9
|
export { B as BreadcrumbItem, B as BreadcrumbItemProp } from '../../navigation.prop-BKlxd-j7.js';
|
|
10
|
-
|
|
11
|
-
export { A as AspectRatio } from '../../aspect-ratio-DGoYrOry.js';
|
|
10
|
+
export { A as AspectRatio, S as Separator } from '../../aspect-ratio-CZZJd9Km.js';
|
|
12
11
|
import '../../shared.prop-BsNSXeqD.js';
|
|
13
12
|
import '../../content.prop-DrV_zDy-.js';
|
|
14
13
|
import '../../layout.prop-CXvl2rVR.js';
|
|
15
14
|
import 'react-resizable-panels';
|
|
15
|
+
import '@radix-ui/react-separator';
|
|
16
16
|
import '@radix-ui/react-aspect-ratio';
|
|
17
17
|
|
|
18
18
|
/** @deprecated Use PageContainer.Inset. */
|
|
@@ -26,9 +26,26 @@ type BreadcrumbProps = {
|
|
|
26
26
|
};
|
|
27
27
|
declare function Breadcrumb({ items, linkComponent: LinkComponent }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
type RenderItem = (item: SidebarItemData) => React.ReactNode;
|
|
30
|
+
type SidebarHeaderProps = React.HTMLAttributes<HTMLDivElement>;
|
|
31
|
+
type SidebarSectionProps = {
|
|
32
|
+
label?: string;
|
|
33
|
+
collapsed?: boolean;
|
|
34
|
+
children?: React.ReactNode;
|
|
35
|
+
};
|
|
36
|
+
type SidebarItemProps = {
|
|
37
|
+
item: SidebarItemData;
|
|
38
|
+
active?: boolean;
|
|
39
|
+
sub?: boolean;
|
|
40
|
+
onActivate?: (id: string) => void;
|
|
41
|
+
renderItem?: RenderItem;
|
|
42
|
+
};
|
|
43
|
+
declare function SidebarHeader({ children, className, ...props }: SidebarHeaderProps): react_jsx_runtime.JSX.Element;
|
|
44
|
+
declare function SidebarSection({ label, collapsed, children, className, ...props }: SidebarSectionProps & React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
45
|
+
declare function SidebarItem({ item, active, sub, onActivate, renderItem, children, ...props }: SidebarItemProps & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onClick">): react_jsx_runtime.JSX.Element;
|
|
46
|
+
declare function Sidebar({ activeId, onSelect, sections, product, onProductClick, brand, collapsed, children, renderItem, footer, }: SidebarProp): react_jsx_runtime.JSX.Element;
|
|
30
47
|
|
|
31
|
-
declare function Topbar({ product, project, productMenu, projectMenu, onProductOpen, onProjectOpen, onSearchOpen, onTweaksOpen, collapsed, onToggleCollapsed, rightSlot, unread, onNotificationsOpen, user, }: TopbarProp): react_jsx_runtime.JSX.Element;
|
|
48
|
+
declare function Topbar({ product, project, productMenu, projectMenu, projectPlaceholder, onProductOpen, onProjectOpen, onSearchOpen, onTweaksOpen, collapsed, onToggleCollapsed, rightSlot, unread, onNotificationsOpen, user, }: TopbarProp): react_jsx_runtime.JSX.Element;
|
|
32
49
|
|
|
33
50
|
type ResponsiveGridProps = {
|
|
34
51
|
columns?: ResponsiveGridColumnsProp;
|
|
@@ -43,6 +60,4 @@ type SplitPaneProps = {
|
|
|
43
60
|
};
|
|
44
61
|
declare function SplitPane({ children, aside, asideWidth }: SplitPaneProps): react_jsx_runtime.JSX.Element;
|
|
45
62
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
export { AppShell, AppShellProp as AppShellProps, Breadcrumb, type BreadcrumbProps, PageInset, PageInsetProp, PageInsetProp as PageInsetProps, ResponsiveGrid, type ResponsiveGridProps, Separator, Sidebar, SidebarProp as SidebarProps, SplitPane, type SplitPaneProps, Topbar, TopbarProp as TopbarProps };
|
|
63
|
+
export { AppShell, AppShellProp as AppShellProps, Breadcrumb, type BreadcrumbProps, PageInset, PageInsetProp, PageInsetProp as PageInsetProps, ResponsiveGrid, type ResponsiveGridProps, Sidebar, SidebarHeader, SidebarItem, SidebarItemData, SidebarProp, SidebarProp as SidebarProps, SidebarSection, SplitPane, type SplitPaneProps, Topbar, TopbarProp as TopbarProps };
|