@wealthx/shadcn 1.5.37 → 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 (60) hide show
  1. package/.turbo/turbo-build.log +142 -133
  2. package/CHANGELOG.md +12 -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-734FOOJC.mjs → chunk-B5PSUONN.mjs} +25 -58
  6. package/dist/{chunk-DSVKEVX6.mjs → chunk-CZOGJC76.mjs} +1 -1
  7. package/dist/chunk-EFHPSKVF.mjs +192 -0
  8. package/dist/{chunk-JPGL36WQ.mjs → chunk-FL7DEYUA.mjs} +6 -7
  9. package/dist/{chunk-2CHH5QOA.mjs → chunk-FQUT5XD6.mjs} +1 -1
  10. package/dist/chunk-MGIDYXOP.mjs +814 -0
  11. package/dist/{chunk-OG2VM34K.mjs → chunk-MHBQJVHE.mjs} +1 -1
  12. package/dist/{chunk-NB3ZL36B.mjs → chunk-MZI77ZMX.mjs} +17 -2
  13. package/dist/chunk-R7M657QL.mjs +587 -0
  14. package/dist/{chunk-DIH2NZZ3.mjs → chunk-RRROLESJ.mjs} +33 -23
  15. package/dist/components/ui/ai-assistant-drawer.js +269 -121
  16. package/dist/components/ui/ai-assistant-drawer.mjs +2 -1
  17. package/dist/components/ui/ai-conversations/index.js +474 -286
  18. package/dist/components/ui/ai-conversations/index.mjs +2 -1
  19. package/dist/components/ui/chat-input-area.js +429 -0
  20. package/dist/components/ui/chat-input-area.mjs +11 -0
  21. package/dist/components/ui/file-preview-dialog.js +6 -7
  22. package/dist/components/ui/file-preview-dialog.mjs +2 -2
  23. package/dist/components/ui/kanban-column.js +6 -7
  24. package/dist/components/ui/kanban-column.mjs +3 -3
  25. package/dist/components/ui/opportunity-card.js +6 -7
  26. package/dist/components/ui/opportunity-card.mjs +2 -2
  27. package/dist/components/ui/page-top-bar.js +182 -5
  28. package/dist/components/ui/page-top-bar.mjs +3 -1
  29. package/dist/components/ui/pipeline-board.js +6 -7
  30. package/dist/components/ui/pipeline-board.mjs +4 -4
  31. package/dist/components/ui/policy-ai/index.js +1636 -0
  32. package/dist/components/ui/policy-ai/index.mjs +36 -0
  33. package/dist/components/ui/progress.js +6 -7
  34. package/dist/components/ui/progress.mjs +1 -1
  35. package/dist/components/ui/stage-timeline.js +6 -7
  36. package/dist/components/ui/stage-timeline.mjs +2 -2
  37. package/dist/components/ui/support-agent/index.js +1131 -0
  38. package/dist/components/ui/support-agent/index.mjs +27 -0
  39. package/dist/index.js +5609 -4100
  40. package/dist/index.mjs +77 -41
  41. package/dist/styles.css +1 -1
  42. package/package.json +16 -1
  43. package/src/components/index.tsx +54 -0
  44. package/src/components/ui/ai-assistant-drawer.tsx +24 -51
  45. package/src/components/ui/ai-conversations/index.tsx +16 -8
  46. package/src/components/ui/ai-conversations/thread.tsx +38 -27
  47. package/src/components/ui/chat-input-area.tsx +244 -0
  48. package/src/components/ui/page-top-bar.tsx +31 -5
  49. package/src/components/ui/policy-ai/index.tsx +41 -0
  50. package/src/components/ui/policy-ai/policy-ai-panel.tsx +526 -0
  51. package/src/components/ui/policy-ai/policy-ai-primitives.tsx +332 -0
  52. package/src/components/ui/policy-ai/policy-ai-responses.tsx +543 -0
  53. package/src/components/ui/progress.tsx +15 -12
  54. package/src/components/ui/support-agent/index.tsx +25 -0
  55. package/src/components/ui/support-agent/support-agent-fab.tsx +116 -0
  56. package/src/components/ui/support-agent/support-agent-panel.tsx +498 -0
  57. package/src/components/ui/support-agent/support-agent-primitives.tsx +354 -0
  58. package/src/styles/globals.css +1 -0
  59. package/src/styles/styles-css.ts +1 -1
  60. package/tsup.config.ts +3 -0
