From ca878c472a8378cdf0bba26ddebede3fd80d6804 Mon Sep 17 00:00:00 2001 From: Joris Mancini Date: Tue, 8 Oct 2024 16:40:11 +0200 Subject: [PATCH] chore: bump commons-ui to 0.67.0 Signed-off-by: Joris Mancini --- package-lock.json | 8 ++++---- package.json | 2 +- src/components/App/app-wrapper.tsx | 24 ++++++++++++------------ 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/package-lock.json b/package-lock.json index c4fd7ba..25b3880 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,7 +11,7 @@ "dependencies": { "@emotion/react": "^11.11.4", "@emotion/styled": "^11.11.5", - "@gridsuite/commons-ui": "0.65.0", + "@gridsuite/commons-ui": "0.67.0", "@hookform/resolvers": "^3.3.4", "@mui/icons-material": "^5.15.14", "@mui/lab": "5.0.0-alpha.169", @@ -2952,9 +2952,9 @@ } }, "node_modules/@gridsuite/commons-ui": { - "version": "0.65.0", - "resolved": "https://registry.npmjs.org/@gridsuite/commons-ui/-/commons-ui-0.65.0.tgz", - "integrity": "sha512-FX70XiNKC4rFK2AemE+g21zrte7J++PlTK4bL3ghOZz8mE9KPSmeV+WwILH5jP/d0N/4fzh8oSrL70Yv7+fkmg==", + "version": "0.67.0", + "resolved": "https://registry.npmjs.org/@gridsuite/commons-ui/-/commons-ui-0.67.0.tgz", + "integrity": "sha512-gfUOBXIIlEKjNgEV2TVgTx31fApMB7x9rlPYgZr8Um65GBeRzVyRSYkoc3cWEipjJYbh3FE7KOh/CEZAus3tiQ==", "license": "MPL-2.0", "dependencies": { "@react-querybuilder/dnd": "^7.2.0", diff --git a/package.json b/package.json index 47e549a..0117fc4 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "dependencies": { "@emotion/react": "^11.11.4", "@emotion/styled": "^11.11.5", - "@gridsuite/commons-ui": "0.65.0", + "@gridsuite/commons-ui": "0.67.0", "@hookform/resolvers": "^3.3.4", "@mui/icons-material": "^5.15.14", "@mui/lab": "5.0.0-alpha.169", diff --git a/src/components/App/app-wrapper.tsx b/src/components/App/app-wrapper.tsx index b379b70..316af81 100644 --- a/src/components/App/app-wrapper.tsx +++ b/src/components/App/app-wrapper.tsx @@ -11,19 +11,19 @@ import { CssBaseline, responsiveFontSizes, ThemeOptions } from '@mui/material'; import { createTheme, StyledEngineProvider, Theme, ThemeProvider } from '@mui/material/styles'; import { enUS as MuiCoreEnUS, frFR as MuiCoreFrFR } from '@mui/material/locale'; import { - card_error_boundary_en, - card_error_boundary_fr, + cardErrorBoundaryEn, + cardErrorBoundaryFr, CardErrorBoundary, GsLangUser, GsTheme, LANG_ENGLISH, LANG_FRENCH, LIGHT_THEME, - login_en, - login_fr, + loginEn, + loginFr, SnackbarProvider, - top_bar_en, - top_bar_fr, + topBarEn, + topBarFr, } from '@gridsuite/commons-ui'; import { IntlConfig, IntlProvider } from 'react-intl'; import { Provider, useSelector } from 'react-redux'; @@ -98,15 +98,15 @@ const getMuiTheme = (theme: GsTheme, locale: GsLangUser): Theme => { const messages: Record = { en: { ...messages_en, - ...login_en, - ...top_bar_en, - ...card_error_boundary_en, + ...loginEn, + ...topBarEn, + ...cardErrorBoundaryEn, }, fr: { ...messages_fr, - ...login_fr, - ...top_bar_fr, - ...card_error_boundary_fr, + ...loginFr, + ...topBarFr, + ...cardErrorBoundaryFr, }, };