@wealthx/shadcn 1.5.38 → 1.5.39

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 (35) hide show
  1. package/.turbo/turbo-build.log +129 -126
  2. package/CHANGELOG.md +6 -0
  3. package/dist/{chunk-LSSIWLYU.mjs → chunk-6XNEHTII.mjs} +1 -1
  4. package/dist/{chunk-ULQ53FRJ.mjs → chunk-7NQKFPXE.mjs} +1 -1
  5. package/dist/{chunk-DSVKEVX6.mjs → chunk-CZOGJC76.mjs} +1 -1
  6. package/dist/{chunk-JPGL36WQ.mjs → chunk-FL7DEYUA.mjs} +6 -7
  7. package/dist/{chunk-2CHH5QOA.mjs → chunk-FQUT5XD6.mjs} +1 -1
  8. package/dist/chunk-MGIDYXOP.mjs +814 -0
  9. package/dist/{chunk-OG2VM34K.mjs → chunk-MHBQJVHE.mjs} +1 -1
  10. package/dist/components/ui/file-preview-dialog.js +6 -7
  11. package/dist/components/ui/file-preview-dialog.mjs +2 -2
  12. package/dist/components/ui/kanban-column.js +6 -7
  13. package/dist/components/ui/kanban-column.mjs +3 -3
  14. package/dist/components/ui/opportunity-card.js +6 -7
  15. package/dist/components/ui/opportunity-card.mjs +2 -2
  16. package/dist/components/ui/pipeline-board.js +6 -7
  17. package/dist/components/ui/pipeline-board.mjs +4 -4
  18. package/dist/components/ui/policy-ai/index.js +1636 -0
  19. package/dist/components/ui/policy-ai/index.mjs +36 -0
  20. package/dist/components/ui/progress.js +6 -7
  21. package/dist/components/ui/progress.mjs +1 -1
  22. package/dist/components/ui/stage-timeline.js +6 -7
  23. package/dist/components/ui/stage-timeline.mjs +2 -2
  24. package/dist/index.js +4034 -3258
  25. package/dist/index.mjs +24 -6
  26. package/dist/styles.css +1 -1
  27. package/package.json +10 -5
  28. package/src/components/index.tsx +30 -0
  29. package/src/components/ui/policy-ai/index.tsx +41 -0
  30. package/src/components/ui/policy-ai/policy-ai-panel.tsx +526 -0
  31. package/src/components/ui/policy-ai/policy-ai-primitives.tsx +332 -0
  32. package/src/components/ui/policy-ai/policy-ai-responses.tsx +543 -0
  33. package/src/components/ui/progress.tsx +15 -12
  34. package/src/styles/styles-css.ts +1 -1
  35. package/tsup.config.ts +2 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @wealthx/shadcn
2
2
 
3
+ ## 1.5.39
4
+
5
+ ### Patch Changes
6
+
7
+ - 42ad9ee: Policy AI
8
+
3
9
  ## 1.5.38
4
10
 
5
11
  ### Patch Changes
@@ -3,7 +3,7 @@ import {
3
3
  } from "./chunk-L6LE4OIM.mjs";
4
4
  import {
5
5
  Progress
6
- } from "./chunk-JPGL36WQ.mjs";
6
+ } from "./chunk-FL7DEYUA.mjs";
7
7
  import {
8
8
  Spinner
9
9
  } from "./chunk-JVMXMFBB.mjs";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  Progress
3
- } from "./chunk-JPGL36WQ.mjs";
3
+ } from "./chunk-FL7DEYUA.mjs";
4
4
  import {
5
5
  Skeleton
6
6
  } from "./chunk-GTAVSBDO.mjs";
@@ -3,7 +3,7 @@ import {
3
3
  } from "./chunk-L6LE4OIM.mjs";
4
4
  import {
5
5
  Progress
6
- } from "./chunk-JPGL36WQ.mjs";
6
+ } from "./chunk-FL7DEYUA.mjs";
7
7
  import {
8
8
  DropdownMenu,
9
9
  DropdownMenuContent,
@@ -13,25 +13,24 @@ import { jsx } from "react/jsx-runtime";
13
13
  function Progress(_a) {
14
14
  var _b = _a, {
15
15
  className,
16
- value
16
+ value,
17
+ indicatorClassName
17
18
  } = _b, props = __objRest(_b, [
18
19
  "className",
19
- "value"
20
+ "value",
21
+ "indicatorClassName"
20
22
  ]);
21
23
  return /* @__PURE__ */ jsx(
22
24
  ProgressPrimitive.Root,
23
25
  __spreadProps(__spreadValues({
24
- className: cn(
25
- "relative h-2 w-full overflow-hidden bg-muted",
26
- className
27
- ),
26
+ className: cn("relative h-2 w-full overflow-hidden bg-muted", className),
28
27
  "data-slot": "progress",
29
28
  value
30
29
  }, props), {
31
30
  children: /* @__PURE__ */ jsx(ProgressPrimitive.Track, { className: "h-full", children: /* @__PURE__ */ jsx(
32
31
  ProgressPrimitive.Indicator,
33
32
  {
34
- className: "h-full bg-primary transition-all",
33
+ className: cn("h-full bg-primary transition-all", indicatorClassName),
35
34
  "data-slot": "progress-indicator"
36
35
  }
37
36
  ) })
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  KanbanColumn
3
- } from "./chunk-OG2VM34K.mjs";
3
+ } from "./chunk-MHBQJVHE.mjs";
4
4
  import {
5
5
  ToggleGroup,
6
6
  ToggleGroupItem