Dan Wood

Results 57 comments of Dan Wood

Also, should mention this is Safari 16.3 on macOS.

Although testing on iOS also doesn't work. I think it works on beta because the popover doesn't close

@mattfelten You can do something like this now: ```tsx import { RadioGroup, RadioGroupProps } from "@headlessui/react"; function MyRadioGroup(props: RadioGroupProps) { return ; } ```

Hi @ide, thanks for the response. I understand that these are good rules for your team, but I am concerted because this ruleset is the de facto set to use...

I think it would be prudent to be putting this rule in place now before forget becomes a thing. Otherwise you risk people ignoring it and then not being in...

@williaster So after some investigation it looks like most of the time is being spent in `pathElement.getPointAtLength(distance)` https://github.com/airbnb/visx/blob/master/packages/visx-shape/src/util/getSplitLineSegments.ts#L74 This is a very expensive call (~0.2ms-0.4ms) that is called in a...

So I was wondering; since we already have the path, can't we chop the path up at each point the segment changes? We need to combine them at first to...

I have tried adjusting the sample rate. At a rate of 2 I would say you get a mostly acceptable quality, but there is noticeable degradation of the curve. Anything...

I can confirm that rounding the `x` and `y` position decimals makes little to no performance difference.

Yeah, that's the plan. Already implementing it in our codebase right now. I can share the end-result when I'm done. It could be exposed as a new shape, like ``...