@wealthx/shadcn 1.0.2 → 1.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/.turbo/turbo-build.log +154 -138
- package/CHANGELOG.md +6 -0
- package/README.md +82 -0
- package/dist/chunk-3EQP72AW.mjs +58 -0
- package/dist/chunk-5JGQAAQV.mjs +212 -0
- package/dist/chunk-GLW2UO6O.mjs +212 -0
- package/dist/chunk-RN67642N.mjs +171 -0
- package/dist/chunk-UEL4RD5P.mjs +272 -0
- package/dist/chunk-YBXCIF5Q.mjs +198 -0
- package/dist/components/ui/cashflow-bar-chart.js +596 -0
- package/dist/components/ui/cashflow-bar-chart.mjs +16 -0
- package/dist/components/ui/combobox.js +261 -0
- package/dist/components/ui/combobox.mjs +28 -0
- package/dist/components/ui/data-table.mjs +3 -3
- package/dist/components/ui/expense-bar-chart.js +543 -0
- package/dist/components/ui/expense-bar-chart.mjs +16 -0
- package/dist/components/ui/field.mjs +2 -2
- package/dist/components/ui/income-bar-chart.js +543 -0
- package/dist/components/ui/income-bar-chart.mjs +16 -0
- package/dist/components/ui/transactions-income-expense-bar-chart.js +478 -0
- package/dist/components/ui/transactions-income-expense-bar-chart.mjs +16 -0
- package/dist/index.js +1685 -725
- package/dist/index.mjs +152 -111
- package/dist/styles.css +1 -1
- package/package.json +30 -2
- package/src/components/index.tsx +56 -0
- package/src/components/ui/cashflow-bar-chart.tsx +336 -0
- package/src/components/ui/chart-shared.tsx +100 -0
- package/src/components/ui/combobox.tsx +217 -0
- package/src/components/ui/expense-bar-chart.tsx +278 -0
- package/src/components/ui/income-bar-chart.tsx +278 -0
- package/src/components/ui/transactions-income-expense-bar-chart.tsx +198 -0
- package/src/styles/styles-css.ts +1 -1
- package/tsup.config.ts +5 -0
- package/dist/{chunk-K76E2TQU.mjs → chunk-CJ46PDXE.mjs} +5 -5
- package/dist/{chunk-HUVTPUV2.mjs → chunk-NLLKTU4B.mjs} +3 -3
package/dist/index.mjs
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
import {
|
|
2
|
+
TransactionsIncomeExpenseBarChart
|
|
3
|
+
} from "./chunk-RN67642N.mjs";
|
|
4
|
+
import {
|
|
5
|
+
Spinner,
|
|
6
|
+
spinnerVariants
|
|
7
|
+
} from "./chunk-BMFN37JH.mjs";
|
|
8
|
+
import {
|
|
9
|
+
Switch,
|
|
10
|
+
SwitchCard
|
|
11
|
+
} from "./chunk-VYMHBV6D.mjs";
|
|
12
|
+
import {
|
|
13
|
+
Tabs,
|
|
14
|
+
TabsContent,
|
|
15
|
+
TabsList,
|
|
16
|
+
TabsTrigger,
|
|
17
|
+
tabsListVariants
|
|
18
|
+
} from "./chunk-RL772EH7.mjs";
|
|
1
19
|
import {
|
|
2
20
|
ToggleGroup,
|
|
3
21
|
ToggleGroupItem
|
|
@@ -12,6 +30,14 @@ import {
|
|
|
12
30
|
TooltipProvider,
|
|
13
31
|
TooltipTrigger
|
|
14
32
|
} from "./chunk-CGOKTPXU.mjs";
|
|
33
|
+
import {
|
|
34
|
+
Progress
|
|
35
|
+
} from "./chunk-BBJBJSXQ.mjs";
|
|
36
|
+
import {
|
|
37
|
+
RadioGroup,
|
|
38
|
+
RadioGroupCard,
|
|
39
|
+
RadioGroupItem
|
|
40
|
+
} from "./chunk-JU2RUWHF.mjs";
|
|
15
41
|
import {
|
|
16
42
|
Sheet,
|
|
17
43
|
SheetClose,
|
|
@@ -29,82 +55,6 @@ import {
|
|
|
29
55
|
import {
|
|
30
56
|
Toaster
|
|
31
57
|
} from "./chunk-2Y7YJKPE.mjs";
|
|
32
|
-
import {
|
|
33
|
-
Spinner,
|
|
34
|
-
spinnerVariants
|
|
35
|
-
} from "./chunk-BMFN37JH.mjs";
|
|
36
|
-
import {
|
|
37
|
-
Switch,
|
|
38
|
-
SwitchCard
|
|
39
|
-
} from "./chunk-VYMHBV6D.mjs";
|
|
40
|
-
import {
|
|
41
|
-
Tabs,
|
|
42
|
-
TabsContent,
|
|
43
|
-
TabsList,
|
|
44
|
-
TabsTrigger,
|
|
45
|
-
tabsListVariants
|
|
46
|
-
} from "./chunk-RL772EH7.mjs";
|
|
47
|
-
import {
|
|
48
|
-
Pagination,
|
|
49
|
-
PaginationContent,
|
|
50
|
-
PaginationEllipsis,
|
|
51
|
-
PaginationItem,
|
|
52
|
-
PaginationLink,
|
|
53
|
-
PaginationNext,
|
|
54
|
-
PaginationPrevious
|
|
55
|
-
} from "./chunk-I64K754C.mjs";
|
|
56
|
-
import {
|
|
57
|
-
Progress
|
|
58
|
-
} from "./chunk-BBJBJSXQ.mjs";
|
|
59
|
-
import {
|
|
60
|
-
RadioGroup,
|
|
61
|
-
RadioGroupCard,
|
|
62
|
-
RadioGroupItem
|
|
63
|
-
} from "./chunk-JU2RUWHF.mjs";
|
|
64
|
-
import {
|
|
65
|
-
DatePicker
|
|
66
|
-
} from "./chunk-FHNT55I5.mjs";
|
|
67
|
-
import {
|
|
68
|
-
Popover,
|
|
69
|
-
PopoverAnchor,
|
|
70
|
-
PopoverContent,
|
|
71
|
-
PopoverDescription,
|
|
72
|
-
PopoverHeader,
|
|
73
|
-
PopoverTitle,
|
|
74
|
-
PopoverTrigger
|
|
75
|
-
} from "./chunk-MQ72DIBH.mjs";
|
|
76
|
-
import {
|
|
77
|
-
Dialog,
|
|
78
|
-
DialogClose,
|
|
79
|
-
DialogContent,
|
|
80
|
-
DialogDescription,
|
|
81
|
-
DialogFooter,
|
|
82
|
-
DialogHeader,
|
|
83
|
-
DialogOverlay,
|
|
84
|
-
DialogPortal,
|
|
85
|
-
DialogTitle,
|
|
86
|
-
DialogTrigger
|
|
87
|
-
} from "./chunk-DKZRJOMF.mjs";
|
|
88
|
-
import {
|
|
89
|
-
Drawer,
|
|
90
|
-
DrawerClose,
|
|
91
|
-
DrawerContent,
|
|
92
|
-
DrawerDescription,
|
|
93
|
-
DrawerFooter,
|
|
94
|
-
DrawerHeader,
|
|
95
|
-
DrawerOverlay,
|
|
96
|
-
DrawerPortal,
|
|
97
|
-
DrawerTitle,
|
|
98
|
-
DrawerTrigger
|
|
99
|
-
} from "./chunk-6AFMNC42.mjs";
|
|
100
|
-
import {
|
|
101
|
-
Empty,
|
|
102
|
-
EmptyContent,
|
|
103
|
-
EmptyDescription,
|
|
104
|
-
EmptyHeader,
|
|
105
|
-
EmptyMedia,
|
|
106
|
-
EmptyTitle
|
|
107
|
-
} from "./chunk-YN5SYTOO.mjs";
|
|
108
58
|
import {
|
|
109
59
|
Field,
|
|
110
60
|
FieldContent,
|
|
@@ -116,13 +66,13 @@ import {
|
|
|
116
66
|
FieldSeparator,
|
|
117
67
|
FieldSet,
|
|
118
68
|
FieldTitle
|
|
119
|
-
} from "./chunk-
|
|
120
|
-
import {
|
|
121
|
-
Label
|
|
122
|
-
} from "./chunk-ZZV5JVNW.mjs";
|
|
69
|
+
} from "./chunk-NLLKTU4B.mjs";
|
|
123
70
|
import {
|
|
124
71
|
Separator
|
|
125
72
|
} from "./chunk-55CEW76V.mjs";
|
|
73
|
+
import {
|
|
74
|
+
IncomeBarChart
|
|
75
|
+
} from "./chunk-GLW2UO6O.mjs";
|
|
126
76
|
import {
|
|
127
77
|
InputGroup,
|
|
128
78
|
InputGroupAddon,
|
|
@@ -141,33 +91,30 @@ import {
|
|
|
141
91
|
InputOTPSlot
|
|
142
92
|
} from "./chunk-Z3MK2KKZ.mjs";
|
|
143
93
|
import {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
AvatarFallback,
|
|
147
|
-
AvatarGroup,
|
|
148
|
-
AvatarGroupCount,
|
|
149
|
-
AvatarImage
|
|
150
|
-
} from "./chunk-6OJF6XRN.mjs";
|
|
151
|
-
import {
|
|
152
|
-
Calendar,
|
|
153
|
-
CalendarDayButton
|
|
154
|
-
} from "./chunk-3NQGYJEZ.mjs";
|
|
155
|
-
import {
|
|
156
|
-
Card,
|
|
157
|
-
CardAction,
|
|
158
|
-
CardContent,
|
|
159
|
-
CardDescription,
|
|
160
|
-
CardFooter,
|
|
161
|
-
CardHeader,
|
|
162
|
-
CardTitle
|
|
163
|
-
} from "./chunk-SLWCCURD.mjs";
|
|
94
|
+
Label
|
|
95
|
+
} from "./chunk-ZZV5JVNW.mjs";
|
|
164
96
|
import {
|
|
165
|
-
|
|
166
|
-
|
|
97
|
+
Pagination,
|
|
98
|
+
PaginationContent,
|
|
99
|
+
PaginationEllipsis,
|
|
100
|
+
PaginationItem,
|
|
101
|
+
PaginationLink,
|
|
102
|
+
PaginationNext,
|
|
103
|
+
PaginationPrevious
|
|
104
|
+
} from "./chunk-I64K754C.mjs";
|
|
167
105
|
import {
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
106
|
+
Combobox,
|
|
107
|
+
ComboboxContent,
|
|
108
|
+
ComboboxEmpty,
|
|
109
|
+
ComboboxGroup,
|
|
110
|
+
ComboboxGroupLabel,
|
|
111
|
+
ComboboxInput,
|
|
112
|
+
ComboboxItem,
|
|
113
|
+
ComboboxList,
|
|
114
|
+
ComboboxSeparator,
|
|
115
|
+
ComboboxTrigger,
|
|
116
|
+
ComboboxValue
|
|
117
|
+
} from "./chunk-YBXCIF5Q.mjs";
|
|
171
118
|
import {
|
|
172
119
|
DataTable,
|
|
173
120
|
DataTableColumnHeader,
|
|
@@ -175,10 +122,7 @@ import {
|
|
|
175
122
|
DataTableSkeleton,
|
|
176
123
|
DataTableToolbar,
|
|
177
124
|
getSelectionColumn
|
|
178
|
-
} from "./chunk-
|
|
179
|
-
import {
|
|
180
|
-
Skeleton
|
|
181
|
-
} from "./chunk-HS7TFG7V.mjs";
|
|
125
|
+
} from "./chunk-CJ46PDXE.mjs";
|
|
182
126
|
import {
|
|
183
127
|
Table,
|
|
184
128
|
TableBody,
|
|
@@ -201,6 +145,45 @@ import {
|
|
|
201
145
|
SelectTrigger,
|
|
202
146
|
SelectValue
|
|
203
147
|
} from "./chunk-VZ2NR7L3.mjs";
|
|
148
|
+
import {
|
|
149
|
+
Input
|
|
150
|
+
} from "./chunk-DS2AMHN2.mjs";
|
|
151
|
+
import {
|
|
152
|
+
DatePicker
|
|
153
|
+
} from "./chunk-FHNT55I5.mjs";
|
|
154
|
+
import {
|
|
155
|
+
Popover,
|
|
156
|
+
PopoverAnchor,
|
|
157
|
+
PopoverContent,
|
|
158
|
+
PopoverDescription,
|
|
159
|
+
PopoverHeader,
|
|
160
|
+
PopoverTitle,
|
|
161
|
+
PopoverTrigger
|
|
162
|
+
} from "./chunk-MQ72DIBH.mjs";
|
|
163
|
+
import {
|
|
164
|
+
Dialog,
|
|
165
|
+
DialogClose,
|
|
166
|
+
DialogContent,
|
|
167
|
+
DialogDescription,
|
|
168
|
+
DialogFooter,
|
|
169
|
+
DialogHeader,
|
|
170
|
+
DialogOverlay,
|
|
171
|
+
DialogPortal,
|
|
172
|
+
DialogTitle,
|
|
173
|
+
DialogTrigger
|
|
174
|
+
} from "./chunk-DKZRJOMF.mjs";
|
|
175
|
+
import {
|
|
176
|
+
Drawer,
|
|
177
|
+
DrawerClose,
|
|
178
|
+
DrawerContent,
|
|
179
|
+
DrawerDescription,
|
|
180
|
+
DrawerFooter,
|
|
181
|
+
DrawerHeader,
|
|
182
|
+
DrawerOverlay,
|
|
183
|
+
DrawerPortal,
|
|
184
|
+
DrawerTitle,
|
|
185
|
+
DrawerTrigger
|
|
186
|
+
} from "./chunk-6AFMNC42.mjs";
|
|
204
187
|
import {
|
|
205
188
|
DropdownMenu,
|
|
206
189
|
DropdownMenuCheckboxItem,
|
|
@@ -219,12 +202,55 @@ import {
|
|
|
219
202
|
DropdownMenuTrigger
|
|
220
203
|
} from "./chunk-MJIEMGRD.mjs";
|
|
221
204
|
import {
|
|
222
|
-
|
|
223
|
-
} from "./chunk-
|
|
205
|
+
ExpenseBarChart
|
|
206
|
+
} from "./chunk-5JGQAAQV.mjs";
|
|
207
|
+
import {
|
|
208
|
+
Avatar,
|
|
209
|
+
AvatarBadge,
|
|
210
|
+
AvatarFallback,
|
|
211
|
+
AvatarGroup,
|
|
212
|
+
AvatarGroupCount,
|
|
213
|
+
AvatarImage
|
|
214
|
+
} from "./chunk-6OJF6XRN.mjs";
|
|
215
|
+
import {
|
|
216
|
+
Calendar,
|
|
217
|
+
CalendarDayButton
|
|
218
|
+
} from "./chunk-3NQGYJEZ.mjs";
|
|
219
|
+
import {
|
|
220
|
+
CashflowBarChart
|
|
221
|
+
} from "./chunk-UEL4RD5P.mjs";
|
|
222
|
+
import "./chunk-3EQP72AW.mjs";
|
|
223
|
+
import {
|
|
224
|
+
Skeleton
|
|
225
|
+
} from "./chunk-HS7TFG7V.mjs";
|
|
226
|
+
import {
|
|
227
|
+
Empty,
|
|
228
|
+
EmptyContent,
|
|
229
|
+
EmptyDescription,
|
|
230
|
+
EmptyHeader,
|
|
231
|
+
EmptyMedia,
|
|
232
|
+
EmptyTitle
|
|
233
|
+
} from "./chunk-YN5SYTOO.mjs";
|
|
234
|
+
import {
|
|
235
|
+
Card,
|
|
236
|
+
CardAction,
|
|
237
|
+
CardContent,
|
|
238
|
+
CardDescription,
|
|
239
|
+
CardFooter,
|
|
240
|
+
CardHeader,
|
|
241
|
+
CardTitle
|
|
242
|
+
} from "./chunk-SLWCCURD.mjs";
|
|
224
243
|
import {
|
|
225
244
|
Checkbox,
|
|
226
245
|
CheckboxCard
|
|
227
246
|
} from "./chunk-JF4PHPD5.mjs";
|
|
247
|
+
import {
|
|
248
|
+
Chip
|
|
249
|
+
} from "./chunk-VG6UF6UT.mjs";
|
|
250
|
+
import {
|
|
251
|
+
Badge,
|
|
252
|
+
badgeVariants
|
|
253
|
+
} from "./chunk-E3K6O4FZ.mjs";
|
|
228
254
|
import {
|
|
229
255
|
FONT_FAMILY_SANS,
|
|
230
256
|
TYPOGRAPHY,
|
|
@@ -310,9 +336,21 @@ export {
|
|
|
310
336
|
CardFooter,
|
|
311
337
|
CardHeader,
|
|
312
338
|
CardTitle,
|
|
339
|
+
CashflowBarChart,
|
|
313
340
|
Checkbox,
|
|
314
341
|
CheckboxCard,
|
|
315
342
|
Chip,
|
|
343
|
+
Combobox,
|
|
344
|
+
ComboboxContent,
|
|
345
|
+
ComboboxEmpty,
|
|
346
|
+
ComboboxGroup,
|
|
347
|
+
ComboboxGroupLabel,
|
|
348
|
+
ComboboxInput,
|
|
349
|
+
ComboboxItem,
|
|
350
|
+
ComboboxList,
|
|
351
|
+
ComboboxSeparator,
|
|
352
|
+
ComboboxTrigger,
|
|
353
|
+
ComboboxValue,
|
|
316
354
|
DataTable,
|
|
317
355
|
DataTableColumnHeader,
|
|
318
356
|
DataTablePagination,
|
|
@@ -360,6 +398,7 @@ export {
|
|
|
360
398
|
EmptyHeader,
|
|
361
399
|
EmptyMedia,
|
|
362
400
|
EmptyTitle,
|
|
401
|
+
ExpenseBarChart,
|
|
363
402
|
FONT_FAMILY_SANS,
|
|
364
403
|
Field,
|
|
365
404
|
FieldContent,
|
|
@@ -371,6 +410,7 @@ export {
|
|
|
371
410
|
FieldSeparator,
|
|
372
411
|
FieldSet,
|
|
373
412
|
FieldTitle,
|
|
413
|
+
IncomeBarChart,
|
|
374
414
|
Input,
|
|
375
415
|
InputGroup,
|
|
376
416
|
InputGroupAddon,
|
|
@@ -454,6 +494,7 @@ export {
|
|
|
454
494
|
TooltipContent,
|
|
455
495
|
TooltipProvider,
|
|
456
496
|
TooltipTrigger,
|
|
497
|
+
TransactionsIncomeExpenseBarChart,
|
|
457
498
|
badgeVariants,
|
|
458
499
|
buttonVariants,
|
|
459
500
|
cn,
|