chirokas

Results 12 comments of chirokas

If there are any problems, please guide me. Thanks! @rickhanlonii @kassens

If there are any problems, please guide me. Thanks!

@eps1lon Could you take a look at this PR?

@wingkwong https://github.com/adobe/react-spectrum/issues/5988#issuecomment-1982091331 https://github.com/adobe/react-spectrum/pull/6024

Visibility is an animatable property. However, the result looks terrible and gives a jarring effect. This is because it's a [discrete animation](https://www.w3.org/TR/web-animations/#animating-visibility). A solution to this problem is to specify...

You mean like this? ```js const isNumber = require("./utils/is-number.js"); // ... const { sourceCode } = context; const scope = sourceCode.getScope(conditionalExpression); const isInvalidExpression = [left, right, alternate, consequent].some( (node) =>...

@wingkwong The issue may be caused by [domRef](https://github.com/nextui-org/nextui/blob/canary/packages/components/select/src/use-select.ts#L535C77-L535C83), which does not occur in PR#3467. Additionally, the NextUI doc is outdated (When Select A is open, clicking Select B does not...

@wingkwong https://github.com/user-attachments/assets/e6ff7bee-d9b1-4498-8c74-e127a8c315e3

React Aria prevents browser error UI from appearing, but `HiddenSelect` causes the `Select` to display it. https://github.com/adobe/react-spectrum/blob/93c26d8bd2dfe48a815f08c58925a977b94d6fdd/packages/%40react-aria/form/src/useFormValidation.ts#L70-L71 https://stackblitz.com/edit/vitejs-vite-shqsjy?file=src%2FApp.tsx

I guess this is what happens: When an Activity boundary is hidden during its initial render, the Effects of its children are not mounted. https://github.com/facebook/react/blob/257b033fc7b0518e7b1db32ca24e2354933b9d0e/packages/react-reconciler/src/__tests__/Activity-test.js#L200 Consequently, during the mount phase,...