Signal drop!
Relay (operand.online) is unreachable.
Usually, a dropped signal means an upgrade is happening. Hold on!
Sorry, no connección.
Hang in there while we get back on track
gram: docs
> ./packages/core/src/layout-engine/inlineSdtWidgets.ts
/**
* Inline SDT widget metadata carried by a painted text run.
*/
export interface InlineSdtWidget {
kind: 'checkbox';
/** Stable per-document id derived from the ProseMirror node position. */
groupId: string;
/** ProseMirror position of the inline SDT node. */
pos: number;
/** Word tag value (`w:tag`). */
tag?: string;
/** Word alias value (`w:alias`). */
alias?: string;
/** Live checkbox glyph state. */
checked?: boolean;
}