create-next-mui 0.1.4 → 0.1.5
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/next-mui-features/react-query/js/.vscode/settings.json +7 -0
- package/next-mui-features/react-query/js/.vscode/typescript.code-snippets +10 -0
- package/next-mui-features/react-query/js/eslint.config.mjs +90 -0
- package/next-mui-features/react-query/js/jsconfig.json +11 -0
- package/next-mui-features/react-query/js/next.config.js +5 -0
- package/next-mui-features/react-query/js/package-lock.json +6779 -0
- package/next-mui-features/react-query/js/package.json +34 -0
- package/next-mui-features/react-query/js/public/mui.svg +11 -0
- package/next-mui-features/react-query/js/public/next.svg +23 -0
- package/next-mui-features/react-query/js/public/vercel.svg +1 -0
- package/next-mui-features/react-query/js/src/app/favicon.ico +0 -0
- package/next-mui-features/react-query/js/src/app/globals.css +28 -0
- package/next-mui-features/react-query/js/src/app/layout.jsx +40 -0
- package/next-mui-features/react-query/js/src/app/page.jsx +7 -0
- package/next-mui-features/react-query/js/src/app/profile/page.jsx +7 -0
- package/next-mui-features/react-query/js/src/config-global.js +6 -0
- package/next-mui-features/react-query/js/src/lib/router-link/index.js +5 -0
- package/next-mui-features/react-query/js/src/lib/tanstack-provider.jsx +29 -0
- package/next-mui-features/react-query/js/src/sections/home/profile-view.jsx +43 -0
- package/next-mui-features/react-query/js/src/sections/home/view.jsx +160 -0
- package/next-mui-features/react-query/js/src/theme/core/colors.json +46 -0
- package/next-mui-features/react-query/js/src/theme/core/components/button.js +31 -0
- package/next-mui-features/react-query/js/src/theme/core/components/card.js +13 -0
- package/next-mui-features/react-query/js/src/theme/core/components/index.js +9 -0
- package/next-mui-features/react-query/js/src/theme/core/palette.js +23 -0
- package/next-mui-features/react-query/js/src/theme/core/typography.js +51 -0
- package/next-mui-features/react-query/js/src/theme/create-theme.js +28 -0
- package/next-mui-features/react-query/js/src/theme/theme-provider.jsx +19 -0
- package/next-mui-features/react-query/manifest.json +18 -0
- package/next-mui-features/react-query/ts/.vscode/settings.json +7 -0
- package/next-mui-features/react-query/ts/.vscode/typescript.code-snippets +10 -0
- package/next-mui-features/react-query/ts/eslint.config.mjs +90 -0
- package/next-mui-features/react-query/ts/next.config.ts +7 -0
- package/next-mui-features/react-query/ts/package-lock.json +6779 -0
- package/next-mui-features/react-query/ts/package.json +34 -0
- package/next-mui-features/react-query/ts/public/mui.svg +11 -0
- package/next-mui-features/react-query/ts/public/next.svg +23 -0
- package/next-mui-features/react-query/ts/public/vercel.svg +1 -0
- package/next-mui-features/react-query/ts/src/app/favicon.ico +0 -0
- package/next-mui-features/react-query/ts/src/app/globals.css +28 -0
- package/next-mui-features/react-query/ts/src/app/layout.tsx +46 -0
- package/next-mui-features/react-query/ts/src/app/page.tsx +7 -0
- package/next-mui-features/react-query/ts/src/app/profile/page.tsx +7 -0
- package/next-mui-features/react-query/ts/src/config-global.ts +7 -0
- package/next-mui-features/react-query/ts/src/lib/router-link/index.ts +5 -0
- package/next-mui-features/react-query/ts/src/lib/tanstack-provider.tsx +29 -0
- package/next-mui-features/react-query/ts/src/sections/home/profile-view.tsx +43 -0
- package/next-mui-features/react-query/ts/src/sections/home/view.tsx +160 -0
- package/next-mui-features/react-query/ts/src/theme/core/colors.json +46 -0
- package/next-mui-features/react-query/ts/src/theme/core/components/button.ts +43 -0
- package/next-mui-features/react-query/ts/src/theme/core/components/card.ts +17 -0
- package/next-mui-features/react-query/ts/src/theme/core/components/index.ts +9 -0
- package/next-mui-features/react-query/ts/src/theme/core/palette.ts +34 -0
- package/next-mui-features/react-query/ts/src/theme/core/typography.ts +51 -0
- package/next-mui-features/react-query/ts/src/theme/create-theme.ts +28 -0
- package/next-mui-features/react-query/ts/src/theme/theme-provider.tsx +19 -0
- package/next-mui-features/react-query/ts/tsconfig.json +34 -0
- package/next-mui-features/zustand/js/.vscode/settings.json +7 -0
- package/next-mui-features/zustand/js/.vscode/typescript.code-snippets +10 -0
- package/next-mui-features/zustand/js/eslint.config.mjs +90 -0
- package/next-mui-features/zustand/js/jsconfig.json +11 -0
- package/next-mui-features/zustand/js/next.config.js +5 -0
- package/next-mui-features/zustand/js/package-lock.json +6753 -0
- package/next-mui-features/zustand/js/package.json +33 -0
- package/next-mui-features/zustand/js/public/mui.svg +11 -0
- package/next-mui-features/zustand/js/public/next.svg +23 -0
- package/next-mui-features/zustand/js/public/vercel.svg +1 -0
- package/next-mui-features/zustand/js/src/app/favicon.ico +0 -0
- package/next-mui-features/zustand/js/src/app/globals.css +28 -0
- package/next-mui-features/zustand/js/src/app/layout.jsx +36 -0
- package/next-mui-features/zustand/js/src/app/page.jsx +7 -0
- package/next-mui-features/zustand/js/src/config-global.js +6 -0
- package/next-mui-features/zustand/js/src/lib/router-link/index.js +5 -0
- package/next-mui-features/zustand/js/src/sections/home/view.jsx +218 -0
- package/next-mui-features/zustand/js/src/stores/counter-store.jsx +10 -0
- package/next-mui-features/zustand/js/src/theme/core/colors.json +46 -0
- package/next-mui-features/zustand/js/src/theme/core/components/button.js +31 -0
- package/next-mui-features/zustand/js/src/theme/core/components/card.js +13 -0
- package/next-mui-features/zustand/js/src/theme/core/components/index.js +9 -0
- package/next-mui-features/zustand/js/src/theme/core/palette.js +23 -0
- package/next-mui-features/zustand/js/src/theme/core/typography.js +51 -0
- package/next-mui-features/zustand/js/src/theme/create-theme.js +28 -0
- package/next-mui-features/zustand/js/src/theme/theme-provider.jsx +19 -0
- package/next-mui-features/zustand/manifest.json +12 -0
- package/next-mui-features/zustand/ts/.vscode/settings.json +7 -0
- package/next-mui-features/zustand/ts/.vscode/typescript.code-snippets +10 -0
- package/next-mui-features/zustand/ts/eslint.config.mjs +90 -0
- package/next-mui-features/zustand/ts/next.config.ts +7 -0
- package/next-mui-features/zustand/ts/package-lock.json +6753 -0
- package/next-mui-features/zustand/ts/package.json +33 -0
- package/next-mui-features/zustand/ts/public/mui.svg +11 -0
- package/next-mui-features/zustand/ts/public/next.svg +23 -0
- package/next-mui-features/zustand/ts/public/vercel.svg +1 -0
- package/next-mui-features/zustand/ts/src/app/favicon.ico +0 -0
- package/next-mui-features/zustand/ts/src/app/globals.css +28 -0
- package/next-mui-features/zustand/ts/src/app/layout.tsx +42 -0
- package/next-mui-features/zustand/ts/src/app/page.tsx +7 -0
- package/next-mui-features/zustand/ts/src/config-global.ts +7 -0
- package/next-mui-features/zustand/ts/src/lib/router-link/index.ts +5 -0
- package/next-mui-features/zustand/ts/src/sections/home/view.tsx +218 -0
- package/next-mui-features/zustand/ts/src/stores/counter-store.tsx +17 -0
- package/next-mui-features/zustand/ts/src/theme/core/colors.json +46 -0
- package/next-mui-features/zustand/ts/src/theme/core/components/button.ts +43 -0
- package/next-mui-features/zustand/ts/src/theme/core/components/card.ts +17 -0
- package/next-mui-features/zustand/ts/src/theme/core/components/index.ts +9 -0
- package/next-mui-features/zustand/ts/src/theme/core/palette.ts +34 -0
- package/next-mui-features/zustand/ts/src/theme/core/typography.ts +51 -0
- package/next-mui-features/zustand/ts/src/theme/create-theme.ts +28 -0
- package/next-mui-features/zustand/ts/src/theme/theme-provider.tsx +19 -0
- package/next-mui-features/zustand/ts/tsconfig.json +34 -0
- package/package.json +3 -2
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2017",
|
|
4
|
+
"lib": ["dom", "dom.iterable", "esnext"],
|
|
5
|
+
"allowJs": true,
|
|
6
|
+
"skipLibCheck": true,
|
|
7
|
+
"strict": true,
|
|
8
|
+
"noEmit": true,
|
|
9
|
+
"esModuleInterop": true,
|
|
10
|
+
"module": "esnext",
|
|
11
|
+
"moduleResolution": "bundler",
|
|
12
|
+
"resolveJsonModule": true,
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"jsx": "react-jsx",
|
|
15
|
+
"incremental": true,
|
|
16
|
+
"plugins": [
|
|
17
|
+
{
|
|
18
|
+
"name": "next"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"paths": {
|
|
22
|
+
"@/*": ["./src/*"]
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"include": [
|
|
26
|
+
"next-env.d.ts",
|
|
27
|
+
"**/*.ts",
|
|
28
|
+
"**/*.tsx",
|
|
29
|
+
".next/types/**/*.ts",
|
|
30
|
+
".next/dev/types/**/*.ts",
|
|
31
|
+
"**/*.mts"
|
|
32
|
+
],
|
|
33
|
+
"exclude": ["node_modules"]
|
|
34
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-next-mui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "spin up your nextjs project with mui setup",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nextjs",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
25
|
"src",
|
|
26
|
-
"next-mui-templates"
|
|
26
|
+
"next-mui-templates",
|
|
27
|
+
"next-mui-features"
|
|
27
28
|
],
|
|
28
29
|
"main": "index.js",
|
|
29
30
|
"scripts": {
|