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

    Variable RoomSettingsDialogConst

    RoomSettingsDialog: NamedExoticComponent<RoomSettingsDialogProps> = ...

    RoomSettingsDialog provides a form for editing an existing stored room's settings.

    Displays read-only room name and link fields, with toggle switches for password, waiting room, and offline features. Only changed values are included in the updates object passed to onSave. The save button is disabled when no changes have been made or a save is in progress.

    The dialog always reflects the current room's settings when opened.

    <RoomSettingsDialog
    open={isOpen}
    room={selectedRoom}
    onClose={() => setIsOpen(false)}
    onSave={async (alias, updates) => {
    await updateRoom(alias, updates);
    setIsOpen(false);
    }}
    />