5cc6fc7d9b
* the only important thing is that it is not positioned within elements with display: none * I think we can treat the existence of the modal to be a kind of "precondition" that has to be met for the component to be used
10 lines
426 B
TypeScript
10 lines
426 B
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
export const nightModeKey = Symbol("nightMode");
|
|
export const disabledKey = Symbol("disabled");
|
|
|
|
export const buttonToolbarKey = Symbol("buttonToolbar");
|
|
export const buttonGroupKey = Symbol("buttonGroup");
|
|
export const dropdownKey = Symbol("dropdown");
|
|
export const modalsKey = Symbol("modals");
|