@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.
- package/.turbo/turbo-build.log +129 -126
- package/CHANGELOG.md +6 -0
- package/dist/{chunk-LSSIWLYU.mjs → chunk-6XNEHTII.mjs} +1 -1
- package/dist/{chunk-ULQ53FRJ.mjs → chunk-7NQKFPXE.mjs} +1 -1
- package/dist/{chunk-DSVKEVX6.mjs → chunk-CZOGJC76.mjs} +1 -1
- package/dist/{chunk-JPGL36WQ.mjs → chunk-FL7DEYUA.mjs} +6 -7
- package/dist/{chunk-2CHH5QOA.mjs → chunk-FQUT5XD6.mjs} +1 -1
- package/dist/chunk-MGIDYXOP.mjs +814 -0
- package/dist/{chunk-OG2VM34K.mjs → chunk-MHBQJVHE.mjs} +1 -1
- package/dist/components/ui/file-preview-dialog.js +6 -7
- package/dist/components/ui/file-preview-dialog.mjs +2 -2
- package/dist/components/ui/kanban-column.js +6 -7
- package/dist/components/ui/kanban-column.mjs +3 -3
- package/dist/components/ui/opportunity-card.js +6 -7
- package/dist/components/ui/opportunity-card.mjs +2 -2
- package/dist/components/ui/pipeline-board.js +6 -7
- package/dist/components/ui/pipeline-board.mjs +4 -4
- package/dist/components/ui/policy-ai/index.js +1636 -0
- package/dist/components/ui/policy-ai/index.mjs +36 -0
- package/dist/components/ui/progress.js +6 -7
- package/dist/components/ui/progress.mjs +1 -1
- package/dist/components/ui/stage-timeline.js +6 -7
- package/dist/components/ui/stage-timeline.mjs +2 -2
- package/dist/index.js +4034 -3258
- package/dist/index.mjs +24 -6
- package/dist/styles.css +1 -1
- package/package.json +10 -5
- package/src/components/index.tsx +30 -0
- package/src/components/ui/policy-ai/index.tsx +41 -0
- package/src/components/ui/policy-ai/policy-ai-panel.tsx +526 -0
- package/src/components/ui/policy-ai/policy-ai-primitives.tsx +332 -0
- package/src/components/ui/policy-ai/policy-ai-responses.tsx +543 -0
- package/src/components/ui/progress.tsx +15 -12
- package/src/styles/styles-css.ts +1 -1
- package/tsup.config.ts +2 -1
package/dist/index.mjs
CHANGED
|
@@ -24,6 +24,16 @@ import {
|
|
|
24
24
|
ContactAlertQueryBuilder,
|
|
25
25
|
createAlertTree
|
|
26
26
|
} from "./chunk-SCGCGVDN.mjs";
|
|
27
|
+
import {
|
|
28
|
+
PolicyAIFAB,
|
|
29
|
+
PolicyAIPanel,
|
|
30
|
+
PolicyCitationPanel,
|
|
31
|
+
PolicyComparisonTable,
|
|
32
|
+
PolicyQueryChip,
|
|
33
|
+
PolicyRankedList,
|
|
34
|
+
PolicySingleBankAnswer,
|
|
35
|
+
PolicyVerdictBadge
|
|
36
|
+
} from "./chunk-MGIDYXOP.mjs";
|
|
27
37
|
import {
|
|
28
38
|
ResourceCarousel,
|
|
29
39
|
ResourceCenterHeader,
|
|
@@ -66,7 +76,7 @@ import {
|
|
|
66
76
|
} from "./chunk-WZ6UJCBL.mjs";
|
|
67
77
|
import {
|
|
68
78
|
StageTimeline
|
|
69
|
-
} from "./chunk-
|
|
79
|
+
} from "./chunk-6XNEHTII.mjs";
|
|
70
80
|
import {
|
|
71
81
|
SelectableCard
|
|
72
82
|
} from "./chunk-3Z75IKFO.mjs";
|
|
@@ -92,7 +102,7 @@ import {
|
|
|
92
102
|
} from "./chunk-HONTZFLO.mjs";
|
|
93
103
|
import {
|
|
94
104
|
PipelineBoard
|
|
95
|
-
} from "./chunk-
|
|
105
|
+
} from "./chunk-FQUT5XD6.mjs";
|
|
96
106
|
import {
|
|
97
107
|
PipelineChart
|
|
98
108
|
} from "./chunk-PCULNQWA.mjs";
|
|
@@ -141,11 +151,11 @@ import {
|
|
|
141
151
|
} from "./chunk-TCE5L44O.mjs";
|
|
142
152
|
import {
|
|
143
153
|
KanbanColumn
|
|
144
|
-
} from "./chunk-
|
|
154
|
+
} from "./chunk-MHBQJVHE.mjs";
|
|
145
155
|
import {
|
|
146
156
|
LeadCard,
|
|
147
157
|
OpportunityCard
|
|
148
|
-
} from "./chunk-
|
|
158
|
+
} from "./chunk-CZOGJC76.mjs";
|
|
149
159
|
import {
|
|
150
160
|
TaskCheckItem
|
|
151
161
|
} from "./chunk-L6LE4OIM.mjs";
|
|
@@ -198,10 +208,10 @@ import {
|
|
|
198
208
|
} from "./chunk-4LLTZ45R.mjs";
|
|
199
209
|
import {
|
|
200
210
|
FilePreviewDialog
|
|
201
|
-
} from "./chunk-
|
|
211
|
+
} from "./chunk-7NQKFPXE.mjs";
|
|
202
212
|
import {
|
|
203
213
|
Progress
|
|
204
|
-
} from "./chunk-
|
|
214
|
+
} from "./chunk-FL7DEYUA.mjs";
|
|
205
215
|
import {
|
|
206
216
|
AboutCard,
|
|
207
217
|
AlertCard,
|
|
@@ -937,6 +947,14 @@ export {
|
|
|
937
947
|
PipelineAlerts,
|
|
938
948
|
PipelineBoard,
|
|
939
949
|
PipelineChart,
|
|
950
|
+
PolicyAIFAB,
|
|
951
|
+
PolicyAIPanel,
|
|
952
|
+
PolicyCitationPanel,
|
|
953
|
+
PolicyComparisonTable,
|
|
954
|
+
PolicyQueryChip,
|
|
955
|
+
PolicyRankedList,
|
|
956
|
+
PolicySingleBankAnswer,
|
|
957
|
+
PolicyVerdictBadge,
|
|
940
958
|
Popover,
|
|
941
959
|
PopoverAnchor,
|
|
942
960
|
PopoverContent,
|