fix : bump packages versions

This commit is contained in:
GuillaumeSD
2024-12-29 12:29:51 +01:00
parent 0b8d0ad780
commit c651a08000
37 changed files with 865 additions and 824 deletions

View File

@@ -1,4 +1,4 @@
import { Checkbox, FormControlLabel, Grid } from "@mui/material";
import { Checkbox, FormControlLabel, Grid2 as Grid } from "@mui/material";
import {
showBestMoveArrowAtom,
showPlayerMoveIconAtom,
@@ -18,10 +18,9 @@ export default function ArrowOptions() {
return (
<Grid
container
item
justifyContent="space-evenly"
alignItems="center"
xs={12}
size={12}
gap={3}
>
<FormControlLabel

View File

@@ -12,7 +12,7 @@ import {
OutlinedInput,
DialogActions,
Typography,
Grid,
Grid2 as Grid,
} from "@mui/material";
import {
engineNameAtom,
@@ -62,14 +62,13 @@ export default function EngineSettingsDialog({ open, onClose }: Props) {
</Typography>
<Grid
marginTop={4}
item
container
justifyContent="center"
alignItems="center"
xs={12}
rowGap={3}
size={12}
>
<Grid item container xs={12} justifyContent="center">
<Grid container justifyContent="center" size={12}>
<FormControl variant="outlined">
<InputLabel id="dialog-select-label">Engine</InputLabel>
<Select
@@ -111,7 +110,7 @@ export default function EngineSettingsDialog({ open, onClose }: Props) {
setValue={setMultiPv}
min={2}
max={6}
xs={6}
size={6}
/>
<ArrowOptions />