@placesapp/appy-ui 0.0.333 → 0.0.334
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/README.md +0 -18
- package/package.json +6 -26
package/README.md
CHANGED
|
@@ -16,24 +16,6 @@ Make sure you have these peer dependencies installed:
|
|
|
16
16
|
npm install react react-dom tailwindcss
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
### Optional Peer Dependencies
|
|
20
|
-
|
|
21
|
-
Some components require additional packages:
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
# For Calendar component
|
|
25
|
-
npm install react-day-picker
|
|
26
|
-
|
|
27
|
-
# For Carousel component
|
|
28
|
-
npm install embla-carousel-react
|
|
29
|
-
|
|
30
|
-
# For Chart components
|
|
31
|
-
npm install recharts
|
|
32
|
-
|
|
33
|
-
# For Form components
|
|
34
|
-
npm install @tanstack/react-form
|
|
35
|
-
```
|
|
36
|
-
|
|
37
19
|
## Setup
|
|
38
20
|
|
|
39
21
|
### 1. CSS Configuration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@placesapp/appy-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.334",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"module": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -21,46 +21,26 @@
|
|
|
21
21
|
"react-dom": ">=19",
|
|
22
22
|
"tailwindcss": ">=4"
|
|
23
23
|
},
|
|
24
|
-
"peerDependenciesMeta": {
|
|
25
|
-
"@tanstack/react-form": {
|
|
26
|
-
"optional": true
|
|
27
|
-
},
|
|
28
|
-
"embla-carousel-react": {
|
|
29
|
-
"optional": true
|
|
30
|
-
},
|
|
31
|
-
"recharts": {
|
|
32
|
-
"optional": true
|
|
33
|
-
},
|
|
34
|
-
"react-day-picker": {
|
|
35
|
-
"optional": true
|
|
36
|
-
},
|
|
37
|
-
"cmdk": {
|
|
38
|
-
"optional": true
|
|
39
|
-
},
|
|
40
|
-
"tanstack-theme-kit": {
|
|
41
|
-
"optional": true
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
24
|
"dependencies": {
|
|
45
25
|
"@base-ui/react": "^1.1.0",
|
|
46
26
|
"@tabler/icons-react": "^3.31.0",
|
|
47
27
|
"class-variance-authority": "^0.7.1",
|
|
48
28
|
"clsx": "^2.1.1",
|
|
29
|
+
"cmdk": "^1.1.1",
|
|
30
|
+
"embla-carousel-react": "^8.6.0",
|
|
49
31
|
"input-otp": "^1.4.2",
|
|
50
32
|
"motion": "^12.4.7",
|
|
33
|
+
"react-day-picker": "^9.13.0",
|
|
51
34
|
"react-resizable-panels": "^2.1.7",
|
|
35
|
+
"recharts": "^3.7.0",
|
|
52
36
|
"sonner": "^2.0.1",
|
|
53
37
|
"tailwind-merge": "^3.0.1",
|
|
38
|
+
"tanstack-theme-kit": "^0.2.1",
|
|
54
39
|
"vaul": "^1.1.2"
|
|
55
40
|
},
|
|
56
41
|
"devDependencies": {
|
|
57
42
|
"@types/react": "19.2.9",
|
|
58
43
|
"@types/react-dom": "19.2.3",
|
|
59
|
-
"cmdk": "^1.1.1",
|
|
60
|
-
"embla-carousel-react": "^8.6.0",
|
|
61
|
-
"react-day-picker": "^9.13.0",
|
|
62
|
-
"recharts": "^3.7.0",
|
|
63
|
-
"tanstack-theme-kit": "^0.2.1",
|
|
64
44
|
"tsup": "^8.3.5",
|
|
65
45
|
"typescript": "^5.7.3"
|
|
66
46
|
},
|