-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade MUI & Regenerate declarations
* Material `5.15.2` * Icons `5.15.2` * Base `5.0.0-beta.29` * System `5.15.2` * Lab `5.0.0-alpha.158`
- Loading branch information
1 parent
52a576a
commit 0f5c617
Showing
8 changed files
with
225 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// Automatically generated - do not modify! | ||
|
||
@file:JsModule("@mui/base/CssAnimation") | ||
|
||
package mui.base | ||
|
||
import web.cssom.ClassName | ||
|
||
external interface CssAnimationProps : | ||
react.PropsWithChildren, | ||
react.PropsWithClassName { | ||
override var children: react.ReactNode? | ||
|
||
override var className: ClassName? | ||
|
||
/** | ||
* The name of the CSS animation (the `animation-name` CSS property) applied to the component when | ||
* the transition is requested to enter. | ||
*/ | ||
var enterAnimationName: String? | ||
|
||
/** | ||
* The name of the CSS class applied to the component when the transition | ||
* is requested to enter. | ||
*/ | ||
var enterClassName: ClassName? | ||
|
||
/** | ||
* The name of the CSS animation (the `animation-name` CSS property) applied to the component when | ||
* the transition is requested to exit. | ||
*/ | ||
var exitAnimationName: String? | ||
|
||
/** | ||
* The name of the CSS class applied to the component when the transition | ||
* is requested to exit. | ||
*/ | ||
var exitClassName: ClassName? | ||
} | ||
|
||
/** | ||
* | ||
* Demos: | ||
* | ||
* - [Transitions](https://mui.com/base-ui/react-transitions/) | ||
* | ||
* API: | ||
* | ||
* - [CssAnimation API](https://mui.com/base-ui/react-transitions/components-api/#css-animation) | ||
*/ | ||
external val CssAnimation: react.FC<CssAnimationProps> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// Automatically generated - do not modify! | ||
|
||
@file:JsModule("@mui/base/CssTransition") | ||
|
||
package mui.base | ||
|
||
import web.cssom.ClassName | ||
|
||
external interface CssTransitionProps : | ||
react.PropsWithChildren, | ||
react.PropsWithClassName { | ||
override var children: react.ReactNode? | ||
|
||
override var className: ClassName? | ||
|
||
/** | ||
* The name of the CSS class applied to the component when the transition | ||
* is requested to enter. | ||
*/ | ||
var enterClassName: ClassName? | ||
|
||
/** | ||
* The name of the CSS class applied to the component when the transition | ||
* is requested to exit. | ||
*/ | ||
var exitClassName: ClassName? | ||
|
||
/** | ||
* The name of the CSS property that is transitioned the longest (has the largest `transition-duration`) on enter. | ||
* This is used to determine when the transition has ended. | ||
* If not specified, the transition will be considered finished end when the first property is transitioned. | ||
* If all properties have the same `transition-duration` (or there is just one transitioned property), this can be omitted. | ||
*/ | ||
var lastTransitionedPropertyOnEnter: String? | ||
|
||
/** | ||
* The name of the CSS property that is transitioned the longest (has the largest `transition-duration`) on exit. | ||
* This is used to determine when the transition has ended. | ||
* If not specified, the transition will be considered finished end when the first property is transitioned. | ||
* If all properties have the same `transition-duration` (or there is just one transitioned property), this can be omitted. | ||
*/ | ||
var lastTransitionedPropertyOnExit: String? | ||
} | ||
|
||
/** | ||
* A utility component that hooks up to the Base UI transitions API and | ||
* applies a CSS transition to its children when necessary. | ||
* | ||
* Demos: | ||
* | ||
* - [Transitions](https://mui.com/base-ui/react-transitions/) | ||
* | ||
* API: | ||
* | ||
* - [CssTransition API](https://mui.com/base-ui/react-transitions/components-api/#css-transition) | ||
*/ | ||
external val CssTransition: react.FC<CssTransitionProps> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.