@wealthx/shadcn 1.5.28 → 1.5.29
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 +104 -104
- package/CHANGELOG.md +6 -0
- package/dist/{chunk-CE2WONIY.mjs → chunk-AE4JKISB.mjs} +27 -31
- package/dist/chunk-BZWQU52U.mjs +1025 -0
- 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/index.js +4976 -4972
- package/dist/index.mjs +2 -2
- 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/styles/styles-css.ts +1 -1
- package/dist/chunk-T5PGVLMR.mjs +0 -479
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wealthx/shadcn",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.29",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -15,6 +15,9 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@base-ui/react": "^1.3.0",
|
|
18
|
+
"@dnd-kit/core": "^6.3.1",
|
|
19
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
20
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
18
21
|
"@fontsource-variable/figtree": "^5.2.10",
|
|
19
22
|
"@react-awesome-query-builder/ui": "6.7.0-alpha.0",
|
|
20
23
|
"@tanstack/react-table": "8.21.3",
|
package/src/components/index.tsx
CHANGED
|
@@ -80,7 +80,7 @@ export function AgentCard({
|
|
|
80
80
|
: "bg-muted-foreground/40",
|
|
81
81
|
)}
|
|
82
82
|
/>
|
|
83
|
-
<span className="truncate text-
|
|
83
|
+
<span className="truncate text-label-medium leading-tight">
|
|
84
84
|
{title}
|
|
85
85
|
</span>
|
|
86
86
|
{isComingSoon && (
|
|
@@ -108,13 +108,15 @@ export function AgentCard({
|
|
|
108
108
|
</div>
|
|
109
109
|
</div>
|
|
110
110
|
|
|
111
|
-
<p className="text-
|
|
111
|
+
<p className="text-body-small text-muted-foreground flex-1">
|
|
112
112
|
{description}
|
|
113
113
|
</p>
|
|
114
114
|
|
|
115
115
|
<div className="flex flex-col gap-2">
|
|
116
116
|
{infoBadge && (
|
|
117
|
-
<p className="bg-info/10 text-info px-2 py-1 text-
|
|
117
|
+
<p className="bg-info/10 text-info px-2 py-1 text-caption">
|
|
118
|
+
{infoBadge}
|
|
119
|
+
</p>
|
|
118
120
|
)}
|
|
119
121
|
{tags.length > 0 && (
|
|
120
122
|
<div className="flex flex-wrap gap-1">
|
|
@@ -167,8 +169,8 @@ export function AgentMenuModal({
|
|
|
167
169
|
{index + 1}
|
|
168
170
|
</Badge>
|
|
169
171
|
<div className="flex flex-col gap-0.5">
|
|
170
|
-
<p className="text-
|
|
171
|
-
<p className="text-
|
|
172
|
+
<p className="text-label-medium">{feature.title}</p>
|
|
173
|
+
<p className="text-body-small text-muted-foreground">
|
|
172
174
|
{feature.description}
|
|
173
175
|
</p>
|
|
174
176
|
</div>
|