fina-react-ds 0.0.1 → 1.0.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/README.md +5 -15
- package/dist/components/alert.js +30 -27
- package/dist/components/avatar.js +19 -19
- package/dist/components/badge.js +19 -19
- package/dist/components/button.js +51 -51
- package/dist/components/calendar.d.ts +8 -0
- package/dist/components/card.js +43 -43
- package/dist/components/checkbox.js +17 -17
- package/dist/components/date-picker.d.ts +6 -0
- package/dist/components/dialog.js +43 -46
- package/dist/components/dropdown-menu.js +29 -29
- package/dist/components/input.js +15 -13
- package/dist/components/label.js +17 -17
- package/dist/components/pagination.js +25 -25
- package/dist/components/popover.js +9 -9
- package/dist/components/select.js +38 -33
- package/dist/components/sheet.d.ts +15 -0
- package/dist/components/sheet.js +146 -0
- package/dist/components/sidebar.d.ts +69 -0
- package/dist/components/simple-tooltip.d.ts +4 -0
- package/dist/components/skeleton.d.ts +2 -0
- package/dist/components/sonner.d.ts +3 -0
- package/dist/components/switch.d.ts +4 -0
- package/dist/components/table.d.ts +10 -0
- package/dist/components/table.js +124 -0
- package/dist/components/tabs.js +27 -27
- package/dist/components/textarea.d.ts +3 -0
- package/dist/components/tooltip.d.ts +7 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +69 -51
- package/dist/themes/base.css +1679 -585
- package/package.json +4 -19
- package/dist/themes/pro.css +0 -188
- package/dist/themes/puulse-colors.css +0 -388
package/dist/index.js
CHANGED
|
@@ -1,46 +1,48 @@
|
|
|
1
|
-
import { cn as
|
|
2
|
-
import { Alert as
|
|
3
|
-
import { Badge as
|
|
4
|
-
import { Button as
|
|
5
|
-
import { Avatar as m, AvatarFallback as
|
|
6
|
-
import { Card as
|
|
7
|
-
import { Checkbox as
|
|
8
|
-
import { Dialog as
|
|
1
|
+
import { cn as r } from "./lib/utils.js";
|
|
2
|
+
import { Alert as n, AlertDescription as a, AlertTitle as i } from "./components/alert.js";
|
|
3
|
+
import { Badge as l } from "./components/badge.js";
|
|
4
|
+
import { Button as d, buttonVariants as D } from "./components/button.js";
|
|
5
|
+
import { Avatar as m, AvatarFallback as T, AvatarImage as b } from "./components/avatar.js";
|
|
6
|
+
import { Card as C, CardAction as f, CardContent as w, CardDescription as s, CardFooter as M, CardHeader as P, CardTitle as S } from "./components/card.js";
|
|
7
|
+
import { Checkbox as h } from "./components/checkbox.js";
|
|
8
|
+
import { Dialog as A, DialogClose as I, DialogContent as F, DialogDescription as H, DialogFooter as k, DialogHeader as L, DialogOverlay as B, DialogPortal as R, DialogTitle as y, DialogTrigger as G } from "./components/dialog.js";
|
|
9
9
|
import { DropdownMenu as N, DropdownMenuCheckboxItem as O, DropdownMenuContent as V, DropdownMenuGroup as j, DropdownMenuItem as q, DropdownMenuLabel as z, DropdownMenuPortal as J, DropdownMenuRadioGroup as K, DropdownMenuRadioItem as Q, DropdownMenuSeparator as U, DropdownMenuShortcut as W, DropdownMenuSub as X, DropdownMenuSubContent as Y, DropdownMenuSubTrigger as Z, DropdownMenuTrigger as _ } from "./components/dropdown-menu.js";
|
|
10
|
-
import { Tabs as oo, TabsContent as
|
|
10
|
+
import { Tabs as oo, TabsContent as eo, TabsList as ro, TabsTrigger as to } from "./components/tabs.js";
|
|
11
11
|
import { Input as ao } from "./components/input.js";
|
|
12
12
|
import { Label as po } from "./components/label.js";
|
|
13
|
-
import { Pagination as
|
|
14
|
-
import { SimplePagination as
|
|
15
|
-
import { Popover as
|
|
16
|
-
import { Select as
|
|
13
|
+
import { Pagination as go, PaginationContent as Do, PaginationEllipsis as uo, PaginationItem as mo, PaginationLink as To, PaginationNext as bo, PaginationPrevious as xo } from "./components/pagination.js";
|
|
14
|
+
import { SimplePagination as fo } from "./components/simple-pagination.js";
|
|
15
|
+
import { Popover as so, PopoverAnchor as Mo, PopoverContent as Po, PopoverTrigger as So } from "./components/popover.js";
|
|
16
|
+
import { Select as ho } from "./components/select.js";
|
|
17
|
+
import { Sheet as Ao, SheetClose as Io, SheetContent as Fo, SheetDescription as Ho, SheetFooter as ko, SheetHeader as Lo, SheetTitle as Bo, SheetTrigger as Ro } from "./components/sheet.js";
|
|
18
|
+
import { Table as Go, TableBody as Eo, TableCaption as No, TableCell as Oo, TableFooter as Vo, TableHead as jo, TableHeader as qo, TableRow as zo } from "./components/table.js";
|
|
17
19
|
export {
|
|
18
|
-
|
|
20
|
+
n as Alert,
|
|
19
21
|
a as AlertDescription,
|
|
20
22
|
i as AlertTitle,
|
|
21
23
|
m as Avatar,
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
24
|
+
T as AvatarFallback,
|
|
25
|
+
b as AvatarImage,
|
|
26
|
+
l as Badge,
|
|
27
|
+
d as Button,
|
|
28
|
+
C as Card,
|
|
29
|
+
f as CardAction,
|
|
30
|
+
w as CardContent,
|
|
31
|
+
s as CardDescription,
|
|
32
|
+
M as CardFooter,
|
|
33
|
+
P as CardHeader,
|
|
34
|
+
S as CardTitle,
|
|
35
|
+
h as Checkbox,
|
|
36
|
+
A as Dialog,
|
|
37
|
+
I as DialogClose,
|
|
38
|
+
F as DialogContent,
|
|
39
|
+
H as DialogDescription,
|
|
40
|
+
k as DialogFooter,
|
|
41
|
+
L as DialogHeader,
|
|
42
|
+
B as DialogOverlay,
|
|
43
|
+
R as DialogPortal,
|
|
44
|
+
y as DialogTitle,
|
|
45
|
+
G as DialogTrigger,
|
|
44
46
|
N as DropdownMenu,
|
|
45
47
|
O as DropdownMenuCheckboxItem,
|
|
46
48
|
V as DropdownMenuContent,
|
|
@@ -58,23 +60,39 @@ export {
|
|
|
58
60
|
_ as DropdownMenuTrigger,
|
|
59
61
|
ao as Input,
|
|
60
62
|
po as Label,
|
|
61
|
-
|
|
63
|
+
go as Pagination,
|
|
62
64
|
Do as PaginationContent,
|
|
63
65
|
uo as PaginationEllipsis,
|
|
64
66
|
mo as PaginationItem,
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
67
|
+
To as PaginationLink,
|
|
68
|
+
bo as PaginationNext,
|
|
69
|
+
xo as PaginationPrevious,
|
|
70
|
+
so as Popover,
|
|
71
|
+
Mo as PopoverAnchor,
|
|
72
|
+
Po as PopoverContent,
|
|
73
|
+
So as PopoverTrigger,
|
|
74
|
+
ho as Select,
|
|
75
|
+
Ao as Sheet,
|
|
76
|
+
Io as SheetClose,
|
|
77
|
+
Fo as SheetContent,
|
|
78
|
+
Ho as SheetDescription,
|
|
79
|
+
ko as SheetFooter,
|
|
80
|
+
Lo as SheetHeader,
|
|
81
|
+
Bo as SheetTitle,
|
|
82
|
+
Ro as SheetTrigger,
|
|
83
|
+
fo as SimplePagination,
|
|
84
|
+
Go as Table,
|
|
85
|
+
Eo as TableBody,
|
|
86
|
+
No as TableCaption,
|
|
87
|
+
Oo as TableCell,
|
|
88
|
+
Vo as TableFooter,
|
|
89
|
+
jo as TableHead,
|
|
90
|
+
qo as TableHeader,
|
|
91
|
+
zo as TableRow,
|
|
74
92
|
oo as Tabs,
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
93
|
+
eo as TabsContent,
|
|
94
|
+
ro as TabsList,
|
|
95
|
+
to as TabsTrigger,
|
|
96
|
+
D as buttonVariants,
|
|
97
|
+
r as cn
|
|
80
98
|
};
|