@mdxui/cockpit 0.2.0 → 2.1.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/README.md +207 -8
- package/dist/auth/auth-layout.js +13 -53
- package/dist/auth/auth-layout.js.map +1 -1
- package/dist/auth/index.js +13 -54
- package/dist/auth/index.js.map +1 -1
- package/dist/auth/login-page.js +13 -53
- package/dist/auth/login-page.js.map +1 -1
- package/dist/auth/otp-page.js +13 -53
- package/dist/auth/otp-page.js.map +1 -1
- package/dist/auth/password-reset-page.js +13 -53
- package/dist/auth/password-reset-page.js.map +1 -1
- package/dist/auth/signup-page.js +13 -53
- package/dist/auth/signup-page.js.map +1 -1
- package/dist/developer/index.d.ts +524 -10
- package/dist/developer/index.js +616 -308
- package/dist/developer/index.js.map +1 -1
- package/dist/developer/themes/index.d.ts +1 -1
- package/dist/developer/themes/index.js +38 -1
- package/dist/developer/themes/index.js.map +1 -1
- package/dist/index.d.ts +34 -1
- package/dist/index.js +670 -368
- package/dist/index.js.map +1 -1
- package/package.json +19 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mdxui/cockpit",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "App template components for mdxui - developer dashboards, auth flows, and SaaS patterns",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -75,16 +75,28 @@
|
|
|
75
75
|
],
|
|
76
76
|
"scripts": {
|
|
77
77
|
"build": "tsup",
|
|
78
|
+
"test": "vitest run",
|
|
79
|
+
"test:watch": "vitest",
|
|
78
80
|
"typecheck": "tsc --noEmit",
|
|
79
81
|
"clean": "rm -rf dist .turbo node_modules",
|
|
80
82
|
"prepublishOnly": "pnpm build"
|
|
81
83
|
},
|
|
82
84
|
"devDependencies": {
|
|
83
|
-
"@mdxui/
|
|
85
|
+
"@mdxui/primitives": "2.1.1",
|
|
86
|
+
"@mdxui/themes": "2.1.1",
|
|
87
|
+
"@mdxui/typescript-config": "2.1.1",
|
|
88
|
+
"@storybook/test": "^8.6.14",
|
|
89
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
90
|
+
"@testing-library/react": "^16.3.0",
|
|
84
91
|
"@types/react": "^19.2.7",
|
|
85
92
|
"@types/react-dom": "^19.2.3",
|
|
93
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
94
|
+
"jsdom": "^26.1.0",
|
|
95
|
+
"mdxui": "2.1.1",
|
|
86
96
|
"tsup": "^8.0.0",
|
|
87
|
-
"typescript": "5.
|
|
97
|
+
"typescript": "5.9.3",
|
|
98
|
+
"vite": "^7.3.0",
|
|
99
|
+
"vitest": "^3.2.4"
|
|
88
100
|
},
|
|
89
101
|
"dependencies": {
|
|
90
102
|
"@tanstack/react-query": "^5.90.12",
|
|
@@ -96,16 +108,16 @@
|
|
|
96
108
|
"lucide-react": "^0.561.0",
|
|
97
109
|
"next-themes": "^0.4.6",
|
|
98
110
|
"platform.do": "^0.1.11",
|
|
99
|
-
"react-router-dom": "^7.
|
|
111
|
+
"react-router-dom": "^7.12.0",
|
|
100
112
|
"recharts": "^3.5.1",
|
|
101
113
|
"shiki": "^3.20.0",
|
|
102
114
|
"sonner": "^2.0.7",
|
|
103
115
|
"zustand": "^5.0.9"
|
|
104
116
|
},
|
|
105
117
|
"peerDependencies": {
|
|
106
|
-
"@mdxui/primitives": "
|
|
107
|
-
"@mdxui/themes": "
|
|
108
|
-
"mdxui": "
|
|
118
|
+
"@mdxui/primitives": ">=0.0.0",
|
|
119
|
+
"@mdxui/themes": ">=0.0.0",
|
|
120
|
+
"mdxui": ">=2.1.1",
|
|
109
121
|
"react": "^18.0.0 || ^19.0.0"
|
|
110
122
|
},
|
|
111
123
|
"peerDependenciesMeta": {
|