up
Some checks failed
Sync to CNB / sync (push) Has been cancelled
Some checks failed
Sync to CNB / sync (push) Has been cancelled
This commit is contained in:
parent
bfe883ffb7
commit
263fba9600
28
package.json
28
package.json
@ -23,20 +23,20 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@emotion/react": "^11.14.0",
|
"@emotion/react": "^11.14.0",
|
||||||
"@emotion/styled": "^11.14.0",
|
"@emotion/styled": "^11.14.0",
|
||||||
"@kevisual/router": "0.0.13",
|
"@kevisual/router": "0.0.14",
|
||||||
"@mui/material": "^7.0.2",
|
"@mui/material": "^7.1.0",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
"dayjs": "^1.11.13",
|
"dayjs": "^1.11.13",
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "^4.17.21",
|
||||||
"lucide-react": "^0.503.0",
|
"lucide-react": "^0.509.0",
|
||||||
"nanoid": "^5.1.5",
|
"nanoid": "^5.1.5",
|
||||||
"react": "^19.1.0",
|
"react": "^19.1.0",
|
||||||
"react-dom": "^19.1.0",
|
"react-dom": "^19.1.0",
|
||||||
"react-hook-form": "^7.56.1",
|
"react-hook-form": "^7.56.3",
|
||||||
"react-router": "^7.5.3",
|
"react-router": "^7.6.0",
|
||||||
"react-router-dom": "^7.5.3",
|
"react-router-dom": "^7.6.0",
|
||||||
"react-toastify": "^11.0.5",
|
"react-toastify": "^11.0.5",
|
||||||
"zustand": "^5.0.3"
|
"zustand": "^5.0.4"
|
||||||
},
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
@ -44,19 +44,19 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@kevisual/components": "workspace:*",
|
"@kevisual/components": "workspace:*",
|
||||||
"@kevisual/query": "0.0.17",
|
"@kevisual/query": "0.0.17",
|
||||||
"@kevisual/types": "^0.0.9",
|
"@kevisual/types": "^0.0.10",
|
||||||
"@tailwindcss/vite": "^4.1.4",
|
"@tailwindcss/vite": "^4.1.6",
|
||||||
"@types/node": "^22.15.3",
|
"@types/node": "^22.15.17",
|
||||||
"@types/react": "^19.1.2",
|
"@types/react": "^19.1.3",
|
||||||
"@types/react-dom": "^19.1.2",
|
"@types/react-dom": "^19.1.3",
|
||||||
"@vitejs/plugin-basic-ssl": "^2.0.0",
|
"@vitejs/plugin-basic-ssl": "^2.0.0",
|
||||||
"@vitejs/plugin-react": "^4.4.1",
|
"@vitejs/plugin-react": "^4.4.1",
|
||||||
"commander": "^13.1.0",
|
"commander": "^13.1.0",
|
||||||
"dotenv": "^16.5.0",
|
"dotenv": "^16.5.0",
|
||||||
"inquire": "^0.4.8",
|
"inquire": "^0.4.8",
|
||||||
"tailwindcss": "^4.1.4",
|
"tailwindcss": "^4.1.6",
|
||||||
"typescript": "^5.8.3",
|
"typescript": "^5.8.3",
|
||||||
"vite": "^6.3.3"
|
"vite": "^6.3.5"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@10.10.0"
|
"packageManager": "pnpm@10.10.0"
|
||||||
}
|
}
|
599
pnpm-lock.yaml
generated
599
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
16
src/main.tsx
16
src/main.tsx
@ -1,10 +1,12 @@
|
|||||||
import { createRoot } from 'react-dom/client';
|
import { createRoot } from 'react-dom/client';
|
||||||
import { App, AppRoute } from './pages/App.tsx';
|
import { App, AppRoute } from './pages/App.tsx';
|
||||||
import { CustomThemeProvider } from '@kevisual/components/theme/index.tsx';
|
// import { CustomThemeProvider } from '@kevisual/components/theme/index.tsx';
|
||||||
|
|
||||||
console.log('cu',)
|
console.log('cu');
|
||||||
createRoot(document.getElementById('root')!).render(
|
// createRoot(document.getElementById('root')!).render(
|
||||||
<CustomThemeProvider>
|
// <CustomThemeProvider>
|
||||||
<AppRoute />
|
// <AppRoute />
|
||||||
</CustomThemeProvider>,
|
// </CustomThemeProvider>,
|
||||||
);
|
// );
|
||||||
|
|
||||||
|
createRoot(document.getElementById('root')!).render(<App />);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user