Teameh
Teameh
You use the element that's being clicked to see if you should show the menu right? But since because the element is a webview, the right menu items are never...
I think I would either create an alternative delegate method: ``` @objc optional func didDragHorizontalToReorder(inRightDirection right: Bool, maxX: CGFloat, minX: CGFloat) ``` Or introduce enum: ``` @objc public enum DragDirection:...
Yeah that makes sense :)
Thanks, yeah that resolved my issue. I'm a bit busier than a month ago but I'll see what I can come up with. > Regarding #1: The consumer has control...
- [ ] Move `role="combobox" to wrapper - [ ] Add `textbox` role to input - [ ] Add `listbox` role to menu - [ ] Implement required [listbox](https://www.w3.org/TR/wai-aria/roles#listbox) elements...
> However, from my understanding of your question, you're not as concerned with how a value is encoded/decoded, but whether the generated code allows different typealiases of e.g. String to...
Check. Thanks. I think there's also a distinction to be made between Swift native supported types like `URL` and unsupported types like `email`. But yeah, validation on these types sounds...
I've cleaned up a little bit more. Why do we have to declare these 4 Sendable? Removing this compiles and runs the tests fine for my using 6.0 toolchain. ```...
@mat1th what's the current status on this? Ready for re-review, or do you need to give it another thought?