Skip to content

Commit

Permalink
mui-material.version=5.15.12
Browse files Browse the repository at this point in the history
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
  • Loading branch information
aerialist7 committed Apr 16, 2024
1 parent 3a07b33 commit 60404a8
Show file tree
Hide file tree
Showing 10 changed files with 346 additions and 116 deletions.
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
84 changes: 72 additions & 12 deletions mui-kotlin/src/jsMain/kotlin/mui/material/Alert.classes.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
12 changes: 12 additions & 0 deletions mui-kotlin/src/jsMain/kotlin/mui/material/Alert.mui.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading

0 comments on commit 60404a8

Please sign in to comment.