@codefast/ui 0.2.46-canary.0 → 0.2.46-canary.1
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/CHANGELOG.md +13 -0
- package/package.json +20 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @codefast/ui
|
|
2
2
|
|
|
3
|
+
## 0.2.46-canary.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`0f7c81e`](https://github.com/codefastlabs/codefast/commit/0f7c81ea04d285b5a56d3b78059519829cbcfb77) Thanks [@thevuong](https://github.com/thevuong)! - feat(ui): add optional dependencies for UI functionality
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`0f7c81e`](https://github.com/codefastlabs/codefast/commit/0f7c81ea04d285b5a56d3b78059519829cbcfb77)]:
|
|
10
|
+
- @codefast-ui/progress-circle@0.2.46-canary.1
|
|
11
|
+
- @codefast-ui/checkbox-group@0.2.46-canary.1
|
|
12
|
+
- @codefast-ui/input-number@0.2.46-canary.1
|
|
13
|
+
- @codefast-ui/input@0.2.46-canary.1
|
|
14
|
+
- @codefast/hooks@0.2.46-canary.1
|
|
15
|
+
|
|
3
16
|
## 0.2.46-canary.0
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codefast/ui",
|
|
3
|
-
"version": "0.2.46-canary.
|
|
3
|
+
"version": "0.2.46-canary.1",
|
|
4
4
|
"bugs": {
|
|
5
5
|
"url": "https://github.com/codefastlabs/codefast/issues"
|
|
6
6
|
},
|
|
@@ -78,11 +78,11 @@
|
|
|
78
78
|
"tailwind-merge": "^3.2.0",
|
|
79
79
|
"tailwind-variants": "^1.0.0",
|
|
80
80
|
"vaul": "^1.1.2",
|
|
81
|
-
"@codefast-ui/checkbox-group": "0.2.46-canary.
|
|
82
|
-
"@codefast-ui/input": "0.2.46-canary.
|
|
83
|
-
"@codefast-ui/input-number": "0.2.46-canary.
|
|
84
|
-
"@codefast-ui/progress-circle": "0.2.46-canary.
|
|
85
|
-
"@codefast/hooks": "0.2.46-canary.
|
|
81
|
+
"@codefast-ui/checkbox-group": "0.2.46-canary.1",
|
|
82
|
+
"@codefast-ui/input": "0.2.46-canary.1",
|
|
83
|
+
"@codefast-ui/input-number": "0.2.46-canary.1",
|
|
84
|
+
"@codefast-ui/progress-circle": "0.2.46-canary.1",
|
|
85
|
+
"@codefast/hooks": "0.2.46-canary.1"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
88
|
"@swc/core": "^1.11.20",
|
|
@@ -104,8 +104,8 @@
|
|
|
104
104
|
"ts-node": "^10.9.2",
|
|
105
105
|
"tsup": "^8.4.0",
|
|
106
106
|
"typescript": "^5.8.3",
|
|
107
|
-
"@codefast/eslint-config": "0.2.46-canary.
|
|
108
|
-
"@codefast/typescript-config": "0.2.46-canary.
|
|
107
|
+
"@codefast/eslint-config": "0.2.46-canary.1",
|
|
108
|
+
"@codefast/typescript-config": "0.2.46-canary.1"
|
|
109
109
|
},
|
|
110
110
|
"peerDependencies": {
|
|
111
111
|
"@types/react": "*",
|
|
@@ -123,6 +123,18 @@
|
|
|
123
123
|
},
|
|
124
124
|
"@types/react-dom": {
|
|
125
125
|
"optional": true
|
|
126
|
+
},
|
|
127
|
+
"date-fns": {
|
|
128
|
+
"optional": true
|
|
129
|
+
},
|
|
130
|
+
"next-themes": {
|
|
131
|
+
"optional": true
|
|
132
|
+
},
|
|
133
|
+
"react-hook-form": {
|
|
134
|
+
"optional": true
|
|
135
|
+
},
|
|
136
|
+
"recharts": {
|
|
137
|
+
"optional": true
|
|
126
138
|
}
|
|
127
139
|
},
|
|
128
140
|
"publishConfig": {
|