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

    Variable DEFAULT_ENTITY_LABELSConst

    DEFAULT_ENTITY_LABELS: RoomsEntityLabels = ...

    Default entity terminology labels.

    Use this as a base for creating domain-specific entity labels. All components that reference the entity type (dialog titles, empty states, button text) derive their defaults from these labels via factory functions.

    import { DEFAULT_ENTITY_LABELS } from '@hiyve/react-rooms';

    // Use defaults for standard "Room" terminology
    const labels = DEFAULT_ENTITY_LABELS;

    // Override for sessions
    const sessionLabels = { ...DEFAULT_ENTITY_LABELS, entity: 'Session', entityPlural: 'Sessions' };