@liveblocks/core
Advanced tools
Changelog
2.13.0
@liveblocks/react-ui
Composer
which appears when selecting text. It’s
enabled by default in the default components and can also be custom built with
new primitives (Composer.FloatingToolbar
and Composer.MarkToggle
) and new
APIs (const { marks, toggleMark } = useComposer()
).--lb-line-height
token to control the line height of main elements
(e.g. comment bodies in comments and composers).Timestamp
export mistakenly added to @liveblocks/react-ui
, it
should be imported from @liveblocks/react-ui/primitives
instead.Changelog
2.12.2 (Not published yet)
@liveblocks/zustand
Changelog
2.12.1
@liveblocks/react-ui
Thread
and Comment
component to be used outside of the
RoomProvider
component.Changelog
2.12.0
This release adds support for tracking synchronization status of pending local changes for any part of Liveblocks. Whether you use Storage, Text Editors, Threads, or Notifications.
If the client’s sync status is synchronized
, it means all local pending
changes have been persisted by our servers. If there are pending local changes
in any part of Liveblocks you’re using, then the client’s sync status will be
synchronizing
.
Also, we’re introducing a way to prevent browser tabs from being closed while
local changes are not yet synchronized. To opt-in to this protection, enable
preventUnsavedChanges
option on the client:
<LiveblocksProvider preventUnsavedChanges />
createClient({ preventUnsavedChanges: true })
@liveblocks/client
client.getSyncStatus()
method.preventUnsavedChanges
.ToImmutable<T>
helper type.@liveblocks/react
useSyncStatus
that can be used to tell whether Liveblocks is synchronizing local changes to
the server. Useful to display a "Saving..." spinner in your application, when
used with useSyncStatus({ smooth: true })
.useStorageStatus
is now deprecated in favor of useSyncStatus
.@liveblocks/react-ui
preventUnsavedChanges
option is
set.@liveblocks/react-lexical
useIsEditorReady
which can be used to show a skeleton UI before
the editor has received the initial text from the server.useEditorStatus
is now deprecated in favor of useIsEditorReady
(or
useSyncStatus
).