@wealthx/shadcn 1.2.1 → 1.2.2
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 +76 -67
- package/CHANGELOG.md +7 -0
- package/dist/{chunk-4CX4SBRO.mjs → chunk-A6AAWBPF.mjs} +1 -1
- package/dist/{chunk-WOEHFRGB.mjs → chunk-BDYZCBRT.mjs} +4 -4
- package/dist/{chunk-PMB3A7V3.mjs → chunk-EI5F6FMT.mjs} +1 -1
- package/dist/{chunk-CSDO6VBW.mjs → chunk-LBMRIB3G.mjs} +10 -10
- package/dist/{chunk-PG6K5XEC.mjs → chunk-S4QRUQNW.mjs} +1 -1
- package/dist/chunk-U4NDAF2P.mjs +207 -0
- package/dist/{chunk-DOH3EHX7.mjs → chunk-U5X52X37.mjs} +1 -1
- package/dist/{chunk-WA6O6EUR.mjs → chunk-URGMJAE3.mjs} +9 -9
- package/dist/{chunk-ZRO5JO3H.mjs → chunk-UT4KJR7V.mjs} +48 -12
- package/dist/{chunk-SYOD63OZ.mjs → chunk-VGSESELX.mjs} +2 -2
- package/dist/chunk-ZRSDX6OW.mjs +385 -0
- package/dist/chunk-ZSHYDDRB.mjs +249 -0
- package/dist/components/ui/add-column-modal.mjs +3 -3
- package/dist/components/ui/add-lead-modal.mjs +2 -2
- package/dist/components/ui/color-picker.js +417 -0
- package/dist/components/ui/color-picker.mjs +22 -0
- package/dist/components/ui/data-table.js +44 -12
- package/dist/components/ui/data-table.mjs +1 -1
- package/dist/components/ui/date-picker.mjs +2 -2
- package/dist/components/ui/form-primitives.js +4 -4
- package/dist/components/ui/form-primitives.mjs +3 -3
- package/dist/components/ui/opportunity-edit-modals.js +4 -4
- package/dist/components/ui/opportunity-edit-modals.mjs +8 -8
- package/dist/components/ui/opportunity-summary-tab.js +4 -4
- package/dist/components/ui/opportunity-summary-tab.mjs +9 -9
- package/dist/components/ui/pipeline-board.js +4 -4
- package/dist/components/ui/pipeline-board.mjs +3 -3
- package/dist/components/ui/pipeline-dialogs.js +4 -4
- package/dist/components/ui/pipeline-dialogs.mjs +5 -5
- package/dist/components/ui/sidebar-nav.js +540 -0
- package/dist/components/ui/sidebar-nav.mjs +11 -0
- package/dist/components/ui/stepper.js +283 -0
- package/dist/components/ui/stepper.mjs +18 -0
- package/dist/components/ui/toggle-group.js +4 -4
- package/dist/components/ui/toggle-group.mjs +2 -2
- package/dist/components/ui/toggle.js +4 -4
- package/dist/components/ui/toggle.mjs +1 -1
- package/dist/index.js +2141 -1292
- package/dist/index.mjs +103 -71
- package/dist/lib/typography.js +10 -10
- package/dist/lib/typography.mjs +1 -1
- package/dist/styles.css +1 -1
- package/package.json +16 -1
- package/src/components/index.tsx +41 -0
- package/src/components/ui/color-picker.tsx +307 -0
- package/src/components/ui/data-table.tsx +91 -11
- package/src/components/ui/sidebar-nav.tsx +517 -0
- package/src/components/ui/stepper.tsx +347 -0
- package/src/components/ui/toggle.tsx +4 -4
- package/src/lib/typography.ts +11 -11
- package/src/styles/globals.css +19 -19
- package/src/styles/styles-css.ts +1 -1
- package/tsup.config.ts +3 -0
- package/dist/{chunk-KUDCQ4FI.mjs → chunk-5MEWU56Z.mjs} +3 -3
- package/dist/{chunk-PR6V5XKM.mjs → chunk-CGH4DRNG.mjs} +3 -3
- package/dist/{chunk-3WMX6KWS.mjs → chunk-Y4QFWRNR.mjs} +8 -8
package/tsup.config.ts
CHANGED
|
@@ -41,6 +41,7 @@ export default defineConfig((options) => ({
|
|
|
41
41
|
"src/components/ui/accordion.tsx",
|
|
42
42
|
"src/components/ui/alert-dialog.tsx",
|
|
43
43
|
"src/components/ui/chip.tsx",
|
|
44
|
+
"src/components/ui/color-picker.tsx",
|
|
44
45
|
"src/components/ui/combobox.tsx",
|
|
45
46
|
"src/components/ui/toggle.tsx",
|
|
46
47
|
"src/components/ui/toggle-group.tsx",
|
|
@@ -74,10 +75,12 @@ export default defineConfig((options) => ({
|
|
|
74
75
|
"src/components/ui/pipeline-alerts.tsx",
|
|
75
76
|
"src/components/ui/pipeline-chart.tsx",
|
|
76
77
|
"src/components/ui/stage-timeline.tsx",
|
|
78
|
+
"src/components/ui/stepper.tsx",
|
|
77
79
|
"src/components/ui/ai-assistant-drawer.tsx",
|
|
78
80
|
"src/components/ui/opportunity-edit-modals.tsx",
|
|
79
81
|
"src/components/ui/form-primitives.tsx",
|
|
80
82
|
"src/components/ui/opportunity-summary-tab.tsx",
|
|
83
|
+
"src/components/ui/sidebar-nav.tsx",
|
|
81
84
|
],
|
|
82
85
|
format: ["cjs", "esm"],
|
|
83
86
|
// Types are served directly from src/*.tsx via package.json exports — DTS disabled
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Calendar
|
|
3
|
+
} from "./chunk-P6AM5V7O.mjs";
|
|
1
4
|
import {
|
|
2
5
|
Popover,
|
|
3
6
|
PopoverContent,
|
|
4
7
|
PopoverTrigger
|
|
5
8
|
} from "./chunk-3GF7OVTP.mjs";
|
|
6
|
-
import {
|
|
7
|
-
Calendar
|
|
8
|
-
} from "./chunk-P6AM5V7O.mjs";
|
|
9
9
|
import {
|
|
10
10
|
Button
|
|
11
11
|
} from "./chunk-2I5S2AMY.mjs";
|
|
@@ -4,9 +4,6 @@ import {
|
|
|
4
4
|
import {
|
|
5
5
|
Spinner
|
|
6
6
|
} from "./chunk-7YAU5CY6.mjs";
|
|
7
|
-
import {
|
|
8
|
-
Input
|
|
9
|
-
} from "./chunk-GYMYRIZP.mjs";
|
|
10
7
|
import {
|
|
11
8
|
Dialog,
|
|
12
9
|
DialogContent,
|
|
@@ -14,6 +11,9 @@ import {
|
|
|
14
11
|
DialogHeader,
|
|
15
12
|
DialogTitle
|
|
16
13
|
} from "./chunk-XIRTEFKH.mjs";
|
|
14
|
+
import {
|
|
15
|
+
Input
|
|
16
|
+
} from "./chunk-GYMYRIZP.mjs";
|
|
17
17
|
import {
|
|
18
18
|
Button
|
|
19
19
|
} from "./chunk-2I5S2AMY.mjs";
|
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
Select,
|
|
3
|
-
SelectContent,
|
|
4
|
-
SelectItem,
|
|
5
|
-
SelectTrigger
|
|
6
|
-
} from "./chunk-7PYJD5JI.mjs";
|
|
7
1
|
import {
|
|
8
2
|
Separator
|
|
9
3
|
} from "./chunk-FH6QVUVZ.mjs";
|
|
@@ -11,8 +5,11 @@ import {
|
|
|
11
5
|
Label
|
|
12
6
|
} from "./chunk-NSLMILBT.mjs";
|
|
13
7
|
import {
|
|
14
|
-
|
|
15
|
-
|
|
8
|
+
Select,
|
|
9
|
+
SelectContent,
|
|
10
|
+
SelectItem,
|
|
11
|
+
SelectTrigger
|
|
12
|
+
} from "./chunk-7PYJD5JI.mjs";
|
|
16
13
|
import {
|
|
17
14
|
Dialog,
|
|
18
15
|
DialogContent,
|
|
@@ -20,6 +17,9 @@ import {
|
|
|
20
17
|
DialogHeader,
|
|
21
18
|
DialogTitle
|
|
22
19
|
} from "./chunk-XIRTEFKH.mjs";
|
|
20
|
+
import {
|
|
21
|
+
Input
|
|
22
|
+
} from "./chunk-GYMYRIZP.mjs";
|
|
23
23
|
import {
|
|
24
24
|
Button,
|
|
25
25
|
buttonVariants
|