Moritz Hofmeister

Results 5 issues of Moritz Hofmeister

Migrating [kotlin-react](https://github.com/JetBrains/kotlin-wrappers/tree/master/kotlin-react) from a lower version than `pre.282` is currently quite difficult due to the lack of documentation on the new `kotlin-react` and also `kotlin-react-dom` versions with the ChildrenBuilder() and...

Since migrating to MUI v5 we are using `Box` (and some other components like `Link`) quite often like this: ```kotlin Box { component = img sx { width = 100.pct...

1. The `ButtonBase` is missing the `component` property. Probably because it needs to inherit from `PropsWithComponent` See [ButtonBase](https://github.com/mui/material-ui/blob/master/packages/mui-material/src/ButtonBase/ButtonBase.d.ts) & [OverridableComponent](https://github.com/mui/material-ui/blob/master/packages/mui-material/src/OverridableComponent.d.ts) source 2. The `IconButton` should inherit props from `ButtonBase` (to...

I noticed that the `TransitionProps` are not wrapped. [Docs](http://reactcommunity.org/react-transition-group/transition#Transition-props) Source code from MUI: - [Grow](https://github.com/mui/material-ui/blob/master/packages/mui-material/src/Grow/Grow.d.ts) - [transition](https://github.com/mui/material-ui/blob/40904aabf0f5c647e4084ecc6c050e31a56f76a3/packages/mui-material/src/transitions/transition.ts) ![Screenshot 2022-04-08 at 11 24 26](https://user-images.githubusercontent.com/62036655/162410233-c06c7b1f-a2d9-4d04-910b-452734ba34e8.png)

I noticed that since [this] (https://github.com/JetBrains/kotlin-wrappers/pull/2288) PR, the Autocomplete `onChange` value parameter is `Any`. But actually it should be `Any?` because clearing the Autocomplete can return `null`. This leads to...