@wealthx/shadcn 1.5.11 → 1.5.13
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 +88 -88
- package/CHANGELOG.md +12 -0
- package/dist/{chunk-O5CP6VP6.mjs → chunk-BF5FKUF6.mjs} +104 -63
- package/dist/{chunk-ZMTCMP2G.mjs → chunk-EB626HVW.mjs} +70 -3
- package/dist/chunk-KICT4VQL.mjs +508 -0
- package/dist/chunk-V23CBULF.mjs +432 -0
- package/dist/components/ui/ai-conversations.js +70 -3
- package/dist/components/ui/ai-conversations.mjs +1 -1
- package/dist/components/ui/appointment-calendar-view.js +177 -176
- package/dist/components/ui/appointment-calendar-view.mjs +1 -1
- package/dist/components/ui/bank-statement-generate-dialog.js +209 -107
- package/dist/components/ui/bank-statement-generate-dialog.mjs +2 -1
- package/dist/components/ui/resource-center/index.js +1030 -0
- package/dist/components/ui/resource-center/index.mjs +29 -0
- package/dist/index.js +661 -403
- package/dist/index.mjs +16 -14
- package/dist/styles.css +1 -1
- package/package.json +4 -4
- package/src/components/index.tsx +2 -0
- package/src/components/ui/ai-conversations.tsx +157 -23
- package/src/components/ui/appointment-calendar-view.tsx +211 -199
- package/src/components/ui/bank-statement-generate-dialog.tsx +147 -96
- package/src/components/ui/resource-center/index.tsx +35 -0
- package/src/components/ui/resource-center/resource-cards.tsx +218 -0
- package/src/components/ui/resource-center/resource-carousel.tsx +122 -0
- package/src/components/ui/resource-center/resource-center-header.tsx +95 -0
- package/src/components/ui/resource-center/resource-email-editor-dialog.tsx +131 -0
- package/src/components/ui/resource-center/resource-modal.tsx +76 -0
- package/src/components/ui/resource-center/types.ts +81 -0
- package/src/styles/styles-css.ts +1 -1
- package/tsup.config.ts +1 -1
- package/dist/chunk-IODGRCQG.mjs +0 -438
- package/dist/chunk-XYWEGBAA.mjs +0 -348
- package/dist/components/ui/resource-center.js +0 -748
- package/dist/components/ui/resource-center.mjs +0 -24
- package/src/components/ui/resource-center.tsx +0 -539
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ResourceCarousel,
|
|
3
|
+
ResourceCenterHeader,
|
|
4
|
+
ResourceDocumentCard,
|
|
5
|
+
ResourceEmailEditorDialog,
|
|
6
|
+
ResourceEmailTemplateCard,
|
|
7
|
+
ResourceModal,
|
|
8
|
+
ResourceVideoCard
|
|
9
|
+
} from "../../../chunk-KICT4VQL.mjs";
|
|
10
|
+
import "../../../chunk-LI2CTS5O.mjs";
|
|
11
|
+
import "../../../chunk-X6RC5UWB.mjs";
|
|
12
|
+
import "../../../chunk-OWFQSXVD.mjs";
|
|
13
|
+
import "../../../chunk-6QAFGZC2.mjs";
|
|
14
|
+
import "../../../chunk-LBTHZSBT.mjs";
|
|
15
|
+
import "../../../chunk-XYSRRDBH.mjs";
|
|
16
|
+
import "../../../chunk-FRCTOAKZ.mjs";
|
|
17
|
+
import "../../../chunk-NOOEKOWY.mjs";
|
|
18
|
+
import "../../../chunk-R4HCRDU5.mjs";
|
|
19
|
+
import "../../../chunk-AFML43VJ.mjs";
|
|
20
|
+
import "../../../chunk-WNQUEZJF.mjs";
|
|
21
|
+
export {
|
|
22
|
+
ResourceCarousel,
|
|
23
|
+
ResourceCenterHeader,
|
|
24
|
+
ResourceDocumentCard,
|
|
25
|
+
ResourceEmailEditorDialog,
|
|
26
|
+
ResourceEmailTemplateCard,
|
|
27
|
+
ResourceModal,
|
|
28
|
+
ResourceVideoCard
|
|
29
|
+
};
|