@craftzbay/ui 0.1.0
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/LICENSE +21 -0
- package/README.md +157 -0
- package/dist-lib/components/patterns/AppShell.d.ts +9 -0
- package/dist-lib/components/patterns/Authentication.d.ts +45 -0
- package/dist-lib/components/patterns/DataTablePage.d.ts +1 -0
- package/dist-lib/components/patterns/FirstRunEmpty.d.ts +1 -0
- package/dist-lib/components/patterns/Onboarding.d.ts +1 -0
- package/dist-lib/components/patterns/Pricing.d.ts +1 -0
- package/dist-lib/components/patterns/RecordDetail.d.ts +1 -0
- package/dist-lib/components/patterns/Settings.d.ts +1 -0
- package/dist-lib/components/ui/Accordion.d.ts +21 -0
- package/dist-lib/components/ui/Alert.d.ts +35 -0
- package/dist-lib/components/ui/Avatar.d.ts +52 -0
- package/dist-lib/components/ui/Badge.d.ts +24 -0
- package/dist-lib/components/ui/Breadcrumbs.d.ts +31 -0
- package/dist-lib/components/ui/Button.d.ts +50 -0
- package/dist-lib/components/ui/Card.d.ts +37 -0
- package/dist-lib/components/ui/Checkbox.d.ts +28 -0
- package/dist-lib/components/ui/Combobox.d.ts +58 -0
- package/dist-lib/components/ui/CommandPalette.d.ts +109 -0
- package/dist-lib/components/ui/ContextMenu.d.ts +45 -0
- package/dist-lib/components/ui/DataGrid.d.ts +66 -0
- package/dist-lib/components/ui/DatePicker.d.ts +42 -0
- package/dist-lib/components/ui/Dialog.d.ts +62 -0
- package/dist-lib/components/ui/DropdownMenu.d.ts +47 -0
- package/dist-lib/components/ui/EmptyState.d.ts +31 -0
- package/dist-lib/components/ui/ErrorState.d.ts +29 -0
- package/dist-lib/components/ui/Form.d.ts +22 -0
- package/dist-lib/components/ui/IconButton.d.ts +34 -0
- package/dist-lib/components/ui/Input.d.ts +49 -0
- package/dist-lib/components/ui/Kbd.d.ts +16 -0
- package/dist-lib/components/ui/MultiSelect.d.ts +62 -0
- package/dist-lib/components/ui/Pagination.d.ts +32 -0
- package/dist-lib/components/ui/Popover.d.ts +16 -0
- package/dist-lib/components/ui/Progress.d.ts +40 -0
- package/dist-lib/components/ui/RadioGroup.d.ts +27 -0
- package/dist-lib/components/ui/ScrollArea.d.ts +13 -0
- package/dist-lib/components/ui/Select.d.ts +56 -0
- package/dist-lib/components/ui/Separator.d.ts +13 -0
- package/dist-lib/components/ui/Sheet.d.ts +46 -0
- package/dist-lib/components/ui/Sidebar.d.ts +67 -0
- package/dist-lib/components/ui/Skeleton.d.ts +26 -0
- package/dist-lib/components/ui/Slider.d.ts +33 -0
- package/dist-lib/components/ui/Spinner.d.ts +23 -0
- package/dist-lib/components/ui/Stepper.d.ts +34 -0
- package/dist-lib/components/ui/Switch.d.ts +33 -0
- package/dist-lib/components/ui/Table.d.ts +35 -0
- package/dist-lib/components/ui/Tabs.d.ts +32 -0
- package/dist-lib/components/ui/Textarea.d.ts +34 -0
- package/dist-lib/components/ui/Toast.d.ts +33 -0
- package/dist-lib/components/ui/Tooltip.d.ts +35 -0
- package/dist-lib/components/ui/TopNav.d.ts +33 -0
- package/dist-lib/hooks/use-media-query.d.ts +9 -0
- package/dist-lib/hooks/use-toast.d.ts +43 -0
- package/dist-lib/icons/index.d.ts +11 -0
- package/dist-lib/index.cjs +8 -0
- package/dist-lib/index.cjs.map +1 -0
- package/dist-lib/index.d.ts +58 -0
- package/dist-lib/index.js +4336 -0
- package/dist-lib/index.js.map +1 -0
- package/dist-lib/lib/cva.d.ts +6 -0
- package/dist-lib/lib/utils.d.ts +12 -0
- package/dist-lib/styles.css +1 -0
- package/package.json +118 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Library entry — re-exports primitives, patterns, hooks, and utilities.
|
|
3
|
+
*/
|
|
4
|
+
export * from './lib/utils';
|
|
5
|
+
export * from './lib/cva';
|
|
6
|
+
export * from './hooks/use-media-query';
|
|
7
|
+
export * from './hooks/use-toast';
|
|
8
|
+
export * as Icons from './icons';
|
|
9
|
+
export * from './components/ui/Accordion';
|
|
10
|
+
export * from './components/ui/Alert';
|
|
11
|
+
export * from './components/ui/Avatar';
|
|
12
|
+
export * from './components/ui/Badge';
|
|
13
|
+
export * from './components/ui/Breadcrumbs';
|
|
14
|
+
export * from './components/ui/Button';
|
|
15
|
+
export * from './components/ui/Card';
|
|
16
|
+
export * from './components/ui/Checkbox';
|
|
17
|
+
export * from './components/ui/Combobox';
|
|
18
|
+
export * from './components/ui/CommandPalette';
|
|
19
|
+
export * from './components/ui/ContextMenu';
|
|
20
|
+
export * from './components/ui/DataGrid';
|
|
21
|
+
export * from './components/ui/DatePicker';
|
|
22
|
+
export * from './components/ui/Dialog';
|
|
23
|
+
export * from './components/ui/DropdownMenu';
|
|
24
|
+
export * from './components/ui/EmptyState';
|
|
25
|
+
export * from './components/ui/ErrorState';
|
|
26
|
+
export * from './components/ui/Form';
|
|
27
|
+
export * from './components/ui/IconButton';
|
|
28
|
+
export * from './components/ui/Input';
|
|
29
|
+
export * from './components/ui/Kbd';
|
|
30
|
+
export * from './components/ui/MultiSelect';
|
|
31
|
+
export * from './components/ui/Pagination';
|
|
32
|
+
export * from './components/ui/Popover';
|
|
33
|
+
export * from './components/ui/Progress';
|
|
34
|
+
export * from './components/ui/RadioGroup';
|
|
35
|
+
export * from './components/ui/ScrollArea';
|
|
36
|
+
export * from './components/ui/Select';
|
|
37
|
+
export * from './components/ui/Separator';
|
|
38
|
+
export * from './components/ui/Sheet';
|
|
39
|
+
export * from './components/ui/Sidebar';
|
|
40
|
+
export * from './components/ui/Skeleton';
|
|
41
|
+
export * from './components/ui/Slider';
|
|
42
|
+
export * from './components/ui/Spinner';
|
|
43
|
+
export * from './components/ui/Stepper';
|
|
44
|
+
export * from './components/ui/Switch';
|
|
45
|
+
export * from './components/ui/Table';
|
|
46
|
+
export * from './components/ui/Tabs';
|
|
47
|
+
export * from './components/ui/Textarea';
|
|
48
|
+
export * from './components/ui/Toast';
|
|
49
|
+
export * from './components/ui/Tooltip';
|
|
50
|
+
export * from './components/ui/TopNav';
|
|
51
|
+
export * from './components/patterns/Authentication';
|
|
52
|
+
export * from './components/patterns/AppShell';
|
|
53
|
+
export * from './components/patterns/Settings';
|
|
54
|
+
export * from './components/patterns/DataTablePage';
|
|
55
|
+
export * from './components/patterns/RecordDetail';
|
|
56
|
+
export * from './components/patterns/Onboarding';
|
|
57
|
+
export * from './components/patterns/Pricing';
|
|
58
|
+
export * from './components/patterns/FirstRunEmpty';
|