@fluid-app/ui-primitives 0.1.2 → 0.1.4

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,8 +1,12 @@
1
1
  {
2
2
  "name": "@fluid-app/ui-primitives",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Shared shadcn UI primitives for the Fluid platform",
5
+ "files": [
6
+ "dist"
7
+ ],
5
8
  "type": "module",
9
+ "sideEffects": false,
6
10
  "main": "./src/index.ts",
7
11
  "module": "./src/index.ts",
8
12
  "types": "./src/index.ts",
@@ -15,43 +19,6 @@
15
19
  "publishConfig": {
16
20
  "access": "public"
17
21
  },
18
- "files": [
19
- "dist"
20
- ],
21
- "sideEffects": false,
22
- "peerDependencies": {
23
- "@hookform/resolvers": ">=3.0.0",
24
- "react": ">=18.0.0",
25
- "react-hook-form": ">=7.0.0",
26
- "sonner": ">=2.0.0",
27
- "zod": ">=3.0.0"
28
- },
29
- "peerDependenciesMeta": {
30
- "@hookform/resolvers": {
31
- "optional": true
32
- },
33
- "react-hook-form": {
34
- "optional": true
35
- },
36
- "sonner": {
37
- "optional": true
38
- },
39
- "zod": {
40
- "optional": true
41
- }
42
- },
43
- "devDependencies": {
44
- "@hookform/resolvers": "^3.10.0",
45
- "@types/react": "^19.2.13",
46
- "react": "^19.2.4",
47
- "react-hook-form": "^7.71.1",
48
- "sonner": "^2.0.7",
49
- "tsup": "^8.4.0",
50
- "typescript": "^5",
51
- "zod": "^3.24.2",
52
- "@fluid-app/eslint-config": "0.0.0",
53
- "@fluid-app/typescript-config": "0.0.0"
54
- },
55
22
  "dependencies": {
56
23
  "@radix-ui/react-accordion": "^1.2.12",
57
24
  "@radix-ui/react-collapsible": "^1.1.12",
@@ -76,12 +43,44 @@
76
43
  "recharts": "^2.15.4",
77
44
  "tailwind-merge": "^3.5.0"
78
45
  },
46
+ "devDependencies": {
47
+ "@hookform/resolvers": "^3.10.0",
48
+ "@types/react": "^19.2.13",
49
+ "react": "^19.2.4",
50
+ "react-hook-form": "^7.71.1",
51
+ "sonner": "^2.0.7",
52
+ "tsup": "^8.4.0",
53
+ "typescript": "^5",
54
+ "zod": "^3.24.2",
55
+ "@fluid-app/typescript-config": "0.0.0"
56
+ },
57
+ "peerDependencies": {
58
+ "@hookform/resolvers": ">=3.0.0",
59
+ "react": ">=18.0.0",
60
+ "react-hook-form": ">=7.0.0",
61
+ "sonner": ">=2.0.0",
62
+ "zod": ">=3.0.0"
63
+ },
64
+ "peerDependenciesMeta": {
65
+ "@hookform/resolvers": {
66
+ "optional": true
67
+ },
68
+ "react-hook-form": {
69
+ "optional": true
70
+ },
71
+ "sonner": {
72
+ "optional": true
73
+ },
74
+ "zod": {
75
+ "optional": true
76
+ }
77
+ },
79
78
  "scripts": {
80
79
  "build": "tsup",
81
80
  "dev": "tsup --watch",
82
81
  "transit": "tsc --emitDeclarationOnly",
83
82
  "typecheck": "tsc --noEmit",
84
- "lint": "eslint . --max-warnings 0 --cache --cache-strategy content",
85
- "lint:fix": "eslint . --fix"
83
+ "lint": "oxlint --deny-warnings",
84
+ "lint:fix": "oxlint --fix --deny-warnings"
86
85
  }
87
86
  }
package/src/index.ts CHANGED
@@ -181,6 +181,8 @@ export { Slider } from "./components/Slider";
181
181
 
182
182
  export { Toaster } from "./components/Sonner";
183
183
 
184
+ export { Spinner } from "./components/Spinner";
185
+
184
186
  export { SpinnerWithText } from "./components/SpinnerWithText";
185
187
 
186
188
  export { Switch } from "./components/Switch";