@append-fact/react-ui 0.0.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 +7 -0
- package/index.d.ts +57 -0
- package/index.mjs +55801 -0
- package/lib/components/accordion.d.ts +7 -0
- package/lib/components/alert-dialog.d.ts +20 -0
- package/lib/components/alert.d.ts +8 -0
- package/lib/components/aspect-ratio.d.ts +3 -0
- package/lib/components/avatar.d.ts +6 -0
- package/lib/components/badge.d.ts +9 -0
- package/lib/components/big-calendar.d.ts +30 -0
- package/lib/components/breadcrumb.d.ts +19 -0
- package/lib/components/button.d.ts +11 -0
- package/lib/components/calendar.d.ts +8 -0
- package/lib/components/card-grid.d.ts +48 -0
- package/lib/components/card.d.ts +8 -0
- package/lib/components/carousel.d.ts +18 -0
- package/lib/components/chart.d.ts +68 -0
- package/lib/components/checkbox.d.ts +4 -0
- package/lib/components/collapsible.d.ts +5 -0
- package/lib/components/command.d.ts +81 -0
- package/lib/components/context-menu.d.ts +27 -0
- package/lib/components/data-table.d.ts +15 -0
- package/lib/components/date-picker.d.ts +48 -0
- package/lib/components/dialog.d.ts +19 -0
- package/lib/components/drawer.d.ts +22 -0
- package/lib/components/dropdown-menu.d.ts +27 -0
- package/lib/components/file-upload.d.ts +30 -0
- package/lib/components/form.d.ts +23 -0
- package/lib/components/hover-card.d.ts +6 -0
- package/lib/components/input-otp.d.ts +34 -0
- package/lib/components/input.d.ts +3 -0
- package/lib/components/label.d.ts +5 -0
- package/lib/components/menubar.d.ts +33 -0
- package/lib/components/navigation-menu.d.ts +12 -0
- package/lib/components/pagination.d.ts +28 -0
- package/lib/components/popover.d.ts +6 -0
- package/lib/components/progress.d.ts +4 -0
- package/lib/components/radio-group.d.ts +5 -0
- package/lib/components/rating.d.ts +27 -0
- package/lib/components/resizable.d.ts +23 -0
- package/lib/components/rich-text-editor.d.ts +20 -0
- package/lib/components/scroll-area.d.ts +5 -0
- package/lib/components/select.d.ts +13 -0
- package/lib/components/separator.d.ts +4 -0
- package/lib/components/sheet.d.ts +25 -0
- package/lib/components/sidebar.d.ts +66 -0
- package/lib/components/skeleton.d.ts +2 -0
- package/lib/components/slider.d.ts +4 -0
- package/lib/components/sonner.d.ts +4 -0
- package/lib/components/stepper.d.ts +25 -0
- package/lib/components/switch.d.ts +4 -0
- package/lib/components/table.d.ts +10 -0
- package/lib/components/tabs.d.ts +7 -0
- package/lib/components/textarea.d.ts +5 -0
- package/lib/components/timeline.d.ts +28 -0
- package/lib/components/toast.d.ts +15 -0
- package/lib/components/toaster.d.ts +1 -0
- package/lib/components/toggle-group.d.ts +12 -0
- package/lib/components/toggle.d.ts +12 -0
- package/lib/components/tooltip.d.ts +7 -0
- package/lib/components/use-toast.d.ts +2 -0
- package/lib/hooks/use-mobile.d.ts +1 -0
- package/lib/hooks/use-toast.d.ts +44 -0
- package/package.json +15 -0
package/README.md
ADDED
package/index.d.ts
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export * from './lib/components/accordion';
|
|
2
|
+
export * from './lib/components/alert-dialog';
|
|
3
|
+
export * from './lib/components/alert';
|
|
4
|
+
export * from './lib/components/aspect-ratio';
|
|
5
|
+
export * from './lib/components/avatar';
|
|
6
|
+
export * from './lib/components/badge';
|
|
7
|
+
export * from './lib/components/breadcrumb';
|
|
8
|
+
export * from './lib/components/button';
|
|
9
|
+
export * from './lib/components/big-calendar';
|
|
10
|
+
export * from './lib/components/calendar';
|
|
11
|
+
export * from './lib/components/card-grid';
|
|
12
|
+
export * from './lib/components/data-table';
|
|
13
|
+
export * from './lib/components/date-picker';
|
|
14
|
+
export * from './lib/components/card';
|
|
15
|
+
export * from './lib/components/carousel';
|
|
16
|
+
export * from './lib/components/chart';
|
|
17
|
+
export * from './lib/components/checkbox';
|
|
18
|
+
export * from './lib/components/collapsible';
|
|
19
|
+
export * from './lib/components/command';
|
|
20
|
+
export * from './lib/components/context-menu';
|
|
21
|
+
export * from './lib/components/dialog';
|
|
22
|
+
export * from './lib/components/drawer';
|
|
23
|
+
export * from './lib/components/dropdown-menu';
|
|
24
|
+
export * from './lib/components/file-upload';
|
|
25
|
+
export * from './lib/components/form';
|
|
26
|
+
export * from './lib/components/hover-card';
|
|
27
|
+
export * from './lib/components/input-otp';
|
|
28
|
+
export * from './lib/components/input';
|
|
29
|
+
export * from './lib/components/label';
|
|
30
|
+
export * from './lib/components/menubar';
|
|
31
|
+
export * from './lib/components/navigation-menu';
|
|
32
|
+
export * from './lib/components/pagination';
|
|
33
|
+
export * from './lib/components/popover';
|
|
34
|
+
export * from './lib/components/progress';
|
|
35
|
+
export * from './lib/components/radio-group';
|
|
36
|
+
export * from './lib/components/rating';
|
|
37
|
+
export * from './lib/components/resizable';
|
|
38
|
+
export * from './lib/components/rich-text-editor';
|
|
39
|
+
export * from './lib/components/scroll-area';
|
|
40
|
+
export * from './lib/components/select';
|
|
41
|
+
export * from './lib/components/separator';
|
|
42
|
+
export * from './lib/components/sheet';
|
|
43
|
+
export * from './lib/components/sidebar';
|
|
44
|
+
export * from './lib/components/skeleton';
|
|
45
|
+
export * from './lib/components/slider';
|
|
46
|
+
export * from './lib/components/sonner';
|
|
47
|
+
export * from './lib/components/stepper';
|
|
48
|
+
export * from './lib/components/switch';
|
|
49
|
+
export * from './lib/components/table';
|
|
50
|
+
export * from './lib/components/tabs';
|
|
51
|
+
export * from './lib/components/textarea';
|
|
52
|
+
export * from './lib/components/toast';
|
|
53
|
+
export { Toaster as ShadcnToaster } from './lib/components/toaster';
|
|
54
|
+
export * from './lib/components/timeline';
|
|
55
|
+
export * from './lib/components/toggle-group';
|
|
56
|
+
export * from './lib/components/toggle';
|
|
57
|
+
export * from './lib/components/tooltip';
|