Member Junction
    Preparing search index...

    A sticky note.

    interface WhiteboardStickyItem {
        Author: WhiteboardAuthor;
        FontFamily?: WhiteboardFontFamily;
        FontSize?: number;
        FontWeight?: WhiteboardFontWeight;
        ID: string;
        Kind: "sticky";
        Rotation?: number;
        Text: string;
        Tint?: WhiteboardStickyTint;
        W?: number;
        X: number;
        Y: number;
        Z: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Who placed the item. Drives the ownership chrome (chips / violet vs slate-amber).

    Font family key (mapped to token-friendly stacks in CSS); omitted = sans.

    FontSize?: number

    Curated font size (see WHITEBOARD_FONT_SIZES); omitted = the CSS default.

    Font weight; omitted = the kind's CSS default.

    ID: string

    Stable item id (e.g. sticky-3) — referenced by connectors, deltas and agent tools.

    Kind: "sticky"
    Rotation?: number

    Slight playful tilt, in degrees.

    Text: string

    User-palette tint; ignored for agent stickies (always violet).

    W?: number

    Width in px; defaults to WHITEBOARD_DEFAULTS.StickyW when omitted.

    X: number
    Y: number
    Z: number

    Render order (higher renders on top). Assigned by the engine.