Sukkyu Chung

Results 69 comments of Sukkyu Chung

Hello @benoitgrelard :wave: I was having the exact same issue stated here, and just wondering if any progress has been made regarding this bug :grin:. On and thank you and...

@benoitgrelard Hello there, thanks for a quick fix! I actually went ahead and tried [1.0.6-rc.5](https://www.npmjs.com/package/@radix-ui/react-popover/v/1.0.6-rc.5) version as suggested here: [#2105 comment](https://github.com/radix-ui/primitives/issues/2105#issuecomment-1522098464). Unfortunately it didn't seem to fix the issue for...

@benoitgrelard Hey I actually made a reproduction repo bootstrapped with `create next-app` here: [nested popover issue repro](https://github.com/sookmax/radix-ui-nested-popover-issue-reproduction). And here's a short video I recorded with this repo. https://user-images.githubusercontent.com/71210554/234471576-84b6e534-5a23-46f0-aea1-62522d54bd64.MP4

@Kureyko hey I just had a similar issue and somehow managed to find a workaround. Do any of your components (`ImageBanner`, `ImageBanner.Content`, or `ImageBanner.Image`) happen to assign its `displayName` after...

Hey could you try prefixing your absolute url with `/public` and see if it works? (i.e., `bg-[url("/public/images/background.png")]`). I've encountered a similar issue and it looks like prefixing my absolute url...

@mirkosaugo You're right. It sucks and is very unintuitive having to have that `/public` prefix to make css urls work correctly. I would love to submit a PR to fix...

@mirkosaugo Hey, it turned out there was a conflict related to `css-loader` between `@storybook/nextjs` and `@storybook/addon-styling`. You can safely remove `options.postCss` for `@storybook/addon-styling` in `.storybook/main.ts` like below, and the `url()`...

@shilman I think this could be improved. The optional prop `onChange` that the user has not specified, is provided to the React component, actually by `ArgsEnhancer`s in `@storybook/addon-actions` and `@storybook/addon-interactions`....

To piggyback on @ryo-manba's comment, it looks like the following if-statement runs whenever `formatOptions !== prevFormatOptions` (which only checks the referential equality since `formatOptions` is an object): https://github.com/adobe/react-spectrum/blob/8b7fb3e2b3d557bf7932dd541c5702d218354ad9/packages/%40react-stately/numberfield/src/useNumberFieldState.ts#L138-L143 And since...

@ktabors Hey I looked into this issue, and it seems it's specific to `@react-spectrum`'s Menu, not `react-aria-components`'s. In particular, it seems there are too many 'scroll parents' for `@react-spectrum`'s menu...