@wealthx/shadcn 1.5.28 → 1.5.30
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 +134 -134
- package/CHANGELOG.md +12 -0
- package/dist/{chunk-DWJHPNFL.mjs → chunk-4UT3RZ2D.mjs} +32 -16
- package/dist/{chunk-CE2WONIY.mjs → chunk-AE4JKISB.mjs} +27 -31
- package/dist/chunk-BZWQU52U.mjs +1025 -0
- package/dist/{chunk-RNLIZRAK.mjs → chunk-C6R42PCL.mjs} +1 -1
- package/dist/{chunk-EVUY67CY.mjs → chunk-FTQ2AKZ2.mjs} +1 -1
- package/dist/{chunk-7T4TYUO3.mjs → chunk-H5ZD63NT.mjs} +31 -16
- package/dist/{chunk-SO4RB3XB.mjs → chunk-IEQX4UVP.mjs} +2 -2
- package/dist/chunk-IKVF4XE2.mjs +94 -0
- package/dist/{chunk-KPGARKFC.mjs → chunk-MS3GNXMB.mjs} +1 -1
- package/dist/{chunk-M32QNCD3.mjs → chunk-OSSS56CB.mjs} +1 -1
- package/dist/{chunk-36IN7YRM.mjs → chunk-SCGCGVDN.mjs} +1 -1
- package/dist/{chunk-KJQ3BVTB.mjs → chunk-X2NIDXFB.mjs} +1 -1
- package/dist/components/ui/ai-builder/index.js +993 -12
- package/dist/components/ui/ai-builder/index.mjs +27 -3
- package/dist/components/ui/ai-conversations/index.js +27 -31
- package/dist/components/ui/ai-conversations/index.mjs +1 -1
- package/dist/components/ui/backoffice-signup-steps.js +98 -48
- package/dist/components/ui/backoffice-signup-steps.mjs +4 -4
- package/dist/components/ui/bank-statement-generate-dialog.mjs +2 -2
- package/dist/components/ui/chat-widget.js +1 -1
- package/dist/components/ui/chat-widget.mjs +2 -2
- package/dist/components/ui/contact-alert-dialog/index.mjs +2 -2
- package/dist/components/ui/field.js +1 -1
- package/dist/components/ui/field.mjs +1 -1
- package/dist/components/ui/frontend-signup-steps.js +166 -90
- package/dist/components/ui/frontend-signup-steps.mjs +4 -5
- package/dist/components/ui/password-strength-tooltip.js +81 -107
- package/dist/components/ui/password-strength-tooltip.mjs +3 -2
- package/dist/components/ui/property-report-dialog.mjs +2 -2
- package/dist/components/ui/signup-form-primitives.js +117 -114
- package/dist/components/ui/signup-form-primitives.mjs +3 -4
- package/dist/components/ui/two-fa-setup-form.js +31 -16
- package/dist/components/ui/two-fa-setup-form.mjs +2 -2
- package/dist/index.js +5061 -4992
- package/dist/index.mjs +12 -12
- package/dist/styles.css +1 -1
- package/package.json +4 -1
- package/src/components/index.tsx +0 -2
- package/src/components/ui/ai-builder/agent-card.tsx +7 -5
- package/src/components/ui/ai-builder/agent-settings.tsx +709 -0
- package/src/components/ui/ai-builder/index.tsx +27 -2
- package/src/components/ui/ai-builder/service-config-modal.tsx +11 -11
- package/src/components/ui/ai-builder/types.ts +27 -15
- package/src/components/ui/ai-conversations/thread.tsx +9 -11
- package/src/components/ui/field.tsx +12 -12
- package/src/components/ui/password-strength-tooltip.tsx +89 -47
- package/src/components/ui/signup-form-primitives.tsx +34 -16
- package/src/components/ui/two-fa-setup-form.tsx +41 -31
- package/src/styles/styles-css.ts +1 -1
- package/dist/chunk-T5PGVLMR.mjs +0 -479
- package/dist/chunk-WHIW6KOB.mjs +0 -57
package/dist/index.mjs
CHANGED
|
@@ -9,14 +9,14 @@ import {
|
|
|
9
9
|
ConversationStatusChip,
|
|
10
10
|
ConversationsPage,
|
|
11
11
|
LeadInfoPanel
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-AE4JKISB.mjs";
|
|
13
13
|
import {
|
|
14
14
|
ALERT_QUERY_FIELDS,
|
|
15
15
|
AlertSharingType,
|
|
16
16
|
ContactAlertDialog,
|
|
17
17
|
ContactAlertQueryBuilder,
|
|
18
18
|
createAlertTree
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-SCGCGVDN.mjs";
|
|
20
20
|
import {
|
|
21
21
|
ResourceCarousel,
|
|
22
22
|
ResourceCenterHeader,
|
|
@@ -37,7 +37,7 @@ import {
|
|
|
37
37
|
} from "./chunk-77L3UPBW.mjs";
|
|
38
38
|
import {
|
|
39
39
|
TwoFASetupForm
|
|
40
|
-
} from "./chunk-
|
|
40
|
+
} from "./chunk-H5ZD63NT.mjs";
|
|
41
41
|
import {
|
|
42
42
|
VideoBackground
|
|
43
43
|
} from "./chunk-ZGQIVGIN.mjs";
|
|
@@ -47,7 +47,7 @@ import {
|
|
|
47
47
|
IntegrationInstructionCard,
|
|
48
48
|
IntegrationServiceCard,
|
|
49
49
|
ServiceConfigurationModal
|
|
50
|
-
} from "./chunk-
|
|
50
|
+
} from "./chunk-BZWQU52U.mjs";
|
|
51
51
|
import {
|
|
52
52
|
FrontendShell,
|
|
53
53
|
SignupShell,
|
|
@@ -75,7 +75,7 @@ import {
|
|
|
75
75
|
} from "./chunk-JUMEIPII.mjs";
|
|
76
76
|
import {
|
|
77
77
|
PropertyReportDialog
|
|
78
|
-
} from "./chunk-
|
|
78
|
+
} from "./chunk-OSSS56CB.mjs";
|
|
79
79
|
import {
|
|
80
80
|
ReviewAlertsDialog
|
|
81
81
|
} from "./chunk-HONTZFLO.mjs";
|
|
@@ -168,7 +168,7 @@ import {
|
|
|
168
168
|
FrontendSuccessStep,
|
|
169
169
|
PhoneVerifyStep,
|
|
170
170
|
RetrieveBankDataStep
|
|
171
|
-
} from "./chunk-
|
|
171
|
+
} from "./chunk-C6R42PCL.mjs";
|
|
172
172
|
import {
|
|
173
173
|
InputOTP,
|
|
174
174
|
InputOTPGroup,
|
|
@@ -264,7 +264,7 @@ import {
|
|
|
264
264
|
ChatWidgetTopicGrid,
|
|
265
265
|
ChatWidgetWindow,
|
|
266
266
|
DEFAULT_CHAT_WIDGET_TOPICS
|
|
267
|
-
} from "./chunk-
|
|
267
|
+
} from "./chunk-X2NIDXFB.mjs";
|
|
268
268
|
import {
|
|
269
269
|
ChatWidgetHeader,
|
|
270
270
|
ChatWidgetInputBar,
|
|
@@ -299,16 +299,16 @@ import {
|
|
|
299
299
|
PaymentView,
|
|
300
300
|
PersonalDetailsStep,
|
|
301
301
|
StripeView
|
|
302
|
-
} from "./chunk-
|
|
302
|
+
} from "./chunk-IEQX4UVP.mjs";
|
|
303
303
|
import {
|
|
304
304
|
FormField,
|
|
305
305
|
PasswordField,
|
|
306
306
|
SectionHeading,
|
|
307
307
|
StaffRowItem
|
|
308
|
-
} from "./chunk-
|
|
308
|
+
} from "./chunk-4UT3RZ2D.mjs";
|
|
309
309
|
import {
|
|
310
310
|
PasswordStrengthTooltip
|
|
311
|
-
} from "./chunk-
|
|
311
|
+
} from "./chunk-IKVF4XE2.mjs";
|
|
312
312
|
import {
|
|
313
313
|
UploadCard,
|
|
314
314
|
uploadCardVariants
|
|
@@ -326,7 +326,7 @@ import {
|
|
|
326
326
|
} from "./chunk-7N6O3VPJ.mjs";
|
|
327
327
|
import {
|
|
328
328
|
BankStatementGenerateDialog
|
|
329
|
-
} from "./chunk-
|
|
329
|
+
} from "./chunk-FTQ2AKZ2.mjs";
|
|
330
330
|
import {
|
|
331
331
|
Field,
|
|
332
332
|
FieldContent,
|
|
@@ -338,7 +338,7 @@ import {
|
|
|
338
338
|
FieldSeparator,
|
|
339
339
|
FieldSet,
|
|
340
340
|
FieldTitle
|
|
341
|
-
} from "./chunk-
|
|
341
|
+
} from "./chunk-MS3GNXMB.mjs";
|
|
342
342
|
import {
|
|
343
343
|
BankStatementPDFViewer
|
|
344
344
|
} from "./chunk-LBXIYS34.mjs";
|