Reid Barber

Results 84 comments of Reid Barber

Thanks for the feedback! > Even if the placeholder indicates "dd.mm.yyyy", it does not accept a leading zero Wouldn't the leading zero get cleared on blur of the segment anyway?...

> I think this would be good behavior, but probably needs some more discussion. I think this would only make sense if the ~field~ segment has just been cleared, or...

@devongovett Maybe we can differentiate `null` and `undefined`? Or handle the default values of color swatch and color picker differently.

@snowystinger 2 seemed reasonable and performance was noticeably improved. I just tried 1 and it seems to behave the same as 2. I think this is a bug in 7.0:...

Looks like when parsing the value, we're replacing `#0000` (the default value) with `#00000000`, which sets the alpha channel to 0: https://github.com/adobe/react-spectrum/blob/87d1e199b1575bf6745220bb807a498809de41d3/packages/%40react-stately/color/src/Color.ts#L240 This doesn't make much sense since `#000000` will...

After a second look, I think the parsing `#0000` to `#00000000` should be expected, and we should update the default value to have a full alpha channel.

Drag previews are working for me in Safari 16.5.2 (MacOS Ventura 13.4.1 - Intel), so may be version-specific.

Is this not already supported? https://github.com/ast-grep/ast-grep/discussions/715#discussioncomment-7902065

It appears that since the 2.0 release, `window` is no longer available in Deno, based on what I found in the [migration guide](https://docs.deno.com/runtime/reference/migration_guide/) and [lint rules](https://docs.deno.com/lint/rules/no-window/).