Skip to content

Commit 92d12a0

Browse files
chore: bump commons-ui to 0.67.0 (#52)
Signed-off-by: Joris Mancini <[email protected]>
1 parent 500e49e commit 92d12a0

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"dependencies": {
1717
"@emotion/react": "^11.11.4",
1818
"@emotion/styled": "^11.11.5",
19-
"@gridsuite/commons-ui": "0.65.0",
19+
"@gridsuite/commons-ui": "0.67.0",
2020
"@hookform/resolvers": "^3.3.4",
2121
"@mui/icons-material": "^5.15.14",
2222
"@mui/lab": "5.0.0-alpha.169",

src/components/App/app-wrapper.tsx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ import { CssBaseline, responsiveFontSizes, ThemeOptions } from '@mui/material';
1111
import { createTheme, StyledEngineProvider, Theme, ThemeProvider } from '@mui/material/styles';
1212
import { enUS as MuiCoreEnUS, frFR as MuiCoreFrFR } from '@mui/material/locale';
1313
import {
14-
card_error_boundary_en,
15-
card_error_boundary_fr,
14+
cardErrorBoundaryEn,
15+
cardErrorBoundaryFr,
1616
CardErrorBoundary,
1717
GsLangUser,
1818
GsTheme,
1919
LANG_ENGLISH,
2020
LANG_FRENCH,
2121
LIGHT_THEME,
22-
login_en,
23-
login_fr,
22+
loginEn,
23+
loginFr,
2424
SnackbarProvider,
25-
top_bar_en,
26-
top_bar_fr,
25+
topBarEn,
26+
topBarFr,
2727
} from '@gridsuite/commons-ui';
2828
import { IntlConfig, IntlProvider } from 'react-intl';
2929
import { Provider, useSelector } from 'react-redux';
@@ -98,15 +98,15 @@ const getMuiTheme = (theme: GsTheme, locale: GsLangUser): Theme => {
9898
const messages: Record<GsLangUser, IntlConfig['messages']> = {
9999
en: {
100100
...messages_en,
101-
...login_en,
102-
...top_bar_en,
103-
...card_error_boundary_en,
101+
...loginEn,
102+
...topBarEn,
103+
...cardErrorBoundaryEn,
104104
},
105105
fr: {
106106
...messages_fr,
107-
...login_fr,
108-
...top_bar_fr,
109-
...card_error_boundary_fr,
107+
...loginFr,
108+
...topBarFr,
109+
...cardErrorBoundaryFr,
110110
},
111111
};
112112

0 commit comments

Comments
 (0)