@fluid-app/ui-primitives 0.1.11 → 0.1.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/dist/index.cjs +145 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +29 -3
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +29 -3
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +139 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/index.ts +9 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-app/ui-primitives",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Shared shadcn UI primitives for the Fluid platform",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"tailwindcss": "^4.1.8",
|
|
55
55
|
"tsdown": "^0.21.0",
|
|
56
56
|
"typescript": "^5",
|
|
57
|
-
"zod": "
|
|
57
|
+
"zod": "4.3.5",
|
|
58
58
|
"@fluid-app/typescript-config": "0.0.0"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"react": ">=18.0.0",
|
|
63
63
|
"react-hook-form": ">=7.0.0",
|
|
64
64
|
"sonner": ">=2.0.0",
|
|
65
|
-
"zod": "
|
|
65
|
+
"zod": "4.3.5"
|
|
66
66
|
},
|
|
67
67
|
"peerDependenciesMeta": {
|
|
68
68
|
"@hookform/resolvers": {
|
package/src/index.ts
CHANGED
|
@@ -41,7 +41,12 @@ export {
|
|
|
41
41
|
AvatarImage,
|
|
42
42
|
} from "./components/Avatar";
|
|
43
43
|
|
|
44
|
-
export {
|
|
44
|
+
export {
|
|
45
|
+
Badge,
|
|
46
|
+
badgeVariants,
|
|
47
|
+
ColorBadge,
|
|
48
|
+
type BadgeColor,
|
|
49
|
+
} from "./components/Badge";
|
|
45
50
|
|
|
46
51
|
export { Button, buttonVariants } from "./components/Button";
|
|
47
52
|
|
|
@@ -147,6 +152,8 @@ export {
|
|
|
147
152
|
|
|
148
153
|
export { RadioGroup, RadioGroupItem } from "./components/RadioGroup";
|
|
149
154
|
|
|
155
|
+
export { ScrollArea, ScrollBar } from "./components/ScrollArea";
|
|
156
|
+
|
|
150
157
|
export {
|
|
151
158
|
Select,
|
|
152
159
|
SelectContent,
|
|
@@ -179,7 +186,7 @@ export { Skeleton } from "./components/Skeleton";
|
|
|
179
186
|
|
|
180
187
|
export { Slider } from "./components/Slider";
|
|
181
188
|
|
|
182
|
-
export { Toaster } from "./components/Sonner";
|
|
189
|
+
export { Toaster, toast } from "./components/Sonner";
|
|
183
190
|
|
|
184
191
|
export { Spinner } from "./components/Spinner";
|
|
185
192
|
|