@godxjp/ui 13.9.1 → 13.9.3
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-SYNDTT2J.js → chunk-3JORZPS7.js} +1 -1
- package/dist/{chunk-LCVXUCMB.js → chunk-6S2ZU26B.js} +7 -6
- package/dist/{chunk-O6BVMDW4.js → chunk-OO5DZH45.js} +1 -1
- package/dist/{chunk-2RWFDQFE.js → chunk-RHPFCKB2.js} +1 -1
- package/dist/{chunk-R4AB4S3E.js → chunk-WY3VYUMX.js} +1 -1
- 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 +4 -4
- package/dist/components/data-entry/cascader.js +2 -2
- package/dist/components/data-entry/date-picker.js +1 -1
- package/dist/components/data-entry/date-range-picker.js +1 -1
- package/dist/components/data-entry/index.js +13 -13
- package/dist/components/data-entry/select.js +3 -3
- package/dist/components/data-entry/transfer.js +4 -4
- package/dist/components/data-entry/tree-select.js +3 -3
- package/dist/components/data-entry/upload.js +4 -4
- package/dist/components/data-grid/index.js +6 -6
- package/dist/components/feedback/dialog.js +3 -3
- package/dist/components/feedback/index.js +3 -3
- package/dist/components/layout/index.js +3 -3
- package/dist/components/navigation/index.js +6 -6
- package/dist/components/navigation/pagination.js +4 -4
- package/dist/components/ui/index.js +11 -11
- package/dist/index.js +21 -21
- package/dist/props/index.js +1 -1
- package/dist/styles/card-layout.css +1 -1
- package/dist/styles/control.css +7 -7
- package/dist/styles/data-display-layout.css +4 -4
- package/dist/styles/data-entry-layout.css +2 -2
- package/dist/styles/layout.css +1 -1
- package/dist/styles/navigation-layout.css +1 -1
- package/dist/styles/shell-layout.css +11 -11
- package/dist/styles/table-layout.css +1 -1
- package/dist/tokens/base.css +3 -0
- package/dist/tokens/components/card.css +1 -0
- package/dist/tokens/components/control.css +7 -0
- package/dist/tokens/components/data-display.css +8 -0
- package/dist/tokens/components/data-entry.css +6 -0
- package/dist/tokens/components/navigation.css +2 -0
- package/dist/tokens/components/shell.css +17 -0
- package/dist/tokens/components/table.css +1 -0
- package/package.json +5 -3
- package/dist/{chunk-5YYENG2T.js → chunk-EG3RDM6F.js} +1 -1
- package/dist/{chunk-OLOXW652.js → chunk-FQGGF7GQ.js} +1 -1
- package/dist/{chunk-7WKODMCZ.js → chunk-I6G4IO7V.js} +1 -1
- package/dist/{chunk-IESBK6XZ.js → chunk-LVLPNKJP.js} +1 -1
- package/dist/{chunk-CXTSEQ6R.js → chunk-NVTZ2EDW.js} +1 -1
- package/dist/{chunk-N2WBUCVY.js → chunk-RZ32HY5E.js} +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-
|
|
1
|
+
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-6S2ZU26B.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,8 +1,8 @@
|
|
|
1
|
-
import { Command, CommandList, CommandItem, CommandGroup } from './chunk-2RGPEFAW.js';
|
|
2
1
|
import { Input } from './chunk-K24AQV4R.js';
|
|
2
|
+
import { Command, CommandList, CommandItem, CommandGroup } from './chunk-2RGPEFAW.js';
|
|
3
3
|
import { Button } from './chunk-XBFUROAY.js';
|
|
4
|
-
import { controlTriggerClass, controlOpenRingClass } from './chunk-B4K4BXEF.js';
|
|
5
4
|
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
5
|
+
import { controlTriggerClass, controlOpenRingClass } from './chunk-B4K4BXEF.js';
|
|
6
6
|
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
7
7
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
8
8
|
import * as React from 'react';
|
|
@@ -192,7 +192,7 @@ function SearchSelect({
|
|
|
192
192
|
)
|
|
193
193
|
}
|
|
194
194
|
) }),
|
|
195
|
-
name ? /* @__PURE__ */ jsx("input", { type: "hidden", name, value }) : null,
|
|
195
|
+
name ? /* @__PURE__ */ jsx("input", { type: "hidden", name, value, readOnly: true }) : null,
|
|
196
196
|
/* @__PURE__ */ jsx(
|
|
197
197
|
PopoverContent,
|
|
198
198
|
{
|
|
@@ -219,7 +219,7 @@ function SearchSelect({
|
|
|
219
219
|
{
|
|
220
220
|
id: listId,
|
|
221
221
|
role: "listbox",
|
|
222
|
-
className: "min-h-0 flex-1 overflow-y-auto p-1",
|
|
222
|
+
className: "max-h-none min-h-0 flex-1 overflow-y-auto p-1",
|
|
223
223
|
onScroll,
|
|
224
224
|
children: [
|
|
225
225
|
grouped.map((group) => {
|
|
@@ -482,12 +482,13 @@ function DataSelect({
|
|
|
482
482
|
},
|
|
483
483
|
option.value
|
|
484
484
|
);
|
|
485
|
+
const isControlled = value !== void 0;
|
|
485
486
|
return /* @__PURE__ */ jsxs(
|
|
486
487
|
SelectPrimitive.Root,
|
|
487
488
|
{
|
|
488
489
|
"data-slot": "select",
|
|
489
|
-
value: value
|
|
490
|
-
defaultValue: defaultValue || void 0,
|
|
490
|
+
value: isControlled ? value : void 0,
|
|
491
|
+
defaultValue: isControlled ? void 0 : defaultValue || void 0,
|
|
491
492
|
onValueChange: (next) => onValueChange?.(
|
|
492
493
|
next,
|
|
493
494
|
options.find((option) => option.value === next)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Slider } from './chunk-TBJBVEIP.js';
|
|
2
2
|
import { formatBytes } from './chunk-X6AJ5HEI.js';
|
|
3
|
-
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogFooter } from './chunk-
|
|
3
|
+
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogFooter } from './chunk-RZ32HY5E.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,4 +1,4 @@
|
|
|
1
|
-
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-
|
|
1
|
+
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from './chunk-6S2ZU26B.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,5 +1,5 @@
|
|
|
1
|
+
import { SearchInput } from './chunk-LVLPNKJP.js';
|
|
1
2
|
import { reactNodeText } from './chunk-SMLKNECP.js';
|
|
2
|
-
import { SearchInput } from './chunk-IESBK6XZ.js';
|
|
3
3
|
import { Checkbox } from './chunk-BE6GJGKJ.js';
|
|
4
4
|
import { Button } from './chunk-XBFUROAY.js';
|
|
5
5
|
import { ScrollArea } from './chunk-J2DEWIYY.js';
|
|
@@ -1,49 +1,49 @@
|
|
|
1
1
|
import '../../chunk-GJXOBDER.js';
|
|
2
|
-
export { Toolbar, ToolbarGroup } from '../../chunk-
|
|
2
|
+
export { Toolbar, ToolbarGroup } from '../../chunk-RHPFCKB2.js';
|
|
3
|
+
export { Steps } from '../../chunk-QROC2RMH.js';
|
|
3
4
|
import '../../chunk-B73NA66T.js';
|
|
4
5
|
import '../../chunk-WGWI7EGL.js';
|
|
5
|
-
export { Pagination } from '../../chunk-
|
|
6
|
-
export { Steps } from '../../chunk-QROC2RMH.js';
|
|
6
|
+
export { Pagination } from '../../chunk-3JORZPS7.js';
|
|
7
7
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
8
|
-
export { PageContainer } from '../../chunk-
|
|
8
|
+
export { PageContainer } from '../../chunk-I6G4IO7V.js';
|
|
9
9
|
import '../../chunk-XK3M3VRR.js';
|
|
10
10
|
import '../../chunk-W4REF4TD.js';
|
|
11
11
|
import '../../chunk-HL3G4SVG.js';
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
14
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-O6BVMDW4.js';
|
|
12
|
+
export { TreeSelect } from '../../chunk-EG3RDM6F.js';
|
|
13
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-OO5DZH45.js';
|
|
15
14
|
import '../../chunk-TBJBVEIP.js';
|
|
16
|
-
export {
|
|
17
|
-
import '../../chunk-
|
|
15
|
+
export { Transfer } from '../../chunk-WY3VYUMX.js';
|
|
16
|
+
import '../../chunk-LMKUKCTN.js';
|
|
17
|
+
import '../../chunk-6S2ZU26B.js';
|
|
18
|
+
export { SearchInput } from '../../chunk-LVLPNKJP.js';
|
|
18
19
|
export { sonnerToast as toast } from '../../chunk-ES4Q3KGL.js';
|
|
19
20
|
export { SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-2BR7KFCP.js';
|
|
20
21
|
import '../../chunk-32WO3YLB.js';
|
|
21
22
|
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-D4JX6O2W.js';
|
|
22
23
|
export { formatBytes, formatCurrency, humanError, shortId } from '../../chunk-X6AJ5HEI.js';
|
|
23
|
-
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../../chunk-
|
|
24
|
+
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../../chunk-RZ32HY5E.js';
|
|
25
|
+
import '../../chunk-K24AQV4R.js';
|
|
24
26
|
import '../../chunk-VU4GFGDG.js';
|
|
25
27
|
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
import '../../chunk-LCVXUCMB.js';
|
|
28
|
+
export { Cascader } from '../../chunk-FQGGF7GQ.js';
|
|
29
|
+
import '../../chunk-SMLKNECP.js';
|
|
29
30
|
import '../../chunk-2RGPEFAW.js';
|
|
30
|
-
|
|
31
|
-
export { DataTable, Descriptions } from '../../chunk-CXTSEQ6R.js';
|
|
31
|
+
export { DataTable, Descriptions } from '../../chunk-NVTZ2EDW.js';
|
|
32
32
|
import '../../chunk-DV52WNXO.js';
|
|
33
33
|
export { EmptyState } from '../../chunk-YD7V2HGZ.js';
|
|
34
34
|
import '../../chunk-BE6GJGKJ.js';
|
|
35
35
|
export { Field } from '../../chunk-44YRPSZ7.js';
|
|
36
|
-
import '../../chunk-IJ5ALJGA.js';
|
|
37
36
|
export { Flex } from '../../chunk-INIIF7F7.js';
|
|
38
37
|
import '../../chunk-XBFUROAY.js';
|
|
39
38
|
export { Badge } from '../../chunk-HIEGUYPP.js';
|
|
40
|
-
import '../../chunk-B4K4BXEF.js';
|
|
41
39
|
import '../../chunk-DY5C44UP.js';
|
|
42
40
|
import '../../chunk-J2DEWIYY.js';
|
|
43
|
-
import '../../chunk-
|
|
44
|
-
|
|
41
|
+
import '../../chunk-IJ5ALJGA.js';
|
|
42
|
+
import '../../chunk-B4K4BXEF.js';
|
|
45
43
|
export { FormField } from '../../chunk-LBYSX3VM.js';
|
|
46
44
|
import '../../chunk-C3PKEV6S.js';
|
|
47
45
|
import '../../chunk-7PWBC4BY.js';
|
|
46
|
+
import '../../chunk-B6S6LTWT.js';
|
|
47
|
+
export { formatDate } from '../../chunk-5732TWQF.js';
|
|
48
48
|
export { useDebouncedValue, useTimeoutFlag } from '../../chunk-LFW37FGG.js';
|
|
49
49
|
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?: "md" | "compact" | null | undefined;
|
|
15
15
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
16
16
|
type CardProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof cardVariants> & {
|
|
17
17
|
size?: CardSize;
|
|
@@ -20,7 +20,7 @@ type CardProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof card
|
|
|
20
20
|
density?: CardDensity;
|
|
21
21
|
};
|
|
22
22
|
declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
23
|
-
size?: "
|
|
23
|
+
size?: "md" | "compact" | null | undefined;
|
|
24
24
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & {
|
|
25
25
|
size?: CardSize;
|
|
26
26
|
accent?: CardAccent;
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
export { 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-NVTZ2EDW.js';
|
|
5
5
|
export { Collapsible, CollapsibleContent, CollapsibleTrigger } from '../../chunk-DV52WNXO.js';
|
|
6
6
|
export { EmptyState } from '../../chunk-YD7V2HGZ.js';
|
|
7
7
|
import '../../chunk-BE6GJGKJ.js';
|
|
8
8
|
import '../../chunk-44YRPSZ7.js';
|
|
9
|
-
export { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '../../chunk-IJ5ALJGA.js';
|
|
10
9
|
import '../../chunk-INIIF7F7.js';
|
|
11
10
|
import '../../chunk-XBFUROAY.js';
|
|
12
11
|
import { Badge } from '../../chunk-HIEGUYPP.js';
|
|
13
12
|
export { Badge } from '../../chunk-HIEGUYPP.js';
|
|
14
|
-
import '../../chunk-B4K4BXEF.js';
|
|
15
13
|
export { Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger } from '../../chunk-DY5C44UP.js';
|
|
16
14
|
export { ScrollArea, ScrollBar } from '../../chunk-J2DEWIYY.js';
|
|
15
|
+
export { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '../../chunk-IJ5ALJGA.js';
|
|
16
|
+
import '../../chunk-B4K4BXEF.js';
|
|
17
|
+
import '../../chunk-7PWBC4BY.js';
|
|
17
18
|
import '../../chunk-B6S6LTWT.js';
|
|
18
19
|
import '../../chunk-5732TWQF.js';
|
|
19
|
-
import '../../chunk-7PWBC4BY.js';
|
|
20
20
|
import { cn } from '../../chunk-U7N2A7A3.js';
|
|
21
21
|
import * as React2 from 'react';
|
|
22
22
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { Cascader } from '../../chunk-
|
|
1
|
+
export { Cascader } from '../../chunk-FQGGF7GQ.js';
|
|
2
2
|
import '../../chunk-SMLKNECP.js';
|
|
3
3
|
import '../../chunk-2RGPEFAW.js';
|
|
4
4
|
import '../../chunk-XBFUROAY.js';
|
|
5
|
-
import '../../chunk-B4K4BXEF.js';
|
|
6
5
|
import '../../chunk-DY5C44UP.js';
|
|
7
6
|
import '../../chunk-J2DEWIYY.js';
|
|
7
|
+
import '../../chunk-B4K4BXEF.js';
|
|
8
8
|
import '../../chunk-B6S6LTWT.js';
|
|
9
9
|
import '../../chunk-5732TWQF.js';
|
|
10
10
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -2,8 +2,8 @@ export { DatePicker } from '../../chunk-3VFNWVR7.js';
|
|
|
2
2
|
import '../../chunk-NU2SOVTU.js';
|
|
3
3
|
import '../../chunk-K24AQV4R.js';
|
|
4
4
|
import '../../chunk-XBFUROAY.js';
|
|
5
|
-
import '../../chunk-B4K4BXEF.js';
|
|
6
5
|
import '../../chunk-DY5C44UP.js';
|
|
6
|
+
import '../../chunk-B4K4BXEF.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
3
|
import '../../chunk-XBFUROAY.js';
|
|
4
|
-
import '../../chunk-B4K4BXEF.js';
|
|
5
4
|
import '../../chunk-DY5C44UP.js';
|
|
5
|
+
import '../../chunk-B4K4BXEF.js';
|
|
6
6
|
import '../../chunk-B6S6LTWT.js';
|
|
7
7
|
import '../../chunk-5732TWQF.js';
|
|
8
8
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,37 +1,37 @@
|
|
|
1
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 { TimePicker } from '../../chunk-65RWSIZF.js';
|
|
4
3
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-S2IJKT3D.js';
|
|
5
4
|
export { Switch } from '../../chunk-I7NQ2LIL.js';
|
|
6
5
|
export { Textarea } from '../../chunk-Q3KUZG4P.js';
|
|
7
6
|
export { TimeInput } from '../../chunk-R2TXLS7S.js';
|
|
7
|
+
export { TimePicker } from '../../chunk-65RWSIZF.js';
|
|
8
8
|
export { ColorPicker } from '../../chunk-ION2KFXK.js';
|
|
9
9
|
export { DatePicker } from '../../chunk-3VFNWVR7.js';
|
|
10
10
|
export { DateRangePicker } from '../../chunk-YXVJFYQE.js';
|
|
11
11
|
export { Calendar } from '../../chunk-NU2SOVTU.js';
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
14
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-O6BVMDW4.js';
|
|
12
|
+
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from '../../chunk-EG3RDM6F.js';
|
|
13
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-OO5DZH45.js';
|
|
15
14
|
export { Slider } from '../../chunk-TBJBVEIP.js';
|
|
16
|
-
export {
|
|
17
|
-
|
|
15
|
+
export { Transfer } from '../../chunk-WY3VYUMX.js';
|
|
16
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-6S2ZU26B.js';
|
|
17
|
+
export { SearchInput } from '../../chunk-LVLPNKJP.js';
|
|
18
18
|
import '../../chunk-X6AJ5HEI.js';
|
|
19
|
-
import '../../chunk-
|
|
19
|
+
import '../../chunk-RZ32HY5E.js';
|
|
20
|
+
export { Input } from '../../chunk-K24AQV4R.js';
|
|
20
21
|
import '../../chunk-VU4GFGDG.js';
|
|
21
|
-
export {
|
|
22
|
-
|
|
22
|
+
export { Cascader } from '../../chunk-FQGGF7GQ.js';
|
|
23
|
+
import '../../chunk-SMLKNECP.js';
|
|
23
24
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-2RGPEFAW.js';
|
|
24
|
-
export { Input } from '../../chunk-K24AQV4R.js';
|
|
25
25
|
export { Checkbox, CheckboxGroup } from '../../chunk-BE6GJGKJ.js';
|
|
26
26
|
export { Field } from '../../chunk-44YRPSZ7.js';
|
|
27
27
|
import '../../chunk-XBFUROAY.js';
|
|
28
|
-
import '../../chunk-B4K4BXEF.js';
|
|
29
28
|
import '../../chunk-DY5C44UP.js';
|
|
30
29
|
import '../../chunk-J2DEWIYY.js';
|
|
31
|
-
import '../../chunk-
|
|
32
|
-
import '../../chunk-5732TWQF.js';
|
|
30
|
+
import '../../chunk-B4K4BXEF.js';
|
|
33
31
|
export { Form, FormField, useFormLayout } from '../../chunk-LBYSX3VM.js';
|
|
34
32
|
import '../../chunk-C3PKEV6S.js';
|
|
35
33
|
export { Label } from '../../chunk-7PWBC4BY.js';
|
|
34
|
+
import '../../chunk-B6S6LTWT.js';
|
|
35
|
+
import '../../chunk-5732TWQF.js';
|
|
36
36
|
import '../../chunk-LFW37FGG.js';
|
|
37
37
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-
|
|
2
|
-
import '../../chunk-2RGPEFAW.js';
|
|
1
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-6S2ZU26B.js';
|
|
3
2
|
import '../../chunk-K24AQV4R.js';
|
|
3
|
+
import '../../chunk-2RGPEFAW.js';
|
|
4
4
|
import '../../chunk-XBFUROAY.js';
|
|
5
|
-
import '../../chunk-B4K4BXEF.js';
|
|
6
5
|
import '../../chunk-DY5C44UP.js';
|
|
6
|
+
import '../../chunk-B4K4BXEF.js';
|
|
7
7
|
import '../../chunk-B6S6LTWT.js';
|
|
8
8
|
import '../../chunk-5732TWQF.js';
|
|
9
9
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export { Transfer } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
3
|
-
import '../../chunk-IESBK6XZ.js';
|
|
1
|
+
export { Transfer } from '../../chunk-WY3VYUMX.js';
|
|
2
|
+
import '../../chunk-LVLPNKJP.js';
|
|
4
3
|
import '../../chunk-K24AQV4R.js';
|
|
4
|
+
import '../../chunk-SMLKNECP.js';
|
|
5
5
|
import '../../chunk-BE6GJGKJ.js';
|
|
6
6
|
import '../../chunk-44YRPSZ7.js';
|
|
7
7
|
import '../../chunk-XBFUROAY.js';
|
|
8
8
|
import '../../chunk-J2DEWIYY.js';
|
|
9
|
+
import '../../chunk-7PWBC4BY.js';
|
|
9
10
|
import '../../chunk-B6S6LTWT.js';
|
|
10
11
|
import '../../chunk-5732TWQF.js';
|
|
11
|
-
import '../../chunk-7PWBC4BY.js';
|
|
12
12
|
import '../../chunk-LFW37FGG.js';
|
|
13
13
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from '../../chunk-
|
|
1
|
+
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from '../../chunk-EG3RDM6F.js';
|
|
2
2
|
import '../../chunk-SMLKNECP.js';
|
|
3
3
|
import '../../chunk-2RGPEFAW.js';
|
|
4
4
|
import '../../chunk-BE6GJGKJ.js';
|
|
5
5
|
import '../../chunk-44YRPSZ7.js';
|
|
6
6
|
import '../../chunk-XBFUROAY.js';
|
|
7
|
-
import '../../chunk-B4K4BXEF.js';
|
|
8
7
|
import '../../chunk-DY5C44UP.js';
|
|
9
8
|
import '../../chunk-J2DEWIYY.js';
|
|
9
|
+
import '../../chunk-B4K4BXEF.js';
|
|
10
|
+
import '../../chunk-7PWBC4BY.js';
|
|
10
11
|
import '../../chunk-B6S6LTWT.js';
|
|
11
12
|
import '../../chunk-5732TWQF.js';
|
|
12
|
-
import '../../chunk-7PWBC4BY.js';
|
|
13
13
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
1
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-OO5DZH45.js';
|
|
2
2
|
import '../../chunk-TBJBVEIP.js';
|
|
3
3
|
import '../../chunk-X6AJ5HEI.js';
|
|
4
|
-
import '../../chunk-
|
|
5
|
-
import '../../chunk-VU4GFGDG.js';
|
|
4
|
+
import '../../chunk-RZ32HY5E.js';
|
|
6
5
|
import '../../chunk-K24AQV4R.js';
|
|
6
|
+
import '../../chunk-VU4GFGDG.js';
|
|
7
7
|
import '../../chunk-XBFUROAY.js';
|
|
8
8
|
import '../../chunk-B4K4BXEF.js';
|
|
9
|
+
import '../../chunk-7PWBC4BY.js';
|
|
9
10
|
import '../../chunk-B6S6LTWT.js';
|
|
10
11
|
import '../../chunk-5732TWQF.js';
|
|
11
|
-
import '../../chunk-7PWBC4BY.js';
|
|
12
12
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuCheckboxItem } from '../../chunk-LMKUKCTN.js';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import '../../chunk-2RGPEFAW.js';
|
|
2
|
+
import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from '../../chunk-6S2ZU26B.js';
|
|
3
|
+
import { SearchInput } from '../../chunk-LVLPNKJP.js';
|
|
5
4
|
import '../../chunk-K24AQV4R.js';
|
|
5
|
+
import '../../chunk-2RGPEFAW.js';
|
|
6
6
|
import { EmptyState } from '../../chunk-YD7V2HGZ.js';
|
|
7
7
|
import { Checkbox } from '../../chunk-BE6GJGKJ.js';
|
|
8
8
|
import '../../chunk-44YRPSZ7.js';
|
|
9
|
-
import { Table, TableHeader, TableRow, TableHead, TableBody, TableCell } from '../../chunk-IJ5ALJGA.js';
|
|
10
9
|
import { Flex, densityClass } from '../../chunk-INIIF7F7.js';
|
|
11
10
|
import { Button } from '../../chunk-XBFUROAY.js';
|
|
12
|
-
import { tableCellPaddingClass, tableRowHeightClass } from '../../chunk-B4K4BXEF.js';
|
|
13
11
|
import '../../chunk-DY5C44UP.js';
|
|
12
|
+
import { Table, TableHeader, TableRow, TableHead, TableBody, TableCell } from '../../chunk-IJ5ALJGA.js';
|
|
13
|
+
import { tableCellPaddingClass, tableRowHeightClass } from '../../chunk-B4K4BXEF.js';
|
|
14
|
+
import '../../chunk-7PWBC4BY.js';
|
|
14
15
|
import { useTranslation } from '../../chunk-B6S6LTWT.js';
|
|
15
16
|
import '../../chunk-5732TWQF.js';
|
|
16
|
-
import '../../chunk-7PWBC4BY.js';
|
|
17
17
|
import '../../chunk-LFW37FGG.js';
|
|
18
18
|
import { cn } from '../../chunk-U7N2A7A3.js';
|
|
19
19
|
import * as React from 'react';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
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-
|
|
2
|
-
import '../../chunk-VU4GFGDG.js';
|
|
1
|
+
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-RZ32HY5E.js';
|
|
3
2
|
import '../../chunk-K24AQV4R.js';
|
|
3
|
+
import '../../chunk-VU4GFGDG.js';
|
|
4
4
|
import '../../chunk-XBFUROAY.js';
|
|
5
|
+
import '../../chunk-7PWBC4BY.js';
|
|
5
6
|
import '../../chunk-B6S6LTWT.js';
|
|
6
7
|
import '../../chunk-5732TWQF.js';
|
|
7
|
-
import '../../chunk-7PWBC4BY.js';
|
|
8
8
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -5,14 +5,14 @@ export { Skeleton, SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } f
|
|
|
5
5
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
6
6
|
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-D4JX6O2W.js';
|
|
7
7
|
import '../../chunk-X6AJ5HEI.js';
|
|
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-
|
|
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-RZ32HY5E.js';
|
|
9
|
+
import '../../chunk-K24AQV4R.js';
|
|
9
10
|
import '../../chunk-VU4GFGDG.js';
|
|
10
11
|
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
11
|
-
import '../../chunk-K24AQV4R.js';
|
|
12
12
|
import '../../chunk-INIIF7F7.js';
|
|
13
13
|
import '../../chunk-XBFUROAY.js';
|
|
14
14
|
import '../../chunk-B4K4BXEF.js';
|
|
15
|
+
import '../../chunk-7PWBC4BY.js';
|
|
15
16
|
import '../../chunk-B6S6LTWT.js';
|
|
16
17
|
import '../../chunk-5732TWQF.js';
|
|
17
|
-
import '../../chunk-7PWBC4BY.js';
|
|
18
18
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { AppShell, Breadcrumb, PageContainer, Sidebar, SidebarHeader, SidebarItem, SidebarSection, SplitPane, Topbar } from '../../chunk-
|
|
1
|
+
export { AppShell, Breadcrumb, PageContainer, Sidebar, SidebarHeader, SidebarItem, SidebarSection, SplitPane, Topbar } from '../../chunk-I6G4IO7V.js';
|
|
2
2
|
export { AspectRatio, Separator } from '../../chunk-XK3M3VRR.js';
|
|
3
3
|
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../../chunk-W4REF4TD.js';
|
|
4
|
-
import '../../chunk-32WO3YLB.js';
|
|
5
4
|
import '../../chunk-LMKUKCTN.js';
|
|
5
|
+
import '../../chunk-32WO3YLB.js';
|
|
6
6
|
import '../../chunk-DV52WNXO.js';
|
|
7
7
|
export { Flex } from '../../chunk-INIIF7F7.js';
|
|
8
8
|
import '../../chunk-DY5C44UP.js';
|
|
9
|
+
export { ResponsiveGrid } from '../../chunk-C3PKEV6S.js';
|
|
9
10
|
import '../../chunk-B6S6LTWT.js';
|
|
10
11
|
import '../../chunk-5732TWQF.js';
|
|
11
|
-
export { ResponsiveGrid } from '../../chunk-C3PKEV6S.js';
|
|
12
12
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
export { AppSettingPicker, Toolbar, ToolbarGroup } from '../../chunk-
|
|
1
|
+
export { AppSettingPicker, Toolbar, ToolbarGroup } from '../../chunk-RHPFCKB2.js';
|
|
2
|
+
export { Steps } from '../../chunk-QROC2RMH.js';
|
|
2
3
|
export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from '../../chunk-B73NA66T.js';
|
|
3
4
|
export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport } from '../../chunk-WGWI7EGL.js';
|
|
4
|
-
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-
|
|
5
|
-
export { Steps } from '../../chunk-QROC2RMH.js';
|
|
5
|
+
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-3JORZPS7.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-2RGPEFAW.js';
|
|
9
|
+
import '../../chunk-6S2ZU26B.js';
|
|
11
10
|
import '../../chunk-K24AQV4R.js';
|
|
11
|
+
import '../../chunk-2RGPEFAW.js';
|
|
12
12
|
import '../../chunk-XBFUROAY.js';
|
|
13
|
-
import '../../chunk-B4K4BXEF.js';
|
|
14
13
|
import '../../chunk-DY5C44UP.js';
|
|
14
|
+
import '../../chunk-B4K4BXEF.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-2RGPEFAW.js';
|
|
1
|
+
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-3JORZPS7.js';
|
|
2
|
+
import '../../chunk-6S2ZU26B.js';
|
|
4
3
|
import '../../chunk-K24AQV4R.js';
|
|
4
|
+
import '../../chunk-2RGPEFAW.js';
|
|
5
5
|
import '../../chunk-XBFUROAY.js';
|
|
6
|
-
import '../../chunk-B4K4BXEF.js';
|
|
7
6
|
import '../../chunk-DY5C44UP.js';
|
|
7
|
+
import '../../chunk-B4K4BXEF.js';
|
|
8
8
|
import '../../chunk-B6S6LTWT.js';
|
|
9
9
|
import '../../chunk-5732TWQF.js';
|
|
10
10
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -2,46 +2,46 @@ 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
4
|
export { PasswordStrength, Toggle, ToggleGroup, ToggleGroupItem, toggleVariants, usePasswordStrength } from '../../chunk-VSUYVT2Q.js';
|
|
5
|
-
export { TimePicker } from '../../chunk-65RWSIZF.js';
|
|
6
5
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-S2IJKT3D.js';
|
|
7
6
|
export { Switch } from '../../chunk-I7NQ2LIL.js';
|
|
8
7
|
export { Textarea } from '../../chunk-Q3KUZG4P.js';
|
|
9
8
|
export { TimeInput } from '../../chunk-R2TXLS7S.js';
|
|
9
|
+
export { TimePicker } from '../../chunk-65RWSIZF.js';
|
|
10
10
|
export { ColorPicker } from '../../chunk-ION2KFXK.js';
|
|
11
11
|
export { DatePicker } from '../../chunk-3VFNWVR7.js';
|
|
12
12
|
export { DateRangePicker } from '../../chunk-YXVJFYQE.js';
|
|
13
|
-
export { Calendar } from '../../chunk-NU2SOVTU.js';
|
|
14
13
|
export { Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-5LTW2LWF.js';
|
|
14
|
+
export { Calendar } from '../../chunk-NU2SOVTU.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-3JORZPS7.js';
|
|
18
18
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
19
19
|
export { AspectRatio, Separator } from '../../chunk-XK3M3VRR.js';
|
|
20
20
|
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../../chunk-W4REF4TD.js';
|
|
21
21
|
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from '../../chunk-HL3G4SVG.js';
|
|
22
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
22
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-OO5DZH45.js';
|
|
23
23
|
export { Slider } from '../../chunk-TBJBVEIP.js';
|
|
24
|
+
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from '../../chunk-LMKUKCTN.js';
|
|
25
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-6S2ZU26B.js';
|
|
24
26
|
export { Skeleton } from '../../chunk-2BR7KFCP.js';
|
|
25
27
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
26
28
|
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-D4JX6O2W.js';
|
|
27
29
|
import '../../chunk-X6AJ5HEI.js';
|
|
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-
|
|
30
|
+
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-RZ32HY5E.js';
|
|
31
|
+
export { Input } from '../../chunk-K24AQV4R.js';
|
|
29
32
|
import '../../chunk-VU4GFGDG.js';
|
|
30
33
|
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
34
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-2RGPEFAW.js';
|
|
34
|
-
export { Input } from '../../chunk-K24AQV4R.js';
|
|
35
35
|
export { Checkbox } from '../../chunk-BE6GJGKJ.js';
|
|
36
36
|
import '../../chunk-44YRPSZ7.js';
|
|
37
|
-
export { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '../../chunk-IJ5ALJGA.js';
|
|
38
37
|
import '../../chunk-INIIF7F7.js';
|
|
39
38
|
export { Button, buttonVariants } from '../../chunk-XBFUROAY.js';
|
|
40
39
|
export { Badge } from '../../chunk-HIEGUYPP.js';
|
|
41
|
-
import '../../chunk-B4K4BXEF.js';
|
|
42
40
|
export { Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger } from '../../chunk-DY5C44UP.js';
|
|
43
41
|
export { ScrollArea, ScrollBar } from '../../chunk-J2DEWIYY.js';
|
|
42
|
+
export { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '../../chunk-IJ5ALJGA.js';
|
|
43
|
+
import '../../chunk-B4K4BXEF.js';
|
|
44
|
+
export { Label } from '../../chunk-7PWBC4BY.js';
|
|
44
45
|
import '../../chunk-B6S6LTWT.js';
|
|
45
46
|
import '../../chunk-5732TWQF.js';
|
|
46
|
-
export { Label } from '../../chunk-7PWBC4BY.js';
|
|
47
47
|
import '../../chunk-U7N2A7A3.js';
|
package/dist/index.js
CHANGED
|
@@ -1,62 +1,62 @@
|
|
|
1
1
|
import './chunk-57VDEN64.js';
|
|
2
2
|
import './chunk-VSUYVT2Q.js';
|
|
3
|
-
import './chunk-65RWSIZF.js';
|
|
4
3
|
import './chunk-S2IJKT3D.js';
|
|
5
4
|
import './chunk-I7NQ2LIL.js';
|
|
6
5
|
import './chunk-Q3KUZG4P.js';
|
|
7
6
|
import './chunk-R2TXLS7S.js';
|
|
7
|
+
import './chunk-65RWSIZF.js';
|
|
8
8
|
import './chunk-ION2KFXK.js';
|
|
9
9
|
import './chunk-3VFNWVR7.js';
|
|
10
10
|
import './chunk-YXVJFYQE.js';
|
|
11
|
-
import './chunk-NU2SOVTU.js';
|
|
12
11
|
import './chunk-2H65B4JA.js';
|
|
13
12
|
import './chunk-5LTW2LWF.js';
|
|
13
|
+
import './chunk-NU2SOVTU.js';
|
|
14
14
|
import './chunk-GJXOBDER.js';
|
|
15
|
-
export { Toolbar, ToolbarGroup } from './chunk-
|
|
15
|
+
export { Toolbar, ToolbarGroup } from './chunk-RHPFCKB2.js';
|
|
16
|
+
export { Steps } from './chunk-QROC2RMH.js';
|
|
16
17
|
import './chunk-B73NA66T.js';
|
|
17
18
|
import './chunk-WGWI7EGL.js';
|
|
18
|
-
export { Pagination } from './chunk-
|
|
19
|
-
export { Steps } from './chunk-QROC2RMH.js';
|
|
19
|
+
export { Pagination } from './chunk-3JORZPS7.js';
|
|
20
20
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from './chunk-V3N266PT.js';
|
|
21
|
-
export { PageContainer } from './chunk-
|
|
21
|
+
export { PageContainer } from './chunk-I6G4IO7V.js';
|
|
22
22
|
import './chunk-XK3M3VRR.js';
|
|
23
23
|
import './chunk-W4REF4TD.js';
|
|
24
24
|
import './chunk-HL3G4SVG.js';
|
|
25
|
-
export {
|
|
26
|
-
export {
|
|
27
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from './chunk-O6BVMDW4.js';
|
|
25
|
+
export { TreeSelect } from './chunk-EG3RDM6F.js';
|
|
26
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from './chunk-OO5DZH45.js';
|
|
28
27
|
import './chunk-TBJBVEIP.js';
|
|
29
|
-
export {
|
|
30
|
-
import './chunk-
|
|
28
|
+
export { Transfer } from './chunk-WY3VYUMX.js';
|
|
29
|
+
import './chunk-LMKUKCTN.js';
|
|
30
|
+
import './chunk-6S2ZU26B.js';
|
|
31
|
+
export { SearchInput } from './chunk-LVLPNKJP.js';
|
|
31
32
|
export { sonnerToast as toast } from './chunk-ES4Q3KGL.js';
|
|
32
33
|
export { SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from './chunk-2BR7KFCP.js';
|
|
33
34
|
import './chunk-32WO3YLB.js';
|
|
34
35
|
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from './chunk-D4JX6O2W.js';
|
|
35
36
|
export { formatBytes, formatCurrency, humanError, shortId } from './chunk-X6AJ5HEI.js';
|
|
36
|
-
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from './chunk-
|
|
37
|
+
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from './chunk-RZ32HY5E.js';
|
|
38
|
+
import './chunk-K24AQV4R.js';
|
|
37
39
|
import './chunk-VU4GFGDG.js';
|
|
38
40
|
export { Toaster } from './chunk-TO7URV7U.js';
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
import './chunk-LCVXUCMB.js';
|
|
41
|
+
export { Cascader } from './chunk-FQGGF7GQ.js';
|
|
42
|
+
import './chunk-SMLKNECP.js';
|
|
42
43
|
import './chunk-2RGPEFAW.js';
|
|
43
|
-
|
|
44
|
-
export { DataTable, Descriptions } from './chunk-CXTSEQ6R.js';
|
|
44
|
+
export { DataTable, Descriptions } from './chunk-NVTZ2EDW.js';
|
|
45
45
|
import './chunk-DV52WNXO.js';
|
|
46
46
|
export { EmptyState } from './chunk-YD7V2HGZ.js';
|
|
47
47
|
import './chunk-BE6GJGKJ.js';
|
|
48
48
|
export { Field } from './chunk-44YRPSZ7.js';
|
|
49
|
-
import './chunk-IJ5ALJGA.js';
|
|
50
49
|
export { Flex } from './chunk-INIIF7F7.js';
|
|
51
50
|
import './chunk-XBFUROAY.js';
|
|
52
51
|
export { Badge } from './chunk-HIEGUYPP.js';
|
|
53
|
-
import './chunk-B4K4BXEF.js';
|
|
54
52
|
import './chunk-DY5C44UP.js';
|
|
55
53
|
import './chunk-J2DEWIYY.js';
|
|
56
|
-
import './chunk-
|
|
57
|
-
|
|
54
|
+
import './chunk-IJ5ALJGA.js';
|
|
55
|
+
import './chunk-B4K4BXEF.js';
|
|
58
56
|
export { FormField } from './chunk-LBYSX3VM.js';
|
|
59
57
|
import './chunk-C3PKEV6S.js';
|
|
60
58
|
import './chunk-7PWBC4BY.js';
|
|
59
|
+
import './chunk-B6S6LTWT.js';
|
|
60
|
+
export { formatDate } from './chunk-5732TWQF.js';
|
|
61
61
|
export { useDebouncedValue, useTimeoutFlag } from './chunk-LFW37FGG.js';
|
|
62
62
|
export { cn } from './chunk-U7N2A7A3.js';
|
package/dist/props/index.js
CHANGED
|
@@ -370,7 +370,7 @@
|
|
|
370
370
|
|
|
371
371
|
[data-slot="stat-card-delta"] {
|
|
372
372
|
color: hsl(var(--muted-foreground));
|
|
373
|
-
font-size: var(--font-size
|
|
373
|
+
font-size: var(--stat-card-delta-font-size);
|
|
374
374
|
font-weight: var(--font-weight-medium);
|
|
375
375
|
line-height: var(--line-height-normal);
|
|
376
376
|
font-variant-numeric: tabular-nums;
|
package/dist/styles/control.css
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
.ui-toggle-sm {
|
|
37
37
|
min-height: var(--control-height-sm);
|
|
38
38
|
padding-inline: var(--space-2);
|
|
39
|
-
font-size: var(--font-size
|
|
39
|
+
font-size: var(--toggle-sm-font-size);
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
.ui-toggle-lg {
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
.ui-button--sm {
|
|
158
158
|
height: var(--control-height-sm);
|
|
159
159
|
padding-inline: var(--space-3);
|
|
160
|
-
font-size: var(--font-size
|
|
160
|
+
font-size: var(--button-sm-font-size);
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
.ui-button--sm svg {
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
|
|
248
248
|
.ui-choice-description {
|
|
249
249
|
color: hsl(var(--muted-foreground));
|
|
250
|
-
font-size: var(--font-size
|
|
250
|
+
font-size: var(--choice-description-font-size);
|
|
251
251
|
}
|
|
252
252
|
|
|
253
253
|
.ui-checkbox,
|
|
@@ -419,7 +419,7 @@
|
|
|
419
419
|
.ui-color-picker-hex {
|
|
420
420
|
max-width: var(--color-picker-input-width);
|
|
421
421
|
font-family: var(--font-family-mono);
|
|
422
|
-
font-size: var(--font-size
|
|
422
|
+
font-size: var(--color-picker-hex-font-size);
|
|
423
423
|
text-transform: uppercase;
|
|
424
424
|
}
|
|
425
425
|
|
|
@@ -500,7 +500,7 @@
|
|
|
500
500
|
.ui-command-group [cmdk-group-heading] {
|
|
501
501
|
padding: var(--space-2);
|
|
502
502
|
color: hsl(var(--muted-foreground));
|
|
503
|
-
font-size: var(--font-size
|
|
503
|
+
font-size: var(--command-group-heading-font-size);
|
|
504
504
|
font-weight: var(--font-weight-medium);
|
|
505
505
|
}
|
|
506
506
|
|
|
@@ -534,7 +534,7 @@
|
|
|
534
534
|
display: block;
|
|
535
535
|
margin-bottom: var(--space-1);
|
|
536
536
|
color: hsl(var(--muted-foreground));
|
|
537
|
-
font-size: var(--font-size
|
|
537
|
+
font-size: var(--search-input-label-font-size);
|
|
538
538
|
}
|
|
539
539
|
|
|
540
540
|
.ui-search-input-field {
|
|
@@ -754,7 +754,7 @@
|
|
|
754
754
|
display: inline-flex;
|
|
755
755
|
align-items: center;
|
|
756
756
|
gap: var(--space-1);
|
|
757
|
-
font-size: var(--font-size
|
|
757
|
+
font-size: var(--tag-input-chip-font-size);
|
|
758
758
|
padding: 0.0625rem var(--space-2);
|
|
759
759
|
border-radius: var(--radius-sm);
|
|
760
760
|
background: hsl(var(--secondary));
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
|
|
56
56
|
.ui-progress-label {
|
|
57
57
|
color: hsl(var(--muted-foreground));
|
|
58
|
-
font-size: var(--font-size
|
|
58
|
+
font-size: var(--progress-label-font-size);
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
.ui-tree-list {
|
|
@@ -106,13 +106,13 @@
|
|
|
106
106
|
|
|
107
107
|
.ui-tree-item-title {
|
|
108
108
|
font-family: var(--font-family-mono);
|
|
109
|
-
font-size: var(--font-size
|
|
109
|
+
font-size: var(--tree-item-title-font-size);
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
.ui-tree-item-description {
|
|
113
113
|
overflow: hidden;
|
|
114
114
|
color: hsl(var(--muted-foreground));
|
|
115
|
-
font-size: var(--font-size
|
|
115
|
+
font-size: var(--tree-item-description-font-size);
|
|
116
116
|
text-overflow: ellipsis;
|
|
117
117
|
white-space: nowrap;
|
|
118
118
|
}
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
.ui-timeline-location,
|
|
187
187
|
.ui-timeline-note {
|
|
188
188
|
color: hsl(var(--muted-foreground));
|
|
189
|
-
font-size: var(--font-size
|
|
189
|
+
font-size: var(--timeline-note-font-size);
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
.ui-timeline-note {
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
|
|
136
136
|
.ui-password-strength-score {
|
|
137
137
|
color: hsl(var(--muted-foreground));
|
|
138
|
-
font-size: var(--font-size
|
|
138
|
+
font-size: var(--password-strength-score-font-size);
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
.ui-password-strength-checklist {
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
padding-inline: 0;
|
|
146
146
|
list-style: none;
|
|
147
147
|
color: hsl(var(--muted-foreground));
|
|
148
|
-
font-size: var(--font-size
|
|
148
|
+
font-size: var(--password-strength-checklist-font-size);
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
.ui-password-strength-checklist-item {
|
package/dist/styles/layout.css
CHANGED
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
place-items: center;
|
|
157
157
|
border-radius: var(--radius);
|
|
158
158
|
color: white;
|
|
159
|
-
font-size: var(--font-size
|
|
159
|
+
font-size: var(--sidebar-logo-mark-font-size);
|
|
160
160
|
font-weight: 700;
|
|
161
161
|
}
|
|
162
162
|
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
|
|
184
184
|
.sb-product-tenant {
|
|
185
185
|
overflow: hidden;
|
|
186
|
-
font-size: var(--font-size
|
|
186
|
+
font-size: var(--sidebar-product-tenant-font-size);
|
|
187
187
|
font-weight: 700;
|
|
188
188
|
letter-spacing: 0.08em;
|
|
189
189
|
line-height: 1.2;
|
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
.sb-section-label {
|
|
214
214
|
padding: 0 var(--space-2) var(--space-1);
|
|
215
215
|
color: hsl(var(--muted-foreground));
|
|
216
|
-
font-size: var(--font-size
|
|
216
|
+
font-size: var(--sidebar-section-label-font-size);
|
|
217
217
|
font-weight: 700;
|
|
218
218
|
letter-spacing: 0.08em;
|
|
219
219
|
line-height: 1.2;
|
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
border-radius: var(--radius-pill);
|
|
284
284
|
background: hsl(var(--secondary));
|
|
285
285
|
color: hsl(var(--muted-foreground));
|
|
286
|
-
font-size: var(--font-size
|
|
286
|
+
font-size: var(--sidebar-badge-font-size);
|
|
287
287
|
font-weight: var(--font-weight-medium);
|
|
288
288
|
line-height: 1.2;
|
|
289
289
|
padding-inline: 0.375rem;
|
|
@@ -320,7 +320,7 @@
|
|
|
320
320
|
|
|
321
321
|
.sb-nav-item--sub {
|
|
322
322
|
height: 1.75rem;
|
|
323
|
-
font-size: var(--font-size
|
|
323
|
+
font-size: var(--sidebar-nav-sub-font-size);
|
|
324
324
|
color: hsl(var(--muted-foreground));
|
|
325
325
|
}
|
|
326
326
|
|
|
@@ -364,7 +364,7 @@
|
|
|
364
364
|
.sb-flyout-title {
|
|
365
365
|
padding: var(--space-1) var(--space-2);
|
|
366
366
|
color: hsl(var(--muted-foreground));
|
|
367
|
-
font-size: var(--font-size
|
|
367
|
+
font-size: var(--sidebar-flyout-title-font-size);
|
|
368
368
|
font-weight: var(--font-weight-medium);
|
|
369
369
|
white-space: nowrap;
|
|
370
370
|
}
|
|
@@ -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: var(--font-size
|
|
413
|
+
font-size: var(--sidebar-avatar-font-size);
|
|
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: var(--font-size
|
|
436
|
+
font-size: var(--sidebar-user-name-font-size);
|
|
437
437
|
font-weight: 500;
|
|
438
438
|
line-height: 1.3;
|
|
439
439
|
text-overflow: ellipsis;
|
|
@@ -443,7 +443,7 @@
|
|
|
443
443
|
.sb-user-role {
|
|
444
444
|
overflow: hidden;
|
|
445
445
|
color: hsl(var(--muted-foreground));
|
|
446
|
-
font-size: var(--font-size
|
|
446
|
+
font-size: var(--sidebar-user-role-font-size);
|
|
447
447
|
line-height: 1.3;
|
|
448
448
|
text-overflow: ellipsis;
|
|
449
449
|
white-space: nowrap;
|
|
@@ -525,7 +525,7 @@
|
|
|
525
525
|
place-items: center;
|
|
526
526
|
border-radius: calc(var(--radius) - 2px);
|
|
527
527
|
color: white;
|
|
528
|
-
font-size: var(--font-size
|
|
528
|
+
font-size: var(--topbar-chip-icon-font-size);
|
|
529
529
|
font-weight: 700;
|
|
530
530
|
}
|
|
531
531
|
|
|
@@ -580,7 +580,7 @@
|
|
|
580
580
|
background: hsl(var(--secondary));
|
|
581
581
|
color: hsl(var(--muted-foreground));
|
|
582
582
|
font-family: var(--font-family-mono);
|
|
583
|
-
font-size: var(--font-size
|
|
583
|
+
font-size: var(--kbd-font-size);
|
|
584
584
|
line-height: 1.2;
|
|
585
585
|
}
|
|
586
586
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
text-align: start;
|
|
10
10
|
vertical-align: middle;
|
|
11
11
|
background: hsl(var(--secondary));
|
|
12
|
-
font-size: var(--font-size
|
|
12
|
+
font-size: var(--table-head-font-size);
|
|
13
13
|
font-weight: var(--font-weight-medium);
|
|
14
14
|
color: hsl(var(--muted-foreground));
|
|
15
15
|
white-space: nowrap;
|
package/dist/tokens/base.css
CHANGED
|
@@ -72,4 +72,11 @@
|
|
|
72
72
|
--control-height-compact: 2.75rem;
|
|
73
73
|
--control-height-default: 2.75rem;
|
|
74
74
|
}
|
|
75
|
+
--choice-description-font-size: var(--font-size-xs);
|
|
76
|
+
--color-picker-hex-font-size: var(--font-size-xs);
|
|
77
|
+
--command-group-heading-font-size: var(--font-size-xs);
|
|
78
|
+
--search-input-label-font-size: var(--font-size-xs);
|
|
79
|
+
--tag-input-chip-font-size: var(--font-size-xs);
|
|
80
|
+
--toggle-sm-font-size: var(--font-size-xs);
|
|
81
|
+
--button-sm-font-size: var(--font-size-xs);
|
|
75
82
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* Data-display component tokens — small-by-design text knobs (rule #45/#46). */
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
--progress-label-font-size: var(--font-size-xs);
|
|
5
|
+
--tree-item-title-font-size: var(--font-size-xs);
|
|
6
|
+
--tree-item-description-font-size: var(--font-size-xs);
|
|
7
|
+
--timeline-note-font-size: var(--font-size-xs);
|
|
8
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* Shell (sidebar / topbar / kbd) component tokens — small-by-design text
|
|
2
|
+
* knobs (rule #45/#46). A service re-tunes chrome text without moving the
|
|
3
|
+
* global scale. */
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--sidebar-section-label-font-size: var(--font-size-2xs);
|
|
7
|
+
--sidebar-product-tenant-font-size: var(--font-size-2xs);
|
|
8
|
+
--sidebar-badge-font-size: var(--font-size-2xs);
|
|
9
|
+
--sidebar-user-role-font-size: var(--font-size-2xs);
|
|
10
|
+
--sidebar-nav-sub-font-size: var(--font-size-xs);
|
|
11
|
+
--sidebar-flyout-title-font-size: var(--font-size-xs);
|
|
12
|
+
--topbar-chip-icon-font-size: var(--font-size-2xs);
|
|
13
|
+
--kbd-font-size: var(--font-size-2xs);
|
|
14
|
+
--sidebar-logo-mark-font-size: var(--font-size-xs);
|
|
15
|
+
--sidebar-avatar-font-size: var(--font-size-2xs);
|
|
16
|
+
--sidebar-user-name-font-size: var(--font-size-xs);
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@godxjp/ui",
|
|
3
|
-
"version": "13.9.
|
|
3
|
+
"version": "13.9.3",
|
|
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: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",
|
|
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-token-sync && 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-token-sync && 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",
|
|
@@ -276,6 +276,8 @@
|
|
|
276
276
|
"check:control-sizing": "node scripts/check-control-sizing.mjs",
|
|
277
277
|
"check:rtl": "node scripts/check-rtl.mjs",
|
|
278
278
|
"check:typography": "node scripts/check-typography.mjs",
|
|
279
|
+
"gen:component-tokens": "node scripts/gen-component-tokens.mjs",
|
|
280
|
+
"check:mcp-token-sync": "node scripts/gen-component-tokens.mjs --check",
|
|
279
281
|
"check:core-isolation": "node scripts/check-core-isolation.mjs",
|
|
280
282
|
"release": "node scripts/release.mjs",
|
|
281
283
|
"preview": "node preview/scripts/kill-port.mjs && vite --config preview/vite.config.ts --port 6008 --strictPort",
|
|
@@ -2,9 +2,9 @@ import { normalizeTreeOptions, collectAllExpandableKeys, filterVisibleTree, flat
|
|
|
2
2
|
import { Command, CommandInput } from './chunk-2RGPEFAW.js';
|
|
3
3
|
import { Checkbox } from './chunk-BE6GJGKJ.js';
|
|
4
4
|
import { Button } from './chunk-XBFUROAY.js';
|
|
5
|
-
import { controlOpenRingClass } from './chunk-B4K4BXEF.js';
|
|
6
5
|
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
7
6
|
import { ScrollArea } from './chunk-J2DEWIYY.js';
|
|
7
|
+
import { controlOpenRingClass } from './chunk-B4K4BXEF.js';
|
|
8
8
|
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
9
9
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
10
10
|
import * as React from 'react';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { normalizeTreeOptions, formatPathLabels, getNodeByPath, filterTreeOptions, pathsEqual, pathKey } from './chunk-SMLKNECP.js';
|
|
2
2
|
import { Command, CommandInput } from './chunk-2RGPEFAW.js';
|
|
3
3
|
import { Button } from './chunk-XBFUROAY.js';
|
|
4
|
-
import { controlOpenRingClass } from './chunk-B4K4BXEF.js';
|
|
5
4
|
import { Popover, PopoverTrigger, PopoverContent } from './chunk-DY5C44UP.js';
|
|
6
5
|
import { ScrollArea, ScrollBar } from './chunk-J2DEWIYY.js';
|
|
6
|
+
import { controlOpenRingClass } from './chunk-B4K4BXEF.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,5 +1,5 @@
|
|
|
1
|
-
import { Tooltip, TooltipTrigger, TooltipContent } from './chunk-32WO3YLB.js';
|
|
2
1
|
import { DropdownMenu, DropdownMenuTrigger } from './chunk-LMKUKCTN.js';
|
|
2
|
+
import { Tooltip, TooltipTrigger, TooltipContent } from './chunk-32WO3YLB.js';
|
|
3
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';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Input } from './chunk-K24AQV4R.js';
|
|
2
|
-
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
3
2
|
import { Label } from './chunk-7PWBC4BY.js';
|
|
3
|
+
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
4
4
|
import { useDebouncedValue } from './chunk-LFW37FGG.js';
|
|
5
5
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
6
6
|
import * as React from 'react';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { EmptyState } from './chunk-YD7V2HGZ.js';
|
|
2
2
|
import { Checkbox } from './chunk-BE6GJGKJ.js';
|
|
3
|
-
import { Table, TableHeader, TableRow, TableHead, TableBody, TableCell } from './chunk-IJ5ALJGA.js';
|
|
4
3
|
import { Flex, densityClass } from './chunk-INIIF7F7.js';
|
|
5
4
|
import { Button } from './chunk-XBFUROAY.js';
|
|
5
|
+
import { Table, TableHeader, TableRow, TableHead, TableBody, TableCell } from './chunk-IJ5ALJGA.js';
|
|
6
6
|
import { tableCellPaddingClass, tableRowHeightClass, controlIconSmClass } from './chunk-B4K4BXEF.js';
|
|
7
7
|
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
8
8
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { overlayHeaderToneClass } from './chunk-VU4GFGDG.js';
|
|
2
1
|
import { Input } from './chunk-K24AQV4R.js';
|
|
2
|
+
import { overlayHeaderToneClass } from './chunk-VU4GFGDG.js';
|
|
3
3
|
import { buttonVariants, Button } from './chunk-XBFUROAY.js';
|
|
4
|
-
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
5
4
|
import { Label } from './chunk-7PWBC4BY.js';
|
|
5
|
+
import { useTranslation } from './chunk-B6S6LTWT.js';
|
|
6
6
|
import { cn } from './chunk-U7N2A7A3.js';
|
|
7
7
|
import * as React from 'react';
|
|
8
8
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|