Actualización de librerías
This commit is contained in:
parent
c60a34a16f
commit
6fc5c172ce
4 changed files with 6089 additions and 5935 deletions
3403
package-lock.json
generated
3403
package-lock.json
generated
File diff suppressed because it is too large
Load diff
47
package.json
47
package.json
|
@ -1,47 +1,48 @@
|
|||
{
|
||||
"name": "@chimera-pe/react-saas",
|
||||
"version": "0.3.2",
|
||||
"version": "0.6.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
|
||||
"lint": "eslint .",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@emotion/react": "^11.13.0",
|
||||
"@emotion/styled": "^11.13.0",
|
||||
"@mui/icons-material": "^5.16.5",
|
||||
"@mui/lab": "^5.0.0-alpha.171",
|
||||
"@mui/material": "^5.16.5",
|
||||
"@mui/x-date-pickers": "^7.11.1",
|
||||
"@reduxjs/toolkit": "^2.2.7",
|
||||
"axios": "^1.7.2",
|
||||
"date-fns": "^2.30.0",
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@mui/icons-material": "^6.4.7",
|
||||
"@mui/lab": "^6.0.0-beta.22",
|
||||
"@mui/material": "^6.4.7",
|
||||
"@mui/x-date-pickers": "^7.27.3",
|
||||
"@reduxjs/toolkit": "^2.6.1",
|
||||
"axios": "^1.8.3",
|
||||
"date-fns": "^4.1.0",
|
||||
"final-form": "^4.20.10",
|
||||
"lodash": "^4.17.21",
|
||||
"mui-rff": "^7.4.1",
|
||||
"node-polyglot": "^2.6.0",
|
||||
"mui-rff": "^8.0.1",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"react-final-form": "^6.5.9",
|
||||
"react-polyglot": "^0.7.2",
|
||||
"react-redux": "^9.1.2",
|
||||
"react-router-dom": "^6.25.1"
|
||||
"react-redux": "^9.2.0",
|
||||
"react-router-dom": "^7.3.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"jwt-decode": "^4.0.0",
|
||||
"navigator-languages": "^2.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/react": "^18.3.3",
|
||||
"@types/react-dom": "^18.3.0",
|
||||
"@vitejs/plugin-react": "^4.3.1",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-plugin-react": "^7.35.0",
|
||||
"eslint-plugin-react-hooks": "^4.6.2",
|
||||
"eslint-plugin-react-refresh": "^0.4.9",
|
||||
"vite": "^5.3.5"
|
||||
"@eslint/js": "^9.19.0",
|
||||
"@types/react": "^18.3.18",
|
||||
"@types/react-dom": "^18.3.5",
|
||||
"@vitejs/plugin-react": "^4.3.4",
|
||||
"eslint": "^9.22.0",
|
||||
"eslint-plugin-react": "^7.37.4",
|
||||
"eslint-plugin-react-hooks": "^5.2.0",
|
||||
"eslint-plugin-react-refresh": "^0.4.19",
|
||||
"globals": "^15.15.0",
|
||||
"vite": "^6.2.2"
|
||||
},
|
||||
"description": "Componente integrador con SaaS",
|
||||
"main": "./dist/react-saas.umd.cjs",
|
||||
|
|
|
@ -4,7 +4,7 @@ import {useDispatch,useSelector} from "react-redux";
|
|||
import { I18n } from "react-polyglot";
|
||||
import { enGB, es } from "date-fns/locale"
|
||||
import { LocalizationProvider } from "@mui/x-date-pickers";
|
||||
import {AdapterDateFns} from "@mui/x-date-pickers/AdapterDateFns";
|
||||
import { AdapterDateFns } from "@mui/x-date-pickers/AdapterDateFnsV3";
|
||||
import navigatorLanguages from "navigator-languages";
|
||||
import { cambiarIdioma } from "../redux";
|
||||
import saasMessages from "../i18n";
|
||||
|
|
|
@ -25,7 +25,7 @@ export default defineConfig({
|
|||
"@mui/material/styles",
|
||||
"@mui/material/colors",
|
||||
"@mui/x-date-pickers",
|
||||
"@mui/x-date-pickers/AdapterDateFns",
|
||||
"@mui/x-date-pickers/AdapterDateFnsV3",
|
||||
"@reduxjs/toolkit",
|
||||
"axios",
|
||||
"date-fns/locale",
|
||||
|
@ -56,7 +56,7 @@ export default defineConfig({
|
|||
"@mui/material/styles": "MuiMaterialStyles",
|
||||
"@mui/material/colors": "MuiMaterialColors",
|
||||
"@mui/x-date-pickers": "MuiXDatePickers",
|
||||
"@mui/x-date-pickers/AdapterDateFns": "MuiXDatePickersAdapter",
|
||||
"@mui/x-date-pickers/AdapterDateFnsV3": "MuiXDatePickersAdapter",
|
||||
"@reduxjs/toolkit": "ReduxToolkit",
|
||||
"axios": "Axios",
|
||||
"date-fns/locale": "DateFNSLocale",
|
||||
|
|
Loading…
Add table
Reference in a new issue