@thetinycode/hash-ui 1.0.0 → 1.1.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/README.md +14 -14
- package/dist/index.cjs +599 -142
- package/dist/index.d.cts +69 -1
- package/dist/index.d.ts +69 -1
- package/dist/index.js +544 -118
- package/package.json +7 -8
package/dist/index.d.cts
CHANGED
|
@@ -12,6 +12,19 @@ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, Var
|
|
|
12
12
|
}
|
|
13
13
|
declare function Button({ className, variant, size, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
14
14
|
|
|
15
|
+
interface ButtonGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
16
|
+
orientation?: "horizontal" | "vertical";
|
|
17
|
+
}
|
|
18
|
+
declare function ButtonGroup({ className, orientation, ...props }: ButtonGroupProps): react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
20
|
+
declare const iconButtonVariants: (props?: ({
|
|
21
|
+
variant?: "primary" | "secondary" | "outline" | "ghost" | null | undefined;
|
|
22
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
23
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
24
|
+
interface IconButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof iconButtonVariants> {
|
|
25
|
+
}
|
|
26
|
+
declare function IconButton({ className, variant, size, ...props }: IconButtonProps): react_jsx_runtime.JSX.Element;
|
|
27
|
+
|
|
15
28
|
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
16
29
|
}
|
|
17
30
|
declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -47,6 +60,7 @@ interface AvatarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
47
60
|
fallback?: string;
|
|
48
61
|
}
|
|
49
62
|
declare function Avatar({ className, src, alt, fallback, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
|
|
63
|
+
declare function AvatarFallback({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
50
64
|
declare function AvatarGroup({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
51
65
|
|
|
52
66
|
declare const badgeVariants: (props?: ({
|
|
@@ -68,6 +82,25 @@ declare function EmptyStateTitle({ className, ...props }: React.HTMLAttributes<H
|
|
|
68
82
|
declare function EmptyStateDescription({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
69
83
|
declare function EmptyStateActions({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
70
84
|
|
|
85
|
+
declare const notificationVariants: (props?: ({
|
|
86
|
+
variant?: "default" | "success" | "warning" | "danger" | "info" | null | undefined;
|
|
87
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
88
|
+
interface NotificationProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof notificationVariants> {
|
|
89
|
+
}
|
|
90
|
+
declare function Notification({ className, variant, ...props }: NotificationProps): react_jsx_runtime.JSX.Element;
|
|
91
|
+
declare function NotificationTitle({ className, ...props }: React.HTMLAttributes<HTMLHeadingElement>): react_jsx_runtime.JSX.Element;
|
|
92
|
+
declare function NotificationDescription({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
93
|
+
declare function NotificationActions({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
94
|
+
|
|
95
|
+
interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
96
|
+
}
|
|
97
|
+
declare function Skeleton({ className, ...props }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
98
|
+
|
|
99
|
+
interface SpinnerProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
100
|
+
size?: "sm" | "md" | "lg";
|
|
101
|
+
}
|
|
102
|
+
declare function Spinner({ className, size, ...props }: SpinnerProps): react_jsx_runtime.JSX.Element;
|
|
103
|
+
|
|
71
104
|
declare function Stat({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
72
105
|
declare function StatLabel({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
73
106
|
declare function StatValue({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
@@ -110,18 +143,45 @@ type StackProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
|
110
143
|
};
|
|
111
144
|
declare function Stack({ className, direction, gap, ...props }: StackProps): react_jsx_runtime.JSX.Element;
|
|
112
145
|
|
|
146
|
+
declare function Accordion({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
147
|
+
interface AccordionItemProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
148
|
+
open?: boolean;
|
|
149
|
+
}
|
|
150
|
+
declare function AccordionItem({ className, ...props }: AccordionItemProps): react_jsx_runtime.JSX.Element;
|
|
151
|
+
declare function AccordionTrigger({ className, ...props }: React.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
|
|
152
|
+
interface AccordionContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
153
|
+
open?: boolean;
|
|
154
|
+
}
|
|
155
|
+
declare function AccordionContent({ className, open, ...props }: AccordionContentProps): react_jsx_runtime.JSX.Element | null;
|
|
156
|
+
|
|
113
157
|
declare function Breadcrumb({ className, ...props }: React.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
|
|
114
158
|
declare function BreadcrumbList({ className, ...props }: React.OlHTMLAttributes<HTMLOListElement>): react_jsx_runtime.JSX.Element;
|
|
115
159
|
declare function BreadcrumbItem({ className, ...props }: React.LiHTMLAttributes<HTMLLIElement>): react_jsx_runtime.JSX.Element;
|
|
116
160
|
declare function BreadcrumbSeparator({ className, children, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
117
161
|
declare function BreadcrumbPage({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
118
162
|
|
|
163
|
+
interface CommandPaletteProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
164
|
+
open?: boolean;
|
|
165
|
+
}
|
|
166
|
+
declare function CommandPalette({ className, open, ...props }: CommandPaletteProps): react_jsx_runtime.JSX.Element | null;
|
|
167
|
+
declare function CommandPaletteInput({ className, ...props }: React.InputHTMLAttributes<HTMLInputElement>): react_jsx_runtime.JSX.Element;
|
|
168
|
+
declare function CommandPaletteList({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
169
|
+
declare function CommandPaletteGroup({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
170
|
+
declare function CommandPaletteGroupLabel({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
171
|
+
declare function CommandPaletteItem({ className, ...props }: React.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
|
|
172
|
+
declare function CommandPaletteEmpty({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
173
|
+
|
|
119
174
|
declare function Header({ className, ...props }: React.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
|
|
120
175
|
declare function HeaderInner({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
121
176
|
declare function HeaderBrand({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
122
177
|
declare function HeaderNav({ className, ...props }: React.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
|
|
123
178
|
declare function HeaderActions({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
124
179
|
|
|
180
|
+
declare function Navbar({ className, ...props }: React.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
|
|
181
|
+
declare function NavbarBrand({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
182
|
+
declare function NavbarNav({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
183
|
+
declare function NavbarActions({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
184
|
+
|
|
125
185
|
declare function Pagination({ className, ...props }: React.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
|
|
126
186
|
declare function PaginationList({ className, ...props }: React.HTMLAttributes<HTMLUListElement>): react_jsx_runtime.JSX.Element;
|
|
127
187
|
declare function PaginationItem({ className, ...props }: React.HTMLAttributes<HTMLLIElement>): react_jsx_runtime.JSX.Element;
|
|
@@ -130,6 +190,14 @@ interface PaginationLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorEleme
|
|
|
130
190
|
}
|
|
131
191
|
declare function PaginationLink({ className, isActive, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
132
192
|
|
|
193
|
+
declare function Sidebar({ className, ...props }: React.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
|
|
194
|
+
declare function SidebarHeader({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
195
|
+
declare function SidebarContent({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
196
|
+
declare function SidebarFooter({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
197
|
+
declare function SidebarGroup({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
198
|
+
declare function SidebarGroupLabel({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
199
|
+
declare function SidebarItem({ className, ...props }: React.AnchorHTMLAttributes<HTMLAnchorElement>): react_jsx_runtime.JSX.Element;
|
|
200
|
+
|
|
133
201
|
declare function Tabs({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
134
202
|
declare function TabsList({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
135
203
|
interface TabsTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
@@ -179,4 +247,4 @@ declare function HeroActions({ className, ...props }: React.HTMLAttributes<HTMLD
|
|
|
179
247
|
|
|
180
248
|
declare function cn(...inputs: ClassValue[]): string;
|
|
181
249
|
|
|
182
|
-
export { Alert, AlertDescription, type AlertProps, AlertTitle, Avatar, AvatarGroup, type AvatarProps, Badge, type BadgeProps, Box, Breadcrumb, BreadcrumbItem, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Container, Divider, type DividerProps, Drawer, type DrawerProps, Dropdown, DropdownItem, DropdownMenu, EmptyState, EmptyStateActions, EmptyStateDescription, EmptyStateTitle, Grid, type GridProps, Header, HeaderActions, HeaderBrand, HeaderInner, HeaderNav, Hero, HeroActions, HeroBadge, HeroContent, HeroDescription, HeroTitle, Input, type InputProps, Label, type LabelProps, Modal, ModalContent, ModalDescription, ModalFooter, ModalHeader, type ModalProps, ModalTitle, Pagination, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationList, Section, SectionDescription, SectionHeader, type SectionProps, SectionTitle, Select, type SelectProps, Stack, Stat, StatChange, StatLabel, StatValue, Switch, type SwitchProps, Tabs, TabsContent, TabsList, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, Toast, ToastDescription, type ToastProps, ToastTitle, ToastViewport, Tooltip, cn };
|
|
250
|
+
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, AccordionTrigger, Alert, AlertDescription, type AlertProps, AlertTitle, Avatar, AvatarFallback, AvatarGroup, type AvatarProps, Badge, type BadgeProps, Box, Breadcrumb, BreadcrumbItem, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CommandPalette, CommandPaletteEmpty, CommandPaletteGroup, CommandPaletteGroupLabel, CommandPaletteInput, CommandPaletteItem, CommandPaletteList, type CommandPaletteProps, Container, Divider, type DividerProps, Drawer, type DrawerProps, Dropdown, DropdownItem, DropdownMenu, EmptyState, EmptyStateActions, EmptyStateDescription, EmptyStateTitle, Grid, type GridProps, Header, HeaderActions, HeaderBrand, HeaderInner, HeaderNav, Hero, HeroActions, HeroBadge, HeroContent, HeroDescription, HeroTitle, IconButton, type IconButtonProps, Input, type InputProps, Label, type LabelProps, Modal, ModalContent, ModalDescription, ModalFooter, ModalHeader, type ModalProps, ModalTitle, Navbar, NavbarActions, NavbarBrand, NavbarNav, Notification, NotificationActions, NotificationDescription, type NotificationProps, NotificationTitle, Pagination, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationList, Section, SectionDescription, SectionHeader, type SectionProps, SectionTitle, Select, type SelectProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupLabel, SidebarHeader, SidebarItem, Skeleton, type SkeletonProps, Spinner, type SpinnerProps, Stack, Stat, StatChange, StatLabel, StatValue, Switch, type SwitchProps, Tabs, TabsContent, TabsList, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, Toast, ToastDescription, type ToastProps, ToastTitle, ToastViewport, Tooltip, cn };
|
package/dist/index.d.ts
CHANGED
|
@@ -12,6 +12,19 @@ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, Var
|
|
|
12
12
|
}
|
|
13
13
|
declare function Button({ className, variant, size, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
14
14
|
|
|
15
|
+
interface ButtonGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
16
|
+
orientation?: "horizontal" | "vertical";
|
|
17
|
+
}
|
|
18
|
+
declare function ButtonGroup({ className, orientation, ...props }: ButtonGroupProps): react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
20
|
+
declare const iconButtonVariants: (props?: ({
|
|
21
|
+
variant?: "primary" | "secondary" | "outline" | "ghost" | null | undefined;
|
|
22
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
23
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
24
|
+
interface IconButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof iconButtonVariants> {
|
|
25
|
+
}
|
|
26
|
+
declare function IconButton({ className, variant, size, ...props }: IconButtonProps): react_jsx_runtime.JSX.Element;
|
|
27
|
+
|
|
15
28
|
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
16
29
|
}
|
|
17
30
|
declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -47,6 +60,7 @@ interface AvatarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
47
60
|
fallback?: string;
|
|
48
61
|
}
|
|
49
62
|
declare function Avatar({ className, src, alt, fallback, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
|
|
63
|
+
declare function AvatarFallback({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
50
64
|
declare function AvatarGroup({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
51
65
|
|
|
52
66
|
declare const badgeVariants: (props?: ({
|
|
@@ -68,6 +82,25 @@ declare function EmptyStateTitle({ className, ...props }: React.HTMLAttributes<H
|
|
|
68
82
|
declare function EmptyStateDescription({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
69
83
|
declare function EmptyStateActions({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
70
84
|
|
|
85
|
+
declare const notificationVariants: (props?: ({
|
|
86
|
+
variant?: "default" | "success" | "warning" | "danger" | "info" | null | undefined;
|
|
87
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
88
|
+
interface NotificationProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof notificationVariants> {
|
|
89
|
+
}
|
|
90
|
+
declare function Notification({ className, variant, ...props }: NotificationProps): react_jsx_runtime.JSX.Element;
|
|
91
|
+
declare function NotificationTitle({ className, ...props }: React.HTMLAttributes<HTMLHeadingElement>): react_jsx_runtime.JSX.Element;
|
|
92
|
+
declare function NotificationDescription({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
93
|
+
declare function NotificationActions({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
94
|
+
|
|
95
|
+
interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
96
|
+
}
|
|
97
|
+
declare function Skeleton({ className, ...props }: SkeletonProps): react_jsx_runtime.JSX.Element;
|
|
98
|
+
|
|
99
|
+
interface SpinnerProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
100
|
+
size?: "sm" | "md" | "lg";
|
|
101
|
+
}
|
|
102
|
+
declare function Spinner({ className, size, ...props }: SpinnerProps): react_jsx_runtime.JSX.Element;
|
|
103
|
+
|
|
71
104
|
declare function Stat({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
72
105
|
declare function StatLabel({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
73
106
|
declare function StatValue({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
@@ -110,18 +143,45 @@ type StackProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
|
110
143
|
};
|
|
111
144
|
declare function Stack({ className, direction, gap, ...props }: StackProps): react_jsx_runtime.JSX.Element;
|
|
112
145
|
|
|
146
|
+
declare function Accordion({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
147
|
+
interface AccordionItemProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
148
|
+
open?: boolean;
|
|
149
|
+
}
|
|
150
|
+
declare function AccordionItem({ className, ...props }: AccordionItemProps): react_jsx_runtime.JSX.Element;
|
|
151
|
+
declare function AccordionTrigger({ className, ...props }: React.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
|
|
152
|
+
interface AccordionContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
153
|
+
open?: boolean;
|
|
154
|
+
}
|
|
155
|
+
declare function AccordionContent({ className, open, ...props }: AccordionContentProps): react_jsx_runtime.JSX.Element | null;
|
|
156
|
+
|
|
113
157
|
declare function Breadcrumb({ className, ...props }: React.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
|
|
114
158
|
declare function BreadcrumbList({ className, ...props }: React.OlHTMLAttributes<HTMLOListElement>): react_jsx_runtime.JSX.Element;
|
|
115
159
|
declare function BreadcrumbItem({ className, ...props }: React.LiHTMLAttributes<HTMLLIElement>): react_jsx_runtime.JSX.Element;
|
|
116
160
|
declare function BreadcrumbSeparator({ className, children, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
117
161
|
declare function BreadcrumbPage({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
118
162
|
|
|
163
|
+
interface CommandPaletteProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
164
|
+
open?: boolean;
|
|
165
|
+
}
|
|
166
|
+
declare function CommandPalette({ className, open, ...props }: CommandPaletteProps): react_jsx_runtime.JSX.Element | null;
|
|
167
|
+
declare function CommandPaletteInput({ className, ...props }: React.InputHTMLAttributes<HTMLInputElement>): react_jsx_runtime.JSX.Element;
|
|
168
|
+
declare function CommandPaletteList({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
169
|
+
declare function CommandPaletteGroup({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
170
|
+
declare function CommandPaletteGroupLabel({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
171
|
+
declare function CommandPaletteItem({ className, ...props }: React.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
|
|
172
|
+
declare function CommandPaletteEmpty({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
173
|
+
|
|
119
174
|
declare function Header({ className, ...props }: React.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
|
|
120
175
|
declare function HeaderInner({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
121
176
|
declare function HeaderBrand({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
122
177
|
declare function HeaderNav({ className, ...props }: React.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
|
|
123
178
|
declare function HeaderActions({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
124
179
|
|
|
180
|
+
declare function Navbar({ className, ...props }: React.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
|
|
181
|
+
declare function NavbarBrand({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
182
|
+
declare function NavbarNav({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
183
|
+
declare function NavbarActions({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
184
|
+
|
|
125
185
|
declare function Pagination({ className, ...props }: React.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
|
|
126
186
|
declare function PaginationList({ className, ...props }: React.HTMLAttributes<HTMLUListElement>): react_jsx_runtime.JSX.Element;
|
|
127
187
|
declare function PaginationItem({ className, ...props }: React.HTMLAttributes<HTMLLIElement>): react_jsx_runtime.JSX.Element;
|
|
@@ -130,6 +190,14 @@ interface PaginationLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorEleme
|
|
|
130
190
|
}
|
|
131
191
|
declare function PaginationLink({ className, isActive, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
132
192
|
|
|
193
|
+
declare function Sidebar({ className, ...props }: React.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
|
|
194
|
+
declare function SidebarHeader({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
195
|
+
declare function SidebarContent({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
196
|
+
declare function SidebarFooter({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
197
|
+
declare function SidebarGroup({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
198
|
+
declare function SidebarGroupLabel({ className, ...props }: React.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
199
|
+
declare function SidebarItem({ className, ...props }: React.AnchorHTMLAttributes<HTMLAnchorElement>): react_jsx_runtime.JSX.Element;
|
|
200
|
+
|
|
133
201
|
declare function Tabs({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
134
202
|
declare function TabsList({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
135
203
|
interface TabsTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
@@ -179,4 +247,4 @@ declare function HeroActions({ className, ...props }: React.HTMLAttributes<HTMLD
|
|
|
179
247
|
|
|
180
248
|
declare function cn(...inputs: ClassValue[]): string;
|
|
181
249
|
|
|
182
|
-
export { Alert, AlertDescription, type AlertProps, AlertTitle, Avatar, AvatarGroup, type AvatarProps, Badge, type BadgeProps, Box, Breadcrumb, BreadcrumbItem, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Container, Divider, type DividerProps, Drawer, type DrawerProps, Dropdown, DropdownItem, DropdownMenu, EmptyState, EmptyStateActions, EmptyStateDescription, EmptyStateTitle, Grid, type GridProps, Header, HeaderActions, HeaderBrand, HeaderInner, HeaderNav, Hero, HeroActions, HeroBadge, HeroContent, HeroDescription, HeroTitle, Input, type InputProps, Label, type LabelProps, Modal, ModalContent, ModalDescription, ModalFooter, ModalHeader, type ModalProps, ModalTitle, Pagination, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationList, Section, SectionDescription, SectionHeader, type SectionProps, SectionTitle, Select, type SelectProps, Stack, Stat, StatChange, StatLabel, StatValue, Switch, type SwitchProps, Tabs, TabsContent, TabsList, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, Toast, ToastDescription, type ToastProps, ToastTitle, ToastViewport, Tooltip, cn };
|
|
250
|
+
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, AccordionTrigger, Alert, AlertDescription, type AlertProps, AlertTitle, Avatar, AvatarFallback, AvatarGroup, type AvatarProps, Badge, type BadgeProps, Box, Breadcrumb, BreadcrumbItem, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CommandPalette, CommandPaletteEmpty, CommandPaletteGroup, CommandPaletteGroupLabel, CommandPaletteInput, CommandPaletteItem, CommandPaletteList, type CommandPaletteProps, Container, Divider, type DividerProps, Drawer, type DrawerProps, Dropdown, DropdownItem, DropdownMenu, EmptyState, EmptyStateActions, EmptyStateDescription, EmptyStateTitle, Grid, type GridProps, Header, HeaderActions, HeaderBrand, HeaderInner, HeaderNav, Hero, HeroActions, HeroBadge, HeroContent, HeroDescription, HeroTitle, IconButton, type IconButtonProps, Input, type InputProps, Label, type LabelProps, Modal, ModalContent, ModalDescription, ModalFooter, ModalHeader, type ModalProps, ModalTitle, Navbar, NavbarActions, NavbarBrand, NavbarNav, Notification, NotificationActions, NotificationDescription, type NotificationProps, NotificationTitle, Pagination, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationList, Section, SectionDescription, SectionHeader, type SectionProps, SectionTitle, Select, type SelectProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupLabel, SidebarHeader, SidebarItem, Skeleton, type SkeletonProps, Spinner, type SpinnerProps, Stack, Stat, StatChange, StatLabel, StatValue, Switch, type SwitchProps, Tabs, TabsContent, TabsList, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, Toast, ToastDescription, type ToastProps, ToastTitle, ToastViewport, Tooltip, cn };
|