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

    Interface RoomsLabels

    Combined labels interface for the RoomsList component.

    Groups all label categories so consumers can customize any text from a single labels prop. Each sub-object is partial, so only the labels that need changing must be specified.

    <RoomsList
    labels={{
    entity: { entity: 'Session', entityPlural: 'Sessions' },
    card: { startButton: 'Launch' },
    searchBar: { searchPlaceholder: 'Find sessions...' },
    }}
    />
    interface RoomsLabels {
        card: Partial<RoomCardLabels>;
        createDialog: Partial<CreateRoomDialogLabels>;
        entity: Partial<RoomsEntityLabels>;
        searchBar: Partial<RoomSearchBarLabels>;
        settingsDialog: Partial<RoomSettingsDialogLabels>;
    }
    Index

    Properties

    card: Partial<RoomCardLabels>

    Room card labels

    createDialog: Partial<CreateRoomDialogLabels>

    Create dialog labels

    entity: Partial<RoomsEntityLabels>

    Entity terminology labels for rebranding "Room"

    searchBar: Partial<RoomSearchBarLabels>

    Search bar labels

    settingsDialog: Partial<RoomSettingsDialogLabels>

    Settings dialog labels