@godxjp/ui 13.5.0 → 13.5.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/components/admin/index.js +14 -14
- package/dist/components/data-display/card.d.ts +2 -2
- package/dist/components/data-entry/index.js +5 -5
- package/dist/components/data-entry/upload.js +2 -2
- package/dist/components/feedback/index.js +2 -2
- package/dist/components/layout/index.js +2 -2
- package/dist/components/navigation/index.js +2 -2
- package/dist/components/ui/index.js +11 -11
- package/dist/index.js +15 -15
- package/dist/styles/form-layout.css +10 -0
- package/dist/styles/index.css +17 -0
- package/dist/styles/shell-layout.css +10 -0
- package/package.json +1 -1
- package/dist/{chunk-MQCFOEW2.js → chunk-4GHHVXUR.js} +1 -1
- package/dist/{chunk-X3E4QTA3.js → chunk-XBFXYKJS.js} +1 -1
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
import '../../chunk-GJXOBDER.js';
|
|
2
|
+
export { PageContainer } from '../../chunk-4GHHVXUR.js';
|
|
3
|
+
export { sonnerToast as toast } from '../../chunk-ES4Q3KGL.js';
|
|
4
|
+
import '../../chunk-XK3M3VRR.js';
|
|
5
|
+
import '../../chunk-W4REF4TD.js';
|
|
6
|
+
export { SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-2BR7KFCP.js';
|
|
7
|
+
import '../../chunk-32WO3YLB.js';
|
|
8
|
+
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
2
9
|
export { Toolbar, ToolbarGroup } from '../../chunk-YY5PUFBL.js';
|
|
3
|
-
|
|
10
|
+
import '../../chunk-HL3G4SVG.js';
|
|
4
11
|
import '../../chunk-B73NA66T.js';
|
|
5
12
|
import '../../chunk-WGWI7EGL.js';
|
|
6
13
|
export { Pagination } from '../../chunk-LCKET5WL.js';
|
|
14
|
+
export { Steps } from '../../chunk-46UVXYPU.js';
|
|
7
15
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
8
|
-
export { PageContainer } from '../../chunk-MQCFOEW2.js';
|
|
9
|
-
import '../../chunk-XK3M3VRR.js';
|
|
10
|
-
import '../../chunk-W4REF4TD.js';
|
|
11
|
-
import '../../chunk-HL3G4SVG.js';
|
|
12
|
-
import '../../chunk-LMKUKCTN.js';
|
|
13
|
-
export { sonnerToast as toast } from '../../chunk-ES4Q3KGL.js';
|
|
14
|
-
export { SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-2BR7KFCP.js';
|
|
15
|
-
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
16
|
-
import '../../chunk-32WO3YLB.js';
|
|
17
16
|
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-QHS4U3SS.js';
|
|
18
17
|
export { Transfer } from '../../chunk-QVLCFPKF.js';
|
|
19
18
|
export { TreeSelect } from '../../chunk-BIC6D4EL.js';
|
|
20
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
21
|
-
export { SearchInput } from '../../chunk-E2CTBKYL.js';
|
|
22
|
-
export { formatBytes, formatCurrency, humanError, shortId } from '../../chunk-HOQSAUHZ.js';
|
|
19
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-XBFXYKJS.js';
|
|
23
20
|
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../../chunk-WW47N4ID.js';
|
|
24
21
|
import '../../chunk-VU4GFGDG.js';
|
|
25
|
-
|
|
22
|
+
export { formatBytes, formatCurrency, humanError, shortId } from '../../chunk-HOQSAUHZ.js';
|
|
26
23
|
import '../../chunk-TBJBVEIP.js';
|
|
24
|
+
import '../../chunk-LMKUKCTN.js';
|
|
25
|
+
export { SearchInput } from '../../chunk-E2CTBKYL.js';
|
|
26
|
+
import '../../chunk-CLEBTIY3.js';
|
|
27
27
|
export { Cascader } from '../../chunk-RR2SSSQS.js';
|
|
28
28
|
import '../../chunk-SMLKNECP.js';
|
|
29
29
|
import '../../chunk-3R3QVJCB.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,23 +1,23 @@
|
|
|
1
1
|
export { InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, NumberInput, PasswordInput, Rating, TagInput } from '../../chunk-IYSGELQC.js';
|
|
2
2
|
export { PasswordStrength, Toggle, ToggleGroup, ToggleGroupItem, usePasswordStrength } from '../../chunk-VSUYVT2Q.js';
|
|
3
|
+
export { TimeInput } from '../../chunk-LIOHE3RU.js';
|
|
3
4
|
export { TimePicker } from '../../chunk-QEHMSZBQ.js';
|
|
4
5
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-S2IJKT3D.js';
|
|
5
6
|
export { Switch } from '../../chunk-I7NQ2LIL.js';
|
|
6
7
|
export { Textarea } from '../../chunk-HCCID4YY.js';
|
|
7
|
-
export { TimeInput } from '../../chunk-LIOHE3RU.js';
|
|
8
8
|
export { ColorPicker } from '../../chunk-3JIPRB2T.js';
|
|
9
9
|
export { DatePicker } from '../../chunk-IHNZCBES.js';
|
|
10
10
|
export { DateRangePicker } from '../../chunk-PXOPMYPJ.js';
|
|
11
11
|
export { Calendar } from '../../chunk-2XH6QAOC.js';
|
|
12
12
|
export { Transfer } from '../../chunk-QVLCFPKF.js';
|
|
13
13
|
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from '../../chunk-BIC6D4EL.js';
|
|
14
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
15
|
-
export { SearchInput } from '../../chunk-E2CTBKYL.js';
|
|
16
|
-
import '../../chunk-HOQSAUHZ.js';
|
|
14
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-XBFXYKJS.js';
|
|
17
15
|
import '../../chunk-WW47N4ID.js';
|
|
18
16
|
import '../../chunk-VU4GFGDG.js';
|
|
19
|
-
|
|
17
|
+
import '../../chunk-HOQSAUHZ.js';
|
|
20
18
|
export { Slider } from '../../chunk-TBJBVEIP.js';
|
|
19
|
+
export { SearchInput } from '../../chunk-E2CTBKYL.js';
|
|
20
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-CLEBTIY3.js';
|
|
21
21
|
export { Cascader } from '../../chunk-RR2SSSQS.js';
|
|
22
22
|
import '../../chunk-SMLKNECP.js';
|
|
23
23
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-3R3QVJCB.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
2
|
-
import '../../chunk-HOQSAUHZ.js';
|
|
1
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-XBFXYKJS.js';
|
|
3
2
|
import '../../chunk-WW47N4ID.js';
|
|
4
3
|
import '../../chunk-VU4GFGDG.js';
|
|
4
|
+
import '../../chunk-HOQSAUHZ.js';
|
|
5
5
|
import '../../chunk-TBJBVEIP.js';
|
|
6
6
|
import '../../chunk-BNXPDUO4.js';
|
|
7
7
|
import '../../chunk-CA247VOA.js';
|
|
@@ -2,12 +2,12 @@ import '../../chunk-2H65B4JA.js';
|
|
|
2
2
|
export { Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-IMERLXSC.js';
|
|
3
3
|
export { sonnerToast as toast } from '../../chunk-ES4Q3KGL.js';
|
|
4
4
|
export { Skeleton, SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-2BR7KFCP.js';
|
|
5
|
-
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
6
5
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
6
|
+
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
7
7
|
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-QHS4U3SS.js';
|
|
8
|
-
import '../../chunk-HOQSAUHZ.js';
|
|
9
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-WW47N4ID.js';
|
|
10
9
|
import '../../chunk-VU4GFGDG.js';
|
|
10
|
+
import '../../chunk-HOQSAUHZ.js';
|
|
11
11
|
import '../../chunk-BNXPDUO4.js';
|
|
12
12
|
import '../../chunk-INIIF7F7.js';
|
|
13
13
|
import '../../chunk-CA247VOA.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
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-4GHHVXUR.js';
|
|
2
2
|
export { AspectRatio, Separator } from '../../chunk-XK3M3VRR.js';
|
|
3
3
|
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../../chunk-W4REF4TD.js';
|
|
4
|
-
import '../../chunk-LMKUKCTN.js';
|
|
5
4
|
import '../../chunk-32WO3YLB.js';
|
|
5
|
+
import '../../chunk-LMKUKCTN.js';
|
|
6
6
|
import '../../chunk-DV52WNXO.js';
|
|
7
7
|
export { Flex } from '../../chunk-INIIF7F7.js';
|
|
8
8
|
import '../../chunk-DY5C44UP.js';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export { AppSettingPicker, Toolbar, ToolbarGroup } from '../../chunk-YY5PUFBL.js';
|
|
2
|
-
export {
|
|
2
|
+
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from '../../chunk-HL3G4SVG.js';
|
|
3
3
|
export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from '../../chunk-B73NA66T.js';
|
|
4
4
|
export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport } from '../../chunk-WGWI7EGL.js';
|
|
5
5
|
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-LCKET5WL.js';
|
|
6
|
+
export { Steps } from '../../chunk-46UVXYPU.js';
|
|
6
7
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
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
9
|
import '../../chunk-CLEBTIY3.js';
|
|
10
10
|
import '../../chunk-3R3QVJCB.js';
|
|
@@ -3,33 +3,33 @@ export { Card, CardAction, CardContent, CardCover, CardDescription, CardFooter,
|
|
|
3
3
|
export { Carousel, CarouselContent, CarouselDots, CarouselItem, CarouselNext, CarouselPrevious, useCarousel } from '../../chunk-DKW3XS2A.js';
|
|
4
4
|
export { Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-IMERLXSC.js';
|
|
5
5
|
export { PasswordStrength, Toggle, ToggleGroup, ToggleGroupItem, toggleVariants, usePasswordStrength } from '../../chunk-VSUYVT2Q.js';
|
|
6
|
+
export { TimeInput } from '../../chunk-LIOHE3RU.js';
|
|
6
7
|
export { TimePicker } from '../../chunk-QEHMSZBQ.js';
|
|
7
8
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-S2IJKT3D.js';
|
|
8
9
|
export { Switch } from '../../chunk-I7NQ2LIL.js';
|
|
9
10
|
export { Textarea } from '../../chunk-HCCID4YY.js';
|
|
10
|
-
export { TimeInput } from '../../chunk-LIOHE3RU.js';
|
|
11
11
|
export { ColorPicker } from '../../chunk-3JIPRB2T.js';
|
|
12
12
|
export { DatePicker } from '../../chunk-IHNZCBES.js';
|
|
13
13
|
export { DateRangePicker } from '../../chunk-PXOPMYPJ.js';
|
|
14
14
|
export { Calendar } from '../../chunk-2XH6QAOC.js';
|
|
15
|
-
export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from '../../chunk-B73NA66T.js';
|
|
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-LCKET5WL.js';
|
|
18
|
-
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
19
15
|
export { AspectRatio, Separator } from '../../chunk-XK3M3VRR.js';
|
|
20
16
|
export { ResizableHandle, ResizablePanel, ResizablePanelGroup } from '../../chunk-W4REF4TD.js';
|
|
21
|
-
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from '../../chunk-HL3G4SVG.js';
|
|
22
|
-
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from '../../chunk-LMKUKCTN.js';
|
|
23
17
|
export { Skeleton } from '../../chunk-2BR7KFCP.js';
|
|
24
|
-
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
25
18
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
19
|
+
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
20
|
+
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from '../../chunk-HL3G4SVG.js';
|
|
21
|
+
export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarLabel, MenubarMenu, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from '../../chunk-B73NA66T.js';
|
|
22
|
+
export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport } from '../../chunk-WGWI7EGL.js';
|
|
23
|
+
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '../../chunk-LCKET5WL.js';
|
|
24
|
+
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
26
25
|
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-QHS4U3SS.js';
|
|
27
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
28
|
-
import '../../chunk-HOQSAUHZ.js';
|
|
26
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-XBFXYKJS.js';
|
|
29
27
|
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-WW47N4ID.js';
|
|
30
28
|
import '../../chunk-VU4GFGDG.js';
|
|
31
|
-
|
|
29
|
+
import '../../chunk-HOQSAUHZ.js';
|
|
32
30
|
export { Slider } from '../../chunk-TBJBVEIP.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-CLEBTIY3.js';
|
|
33
33
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-3R3QVJCB.js';
|
|
34
34
|
export { Input } from '../../chunk-BNXPDUO4.js';
|
|
35
35
|
import '../../chunk-INIIF7F7.js';
|
package/dist/index.js
CHANGED
|
@@ -2,41 +2,41 @@ import './chunk-2H65B4JA.js';
|
|
|
2
2
|
import './chunk-IMERLXSC.js';
|
|
3
3
|
import './chunk-IYSGELQC.js';
|
|
4
4
|
import './chunk-VSUYVT2Q.js';
|
|
5
|
+
import './chunk-LIOHE3RU.js';
|
|
5
6
|
import './chunk-QEHMSZBQ.js';
|
|
6
7
|
import './chunk-S2IJKT3D.js';
|
|
7
8
|
import './chunk-I7NQ2LIL.js';
|
|
8
9
|
import './chunk-HCCID4YY.js';
|
|
9
|
-
import './chunk-LIOHE3RU.js';
|
|
10
10
|
import './chunk-3JIPRB2T.js';
|
|
11
11
|
import './chunk-IHNZCBES.js';
|
|
12
12
|
import './chunk-PXOPMYPJ.js';
|
|
13
13
|
import './chunk-2XH6QAOC.js';
|
|
14
14
|
import './chunk-GJXOBDER.js';
|
|
15
|
+
export { PageContainer } from './chunk-4GHHVXUR.js';
|
|
16
|
+
export { sonnerToast as toast } from './chunk-ES4Q3KGL.js';
|
|
17
|
+
import './chunk-XK3M3VRR.js';
|
|
18
|
+
import './chunk-W4REF4TD.js';
|
|
19
|
+
export { SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from './chunk-2BR7KFCP.js';
|
|
20
|
+
import './chunk-32WO3YLB.js';
|
|
21
|
+
export { Toaster } from './chunk-TO7URV7U.js';
|
|
15
22
|
export { Toolbar, ToolbarGroup } from './chunk-YY5PUFBL.js';
|
|
16
|
-
|
|
23
|
+
import './chunk-HL3G4SVG.js';
|
|
17
24
|
import './chunk-B73NA66T.js';
|
|
18
25
|
import './chunk-WGWI7EGL.js';
|
|
19
26
|
export { Pagination } from './chunk-LCKET5WL.js';
|
|
27
|
+
export { Steps } from './chunk-46UVXYPU.js';
|
|
20
28
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from './chunk-V3N266PT.js';
|
|
21
|
-
export { PageContainer } from './chunk-MQCFOEW2.js';
|
|
22
|
-
import './chunk-XK3M3VRR.js';
|
|
23
|
-
import './chunk-W4REF4TD.js';
|
|
24
|
-
import './chunk-HL3G4SVG.js';
|
|
25
|
-
import './chunk-LMKUKCTN.js';
|
|
26
|
-
export { sonnerToast as toast } from './chunk-ES4Q3KGL.js';
|
|
27
|
-
export { SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from './chunk-2BR7KFCP.js';
|
|
28
|
-
export { Toaster } from './chunk-TO7URV7U.js';
|
|
29
|
-
import './chunk-32WO3YLB.js';
|
|
30
29
|
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from './chunk-QHS4U3SS.js';
|
|
31
30
|
export { Transfer } from './chunk-QVLCFPKF.js';
|
|
32
31
|
export { TreeSelect } from './chunk-BIC6D4EL.js';
|
|
33
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from './chunk-
|
|
34
|
-
export { SearchInput } from './chunk-E2CTBKYL.js';
|
|
35
|
-
export { formatBytes, formatCurrency, humanError, shortId } from './chunk-HOQSAUHZ.js';
|
|
32
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from './chunk-XBFXYKJS.js';
|
|
36
33
|
export { AlertDialog, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from './chunk-WW47N4ID.js';
|
|
37
34
|
import './chunk-VU4GFGDG.js';
|
|
38
|
-
|
|
35
|
+
export { formatBytes, formatCurrency, humanError, shortId } from './chunk-HOQSAUHZ.js';
|
|
39
36
|
import './chunk-TBJBVEIP.js';
|
|
37
|
+
import './chunk-LMKUKCTN.js';
|
|
38
|
+
export { SearchInput } from './chunk-E2CTBKYL.js';
|
|
39
|
+
import './chunk-CLEBTIY3.js';
|
|
40
40
|
export { Cascader } from './chunk-RR2SSSQS.js';
|
|
41
41
|
import './chunk-SMLKNECP.js';
|
|
42
42
|
import './chunk-3R3QVJCB.js';
|
|
@@ -31,12 +31,22 @@
|
|
|
31
31
|
|
|
32
32
|
.ui-form-field-control {
|
|
33
33
|
display: grid;
|
|
34
|
+
/* Single column capped to the field width. Without an explicit track the
|
|
35
|
+
* implicit column sizes to content (max-content), so a wide control (e.g. a
|
|
36
|
+
* Select with a long value) overflows its grid cell and overlaps siblings. */
|
|
37
|
+
grid-template-columns: minmax(0, 1fr);
|
|
34
38
|
gap: var(--space-stack-xs); /* 4px between control and helper/error */
|
|
35
39
|
min-width: 0;
|
|
36
40
|
/* Cap the control width when a controlWidth is set; otherwise fill the column. */
|
|
37
41
|
max-inline-size: var(--form-control-width, none);
|
|
38
42
|
}
|
|
39
43
|
|
|
44
|
+
/* Let controls (and helper/error) shrink within the cell instead of forcing
|
|
45
|
+
* the column to their intrinsic width. */
|
|
46
|
+
.ui-form-field-control > * {
|
|
47
|
+
min-width: 0;
|
|
48
|
+
}
|
|
49
|
+
|
|
40
50
|
/* ── Horizontal — label beside control. Each block is scoped to [data-layout=horizontal|inline]
|
|
41
51
|
* so it NEVER affects a vertical field. Applies from the collapse breakpoint up (mobile-first). */
|
|
42
52
|
|
package/dist/styles/index.css
CHANGED
|
@@ -128,6 +128,23 @@
|
|
|
128
128
|
border-color: hsl(var(--border));
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
+
/* Visually-hidden, absolutely-positioned helpers must never affect layout or scroll height.
|
|
132
|
+
*
|
|
133
|
+
* Radix renders a hidden native form-fallback (BubbleSelect/BubbleInput) for Select, Checkbox,
|
|
134
|
+
* Switch and RadioGroup; it is `position:absolute` with NO top/left, so when the control has no
|
|
135
|
+
* positioned ancestor its static box resolves far down the page and inflates
|
|
136
|
+
* `document.scrollHeight` → phantom empty scroll space (gh#105). The same is true of the
|
|
137
|
+
* `.sr-only` clamp (Tailwind / our own status + file-input nodes). These fallbacks are always
|
|
138
|
+
* `aria-hidden` + `tabindex=-1`. Pinning every such node to the top-left of its containing block
|
|
139
|
+
* makes it impossible for it to extend the scroll height, regardless of consumer markup — no DOM
|
|
140
|
+
* wrapper or per-component positioning required. Inside the AppShell the `.app-main { contain:
|
|
141
|
+
* paint }` boundary (gh#104) already contains these; this rule protects every other call site too. */
|
|
142
|
+
:where(select, input)[aria-hidden="true"][tabindex="-1"],
|
|
143
|
+
.sr-only {
|
|
144
|
+
top: 0;
|
|
145
|
+
left: 0;
|
|
146
|
+
}
|
|
147
|
+
|
|
131
148
|
body {
|
|
132
149
|
background-color: hsl(var(--background));
|
|
133
150
|
color: hsl(var(--foreground));
|
|
@@ -49,6 +49,16 @@
|
|
|
49
49
|
grid-area: main;
|
|
50
50
|
min-width: 0;
|
|
51
51
|
overflow: auto;
|
|
52
|
+
/* Sole scroll/clip boundary for the page area. `overflow:auto` alone does NOT reliably
|
|
53
|
+
* establish a paint-containment boundary in Chrome: tall nested scrollers (a two-pane
|
|
54
|
+
* `grid` of long lists, a nested `overflow-y:auto` region) — or any absolutely-positioned
|
|
55
|
+
* descendant (Radix form-fallback bubbles, `.sr-only` nodes) — can leak their clipped
|
|
56
|
+
* extent into the DOCUMENT scroll, so the window scrolls past the content into a
|
|
57
|
+
* full-viewport void below the fold even though `.app-root` is exactly 100vh.
|
|
58
|
+
* `contain:paint` makes `.app-main` the real clip boundary + containing block, so its
|
|
59
|
+
* content can never extend the document scroll height (gh#104 — same shell-containment
|
|
60
|
+
* family as the gh#103 body-stretch void). */
|
|
61
|
+
contain: paint;
|
|
52
62
|
}
|
|
53
63
|
|
|
54
64
|
.app-footer {
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DropdownMenu, DropdownMenuTrigger } from './chunk-LMKUKCTN.js';
|
|
2
1
|
import { Tooltip, TooltipTrigger, TooltipContent } from './chunk-32WO3YLB.js';
|
|
2
|
+
import { DropdownMenu, DropdownMenuTrigger } from './chunk-LMKUKCTN.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,5 +1,5 @@
|
|
|
1
|
-
import { formatBytes } from './chunk-HOQSAUHZ.js';
|
|
2
1
|
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogFooter } from './chunk-WW47N4ID.js';
|
|
2
|
+
import { formatBytes } from './chunk-HOQSAUHZ.js';
|
|
3
3
|
import { Slider } from './chunk-TBJBVEIP.js';
|
|
4
4
|
import { Button } from './chunk-CA247VOA.js';
|
|
5
5
|
import { controlIconClass } from './chunk-B4K4BXEF.js';
|