@godxjp/ui 13.9.0 → 13.9.1
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-3R3QVJCB.js → chunk-2RGPEFAW.js} +19 -1
- package/dist/{chunk-3UTHNXKB.js → chunk-2RWFDQFE.js} +1 -1
- package/dist/{chunk-TRBD4RXJ.js → chunk-5YYENG2T.js} +3 -3
- package/dist/{chunk-IAJOP2Z3.js → chunk-LBYSX3VM.js} +4 -1
- package/dist/{chunk-DBVZ73ML.js → chunk-LCVXUCMB.js} +3 -3
- package/dist/{chunk-KZ7ZDNUN.js → chunk-OLOXW652.js} +3 -3
- package/dist/{chunk-UT6DAJUL.js → chunk-SYNDTT2J.js} +1 -1
- package/dist/components/admin/index.js +27 -27
- package/dist/components/data-display/card.d.ts +2 -2
- package/dist/components/data-display/index.js +7 -7
- package/dist/components/data-entry/cascader.js +4 -4
- package/dist/components/data-entry/command.js +1 -1
- package/dist/components/data-entry/date-picker.js +3 -3
- package/dist/components/data-entry/date-range-picker.js +1 -1
- package/dist/components/data-entry/index.js +20 -20
- package/dist/components/data-entry/select.js +3 -3
- package/dist/components/data-entry/time-picker.js +2 -2
- package/dist/components/data-entry/transfer.js +4 -4
- package/dist/components/data-entry/tree-select.js +4 -4
- package/dist/components/data-entry/upload.js +2 -2
- package/dist/components/data-grid/index.js +7 -7
- package/dist/components/feedback/alert.js +2 -2
- package/dist/components/feedback/index.js +3 -3
- package/dist/components/layout/index.js +3 -3
- package/dist/components/navigation/index.js +5 -5
- package/dist/components/navigation/pagination.js +4 -4
- package/dist/components/query/index.js +2 -2
- package/dist/components/ui/index.js +23 -23
- package/dist/form/index.js +1 -1
- package/dist/index.js +36 -36
- package/dist/styles/alert-layout.css +3 -3
- package/dist/styles/badge-layout.css +1 -1
- package/dist/styles/control.css +12 -12
- package/dist/styles/data-display-layout.css +3 -3
- package/dist/styles/data-entry-layout.css +3 -3
- package/dist/styles/dialog-layout.css +1 -1
- package/dist/styles/layout.css +2 -2
- package/dist/styles/navigation-layout.css +2 -2
- package/dist/styles/shell-layout.css +8 -8
- package/dist/styles/table-layout.css +1 -1
- package/dist/tokens/components/badge.css +3 -0
- package/package.json +4 -3
- package/dist/{chunk-76YSDJDP.js → chunk-3VFNWVR7.js} +2 -2
- package/dist/{chunk-7PBKPDBJ.js → chunk-57VDEN64.js} +1 -1
- package/dist/{chunk-2JOJYHG2.js → chunk-65RWSIZF.js} +1 -1
- package/dist/{chunk-E3Z3XCQR.js → chunk-7WKODMCZ.js} +2 -2
- package/dist/{chunk-HNL7CJFO.js → chunk-CXTSEQ6R.js} +1 -1
- package/dist/{chunk-MSRJC3RT.js → chunk-D4JX6O2W.js} +1 -1
- package/dist/{chunk-6SZKFJYY.js → chunk-O6BVMDW4.js} +1 -1
- package/dist/{chunk-IRBI2EZ2.js → chunk-R4AB4S3E.js} +2 -2
|
@@ -5,7 +5,25 @@ import { Command as Command$1 } from 'cmdk';
|
|
|
5
5
|
import { Search } from 'lucide-react';
|
|
6
6
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
7
7
|
|
|
8
|
-
var Command = React.forwardRef(({ className, ...props }, ref) =>
|
|
8
|
+
var Command = React.forwardRef(({ className, ...props }, ref) => {
|
|
9
|
+
const rootRef = React.useRef(null);
|
|
10
|
+
const setRefs = (node) => {
|
|
11
|
+
rootRef.current = node;
|
|
12
|
+
if (typeof ref === "function") ref(node);
|
|
13
|
+
else if (ref) ref.current = node;
|
|
14
|
+
};
|
|
15
|
+
React.useEffect(() => {
|
|
16
|
+
const root = rootRef.current;
|
|
17
|
+
if (!root) return;
|
|
18
|
+
const label = root.querySelector(":scope > label[cmdk-label]");
|
|
19
|
+
if (!label || root.querySelector("[cmdk-input]")) return;
|
|
20
|
+
const expectedId = label.getAttribute("for");
|
|
21
|
+
const input = root.querySelector('input:not([type="hidden"])');
|
|
22
|
+
if (input && expectedId && !input.id) input.id = expectedId;
|
|
23
|
+
else if (!input || input.id !== expectedId) label.removeAttribute("for");
|
|
24
|
+
});
|
|
25
|
+
return /* @__PURE__ */ jsx(Command$1, { ref: setRefs, className: cn("ui-command", className), ...props });
|
|
26
|
+
});
|
|
9
27
|
Command.displayName = Command$1.displayName;
|
|
10
28
|
var CommandInput = React.forwardRef(({ className, ...props }, ref) => (
|
|
11
29
|
// cmdk uses this non-standard attribute for input wrapper styling
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-
|
|
1
|
+
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-LCVXUCMB.js';
|
|
2
2
|
import { Button } from './chunk-XBFUROAY.js';
|
|
3
3
|
import { useOptionalAppContext, useTranslation, APP_TIME_FORMAT_OPTIONS, getTimeFormatLabel, resolveTimezonePickerOptions, getTimezoneLabel, APP_LOCALES } from './chunk-B6S6LTWT.js';
|
|
4
4
|
import { APP_DATE_FORMAT_OPTIONS, getDateFormatLabel } from './chunk-5732TWQF.js';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { normalizeTreeOptions, collectAllExpandableKeys, filterVisibleTree, flattenVisibleTree, findNodeByValue, reactNodeText, getDescendantValues } from './chunk-SMLKNECP.js';
|
|
2
|
-
import {
|
|
2
|
+
import { Command, CommandInput } from './chunk-2RGPEFAW.js';
|
|
3
3
|
import { Checkbox } from './chunk-BE6GJGKJ.js';
|
|
4
|
-
import { Command, CommandInput } from './chunk-3R3QVJCB.js';
|
|
5
|
-
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
6
4
|
import { Button } from './chunk-XBFUROAY.js';
|
|
7
5
|
import { controlOpenRingClass } from './chunk-B4K4BXEF.js';
|
|
6
|
+
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
7
|
+
import { ScrollArea } from './chunk-J2DEWIYY.js';
|
|
8
8
|
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
9
9
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
10
10
|
import * as React from 'react';
|
|
@@ -38,6 +38,7 @@ var Form = React2.forwardRef(function Form2({
|
|
|
38
38
|
);
|
|
39
39
|
});
|
|
40
40
|
var toCssLength = (v) => typeof v === "number" ? `${v}px` : v;
|
|
41
|
+
var FOCUSABLE_SELECTOR = 'input:not([type="hidden"]), select, textarea, button, [tabindex]:not([tabindex="-1"])';
|
|
41
42
|
function FormField({
|
|
42
43
|
id,
|
|
43
44
|
label,
|
|
@@ -104,7 +105,9 @@ function FormField({
|
|
|
104
105
|
{
|
|
105
106
|
onClick: () => {
|
|
106
107
|
const el = document.getElementById(resolvedId);
|
|
107
|
-
if (el
|
|
108
|
+
if (!(el instanceof HTMLElement)) return;
|
|
109
|
+
const focusable = el.matches(FOCUSABLE_SELECTOR) ? el : el.querySelector(FOCUSABLE_SELECTOR);
|
|
110
|
+
(focusable ?? el).focus();
|
|
108
111
|
},
|
|
109
112
|
children: [
|
|
110
113
|
/* @__PURE__ */ jsx("span", { children: label }),
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Command, CommandList, CommandItem, CommandGroup } from './chunk-
|
|
1
|
+
import { Command, CommandList, CommandItem, CommandGroup } from './chunk-2RGPEFAW.js';
|
|
2
2
|
import { Input } from './chunk-K24AQV4R.js';
|
|
3
|
-
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
4
3
|
import { Button } from './chunk-XBFUROAY.js';
|
|
5
4
|
import { controlTriggerClass, controlOpenRingClass } from './chunk-B4K4BXEF.js';
|
|
5
|
+
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
6
6
|
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
7
7
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
8
8
|
import * as React from 'react';
|
|
@@ -199,7 +199,7 @@ function SearchSelect({
|
|
|
199
199
|
align: "start",
|
|
200
200
|
sideOffset: 4,
|
|
201
201
|
collisionPadding: 12,
|
|
202
|
-
className: "flex max-h-[
|
|
202
|
+
className: "flex max-h-[var(--radix-popover-content-available-height)] w-max max-w-[min(32rem,calc(100vw-1.5rem))] min-w-[var(--radix-popover-trigger-width)] flex-col p-0",
|
|
203
203
|
children: /* @__PURE__ */ jsxs(Command, { shouldFilter: false, className: "flex min-h-0 flex-col", children: [
|
|
204
204
|
/* @__PURE__ */ jsx("div", { className: "border-border shrink-0 border-b p-2", children: /* @__PURE__ */ jsx(
|
|
205
205
|
Input,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { normalizeTreeOptions, formatPathLabels, getNodeByPath, filterTreeOptions, pathsEqual, pathKey } from './chunk-SMLKNECP.js';
|
|
2
|
-
import {
|
|
3
|
-
import { Command, CommandInput } from './chunk-3R3QVJCB.js';
|
|
4
|
-
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
2
|
+
import { Command, CommandInput } from './chunk-2RGPEFAW.js';
|
|
5
3
|
import { Button } from './chunk-XBFUROAY.js';
|
|
6
4
|
import { controlOpenRingClass } from './chunk-B4K4BXEF.js';
|
|
5
|
+
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
6
|
+
import { ScrollArea, ScrollBar } from './chunk-J2DEWIYY.js';
|
|
7
7
|
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
8
8
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
9
9
|
import * as React from 'react';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-
|
|
1
|
+
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-LCVXUCMB.js';
|
|
2
2
|
import { Button } from './chunk-XBFUROAY.js';
|
|
3
3
|
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
4
4
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
@@ -1,48 +1,48 @@
|
|
|
1
1
|
import '../../chunk-GJXOBDER.js';
|
|
2
|
-
export {
|
|
3
|
-
export { PageContainer } from '../../chunk-E3Z3XCQR.js';
|
|
4
|
-
import '../../chunk-DV52WNXO.js';
|
|
5
|
-
import '../../chunk-XK3M3VRR.js';
|
|
6
|
-
import '../../chunk-W4REF4TD.js';
|
|
7
|
-
export { Badge } from '../../chunk-HIEGUYPP.js';
|
|
8
|
-
export { EmptyState } from '../../chunk-YD7V2HGZ.js';
|
|
9
|
-
import '../../chunk-IJ5ALJGA.js';
|
|
10
|
-
export { Toolbar, ToolbarGroup } from '../../chunk-3UTHNXKB.js';
|
|
2
|
+
export { Toolbar, ToolbarGroup } from '../../chunk-2RWFDQFE.js';
|
|
11
3
|
import '../../chunk-B73NA66T.js';
|
|
12
4
|
import '../../chunk-WGWI7EGL.js';
|
|
13
|
-
export { Pagination } from '../../chunk-
|
|
5
|
+
export { Pagination } from '../../chunk-SYNDTT2J.js';
|
|
14
6
|
export { Steps } from '../../chunk-QROC2RMH.js';
|
|
15
7
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
8
|
+
export { PageContainer } from '../../chunk-7WKODMCZ.js';
|
|
9
|
+
import '../../chunk-XK3M3VRR.js';
|
|
10
|
+
import '../../chunk-W4REF4TD.js';
|
|
16
11
|
import '../../chunk-HL3G4SVG.js';
|
|
17
|
-
|
|
12
|
+
export { Transfer } from '../../chunk-R4AB4S3E.js';
|
|
13
|
+
export { TreeSelect } from '../../chunk-5YYENG2T.js';
|
|
14
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-O6BVMDW4.js';
|
|
15
|
+
import '../../chunk-TBJBVEIP.js';
|
|
16
|
+
export { Cascader } from '../../chunk-OLOXW652.js';
|
|
17
|
+
import '../../chunk-SMLKNECP.js';
|
|
18
18
|
export { sonnerToast as toast } from '../../chunk-ES4Q3KGL.js';
|
|
19
19
|
export { SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-2BR7KFCP.js';
|
|
20
20
|
import '../../chunk-32WO3YLB.js';
|
|
21
|
-
export {
|
|
22
|
-
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-MSRJC3RT.js';
|
|
23
|
-
export { Flex } from '../../chunk-INIIF7F7.js';
|
|
24
|
-
export { Transfer } from '../../chunk-IRBI2EZ2.js';
|
|
25
|
-
export { SearchInput } from '../../chunk-IESBK6XZ.js';
|
|
26
|
-
export { TreeSelect } from '../../chunk-TRBD4RXJ.js';
|
|
27
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-6SZKFJYY.js';
|
|
21
|
+
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-D4JX6O2W.js';
|
|
28
22
|
export { formatBytes, formatCurrency, humanError, shortId } from '../../chunk-X6AJ5HEI.js';
|
|
29
23
|
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../../chunk-N2WBUCVY.js';
|
|
30
24
|
import '../../chunk-VU4GFGDG.js';
|
|
31
|
-
|
|
32
|
-
import '../../chunk-
|
|
33
|
-
export {
|
|
34
|
-
import '../../chunk-
|
|
35
|
-
import '../../chunk-
|
|
25
|
+
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
26
|
+
import '../../chunk-LMKUKCTN.js';
|
|
27
|
+
export { SearchInput } from '../../chunk-IESBK6XZ.js';
|
|
28
|
+
import '../../chunk-LCVXUCMB.js';
|
|
29
|
+
import '../../chunk-2RGPEFAW.js';
|
|
30
|
+
import '../../chunk-K24AQV4R.js';
|
|
31
|
+
export { DataTable, Descriptions } from '../../chunk-CXTSEQ6R.js';
|
|
32
|
+
import '../../chunk-DV52WNXO.js';
|
|
33
|
+
export { EmptyState } from '../../chunk-YD7V2HGZ.js';
|
|
36
34
|
import '../../chunk-BE6GJGKJ.js';
|
|
37
35
|
export { Field } from '../../chunk-44YRPSZ7.js';
|
|
38
|
-
import '../../chunk-
|
|
39
|
-
|
|
40
|
-
import '../../chunk-DY5C44UP.js';
|
|
36
|
+
import '../../chunk-IJ5ALJGA.js';
|
|
37
|
+
export { Flex } from '../../chunk-INIIF7F7.js';
|
|
41
38
|
import '../../chunk-XBFUROAY.js';
|
|
39
|
+
export { Badge } from '../../chunk-HIEGUYPP.js';
|
|
42
40
|
import '../../chunk-B4K4BXEF.js';
|
|
41
|
+
import '../../chunk-DY5C44UP.js';
|
|
42
|
+
import '../../chunk-J2DEWIYY.js';
|
|
43
43
|
import '../../chunk-B6S6LTWT.js';
|
|
44
44
|
export { formatDate } from '../../chunk-5732TWQF.js';
|
|
45
|
-
export { FormField } from '../../chunk-
|
|
45
|
+
export { FormField } from '../../chunk-LBYSX3VM.js';
|
|
46
46
|
import '../../chunk-C3PKEV6S.js';
|
|
47
47
|
import '../../chunk-7PWBC4BY.js';
|
|
48
48
|
export { useDebouncedValue, useTimeoutFlag } from '../../chunk-LFW37FGG.js';
|
|
@@ -11,7 +11,7 @@ type CardVariant = "default" | "muted" | "outline" | "featured";
|
|
|
11
11
|
/** Padding density — base 16px · tight 12px · cozy 20px. */
|
|
12
12
|
type CardDensity = "tight" | "cozy";
|
|
13
13
|
declare const cardVariants: (props?: ({
|
|
14
|
-
size?: "
|
|
14
|
+
size?: "compact" | "md" | null | undefined;
|
|
15
15
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
16
16
|
type CardProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof cardVariants> & {
|
|
17
17
|
size?: CardSize;
|
|
@@ -20,7 +20,7 @@ type CardProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof card
|
|
|
20
20
|
density?: CardDensity;
|
|
21
21
|
};
|
|
22
22
|
declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
23
|
-
size?: "
|
|
23
|
+
size?: "compact" | "md" | null | undefined;
|
|
24
24
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & {
|
|
25
25
|
size?: CardSize;
|
|
26
26
|
accent?: CardAccent;
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
export { Avatar, AvatarFallback, AvatarImage } from '../../chunk-QTUJSRDH.js';
|
|
2
2
|
export { Card, CardAction, CardContent, CardCover, CardDescription, CardFooter, CardHeader, CardTitle, StatCard } from '../../chunk-QVBOICFU.js';
|
|
3
3
|
export { Carousel, CarouselContent, CarouselDots, CarouselItem, CarouselNext, CarouselPrevious, useCarousel } from '../../chunk-NZBAFFWP.js';
|
|
4
|
-
export { DataTable, Descriptions } from '../../chunk-
|
|
4
|
+
export { DataTable, Descriptions } from '../../chunk-CXTSEQ6R.js';
|
|
5
5
|
export { Collapsible, CollapsibleContent, CollapsibleTrigger } from '../../chunk-DV52WNXO.js';
|
|
6
|
-
import { Badge } from '../../chunk-HIEGUYPP.js';
|
|
7
|
-
export { Badge } from '../../chunk-HIEGUYPP.js';
|
|
8
6
|
export { EmptyState } from '../../chunk-YD7V2HGZ.js';
|
|
9
|
-
export { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '../../chunk-IJ5ALJGA.js';
|
|
10
|
-
import '../../chunk-INIIF7F7.js';
|
|
11
|
-
export { ScrollArea, ScrollBar } from '../../chunk-J2DEWIYY.js';
|
|
12
7
|
import '../../chunk-BE6GJGKJ.js';
|
|
13
8
|
import '../../chunk-44YRPSZ7.js';
|
|
14
|
-
export {
|
|
9
|
+
export { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '../../chunk-IJ5ALJGA.js';
|
|
10
|
+
import '../../chunk-INIIF7F7.js';
|
|
15
11
|
import '../../chunk-XBFUROAY.js';
|
|
12
|
+
import { Badge } from '../../chunk-HIEGUYPP.js';
|
|
13
|
+
export { Badge } from '../../chunk-HIEGUYPP.js';
|
|
16
14
|
import '../../chunk-B4K4BXEF.js';
|
|
15
|
+
export { Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger } from '../../chunk-DY5C44UP.js';
|
|
16
|
+
export { ScrollArea, ScrollBar } from '../../chunk-J2DEWIYY.js';
|
|
17
17
|
import '../../chunk-B6S6LTWT.js';
|
|
18
18
|
import '../../chunk-5732TWQF.js';
|
|
19
19
|
import '../../chunk-7PWBC4BY.js';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { Cascader } from '../../chunk-
|
|
1
|
+
export { Cascader } from '../../chunk-OLOXW652.js';
|
|
2
2
|
import '../../chunk-SMLKNECP.js';
|
|
3
|
-
import '../../chunk-
|
|
4
|
-
import '../../chunk-3R3QVJCB.js';
|
|
5
|
-
import '../../chunk-DY5C44UP.js';
|
|
3
|
+
import '../../chunk-2RGPEFAW.js';
|
|
6
4
|
import '../../chunk-XBFUROAY.js';
|
|
7
5
|
import '../../chunk-B4K4BXEF.js';
|
|
6
|
+
import '../../chunk-DY5C44UP.js';
|
|
7
|
+
import '../../chunk-J2DEWIYY.js';
|
|
8
8
|
import '../../chunk-B6S6LTWT.js';
|
|
9
9
|
import '../../chunk-5732TWQF.js';
|
|
10
10
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-
|
|
1
|
+
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-2RGPEFAW.js';
|
|
2
2
|
import '../../chunk-B4K4BXEF.js';
|
|
3
3
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export { DatePicker } from '../../chunk-
|
|
2
|
-
import '../../chunk-K24AQV4R.js';
|
|
1
|
+
export { DatePicker } from '../../chunk-3VFNWVR7.js';
|
|
3
2
|
import '../../chunk-NU2SOVTU.js';
|
|
4
|
-
import '../../chunk-
|
|
3
|
+
import '../../chunk-K24AQV4R.js';
|
|
5
4
|
import '../../chunk-XBFUROAY.js';
|
|
6
5
|
import '../../chunk-B4K4BXEF.js';
|
|
6
|
+
import '../../chunk-DY5C44UP.js';
|
|
7
7
|
import '../../chunk-B6S6LTWT.js';
|
|
8
8
|
import '../../chunk-5732TWQF.js';
|
|
9
9
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export { DateRangePicker } from '../../chunk-YXVJFYQE.js';
|
|
2
2
|
import '../../chunk-NU2SOVTU.js';
|
|
3
|
-
import '../../chunk-DY5C44UP.js';
|
|
4
3
|
import '../../chunk-XBFUROAY.js';
|
|
5
4
|
import '../../chunk-B4K4BXEF.js';
|
|
5
|
+
import '../../chunk-DY5C44UP.js';
|
|
6
6
|
import '../../chunk-B6S6LTWT.js';
|
|
7
7
|
import '../../chunk-5732TWQF.js';
|
|
8
8
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
export { InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, MonthPicker, MonthRangePicker, NumberInput, PasswordInput, Rating, TagInput } from '../../chunk-
|
|
1
|
+
export { InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, MonthPicker, MonthRangePicker, NumberInput, PasswordInput, Rating, TagInput } from '../../chunk-57VDEN64.js';
|
|
2
2
|
export { PasswordStrength, Toggle, ToggleGroup, ToggleGroupItem, usePasswordStrength } from '../../chunk-VSUYVT2Q.js';
|
|
3
|
-
export {
|
|
4
|
-
export { TimePicker } from '../../chunk-2JOJYHG2.js';
|
|
3
|
+
export { TimePicker } from '../../chunk-65RWSIZF.js';
|
|
5
4
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-S2IJKT3D.js';
|
|
6
5
|
export { Switch } from '../../chunk-I7NQ2LIL.js';
|
|
7
6
|
export { Textarea } from '../../chunk-Q3KUZG4P.js';
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
7
|
+
export { TimeInput } from '../../chunk-R2TXLS7S.js';
|
|
8
|
+
export { ColorPicker } from '../../chunk-ION2KFXK.js';
|
|
9
|
+
export { DatePicker } from '../../chunk-3VFNWVR7.js';
|
|
10
|
+
export { DateRangePicker } from '../../chunk-YXVJFYQE.js';
|
|
11
|
+
export { Calendar } from '../../chunk-NU2SOVTU.js';
|
|
12
|
+
export { Transfer } from '../../chunk-R4AB4S3E.js';
|
|
13
|
+
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from '../../chunk-5YYENG2T.js';
|
|
14
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-O6BVMDW4.js';
|
|
15
|
+
export { Slider } from '../../chunk-TBJBVEIP.js';
|
|
16
|
+
export { Cascader } from '../../chunk-OLOXW652.js';
|
|
17
|
+
import '../../chunk-SMLKNECP.js';
|
|
12
18
|
import '../../chunk-X6AJ5HEI.js';
|
|
13
19
|
import '../../chunk-N2WBUCVY.js';
|
|
14
20
|
import '../../chunk-VU4GFGDG.js';
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
|
|
19
|
-
import '../../chunk-J2DEWIYY.js';
|
|
21
|
+
export { SearchInput } from '../../chunk-IESBK6XZ.js';
|
|
22
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-LCVXUCMB.js';
|
|
23
|
+
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-2RGPEFAW.js';
|
|
24
|
+
export { Input } from '../../chunk-K24AQV4R.js';
|
|
20
25
|
export { Checkbox, CheckboxGroup } from '../../chunk-BE6GJGKJ.js';
|
|
21
26
|
export { Field } from '../../chunk-44YRPSZ7.js';
|
|
22
|
-
export { ColorPicker } from '../../chunk-ION2KFXK.js';
|
|
23
|
-
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-3R3QVJCB.js';
|
|
24
|
-
export { DatePicker } from '../../chunk-76YSDJDP.js';
|
|
25
|
-
export { Input } from '../../chunk-K24AQV4R.js';
|
|
26
|
-
export { DateRangePicker } from '../../chunk-YXVJFYQE.js';
|
|
27
|
-
export { Calendar } from '../../chunk-NU2SOVTU.js';
|
|
28
|
-
import '../../chunk-DY5C44UP.js';
|
|
29
27
|
import '../../chunk-XBFUROAY.js';
|
|
30
28
|
import '../../chunk-B4K4BXEF.js';
|
|
29
|
+
import '../../chunk-DY5C44UP.js';
|
|
30
|
+
import '../../chunk-J2DEWIYY.js';
|
|
31
31
|
import '../../chunk-B6S6LTWT.js';
|
|
32
32
|
import '../../chunk-5732TWQF.js';
|
|
33
|
-
export { Form, FormField, useFormLayout } from '../../chunk-
|
|
33
|
+
export { Form, FormField, useFormLayout } from '../../chunk-LBYSX3VM.js';
|
|
34
34
|
import '../../chunk-C3PKEV6S.js';
|
|
35
35
|
export { Label } from '../../chunk-7PWBC4BY.js';
|
|
36
36
|
import '../../chunk-LFW37FGG.js';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-LCVXUCMB.js';
|
|
2
|
+
import '../../chunk-2RGPEFAW.js';
|
|
3
3
|
import '../../chunk-K24AQV4R.js';
|
|
4
|
-
import '../../chunk-DY5C44UP.js';
|
|
5
4
|
import '../../chunk-XBFUROAY.js';
|
|
6
5
|
import '../../chunk-B4K4BXEF.js';
|
|
6
|
+
import '../../chunk-DY5C44UP.js';
|
|
7
7
|
import '../../chunk-B6S6LTWT.js';
|
|
8
8
|
import '../../chunk-5732TWQF.js';
|
|
9
9
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { TimePicker } from '../../chunk-
|
|
1
|
+
export { TimePicker } from '../../chunk-65RWSIZF.js';
|
|
2
2
|
import '../../chunk-K24AQV4R.js';
|
|
3
|
-
import '../../chunk-DY5C44UP.js';
|
|
4
3
|
import '../../chunk-XBFUROAY.js';
|
|
4
|
+
import '../../chunk-DY5C44UP.js';
|
|
5
5
|
import '../../chunk-B6S6LTWT.js';
|
|
6
6
|
import '../../chunk-5732TWQF.js';
|
|
7
7
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export { Transfer } from '../../chunk-
|
|
2
|
-
import '../../chunk-IESBK6XZ.js';
|
|
1
|
+
export { Transfer } from '../../chunk-R4AB4S3E.js';
|
|
3
2
|
import '../../chunk-SMLKNECP.js';
|
|
4
|
-
import '../../chunk-
|
|
3
|
+
import '../../chunk-IESBK6XZ.js';
|
|
4
|
+
import '../../chunk-K24AQV4R.js';
|
|
5
5
|
import '../../chunk-BE6GJGKJ.js';
|
|
6
6
|
import '../../chunk-44YRPSZ7.js';
|
|
7
|
-
import '../../chunk-K24AQV4R.js';
|
|
8
7
|
import '../../chunk-XBFUROAY.js';
|
|
8
|
+
import '../../chunk-J2DEWIYY.js';
|
|
9
9
|
import '../../chunk-B6S6LTWT.js';
|
|
10
10
|
import '../../chunk-5732TWQF.js';
|
|
11
11
|
import '../../chunk-7PWBC4BY.js';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from '../../chunk-
|
|
1
|
+
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from '../../chunk-5YYENG2T.js';
|
|
2
2
|
import '../../chunk-SMLKNECP.js';
|
|
3
|
-
import '../../chunk-
|
|
3
|
+
import '../../chunk-2RGPEFAW.js';
|
|
4
4
|
import '../../chunk-BE6GJGKJ.js';
|
|
5
5
|
import '../../chunk-44YRPSZ7.js';
|
|
6
|
-
import '../../chunk-3R3QVJCB.js';
|
|
7
|
-
import '../../chunk-DY5C44UP.js';
|
|
8
6
|
import '../../chunk-XBFUROAY.js';
|
|
9
7
|
import '../../chunk-B4K4BXEF.js';
|
|
8
|
+
import '../../chunk-DY5C44UP.js';
|
|
9
|
+
import '../../chunk-J2DEWIYY.js';
|
|
10
10
|
import '../../chunk-B6S6LTWT.js';
|
|
11
11
|
import '../../chunk-5732TWQF.js';
|
|
12
12
|
import '../../chunk-7PWBC4BY.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
1
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-O6BVMDW4.js';
|
|
2
|
+
import '../../chunk-TBJBVEIP.js';
|
|
2
3
|
import '../../chunk-X6AJ5HEI.js';
|
|
3
4
|
import '../../chunk-N2WBUCVY.js';
|
|
4
5
|
import '../../chunk-VU4GFGDG.js';
|
|
5
|
-
import '../../chunk-TBJBVEIP.js';
|
|
6
6
|
import '../../chunk-K24AQV4R.js';
|
|
7
7
|
import '../../chunk-XBFUROAY.js';
|
|
8
8
|
import '../../chunk-B4K4BXEF.js';
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { EmptyState } from '../../chunk-YD7V2HGZ.js';
|
|
2
|
-
import { Table, TableHeader, TableRow, TableHead, TableBody, TableCell } from '../../chunk-IJ5ALJGA.js';
|
|
3
1
|
import { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuCheckboxItem } from '../../chunk-LMKUKCTN.js';
|
|
4
|
-
import { Flex, densityClass } from '../../chunk-INIIF7F7.js';
|
|
5
2
|
import { SearchInput } from '../../chunk-IESBK6XZ.js';
|
|
6
|
-
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from '../../chunk-
|
|
3
|
+
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from '../../chunk-LCVXUCMB.js';
|
|
4
|
+
import '../../chunk-2RGPEFAW.js';
|
|
5
|
+
import '../../chunk-K24AQV4R.js';
|
|
6
|
+
import { EmptyState } from '../../chunk-YD7V2HGZ.js';
|
|
7
7
|
import { Checkbox } from '../../chunk-BE6GJGKJ.js';
|
|
8
8
|
import '../../chunk-44YRPSZ7.js';
|
|
9
|
-
import '../../chunk-
|
|
10
|
-
import '../../chunk-
|
|
11
|
-
import '../../chunk-DY5C44UP.js';
|
|
9
|
+
import { Table, TableHeader, TableRow, TableHead, TableBody, TableCell } from '../../chunk-IJ5ALJGA.js';
|
|
10
|
+
import { Flex, densityClass } from '../../chunk-INIIF7F7.js';
|
|
12
11
|
import { Button } from '../../chunk-XBFUROAY.js';
|
|
13
12
|
import { tableCellPaddingClass, tableRowHeightClass } from '../../chunk-B4K4BXEF.js';
|
|
13
|
+
import '../../chunk-DY5C44UP.js';
|
|
14
14
|
import { useTranslation } from '../../chunk-B6S6LTWT.js';
|
|
15
15
|
import '../../chunk-5732TWQF.js';
|
|
16
16
|
import '../../chunk-7PWBC4BY.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-
|
|
2
|
-
import '../../chunk-INIIF7F7.js';
|
|
1
|
+
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-D4JX6O2W.js';
|
|
3
2
|
import '../../chunk-X6AJ5HEI.js';
|
|
3
|
+
import '../../chunk-INIIF7F7.js';
|
|
4
4
|
import '../../chunk-XBFUROAY.js';
|
|
5
5
|
import '../../chunk-B6S6LTWT.js';
|
|
6
6
|
import '../../chunk-5732TWQF.js';
|
|
@@ -3,13 +3,13 @@ export { Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFoot
|
|
|
3
3
|
export { sonnerToast as toast } from '../../chunk-ES4Q3KGL.js';
|
|
4
4
|
export { Skeleton, SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-2BR7KFCP.js';
|
|
5
5
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
6
|
-
export {
|
|
7
|
-
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-MSRJC3RT.js';
|
|
8
|
-
import '../../chunk-INIIF7F7.js';
|
|
6
|
+
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-D4JX6O2W.js';
|
|
9
7
|
import '../../chunk-X6AJ5HEI.js';
|
|
10
8
|
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Dialog, DialogAction, DialogBody, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from '../../chunk-N2WBUCVY.js';
|
|
11
9
|
import '../../chunk-VU4GFGDG.js';
|
|
10
|
+
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
12
11
|
import '../../chunk-K24AQV4R.js';
|
|
12
|
+
import '../../chunk-INIIF7F7.js';
|
|
13
13
|
import '../../chunk-XBFUROAY.js';
|
|
14
14
|
import '../../chunk-B4K4BXEF.js';
|
|
15
15
|
import '../../chunk-B6S6LTWT.js';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export { AppShell, Breadcrumb, PageContainer, Sidebar, SidebarHeader, SidebarItem, SidebarSection, SplitPane, Topbar } from '../../chunk-
|
|
2
|
-
import '../../chunk-DV52WNXO.js';
|
|
1
|
+
export { AppShell, Breadcrumb, PageContainer, Sidebar, SidebarHeader, SidebarItem, SidebarSection, SplitPane, Topbar } from '../../chunk-7WKODMCZ.js';
|
|
3
2
|
export { AspectRatio, Separator } from '../../chunk-XK3M3VRR.js';
|
|
4
3
|
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../../chunk-W4REF4TD.js';
|
|
5
|
-
import '../../chunk-LMKUKCTN.js';
|
|
6
4
|
import '../../chunk-32WO3YLB.js';
|
|
5
|
+
import '../../chunk-LMKUKCTN.js';
|
|
6
|
+
import '../../chunk-DV52WNXO.js';
|
|
7
7
|
export { Flex } from '../../chunk-INIIF7F7.js';
|
|
8
8
|
import '../../chunk-DY5C44UP.js';
|
|
9
9
|
import '../../chunk-B6S6LTWT.js';
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
export { AppSettingPicker, Toolbar, ToolbarGroup } from '../../chunk-
|
|
1
|
+
export { AppSettingPicker, Toolbar, ToolbarGroup } from '../../chunk-2RWFDQFE.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, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-
|
|
4
|
+
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-SYNDTT2J.js';
|
|
5
5
|
export { Steps } from '../../chunk-QROC2RMH.js';
|
|
6
6
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
7
7
|
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from '../../chunk-HL3G4SVG.js';
|
|
8
8
|
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from '../../chunk-LMKUKCTN.js';
|
|
9
|
-
import '../../chunk-
|
|
10
|
-
import '../../chunk-
|
|
9
|
+
import '../../chunk-LCVXUCMB.js';
|
|
10
|
+
import '../../chunk-2RGPEFAW.js';
|
|
11
11
|
import '../../chunk-K24AQV4R.js';
|
|
12
|
-
import '../../chunk-DY5C44UP.js';
|
|
13
12
|
import '../../chunk-XBFUROAY.js';
|
|
14
13
|
import '../../chunk-B4K4BXEF.js';
|
|
14
|
+
import '../../chunk-DY5C44UP.js';
|
|
15
15
|
import '../../chunk-B6S6LTWT.js';
|
|
16
16
|
import '../../chunk-5732TWQF.js';
|
|
17
17
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
3
|
-
import '../../chunk-
|
|
1
|
+
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-SYNDTT2J.js';
|
|
2
|
+
import '../../chunk-LCVXUCMB.js';
|
|
3
|
+
import '../../chunk-2RGPEFAW.js';
|
|
4
4
|
import '../../chunk-K24AQV4R.js';
|
|
5
|
-
import '../../chunk-DY5C44UP.js';
|
|
6
5
|
import '../../chunk-XBFUROAY.js';
|
|
7
6
|
import '../../chunk-B4K4BXEF.js';
|
|
7
|
+
import '../../chunk-DY5C44UP.js';
|
|
8
8
|
import '../../chunk-B6S6LTWT.js';
|
|
9
9
|
import '../../chunk-5732TWQF.js';
|
|
10
10
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { AlertQueryError } from '../../chunk-
|
|
2
|
-
import '../../chunk-INIIF7F7.js';
|
|
1
|
+
import { AlertQueryError } from '../../chunk-D4JX6O2W.js';
|
|
3
2
|
import '../../chunk-X6AJ5HEI.js';
|
|
3
|
+
import '../../chunk-INIIF7F7.js';
|
|
4
4
|
import { Button } from '../../chunk-XBFUROAY.js';
|
|
5
5
|
import { useTranslation } from '../../chunk-B6S6LTWT.js';
|
|
6
6
|
import '../../chunk-5732TWQF.js';
|
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
export { Avatar, AvatarFallback, AvatarImage } from '../../chunk-QTUJSRDH.js';
|
|
2
2
|
export { Card, CardAction, CardContent, CardCover, CardDescription, CardFooter, CardHeader, CardTitle, StatCard } from '../../chunk-QVBOICFU.js';
|
|
3
3
|
export { Carousel, CarouselContent, CarouselDots, CarouselItem, CarouselNext, CarouselPrevious, useCarousel } from '../../chunk-NZBAFFWP.js';
|
|
4
|
-
export { Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-5LTW2LWF.js';
|
|
5
4
|
export { PasswordStrength, Toggle, ToggleGroup, ToggleGroupItem, toggleVariants, usePasswordStrength } from '../../chunk-VSUYVT2Q.js';
|
|
6
|
-
export {
|
|
7
|
-
export { TimePicker } from '../../chunk-2JOJYHG2.js';
|
|
5
|
+
export { TimePicker } from '../../chunk-65RWSIZF.js';
|
|
8
6
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-S2IJKT3D.js';
|
|
9
7
|
export { Switch } from '../../chunk-I7NQ2LIL.js';
|
|
10
8
|
export { Textarea } from '../../chunk-Q3KUZG4P.js';
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
14
|
-
export {
|
|
9
|
+
export { TimeInput } from '../../chunk-R2TXLS7S.js';
|
|
10
|
+
export { ColorPicker } from '../../chunk-ION2KFXK.js';
|
|
11
|
+
export { DatePicker } from '../../chunk-3VFNWVR7.js';
|
|
12
|
+
export { DateRangePicker } from '../../chunk-YXVJFYQE.js';
|
|
13
|
+
export { Calendar } from '../../chunk-NU2SOVTU.js';
|
|
14
|
+
export { Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-5LTW2LWF.js';
|
|
15
15
|
export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from '../../chunk-B73NA66T.js';
|
|
16
16
|
export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport } from '../../chunk-WGWI7EGL.js';
|
|
17
|
-
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-
|
|
17
|
+
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-SYNDTT2J.js';
|
|
18
18
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
19
|
+
export { AspectRatio, Separator } from '../../chunk-XK3M3VRR.js';
|
|
20
|
+
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../../chunk-W4REF4TD.js';
|
|
19
21
|
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from '../../chunk-HL3G4SVG.js';
|
|
20
|
-
export {
|
|
22
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-O6BVMDW4.js';
|
|
23
|
+
export { Slider } from '../../chunk-TBJBVEIP.js';
|
|
21
24
|
export { Skeleton } from '../../chunk-2BR7KFCP.js';
|
|
22
25
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
23
|
-
export {
|
|
24
|
-
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-MSRJC3RT.js';
|
|
25
|
-
import '../../chunk-INIIF7F7.js';
|
|
26
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-6SZKFJYY.js';
|
|
26
|
+
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-D4JX6O2W.js';
|
|
27
27
|
import '../../chunk-X6AJ5HEI.js';
|
|
28
28
|
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Dialog, DialogAction, DialogBody, DialogCancel, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger } from '../../chunk-N2WBUCVY.js';
|
|
29
29
|
import '../../chunk-VU4GFGDG.js';
|
|
30
|
-
export {
|
|
31
|
-
export {
|
|
32
|
-
export {
|
|
30
|
+
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
31
|
+
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from '../../chunk-LMKUKCTN.js';
|
|
32
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-LCVXUCMB.js';
|
|
33
|
+
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-2RGPEFAW.js';
|
|
34
|
+
export { Input } from '../../chunk-K24AQV4R.js';
|
|
33
35
|
export { Checkbox } from '../../chunk-BE6GJGKJ.js';
|
|
34
36
|
import '../../chunk-44YRPSZ7.js';
|
|
35
|
-
export {
|
|
36
|
-
|
|
37
|
-
export { DatePicker } from '../../chunk-76YSDJDP.js';
|
|
38
|
-
export { Input } from '../../chunk-K24AQV4R.js';
|
|
39
|
-
export { DateRangePicker } from '../../chunk-YXVJFYQE.js';
|
|
40
|
-
export { Calendar } from '../../chunk-NU2SOVTU.js';
|
|
41
|
-
export { Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger } from '../../chunk-DY5C44UP.js';
|
|
37
|
+
export { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '../../chunk-IJ5ALJGA.js';
|
|
38
|
+
import '../../chunk-INIIF7F7.js';
|
|
42
39
|
export { Button, buttonVariants } from '../../chunk-XBFUROAY.js';
|
|
40
|
+
export { Badge } from '../../chunk-HIEGUYPP.js';
|
|
43
41
|
import '../../chunk-B4K4BXEF.js';
|
|
42
|
+
export { Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger } from '../../chunk-DY5C44UP.js';
|
|
43
|
+
export { ScrollArea, ScrollBar } from '../../chunk-J2DEWIYY.js';
|
|
44
44
|
import '../../chunk-B6S6LTWT.js';
|
|
45
45
|
import '../../chunk-5732TWQF.js';
|
|
46
46
|
export { Label } from '../../chunk-7PWBC4BY.js';
|
package/dist/form/index.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
import './chunk-
|
|
2
|
-
import './chunk-5LTW2LWF.js';
|
|
3
|
-
import './chunk-7PBKPDBJ.js';
|
|
1
|
+
import './chunk-57VDEN64.js';
|
|
4
2
|
import './chunk-VSUYVT2Q.js';
|
|
5
|
-
import './chunk-
|
|
6
|
-
import './chunk-2JOJYHG2.js';
|
|
3
|
+
import './chunk-65RWSIZF.js';
|
|
7
4
|
import './chunk-S2IJKT3D.js';
|
|
8
5
|
import './chunk-I7NQ2LIL.js';
|
|
9
6
|
import './chunk-Q3KUZG4P.js';
|
|
7
|
+
import './chunk-R2TXLS7S.js';
|
|
8
|
+
import './chunk-ION2KFXK.js';
|
|
9
|
+
import './chunk-3VFNWVR7.js';
|
|
10
|
+
import './chunk-YXVJFYQE.js';
|
|
11
|
+
import './chunk-NU2SOVTU.js';
|
|
12
|
+
import './chunk-2H65B4JA.js';
|
|
13
|
+
import './chunk-5LTW2LWF.js';
|
|
10
14
|
import './chunk-GJXOBDER.js';
|
|
11
|
-
export {
|
|
12
|
-
export { PageContainer } from './chunk-E3Z3XCQR.js';
|
|
13
|
-
import './chunk-DV52WNXO.js';
|
|
14
|
-
import './chunk-XK3M3VRR.js';
|
|
15
|
-
import './chunk-W4REF4TD.js';
|
|
16
|
-
export { Badge } from './chunk-HIEGUYPP.js';
|
|
17
|
-
export { EmptyState } from './chunk-YD7V2HGZ.js';
|
|
18
|
-
import './chunk-IJ5ALJGA.js';
|
|
19
|
-
export { Toolbar, ToolbarGroup } from './chunk-3UTHNXKB.js';
|
|
15
|
+
export { Toolbar, ToolbarGroup } from './chunk-2RWFDQFE.js';
|
|
20
16
|
import './chunk-B73NA66T.js';
|
|
21
17
|
import './chunk-WGWI7EGL.js';
|
|
22
|
-
export { Pagination } from './chunk-
|
|
18
|
+
export { Pagination } from './chunk-SYNDTT2J.js';
|
|
23
19
|
export { Steps } from './chunk-QROC2RMH.js';
|
|
24
20
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from './chunk-V3N266PT.js';
|
|
21
|
+
export { PageContainer } from './chunk-7WKODMCZ.js';
|
|
22
|
+
import './chunk-XK3M3VRR.js';
|
|
23
|
+
import './chunk-W4REF4TD.js';
|
|
25
24
|
import './chunk-HL3G4SVG.js';
|
|
26
|
-
|
|
25
|
+
export { Transfer } from './chunk-R4AB4S3E.js';
|
|
26
|
+
export { TreeSelect } from './chunk-5YYENG2T.js';
|
|
27
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from './chunk-O6BVMDW4.js';
|
|
28
|
+
import './chunk-TBJBVEIP.js';
|
|
29
|
+
export { Cascader } from './chunk-OLOXW652.js';
|
|
30
|
+
import './chunk-SMLKNECP.js';
|
|
27
31
|
export { sonnerToast as toast } from './chunk-ES4Q3KGL.js';
|
|
28
32
|
export { SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from './chunk-2BR7KFCP.js';
|
|
29
33
|
import './chunk-32WO3YLB.js';
|
|
30
|
-
export {
|
|
31
|
-
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from './chunk-MSRJC3RT.js';
|
|
32
|
-
export { Flex } from './chunk-INIIF7F7.js';
|
|
33
|
-
export { Transfer } from './chunk-IRBI2EZ2.js';
|
|
34
|
-
export { SearchInput } from './chunk-IESBK6XZ.js';
|
|
35
|
-
export { TreeSelect } from './chunk-TRBD4RXJ.js';
|
|
36
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from './chunk-6SZKFJYY.js';
|
|
34
|
+
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from './chunk-D4JX6O2W.js';
|
|
37
35
|
export { formatBytes, formatCurrency, humanError, shortId } from './chunk-X6AJ5HEI.js';
|
|
38
36
|
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from './chunk-N2WBUCVY.js';
|
|
39
37
|
import './chunk-VU4GFGDG.js';
|
|
40
|
-
|
|
41
|
-
import './chunk-
|
|
42
|
-
export {
|
|
43
|
-
import './chunk-
|
|
44
|
-
import './chunk-
|
|
38
|
+
export { Toaster } from './chunk-TO7URV7U.js';
|
|
39
|
+
import './chunk-LMKUKCTN.js';
|
|
40
|
+
export { SearchInput } from './chunk-IESBK6XZ.js';
|
|
41
|
+
import './chunk-LCVXUCMB.js';
|
|
42
|
+
import './chunk-2RGPEFAW.js';
|
|
43
|
+
import './chunk-K24AQV4R.js';
|
|
44
|
+
export { DataTable, Descriptions } from './chunk-CXTSEQ6R.js';
|
|
45
|
+
import './chunk-DV52WNXO.js';
|
|
46
|
+
export { EmptyState } from './chunk-YD7V2HGZ.js';
|
|
45
47
|
import './chunk-BE6GJGKJ.js';
|
|
46
48
|
export { Field } from './chunk-44YRPSZ7.js';
|
|
47
|
-
import './chunk-
|
|
48
|
-
|
|
49
|
-
import './chunk-76YSDJDP.js';
|
|
50
|
-
import './chunk-K24AQV4R.js';
|
|
51
|
-
import './chunk-YXVJFYQE.js';
|
|
52
|
-
import './chunk-NU2SOVTU.js';
|
|
53
|
-
import './chunk-DY5C44UP.js';
|
|
49
|
+
import './chunk-IJ5ALJGA.js';
|
|
50
|
+
export { Flex } from './chunk-INIIF7F7.js';
|
|
54
51
|
import './chunk-XBFUROAY.js';
|
|
52
|
+
export { Badge } from './chunk-HIEGUYPP.js';
|
|
55
53
|
import './chunk-B4K4BXEF.js';
|
|
54
|
+
import './chunk-DY5C44UP.js';
|
|
55
|
+
import './chunk-J2DEWIYY.js';
|
|
56
56
|
import './chunk-B6S6LTWT.js';
|
|
57
57
|
export { formatDate } from './chunk-5732TWQF.js';
|
|
58
|
-
export { FormField } from './chunk-
|
|
58
|
+
export { FormField } from './chunk-LBYSX3VM.js';
|
|
59
59
|
import './chunk-C3PKEV6S.js';
|
|
60
60
|
import './chunk-7PWBC4BY.js';
|
|
61
61
|
export { useDebouncedValue, useTimeoutFlag } from './chunk-LFW37FGG.js';
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
border-radius: var(--radius-md);
|
|
13
13
|
border-width: 1px;
|
|
14
14
|
padding: var(--alert-space-inset);
|
|
15
|
-
font-size: var(--font-size-
|
|
15
|
+
font-size: var(--font-size-base);
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
[data-slot="alert"][data-tone="default"],
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
[data-slot="alert-title"] {
|
|
100
|
-
font-size: var(--font-size-
|
|
100
|
+
font-size: var(--font-size-base);
|
|
101
101
|
font-weight: var(--font-weight-medium);
|
|
102
102
|
line-height: 1;
|
|
103
103
|
}
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
|
|
121
121
|
[data-slot="alert-description"] {
|
|
122
122
|
margin-top: var(--space-1);
|
|
123
|
-
font-size: var(--font-size-
|
|
123
|
+
font-size: var(--font-size-base);
|
|
124
124
|
color: hsl(var(--muted-foreground));
|
|
125
125
|
overflow-wrap: break-word;
|
|
126
126
|
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
padding: var(--badge-space-y) var(--badge-space-x);
|
|
15
15
|
border-radius: var(--radius-md);
|
|
16
16
|
border-width: 1px;
|
|
17
|
-
font-size: var(--font-size
|
|
17
|
+
font-size: var(--badge-font-size);
|
|
18
18
|
font-weight: var(--font-weight-medium);
|
|
19
19
|
/* A status chip must read as one unit — never wrap its label across lines,
|
|
20
20
|
* especially inside narrow table cells. */
|
package/dist/styles/control.css
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
gap: var(--space-inline-xs);
|
|
11
11
|
border-radius: var(--radius-md);
|
|
12
12
|
color: hsl(var(--foreground));
|
|
13
|
-
font-size: var(--font-size-
|
|
13
|
+
font-size: var(--font-size-base);
|
|
14
14
|
font-weight: var(--font-weight-medium);
|
|
15
15
|
transition:
|
|
16
16
|
background-color 150ms ease,
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
.ui-button--default-size {
|
|
152
152
|
height: var(--control-height);
|
|
153
153
|
padding-inline: var(--control-padding-x);
|
|
154
|
-
font-size: var(--font-size-
|
|
154
|
+
font-size: var(--font-size-base);
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
.ui-button--sm {
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
.ui-button--lg {
|
|
180
180
|
height: var(--control-height-lg);
|
|
181
181
|
padding-inline: var(--space-8);
|
|
182
|
-
font-size: var(--font-size-
|
|
182
|
+
font-size: var(--font-size-base);
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
.ui-button--icon {
|
|
@@ -192,13 +192,13 @@
|
|
|
192
192
|
height: var(--control-height);
|
|
193
193
|
padding-inline-start: var(--control-padding-x);
|
|
194
194
|
padding-inline-end: var(--control-padding-x);
|
|
195
|
-
font-size: var(--font-size-
|
|
195
|
+
font-size: var(--font-size-base);
|
|
196
196
|
}
|
|
197
197
|
|
|
198
198
|
.ui-control-multiline {
|
|
199
199
|
min-height: calc(var(--control-height) * 2.75);
|
|
200
200
|
padding: var(--space-2) var(--control-padding-x);
|
|
201
|
-
font-size: var(--font-size-
|
|
201
|
+
font-size: var(--font-size-base);
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
.ui-table-row {
|
|
@@ -241,7 +241,7 @@
|
|
|
241
241
|
|
|
242
242
|
.ui-choice-label {
|
|
243
243
|
cursor: pointer;
|
|
244
|
-
font-size: var(--font-size-
|
|
244
|
+
font-size: var(--font-size-base);
|
|
245
245
|
font-weight: var(--font-weight-normal);
|
|
246
246
|
}
|
|
247
247
|
|
|
@@ -467,7 +467,7 @@
|
|
|
467
467
|
box-shadow: none;
|
|
468
468
|
outline: none;
|
|
469
469
|
color: hsl(var(--foreground));
|
|
470
|
-
font-size: var(--font-size-
|
|
470
|
+
font-size: var(--font-size-base);
|
|
471
471
|
}
|
|
472
472
|
|
|
473
473
|
.ui-command-input::placeholder {
|
|
@@ -488,7 +488,7 @@
|
|
|
488
488
|
.ui-command-empty {
|
|
489
489
|
padding-block: var(--space-6);
|
|
490
490
|
text-align: center;
|
|
491
|
-
font-size: var(--font-size-
|
|
491
|
+
font-size: var(--font-size-base);
|
|
492
492
|
}
|
|
493
493
|
|
|
494
494
|
.ui-command-group {
|
|
@@ -512,7 +512,7 @@
|
|
|
512
512
|
align-items: center;
|
|
513
513
|
border-radius: calc(var(--control-radius) - 2px);
|
|
514
514
|
padding: var(--command-item-padding-y) var(--command-item-padding-x);
|
|
515
|
-
font-size: var(--font-size-
|
|
515
|
+
font-size: var(--font-size-base);
|
|
516
516
|
outline: none;
|
|
517
517
|
}
|
|
518
518
|
|
|
@@ -625,7 +625,7 @@
|
|
|
625
625
|
height: var(--control-height);
|
|
626
626
|
align-items: center;
|
|
627
627
|
justify-content: center;
|
|
628
|
-
font-size: var(--font-size-
|
|
628
|
+
font-size: var(--font-size-base);
|
|
629
629
|
border: 1px solid hsl(var(--border));
|
|
630
630
|
border-inline-start-width: 0;
|
|
631
631
|
background: hsl(var(--background));
|
|
@@ -788,7 +788,7 @@
|
|
|
788
788
|
border: 0;
|
|
789
789
|
outline: none;
|
|
790
790
|
background: transparent;
|
|
791
|
-
font-size: var(--font-size-
|
|
791
|
+
font-size: var(--font-size-base);
|
|
792
792
|
color: inherit;
|
|
793
793
|
}
|
|
794
794
|
|
|
@@ -822,7 +822,7 @@
|
|
|
822
822
|
display: inline-flex;
|
|
823
823
|
align-items: center;
|
|
824
824
|
color: hsl(var(--muted-foreground));
|
|
825
|
-
font-size: var(--font-size-
|
|
825
|
+
font-size: var(--font-size-base);
|
|
826
826
|
pointer-events: none;
|
|
827
827
|
}
|
|
828
828
|
.ui-number-input-affix:first-of-type {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
border-radius: var(--radius-pill);
|
|
12
12
|
background: hsl(var(--muted));
|
|
13
13
|
color: hsl(var(--muted-foreground));
|
|
14
|
-
font-size: var(--font-size-
|
|
14
|
+
font-size: var(--font-size-base);
|
|
15
15
|
font-weight: var(--font-weight-medium);
|
|
16
16
|
}
|
|
17
17
|
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
|
|
192
192
|
.ui-timeline-note {
|
|
193
193
|
margin-top: var(--space-1);
|
|
194
|
-
font-size: var(--font-size-
|
|
194
|
+
font-size: var(--font-size-base);
|
|
195
195
|
}
|
|
196
196
|
}
|
|
197
197
|
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
}
|
|
240
240
|
.ui-accordion-content {
|
|
241
241
|
overflow: hidden;
|
|
242
|
-
font-size: var(--font-size-
|
|
242
|
+
font-size: var(--font-size-base);
|
|
243
243
|
}
|
|
244
244
|
.ui-accordion-content-inner {
|
|
245
245
|
padding-bottom: var(--space-4);
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
border-radius: var(--radius-sm);
|
|
38
38
|
padding-inline: var(--space-2);
|
|
39
39
|
padding-block: var(--space-2);
|
|
40
|
-
font-size: var(--font-size-
|
|
40
|
+
font-size: var(--font-size-base);
|
|
41
41
|
outline: none;
|
|
42
42
|
}
|
|
43
43
|
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
background: hsl(var(--background));
|
|
78
78
|
padding-inline: var(--space-3);
|
|
79
79
|
padding-block: 0;
|
|
80
|
-
font-size: var(--font-size-
|
|
80
|
+
font-size: var(--font-size-base);
|
|
81
81
|
color: hsl(var(--foreground));
|
|
82
82
|
outline: none;
|
|
83
83
|
}
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
|
|
130
130
|
.ui-password-strength-label {
|
|
131
131
|
color: hsl(var(--foreground));
|
|
132
|
-
font-size: var(--font-size-
|
|
132
|
+
font-size: var(--font-size-base);
|
|
133
133
|
font-weight: var(--font-weight-medium);
|
|
134
134
|
}
|
|
135
135
|
|
package/dist/styles/layout.css
CHANGED
|
@@ -354,7 +354,7 @@
|
|
|
354
354
|
}
|
|
355
355
|
|
|
356
356
|
.ui-page-subtitle {
|
|
357
|
-
font-size: var(--font-size-
|
|
357
|
+
font-size: var(--font-size-base);
|
|
358
358
|
color: hsl(var(--muted-foreground));
|
|
359
359
|
margin-top: var(--space-1);
|
|
360
360
|
}
|
|
@@ -451,7 +451,7 @@
|
|
|
451
451
|
}
|
|
452
452
|
|
|
453
453
|
.ui-empty-state-description {
|
|
454
|
-
font-size: var(--font-size-
|
|
454
|
+
font-size: var(--font-size-base);
|
|
455
455
|
color: hsl(var(--muted-foreground));
|
|
456
456
|
max-width: 28rem;
|
|
457
457
|
}
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
display: flex;
|
|
31
31
|
align-items: center;
|
|
32
32
|
gap: var(--space-2);
|
|
33
|
-
font-size: var(--font-size-
|
|
33
|
+
font-size: var(--font-size-base);
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
.ui-context-menu-item,
|
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
padding-inline: var(--space-2);
|
|
209
209
|
padding-block: var(--space-2);
|
|
210
210
|
height: var(--control-height);
|
|
211
|
-
font-size: var(--font-size-
|
|
211
|
+
font-size: var(--font-size-base);
|
|
212
212
|
display: inline-flex;
|
|
213
213
|
align-items: center;
|
|
214
214
|
gap: var(--space-1);
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
border-bottom: 1px solid hsl(var(--border));
|
|
100
100
|
padding: var(--space-2) var(--space-4);
|
|
101
101
|
color: hsl(var(--muted-foreground));
|
|
102
|
-
font-size: var(--font-size-
|
|
102
|
+
font-size: var(--font-size-base);
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
@media (max-width: 1023px) {
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
place-items: center;
|
|
157
157
|
border-radius: var(--radius);
|
|
158
158
|
color: white;
|
|
159
|
-
font-size:
|
|
159
|
+
font-size: var(--font-size-xs);
|
|
160
160
|
font-weight: 700;
|
|
161
161
|
}
|
|
162
162
|
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
|
|
170
170
|
.sb-product-name {
|
|
171
171
|
overflow: hidden;
|
|
172
|
-
font-size: var(--font-size-
|
|
172
|
+
font-size: var(--font-size-base);
|
|
173
173
|
font-weight: 700;
|
|
174
174
|
line-height: 1.2;
|
|
175
175
|
text-overflow: ellipsis;
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
color: hsl(var(--muted-foreground));
|
|
241
241
|
cursor: pointer;
|
|
242
242
|
font-family: inherit;
|
|
243
|
-
font-size: var(--font-size-
|
|
243
|
+
font-size: var(--font-size-base);
|
|
244
244
|
text-align: start;
|
|
245
245
|
}
|
|
246
246
|
|
|
@@ -410,7 +410,7 @@
|
|
|
410
410
|
border-radius: var(--radius-pill);
|
|
411
411
|
background: hsl(var(--secondary));
|
|
412
412
|
color: hsl(var(--muted-foreground));
|
|
413
|
-
font-size:
|
|
413
|
+
font-size: var(--font-size-2xs);
|
|
414
414
|
font-weight: 500;
|
|
415
415
|
}
|
|
416
416
|
|
|
@@ -433,7 +433,7 @@
|
|
|
433
433
|
|
|
434
434
|
.sb-user-name {
|
|
435
435
|
overflow: hidden;
|
|
436
|
-
font-size:
|
|
436
|
+
font-size: var(--font-size-xs);
|
|
437
437
|
font-weight: 500;
|
|
438
438
|
line-height: 1.3;
|
|
439
439
|
text-overflow: ellipsis;
|
|
@@ -502,7 +502,7 @@
|
|
|
502
502
|
color: hsl(var(--foreground));
|
|
503
503
|
cursor: pointer;
|
|
504
504
|
font: inherit;
|
|
505
|
-
font-size: var(--font-size-
|
|
505
|
+
font-size: var(--font-size-base);
|
|
506
506
|
}
|
|
507
507
|
|
|
508
508
|
.tb-chip:hover,
|
|
@@ -560,7 +560,7 @@
|
|
|
560
560
|
color: hsl(var(--muted-foreground));
|
|
561
561
|
cursor: pointer;
|
|
562
562
|
font: inherit;
|
|
563
|
-
font-size: var(--font-size-
|
|
563
|
+
font-size: var(--font-size-base);
|
|
564
564
|
}
|
|
565
565
|
|
|
566
566
|
.tb-search svg,
|
|
@@ -4,4 +4,7 @@
|
|
|
4
4
|
--badge-space-gap: var(--space-inline-xs);
|
|
5
5
|
--badge-space-x: var(--space-2);
|
|
6
6
|
--badge-space-y: var(--space-1);
|
|
7
|
+
/* Small-by-design (badge/pill/counter). A knob (rule #45) so a service can
|
|
8
|
+
* re-tune badge text without touching the global --font-size-xs step. */
|
|
9
|
+
--badge-font-size: var(--font-size-xs);
|
|
7
10
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@godxjp/ui",
|
|
3
|
-
"version": "13.9.
|
|
3
|
+
"version": "13.9.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "pnpm@10.29.1",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -266,8 +266,8 @@
|
|
|
266
266
|
"test:watch": "vitest",
|
|
267
267
|
"test:coverage": "vitest run --coverage",
|
|
268
268
|
"check:example-imports": "node scripts/check-example-imports.mjs",
|
|
269
|
-
"verify": "pnpm typecheck && pnpm lint && pnpm format && pnpm build && pnpm preview:build && pnpm check:example-imports && pnpm check:core-isolation && pnpm check:prop-vocabulary && pnpm check:token-tiers && pnpm check:control-sizing && pnpm check:rtl && pnpm check:mcp-sync && pnpm check:mcp-orphans && pnpm test",
|
|
270
|
-
"verify:release": "pnpm typecheck && pnpm lint && pnpm build && pnpm preview:build && pnpm check:example-imports && pnpm check:core-isolation && pnpm check:prop-vocabulary && pnpm check:token-tiers && pnpm check:control-sizing && pnpm check:rtl && pnpm check:mcp-sync && pnpm check:mcp-orphans && pnpm check:mcp-prop-sync && pnpm test",
|
|
269
|
+
"verify": "pnpm typecheck && pnpm lint && pnpm format && pnpm build && pnpm preview:build && pnpm check:example-imports && pnpm check:core-isolation && pnpm check:prop-vocabulary && pnpm check:token-tiers && pnpm check:control-sizing && pnpm check:rtl && pnpm check:typography && pnpm check:mcp-sync && pnpm check:mcp-orphans && pnpm test",
|
|
270
|
+
"verify:release": "pnpm typecheck && pnpm lint && pnpm build && pnpm preview:build && pnpm check:example-imports && pnpm check:core-isolation && pnpm check:prop-vocabulary && pnpm check:token-tiers && pnpm check:control-sizing && pnpm check:rtl && pnpm check:typography && pnpm check:mcp-sync && pnpm check:mcp-orphans && pnpm check:mcp-prop-sync && pnpm test",
|
|
271
271
|
"check:mcp-sync": "node scripts/check-mcp-sync.mjs",
|
|
272
272
|
"check:mcp-orphans": "node scripts/check-mcp-orphans.mjs",
|
|
273
273
|
"check:mcp-prop-sync": "node scripts/check-mcp-prop-sync.mjs",
|
|
@@ -275,6 +275,7 @@
|
|
|
275
275
|
"check:token-tiers": "node scripts/check-token-tiers.mjs",
|
|
276
276
|
"check:control-sizing": "node scripts/check-control-sizing.mjs",
|
|
277
277
|
"check:rtl": "node scripts/check-rtl.mjs",
|
|
278
|
+
"check:typography": "node scripts/check-typography.mjs",
|
|
278
279
|
"check:core-isolation": "node scripts/check-core-isolation.mjs",
|
|
279
280
|
"release": "node scripts/release.mjs",
|
|
280
281
|
"preview": "node preview/scripts/kill-port.mjs && vite --config preview/vite.config.ts --port 6008 --strictPort",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Input } from './chunk-K24AQV4R.js';
|
|
2
1
|
import { Calendar } from './chunk-NU2SOVTU.js';
|
|
3
|
-
import {
|
|
2
|
+
import { Input } from './chunk-K24AQV4R.js';
|
|
4
3
|
import { Button } from './chunk-XBFUROAY.js';
|
|
4
|
+
import { Popover, PopoverAnchor, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
5
5
|
import { useTranslation, usePickerLocales } from './chunk-B6S6LTWT.js';
|
|
6
6
|
import { toIsoDate, parseDateInput } from './chunk-5732TWQF.js';
|
|
7
7
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Input } from './chunk-K24AQV4R.js';
|
|
2
|
-
import { Popover, PopoverAnchor, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
3
2
|
import { Button } from './chunk-XBFUROAY.js';
|
|
3
|
+
import { Popover, PopoverAnchor, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
4
4
|
import { useTranslation, usePickerLocales } from './chunk-B6S6LTWT.js';
|
|
5
5
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
6
6
|
import * as React from 'react';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Input } from './chunk-K24AQV4R.js';
|
|
2
|
-
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
3
2
|
import { Button } from './chunk-XBFUROAY.js';
|
|
3
|
+
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
4
4
|
import { useTranslation, usePickerLocales } from './chunk-B6S6LTWT.js';
|
|
5
5
|
import { normalizeHhmm, isValidHhmm } from './chunk-5732TWQF.js';
|
|
6
6
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Collapsible, CollapsibleTrigger, CollapsibleContent } from './chunk-DV52WNXO.js';
|
|
2
|
-
import { DropdownMenu, DropdownMenuTrigger } from './chunk-LMKUKCTN.js';
|
|
3
1
|
import { Tooltip, TooltipTrigger, TooltipContent } from './chunk-32WO3YLB.js';
|
|
2
|
+
import { DropdownMenu, DropdownMenuTrigger } from './chunk-LMKUKCTN.js';
|
|
3
|
+
import { Collapsible, CollapsibleTrigger, CollapsibleContent } from './chunk-DV52WNXO.js';
|
|
4
4
|
import { densityClass, pageContainerVariantClass } from './chunk-INIIF7F7.js';
|
|
5
5
|
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
6
6
|
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EmptyState } from './chunk-YD7V2HGZ.js';
|
|
2
|
+
import { Checkbox } from './chunk-BE6GJGKJ.js';
|
|
2
3
|
import { Table, TableHeader, TableRow, TableHead, TableBody, TableCell } from './chunk-IJ5ALJGA.js';
|
|
3
4
|
import { Flex, densityClass } from './chunk-INIIF7F7.js';
|
|
4
|
-
import { Checkbox } from './chunk-BE6GJGKJ.js';
|
|
5
5
|
import { Button } from './chunk-XBFUROAY.js';
|
|
6
6
|
import { tableCellPaddingClass, tableRowHeightClass, controlIconSmClass } from './chunk-B4K4BXEF.js';
|
|
7
7
|
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Flex } from './chunk-INIIF7F7.js';
|
|
2
1
|
import { humanError } from './chunk-X6AJ5HEI.js';
|
|
2
|
+
import { Flex } from './chunk-INIIF7F7.js';
|
|
3
3
|
import { Button } from './chunk-XBFUROAY.js';
|
|
4
4
|
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
5
5
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { Slider } from './chunk-TBJBVEIP.js';
|
|
1
2
|
import { formatBytes } from './chunk-X6AJ5HEI.js';
|
|
2
3
|
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogFooter } from './chunk-N2WBUCVY.js';
|
|
3
|
-
import { Slider } from './chunk-TBJBVEIP.js';
|
|
4
4
|
import { Button } from './chunk-XBFUROAY.js';
|
|
5
5
|
import { controlIconClass } from './chunk-B4K4BXEF.js';
|
|
6
6
|
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { SearchInput } from './chunk-IESBK6XZ.js';
|
|
2
1
|
import { reactNodeText } from './chunk-SMLKNECP.js';
|
|
3
|
-
import {
|
|
2
|
+
import { SearchInput } from './chunk-IESBK6XZ.js';
|
|
4
3
|
import { Checkbox } from './chunk-BE6GJGKJ.js';
|
|
5
4
|
import { Button } from './chunk-XBFUROAY.js';
|
|
5
|
+
import { ScrollArea } from './chunk-J2DEWIYY.js';
|
|
6
6
|
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
7
7
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
8
8
|
import * as React from 'react';
|