useSharedStyleBinding
useSharedStyleBinding(kind) exposes the selected nodes' shared-style reference, compatible local style definitions, and undo-aware bind/detach actions.
ts
import { useSharedStyleBinding } from '@open-pencil/vue'
const fillStyle = useSharedStyleBinding('fill')
fillStyle.bind('1:120')
fillStyle.unbind()Supported kinds are fill, stroke, text, effect, and grid.
activerequires every selected node to support the requested style domain.styleIdis the shared ID,null, orMIXED.styleslists compatible local definitions imported with the document.bind(id)applies supported style properties and the reference in one undo step.unbind()keeps the resolved properties and removes only the reference.- Multi-selection changes are grouped into one undo entry.
Manual edits to fills, strokes, supported text properties, effects, or layout grids automatically detach the matching style reference. Other style domains remain bound.
OpenPencil currently consumes styles already present in a document. Creating, renaming, publishing, and synchronizing style libraries is outside this composable's scope.