Michal Tecza

Results 17 comments of Michal Tecza

I created a ticket for the issue mentioned above: https://github.com/TanStack/router/issues/1156

@tannerlinsley @schiller-manuel Do you have any guesses on what might be causing this? I'd be happy to work on a fix if you could point me in a right direction.

Would it allow achieving similar experience as `fzf-tmux -p`? I have this particular scenario in mind: Inside pane (A) run a command that opens `fzf` in a floating pane (B),...

@malko `01/05/1990` is a perfectly fine value to be entered into the input of type "date" in Chrome (and other browsers) as long as your browser locale matches this date...

Here's the important piece of information straight from [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date) is this: ![image](https://github.com/capricorn86/happy-dom/assets/5398733/3980e747-6a4c-4c46-822f-b591c21f1be9)

> even if you can enter date in the "dd/MM/yyyy" format with keyboard in the UI, it should be > `event.target.value 1980-05-01` This is exactly what's not working :) I'm...

Here's a simple reproduction of the issue: ```ts const handleChange = vi.fn() const { user } = render( handleChange(e.target.value)} /> ) const input = screen.getByTitle('birthday') await user.click(input) await waitFor(() =>...