@codefast/ui 0.4.0 → 0.5.0-canary.0
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 +7 -0
- package/package.json +19 -8
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codefast/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0-canary.0",
|
|
4
4
|
"description": "Core UI components library built with React and Tailwind CSS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"components",
|
|
@@ -531,31 +531,39 @@
|
|
|
531
531
|
"radix-ui": "^1.6.0",
|
|
532
532
|
"react-hook-form": "^7.80.0",
|
|
533
533
|
"react-resizable-panels": "^4.11.2",
|
|
534
|
-
"recharts": "^3.
|
|
534
|
+
"recharts": "^3.9.0",
|
|
535
535
|
"sonner": "^2.0.7",
|
|
536
536
|
"tw-animate-css": "^1.4.0",
|
|
537
537
|
"vaul": "^1.1.2",
|
|
538
|
-
"@codefast/tailwind-variants": "0.
|
|
538
|
+
"@codefast/tailwind-variants": "0.5.0-canary.0"
|
|
539
539
|
},
|
|
540
540
|
"devDependencies": {
|
|
541
|
+
"@storybook/addon-a11y": "^10.4.6",
|
|
542
|
+
"@storybook/addon-docs": "^10.4.6",
|
|
543
|
+
"@storybook/addon-vitest": "^10.4.6",
|
|
544
|
+
"@storybook/react-vite": "^10.4.6",
|
|
541
545
|
"@tailwindcss/postcss": "^4.3.1",
|
|
542
546
|
"@testing-library/dom": "^10.4.1",
|
|
543
547
|
"@testing-library/jest-dom": "^6.9.1",
|
|
544
548
|
"@testing-library/react": "^16.3.2",
|
|
545
549
|
"@testing-library/user-event": "^14.6.1",
|
|
546
550
|
"@types/jest-axe": "^3.5.9",
|
|
547
|
-
"@types/node": "^26.0.
|
|
548
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
549
|
-
"@vitejs/plugin-react": "^6.0.
|
|
551
|
+
"@types/node": "^26.0.1",
|
|
552
|
+
"@typescript/native-preview": "7.0.0-dev.20260624.1",
|
|
553
|
+
"@vitejs/plugin-react": "^6.0.3",
|
|
554
|
+
"@vitest/browser": "^4.1.9",
|
|
555
|
+
"@vitest/browser-playwright": "^4.1.9",
|
|
550
556
|
"@vitest/coverage-v8": "^4.1.9",
|
|
551
557
|
"jest-axe": "^10.0.0",
|
|
552
558
|
"jsdom": "^29.1.1",
|
|
559
|
+
"playwright": "^1.61.1",
|
|
553
560
|
"postcss": "^8.5.15",
|
|
561
|
+
"storybook": "^10.4.6",
|
|
554
562
|
"tailwindcss": "^4.3.1",
|
|
555
563
|
"tsdown": "^0.22.3",
|
|
556
564
|
"typescript": "^6.0.3",
|
|
557
565
|
"vitest": "^4.1.9",
|
|
558
|
-
"@codefast/typescript-config": "0.
|
|
566
|
+
"@codefast/typescript-config": "0.5.0-canary.0"
|
|
559
567
|
},
|
|
560
568
|
"peerDependencies": {
|
|
561
569
|
"@types/react": ">=19.0.0",
|
|
@@ -576,12 +584,15 @@
|
|
|
576
584
|
},
|
|
577
585
|
"scripts": {
|
|
578
586
|
"build": "tsdown",
|
|
587
|
+
"build-storybook": "storybook build",
|
|
579
588
|
"check-types": "tsgo --noEmit",
|
|
580
|
-
"clean": "rm -rf dist",
|
|
589
|
+
"clean": "rm -rf dist storybook-static",
|
|
590
|
+
"storybook": "storybook dev -p 6006",
|
|
581
591
|
"test": "vitest run",
|
|
582
592
|
"test:coverage": "vitest run --coverage",
|
|
583
593
|
"test:e2e": "vitest run tests/e2e",
|
|
584
594
|
"test:integration": "vitest run tests/integration",
|
|
595
|
+
"test:stories": "vitest run --project=storybook",
|
|
585
596
|
"test:type": "vitest run tests/types",
|
|
586
597
|
"test:unit": "vitest run tests/unit",
|
|
587
598
|
"test:watch": "vitest"
|