From 60404a8933357df15ecfd8caf6e83258962ca909 Mon Sep 17 00:00:00 2001 From: Alexander Popoff Date: Tue, 16 Apr 2024 19:59:28 +0300 Subject: [PATCH] mui-material.version=5.15.12 mui-icons-material.version=5.15.12 mui-base.version=5.0.0-beta.38 mui-system.version=5.15.12 mui-lab.version=5.0.0-alpha.167 --- gradle.properties | 10 +- .../kotlin/mui/material/Alert.classes.kt | 84 ++++++++-- .../jsMain/kotlin/mui/material/Alert.mui.kt | 12 ++ .../kotlin/mui/material/Button.classes.kt | 153 ++++++++++++++---- .../jsMain/kotlin/mui/material/Button.mui.kt | 21 +++ .../jsMain/kotlin/mui/material/Checkbox.kt | 2 +- .../kotlin/mui/material/Chip.classes.kt | 104 +++++++++--- .../src/jsMain/kotlin/mui/material/Slider.kt | 6 +- .../kotlin/mui/system/createSpacing.ext.kt | 2 +- yarn.lock | 68 ++++---- 10 files changed, 346 insertions(+), 116 deletions(-) diff --git a/gradle.properties b/gradle.properties index 6a6229dd0..5aad2a5c2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,11 +5,11 @@ kfc.version=7.34.0 # TEMP kfc.es.mode=false seskar.version=2.23.0 -mui-material.version=5.15.11 -mui-icons-material.version=5.15.11 -mui-base.version=5.0.0-beta.37 -mui-system.version=5.15.11 -mui-lab.version=5.0.0-alpha.166 +mui-material.version=5.15.12 +mui-icons-material.version=5.15.12 +mui-base.version=5.0.0-beta.38 +mui-system.version=5.15.12 +mui-lab.version=5.0.0-alpha.167 mui-x-date-pickers.version=5.0.20 mui-x-tree-view.version=6.17.0 kotlin-wrappers.version=1.0.0-pre.730 diff --git a/mui-kotlin/src/jsMain/kotlin/mui/material/Alert.classes.kt b/mui-kotlin/src/jsMain/kotlin/mui/material/Alert.classes.kt index a52603b1b..539e3327c 100644 --- a/mui-kotlin/src/jsMain/kotlin/mui/material/Alert.classes.kt +++ b/mui-kotlin/src/jsMain/kotlin/mui/material/Alert.classes.kt @@ -17,40 +17,100 @@ external interface AlertClasses { /** Styles applied to the root element if `variant="standard"`. */ var standard: ClassName - /** Styles applied to the root element if `variant="standard"` and `color="success"`. */ + /** Styles applied to the root element if `color="success"`. */ + var colorSuccess: ClassName + + /** Styles applied to the root element if `color="info"`. */ + var colorInfo: ClassName + + /** Styles applied to the root element if `color="warning"`. */ + var colorWarning: ClassName + + /** Styles applied to the root element if `color="error"`. */ + var colorError: ClassName + + /** Styles applied to the root element if `variant="standard"` and `color="success"`. + * @deprecated Combine the [.MuiAlert-standard](/material-ui/api/alert/#alert-classes-standard) + * and [.MuiAlert-colorSuccess](/material-ui/api/alert/#alert-classes-colorSuccess) classes instead. + * [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). + */ var standardSuccess: ClassName - /** Styles applied to the root element if `variant="standard"` and `color="info"`. */ + /** Styles applied to the root element if `variant="standard"` and `color="info"`. + * @deprecated Combine the [.MuiAlert-standard](/material-ui/api/alert/#alert-classes-standard) + * and [.MuiAlert-colorInfo](/material-ui/api/alert/#alert-classes-colorInfo) classes instead. + * [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). + */ var standardInfo: ClassName - /** Styles applied to the root element if `variant="standard"` and `color="warning"`. */ + /** Styles applied to the root element if `variant="standard"` and `color="warning"`. + * @deprecated Combine the [.MuiAlert-standard](/material-ui/api/alert/#alert-classes-standard) + * and [.MuiAlert-colorWarning](/material-ui/api/alert/#alert-classes-colorWarning) classes instead. + * [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). + */ var standardWarning: ClassName - /** Styles applied to the root element if `variant="standard"` and `color="error"`. */ + /** Styles applied to the root element if `variant="standard"` and `color="error"`. + * @deprecated Combine the [.MuiAlert-standard](/material-ui/api/alert/#alert-classes-standard) + * and [.MuiAlert-colorError](/material-ui/api/alert/#alert-classes-colorError) classes instead. + * [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). + */ var standardError: ClassName - /** Styles applied to the root element if `variant="outlined"` and `color="success"`. */ + /** Styles applied to the root element if `variant="outlined"` and `color="success"`. + * @deprecated Combine the [.MuiAlert-outlined](/material-ui/api/alert/#alert-classes-outlined) + * and [.MuiAlert-colorSuccess](/material-ui/api/alert/#alert-classes-colorSuccess) classes instead. + * [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). + */ var outlinedSuccess: ClassName - /** Styles applied to the root element if `variant="outlined"` and `color="info"`. */ + /** Styles applied to the root element if `variant="outlined"` and `color="info"`. + * @deprecated Combine the [.MuiAlert-outlined](/material-ui/api/alert/#alert-classes-outlined) + * and [.MuiAlert-colorInfo](/material-ui/api/alert/#alert-classes-colorInfo) classes instead. + * [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). + */ var outlinedInfo: ClassName - /** Styles applied to the root element if `variant="outlined"` and `color="warning"`. */ + /** Styles applied to the root element if `variant="outlined"` and `color="warning"`. + * @deprecated Combine the [.MuiAlert-outlined](/material-ui/api/alert/#alert-classes-outlined) + * and [.MuiAlert-colorWarning](/material-ui/api/alert/#alert-classes-colorWarning) classes instead. + * [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). + */ var outlinedWarning: ClassName - /** Styles applied to the root element if `variant="outlined"` and `color="error"`. */ + /** Styles applied to the root element if `variant="outlined"` and `color="error"`. + * @deprecated Combine the [.MuiAlert-outlined](/material-ui/api/alert/#alert-classes-outlined) + * and [.MuiAlert-colorError](/material-ui/api/alert/#alert-classes-colorError) classes instead. + * [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). + */ var outlinedError: ClassName - /** Styles applied to the root element if `variant="filled"` and `color="success"`. */ + /** Styles applied to the root element if `variant="filled"` and `color="success"`. + * @deprecated Combine the [.MuiAlert-filled](/material-ui/api/alert/#alert-classes-filled) + * and [.MuiAlert-colorSuccess](/material-ui/api/alert/#alert-classes-colorSuccess) classes instead. + * [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). + */ var filledSuccess: ClassName - /** Styles applied to the root element if `variant="filled"` and `color="info"`. */ + /** Styles applied to the root element if `variant="filled"` and `color="info"`. + * @deprecated Combine the [.MuiAlert-filled](/material-ui/api/alert/#alert-classes-filled) + * and [.MuiAlert-colorInfo](/material-ui/api/alert/#alert-classes-colorInfo) classes instead. + * [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). + */ var filledInfo: ClassName - /** Styles applied to the root element if `variant="filled"` and `color="warning"`. */ + /** Styles applied to the root element if `variant="filled"` and `color="warning"` + * @deprecated Combine the [.MuiAlert-filled](/material-ui/api/alert/#alert-classes-filled) + * and [.MuiAlert-colorWarning](/material-ui/api/alert/#alert-classes-colorWarning) classes instead. + * [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). + */ var filledWarning: ClassName - /** Styles applied to the root element if `variant="filled"` and `color="error"`. */ + /** Styles applied to the root element if `variant="filled"` and `color="error"`. + * @deprecated Combine the [.MuiAlert-filled](/material-ui/api/alert/#alert-classes-filled) + * and [.MuiAlert-colorError](/material-ui/api/alert/#alert-classes-colorError) classes instead. + * [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). + */ var filledError: ClassName /** Styles applied to the icon wrapper element. */ diff --git a/mui-kotlin/src/jsMain/kotlin/mui/material/Alert.mui.kt b/mui-kotlin/src/jsMain/kotlin/mui/material/Alert.mui.kt index 950a450a9..162b365d7 100644 --- a/mui-kotlin/src/jsMain/kotlin/mui/material/Alert.mui.kt +++ b/mui-kotlin/src/jsMain/kotlin/mui/material/Alert.mui.kt @@ -25,6 +25,18 @@ sealed external interface MuiAlert { @JsValue("MuiAlert-standard") val standard: ClassName + @JsValue("MuiAlert-colorSuccess") + val colorSuccess: ClassName + + @JsValue("MuiAlert-colorInfo") + val colorInfo: ClassName + + @JsValue("MuiAlert-colorWarning") + val colorWarning: ClassName + + @JsValue("MuiAlert-colorError") + val colorError: ClassName + @JsValue("MuiAlert-standardSuccess") val standardSuccess: ClassName diff --git a/mui-kotlin/src/jsMain/kotlin/mui/material/Button.classes.kt b/mui-kotlin/src/jsMain/kotlin/mui/material/Button.classes.kt index fd6f3bb05..75a5a9630 100644 --- a/mui-kotlin/src/jsMain/kotlin/mui/material/Button.classes.kt +++ b/mui-kotlin/src/jsMain/kotlin/mui/material/Button.classes.kt @@ -11,73 +11,115 @@ external interface ButtonClasses { /** Styles applied to the root element if `variant="text"`. */ var text: ClassName - /** Styles applied to the root element if `variant="text"` and `color="inherit"`. */ + /** Styles applied to the root element if `variant="text"` and `color="inherit"`. + * @deprecated Combine the [.MuiButton-text](/material-ui/api/button/#button-classes-text) and [.MuiButton-colorInherit](/material-ui/api/button/#button-classes-colorInherit) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var textInherit: ClassName - /** Styles applied to the root element if `variant="text"` and `color="primary"`. */ + /** Styles applied to the root element if `variant="text"` and `color="primary"`. + * @deprecated Combine the [.MuiButton-text](/material-ui/api/button/#button-classes-text) and [.MuiButton-colorPrimary](/material-ui/api/button/#button-classes-colorPrimary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var textPrimary: ClassName - /** Styles applied to the root element if `variant="text"` and `color="secondary"`. */ + /** Styles applied to the root element if `variant="text"` and `color="secondary"`. + * @deprecated Combine the [.MuiButton-text](/material-ui/api/button/#button-classes-text) and [.MuiButton-colorSecondary](/material-ui/api/button/#button-classes-colorSecondary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var textSecondary: ClassName - /** Styles applied to the root element if `variant="text"` and `color="success"`. */ + /** Styles applied to the root element if `variant="text"` and `color="success"`. + * @deprecated Combine the [.MuiButton-text](/material-ui/api/button/#button-classes-text) and [.MuiButton-colorSuccess](/material-ui/api/button/#button-classes-colorSuccess) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var textSuccess: ClassName - /** Styles applied to the root element if `variant="text"` and `color="error"`. */ + /** Styles applied to the root element if `variant="text"` and `color="error"`. + * @deprecated Combine the [.MuiButton-text](/material-ui/api/button/#button-classes-text) and [.MuiButton-colorError](/material-ui/api/button/#button-classes-colorError) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var textError: ClassName - /** Styles applied to the root element if `variant="text"` and `color="info"`. */ + /** Styles applied to the root element if `variant="text"` and `color="info"`. + * @deprecated Combine the [.MuiButton-text](/material-ui/api/button/#button-classes-text) and [.MuiButton-colorInfo](/material-ui/api/button/#button-classes-colorInfo) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var textInfo: ClassName - /** Styles applied to the root element if `variant="text"` and `color="warning"`. */ + /** Styles applied to the root element if `variant="text"` and `color="warning"`. + * @deprecated Combine the [.MuiButton-text](/material-ui/api/button/#button-classes-text) and [.MuiButton-colorWarning](/material-ui/api/button/#button-classes-colorWarning) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var textWarning: ClassName /** Styles applied to the root element if `variant="outlined"`. */ var outlined: ClassName - /** Styles applied to the root element if `variant="outlined"` and `color="inherit"`. */ + /** Styles applied to the root element if `variant="outlined"` and `color="inherit"`. + * @deprecated Combine the [.MuiButton-outlined](/material-ui/api/button/#button-classes-outlined) and [.MuiButton-colorInherit](/material-ui/api/button/#button-classes-colorInherit) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var outlinedInherit: ClassName - /** Styles applied to the root element if `variant="outlined"` and `color="primary"`. */ + /** Styles applied to the root element if `variant="outlined"` and `color="primary"`. + * @deprecated Combine the [.MuiButton-outlined](/material-ui/api/button/#button-classes-outlined) and [.MuiButton-colorPrimary](/material-ui/api/button/#button-classes-colorPrimary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var outlinedPrimary: ClassName - /** Styles applied to the root element if `variant="outlined"` and `color="secondary"`. */ + /** Styles applied to the root element if `variant="outlined"` and `color="secondary"`. + * @deprecated Combine the [.MuiButton-outlined](/material-ui/api/button/#button-classes-outlined) and [.MuiButton-colorSecondary](/material-ui/api/button/#button-classes-colorSecondary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var outlinedSecondary: ClassName - /** Styles applied to the root element if `variant="outlined"` and `color="success"`. */ + /** Styles applied to the root element if `variant="outlined"` and `color="success"`. + * @deprecated Combine the [.MuiButton-outlined](/material-ui/api/button/#button-classes-outlined) and [.MuiButton-colorSuccess](/material-ui/api/button/#button-classes-colorSuccess) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var outlinedSuccess: ClassName - /** Styles applied to the root element if `variant="outlined"` and `color="error"`. */ + /** Styles applied to the root element if `variant="outlined"` and `color="error"`. + * @deprecated Combine the [.MuiButton-outlined](/material-ui/api/button/#button-classes-outlined) and [.MuiButton-colorError](/material-ui/api/button/#button-classes-colorError) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var outlinedError: ClassName - /** Styles applied to the root element if `variant="outlined"` and `color="info"`. */ + /** Styles applied to the root element if `variant="outlined"` and `color="info"`. + * @deprecated Combine the [.MuiButton-outlined](/material-ui/api/button/#button-classes-outlined) and [.MuiButton-colorInfo](/material-ui/api/button/#button-classes-colorInfo) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var outlinedInfo: ClassName - /** Styles applied to the root element if `variant="outlined"` and `color="warning"`. */ + /** Styles applied to the root element if `variant="outlined"` and `color="warning"`. + * @deprecated Combine the [.MuiButton-outlined](/material-ui/api/button/#button-classes-outlined) and [.MuiButton-colorWarning](/material-ui/api/button/#button-classes-colorWarning) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var outlinedWarning: ClassName /** Styles applied to the root element if `variant="contained"`. */ var contained: ClassName - /** Styles applied to the root element if `variant="contained"` and `color="inherit"`. */ + /** Styles applied to the root element if `variant="contained"` and `color="inherit"`. + * @deprecated Combine the [.MuiButton-contained](/material-ui/api/button/#button-classes-contained) and [.MuiButton-colorInherit](/material-ui/api/button/#button-classes-colorInherit) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var containedInherit: ClassName - /** Styles applied to the root element if `variant="contained"` and `color="primary"`. */ + /** Styles applied to the root element if `variant="contained"` and `color="primary"`. + * @deprecated Combine the [.MuiButton-contained](/material-ui/api/button/#button-classes-contained) and [.MuiButton-colorPrimary](/material-ui/api/button/#button-classes-colorPrimary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var containedPrimary: ClassName - /** Styles applied to the root element if `variant="contained"` and `color="secondary"`. */ + /** Styles applied to the root element if `variant="contained"` and `color="secondary"`. + * @deprecated Combine the [.MuiButton-contained](/material-ui/api/button/#button-classes-contained) and [.MuiButton-colorSecondary](/material-ui/api/button/#button-classes-colorSecondary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var containedSecondary: ClassName - /** Styles applied to the root element if `variant="contained"` and `color="success"`. */ + /** Styles applied to the root element if `variant="contained"` and `color="success"`. + * @deprecated Combine the [.MuiButton-contained](/material-ui/api/button/#button-classes-contained) and [.MuiButton-colorSuccess](/material-ui/api/button/#button-classes-colorSuccess) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var containedSuccess: ClassName - /** Styles applied to the root element if `variant="contained"` and `color="info"`. */ + /** Styles applied to the root element if `variant="contained"` and `color="info"`. + * @deprecated Combine the [.MuiButton-contained](/material-ui/api/button/#button-classes-contained) and [.MuiButton-colorInfo](/material-ui/api/button/#button-classes-colorInfo) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var containedInfo: ClassName - /** Styles applied to the root element if `variant="contained"` and `color="error"`. */ + /** Styles applied to the root element if `variant="contained"` and `color="error"`. + * @deprecated Combine the [.MuiButton-contained](/material-ui/api/button/#button-classes-contained) and [.MuiButton-colorError](/material-ui/api/button/#button-classes-colorError) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var containedError: ClassName - /** Styles applied to the root element if `variant="contained"` and `color="warning"`. */ + /** Styles applied to the root element if `variant="contained"` and `color="warning"`. + * @deprecated Combine the [.MuiButton-contained](/material-ui/api/button/#button-classes-contained) and [.MuiButton-colorWarning](/material-ui/api/button/#button-classes-colorWarning) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var containedWarning: ClassName /** Styles applied to the root element if `disableElevation={true}`. */ @@ -92,31 +134,49 @@ external interface ButtonClasses { /** Styles applied to the root element if `color="inherit"`. */ var colorInherit: ClassName - /** Styles applied to the root element if `size="small"` and `variant="text"`. */ + /** Styles applied to the root element if `size="small"` and `variant="text"`. + * @deprecated Combine the [.MuiButton-sizeSmall](/material-ui/api/button/#button-classes-sizeSmall) and [.MuiButton-text](/material-ui/api/button/#button-classes-text) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var textSizeSmall: ClassName - /** Styles applied to the root element if `size="medium"` and `variant="text"`. */ + /** Styles applied to the root element if `size="medium"` and `variant="text"`. + * @deprecated Combine the [.MuiButton-sizeMedium](/material-ui/api/button/#button-classes-sizeMedium) and [.MuiButton-text](/material-ui/api/button/#button-classes-text) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var textSizeMedium: ClassName - /** Styles applied to the root element if `size="large"` and `variant="text"`. */ + /** Styles applied to the root element if `size="large"` and `variant="text"`. + * @deprecated Combine the [.MuiButton-sizeLarge](/material-ui/api/button/#button-classes-sizeLarge) and [.MuiButton-text](/material-ui/api/button/#button-classes-text) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var textSizeLarge: ClassName - /** Styles applied to the root element if `size="small"` and `variant="outlined"`. */ + /** Styles applied to the root element if `size="small"` and `variant="outlined"`. + * @deprecated Combine the [.MuiButton-sizeSmall](/material-ui/api/button/#button-classes-sizeSmall) and [.MuiButton-outlined](/material-ui/api/button/#button-classes-outlined) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var outlinedSizeSmall: ClassName - /** Styles applied to the root element if `size="medium"` and `variant="outlined"`. */ + /** Styles applied to the root element if `size="medium"` and `variant="outlined"`. + * @deprecated Combine the [.MuiButton-sizeMedium](/material-ui/api/button/#button-classes-sizeMedium) and [.MuiButton-outlined](/material-ui/api/button/#button-classes-outlined) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var outlinedSizeMedium: ClassName - /** Styles applied to the root element if `size="large"` and `variant="outlined"`. */ + /** Styles applied to the root element if `size="large"` and `variant="outlined"`. + * @deprecated Combine the [.MuiButton-sizeLarge](/material-ui/api/button/#button-classes-sizeLarge) and [.MuiButton-outlined](/material-ui/api/button/#button-classes-outlined) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var outlinedSizeLarge: ClassName - /** Styles applied to the root element if `size="small"` and `variant="contained"`. */ + /** Styles applied to the root element if `size="small"` and `variant="contained"`. + * @deprecated Combine the [.MuiButton-sizeSmall](/material-ui/api/button/#button-classes-sizeSmall) and [.MuiButton-contained](/material-ui/api/button/#button-classes-contained) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var containedSizeSmall: ClassName - /** Styles applied to the root element if `size="medium"` and `variant="contained"`. */ + /** Styles applied to the root element if `size="medium"` and `variant="contained"`. + * @deprecated Combine the [.MuiButton-sizeMedium](/material-ui/api/button/#button-classes-sizeMedium) and [.MuiButton-contained](/material-ui/api/button/#button-classes-contained) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var containedSizeMedium: ClassName - /** Styles applied to the root element if `size="large"` and `variant="contained"`. */ + /** Styles applied to the root element if `size="large"` and `variant="contained"`. + * @deprecated Combine the [.MuiButton-sizeLarge](/material-ui/api/button/#button-classes-sizeLarge) and [.MuiButton-contained](/material-ui/api/button/#button-classes-contained) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var containedSizeLarge: ClassName /** Styles applied to the root element if `size="small"`. */ @@ -131,18 +191,45 @@ external interface ButtonClasses { /** Styles applied to the root element if `fullWidth={true}`. */ var fullWidth: ClassName + /** Styles applied to the icon element if supplied */ + var icon: ClassName + /** Styles applied to the startIcon element if supplied. */ var startIcon: ClassName /** Styles applied to the endIcon element if supplied. */ var endIcon: ClassName - /** Styles applied to the icon element if supplied and `size="small"`. */ + /** Styles applied to the icon element if supplied and `size="small"`. + * @deprecated Combine the [.MuiButton-icon](/material-ui/api/button/#button-classes-icon) and [.MuiButtonSizeSmall](/material-ui/api/button/#button-classes-sizeSmall) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var iconSizeSmall: ClassName - /** Styles applied to the icon element if supplied and `size="medium"`. */ + /** Styles applied to the icon element if supplied and `size="medium"`. + * @deprecated Combine the [.MuiButton-icon](/material-ui/api/button/#button-classes-icon) and [.MuiButtonSizeMedium](/material-ui/api/button/#button-classes-sizeMedium) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var iconSizeMedium: ClassName - /** Styles applied to the icon element if supplied and `size="large"`. */ + /** Styles applied to the icon element if supplied and `size="large"`. + * @deprecated Combine the [.MuiButton-icon](/material-ui/api/button/#button-classes-icon) and [.MuiButtonSizeLarge](/material-ui/api/button/#button-classes-sizeLarge) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var iconSizeLarge: ClassName + + /** Styles applied to the root element if `color="primary"`. */ + var colorPrimary: ClassName + + /** Styles applied to the root element if `color="secondary"`. */ + var colorSecondary: ClassName + + /** Styles applied to the root element if `color="success"`. */ + var colorSuccess: ClassName + + /** Styles applied to the root element if `color="error"`. */ + var colorError: ClassName + + /** Styles applied to the root element if `color="info"`. */ + var colorInfo: ClassName + + /** Styles applied to the root element if `color="warning"`. */ + var colorWarning: ClassName } diff --git a/mui-kotlin/src/jsMain/kotlin/mui/material/Button.mui.kt b/mui-kotlin/src/jsMain/kotlin/mui/material/Button.mui.kt index d319f93fc..93d595a32 100644 --- a/mui-kotlin/src/jsMain/kotlin/mui/material/Button.mui.kt +++ b/mui-kotlin/src/jsMain/kotlin/mui/material/Button.mui.kt @@ -133,6 +133,9 @@ sealed external interface MuiButton { @JsValue("MuiButton-fullWidth") val fullWidth: ClassName + @JsValue("MuiButton-icon") + val icon: ClassName + @JsValue("MuiButton-startIcon") val startIcon: ClassName @@ -147,5 +150,23 @@ sealed external interface MuiButton { @JsValue("MuiButton-iconSizeLarge") val iconSizeLarge: ClassName + + @JsValue("MuiButton-colorPrimary") + val colorPrimary: ClassName + + @JsValue("MuiButton-colorSecondary") + val colorSecondary: ClassName + + @JsValue("MuiButton-colorSuccess") + val colorSuccess: ClassName + + @JsValue("MuiButton-colorError") + val colorError: ClassName + + @JsValue("MuiButton-colorInfo") + val colorInfo: ClassName + + @JsValue("MuiButton-colorWarning") + val colorWarning: ClassName } } diff --git a/mui-kotlin/src/jsMain/kotlin/mui/material/Checkbox.kt b/mui-kotlin/src/jsMain/kotlin/mui/material/Checkbox.kt index 7122ccaf8..4bf6662d8 100644 --- a/mui-kotlin/src/jsMain/kotlin/mui/material/Checkbox.kt +++ b/mui-kotlin/src/jsMain/kotlin/mui/material/Checkbox.kt @@ -106,7 +106,7 @@ external interface CheckboxProps : * `small` is equivalent to the dense checkbox styling. * @default 'medium' */ - var size: BaseSize? + var size: Size? /** * The system prop that allows defining system overrides as well as additional CSS styles. diff --git a/mui-kotlin/src/jsMain/kotlin/mui/material/Chip.classes.kt b/mui-kotlin/src/jsMain/kotlin/mui/material/Chip.classes.kt index f74cdcf75..c3efa6f78 100644 --- a/mui-kotlin/src/jsMain/kotlin/mui/material/Chip.classes.kt +++ b/mui-kotlin/src/jsMain/kotlin/mui/material/Chip.classes.kt @@ -38,19 +38,27 @@ external interface ChipClasses { /** Styles applied to the root element if `onClick` is defined or `clickable={true}`. */ var clickable: ClassName - /** Styles applied to the root element if `onClick` and `color="primary"` is defined or `clickable={true}`. */ + /** Styles applied to the root element if `onClick` and `color="primary"` is defined or `clickable={true}`. + * @deprecated Combine the [.MuiChip-clickable](/material-ui/api/chip/#chip-classes-clickable) and [.MuiChip-colorPrimary](/material-ui/api/chip/#chip-classes-colorPrimary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var clickableColorPrimary: ClassName - /** Styles applied to the root element if `onClick` and `color="secondary"` is defined or `clickable={true}`. */ + /** Styles applied to the root element if `onClick` and `color="secondary"` is defined or `clickable={true}`. + * @deprecated Combine the [.MuiChip-clickable](/material-ui/api/chip/#chip-classes-clickable) and [.MuiChip-colorSecondary](/material-ui/api/chip/#chip-classes-colorSecondary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var clickableColorSecondary: ClassName /** Styles applied to the root element if `onDelete` is defined. */ var deletable: ClassName - /** Styles applied to the root element if `onDelete` and `color="primary"` is defined. */ + /** Styles applied to the root element if `onDelete` and `color="primary"` is defined. + * @deprecated Combine the [.MuiChip-deletable](/material-ui/api/chip/#chip-classes-deletable) and [.MuiChip-colorPrimary](/material-ui/api/chip/#chip-classes-colorPrimary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var deletableColorPrimary: ClassName - /** Styles applied to the root element if `onDelete` and `color="secondary"` is defined. */ + /** Styles applied to the root element if `onDelete` and `color="secondary"` is defined. + * @deprecated Combine the [.MuiChip-deletable](/material-ui/api/chip/#chip-classes-deletable) and [.MuiChip-colorSecondary](/material-ui/api/chip/#chip-classes-colorSecondary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var deletableColorSecondary: ClassName /** Styles applied to the root element if `variant="outlined"`. */ @@ -59,82 +67,126 @@ external interface ChipClasses { /** Styles applied to the root element if `variant="filled"`. */ var filled: ClassName - /** Styles applied to the root element if `variant="outlined"` and `color="primary"`. */ + /** Styles applied to the root element if `variant="outlined"` and `color="primary"`. + * @deprecated Combine the [.MuiChip-outlined](/material-ui/api/chip/#chip-classes-outlined) and [.MuiChip-colorPrimary](/material-ui/api/chip/#chip-classes-colorPrimary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var outlinedPrimary: ClassName - /** Styles applied to the root element if `variant="outlined"` and `color="secondary"`. */ + /** Styles applied to the root element if `variant="outlined"` and `color="secondary"`. + * @deprecated Combine the [.MuiChip-outlined](/material-ui/api/chip/#chip-classes-outlined) and [.MuiChip-colorSecondary](/material-ui/api/chip/#chip-classes-colorSecondary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var outlinedSecondary: ClassName - /** Styles applied to the root element if `variant="filled"` and `color="primary"`. */ + /** Styles applied to the root element if `variant="filled"` and `color="primary"`. + * @deprecated Combine the [.MuiChip-filled](/material-ui/api/chip/#chip-classes-filled) and [.MuiChip-colorPrimary](/material-ui/api/chip/#chip-classes-colorPrimary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var filledPrimary: ClassName - /** Styles applied to the root element if `variant="filled"` and `color="secondary"`. */ + /** Styles applied to the root element if `variant="filled"` and `color="secondary"`. + * @deprecated Combine the [.MuiChip-filled](/material-ui/api/chip/#chip-classes-filled) and [.MuiChip-colorSecondary](/material-ui/api/chip/#chip-classes-colorSecondary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var filledSecondary: ClassName /** Styles applied to the avatar element. */ var avatar: ClassName - /** Styles applied to the avatar element if `size="small"`. */ + /** Styles applied to the avatar element if `size="small"`. + * @deprecated Combine the [.MuiChip-avatar](/material-ui/api/chip/#chip-classes-avatar) and [.MuiChip-sizeSmall](/material-ui/api/chip/#chip-classes-sizeSmall) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var avatarSmall: ClassName - /** Styles applied to the avatar element if `size="medium"`. */ + /** Styles applied to the avatar element if `size="medium"`. + * @deprecated Combine the [.MuiChip-avatar](/material-ui/api/chip/#chip-classes-avatar) and [.MuiChip-sizeMedium](/material-ui/api/chip/#chip-classes-sizeMedium) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var avatarMedium: ClassName - /** Styles applied to the avatar element if `color="primary"`. */ + /** Styles applied to the avatar element if `color="primary"`. + * @deprecated Combine the [.MuiChip-avatar](/material-ui/api/chip/#chip-classes-avatar) and [.MuiChip-colorPrimary](/material-ui/api/chip/#chip-classes-colorPrimary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var avatarColorPrimary: ClassName - /** Styles applied to the avatar element if `color="secondary"`. */ + /** Styles applied to the avatar element if `color="secondary"`. + * @deprecated Combine the [.MuiChip-avatar](/material-ui/api/chip/#chip-classes-avatar) and [.MuiChip-colorSecondary](/material-ui/api/chip/#chip-classes-colorSecondary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var avatarColorSecondary: ClassName /** Styles applied to the icon element. */ var icon: ClassName - /** Styles applied to the icon element if `size="small"`. */ + /** Styles applied to the icon element if `size="small"`. + * @deprecated Combine the [.MuiChip-icon](/material-ui/api/chip/#chip-classes-icon) and [.MuiChip-sizeSmall](/material-ui/api/chip/#chip-classes-sizeSmall) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var iconSmall: ClassName - /** Styles applied to the icon element if `size="medium"`. */ + /** Styles applied to the icon element if `size="medium"`. + * @deprecated Combine the [.MuiChip-icon](/material-ui/api/chip/#chip-classes-icon) and [.MuiChip-sizeMedium](/material-ui/api/chip/#chip-classes-sizeMedium) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var iconMedium: ClassName - /** Styles applied to the icon element if `color="primary"`. */ + /** Styles applied to the icon element if `color="primary"`. + * @deprecated Combine the [.MuiChip-icon](/material-ui/api/chip/#chip-classes-icon) and [.MuiChip-colorPrimary](/material-ui/api/chip/#chip-classes-colorPrimary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var iconColorPrimary: ClassName - /** Styles applied to the icon element if `color="secondary"`. */ + /** Styles applied to the icon element if `color="secondary"`. + * @deprecated Combine the [.MuiChip-icon](/material-ui/api/chip/#chip-classes-icon) and [.MuiChip-colorSecondary](/material-ui/api/chip/#chip-classes-colorSecondary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var iconColorSecondary: ClassName /** Styles applied to the label `span` element. */ var label: ClassName - /** Styles applied to the label `span` element if `size="small"`. */ + /** Styles applied to the label `span` element if `size="small"`. + * @deprecated Combine the [.MuiChip-label](/material-ui/api/chip/#chip-classes-label) and [.MuiChip-sizeSmall](/material-ui/api/chip/#chip-classes-sizeSmall) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var labelSmall: ClassName - /** Styles applied to the label `span` element if `size="medium"`. */ + /** Styles applied to the label `span` element if `size="medium"`. + * @deprecated Combine the [.MuiChip-label](/material-ui/api/chip/#chip-classes-label) and [.MuiChip-sizeMedium](/material-ui/api/chip/#chip-classes-sizeMedium) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var labelMedium: ClassName /** Styles applied to the deleteIcon element. */ var deleteIcon: ClassName - /** Styles applied to the deleteIcon element if `size="small"`. */ + /** Styles applied to the deleteIcon element if `size="small"`. + * @deprecated Combine the [.MuiChip-deleteIcon](/material-ui/api/chip/#chip-classes-deleteIcon) and [.MuiChip-sizeSmall](/material-ui/api/chip/#chip-classes-sizeSmall) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var deleteIconSmall: ClassName - /** Styles applied to the deleteIcon element if `size="medium"`. */ + /** Styles applied to the deleteIcon element if `size="medium"`. + * @deprecated Combine the [.MuiChip-deleteIcon](/material-ui/api/chip/#chip-classes-deleteIcon) and [.MuiChip-sizeMedium](/material-ui/api/chip/#chip-classes-sizeMedium) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var deleteIconMedium: ClassName - /** Styles applied to the deleteIcon element if `color="primary"` and `variant="filled"`. */ + /** Styles applied to the deleteIcon element if `color="primary"`. + * @deprecated Combine the [.MuiChip-deleteIcon](/material-ui/api/chip/#chip-classes-deleteIcon) and [.MuiChip-colorPrimary](/material-ui/api/chip/#chip-classes-colorPrimary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var deleteIconColorPrimary: ClassName - /** Styles applied to the deleteIcon element if `color="secondary"` and `variant="filled"`. */ + /** Styles applied to the deleteIcon element if `color="secondary"`. + * @deprecated Combine the [.MuiChip-deleteIcon](/material-ui/api/chip/#chip-classes-deleteIcon) and [.MuiChip-colorSecondary](/material-ui/api/chip/#chip-classes-colorSecondary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var deleteIconColorSecondary: ClassName - /** Styles applied to the deleteIcon element if `color="primary"` and `variant="outlined"`. */ + /** Styles applied to the deleteIcon element if `color="primary"` and `variant="outlined"`. + * @deprecated Combine the [.MuiChip-deleteIcon](/material-ui/api/chip/#chip-classes-deleteIcon) , [.MuiChip-outlined](/material-ui/api/chip/#chip-classes-outlined) and [.MuiChip-colorPrimary](/material-ui/api/chip/#chip-classes-colorPrimary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var deleteIconOutlinedColorPrimary: ClassName - /** Styles applied to the deleteIcon element if `color="secondary"` and `variant="outlined"`. */ + /** Styles applied to the deleteIcon element if `color="secondary"` and `variant="outlined"`. + * @deprecated Combine the [.MuiChip-deleteIcon](/material-ui/api/chip/#chip-classes-deleteIcon) , [.MuiChip-outlined](/material-ui/api/chip/#chip-classes-outlined) and [.MuiChip-colorSecondary](/material-ui/api/chip/#chip-classes-colorSecondary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var deleteIconOutlinedColorSecondary: ClassName - /** Styles applied to the deleteIcon element if `color="primary"` and `variant="filled"`. */ + /** Styles applied to the deleteIcon element if `color="primary"` and `variant="filled"`. + * @deprecated Combine the [.MuiChip-deleteIcon](/material-ui/api/chip/#chip-classes-deleteIcon) , [.MuiChip-filled](/material-ui/api/chip/#chip-classes-filled) and [.MuiChip-colorPrimary](/material-ui/api/chip/#chip-classes-colorPrimary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var deleteIconFilledColorPrimary: ClassName - /** Styles applied to the deleteIcon element if `color="secondary"` and `variant="filled"`. */ + /** Styles applied to the deleteIcon element if `color="secondary"` and `variant="filled"`. + * @deprecated Combine the [.MuiChip-deleteIcon](/material-ui/api/chip/#chip-classes-deleteIcon) , [.MuiChip-filled](/material-ui/api/chip/#chip-classes-filled) and [.MuiChip-colorSecondary](/material-ui/api/chip/#chip-classes-colorSecondary) classes instead. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/) + */ var deleteIconFilledColorSecondary: ClassName /** State class applied to the root element if keyboard focused. */ diff --git a/mui-kotlin/src/jsMain/kotlin/mui/material/Slider.kt b/mui-kotlin/src/jsMain/kotlin/mui/material/Slider.kt index 4d2c8be13..c06d91484 100644 --- a/mui-kotlin/src/jsMain/kotlin/mui/material/Slider.kt +++ b/mui-kotlin/src/jsMain/kotlin/mui/material/Slider.kt @@ -51,8 +51,7 @@ external interface SliderOwnProps : /** * The components used for each slot inside. * - * This prop is an alias for the `slots` prop. - * It's recommended to use the `slots` prop instead. + * @deprecated use the `slots` prop instead. This prop will be removed in v7. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). * * @default {} */ @@ -73,8 +72,7 @@ external interface SliderOwnProps : * The extra props for the slot components. * You can override the existing props or add new ones. * - * This prop is an alias for the `slotProps` prop. - * It's recommended to use the `slotProps` prop instead, as `componentsProps` will be deprecated in the future. + * @deprecated use the `slotProps` prop instead. This prop will be removed in v7. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). * * @default {} */ diff --git a/mui-kotlin/src/jsMain/kotlin/mui/system/createSpacing.ext.kt b/mui-kotlin/src/jsMain/kotlin/mui/system/createSpacing.ext.kt index f51613501..a6c24ca63 100644 --- a/mui-kotlin/src/jsMain/kotlin/mui/system/createSpacing.ext.kt +++ b/mui-kotlin/src/jsMain/kotlin/mui/system/createSpacing.ext.kt @@ -42,7 +42,7 @@ sealed interface Spacing { inline operator fun invoke(): web.cssom.Length = asDynamic()() - inline operator fun invoke(value: Int): web.cssom.Length = + inline operator fun invoke(value: SpacingArgument): web.cssom.Length = asDynamic()(value) inline operator fun invoke(topBottom: SpacingArgument, rightLeft: SpacingArgument): web.cssom.Length = diff --git a/yarn.lock b/yarn.lock index ade88af07..7c828ec4f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -268,15 +268,15 @@ resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz#4fc56c15c580b9adb7dc3c333a134e540b44bfb1" integrity sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw== -"@mui/base@5.0.0-beta.37": - version "5.0.0-beta.37" - resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-beta.37.tgz#0e7e0f28402391fcfbb05476d5acc6c4f2d817b1" - integrity sha512-/o3anbb+DeCng8jNsd3704XtmmLDZju1Fo8R2o7ugrVtPQ/QpcqddwKNzKPZwa0J5T8YNW3ZVuHyQgbTnQLisQ== +"@mui/base@5.0.0-beta.38": + version "5.0.0-beta.38" + resolved "https://registry.yarnpkg.com/@mui/base/-/base-5.0.0-beta.38.tgz#0d79c1158d18d9decfc8fa3ab87b4830a49cf952" + integrity sha512-AsjD6Y1X5A1qndxz8xCcR8LDqv31aiwlgWMPxFAX/kCKiIGKlK65yMeVZ62iQr/6LBz+9hSKLiD1i4TZdAHKcQ== dependencies: "@babel/runtime" "^7.23.9" "@floating-ui/react-dom" "^2.0.8" "@mui/types" "^7.2.13" - "@mui/utils" "^5.15.11" + "@mui/utils" "^5.15.12" "@popperjs/core" "^2.11.8" clsx "^2.1.0" prop-types "^15.8.1" @@ -294,42 +294,42 @@ clsx "^2.1.0" prop-types "^15.8.1" -"@mui/core-downloads-tracker@^5.15.11": +"@mui/core-downloads-tracker@^5.15.12": version "5.15.15" resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-5.15.15.tgz#2bc2bda50db66c12f10aefec907c48c8f669ef59" integrity sha512-aXnw29OWQ6I5A47iuWEI6qSSUfH6G/aCsW9KmW3LiFqr7uXZBK4Ks+z8G+qeIub8k0T5CMqlT2q0L+ZJTMrqpg== -"@mui/icons-material@5.15.11": - version "5.15.11" - resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-5.15.11.tgz#263a89ba1b55667890fe0da3f5ca753647a0945b" - integrity sha512-R5ZoQqnKpd+5Ew7mBygTFLxgYsQHPhgR3TDXSgIHYIjGzYuyPLmGLSdcPUoMdi6kxiYqHlpPj4NJxlbaFD0UHA== +"@mui/icons-material@5.15.12": + version "5.15.12" + resolved "https://registry.yarnpkg.com/@mui/icons-material/-/icons-material-5.15.12.tgz#30638c5dd4d40ecabea1579bbfa7394565c54474" + integrity sha512-3BXiDlOd3AexZoEXa/VqpIpVIvosCzjLHsdMWzKMXbZdnBiJjmb9ECdqfjn5SpTClO49qvkKLhkTqdBH3fSFGw== dependencies: "@babel/runtime" "^7.23.9" -"@mui/lab@5.0.0-alpha.166": - version "5.0.0-alpha.166" - resolved "https://registry.yarnpkg.com/@mui/lab/-/lab-5.0.0-alpha.166.tgz#7c79c66e8cc1bd44f1ef2d1e0c3fd874381e161f" - integrity sha512-a+0yorrgxLIgfKhShVKQk0/5CnB4KBhMQ64SvEB+CsvKAKKJzjIU43m2nMqdBbWzfnEuj6wR9vQ9kambdn3ZKA== +"@mui/lab@5.0.0-alpha.167": + version "5.0.0-alpha.167" + resolved "https://registry.yarnpkg.com/@mui/lab/-/lab-5.0.0-alpha.167.tgz#8f00b0fe8f236691bc2cffadfd4feb542b0151cd" + integrity sha512-BNQJ7fBBvL68WGVnzAhbtTmabSuJDXaILr9dz/3RNK4TgGXPgWCAr7qtJeUdc4p1t7c4Z1ifG8UwgqD+5hzMNg== dependencies: "@babel/runtime" "^7.23.9" - "@mui/base" "5.0.0-beta.37" - "@mui/system" "^5.15.11" + "@mui/base" "5.0.0-beta.38" + "@mui/system" "^5.15.12" "@mui/types" "^7.2.13" - "@mui/utils" "^5.15.11" + "@mui/utils" "^5.15.12" clsx "^2.1.0" prop-types "^15.8.1" -"@mui/material@5.15.11": - version "5.15.11" - resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.15.11.tgz#4f42ee30443699ffb5836029c6d8464154eca603" - integrity sha512-FA3eEuEZaDaxgN3CgfXezMWbCZ4VCeU/sv0F0/PK5n42qIgsPVD6q+j71qS7/62sp6wRFMHtDMpXRlN+tT/7NA== +"@mui/material@5.15.12": + version "5.15.12" + resolved "https://registry.yarnpkg.com/@mui/material/-/material-5.15.12.tgz#08d6582e4037f45df510f3bce51fa06b38a9a676" + integrity sha512-vXJGg6KNKucsvbW6l7w9zafnpOp0CWc0Wx4mDykuABTpQ5QQBnZxP7+oB4yAS1hDZQ1WobbeIl0CjxK4EEahkA== dependencies: "@babel/runtime" "^7.23.9" - "@mui/base" "5.0.0-beta.37" - "@mui/core-downloads-tracker" "^5.15.11" - "@mui/system" "^5.15.11" + "@mui/base" "5.0.0-beta.38" + "@mui/core-downloads-tracker" "^5.15.12" + "@mui/system" "^5.15.12" "@mui/types" "^7.2.13" - "@mui/utils" "^5.15.11" + "@mui/utils" "^5.15.12" "@types/react-transition-group" "^4.4.10" clsx "^2.1.0" csstype "^3.1.3" @@ -337,7 +337,7 @@ react-is "^18.2.0" react-transition-group "^4.4.5" -"@mui/private-theming@^5.15.11", "@mui/private-theming@^5.15.14": +"@mui/private-theming@^5.15.12", "@mui/private-theming@^5.15.14": version "5.15.14" resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-5.15.14.tgz#edd9a82948ed01586a01c842eb89f0e3f68970ee" integrity sha512-UH0EiZckOWcxiXLX3Jbb0K7rC8mxTr9L9l6QhOZxYc4r8FHUkefltV9VDGLrzCaWh30SQiJvAEd7djX3XXY6Xw== @@ -356,21 +356,21 @@ csstype "^3.1.3" prop-types "^15.8.1" -"@mui/system@5.15.11": - version "5.15.11" - resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.15.11.tgz#19cf1974f82f1dd38be1f162034efecadd765733" - integrity sha512-9j35suLFq+MgJo5ktVSHPbkjDLRMBCV17NMBdEQurh6oWyGnLM4uhU4QGZZQ75o0vuhjJghOCA1jkO3+79wKsA== +"@mui/system@5.15.12": + version "5.15.12" + resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.15.12.tgz#852cf7c339eb61703196f56c36fc93206136eb20" + integrity sha512-/pq+GO6yN3X7r3hAwFTrzkAh7K1bTF5r8IzS79B9eyKJg7v6B/t4/zZYMR6OT9qEPtwf6rYN2Utg1e6Z7F1OgQ== dependencies: "@babel/runtime" "^7.23.9" - "@mui/private-theming" "^5.15.11" + "@mui/private-theming" "^5.15.12" "@mui/styled-engine" "^5.15.11" "@mui/types" "^7.2.13" - "@mui/utils" "^5.15.11" + "@mui/utils" "^5.15.12" clsx "^2.1.0" csstype "^3.1.3" prop-types "^15.8.1" -"@mui/system@^5.15.11": +"@mui/system@^5.15.12": version "5.15.15" resolved "https://registry.yarnpkg.com/@mui/system/-/system-5.15.15.tgz#658771b200ce3c4a0f28e58169f02e5e718d1c53" integrity sha512-aulox6N1dnu5PABsfxVGOZffDVmlxPOVgj56HrUnJE8MCSh8lOvvkd47cebIVQQYAjpwieXQXiDPj5pwM40jTQ== @@ -389,7 +389,7 @@ resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.2.14.tgz#8a02ac129b70f3d82f2f9b76ded2c8d48e3fc8c9" integrity sha512-MZsBZ4q4HfzBsywtXgM1Ksj6HDThtiwmOKUXH1pKYISI9gAVXCNHNpo7TlGoGrBaYWZTdNoirIN7JsQcQUjmQQ== -"@mui/utils@^5.10.3", "@mui/utils@^5.14.14", "@mui/utils@^5.15.11", "@mui/utils@^5.15.14": +"@mui/utils@^5.10.3", "@mui/utils@^5.14.14", "@mui/utils@^5.15.12", "@mui/utils@^5.15.14": version "5.15.14" resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.15.14.tgz#e414d7efd5db00bfdc875273a40c0a89112ade3a" integrity sha512-0lF/7Hh/ezDv5X7Pry6enMsbYyGKjADzvHyo3Qrc/SSlTsQ1VkbDMbH0m2t3OR5iIVLwMoxwM7yGd+6FCMtTFA==