@wealthx/shadcn 1.5.27 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wealthx/shadcn",
3
- "version": "1.5.27",
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",
@@ -80,7 +80,7 @@ export function AgentCard({
80
80
  : "bg-muted-foreground/40",
81
81
  )}
82
82
  />
83
- <span className="truncate text-sm font-semibold leading-tight">
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-muted-foreground text-xs leading-relaxed flex-1">
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-xs">{infoBadge}</p>
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-sm font-semibold">{feature.title}</p>
171
- <p className="text-muted-foreground text-xs leading-relaxed">
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>