Malte Hecht
Malte Hecht
Would be great to see this merged 👍
I was wondering the same thing and I think you can. In the `index.js` is a `REGISTRY` environment variable, so I imagine the following should work (I havent tried yet):...
The name `WithTypename` is a bit misleading. Maybe it should be called `WithTypeNameAndOptionalFields` or something like that.
> @maltesa, yes we could name it `PartialWithTypeName` (to stay aligned with TS lib's `Partial` naming) That's sounds perfect 👌
> This worked for me on the `DialogContent` component: > > ```tsx > onPointerDownOutside={(e) => { > // don't dismiss dialog when clicking inside the toast > if ( >...
yes, that would be great. Specifying multiple devices would be enough for me. E. g.: ```yaml devices: - /dev/input/event0 - /dev/input/event19 ```
As a workaround I created a simple script updates the waybind config with the last keyboard connected: https://gist.github.com/maltesa/036e594466cf905548ac69efc8e6eefd If an external keyboard is connected, it should activate waybind for that...
@arnarg Thank you, that's awesome!
Would be great if that could be solved. Currently I'm working around the issue like this: ```ts e.inputRef.current?.removeAttribute('readonly')} // ... /> ```