Releases: pmndrs/uikit
Releases Β· pmndrs/uikit
v0.8.0
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)
).
v0.7.0
uikit v0.7.0
Performance
- drastically increased performance for large numbers of elements by reducing unnecessary matrix multiplications and scene traversals
- improved raycasting performance
Breaking Changes
- for uikit vanilla the pointer events properties (
pointerEvents
,pointerEventsType
,pointerEventsOrder
) are not automatically propagated throughout the UI. If necessary, propagate them manually by providing theelement.internals.pointerEventsProperties
to the default properties when creating a child ofelement
(e.g.new Container({...}, element.internals.pointerEventsProperties)
).
v0.6.0
v0.5.0
uikit v0.5.0
Features
- draggable scroll bar
Fixes
- useMeasureText never loading the font
- make
<Portal>
usable in XR
Breaking Changes
- drag to scroll is disabled when using the mouse to mimic typical browser interactions
v0.4.0
uikit v0.4.0
dpr
property for portals- improved Portal responsiveness and decoupling between parent scene
Video
component in default kit withVideoControls
- percentage in transforms (e.g.
transformTranslateX="-50%"
) - alignments to react-three/xr
- clipping plane improvements (now doesn't lag behind when moving panels)
- bug fixes
Breaking Changes
- due to popular demand
ref.current.setStyle
now merges with the current style instead of replacing it - pointerEvents is set to
"auto"
on the root by default, to align uikit closer to css wherepointerEvents: auto
is the default. To keep the old behavior, set pointerEvents="listener" on the root / fullscreen component.
v0.3.0
uikit v0.3.0
- support for display: none
- support for visibility: hidden
- Preview and htmlToCode allow to convert html+css+shadcn+tailwind to uikit code
- expose ref.current.getStyle
Breaking Changes
all breaking changes are made to make uikit more compatible with html/css
- cli now installs into subfolders for each kit to allow mixing kits #27
- property
border
changed toborderWidth
- property
horizontalAlign
of text changed totextAlign
- lineHeight is now receive absolute values and percentages instead of multipliers (lineHeight
1.3
changes to"130%"
)
v0.2.0
v0.2.0 upgrades to yoga 3.0 π
@react-three/uikit now uses web defaults making transitions between html/css easier:
Breaking Changes
- flexDirection default is now
row
- flexShrink default is now
1
- alignContent default is now
stretch
Migration
Explicitly set flexDirection
to column
where it was previously omitted. Set flexShrink
to 0
where content is shrunken.
All examples are already migreated.