package/dist/index.mjs CHANGED
@@ -1,3 +1,10 @@
1
+ import {
2
+ AgentCard,
3
+ AgentMenuModal,
4
+ IntegrationInstructionCard,
5
+ IntegrationServiceCard,
6
+ ServiceConfigurationModal
7
+ } from "./chunk-BZWQU52U.mjs";
1
8
  import {
2
9
  AICollectedDataSection,
3
10
  AiConvAssignAdvisorDialog,
@@ -9,7 +16,7 @@ import {
9
16
  ConversationStatusChip,
10
17
  ConversationsPage,
11
18
  LeadInfoPanel
12
- } from "./chunk-DIH2NZZ3.mjs";
19
+ } from "./chunk-RRROLESJ.mjs";
13
20
  import {
14
21
  ALERT_QUERY_FIELDS,
15
22
  AlertSharingType,
@@ -17,6 +24,16 @@ import {
17
24
  ContactAlertQueryBuilder,
18
25
  createAlertTree
19
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";
20
37
  import {
21
38
  ResourceCarousel,
22
39
  ResourceCenterHeader,
@@ -26,6 +43,14 @@ import {
26
43
  ResourceModal,
27
44
  ResourceVideoCard
28
45
  } from "./chunk-FYZBGWYR.mjs";
46
+ import {
47
+ SupportAgentFAB,
48
+ SupportAgentPanel,
49
+ SupportArticleCard,
50
+ SupportContextChip,
51
+ SupportStepGuideCard,
52
+ SupportSuggestedQuestion
53
+ } from "./chunk-R7M657QL.mjs";
29
54
  import {
30
55
  TransactionsExpenseCategoriesDoughnutChart
31
56
  } from "./chunk-FGMDBJCF.mjs";
@@ -41,13 +66,6 @@ import {
41
66
  import {
42
67
  VideoBackground
43
68
  } from "./chunk-ZGQIVGIN.mjs";
44
- import {
45
- AgentCard,
46
- AgentMenuModal,
47
- IntegrationInstructionCard,
48
- IntegrationServiceCard,
49
- ServiceConfigurationModal
50
- } from "./chunk-BZWQU52U.mjs";
51
69
  import {
52
70
  FrontendShell,
53
71
  SignupShell,
@@ -58,7 +76,7 @@ import {
58
76
  } from "./chunk-WZ6UJCBL.mjs";
59
77
  import {
60
78
  StageTimeline
61
- } from "./chunk-LSSIWLYU.mjs";
79
+ } from "./chunk-6XNEHTII.mjs";
62
80
  import {
63
81
  SelectableCard
64
82
  } from "./chunk-3Z75IKFO.mjs";
@@ -70,6 +88,9 @@ import {
70
88
  import {
71
89
  SidebarNav
72
90
  } from "./chunk-E432NK23.mjs";
91
+ import {
92
+ PropertyDebtEquityDoughnutChart
93
+ } from "./chunk-GYWOD2YI.mjs";
73
94
  import {
74
95
  PropertyMobileEstimateLineChart
75
96
  } from "./chunk-JUMEIPII.mjs";
@@ -79,6 +100,9 @@ import {
79
100
  import {
80
101
  ReviewAlertsDialog
81
102
  } from "./chunk-HONTZFLO.mjs";
103
+ import {
104
+ PipelineBoard
105
+ } from "./chunk-FQUT5XD6.mjs";
82
106
  import {
83
107
  PipelineChart
84
108
  } from "./chunk-PCULNQWA.mjs";
@@ -90,9 +114,6 @@ import {
90
114
  import {
91
115
  PropertyCashflowDoughnutChart
92
116
  } from "./chunk-VLVEZHFE.mjs";
93
- import {
94
- PropertyDebtEquityDoughnutChart
95
- } from "./chunk-GYWOD2YI.mjs";
96
117
  import {
97
118
  OpportunitySummaryTab
98
119
  } from "./chunk-3ZU5BH6X.mjs";
@@ -109,13 +130,10 @@ import {
109
130
  } from "./chunk-NT4FX27K.mjs";
110
131
  import {
111
132
  PageTopBar
112
- } from "./chunk-NB3ZL36B.mjs";
133
+ } from "./chunk-MZI77ZMX.mjs";
113
134
  import {
114
135
  PipelineAlerts
115
136
  } from "./chunk-KFH36NKF.mjs";
116
- import {
117
- PipelineBoard
118
- } from "./chunk-2CHH5QOA.mjs";
119
137
  import {
120
138
  LoanWizardShell
121
139
  } from "./chunk-PUJ42INK.mjs";
@@ -133,11 +151,11 @@ import {
133
151
  } from "./chunk-TCE5L44O.mjs";
134
152
  import {
135
153
  KanbanColumn
136
- } from "./chunk-OG2VM34K.mjs";
154
+ } from "./chunk-MHBQJVHE.mjs";
137
155
  import {
138
156
  LeadCard,
139
157
  OpportunityCard
140
- } from "./chunk-DSVKEVX6.mjs";
158
+ } from "./chunk-CZOGJC76.mjs";
141
159
  import {
142
160
  TaskCheckItem
143
161
  } from "./chunk-L6LE4OIM.mjs";
@@ -147,9 +165,16 @@ import {
147
165
  import {
148
166
  LoanEntryShell
149
167
  } from "./chunk-623YVI5O.mjs";
168
+ import {
169
+ IncomeWorkDetails
170
+ } from "./chunk-ZA37ZWZW.mjs";
150
171
  import {
151
172
  IntegrationCard
152
173
  } from "./chunk-67DGIPQ4.mjs";
174
+ import {
175
+ OpportunityDetailsDrawer,
176
+ SummaryReportDrawer
177
+ } from "./chunk-53ZB2JWT.mjs";
153
178
  import {
154
179
  AlertAccordion,
155
180
  DebtSection,
@@ -175,9 +200,6 @@ import {
175
200
  InputOTPSeparator,
176
201
  InputOTPSlot
177
202
  } from "./chunk-HK4HUQTV.mjs";
178
- import {
179
- IncomeWorkDetails
180
- } from "./chunk-ZA37ZWZW.mjs";
181
203
  import {
182
204
  IncomeBarChart
183
205
  } from "./chunk-IRZWYTGV.mjs";
@@ -186,10 +208,10 @@ import {
186
208
  } from "./chunk-4LLTZ45R.mjs";
187
209
  import {
188
210
  FilePreviewDialog
189
- } from "./chunk-ULQ53FRJ.mjs";
211
+ } from "./chunk-7NQKFPXE.mjs";
190
212
  import {
191
213
  Progress
192
- } from "./chunk-JPGL36WQ.mjs";
214
+ } from "./chunk-FL7DEYUA.mjs";
193
215
  import {
194
216
  AboutCard,
195
217
  AlertCard,
@@ -209,10 +231,6 @@ import {
209
231
  FinancialSubtotalBlock,
210
232
  FinancialSubtotalFrame
211
233
  } from "./chunk-DQB4EPIS.mjs";
212
- import {
213
- OpportunityDetailsDrawer,
214
- SummaryReportDrawer
215
- } from "./chunk-53ZB2JWT.mjs";
216
234
  import {
217
235
  DeleteContactComponent
218
236
  } from "./chunk-5DAQU3B6.mjs";
@@ -231,6 +249,19 @@ import {
231
249
  DrawerTitle,
232
250
  DrawerTrigger
233
251
  } from "./chunk-EHQ35FYA.mjs";
252
+ import {
253
+ Combobox,
254
+ ComboboxContent,
255
+ ComboboxEmpty,
256
+ ComboboxGroup,
257
+ ComboboxGroupLabel,
258
+ ComboboxInput,
259
+ ComboboxItem,
260
+ ComboboxList,
261
+ ComboboxSeparator,
262
+ ComboboxTrigger,
263
+ ComboboxValue
264
+ } from "./chunk-OEOOYMC2.mjs";
234
265
  import {
235
266
  CreateContactModal
236
267
  } from "./chunk-OKIWXOJL.mjs";
@@ -275,19 +306,6 @@ import {
275
306
  import {
276
307
  Chip
277
308
  } from "./chunk-MPA2HV5U.mjs";
278
- import {
279
- Combobox,
280
- ComboboxContent,
281
- ComboboxEmpty,
282
- ComboboxGroup,
283
- ComboboxGroupLabel,
284
- ComboboxInput,
285
- ComboboxItem,
286
- ComboboxList,
287
- ComboboxSeparator,
288
- ComboboxTrigger,
289
- ComboboxValue
290
- } from "./chunk-OEOOYMC2.mjs";
291
309
  import {
292
310
  CashBalanceLineChart
293
311
  } from "./chunk-LHQACMZY.mjs";
@@ -547,7 +565,10 @@ import {
547
565
  } from "./chunk-AJUAJC5O.mjs";
548
566
  import {
549
567
  AiAssistantDrawer
550
- } from "./chunk-734FOOJC.mjs";
568
+ } from "./chunk-B5PSUONN.mjs";
569
+ import {
570
+ ChatInputArea
571
+ } from "./chunk-EFHPSKVF.mjs";
551
572
  import {
552
573
  Sheet,
553
574
  SheetClose,
@@ -743,6 +764,7 @@ export {
743
764
  ChangePriorityDialog,
744
765
  ChatBubble,
745
766
  ChatComposer,
767
+ ChatInputArea,
746
768
  ChatThread,
747
769
  ChatWidget,
748
770
  ChatWidgetHeader,
@@ -925,6 +947,14 @@ export {
925
947
  PipelineAlerts,
926
948
  PipelineBoard,
927
949
  PipelineChart,
950
+ PolicyAIFAB,
951
+ PolicyAIPanel,
952
+ PolicyCitationPanel,
953
+ PolicyComparisonTable,
954
+ PolicyQueryChip,
955
+ PolicyRankedList,
956
+ PolicySingleBankAnswer,
957
+ PolicyVerdictBadge,
928
958
  Popover,
929
959
  PopoverAnchor,
930
960
  PopoverContent,
@@ -995,6 +1025,12 @@ export {
995
1025
  Stepper,
996
1026
  StripeView,
997
1027
  SummaryReportDrawer,
1028
+ SupportAgentFAB,
1029
+ SupportAgentPanel,
1030
+ SupportArticleCard,
1031
+ SupportContextChip,
1032
+ SupportStepGuideCard,
1033
+ SupportSuggestedQuestion,
998
1034
  Switch,
999
1035
  SwitchCard,
1000
1036
  TYPOGRAPHY,