uikit v0.8.0
Alongside a few bug fixes, this release has some small UX improvements and a small but important breaking change for all vanilla uikit users.
Features
- double click to select word in input
- text selection supporting dragging outside
- more material properties that can be changed per UI element (depthWrite, depthTest, renderOrder)
Breaking Changes
- for uikit vanilla
element.internals. pointerEventsProperties
was renamed toelement.internals.defaultProperties
- for uikit vanilla the depthTest property are not automatically propagated throughout the UI. If necessary, propagate them manually by providing the
element.internals.defaultProperties
to the default properties when creating a child ofelement
(e.g.new Container({...}, element.internals.defaultProperties)
).