mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* Added CountdownEdit view * Added countdowns UI element * . * Fixed migration of countdowns * . * . * style countdown interface, application and ownership dialog * fix buttons height in ownsership selection * . * Added coloured pips to UI cooldowns to signify player visibility if not every player has it * . * Added max-height and overflow * Sync countdown current with max when equal (#1221) * Update module/applications/ui/countdownEdit.mjs Co-authored-by: Carlos Fernandez <CarlosFdez@users.noreply.github.com> * . --------- Co-authored-by: moliloo <dev.murilobrito@gmail.com> Co-authored-by: Carlos Fernandez <CarlosFdez@users.noreply.github.com>
28 lines
774 B
JavaScript
28 lines
774 B
JavaScript
export const displayDomainCardsAsCard = 'displayDomainCardsAsCard';
|
|
export const narrativeCountdown = {
|
|
simple: 'countdown-narrative-simple',
|
|
position: 'countdown-narrative-position'
|
|
};
|
|
export const encounterCountdown = {
|
|
simple: 'countdown-encounter-simple',
|
|
position: 'countdown-encounter-position'
|
|
};
|
|
|
|
export const compendiumBrowserDefault = {
|
|
position: 'compendium-browser-default-position'
|
|
};
|
|
|
|
export const compendiumBrowserNoFolder = {
|
|
position: 'compendium-browser-no-folder-position'
|
|
};
|
|
|
|
export const compendiumBrowserLite = {
|
|
position: 'compendium-browser-lite-position'
|
|
};
|
|
|
|
export const itemAttachmentSource = 'attachmentSource';
|
|
|
|
export const userFlags = {
|
|
welcomeMessage: 'welcome-message',
|
|
countdownMode: 'countdown-mode'
|
|
};
|