Hiyve Components - v1.0.0
    Preparing search index...

    Interface WhiteboardSymbolLibrary

    Library of symbols organized into categories and optional groups.

    • categories — map of category name → symbols in that category.
    • groups — optional top-level grouping. Each key maps to the subset of category names it contains. When provided, a group dropdown is shown at the top of the symbols popup.
    {
    categories: {
    Notes: [{ name: 'Quarter', url: '/notation/note.svg' }],
    Rests: [{ name: 'Quarter Rest', url: '/notation/rest.svg' }],
    Smileys: [{ name: 'Smile', url: '/emoji/smile.svg' }],
    },
    groups: {
    Notation: ['Notes', 'Rests'],
    Emojis: ['Smileys'],
    },
    }
    interface WhiteboardSymbolLibrary {
        categories: Record<string, WhiteboardSymbol[]>;
        defaultGroup?: string;
        groups?: Record<string, string[]>;
    }
    Index

    Properties

    categories: Record<string, WhiteboardSymbol[]>
    defaultGroup?: string

    Key into groups that the symbol sidebar should select by default when the library first loads. Leave empty to show all categories.

    groups?: Record<string, string[]>