@codefast/ui 0.3.14-canary.1 → 0.3.14
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 +24 -0
- package/package.json +18 -11
- package/src/css/preset.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @codefast/ui
|
|
2
2
|
|
|
3
|
+
## 0.3.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`4957e0e`](https://github.com/codefastlabs/codefast/commit/4957e0e8b4b2428447ef11380397b03deef0b092) Thanks [@thevuong](https://github.com/thevuong)! - fix(vitest): update test file patterns to use .test extension
|
|
8
|
+
|
|
9
|
+
- [`b44597c`](https://github.com/codefastlabs/codefast/commit/b44597c9ec3a121a707aa269d7f68550ae1da72a) Thanks [@thevuong](https://github.com/thevuong)! - docs: enhance type annotations and comments for clarity across multiple files
|
|
10
|
+
|
|
11
|
+
- [`8109f4e`](https://github.com/codefastlabs/codefast/commit/8109f4e1f8186b91c296d25d640594b43493cdef) Thanks [@thevuong](https://github.com/thevuong)! - docs: update README.md files across packages for consistency and clarity
|
|
12
|
+
|
|
13
|
+
- [`ab6bf8d`](https://github.com/codefastlabs/codefast/commit/ab6bf8d5b1c421930e391724cbbdcaf63b9bc263) Thanks [@thevuong](https://github.com/thevuong)! - docs(ui): update README.md for clarity and structure
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [[`85e5ac1`](https://github.com/codefastlabs/codefast/commit/85e5ac122d7a75f756ae4c03b5ab5e9489823b59), [`4957e0e`](https://github.com/codefastlabs/codefast/commit/4957e0e8b4b2428447ef11380397b03deef0b092), [`8109f4e`](https://github.com/codefastlabs/codefast/commit/8109f4e1f8186b91c296d25d640594b43493cdef)]:
|
|
16
|
+
- @codefast/tailwind-variants@0.3.14
|
|
17
|
+
|
|
18
|
+
## 0.3.14-canary.2
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- [`4957e0e`](https://github.com/codefastlabs/codefast/commit/4957e0e8b4b2428447ef11380397b03deef0b092) Thanks [@thevuong](https://github.com/thevuong)! - fix(vitest): update test file patterns to use .test extension
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [[`4957e0e`](https://github.com/codefastlabs/codefast/commit/4957e0e8b4b2428447ef11380397b03deef0b092)]:
|
|
25
|
+
- @codefast/tailwind-variants@0.3.14-canary.2
|
|
26
|
+
|
|
3
27
|
## 0.3.14-canary.1
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codefast/ui",
|
|
3
|
-
"version": "0.3.14
|
|
3
|
+
"version": "0.3.14",
|
|
4
4
|
"description": "Core UI components library built with React and Tailwind CSS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"components",
|
|
@@ -39,6 +39,13 @@
|
|
|
39
39
|
"module": "./dist/index.mjs",
|
|
40
40
|
"types": "./dist/index.d.mts",
|
|
41
41
|
"imports": {
|
|
42
|
+
"#/tests/*": [
|
|
43
|
+
"./tests/*",
|
|
44
|
+
"./tests/*.ts",
|
|
45
|
+
"./tests/*.tsx",
|
|
46
|
+
"./tests/*/index.ts",
|
|
47
|
+
"./tests/*/index.tsx"
|
|
48
|
+
],
|
|
42
49
|
"#/*": [
|
|
43
50
|
"./src/*",
|
|
44
51
|
"./src/*.ts",
|
|
@@ -390,32 +397,32 @@
|
|
|
390
397
|
"lucide-react": "^1.8.0",
|
|
391
398
|
"next-themes": "^0.4.6",
|
|
392
399
|
"react-day-picker": "^9.14.0",
|
|
393
|
-
"react-hook-form": "^7.
|
|
400
|
+
"react-hook-form": "^7.73.1",
|
|
394
401
|
"react-resizable-panels": "^4.10.0",
|
|
395
402
|
"recharts": "^3.8.1",
|
|
396
403
|
"sonner": "^2.0.7",
|
|
397
404
|
"tw-animate-css": "^1.4.0",
|
|
398
405
|
"vaul": "^1.1.2",
|
|
399
|
-
"@codefast/tailwind-variants": "0.3.14
|
|
406
|
+
"@codefast/tailwind-variants": "0.3.14"
|
|
400
407
|
},
|
|
401
408
|
"devDependencies": {
|
|
402
|
-
"@tailwindcss/postcss": "^4.2.
|
|
409
|
+
"@tailwindcss/postcss": "^4.2.4",
|
|
403
410
|
"@testing-library/dom": "^10.4.1",
|
|
404
411
|
"@testing-library/jest-dom": "^6.9.1",
|
|
405
412
|
"@testing-library/react": "^16.3.2",
|
|
406
413
|
"@testing-library/user-event": "^14.6.1",
|
|
407
414
|
"@types/jest-axe": "^3.5.9",
|
|
408
415
|
"@types/node": "^25.6.0",
|
|
409
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
416
|
+
"@typescript/native-preview": "7.0.0-dev.20260422.1",
|
|
410
417
|
"@vitejs/plugin-react": "^6.0.1",
|
|
411
|
-
"@vitest/coverage-v8": "^4.1.
|
|
418
|
+
"@vitest/coverage-v8": "^4.1.5",
|
|
412
419
|
"jest-axe": "^10.0.0",
|
|
413
420
|
"jsdom": "^29.0.2",
|
|
414
|
-
"postcss": "^8.5.
|
|
415
|
-
"tailwindcss": "^4.2.
|
|
416
|
-
"typescript": "^6.0.
|
|
417
|
-
"vitest": "^4.1.
|
|
418
|
-
"@codefast/typescript-config": "0.3.14
|
|
421
|
+
"postcss": "^8.5.10",
|
|
422
|
+
"tailwindcss": "^4.2.4",
|
|
423
|
+
"typescript": "^6.0.3",
|
|
424
|
+
"vitest": "^4.1.5",
|
|
425
|
+
"@codefast/typescript-config": "0.3.14"
|
|
419
426
|
},
|
|
420
427
|
"peerDependencies": {
|
|
421
428
|
"@types/react": "^19.0",
|