@yimingliao/cms 0.0.115 → 0.0.117
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-WU47KNJR.js → chunk-7YMYPMIB.js} +1069 -813
- package/dist/client/index.d.ts +30 -16
- package/dist/client/index.js +549 -350
- package/dist/client/shadcn/index.d.ts +62 -37
- package/dist/client/shadcn/index.js +1 -1
- package/dist/{sidebar-BlYl83Yl.d.ts → sidebar-CBC8_O5A.d.ts} +1 -1
- package/package.json +2 -1
|
@@ -1,18 +1,23 @@
|
|
|
1
|
-
import { d as Button } from '../../sidebar-BlYl83Yl.js';
|
|
2
|
-
export { B as ButtonProps, I as Input, e as Label, L as LabelProps, f as SIDEBAR_COOKIE_NAME, g as Separator, S as Sidebar, a as SidebarContent, h as SidebarFooter, i as SidebarGroup, j as SidebarGroupAction, k as SidebarGroupContent, l as SidebarGroupLabel, m as SidebarHeader, n as SidebarInput, b as SidebarInset, o as SidebarMenu, p as SidebarMenuAction, q as SidebarMenuBadge, r as SidebarMenuButton, s as SidebarMenuItem, t as SidebarMenuSkeleton, v as SidebarMenuSub, w as SidebarMenuSubButton, x as SidebarMenuSubItem, c as SidebarProvider, y as SidebarRail, z as SidebarSeparator, A as SidebarTrigger, T as Tooltip, C as TooltipContent, D as TooltipProvider, E as TooltipTrigger, u as useSidebar } from '../../sidebar-BlYl83Yl.js';
|
|
3
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
4
3
|
import * as React from 'react';
|
|
5
4
|
import { ComponentProps } from 'react';
|
|
5
|
+
import { d as Button } from '../../sidebar-CBC8_O5A.js';
|
|
6
|
+
export { B as ButtonProps, I as Input, e as Label, L as LabelProps, f as SIDEBAR_COOKIE_NAME, g as Separator, S as Sidebar, a as SidebarContent, h as SidebarFooter, i as SidebarGroup, j as SidebarGroupAction, k as SidebarGroupContent, l as SidebarGroupLabel, m as SidebarHeader, n as SidebarInput, b as SidebarInset, o as SidebarMenu, p as SidebarMenuAction, q as SidebarMenuBadge, r as SidebarMenuButton, s as SidebarMenuItem, t as SidebarMenuSkeleton, v as SidebarMenuSub, w as SidebarMenuSubButton, x as SidebarMenuSubItem, c as SidebarProvider, y as SidebarRail, z as SidebarSeparator, A as SidebarTrigger, T as Tooltip, C as TooltipContent, D as TooltipProvider, E as TooltipTrigger, F as buttonVariants, u as useSidebar } from '../../sidebar-CBC8_O5A.js';
|
|
7
|
+
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
8
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
6
9
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
7
10
|
import { VariantProps } from 'class-variance-authority';
|
|
11
|
+
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
8
12
|
import * as SheetPrimitive from '@radix-ui/react-dialog';
|
|
9
|
-
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
10
|
-
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
11
|
-
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
12
13
|
import '@radix-ui/react-label';
|
|
13
14
|
import '@radix-ui/react-separator';
|
|
14
15
|
import '@radix-ui/react-tooltip';
|
|
15
16
|
|
|
17
|
+
declare function Avatar({ className, ...props }: React.ComponentProps<typeof AvatarPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
18
|
+
declare function AvatarImage({ className, ...props }: React.ComponentProps<typeof AvatarPrimitive.Image>): react_jsx_runtime.JSX.Element;
|
|
19
|
+
declare function AvatarFallback({ className, ...props }: React.ComponentProps<typeof AvatarPrimitive.Fallback>): react_jsx_runtime.JSX.Element;
|
|
20
|
+
|
|
16
21
|
declare function Card({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
17
22
|
declare function CardHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
18
23
|
declare function CardTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
@@ -21,6 +26,33 @@ declare function CardAction({ className, ...props }: React.ComponentProps<"div">
|
|
|
21
26
|
declare function CardContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
22
27
|
declare function CardFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
23
28
|
|
|
29
|
+
declare function Collapsible({ ...props }: ComponentProps<typeof CollapsiblePrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
30
|
+
declare function CollapsibleTrigger({ ...props }: ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime.JSX.Element;
|
|
31
|
+
declare function CollapsibleContent({ ...props }: ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime.JSX.Element;
|
|
32
|
+
|
|
33
|
+
declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
34
|
+
declare function DropdownMenuPortal({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
35
|
+
declare function DropdownMenuTrigger({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
36
|
+
declare function DropdownMenuContent({ className, sideOffset, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
37
|
+
declare function DropdownMenuGroup({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
38
|
+
declare function DropdownMenuItem({ className, inset, variant, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
|
|
39
|
+
inset?: boolean;
|
|
40
|
+
variant?: "default" | "destructive";
|
|
41
|
+
}): react_jsx_runtime.JSX.Element;
|
|
42
|
+
declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element;
|
|
43
|
+
declare function DropdownMenuRadioGroup({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
44
|
+
declare function DropdownMenuRadioItem({ className, children, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
45
|
+
declare function DropdownMenuLabel({ className, inset, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
|
|
46
|
+
inset?: boolean;
|
|
47
|
+
}): react_jsx_runtime.JSX.Element;
|
|
48
|
+
declare function DropdownMenuSeparator({ className, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
49
|
+
declare function DropdownMenuShortcut({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
50
|
+
declare function DropdownMenuSub({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element;
|
|
51
|
+
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
|
|
52
|
+
inset?: boolean;
|
|
53
|
+
}): react_jsx_runtime.JSX.Element;
|
|
54
|
+
declare function DropdownMenuSubContent({ className, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
|
|
55
|
+
|
|
24
56
|
declare function InputGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
25
57
|
declare const inputGroupAddonVariants: (props?: ({
|
|
26
58
|
align?: "inline-end" | "inline-start" | "block-end" | "block-start" | null | undefined;
|
|
@@ -34,9 +66,29 @@ declare function InputGroupText({ className, ...props }: React.ComponentProps<"s
|
|
|
34
66
|
declare function InputGroupInput({ className, ...props }: React.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
|
|
35
67
|
declare function InputGroupTextarea({ className, ...props }: React.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
36
68
|
|
|
37
|
-
declare function
|
|
69
|
+
declare function Pagination({ className, ...props }: React.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
70
|
+
declare function PaginationContent({ className, ...props }: React.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
71
|
+
declare function PaginationItem({ ...props }: React.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
72
|
+
type PaginationLinkProps = {
|
|
73
|
+
isActive?: boolean;
|
|
74
|
+
} & Pick<React.ComponentProps<typeof Button>, "size"> & React.ComponentProps<"button">;
|
|
75
|
+
declare function PaginationLink({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
76
|
+
declare function PaginationPrevious({ className, ...props }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
77
|
+
declare function PaginationNext({ className, ...props }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
78
|
+
declare function PaginationEllipsis({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
38
79
|
|
|
39
|
-
declare function
|
|
80
|
+
declare function Select({ ...props }: React.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
81
|
+
declare function SelectGroup({ ...props }: React.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
82
|
+
declare function SelectValue({ ...props }: React.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime.JSX.Element;
|
|
83
|
+
declare function SelectTrigger({ className, size, children, ...props }: React.ComponentProps<typeof SelectPrimitive.Trigger> & {
|
|
84
|
+
size?: "sm" | "default";
|
|
85
|
+
}): react_jsx_runtime.JSX.Element;
|
|
86
|
+
declare function SelectContent({ className, children, position, align, ...props }: React.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
87
|
+
declare function SelectLabel({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime.JSX.Element;
|
|
88
|
+
declare function SelectItem({ className, children, ...props }: React.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime.JSX.Element;
|
|
89
|
+
declare function SelectSeparator({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
90
|
+
declare function SelectScrollUpButton({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime.JSX.Element;
|
|
91
|
+
declare function SelectScrollDownButton({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime.JSX.Element;
|
|
40
92
|
|
|
41
93
|
declare function Sheet({ ...props }: React.ComponentProps<typeof SheetPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
42
94
|
declare function SheetTrigger({ ...props }: React.ComponentProps<typeof SheetPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
@@ -51,35 +103,8 @@ declare function SheetDescription({ className, ...props }: React.ComponentProps<
|
|
|
51
103
|
|
|
52
104
|
declare function Skeleton({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
53
105
|
|
|
54
|
-
declare function
|
|
55
|
-
declare function CollapsibleTrigger({ ...props }: ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime.JSX.Element;
|
|
56
|
-
declare function CollapsibleContent({ ...props }: ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime.JSX.Element;
|
|
57
|
-
|
|
58
|
-
declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
59
|
-
declare function DropdownMenuPortal({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
60
|
-
declare function DropdownMenuTrigger({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
61
|
-
declare function DropdownMenuContent({ className, sideOffset, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
62
|
-
declare function DropdownMenuGroup({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
63
|
-
declare function DropdownMenuItem({ className, inset, variant, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
|
|
64
|
-
inset?: boolean;
|
|
65
|
-
variant?: "default" | "destructive";
|
|
66
|
-
}): react_jsx_runtime.JSX.Element;
|
|
67
|
-
declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element;
|
|
68
|
-
declare function DropdownMenuRadioGroup({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
69
|
-
declare function DropdownMenuRadioItem({ className, children, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
70
|
-
declare function DropdownMenuLabel({ className, inset, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
|
|
71
|
-
inset?: boolean;
|
|
72
|
-
}): react_jsx_runtime.JSX.Element;
|
|
73
|
-
declare function DropdownMenuSeparator({ className, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
74
|
-
declare function DropdownMenuShortcut({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
75
|
-
declare function DropdownMenuSub({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element;
|
|
76
|
-
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
|
|
77
|
-
inset?: boolean;
|
|
78
|
-
}): react_jsx_runtime.JSX.Element;
|
|
79
|
-
declare function DropdownMenuSubContent({ className, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
|
|
106
|
+
declare function Spinner({ className, ...props }: ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
|
|
80
107
|
|
|
81
|
-
declare function
|
|
82
|
-
declare function AvatarImage({ className, ...props }: React.ComponentProps<typeof AvatarPrimitive.Image>): react_jsx_runtime.JSX.Element;
|
|
83
|
-
declare function AvatarFallback({ className, ...props }: React.ComponentProps<typeof AvatarPrimitive.Fallback>): react_jsx_runtime.JSX.Element;
|
|
108
|
+
declare function Textarea({ className, ...props }: React.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
84
109
|
|
|
85
|
-
export { Avatar, AvatarFallback, AvatarImage, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Collapsible, CollapsibleContent, CollapsibleTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Skeleton, Spinner, Textarea };
|
|
110
|
+
export { Avatar, AvatarFallback, AvatarImage, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Collapsible, CollapsibleContent, CollapsibleTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Skeleton, Spinner, Textarea };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { Avatar, AvatarFallback, AvatarImage, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Collapsible, CollapsibleContent, CollapsibleTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, Label, SIDEBAR_COOKIE_NAME, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Spinner, Textarea, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, useSidebar } from '../../chunk-
|
|
1
|
+
export { Avatar, AvatarFallback, AvatarImage, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Collapsible, CollapsibleContent, CollapsibleTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, Label, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, SIDEBAR_COOKIE_NAME, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Spinner, Textarea, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, buttonVariants, useSidebar } from '../../chunk-7YMYPMIB.js';
|
|
@@ -91,4 +91,4 @@ declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...p
|
|
|
91
91
|
isActive?: boolean;
|
|
92
92
|
}): react_jsx_runtime.JSX.Element;
|
|
93
93
|
|
|
94
|
-
export { SidebarTrigger as A, type ButtonProps as B, TooltipContent as C, TooltipProvider as D, TooltipTrigger as E, Input as I, type LabelProps as L, Sidebar as S, Tooltip as T, SidebarContent as a, SidebarInset as b, SidebarProvider as c, Button as d, Label as e, SIDEBAR_COOKIE_NAME as f, Separator as g, SidebarFooter as h, SidebarGroup as i, SidebarGroupAction as j, SidebarGroupContent as k, SidebarGroupLabel as l, SidebarHeader as m, SidebarInput as n, SidebarMenu as o, SidebarMenuAction as p, SidebarMenuBadge as q, SidebarMenuButton as r, SidebarMenuItem as s, SidebarMenuSkeleton as t, useSidebar as u, SidebarMenuSub as v, SidebarMenuSubButton as w, SidebarMenuSubItem as x, SidebarRail as y, SidebarSeparator as z };
|
|
94
|
+
export { SidebarTrigger as A, type ButtonProps as B, TooltipContent as C, TooltipProvider as D, TooltipTrigger as E, buttonVariants as F, Input as I, type LabelProps as L, Sidebar as S, Tooltip as T, SidebarContent as a, SidebarInset as b, SidebarProvider as c, Button as d, Label as e, SIDEBAR_COOKIE_NAME as f, Separator as g, SidebarFooter as h, SidebarGroup as i, SidebarGroupAction as j, SidebarGroupContent as k, SidebarGroupLabel as l, SidebarHeader as m, SidebarInput as n, SidebarMenu as o, SidebarMenuAction as p, SidebarMenuBadge as q, SidebarMenuButton as r, SidebarMenuItem as s, SidebarMenuSkeleton as t, useSidebar as u, SidebarMenuSub as v, SidebarMenuSubButton as w, SidebarMenuSubItem as x, SidebarRail as y, SidebarSeparator as z };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yimingliao/cms",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.117",
|
|
4
4
|
"author": "Yiming Liao",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
55
55
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
56
56
|
"@radix-ui/react-label": "^2.1.8",
|
|
57
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
57
58
|
"@radix-ui/react-separator": "^1.1.8",
|
|
58
59
|
"@radix-ui/react-slot": "^1.2.4",
|
|
59
60
|
"@radix-ui/react-tooltip": "^1.2.8",
|