Alexey Kozlenkov

Results 17 comments of Alexey Kozlenkov

@appleSimple my bad 😞 This one should work: https://codesandbox.io/p/sandbox/damp-monad-sptgfr?file=%2Fsrc%2FDemo.tsx%3A12%2C4

@appleSimple `any` could be passed as a `slotProps`'s value to `CreateSlotsAndSlotProps`, can't be passed to Alert's close button `slotProps` cause it's already specified as `SlotProps`

@ZeeshanTamboli I don't it's possible since `slotProps` values there are not just types of desired props but a `SlotProps` wrapper around original MUI's `IconButtonProps`, as I specified at the beginning...

Facing the same issue, can't define default elevation for dialog via i.e. `{ defaultProps: { PaperProps: { elevation: 5 } } }`. Anytime anybody provides some `PaperProps` when using dialog,...

I did some digging and found out that [this MR](https://github.com/mui/material-ui/issues/34214) happened, which seem to resolve deep merge, but only for `*slotProps` properties. However, not all of the components internals customisable...

@siriwatknp >to add missing slotProps to all components in v6 Does it mean that all component will have ability to provide any of their children Props via `slotProps`? i.e. for...

@siriwatknp If I willing to contribute to expedite this issue, could you perhaps point me to some PR example for this change?

@DiegoAndai I see, thanks for replying here. I'll follow noted issue then and wait for the updates

I tracked what's happening to [this function](https://github.com/storybookjs/storybook/blob/d36aab550727614ef91f09db78b8b838fab60096/code/core/src/preview-api/modules/store/args.ts#L15): it tries to validate what URL query has against what `argType` specifies for some arg. Component's props that have `ReactNode` type seem to...