@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.
Files changed (58) hide show
  1. package/.turbo/turbo-build.log +76 -67
  2. package/CHANGELOG.md +7 -0
  3. package/dist/{chunk-4CX4SBRO.mjs → chunk-A6AAWBPF.mjs} +1 -1
  4. package/dist/{chunk-WOEHFRGB.mjs → chunk-BDYZCBRT.mjs} +4 -4
  5. package/dist/{chunk-PMB3A7V3.mjs → chunk-EI5F6FMT.mjs} +1 -1
  6. package/dist/{chunk-CSDO6VBW.mjs → chunk-LBMRIB3G.mjs} +10 -10
  7. package/dist/{chunk-PG6K5XEC.mjs → chunk-S4QRUQNW.mjs} +1 -1
  8. package/dist/chunk-U4NDAF2P.mjs +207 -0
  9. package/dist/{chunk-DOH3EHX7.mjs → chunk-U5X52X37.mjs} +1 -1
  10. package/dist/{chunk-WA6O6EUR.mjs → chunk-URGMJAE3.mjs} +9 -9
  11. package/dist/{chunk-ZRO5JO3H.mjs → chunk-UT4KJR7V.mjs} +48 -12
  12. package/dist/{chunk-SYOD63OZ.mjs → chunk-VGSESELX.mjs} +2 -2
  13. package/dist/chunk-ZRSDX6OW.mjs +385 -0
  14. package/dist/chunk-ZSHYDDRB.mjs +249 -0
  15. package/dist/components/ui/add-column-modal.mjs +3 -3
  16. package/dist/components/ui/add-lead-modal.mjs +2 -2
  17. package/dist/components/ui/color-picker.js +417 -0
  18. package/dist/components/ui/color-picker.mjs +22 -0
  19. package/dist/components/ui/data-table.js +44 -12
  20. package/dist/components/ui/data-table.mjs +1 -1
  21. package/dist/components/ui/date-picker.mjs +2 -2
  22. package/dist/components/ui/form-primitives.js +4 -4
  23. package/dist/components/ui/form-primitives.mjs +3 -3
  24. package/dist/components/ui/opportunity-edit-modals.js +4 -4
  25. package/dist/components/ui/opportunity-edit-modals.mjs +8 -8
  26. package/dist/components/ui/opportunity-summary-tab.js +4 -4
  27. package/dist/components/ui/opportunity-summary-tab.mjs +9 -9
  28. package/dist/components/ui/pipeline-board.js +4 -4
  29. package/dist/components/ui/pipeline-board.mjs +3 -3
  30. package/dist/components/ui/pipeline-dialogs.js +4 -4
  31. package/dist/components/ui/pipeline-dialogs.mjs +5 -5
  32. package/dist/components/ui/sidebar-nav.js +540 -0
  33. package/dist/components/ui/sidebar-nav.mjs +11 -0
  34. package/dist/components/ui/stepper.js +283 -0
  35. package/dist/components/ui/stepper.mjs +18 -0
  36. package/dist/components/ui/toggle-group.js +4 -4
  37. package/dist/components/ui/toggle-group.mjs +2 -2
  38. package/dist/components/ui/toggle.js +4 -4
  39. package/dist/components/ui/toggle.mjs +1 -1
  40. package/dist/index.js +2141 -1292
  41. package/dist/index.mjs +103 -71
  42. package/dist/lib/typography.js +10 -10
  43. package/dist/lib/typography.mjs +1 -1
  44. package/dist/styles.css +1 -1
  45. package/package.json +16 -1
  46. package/src/components/index.tsx +41 -0
  47. package/src/components/ui/color-picker.tsx +307 -0
  48. package/src/components/ui/data-table.tsx +91 -11
  49. package/src/components/ui/sidebar-nav.tsx +517 -0
  50. package/src/components/ui/stepper.tsx +347 -0
  51. package/src/components/ui/toggle.tsx +4 -4
  52. package/src/lib/typography.ts +11 -11
  53. package/src/styles/globals.css +19 -19
  54. package/src/styles/styles-css.ts +1 -1
  55. package/tsup.config.ts +3 -0
  56. package/dist/{chunk-KUDCQ4FI.mjs → chunk-5MEWU56Z.mjs} +3 -3
  57. package/dist/{chunk-PR6V5XKM.mjs → chunk-CGH4DRNG.mjs} +3 -3
  58. 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
- Input
15
- } from "./chunk-GYMYRIZP.mjs";
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