├── .github └── workflows │ ├── merge-to-main.yml │ ├── refresh-documentation.yml │ └── release.yml ├── .gitignore ├── .prettierrc ├── .vscode └── extensions.json ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── community-themes └── kiligirs-color-theory.tidy5e-theme ├── compatibility └── world-scripts │ └── README.md ├── foundry-data-path-config_example.json ├── macros └── truesight.js ├── package.json ├── prepare-dist-for-dev.js ├── public ├── fonts │ └── roboto-condensed │ │ ├── RobotoCondensed-Italic-VariableFont_wght.ttf │ │ └── RobotoCondensed-VariableFont_wght.ttf ├── images │ ├── badge_ability_dark.webp │ ├── badge_ability_dark_prof.webp │ ├── badge_ability_light.webp │ ├── badge_ability_light_prof.webp │ ├── badge_ac_dark.webp │ ├── badge_ac_light.webp │ ├── badge_ac_npc_dark.svg │ ├── badge_ac_npc_light.svg │ ├── badge_encounter_difficulty.png │ ├── badge_init_dark.webp │ ├── badge_init_light.webp │ ├── badge_inspiration_single.webp │ ├── badge_inspiration_stacked.webp │ ├── badge_level_dark.webp │ ├── badge_score_dark.webp │ ├── badge_score_light.webp │ ├── banner-character.webp │ ├── banner-encounter.jpg │ ├── denim-dark-090.png │ ├── denim065.png │ ├── facility-default-background.webp │ ├── init-badge.svg │ ├── notable-left-corner.svg │ ├── notable-right-corner.svg │ ├── parchment-texture-bottom.webp │ ├── parchment-texture-top.webp │ ├── sidebar-item-sheet.webp │ ├── texture-gray-1.webp │ ├── texture-gray-2.webp │ └── tidy-shield-large.webp ├── lang │ ├── cs.json │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── pl.json │ ├── pt-BR.json │ ├── pt.json │ ├── ru.json │ ├── ta.json │ ├── uk.json │ ├── zh-tw.json │ └── zh_Hans.json ├── module.json ├── rpg-awesome │ ├── LICENSE.md │ ├── fonts │ │ ├── rpgawesome-webfont.eot │ │ ├── rpgawesome-webfont.svg │ │ ├── rpgawesome-webfont.ttf │ │ └── rpgawesome-webfont.woff │ └── style │ │ └── rpg-awesome.min.css └── templates │ ├── empty-article-template.hbs │ ├── empty-div-template.hbs │ ├── empty-form-template-for-items.hbs │ └── empty-form-template.hbs ├── readme-assets ├── character-sheet.png ├── dark-mode.png ├── npc-sheet.png ├── patreon-logo.svg ├── quadrone-class-subclass-background-species-sheets.png ├── quadrone-container-and-spell-sheets.png ├── quadrone-equipment-sheet.png ├── quadrone-facility-feat-tattoo-sheets.png ├── quadrone-loot-sheet.png ├── quadrone-spell-sheets.png ├── quadrone-tool-and-consumable-sheets.png ├── quadrone-weapon-sheets.png ├── settings.png ├── t5e-encounter-hero.webp ├── t5e-encounter-other-states.webp ├── t5e-group-hero.webp ├── t5e-group-sidebar.webp ├── t5e-item-3up.webp ├── t5e-item-advancements.webp ├── t5e-item-equipment.webp ├── t5e-item-spells.webp ├── t5e-items-featured.webp ├── t5e-npc-edit-mode.webp ├── t5e-npc-hero.webp ├── t5e-npc-spellbook.webp ├── t5e-npc-theming.webp ├── t5e-pc-edit-mode.webp ├── t5e-pc-hero.webp ├── t5e-pc-organize.webp ├── t5e-pc-theme.webp ├── t5e-pick-sheet.webp ├── tab-selection.png ├── theme-settings.png └── vehicle-sheet.png ├── src ├── actions │ ├── longpress.svelte.ts │ ├── manage-secrets.svelte.ts │ ├── prevent-newlines.ts │ └── svelte-skip-event.svelte.ts ├── api │ ├── ApiConstants.ts │ ├── README.md │ ├── Tidy5eSheetsApi.ts │ ├── api.types.ts │ ├── config │ │ ├── ConfigApi.ts │ │ ├── action-list │ │ │ └── ActionListApi.ts │ │ ├── actor-inspiration │ │ │ └── ActorInspirationApi.ts │ │ ├── actor-item │ │ │ └── ActorItemApi.ts │ │ ├── actor-portrait │ │ │ └── ActorPortraitApi.ts │ │ ├── actor-traits │ │ │ ├── ActorTraitsApi.ts │ │ │ └── types.ts │ │ ├── exhaustion │ │ │ └── ExhaustionApi.svelte.ts │ │ ├── item-summary │ │ │ └── ItemSummaryApi.ts │ │ ├── item │ │ │ └── ItemConfigApi.ts │ │ └── spell-school │ │ │ ├── SpellSchoolApi.ts │ │ │ └── spell-school.types.ts │ ├── content │ │ ├── CustomContentBase.ts │ │ ├── HandlebarsContent.ts │ │ └── HtmlContent.ts │ ├── index.ts │ ├── svelte │ │ └── TidySvelteApi.ts │ └── tab │ │ ├── CustomTabBase.ts │ │ ├── HandlebarsTab.ts │ │ ├── HtmlTab.ts │ │ └── SvelteTab.ts ├── applications-quadrone │ ├── DocumentSheetDialog.svelte.ts │ ├── configure-sections │ │ ├── ConfigureSections.svelte │ │ ├── ConfigureSectionsApplication.svelte.ts │ │ └── configure-sections.types.ts │ └── special-traits │ │ ├── SpecialTraits.svelte │ │ └── SpecialTraitsApplication.svelte.ts ├── applications │ ├── actor-origin-summary │ │ ├── ActorOriginSummaryConfig.svelte │ │ └── ActorOriginSummaryConfigFormApplication.svelte.ts │ ├── header-control-configuration │ │ ├── WorldHeaderControlConfigurationQuadrone.svelte │ │ └── WorldHeaderControlConfigurationQuadroneApplication.svelte.ts │ ├── homebrew-settings │ │ ├── HomebrewSettings.svelte │ │ └── HomebrewSettingsApplication.svelte.ts │ ├── info-card │ │ ├── DetachedInfoCard.svelte │ │ └── DetachedInfoCardApplication.ts │ ├── journal │ │ ├── JournalEntry.svelte │ │ └── JournalEntryApplication.svelte.ts │ ├── max-prepared-spells-config │ │ ├── MaxPreparedSpellsConfig.svelte │ │ └── MaxPreparedSpellsConfigFormApplication.svelte.ts │ ├── section-config │ │ ├── DocumentTabSectionConfig.less │ │ ├── DocumentTabSectionConfig.svelte │ │ ├── DocumentTabSectionConfigApplication.svelte.ts │ │ └── section-config.types.ts │ ├── section-selector │ │ ├── SectionSelector.svelte │ │ └── SectionSelectorApplication.svelte.ts │ ├── settings │ │ ├── about │ │ │ ├── About.svelte │ │ │ └── AboutApplication.ts │ │ ├── parts │ │ │ ├── CheckboxSetting.svelte │ │ │ ├── ExhaustionSetting.svelte │ │ │ ├── ListboxSetting.svelte │ │ │ ├── NumberInputSetting.svelte │ │ │ ├── SelectSetting.svelte │ │ │ └── TextInputSetting.svelte │ │ ├── user-settings │ │ │ ├── UserSettings.svelte │ │ │ ├── UserSettings.types.ts │ │ │ ├── UserSettingsFormApplication.svelte.ts │ │ │ └── tabs │ │ │ │ ├── ActionsListSettingsTab.svelte │ │ │ │ ├── ActivitiesSettingsTabs.svelte │ │ │ │ ├── NpcSettingsTab.svelte │ │ │ │ ├── PlayerSettingsTab.svelte │ │ │ │ └── VehicleSettingsTab.svelte │ │ └── world-settings │ │ │ ├── WorldSettings.svelte │ │ │ ├── WorldSettings.types.ts │ │ │ ├── WorldSettingsFormApplication.svelte.ts │ │ │ └── tabs │ │ │ ├── CharacterWorldSettingsTab.svelte │ │ │ ├── CustomSectionsWorldSettingsTab.svelte │ │ │ ├── ExhaustionWorldSettingsTab.svelte │ │ │ ├── IconsWorldSettingsTab.svelte │ │ │ ├── ItemWorldSettingsTab.svelte │ │ │ ├── MiscWorldSettingsTab.svelte │ │ │ ├── NpcWorldSettingsTab.svelte │ │ │ ├── SheetLockWorldSettingsTab.svelte │ │ │ └── VehicleWorldSettingsTab.svelte │ ├── sheet-preferences │ │ ├── ApplyTidySheetPreferences.svelte │ │ └── ApplyTidySheetPreferencesApplication.svelte.ts │ ├── spell-source-class-assignments │ │ ├── SpellSourceClassAssignments.svelte │ │ └── SpellSourceClassAssignmentsFormApplication.svelte.ts │ ├── tab-configuration │ │ ├── SheetTabConfigurationQuadrone.svelte │ │ ├── SheetTabConfigurationQuadroneApplication.svelte.ts │ │ ├── WorldTabConfigurationQuadrone.svelte │ │ ├── WorldTabConfigurationQuadroneApplication.svelte.ts │ │ ├── parts │ │ │ ├── TabInclusion.svelte │ │ │ ├── TabVisibilityLevels.svelte │ │ │ └── TabbedTabConfig.svelte │ │ ├── tab-configuration-functions.ts │ │ └── tab-configuration.types.ts │ ├── tab-selection │ │ ├── ClassicTabSelectionFormApplication.svelte.ts │ │ └── TabSelection.svelte │ └── theme │ │ ├── ThemeSettingColorArticle.svelte │ │ ├── ThemeSettingColorFormGroupQuadrone.svelte │ │ ├── ThemeSettingSheetMenu.svelte │ │ ├── ThemeSettingsFormApplication.svelte.ts │ │ ├── ThemeSettingsQuadrone.svelte │ │ ├── ThemeSettingsQuadroneApplication.svelte.ts │ │ ├── ThemeSettingsSheet.svelte │ │ └── parts │ │ ├── ImagePickerButton.svelte │ │ └── ImportButton.svelte ├── attachments │ ├── input-attachments.svelte.ts │ └── visibility-observer.svelte.ts ├── components │ ├── accordion │ │ ├── Accordion.svelte │ │ └── AccordionItem.svelte │ ├── action-bar │ │ ├── FilterButtonMenuQuadrone.svelte │ │ └── SortButtonWithMenuQuadrone.svelte │ ├── actor-link-indicator │ │ └── ActorLinkIndicator.svelte │ ├── bar │ │ ├── Bar.svelte │ │ ├── HpBar.svelte │ │ ├── ResourceBar.svelte │ │ └── ResourceWithBar.svelte │ ├── button-menu │ │ ├── ButtonMenu.svelte │ │ ├── ButtonMenuCommand.svelte │ │ ├── ButtonMenuDivider.svelte │ │ ├── ButtonMenuItem.svelte │ │ ├── button-menu-position.ts │ │ ├── button-menu-types.ts │ │ └── button-menu.less │ ├── buttons │ │ ├── ButtonWithOptionPanel.svelte │ │ ├── FilterToggle.svelte │ │ └── ToggleButton.svelte │ ├── content-concealment │ │ ├── ContentConcealer.svelte │ │ └── UnidentifiedNotice.svelte │ ├── editor │ │ ├── SheetEditorV2.less │ │ └── SheetEditorV2.svelte │ ├── expandable │ │ └── ExpandableContainer.svelte │ ├── filigree-card │ │ └── FiligreeCard.svelte │ ├── filter │ │ ├── FilterButton.svelte │ │ ├── FilterToggleButton.svelte │ │ ├── PinnedFilterToggle.svelte │ │ ├── PinnedFilterToggles.svelte │ │ └── _filter.less │ ├── form-group │ │ ├── FormGroup.svelte │ │ ├── FormGroupBuilderClassic.svelte │ │ ├── FormGroupClassic.svelte │ │ ├── FoundryFormInput.svelte │ │ └── TidyFormInput.svelte │ ├── icon │ │ └── Dnd5eIcon.svelte │ ├── info-card │ │ ├── AttachedInfoCard.svelte │ │ ├── Cards │ │ │ ├── ActivityInfoCard.svelte │ │ │ ├── DefaultItemCard.svelte │ │ │ ├── EffectInfoCard.svelte │ │ │ ├── InventoryItemCard.svelte │ │ │ └── SpellItemCard.svelte │ │ ├── Parts │ │ │ └── ItemCardPills.svelte │ │ └── info-card.svelte.ts │ ├── inputs │ │ ├── Checkbox.svelte │ │ ├── CheckboxQuadrone.svelte │ │ ├── ContentEditableFormField.svelte │ │ ├── DocumentTag.svelte │ │ ├── DtypeInput.svelte │ │ ├── InlineTextDropdownList.svelte │ │ ├── NumberInput.svelte │ │ ├── NumberInputQuadrone.svelte │ │ ├── Select.svelte │ │ ├── SelectOptions.svelte │ │ ├── SelectQuadrone.svelte │ │ ├── StringTags.svelte │ │ ├── TextInput.svelte │ │ └── TextInputQuadrone.svelte │ ├── item-grid │ │ └── GridPaneFavoriteIcon.svelte │ ├── item-list │ │ ├── ActiveEffectsMarker.svelte │ │ ├── ActivityUseButton.svelte │ │ ├── ActivityUses.svelte │ │ ├── EffectSummary.svelte │ │ ├── InlineActivitiesList.svelte │ │ ├── InlineFavoriteIcon.svelte │ │ ├── ItemCreateButton.svelte │ │ ├── ItemFilterLayoutToggle.svelte │ │ ├── ItemImage.svelte │ │ ├── ItemName.svelte │ │ ├── ItemSummary.svelte │ │ ├── ItemTableFooter.svelte │ │ ├── ItemUseButton.svelte │ │ ├── ItemUses.svelte │ │ ├── controls │ │ │ ├── ActionFilterOverrideControl.svelte │ │ │ ├── ActorEffectToggleControl.svelte │ │ │ ├── AttuneControl.svelte │ │ │ ├── DeleteOrOpenActivity.svelte │ │ │ ├── EffectFavoriteControl.svelte │ │ │ ├── EquipControl.svelte │ │ │ ├── ItemControl.svelte │ │ │ ├── ItemDeleteControl.svelte │ │ │ ├── ItemDuplicateControl.svelte │ │ │ ├── ItemEditControl.svelte │ │ │ ├── ItemFavoriteControl.svelte │ │ │ ├── RechargeControl.svelte │ │ │ ├── SectionActionHeaderControl.svelte │ │ │ └── SpellOpenCastActivityControl.svelte │ │ ├── item-table.less │ │ ├── v1 │ │ │ ├── EffectTableRow.svelte │ │ │ ├── ItemTable.svelte │ │ │ ├── ItemTableCell.svelte │ │ │ ├── ItemTableColumn.svelte │ │ │ ├── ItemTableHeaderRow.svelte │ │ │ └── ItemTableRow.svelte │ │ └── v2 │ │ │ └── ItemTableRowV2.svelte │ ├── item-summary │ │ ├── ItemSummaryCommandButton.svelte │ │ └── ItemSummaryCommandButtonList.svelte │ ├── layout │ │ ├── DelimitedTruncatedContent.svelte │ │ ├── HorizontalLineSeparator.svelte │ │ └── VerticalLineSeparator.svelte │ ├── listbox │ │ ├── Listbox.svelte │ │ ├── SelectionListbox.svelte │ │ ├── SelectionListboxToolbar.svelte │ │ ├── SortingListbox.svelte │ │ └── listbox.less │ ├── notice │ │ └── Notice.svelte │ ├── pips │ │ ├── Pips.svelte │ │ ├── SpellPip.svelte │ │ ├── SpellPips.svelte │ │ └── pips.less │ ├── properties │ │ └── PropertyTag.svelte │ ├── spellbook │ │ ├── ConcentrationOverlayIcon.svelte │ │ ├── SpellComponents.svelte │ │ ├── SpellPrepareControl.svelte │ │ ├── SpellSlotConfigButton.svelte │ │ ├── SpellSlotManagement.svelte │ │ ├── SpellSlotUses.svelte │ │ ├── SpellbookClassFilter.svelte │ │ ├── SpellbookFooter.svelte │ │ ├── SpellbookGrid.svelte │ │ └── SpellbookList.svelte │ ├── table-quadrone │ │ ├── TidyActivitySummary.svelte │ │ ├── TidyActivityTableRow.svelte │ │ ├── TidyAdvancementTableRow.svelte │ │ ├── TidyEffectSummary.svelte │ │ ├── TidyEffectTableRow.svelte │ │ ├── TidyInlineActivitiesList.svelte │ │ ├── TidyItemSummary.svelte │ │ ├── TidyItemTableRow.svelte │ │ ├── TidyTable.svelte │ │ ├── TidyTableCell.svelte │ │ ├── TidyTableHeaderCell.svelte │ │ ├── TidyTableHeaderRow.svelte │ │ ├── TidyTableRow.svelte │ │ ├── TidyTableToggleIcon copy.svelte │ │ ├── TidyTableToggleIcon.svelte │ │ └── table-buttons │ │ │ ├── ActionsTabToggleButton.svelte │ │ │ ├── ChooseAButton.svelte │ │ │ ├── DeleteButton.svelte │ │ │ ├── DeleteEncounterEntityButton.svelte │ │ │ ├── EditButton.svelte │ │ │ ├── EffectToggleButton.svelte │ │ │ ├── EncounterAddAsCombatPlaceholder.svelte │ │ │ ├── EncounterCombatInclusionToggle.svelte │ │ │ ├── EncounterCombatVisibilityToggle.svelte │ │ │ ├── EquipButton.svelte │ │ │ ├── MenuButton.svelte │ │ │ ├── OpenActivityButton.svelte │ │ │ ├── SpellButton.svelte │ │ │ ├── TableHeaderButton.svelte │ │ │ └── table.types.ts │ ├── table │ │ ├── TidyTable.svelte │ │ ├── TidyTableCell.svelte │ │ ├── TidyTableHeaderCell.svelte │ │ ├── TidyTableHeaderRow.svelte │ │ ├── TidyTableRow.svelte │ │ ├── TidyTableToggleIcon.svelte │ │ └── tidy-table.less │ ├── tabs │ │ ├── TabContent.svelte │ │ ├── TabContents.svelte │ │ ├── Tabs.svelte │ │ ├── UnderlinedTabStrip.less │ │ ├── UnderlinedTabStrip.svelte │ │ └── VerticalTabs.svelte │ ├── toggles │ │ ├── ConditionToggle.svelte │ │ ├── FieldToggle.svelte │ │ ├── PillSwitch.svelte │ │ ├── PropertyToggle.svelte │ │ ├── TidySwitch.svelte │ │ └── _toggles.less │ ├── trackers │ │ ├── InlineItemQuantityTracker.svelte │ │ └── InlineQuantityTracker.svelte │ ├── utility-bar │ │ ├── Search.svelte │ │ ├── UtilityToolbar.svelte │ │ ├── UtilityToolbarCommand.svelte │ │ └── types.ts │ └── utility │ │ └── InlineSvg.svelte ├── constants.ts ├── context-menu │ ├── FloatingContextMenu.ts │ ├── context-menu.types.ts │ ├── tidy5e-active-effect-context-menu-quadrone.ts │ ├── tidy5e-active-effect-context-menu.ts │ ├── tidy5e-activities-context-menu-quadrone.ts │ ├── tidy5e-activities-context-menu.ts │ ├── tidy5e-context-menu.ts │ ├── tidy5e-encounter-context-menu-quadrone.ts │ ├── tidy5e-encounter-context.menu.ts │ ├── tidy5e-encounter-placeholder-context-menu.ts │ ├── tidy5e-facility-context-menu.ts │ ├── tidy5e-group-context-menu-quadrone.ts │ ├── tidy5e-group-context-menu.ts │ ├── tidy5e-item-context-menu-quadrone.ts │ ├── tidy5e-item-context-menu.ts │ ├── tidy5e-journal-context-menu.ts │ ├── tidy5e-keyed-favorite-context-menu.ts │ └── tidy5e-section-context-menu-quadrone.ts ├── dnd5e 5.2 compatibility.md ├── events │ ├── clickOutside.svelte.ts │ └── custom-event-types.d.ts ├── features │ ├── actions │ │ └── actions.svelte.ts │ ├── activities │ │ └── activities.ts │ ├── attribute-pins │ │ └── AttributePins.ts │ ├── caching │ │ └── ItemTableToggleCacheService.ts │ ├── combat │ │ └── CombatantSettings.ts │ ├── conditions-and-effects │ │ └── ConditionsAndEffects.ts │ ├── containers │ │ └── Container.ts │ ├── drag-and-drop │ │ └── drag-and-drop.ts │ ├── enrichers │ │ └── Enrichers.ts │ ├── exhaustion │ │ ├── exhaustion.ts │ │ └── exhaustion.types.ts │ ├── expand-collapse │ │ ├── ExpandCollapseService.svelte.ts │ │ ├── ExpansionTracker.svelte.ts │ │ └── InlineToggleService.svelte.ts │ ├── facility │ │ └── facility.ts │ ├── filtering │ │ └── ItemFilterService.svelte.ts │ ├── item │ │ └── ItemContext.ts │ ├── journal │ │ └── JournalQuadrone.svelte.ts │ ├── notifications │ │ └── TidyNotificationsManager.ts │ ├── properties │ │ ├── ItemProperties.svelte.ts │ │ └── properties.types.ts │ ├── rarity-colors │ │ └── RarityColors.ts │ ├── reactivity │ │ ├── CoarseReactivityProvider.svelte.ts │ │ └── reactivity.types.ts │ ├── ready-hooks.ts │ ├── search │ │ └── search.svelte.ts │ ├── sections │ │ ├── CharacterSheetSections.ts │ │ ├── GroupSheetSections.ts │ │ ├── Inventory.ts │ │ ├── ItemVisibility.ts │ │ ├── NpcSheetSections.ts │ │ ├── SectionActions.ts │ │ ├── SheetSections.ts │ │ └── sections.types.ts │ ├── sheet-header-controls │ │ ├── ImportSheetControl.ts │ │ └── header-controls.ts │ ├── sheet-pins │ │ └── SheetPinsProvider.ts │ ├── spell-school │ │ └── SpellSchool.ts │ ├── user-preferences │ │ ├── SheetPreferencesService.ts │ │ ├── UserPreferencesService.ts │ │ └── user-preferences.types.ts │ └── visibility-levels │ │ └── VisibilityLevels.ts ├── foundry │ ├── TidyFlags.ts │ ├── TidyFlags.types.ts │ ├── TidyHooks.ts │ ├── TidyHooks.types.ts │ ├── config.types.ts │ ├── dnd5e.dataModels.fields.types.d.ts │ ├── dnd5e.types.ts │ ├── foundry-adapter.ts │ ├── foundry-and-system.d.ts │ ├── foundry.data.fields.types.d.ts │ └── foundry.types.ts ├── integration │ ├── README.md │ ├── integration-classes.ts │ ├── integration.ts │ ├── modules │ │ ├── CustomCharacterSheetsModuleIntegration.ts │ │ ├── DndTashasCauldron │ │ │ ├── DndTashasCauldron.ts │ │ │ ├── ItemTattooDetailsQuadroneTab.svelte │ │ │ └── TattooSheetQuadrone.svelte │ │ ├── Drakkenheim │ │ │ ├── DrakkenheimContaminationTabClassic.less │ │ │ ├── DrakkenheimCore.ts │ │ │ ├── DrakkenheimCoreConstants.ts │ │ │ ├── DrakkenheimCoreContaminationTab.svelte │ │ │ ├── MonstersOfDrakkenheim.ts │ │ │ └── SebastianCrowesGuideToDrakkenheim.ts │ │ ├── McdmClassBundle │ │ │ ├── McdmClassBundle.ts │ │ │ ├── McdmClassBundleConstants.ts │ │ │ ├── McdmPowerDetailsTab.svelte │ │ │ ├── McdmPowerSheet.svelte │ │ │ ├── McdmPowerSpecialtyColumn.svelte │ │ │ ├── McdmPowersTab.less │ │ │ ├── McdmPowersTab.svelte │ │ │ └── McdmPowersTables.svelte │ │ └── PopoutModuleIntegration.ts │ ├── system │ │ └── TidyCustomSectionsInDefaultItemSheetIntegration.ts │ └── third-party │ │ ├── Coloris.svelte.ts │ │ └── coloris.less ├── keybindings │ └── keybind-init.ts ├── less │ ├── classic │ │ ├── classic.less │ │ ├── compatibility │ │ │ ├── _apps-active-effects.less │ │ │ ├── _apps-items-lists.less │ │ │ └── _tabs.less │ │ ├── components │ │ │ ├── accordion.less │ │ │ ├── info-card.less │ │ │ └── tabs.less │ │ └── partials │ │ │ ├── _actor.less │ │ │ ├── _application-shell.less │ │ │ ├── _buttons.less │ │ │ ├── _colors.less │ │ │ ├── _forms.less │ │ │ ├── _items.less │ │ │ ├── _layout.less │ │ │ ├── _reset-v2.less │ │ │ └── _settings.less │ ├── floating-context-menu.less │ ├── quadrone │ │ ├── actors.less │ │ ├── apps.less │ │ ├── character-parts │ │ │ ├── favorites.less │ │ │ ├── tab-bastion.less │ │ │ ├── tab-biography.less │ │ │ └── tab-effects.less │ │ ├── character.less │ │ ├── components.less │ │ ├── components │ │ │ ├── action-bar.less │ │ │ ├── buttons.less │ │ │ ├── collapsible-header-section.less │ │ │ ├── configurable-source.less │ │ │ ├── filigrees.less │ │ │ ├── info-card.less │ │ │ ├── inputs.less │ │ │ ├── item-descriptions.less │ │ │ ├── layout.less │ │ │ ├── listboxes.less │ │ │ ├── meters.less │ │ │ ├── pills.less │ │ │ ├── pins.less │ │ │ ├── pips.less │ │ │ ├── separators.less │ │ │ ├── tabs.less │ │ │ ├── text.less │ │ │ ├── toggles.less │ │ │ └── trackers.less │ │ ├── dialogs.less │ │ ├── editors.less │ │ ├── encounter.less │ │ ├── forms.less │ │ ├── group.less │ │ ├── inventory.less │ │ ├── items.less │ │ ├── npc.less │ │ ├── reset.less │ │ ├── sheets.less │ │ ├── tables.less │ │ ├── tooltips.less │ │ ├── typography.less │ │ └── vehicle.less │ ├── shared │ │ └── dnd5e2-ports.less │ ├── tidy5e.less │ ├── util.less │ ├── variables-quadrone.less │ └── variables.less ├── main.svelte.ts ├── migrations │ ├── BulkMigrations.svelte │ ├── BulkMigrationsApplication.ts │ ├── MigrationTally.ts │ ├── migration-selection │ │ ├── MigrationSelection.svelte │ │ ├── MigrationSelectionApplication.svelte.ts │ │ └── migration-selection.types.ts │ ├── migration.types.ts │ ├── v10 │ │ ├── JournalEntryClassicToJournalEntryQuadrone.svelte │ │ └── journal-entry-classic-to-journal-entry-quadrone.ts │ └── v3 │ │ ├── CcssToTidyMigration.svelte │ │ └── ccss-to-tidy.ts ├── mixins │ ├── DragAndDropBaseMixin.ts │ ├── SvelteApplicationMixin.svelte.ts │ ├── Tidy5eActorSheetBaseMixin.ts │ └── TidyDocumentSheetMixin.svelte.ts ├── runtime │ ├── ActorItemRuntime.ts │ ├── ActorPortraitRuntime.ts │ ├── ActorSheetQuadroneRuntime.svelte.ts │ ├── ActorSheetRuntime.svelte.ts │ ├── HandlebarsTemplateRenderer.ts │ ├── ItemSummaryRuntime.ts │ ├── action-list │ │ └── ActionListRuntime.ts │ ├── actor-traits │ │ └── CustomActorTraitsRuntime.ts │ ├── actor │ │ ├── ActorInspirationRuntime.svelte.ts │ │ ├── CharacterSheetClassicRuntime.svelte.ts │ │ ├── CharacterSheetQuadroneRuntime.svelte.ts │ │ ├── CharacterSheetQuadroneSidebarRuntime.svelte.ts │ │ ├── EncounterSheetClassicRuntime.svelte.ts │ │ ├── EncounterSheetQuadroneRuntime.svelte.ts │ │ ├── GroupSheetClassicRuntime.svelte.ts │ │ ├── GroupSheetQuadroneRuntime.svelte.ts │ │ ├── NpcSheetClassicRuntime.svelte.ts │ │ ├── NpcSheetQuadroneRuntime.svelte.ts │ │ ├── VehicleSheetClassicRuntime.svelte.ts │ │ └── VehicleSheetQuadroneRuntime.svelte.ts │ ├── content │ │ └── CustomContentManager.ts │ ├── header-controls │ │ └── HeaderControlsRuntime.ts │ ├── item │ │ ├── ColumnsLoadout.svelte.ts │ │ ├── ItemFilterRuntime.svelte.ts │ │ ├── ItemSheetQuadroneRuntime.svelte.ts │ │ ├── ItemSheetRuntime.ts │ │ ├── ItemSortRuntime.svelte.ts │ │ ├── TabDocumentItemTypesRuntime.ts │ │ ├── default-item-filters.ts │ │ ├── default-item-sorts.ts │ │ ├── item-sheet-tabs.ts │ │ └── item.types.ts │ ├── runtime-init.ts │ ├── tab │ │ └── TabManager.ts │ ├── tables │ │ ├── ActivityColumnRuntime.svelte.ts │ │ ├── EffectColumnRuntime.svelte.ts │ │ ├── EncounterMemberColumnRuntime.svelte.ts │ │ ├── GroupMemberColumnRuntime.svelte.ts │ │ ├── ItemColumnRuntime.svelte.ts │ │ ├── TableColumnRuntimeBase.svelte.ts │ │ ├── TableRowActionsRuntime.svelte.ts │ │ ├── default-activity-columns.ts │ │ └── default-item-columns.ts │ └── types.ts ├── settings │ ├── ResetSettingsDialog.ts │ ├── flags.ts │ ├── settings-data-models.ts │ ├── settings.svelte.ts │ └── settings.types.ts ├── sheets │ ├── CustomContentRendererV2.ts │ ├── classic │ │ ├── Tidy5eActorSheetClassicV2Base.svelte.ts │ │ ├── Tidy5eCharacterSheet.svelte.ts │ │ ├── Tidy5eContainerSheetClassic.svelte.ts │ │ ├── Tidy5eEncounterSheetClassic.svelte.ts │ │ ├── Tidy5eGroupSheetClassic.svelte.ts │ │ ├── Tidy5eItemSheetClassic.svelte.ts │ │ ├── Tidy5eKgarVehicleSheet.svelte.ts │ │ ├── Tidy5eNpcSheet.svelte.ts │ │ ├── actor │ │ │ ├── AcShield.svelte │ │ │ ├── AcShieldBase.svelte │ │ │ ├── AcShieldVehicle.svelte │ │ │ ├── ActorConditions.svelte │ │ │ ├── ActorEffectsTab.svelte │ │ │ ├── ActorHeaderStats.svelte │ │ │ ├── ActorMovement.less │ │ │ ├── ActorMovement.svelte │ │ │ ├── ActorName.svelte │ │ │ ├── ActorPortrait.svelte │ │ │ ├── ActorProfile.less │ │ │ ├── ActorProfile.svelte │ │ │ ├── ActorWarnings.svelte │ │ │ ├── AttributeBlock.less │ │ │ ├── AttributeBlock.svelte │ │ │ ├── AttunementTracker.less │ │ │ ├── AttunementTracker.svelte │ │ │ ├── BlockScore.svelte │ │ │ ├── Currency.less │ │ │ ├── Currency.svelte │ │ │ ├── DeathSaves.svelte │ │ │ ├── EncumbranceBar.svelte │ │ │ ├── ExhaustionInput.svelte │ │ │ ├── ExhaustionTracker.svelte │ │ │ ├── InitiativeBlock.svelte │ │ │ ├── InventoryGrid.svelte │ │ │ ├── InventoryList.svelte │ │ │ ├── LevelUpDropdown.svelte │ │ │ ├── LimitedHeader.svelte │ │ │ ├── NoSpells.svelte │ │ │ ├── RollableBlockTitle.svelte │ │ │ ├── SheetEditModeToggle.less │ │ │ ├── SkillsList.svelte │ │ │ ├── SpecialSaves.svelte │ │ │ ├── TabFooter.svelte │ │ │ ├── TempHp.svelte │ │ │ ├── tabs │ │ │ │ ├── ActorActionsTab.svelte │ │ │ │ ├── ActorInventoryTab.svelte │ │ │ │ ├── ActorJournalTab.svelte │ │ │ │ └── SpecialTraitsTab.svelte │ │ │ └── traits │ │ │ │ ├── TraitSection.svelte │ │ │ │ ├── TraitSectionModifications.svelte │ │ │ │ ├── TraitSectionTags.svelte │ │ │ │ ├── TraitSectionTools.svelte │ │ │ │ ├── Traits.svelte │ │ │ │ └── _traits.less │ │ ├── character │ │ │ ├── CharacterSheet.svelte │ │ │ ├── CharacterSheetFull.svelte │ │ │ ├── CharacterSheetLimited.svelte │ │ │ ├── parts │ │ │ │ ├── AttributeActivityPin.svelte │ │ │ │ ├── AttributeItemPin.svelte │ │ │ │ ├── CharacterHitPoints.svelte │ │ │ │ ├── CharacterProfile.svelte │ │ │ │ ├── FacilityOccupant.svelte │ │ │ │ ├── FacilityOrderProgressMeter.svelte │ │ │ │ ├── FacilityOrderProgressTracker.svelte │ │ │ │ ├── FacilityRosterOccupant.svelte │ │ │ │ ├── FavoriteActivitiesList.svelte │ │ │ │ ├── FavoriteEffectsList.svelte │ │ │ │ ├── FavoriteFacilitiesList.svelte │ │ │ │ ├── FavoriteFeaturesList.svelte │ │ │ │ ├── FavoriteSpellsList.svelte │ │ │ │ ├── Favorites.svelte │ │ │ │ ├── HitDice.svelte │ │ │ │ ├── Inspiration.svelte │ │ │ │ └── Rest.svelte │ │ │ └── tabs │ │ │ │ ├── CharacterAttributesTab.svelte │ │ │ │ ├── CharacterBastionTab.svelte │ │ │ │ ├── CharacterBiographyTab.svelte │ │ │ │ ├── CharacterEffectsTab.svelte │ │ │ │ ├── CharacterFeaturesTab.svelte │ │ │ │ └── CharacterSpellbookTab.svelte │ │ ├── container │ │ │ ├── CapacityBar.svelte │ │ │ ├── ContainerContentsSections.svelte │ │ │ └── InlineContainerView.svelte │ │ ├── encounter │ │ │ ├── EncounterSheet.svelte │ │ │ ├── parts │ │ │ │ └── EncounterMemberList.svelte │ │ │ └── tabs │ │ │ │ ├── EncounterDescriptionTab.svelte │ │ │ │ ├── EncounterInventoryTab.svelte │ │ │ │ └── EncounterMembersTab.svelte │ │ ├── group │ │ │ ├── GroupSheet.less │ │ │ ├── GroupSheet.svelte │ │ │ ├── parts │ │ │ │ ├── GroupHitPoints.svelte │ │ │ │ ├── GroupLanguages.svelte │ │ │ │ ├── GroupMemberList.svelte │ │ │ │ ├── GroupMemberListItem.svelte │ │ │ │ ├── GroupMemberListItemProfile.svelte │ │ │ │ ├── GroupSkills.svelte │ │ │ │ └── RemoveMemberControl.svelte │ │ │ └── tabs │ │ │ │ ├── GroupDescriptionTab.svelte │ │ │ │ ├── GroupInventoryTab.svelte │ │ │ │ └── GroupMembersTab.svelte │ │ ├── item │ │ │ ├── BackgroundSheet.svelte │ │ │ ├── ClassSheet.svelte │ │ │ ├── ConsumableSheet.svelte │ │ │ ├── ContainerSheet.svelte │ │ │ ├── EquipmentSheet.svelte │ │ │ ├── FacilitySheet.svelte │ │ │ ├── FeatSheet.svelte │ │ │ ├── LootSheet.svelte │ │ │ ├── SpeciesSheet.svelte │ │ │ ├── SpellSheet.svelte │ │ │ ├── SubclassSheet.svelte │ │ │ ├── ToolSheet.svelte │ │ │ ├── TypeNotFoundSheet.svelte │ │ │ ├── WeaponSheet.svelte │ │ │ ├── parts │ │ │ │ ├── DetailsMountable.svelte │ │ │ │ ├── DetailsSpellcasting.svelte │ │ │ │ ├── FieldActivation.svelte │ │ │ │ ├── FieldDamage.svelte │ │ │ │ ├── FieldDuration.svelte │ │ │ │ ├── FieldRange.svelte │ │ │ │ ├── FieldTargets.svelte │ │ │ │ ├── FieldUses.svelte │ │ │ │ ├── ItemDescriptions.svelte │ │ │ │ ├── ItemHeaderToggles.svelte │ │ │ │ ├── ItemIdentifiableName.svelte │ │ │ │ ├── ItemProfilePicture.svelte │ │ │ │ ├── ItemProperties.svelte │ │ │ │ └── ItemStartingEquipment.svelte │ │ │ └── tabs │ │ │ │ ├── ItemActiveEffectsTab.svelte │ │ │ │ ├── ItemActivitiesTab.svelte │ │ │ │ ├── ItemAdvancementTab.svelte │ │ │ │ ├── ItemBackgroundDetailsTab.svelte │ │ │ │ ├── ItemClassDetailsTab.svelte │ │ │ │ ├── ItemConsumableDetailsTab.svelte │ │ │ │ ├── ItemContainerContentsTab.svelte │ │ │ │ ├── ItemContainerDetailsTab.svelte │ │ │ │ ├── ItemDescriptionTab.svelte │ │ │ │ ├── ItemDescriptionWithSidebarTab.svelte │ │ │ │ ├── ItemEquipmentDetailsTab.svelte │ │ │ │ ├── ItemFacilityDetailsTab.svelte │ │ │ │ ├── ItemFeatDetailsTab.svelte │ │ │ │ ├── ItemLootDetailsTab.svelte │ │ │ │ ├── ItemSpeciesDescriptionTab.svelte │ │ │ │ ├── ItemSpeciesDetailsTab.svelte │ │ │ │ ├── ItemSpellDetailsTab.svelte │ │ │ │ ├── ItemSubclassDetailsTab.svelte │ │ │ │ ├── ItemToolDetailsTab.svelte │ │ │ │ └── ItemWeaponDetailsTab.svelte │ │ ├── npc │ │ │ ├── NpcSheet.svelte │ │ │ ├── NpcSheetFull.svelte │ │ │ ├── NpcSheetLimited.svelte │ │ │ ├── parts │ │ │ │ ├── NpcHealthFormulaRoller.svelte │ │ │ │ ├── NpcHitPoints.svelte │ │ │ │ ├── NpcLegendaryActions.svelte │ │ │ │ ├── NpcLoyaltyTracker.svelte │ │ │ │ ├── NpcProfile.svelte │ │ │ │ └── NpcRest.svelte │ │ │ └── tabs │ │ │ │ ├── NpcAbilitiesTab.svelte │ │ │ │ ├── NpcBiographyTab.svelte │ │ │ │ ├── NpcEffectsTab.svelte │ │ │ │ └── NpcSpellbookTab.svelte │ │ ├── shared │ │ │ ├── ClassicControls.svelte │ │ │ ├── ContainerPanel.svelte │ │ │ ├── D20Icon.svelte │ │ │ ├── InlineCreatureType.svelte │ │ │ ├── InlineSource.svelte │ │ │ ├── InlineToggleControl.svelte │ │ │ ├── SheetHeaderModeToggle-classic.less │ │ │ ├── SheetHeaderModeToggleV2.svelte │ │ │ └── Source.svelte │ │ └── vehicle │ │ │ ├── VehicleSheet.svelte │ │ │ ├── VehicleSheetFull.svelte │ │ │ ├── VehicleSheetLimited.svelte │ │ │ ├── parts │ │ │ ├── ItemCrewedControl.svelte │ │ │ ├── VehicleAttributes.svelte │ │ │ ├── VehicleDamageAndMishapThresholds.svelte │ │ │ ├── VehicleHitPoints.svelte │ │ │ ├── VehicleMovement.svelte │ │ │ └── VehicleProfile.svelte │ │ │ └── tabs │ │ │ ├── VehicleAttributesTab.svelte │ │ │ ├── VehicleCargoTab.svelte │ │ │ ├── VehicleDescriptionTab.svelte │ │ │ └── VehiclePassengersAndCrewTab.svelte │ ├── quadrone │ │ ├── Tidy5eActorSheetQuadroneBase.svelte.ts │ │ ├── Tidy5eCharacterSheetQuadrone.svelte.ts │ │ ├── Tidy5eContainerSheetQuadrone.svelte.ts │ │ ├── Tidy5eEncounterSheetQuadrone.svelte.ts │ │ ├── Tidy5eGroupSheetQuadrone.svelte.ts │ │ ├── Tidy5eItemDebugSheetQuadrone.svelte.ts │ │ ├── Tidy5eItemSheetQuadrone.svelte.ts │ │ ├── Tidy5eMultiActorSheetQuadroneBase.svelte.ts │ │ ├── Tidy5eNpcSheetQuadrone.svelte.ts │ │ ├── Tidy5eVehicleSheetQuadrone.svelte.ts │ │ ├── actor │ │ │ ├── ActorLimitedSheet.svelte │ │ │ ├── CharacterSheet.svelte │ │ │ ├── EncounterSheet.svelte │ │ │ ├── GroupSheet.svelte │ │ │ ├── NpcSheet.svelte │ │ │ ├── VehicleSheet.svelte │ │ │ ├── character-parts │ │ │ │ ├── AbilityScore.svelte │ │ │ │ ├── AbilityScoreNPC.svelte │ │ │ │ ├── CharacterSidebar.svelte │ │ │ │ ├── CharacterSubtitle.svelte │ │ │ │ ├── DeathSavesOverlay.svelte │ │ │ │ ├── InspirationBadge.svelte │ │ │ │ ├── SavingThrowsCard.svelte │ │ │ │ ├── bastion │ │ │ │ │ ├── FacilityOccupantQuadrone.svelte │ │ │ │ │ ├── FacilityOrderProgressMeterQuadrone.svelte │ │ │ │ │ ├── FacilityOrderProgressTrackerQuadrone.svelte │ │ │ │ │ └── FacilityRosterOccupantQuadrone.svelte │ │ │ │ ├── favorites │ │ │ │ │ ├── FavoriteActivity.svelte │ │ │ │ │ ├── FavoriteEffect.svelte │ │ │ │ │ ├── FavoriteItem.svelte │ │ │ │ │ ├── FavoriteItemClass.svelte │ │ │ │ │ ├── FavoriteItemConsumable.svelte │ │ │ │ │ ├── FavoriteItemContainer.svelte │ │ │ │ │ ├── FavoriteItemEquipment.svelte │ │ │ │ │ ├── FavoriteItemFacility.svelte │ │ │ │ │ ├── FavoriteItemFeat.svelte │ │ │ │ │ ├── FavoriteItemGeneric.svelte │ │ │ │ │ ├── FavoriteItemSpell.svelte │ │ │ │ │ ├── FavoriteItemTool.svelte │ │ │ │ │ ├── FavoriteItemWeapon.svelte │ │ │ │ │ ├── FavoriteSkillTool.svelte │ │ │ │ │ ├── FavoriteSlot.svelte │ │ │ │ │ └── parts │ │ │ │ │ │ ├── FavoriteItemUses.svelte │ │ │ │ │ │ └── FavoriteRollButton.svelte │ │ │ │ └── traits │ │ │ │ │ ├── CharacterTraitPills.svelte │ │ │ │ │ ├── CharacterTraitSpecies.svelte │ │ │ │ │ └── CharacterTraits.svelte │ │ │ ├── encounter-parts │ │ │ │ ├── EncounterMemberNameColumn.svelte │ │ │ │ ├── EncounterPlaceholderNameColumn.svelte │ │ │ │ ├── EncounterSubtitle.svelte │ │ │ │ ├── EncounterXPBudgetBar.svelte │ │ │ │ └── members-tab-sidebar │ │ │ │ │ ├── EncounterSkills.svelte │ │ │ │ │ └── MembersTabSidebar.svelte │ │ │ ├── group-parts │ │ │ │ ├── GroupMemberNameColumn.svelte │ │ │ │ ├── GroupSubtitle.svelte │ │ │ │ ├── GroupTraitPill.svelte │ │ │ │ └── members-tab-sidebar │ │ │ │ │ ├── GroupSkillsCard.svelte │ │ │ │ │ └── MembersTabSidebar.svelte │ │ │ ├── npc-parts │ │ │ │ ├── Legendaries.svelte │ │ │ │ ├── LoyaltyTracker.svelte │ │ │ │ ├── NpcExhaustionBar.svelte │ │ │ │ ├── NpcScoreTrackerCard.svelte │ │ │ │ ├── NpcSidebar.svelte │ │ │ │ ├── NpcSubtitle.svelte │ │ │ │ ├── NpcTraits.svelte │ │ │ │ └── traits │ │ │ │ │ ├── NpcTraitCreatureType.svelte │ │ │ │ │ ├── NpcTraitSize.svelte │ │ │ │ │ └── NpcTraitSpecies.svelte │ │ │ ├── parts │ │ │ │ ├── AbilitiesContainer.svelte │ │ │ │ ├── ActorConditionsQuadrone.svelte │ │ │ │ ├── ActorCustomTraitListEntries.svelte │ │ │ │ ├── ActorEncumbranceBar.svelte │ │ │ │ ├── ActorExhaustionBar.svelte │ │ │ │ ├── ActorHeaderStart.svelte │ │ │ │ ├── ActorInventoryFooter.svelte │ │ │ │ ├── ActorPortrait.svelte │ │ │ │ ├── ActorSpellbookFooter.svelte │ │ │ │ ├── ActorTraitBackground.svelte │ │ │ │ ├── ActorTraitClasses.svelte │ │ │ │ ├── ActorTraitConfigurableListEntry.svelte │ │ │ │ ├── ActorTraitPills.svelte │ │ │ │ ├── ActorTraitSize.svelte │ │ │ │ ├── CharacterEncumbranceRow.svelte │ │ │ │ ├── ConditionToggleQuadrone.svelte │ │ │ │ ├── ProficiencyCycle.svelte │ │ │ │ ├── SpellSlotManagementQuadrone.svelte │ │ │ │ ├── SpellSlotTracker.svelte │ │ │ │ ├── SpellcastingClassSummaryCard.svelte │ │ │ │ ├── SpellcastingNpcSummaryCard.svelte │ │ │ │ ├── ToolsCard.svelte │ │ │ │ └── skills │ │ │ │ │ ├── SkillsCard.svelte │ │ │ │ │ └── SkillsCardHeader.svelte │ │ │ ├── tabs │ │ │ │ ├── ActorEffectsTab.svelte │ │ │ │ ├── ActorInventoryTab.svelte │ │ │ │ ├── ActorJournalTab.svelte │ │ │ │ ├── ActorSpellbookTab.svelte │ │ │ │ ├── CharacterActionsTab.svelte │ │ │ │ ├── CharacterAttributesTab.svelte │ │ │ │ ├── CharacterBastionTab.svelte │ │ │ │ ├── CharacterBiographyTab.svelte │ │ │ │ ├── CharacterFeaturesTab.svelte │ │ │ │ ├── EncounterCombatTab.svelte │ │ │ │ ├── EncounterDescriptionTab.svelte │ │ │ │ ├── EncounterInventoryTab.svelte │ │ │ │ ├── EncounterMembersTab.svelte │ │ │ │ ├── GroupBastionsTab.svelte │ │ │ │ ├── GroupDescriptionTab.svelte │ │ │ │ ├── GroupInventoryTab.svelte │ │ │ │ ├── GroupMembersTab.svelte │ │ │ │ ├── NpcBiographyTab.svelte │ │ │ │ ├── NpcStatblockTab.svelte │ │ │ │ ├── SidebarTabFavorites.svelte │ │ │ │ ├── SidebarTabSkills.svelte │ │ │ │ ├── SidebarTabTraits.svelte │ │ │ │ ├── VehicleCargoTab.svelte │ │ │ │ ├── VehicleCrewTab.svelte │ │ │ │ ├── VehicleDescriptionTab.svelte │ │ │ │ └── VehicleFeaturesTab.svelte │ │ │ └── vehicle-parts │ │ │ │ ├── VehicleSidebar.svelte │ │ │ │ ├── VehicleSubtitle.svelte │ │ │ │ └── VehicleTraits.svelte │ │ ├── container │ │ │ ├── ContainerSheet.svelte │ │ │ ├── parts │ │ │ │ ├── CapacityBar.svelte │ │ │ │ ├── CapacityTracker.svelte │ │ │ │ ├── InlineContainerContents.svelte │ │ │ │ └── InlineContainerView.svelte │ │ │ └── tabs │ │ │ │ ├── ContainerContentsTab.svelte │ │ │ │ └── ContainerDetailsTab.svelte │ │ ├── item │ │ │ ├── BackgroundSheet.svelte │ │ │ ├── ClassSheet.svelte │ │ │ ├── ConsumableSheet.svelte │ │ │ ├── EquipmentSheet.svelte │ │ │ ├── FacilitySheet.svelte │ │ │ ├── FeatSheet.svelte │ │ │ ├── ItemDebugSheet.svelte │ │ │ ├── LootSheet.svelte │ │ │ ├── SpeciesSheet.svelte │ │ │ ├── SpellSheet.svelte │ │ │ ├── SubclassSheet.svelte │ │ │ ├── ToolSheet.svelte │ │ │ ├── WeaponSheet.svelte │ │ │ ├── columns │ │ │ │ ├── ActivityActionsColumnHeader.svelte │ │ │ │ ├── ActivityDamageFormulasColumn.svelte │ │ │ │ ├── ActivityTimeColumn.svelte │ │ │ │ ├── ActivityUsesColumn.svelte │ │ │ │ ├── DocumentActionsColumn.svelte │ │ │ │ ├── EffectActionsColumnHeader.svelte │ │ │ │ ├── EffectDurationColumn.svelte │ │ │ │ ├── EffectSourceColumn.svelte │ │ │ │ ├── EncounterMemberCrColumn.svelte │ │ │ │ ├── EncounterMemberInitiativeColumn.svelte │ │ │ │ ├── EncounterMemberQtyFormulaColumn.svelte │ │ │ │ ├── EncounterMemberQuantityColumn.svelte │ │ │ │ ├── GroupMemberAcColumn.svelte │ │ │ │ ├── GroupMemberHdColumn.svelte │ │ │ │ ├── GroupMemberHpColumn.svelte │ │ │ │ ├── GroupMemberInspirationColumn.svelte │ │ │ │ ├── GroupVehicleCrewColumn.svelte │ │ │ │ ├── GroupVehicleDtColumn.svelte │ │ │ │ ├── GroupXpColumn.svelte │ │ │ │ ├── InlineCapacityBarColumn.svelte │ │ │ │ ├── InlineCapacityTrackerColumn.svelte │ │ │ │ ├── ItemDamageFormulasColumn.svelte │ │ │ │ ├── ItemFeatureSourceColumn.svelte │ │ │ │ ├── ItemPriceColumn.svelte │ │ │ │ ├── ItemQuantityColumn.svelte │ │ │ │ ├── ItemRangeColumn.svelte │ │ │ │ ├── ItemRecoveryColumn.svelte │ │ │ │ ├── ItemRollColumn.svelte │ │ │ │ ├── ItemSpellComponentsColumn.svelte │ │ │ │ ├── ItemSpellSchoolColumn.svelte │ │ │ │ ├── ItemTargetColumn.svelte │ │ │ │ ├── ItemTimeColumn.svelte │ │ │ │ ├── ItemUsesColumn.svelte │ │ │ │ ├── ItemWeightColumn.svelte │ │ │ │ ├── MemberActionsColumnHeader.svelte │ │ │ │ └── SectionActionsColumnHeader.svelte │ │ │ ├── parts │ │ │ │ ├── DetailsMountable.svelte │ │ │ │ ├── DetailsSpellcasting.svelte │ │ │ │ ├── FeatureOriginFormGroup.svelte │ │ │ │ ├── FieldActivation.svelte │ │ │ │ ├── FieldDamage.svelte │ │ │ │ ├── FieldDuration.svelte │ │ │ │ ├── FieldRange.svelte │ │ │ │ ├── FieldTargets.svelte │ │ │ │ ├── FieldUses.svelte │ │ │ │ ├── ItemHeaderStart.svelte │ │ │ │ ├── ItemImageBorder.svelte │ │ │ │ ├── ItemNameHeaderOrchestrator.svelte │ │ │ │ ├── ItemProperties.svelte │ │ │ │ ├── ItemStartingEquipment.svelte │ │ │ │ ├── QuantityWeightPriceFormGroups.svelte │ │ │ │ ├── Sidebar.svelte │ │ │ │ ├── SpellBlock.svelte │ │ │ │ ├── SpellcastingSidebarPills.svelte │ │ │ │ └── header │ │ │ │ │ ├── ItemChargesSummary.svelte │ │ │ │ │ ├── ItemLinkedItemSummary.svelte │ │ │ │ │ ├── ItemName.svelte │ │ │ │ │ ├── ItemPriceSummary.svelte │ │ │ │ │ ├── ItemQuantitySummary.svelte │ │ │ │ │ ├── ItemRechargeSummary.svelte │ │ │ │ │ └── ItemWeightSummary.svelte │ │ │ └── tabs │ │ │ │ ├── ItemActivitiesTab.svelte │ │ │ │ ├── ItemAdvancementTab.svelte │ │ │ │ ├── ItemBackgroundDetailsTab.svelte │ │ │ │ ├── ItemClassDetailsTab.svelte │ │ │ │ ├── ItemConsumableDetailsTab.svelte │ │ │ │ ├── ItemDescriptionsTab.svelte │ │ │ │ ├── ItemEffectsTab.svelte │ │ │ │ ├── ItemEquipmentDetailsTab.svelte │ │ │ │ ├── ItemFacilityDetailsTab.svelte │ │ │ │ ├── ItemFeatDetailsTab.svelte │ │ │ │ ├── ItemLootDetailsTab.svelte │ │ │ │ ├── ItemSpeciesDetailsTab.svelte │ │ │ │ ├── ItemSpellDetailsTab.svelte │ │ │ │ ├── ItemSubclassDetailsTab.svelte │ │ │ │ ├── ItemToolDetailsTab.svelte │ │ │ │ └── ItemWeaponDetailsTab.svelte │ │ └── shared │ │ │ ├── ActionTables.svelte │ │ │ ├── ActorWarnings.svelte │ │ │ ├── CollapsibleEditorSection.svelte │ │ │ ├── ConfigurableSource.svelte │ │ │ ├── ContainerPanel.svelte │ │ │ ├── EffectsTables.svelte │ │ │ ├── ExpandCollapseButton.svelte │ │ │ ├── FeatureTable.svelte │ │ │ ├── FeatureTables.svelte │ │ │ ├── GoldHeaderUnderline.svelte │ │ │ ├── GroupMembersActionBar.svelte │ │ │ ├── InventoryActionBar.svelte │ │ │ ├── InventoryTables.svelte │ │ │ ├── ItemDescriptions.svelte │ │ │ ├── ItemRollButton.svelte │ │ │ ├── ItemsActionBar.svelte │ │ │ ├── Search.svelte │ │ │ ├── SheetPinActivity.svelte │ │ │ ├── SheetPinItem.svelte │ │ │ ├── SheetPins.svelte │ │ │ ├── SoloItemDescription.svelte │ │ │ ├── SpellTable.svelte │ │ │ ├── SpellTables.svelte │ │ │ └── StatblockTables.svelte │ └── sheet-context.svelte.ts ├── theme │ ├── README.md │ ├── theme-import-service.ts │ ├── theme-quadrone-detached.ts │ ├── theme-quadrone.svelte.ts │ ├── theme-quadrone.types.ts │ ├── theme-styles-provider.ts │ └── theme.ts ├── tidy5e-sheet.js ├── todo.md ├── tooltips │ ├── AttunementSummaryTooltip.svelte │ ├── GroupLanguageTooltip.svelte │ ├── GroupSkillTooltip.svelte │ ├── GroupToolTooltip.svelte │ ├── GroupTraitTooltip.svelte │ ├── ListItemsTooltip.svelte │ ├── OccupantSummaryTooltip.svelte │ ├── Tooltip.ts │ ├── WeightDistributionTooltip.svelte │ └── tooltips.less ├── types │ ├── application.types.ts │ ├── dnd5e.actor5e.types.ts │ ├── group.types.ts │ ├── item.types.ts │ ├── location-awareness.types.ts │ ├── sort.types.ts │ ├── theme.types.ts │ └── types.ts ├── utils │ ├── DebugTools.ts │ ├── ItemUtils.ts │ ├── SpellUtils.ts │ ├── active-effect.ts │ ├── applications.svelte.ts │ ├── array.ts │ ├── asynchrony.ts │ ├── class-inheritance.ts │ ├── component.ts │ ├── data.ts │ ├── element.ts │ ├── events.ts │ ├── file.ts │ ├── form.ts │ ├── formatting.ts │ ├── formula.ts │ ├── html.ts │ ├── iteration.ts │ ├── logging.ts │ ├── map.ts │ ├── mapping.ts │ ├── mutex.ts │ ├── numbers.ts │ ├── path.ts │ ├── positioning.ts │ ├── reactivity.svelte.ts │ ├── session-storage.ts │ ├── set.ts │ ├── system-properties-classic.ts │ ├── system-properties-quadrone.ts │ └── value-cycling.ts └── vite-env.d.ts ├── svelte.config.js ├── symlink-module-build-dir.js ├── tidy5e-sheet-kgar.lock ├── tsconfig.json ├── tsconfig.node.json ├── typedoc.json └── vite.config.ts /.github/workflows/merge-to-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/.github/workflows/merge-to-main.yml -------------------------------------------------------------------------------- /.github/workflows/refresh-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/.github/workflows/refresh-documentation.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/README.md -------------------------------------------------------------------------------- /community-themes/kiligirs-color-theory.tidy5e-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/community-themes/kiligirs-color-theory.tidy5e-theme -------------------------------------------------------------------------------- /compatibility/world-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/compatibility/world-scripts/README.md -------------------------------------------------------------------------------- /foundry-data-path-config_example.json: -------------------------------------------------------------------------------- 1 | { 2 | "dataPath": "C:\\foundry_data\\" 3 | } 4 | -------------------------------------------------------------------------------- /macros/truesight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/macros/truesight.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/package.json -------------------------------------------------------------------------------- /prepare-dist-for-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/prepare-dist-for-dev.js -------------------------------------------------------------------------------- /public/images/badge_ability_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_ability_dark.webp -------------------------------------------------------------------------------- /public/images/badge_ability_dark_prof.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_ability_dark_prof.webp -------------------------------------------------------------------------------- /public/images/badge_ability_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_ability_light.webp -------------------------------------------------------------------------------- /public/images/badge_ability_light_prof.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_ability_light_prof.webp -------------------------------------------------------------------------------- /public/images/badge_ac_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_ac_dark.webp -------------------------------------------------------------------------------- /public/images/badge_ac_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_ac_light.webp -------------------------------------------------------------------------------- /public/images/badge_ac_npc_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_ac_npc_dark.svg -------------------------------------------------------------------------------- /public/images/badge_ac_npc_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_ac_npc_light.svg -------------------------------------------------------------------------------- /public/images/badge_encounter_difficulty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_encounter_difficulty.png -------------------------------------------------------------------------------- /public/images/badge_init_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_init_dark.webp -------------------------------------------------------------------------------- /public/images/badge_init_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_init_light.webp -------------------------------------------------------------------------------- /public/images/badge_inspiration_single.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_inspiration_single.webp -------------------------------------------------------------------------------- /public/images/badge_inspiration_stacked.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_inspiration_stacked.webp -------------------------------------------------------------------------------- /public/images/badge_level_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_level_dark.webp -------------------------------------------------------------------------------- /public/images/badge_score_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_score_dark.webp -------------------------------------------------------------------------------- /public/images/badge_score_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/badge_score_light.webp -------------------------------------------------------------------------------- /public/images/banner-character.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/banner-character.webp -------------------------------------------------------------------------------- /public/images/banner-encounter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/banner-encounter.jpg -------------------------------------------------------------------------------- /public/images/denim-dark-090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/denim-dark-090.png -------------------------------------------------------------------------------- /public/images/denim065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/denim065.png -------------------------------------------------------------------------------- /public/images/facility-default-background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/facility-default-background.webp -------------------------------------------------------------------------------- /public/images/init-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/init-badge.svg -------------------------------------------------------------------------------- /public/images/notable-left-corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/notable-left-corner.svg -------------------------------------------------------------------------------- /public/images/notable-right-corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/notable-right-corner.svg -------------------------------------------------------------------------------- /public/images/parchment-texture-bottom.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/parchment-texture-bottom.webp -------------------------------------------------------------------------------- /public/images/parchment-texture-top.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/parchment-texture-top.webp -------------------------------------------------------------------------------- /public/images/sidebar-item-sheet.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/sidebar-item-sheet.webp -------------------------------------------------------------------------------- /public/images/texture-gray-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/texture-gray-1.webp -------------------------------------------------------------------------------- /public/images/texture-gray-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/texture-gray-2.webp -------------------------------------------------------------------------------- /public/images/tidy-shield-large.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/images/tidy-shield-large.webp -------------------------------------------------------------------------------- /public/lang/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/cs.json -------------------------------------------------------------------------------- /public/lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/de.json -------------------------------------------------------------------------------- /public/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/en.json -------------------------------------------------------------------------------- /public/lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/es.json -------------------------------------------------------------------------------- /public/lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/fr.json -------------------------------------------------------------------------------- /public/lang/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/hu.json -------------------------------------------------------------------------------- /public/lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/it.json -------------------------------------------------------------------------------- /public/lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/ja.json -------------------------------------------------------------------------------- /public/lang/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/ko.json -------------------------------------------------------------------------------- /public/lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/pl.json -------------------------------------------------------------------------------- /public/lang/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/pt-BR.json -------------------------------------------------------------------------------- /public/lang/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/pt.json -------------------------------------------------------------------------------- /public/lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/ru.json -------------------------------------------------------------------------------- /public/lang/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/ta.json -------------------------------------------------------------------------------- /public/lang/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/uk.json -------------------------------------------------------------------------------- /public/lang/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/zh-tw.json -------------------------------------------------------------------------------- /public/lang/zh_Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/lang/zh_Hans.json -------------------------------------------------------------------------------- /public/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/module.json -------------------------------------------------------------------------------- /public/rpg-awesome/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/rpg-awesome/LICENSE.md -------------------------------------------------------------------------------- /public/rpg-awesome/fonts/rpgawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/rpg-awesome/fonts/rpgawesome-webfont.eot -------------------------------------------------------------------------------- /public/rpg-awesome/fonts/rpgawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/rpg-awesome/fonts/rpgawesome-webfont.svg -------------------------------------------------------------------------------- /public/rpg-awesome/fonts/rpgawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/rpg-awesome/fonts/rpgawesome-webfont.ttf -------------------------------------------------------------------------------- /public/rpg-awesome/fonts/rpgawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/rpg-awesome/fonts/rpgawesome-webfont.woff -------------------------------------------------------------------------------- /public/rpg-awesome/style/rpg-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/rpg-awesome/style/rpg-awesome.min.css -------------------------------------------------------------------------------- /public/templates/empty-article-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/public/templates/empty-article-template.hbs -------------------------------------------------------------------------------- /public/templates/empty-div-template.hbs: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /public/templates/empty-form-template-for-items.hbs: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /public/templates/empty-form-template.hbs: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /readme-assets/character-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/character-sheet.png -------------------------------------------------------------------------------- /readme-assets/dark-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/dark-mode.png -------------------------------------------------------------------------------- /readme-assets/npc-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/npc-sheet.png -------------------------------------------------------------------------------- /readme-assets/patreon-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/patreon-logo.svg -------------------------------------------------------------------------------- /readme-assets/quadrone-container-and-spell-sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/quadrone-container-and-spell-sheets.png -------------------------------------------------------------------------------- /readme-assets/quadrone-equipment-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/quadrone-equipment-sheet.png -------------------------------------------------------------------------------- /readme-assets/quadrone-facility-feat-tattoo-sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/quadrone-facility-feat-tattoo-sheets.png -------------------------------------------------------------------------------- /readme-assets/quadrone-loot-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/quadrone-loot-sheet.png -------------------------------------------------------------------------------- /readme-assets/quadrone-spell-sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/quadrone-spell-sheets.png -------------------------------------------------------------------------------- /readme-assets/quadrone-tool-and-consumable-sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/quadrone-tool-and-consumable-sheets.png -------------------------------------------------------------------------------- /readme-assets/quadrone-weapon-sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/quadrone-weapon-sheets.png -------------------------------------------------------------------------------- /readme-assets/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/settings.png -------------------------------------------------------------------------------- /readme-assets/t5e-encounter-hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-encounter-hero.webp -------------------------------------------------------------------------------- /readme-assets/t5e-encounter-other-states.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-encounter-other-states.webp -------------------------------------------------------------------------------- /readme-assets/t5e-group-hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-group-hero.webp -------------------------------------------------------------------------------- /readme-assets/t5e-group-sidebar.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-group-sidebar.webp -------------------------------------------------------------------------------- /readme-assets/t5e-item-3up.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-item-3up.webp -------------------------------------------------------------------------------- /readme-assets/t5e-item-advancements.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-item-advancements.webp -------------------------------------------------------------------------------- /readme-assets/t5e-item-equipment.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-item-equipment.webp -------------------------------------------------------------------------------- /readme-assets/t5e-item-spells.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-item-spells.webp -------------------------------------------------------------------------------- /readme-assets/t5e-items-featured.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-items-featured.webp -------------------------------------------------------------------------------- /readme-assets/t5e-npc-edit-mode.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-npc-edit-mode.webp -------------------------------------------------------------------------------- /readme-assets/t5e-npc-hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-npc-hero.webp -------------------------------------------------------------------------------- /readme-assets/t5e-npc-spellbook.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-npc-spellbook.webp -------------------------------------------------------------------------------- /readme-assets/t5e-npc-theming.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-npc-theming.webp -------------------------------------------------------------------------------- /readme-assets/t5e-pc-edit-mode.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-pc-edit-mode.webp -------------------------------------------------------------------------------- /readme-assets/t5e-pc-hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-pc-hero.webp -------------------------------------------------------------------------------- /readme-assets/t5e-pc-organize.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-pc-organize.webp -------------------------------------------------------------------------------- /readme-assets/t5e-pc-theme.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-pc-theme.webp -------------------------------------------------------------------------------- /readme-assets/t5e-pick-sheet.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/t5e-pick-sheet.webp -------------------------------------------------------------------------------- /readme-assets/tab-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/tab-selection.png -------------------------------------------------------------------------------- /readme-assets/theme-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/theme-settings.png -------------------------------------------------------------------------------- /readme-assets/vehicle-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/readme-assets/vehicle-sheet.png -------------------------------------------------------------------------------- /src/actions/longpress.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/actions/longpress.svelte.ts -------------------------------------------------------------------------------- /src/actions/manage-secrets.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/actions/manage-secrets.svelte.ts -------------------------------------------------------------------------------- /src/actions/prevent-newlines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/actions/prevent-newlines.ts -------------------------------------------------------------------------------- /src/actions/svelte-skip-event.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/actions/svelte-skip-event.svelte.ts -------------------------------------------------------------------------------- /src/api/ApiConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/ApiConstants.ts -------------------------------------------------------------------------------- /src/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/README.md -------------------------------------------------------------------------------- /src/api/Tidy5eSheetsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/Tidy5eSheetsApi.ts -------------------------------------------------------------------------------- /src/api/api.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/api.types.ts -------------------------------------------------------------------------------- /src/api/config/ConfigApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/config/ConfigApi.ts -------------------------------------------------------------------------------- /src/api/config/action-list/ActionListApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/config/action-list/ActionListApi.ts -------------------------------------------------------------------------------- /src/api/config/actor-inspiration/ActorInspirationApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/config/actor-inspiration/ActorInspirationApi.ts -------------------------------------------------------------------------------- /src/api/config/actor-item/ActorItemApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/config/actor-item/ActorItemApi.ts -------------------------------------------------------------------------------- /src/api/config/actor-portrait/ActorPortraitApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/config/actor-portrait/ActorPortraitApi.ts -------------------------------------------------------------------------------- /src/api/config/actor-traits/ActorTraitsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/config/actor-traits/ActorTraitsApi.ts -------------------------------------------------------------------------------- /src/api/config/actor-traits/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/config/actor-traits/types.ts -------------------------------------------------------------------------------- /src/api/config/exhaustion/ExhaustionApi.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/config/exhaustion/ExhaustionApi.svelte.ts -------------------------------------------------------------------------------- /src/api/config/item-summary/ItemSummaryApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/config/item-summary/ItemSummaryApi.ts -------------------------------------------------------------------------------- /src/api/config/item/ItemConfigApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/config/item/ItemConfigApi.ts -------------------------------------------------------------------------------- /src/api/config/spell-school/SpellSchoolApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/config/spell-school/SpellSchoolApi.ts -------------------------------------------------------------------------------- /src/api/config/spell-school/spell-school.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/config/spell-school/spell-school.types.ts -------------------------------------------------------------------------------- /src/api/content/CustomContentBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/content/CustomContentBase.ts -------------------------------------------------------------------------------- /src/api/content/HandlebarsContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/content/HandlebarsContent.ts -------------------------------------------------------------------------------- /src/api/content/HtmlContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/content/HtmlContent.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/svelte/TidySvelteApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/svelte/TidySvelteApi.ts -------------------------------------------------------------------------------- /src/api/tab/CustomTabBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/tab/CustomTabBase.ts -------------------------------------------------------------------------------- /src/api/tab/HandlebarsTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/tab/HandlebarsTab.ts -------------------------------------------------------------------------------- /src/api/tab/HtmlTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/tab/HtmlTab.ts -------------------------------------------------------------------------------- /src/api/tab/SvelteTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/api/tab/SvelteTab.ts -------------------------------------------------------------------------------- /src/applications-quadrone/DocumentSheetDialog.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications-quadrone/DocumentSheetDialog.svelte.ts -------------------------------------------------------------------------------- /src/applications/homebrew-settings/HomebrewSettings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/homebrew-settings/HomebrewSettings.svelte -------------------------------------------------------------------------------- /src/applications/info-card/DetachedInfoCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/info-card/DetachedInfoCard.svelte -------------------------------------------------------------------------------- /src/applications/info-card/DetachedInfoCardApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/info-card/DetachedInfoCardApplication.ts -------------------------------------------------------------------------------- /src/applications/journal/JournalEntry.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/journal/JournalEntry.svelte -------------------------------------------------------------------------------- /src/applications/journal/JournalEntryApplication.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/journal/JournalEntryApplication.svelte.ts -------------------------------------------------------------------------------- /src/applications/section-config/section-config.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/section-config/section-config.types.ts -------------------------------------------------------------------------------- /src/applications/section-selector/SectionSelector.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/section-selector/SectionSelector.svelte -------------------------------------------------------------------------------- /src/applications/settings/about/About.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/settings/about/About.svelte -------------------------------------------------------------------------------- /src/applications/settings/about/AboutApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/settings/about/AboutApplication.ts -------------------------------------------------------------------------------- /src/applications/settings/parts/CheckboxSetting.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/settings/parts/CheckboxSetting.svelte -------------------------------------------------------------------------------- /src/applications/settings/parts/ExhaustionSetting.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/settings/parts/ExhaustionSetting.svelte -------------------------------------------------------------------------------- /src/applications/settings/parts/ListboxSetting.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/settings/parts/ListboxSetting.svelte -------------------------------------------------------------------------------- /src/applications/settings/parts/NumberInputSetting.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/settings/parts/NumberInputSetting.svelte -------------------------------------------------------------------------------- /src/applications/settings/parts/SelectSetting.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/settings/parts/SelectSetting.svelte -------------------------------------------------------------------------------- /src/applications/settings/parts/TextInputSetting.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/settings/parts/TextInputSetting.svelte -------------------------------------------------------------------------------- /src/applications/tab-selection/TabSelection.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/tab-selection/TabSelection.svelte -------------------------------------------------------------------------------- /src/applications/theme/ThemeSettingColorArticle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/theme/ThemeSettingColorArticle.svelte -------------------------------------------------------------------------------- /src/applications/theme/ThemeSettingSheetMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/theme/ThemeSettingSheetMenu.svelte -------------------------------------------------------------------------------- /src/applications/theme/ThemeSettingsQuadrone.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/theme/ThemeSettingsQuadrone.svelte -------------------------------------------------------------------------------- /src/applications/theme/ThemeSettingsSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/theme/ThemeSettingsSheet.svelte -------------------------------------------------------------------------------- /src/applications/theme/parts/ImagePickerButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/theme/parts/ImagePickerButton.svelte -------------------------------------------------------------------------------- /src/applications/theme/parts/ImportButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/applications/theme/parts/ImportButton.svelte -------------------------------------------------------------------------------- /src/attachments/input-attachments.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/attachments/input-attachments.svelte.ts -------------------------------------------------------------------------------- /src/attachments/visibility-observer.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/attachments/visibility-observer.svelte.ts -------------------------------------------------------------------------------- /src/components/accordion/Accordion.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/accordion/Accordion.svelte -------------------------------------------------------------------------------- /src/components/accordion/AccordionItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/accordion/AccordionItem.svelte -------------------------------------------------------------------------------- /src/components/action-bar/FilterButtonMenuQuadrone.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/action-bar/FilterButtonMenuQuadrone.svelte -------------------------------------------------------------------------------- /src/components/bar/Bar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/bar/Bar.svelte -------------------------------------------------------------------------------- /src/components/bar/HpBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/bar/HpBar.svelte -------------------------------------------------------------------------------- /src/components/bar/ResourceBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/bar/ResourceBar.svelte -------------------------------------------------------------------------------- /src/components/bar/ResourceWithBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/bar/ResourceWithBar.svelte -------------------------------------------------------------------------------- /src/components/button-menu/ButtonMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/button-menu/ButtonMenu.svelte -------------------------------------------------------------------------------- /src/components/button-menu/ButtonMenuCommand.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/button-menu/ButtonMenuCommand.svelte -------------------------------------------------------------------------------- /src/components/button-menu/ButtonMenuDivider.svelte: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/components/button-menu/ButtonMenuItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/button-menu/ButtonMenuItem.svelte -------------------------------------------------------------------------------- /src/components/button-menu/button-menu-position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/button-menu/button-menu-position.ts -------------------------------------------------------------------------------- /src/components/button-menu/button-menu-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/button-menu/button-menu-types.ts -------------------------------------------------------------------------------- /src/components/button-menu/button-menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/button-menu/button-menu.less -------------------------------------------------------------------------------- /src/components/buttons/ButtonWithOptionPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/buttons/ButtonWithOptionPanel.svelte -------------------------------------------------------------------------------- /src/components/buttons/FilterToggle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/buttons/FilterToggle.svelte -------------------------------------------------------------------------------- /src/components/buttons/ToggleButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/buttons/ToggleButton.svelte -------------------------------------------------------------------------------- /src/components/content-concealment/ContentConcealer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/content-concealment/ContentConcealer.svelte -------------------------------------------------------------------------------- /src/components/editor/SheetEditorV2.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/editor/SheetEditorV2.less -------------------------------------------------------------------------------- /src/components/editor/SheetEditorV2.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/editor/SheetEditorV2.svelte -------------------------------------------------------------------------------- /src/components/expandable/ExpandableContainer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/expandable/ExpandableContainer.svelte -------------------------------------------------------------------------------- /src/components/filigree-card/FiligreeCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/filigree-card/FiligreeCard.svelte -------------------------------------------------------------------------------- /src/components/filter/FilterButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/filter/FilterButton.svelte -------------------------------------------------------------------------------- /src/components/filter/FilterToggleButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/filter/FilterToggleButton.svelte -------------------------------------------------------------------------------- /src/components/filter/PinnedFilterToggle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/filter/PinnedFilterToggle.svelte -------------------------------------------------------------------------------- /src/components/filter/PinnedFilterToggles.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/filter/PinnedFilterToggles.svelte -------------------------------------------------------------------------------- /src/components/filter/_filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/filter/_filter.less -------------------------------------------------------------------------------- /src/components/form-group/FormGroup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/form-group/FormGroup.svelte -------------------------------------------------------------------------------- /src/components/form-group/FormGroupBuilderClassic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/form-group/FormGroupBuilderClassic.svelte -------------------------------------------------------------------------------- /src/components/form-group/FormGroupClassic.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/form-group/FormGroupClassic.svelte -------------------------------------------------------------------------------- /src/components/form-group/FoundryFormInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/form-group/FoundryFormInput.svelte -------------------------------------------------------------------------------- /src/components/form-group/TidyFormInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/form-group/TidyFormInput.svelte -------------------------------------------------------------------------------- /src/components/icon/Dnd5eIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/icon/Dnd5eIcon.svelte -------------------------------------------------------------------------------- /src/components/info-card/AttachedInfoCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/info-card/AttachedInfoCard.svelte -------------------------------------------------------------------------------- /src/components/info-card/Cards/ActivityInfoCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/info-card/Cards/ActivityInfoCard.svelte -------------------------------------------------------------------------------- /src/components/info-card/Cards/DefaultItemCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/info-card/Cards/DefaultItemCard.svelte -------------------------------------------------------------------------------- /src/components/info-card/Cards/EffectInfoCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/info-card/Cards/EffectInfoCard.svelte -------------------------------------------------------------------------------- /src/components/info-card/Cards/InventoryItemCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/info-card/Cards/InventoryItemCard.svelte -------------------------------------------------------------------------------- /src/components/info-card/Cards/SpellItemCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/info-card/Cards/SpellItemCard.svelte -------------------------------------------------------------------------------- /src/components/info-card/Parts/ItemCardPills.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/info-card/Parts/ItemCardPills.svelte -------------------------------------------------------------------------------- /src/components/info-card/info-card.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/info-card/info-card.svelte.ts -------------------------------------------------------------------------------- /src/components/inputs/Checkbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/Checkbox.svelte -------------------------------------------------------------------------------- /src/components/inputs/CheckboxQuadrone.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/CheckboxQuadrone.svelte -------------------------------------------------------------------------------- /src/components/inputs/ContentEditableFormField.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/ContentEditableFormField.svelte -------------------------------------------------------------------------------- /src/components/inputs/DocumentTag.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/DocumentTag.svelte -------------------------------------------------------------------------------- /src/components/inputs/DtypeInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/DtypeInput.svelte -------------------------------------------------------------------------------- /src/components/inputs/InlineTextDropdownList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/InlineTextDropdownList.svelte -------------------------------------------------------------------------------- /src/components/inputs/NumberInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/NumberInput.svelte -------------------------------------------------------------------------------- /src/components/inputs/NumberInputQuadrone.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/NumberInputQuadrone.svelte -------------------------------------------------------------------------------- /src/components/inputs/Select.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/Select.svelte -------------------------------------------------------------------------------- /src/components/inputs/SelectOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/SelectOptions.svelte -------------------------------------------------------------------------------- /src/components/inputs/SelectQuadrone.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/SelectQuadrone.svelte -------------------------------------------------------------------------------- /src/components/inputs/StringTags.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/StringTags.svelte -------------------------------------------------------------------------------- /src/components/inputs/TextInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/TextInput.svelte -------------------------------------------------------------------------------- /src/components/inputs/TextInputQuadrone.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/inputs/TextInputQuadrone.svelte -------------------------------------------------------------------------------- /src/components/item-grid/GridPaneFavoriteIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-grid/GridPaneFavoriteIcon.svelte -------------------------------------------------------------------------------- /src/components/item-list/ActiveEffectsMarker.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/ActiveEffectsMarker.svelte -------------------------------------------------------------------------------- /src/components/item-list/ActivityUseButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/ActivityUseButton.svelte -------------------------------------------------------------------------------- /src/components/item-list/ActivityUses.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/ActivityUses.svelte -------------------------------------------------------------------------------- /src/components/item-list/EffectSummary.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/EffectSummary.svelte -------------------------------------------------------------------------------- /src/components/item-list/InlineActivitiesList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/InlineActivitiesList.svelte -------------------------------------------------------------------------------- /src/components/item-list/InlineFavoriteIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/InlineFavoriteIcon.svelte -------------------------------------------------------------------------------- /src/components/item-list/ItemCreateButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/ItemCreateButton.svelte -------------------------------------------------------------------------------- /src/components/item-list/ItemFilterLayoutToggle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/ItemFilterLayoutToggle.svelte -------------------------------------------------------------------------------- /src/components/item-list/ItemImage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/ItemImage.svelte -------------------------------------------------------------------------------- /src/components/item-list/ItemName.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/ItemName.svelte -------------------------------------------------------------------------------- /src/components/item-list/ItemSummary.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/ItemSummary.svelte -------------------------------------------------------------------------------- /src/components/item-list/ItemTableFooter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/ItemTableFooter.svelte -------------------------------------------------------------------------------- /src/components/item-list/ItemUseButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/ItemUseButton.svelte -------------------------------------------------------------------------------- /src/components/item-list/ItemUses.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/ItemUses.svelte -------------------------------------------------------------------------------- /src/components/item-list/controls/AttuneControl.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/controls/AttuneControl.svelte -------------------------------------------------------------------------------- /src/components/item-list/controls/EquipControl.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/controls/EquipControl.svelte -------------------------------------------------------------------------------- /src/components/item-list/controls/ItemControl.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/controls/ItemControl.svelte -------------------------------------------------------------------------------- /src/components/item-list/controls/ItemDeleteControl.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/controls/ItemDeleteControl.svelte -------------------------------------------------------------------------------- /src/components/item-list/item-table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/item-table.less -------------------------------------------------------------------------------- /src/components/item-list/v1/EffectTableRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/v1/EffectTableRow.svelte -------------------------------------------------------------------------------- /src/components/item-list/v1/ItemTable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/v1/ItemTable.svelte -------------------------------------------------------------------------------- /src/components/item-list/v1/ItemTableCell.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/v1/ItemTableCell.svelte -------------------------------------------------------------------------------- /src/components/item-list/v1/ItemTableColumn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/v1/ItemTableColumn.svelte -------------------------------------------------------------------------------- /src/components/item-list/v1/ItemTableHeaderRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/v1/ItemTableHeaderRow.svelte -------------------------------------------------------------------------------- /src/components/item-list/v1/ItemTableRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/v1/ItemTableRow.svelte -------------------------------------------------------------------------------- /src/components/item-list/v2/ItemTableRowV2.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/item-list/v2/ItemTableRowV2.svelte -------------------------------------------------------------------------------- /src/components/layout/DelimitedTruncatedContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/layout/DelimitedTruncatedContent.svelte -------------------------------------------------------------------------------- /src/components/layout/HorizontalLineSeparator.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/layout/HorizontalLineSeparator.svelte -------------------------------------------------------------------------------- /src/components/layout/VerticalLineSeparator.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/layout/VerticalLineSeparator.svelte -------------------------------------------------------------------------------- /src/components/listbox/Listbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/listbox/Listbox.svelte -------------------------------------------------------------------------------- /src/components/listbox/SelectionListbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/listbox/SelectionListbox.svelte -------------------------------------------------------------------------------- /src/components/listbox/SelectionListboxToolbar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/listbox/SelectionListboxToolbar.svelte -------------------------------------------------------------------------------- /src/components/listbox/SortingListbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/listbox/SortingListbox.svelte -------------------------------------------------------------------------------- /src/components/listbox/listbox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/listbox/listbox.less -------------------------------------------------------------------------------- /src/components/notice/Notice.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/notice/Notice.svelte -------------------------------------------------------------------------------- /src/components/pips/Pips.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/pips/Pips.svelte -------------------------------------------------------------------------------- /src/components/pips/SpellPip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/pips/SpellPip.svelte -------------------------------------------------------------------------------- /src/components/pips/SpellPips.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/pips/SpellPips.svelte -------------------------------------------------------------------------------- /src/components/pips/pips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/pips/pips.less -------------------------------------------------------------------------------- /src/components/properties/PropertyTag.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/properties/PropertyTag.svelte -------------------------------------------------------------------------------- /src/components/spellbook/SpellComponents.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/spellbook/SpellComponents.svelte -------------------------------------------------------------------------------- /src/components/spellbook/SpellPrepareControl.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/spellbook/SpellPrepareControl.svelte -------------------------------------------------------------------------------- /src/components/spellbook/SpellSlotConfigButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/spellbook/SpellSlotConfigButton.svelte -------------------------------------------------------------------------------- /src/components/spellbook/SpellSlotManagement.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/spellbook/SpellSlotManagement.svelte -------------------------------------------------------------------------------- /src/components/spellbook/SpellSlotUses.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/spellbook/SpellSlotUses.svelte -------------------------------------------------------------------------------- /src/components/spellbook/SpellbookClassFilter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/spellbook/SpellbookClassFilter.svelte -------------------------------------------------------------------------------- /src/components/spellbook/SpellbookFooter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/spellbook/SpellbookFooter.svelte -------------------------------------------------------------------------------- /src/components/spellbook/SpellbookGrid.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/spellbook/SpellbookGrid.svelte -------------------------------------------------------------------------------- /src/components/spellbook/SpellbookList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/spellbook/SpellbookList.svelte -------------------------------------------------------------------------------- /src/components/table-quadrone/TidyEffectSummary.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table-quadrone/TidyEffectSummary.svelte -------------------------------------------------------------------------------- /src/components/table-quadrone/TidyEffectTableRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table-quadrone/TidyEffectTableRow.svelte -------------------------------------------------------------------------------- /src/components/table-quadrone/TidyItemSummary.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table-quadrone/TidyItemSummary.svelte -------------------------------------------------------------------------------- /src/components/table-quadrone/TidyItemTableRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table-quadrone/TidyItemTableRow.svelte -------------------------------------------------------------------------------- /src/components/table-quadrone/TidyTable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table-quadrone/TidyTable.svelte -------------------------------------------------------------------------------- /src/components/table-quadrone/TidyTableCell.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table-quadrone/TidyTableCell.svelte -------------------------------------------------------------------------------- /src/components/table-quadrone/TidyTableHeaderRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table-quadrone/TidyTableHeaderRow.svelte -------------------------------------------------------------------------------- /src/components/table-quadrone/TidyTableRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table-quadrone/TidyTableRow.svelte -------------------------------------------------------------------------------- /src/components/table/TidyTable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table/TidyTable.svelte -------------------------------------------------------------------------------- /src/components/table/TidyTableCell.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table/TidyTableCell.svelte -------------------------------------------------------------------------------- /src/components/table/TidyTableHeaderCell.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table/TidyTableHeaderCell.svelte -------------------------------------------------------------------------------- /src/components/table/TidyTableHeaderRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table/TidyTableHeaderRow.svelte -------------------------------------------------------------------------------- /src/components/table/TidyTableRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table/TidyTableRow.svelte -------------------------------------------------------------------------------- /src/components/table/TidyTableToggleIcon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table/TidyTableToggleIcon.svelte -------------------------------------------------------------------------------- /src/components/table/tidy-table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/table/tidy-table.less -------------------------------------------------------------------------------- /src/components/tabs/TabContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/tabs/TabContent.svelte -------------------------------------------------------------------------------- /src/components/tabs/TabContents.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/tabs/TabContents.svelte -------------------------------------------------------------------------------- /src/components/tabs/Tabs.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/tabs/Tabs.svelte -------------------------------------------------------------------------------- /src/components/tabs/UnderlinedTabStrip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/tabs/UnderlinedTabStrip.less -------------------------------------------------------------------------------- /src/components/tabs/UnderlinedTabStrip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/tabs/UnderlinedTabStrip.svelte -------------------------------------------------------------------------------- /src/components/tabs/VerticalTabs.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/tabs/VerticalTabs.svelte -------------------------------------------------------------------------------- /src/components/toggles/ConditionToggle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/toggles/ConditionToggle.svelte -------------------------------------------------------------------------------- /src/components/toggles/FieldToggle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/toggles/FieldToggle.svelte -------------------------------------------------------------------------------- /src/components/toggles/PillSwitch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/toggles/PillSwitch.svelte -------------------------------------------------------------------------------- /src/components/toggles/PropertyToggle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/toggles/PropertyToggle.svelte -------------------------------------------------------------------------------- /src/components/toggles/TidySwitch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/toggles/TidySwitch.svelte -------------------------------------------------------------------------------- /src/components/toggles/_toggles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/toggles/_toggles.less -------------------------------------------------------------------------------- /src/components/trackers/InlineQuantityTracker.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/trackers/InlineQuantityTracker.svelte -------------------------------------------------------------------------------- /src/components/utility-bar/Search.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/utility-bar/Search.svelte -------------------------------------------------------------------------------- /src/components/utility-bar/UtilityToolbar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/utility-bar/UtilityToolbar.svelte -------------------------------------------------------------------------------- /src/components/utility-bar/UtilityToolbarCommand.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/utility-bar/UtilityToolbarCommand.svelte -------------------------------------------------------------------------------- /src/components/utility-bar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/utility-bar/types.ts -------------------------------------------------------------------------------- /src/components/utility/InlineSvg.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/components/utility/InlineSvg.svelte -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/context-menu/FloatingContextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/context-menu/FloatingContextMenu.ts -------------------------------------------------------------------------------- /src/context-menu/context-menu.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/context-menu/context-menu.types.ts -------------------------------------------------------------------------------- /src/context-menu/tidy5e-active-effect-context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/context-menu/tidy5e-active-effect-context-menu.ts -------------------------------------------------------------------------------- /src/context-menu/tidy5e-activities-context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/context-menu/tidy5e-activities-context-menu.ts -------------------------------------------------------------------------------- /src/context-menu/tidy5e-context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/context-menu/tidy5e-context-menu.ts -------------------------------------------------------------------------------- /src/context-menu/tidy5e-encounter-context.menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/context-menu/tidy5e-encounter-context.menu.ts -------------------------------------------------------------------------------- /src/context-menu/tidy5e-facility-context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/context-menu/tidy5e-facility-context-menu.ts -------------------------------------------------------------------------------- /src/context-menu/tidy5e-group-context-menu-quadrone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/context-menu/tidy5e-group-context-menu-quadrone.ts -------------------------------------------------------------------------------- /src/context-menu/tidy5e-group-context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/context-menu/tidy5e-group-context-menu.ts -------------------------------------------------------------------------------- /src/context-menu/tidy5e-item-context-menu-quadrone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/context-menu/tidy5e-item-context-menu-quadrone.ts -------------------------------------------------------------------------------- /src/context-menu/tidy5e-item-context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/context-menu/tidy5e-item-context-menu.ts -------------------------------------------------------------------------------- /src/context-menu/tidy5e-journal-context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/context-menu/tidy5e-journal-context-menu.ts -------------------------------------------------------------------------------- /src/context-menu/tidy5e-keyed-favorite-context-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/context-menu/tidy5e-keyed-favorite-context-menu.ts -------------------------------------------------------------------------------- /src/dnd5e 5.2 compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/dnd5e 5.2 compatibility.md -------------------------------------------------------------------------------- /src/events/clickOutside.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/events/clickOutside.svelte.ts -------------------------------------------------------------------------------- /src/events/custom-event-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/events/custom-event-types.d.ts -------------------------------------------------------------------------------- /src/features/actions/actions.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/actions/actions.svelte.ts -------------------------------------------------------------------------------- /src/features/activities/activities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/activities/activities.ts -------------------------------------------------------------------------------- /src/features/attribute-pins/AttributePins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/attribute-pins/AttributePins.ts -------------------------------------------------------------------------------- /src/features/caching/ItemTableToggleCacheService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/caching/ItemTableToggleCacheService.ts -------------------------------------------------------------------------------- /src/features/combat/CombatantSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/combat/CombatantSettings.ts -------------------------------------------------------------------------------- /src/features/containers/Container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/containers/Container.ts -------------------------------------------------------------------------------- /src/features/drag-and-drop/drag-and-drop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/drag-and-drop/drag-and-drop.ts -------------------------------------------------------------------------------- /src/features/enrichers/Enrichers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/enrichers/Enrichers.ts -------------------------------------------------------------------------------- /src/features/exhaustion/exhaustion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/exhaustion/exhaustion.ts -------------------------------------------------------------------------------- /src/features/exhaustion/exhaustion.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/exhaustion/exhaustion.types.ts -------------------------------------------------------------------------------- /src/features/expand-collapse/ExpansionTracker.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/expand-collapse/ExpansionTracker.svelte.ts -------------------------------------------------------------------------------- /src/features/facility/facility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/facility/facility.ts -------------------------------------------------------------------------------- /src/features/filtering/ItemFilterService.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/filtering/ItemFilterService.svelte.ts -------------------------------------------------------------------------------- /src/features/item/ItemContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/item/ItemContext.ts -------------------------------------------------------------------------------- /src/features/journal/JournalQuadrone.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/journal/JournalQuadrone.svelte.ts -------------------------------------------------------------------------------- /src/features/notifications/TidyNotificationsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/notifications/TidyNotificationsManager.ts -------------------------------------------------------------------------------- /src/features/properties/ItemProperties.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/properties/ItemProperties.svelte.ts -------------------------------------------------------------------------------- /src/features/properties/properties.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/properties/properties.types.ts -------------------------------------------------------------------------------- /src/features/rarity-colors/RarityColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/rarity-colors/RarityColors.ts -------------------------------------------------------------------------------- /src/features/reactivity/reactivity.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/reactivity/reactivity.types.ts -------------------------------------------------------------------------------- /src/features/ready-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/ready-hooks.ts -------------------------------------------------------------------------------- /src/features/search/search.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/search/search.svelte.ts -------------------------------------------------------------------------------- /src/features/sections/CharacterSheetSections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/sections/CharacterSheetSections.ts -------------------------------------------------------------------------------- /src/features/sections/GroupSheetSections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/sections/GroupSheetSections.ts -------------------------------------------------------------------------------- /src/features/sections/Inventory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/sections/Inventory.ts -------------------------------------------------------------------------------- /src/features/sections/ItemVisibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/sections/ItemVisibility.ts -------------------------------------------------------------------------------- /src/features/sections/NpcSheetSections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/sections/NpcSheetSections.ts -------------------------------------------------------------------------------- /src/features/sections/SectionActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/sections/SectionActions.ts -------------------------------------------------------------------------------- /src/features/sections/SheetSections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/sections/SheetSections.ts -------------------------------------------------------------------------------- /src/features/sections/sections.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/sections/sections.types.ts -------------------------------------------------------------------------------- /src/features/sheet-header-controls/header-controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/sheet-header-controls/header-controls.ts -------------------------------------------------------------------------------- /src/features/sheet-pins/SheetPinsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/sheet-pins/SheetPinsProvider.ts -------------------------------------------------------------------------------- /src/features/spell-school/SpellSchool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/spell-school/SpellSchool.ts -------------------------------------------------------------------------------- /src/features/user-preferences/UserPreferencesService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/user-preferences/UserPreferencesService.ts -------------------------------------------------------------------------------- /src/features/user-preferences/user-preferences.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/user-preferences/user-preferences.types.ts -------------------------------------------------------------------------------- /src/features/visibility-levels/VisibilityLevels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/features/visibility-levels/VisibilityLevels.ts -------------------------------------------------------------------------------- /src/foundry/TidyFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/foundry/TidyFlags.ts -------------------------------------------------------------------------------- /src/foundry/TidyFlags.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/foundry/TidyFlags.types.ts -------------------------------------------------------------------------------- /src/foundry/TidyHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/foundry/TidyHooks.ts -------------------------------------------------------------------------------- /src/foundry/TidyHooks.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/foundry/TidyHooks.types.ts -------------------------------------------------------------------------------- /src/foundry/config.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/foundry/config.types.ts -------------------------------------------------------------------------------- /src/foundry/dnd5e.dataModels.fields.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/foundry/dnd5e.dataModels.fields.types.d.ts -------------------------------------------------------------------------------- /src/foundry/dnd5e.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/foundry/dnd5e.types.ts -------------------------------------------------------------------------------- /src/foundry/foundry-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/foundry/foundry-adapter.ts -------------------------------------------------------------------------------- /src/foundry/foundry-and-system.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/foundry/foundry-and-system.d.ts -------------------------------------------------------------------------------- /src/foundry/foundry.data.fields.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/foundry/foundry.data.fields.types.d.ts -------------------------------------------------------------------------------- /src/foundry/foundry.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/foundry/foundry.types.ts -------------------------------------------------------------------------------- /src/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/integration/README.md -------------------------------------------------------------------------------- /src/integration/integration-classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/integration/integration-classes.ts -------------------------------------------------------------------------------- /src/integration/integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/integration/integration.ts -------------------------------------------------------------------------------- /src/integration/modules/Drakkenheim/DrakkenheimCore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/integration/modules/Drakkenheim/DrakkenheimCore.ts -------------------------------------------------------------------------------- /src/integration/modules/PopoutModuleIntegration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/integration/modules/PopoutModuleIntegration.ts -------------------------------------------------------------------------------- /src/integration/third-party/Coloris.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/integration/third-party/Coloris.svelte.ts -------------------------------------------------------------------------------- /src/integration/third-party/coloris.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/integration/third-party/coloris.less -------------------------------------------------------------------------------- /src/keybindings/keybind-init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/keybindings/keybind-init.ts -------------------------------------------------------------------------------- /src/less/classic/classic.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/classic.less -------------------------------------------------------------------------------- /src/less/classic/compatibility/_apps-items-lists.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/compatibility/_apps-items-lists.less -------------------------------------------------------------------------------- /src/less/classic/compatibility/_tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/compatibility/_tabs.less -------------------------------------------------------------------------------- /src/less/classic/components/accordion.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/components/accordion.less -------------------------------------------------------------------------------- /src/less/classic/components/info-card.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/components/info-card.less -------------------------------------------------------------------------------- /src/less/classic/components/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/components/tabs.less -------------------------------------------------------------------------------- /src/less/classic/partials/_actor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/partials/_actor.less -------------------------------------------------------------------------------- /src/less/classic/partials/_application-shell.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/partials/_application-shell.less -------------------------------------------------------------------------------- /src/less/classic/partials/_buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/partials/_buttons.less -------------------------------------------------------------------------------- /src/less/classic/partials/_colors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/partials/_colors.less -------------------------------------------------------------------------------- /src/less/classic/partials/_forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/partials/_forms.less -------------------------------------------------------------------------------- /src/less/classic/partials/_items.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/partials/_items.less -------------------------------------------------------------------------------- /src/less/classic/partials/_layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/partials/_layout.less -------------------------------------------------------------------------------- /src/less/classic/partials/_reset-v2.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/partials/_reset-v2.less -------------------------------------------------------------------------------- /src/less/classic/partials/_settings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/classic/partials/_settings.less -------------------------------------------------------------------------------- /src/less/floating-context-menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/floating-context-menu.less -------------------------------------------------------------------------------- /src/less/quadrone/actors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/actors.less -------------------------------------------------------------------------------- /src/less/quadrone/apps.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/apps.less -------------------------------------------------------------------------------- /src/less/quadrone/character-parts/favorites.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/character-parts/favorites.less -------------------------------------------------------------------------------- /src/less/quadrone/character-parts/tab-bastion.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/character-parts/tab-bastion.less -------------------------------------------------------------------------------- /src/less/quadrone/character-parts/tab-biography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/character-parts/tab-biography.less -------------------------------------------------------------------------------- /src/less/quadrone/character-parts/tab-effects.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/character-parts/tab-effects.less -------------------------------------------------------------------------------- /src/less/quadrone/character.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/character.less -------------------------------------------------------------------------------- /src/less/quadrone/components.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components.less -------------------------------------------------------------------------------- /src/less/quadrone/components/action-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/action-bar.less -------------------------------------------------------------------------------- /src/less/quadrone/components/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/buttons.less -------------------------------------------------------------------------------- /src/less/quadrone/components/configurable-source.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/configurable-source.less -------------------------------------------------------------------------------- /src/less/quadrone/components/filigrees.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/filigrees.less -------------------------------------------------------------------------------- /src/less/quadrone/components/info-card.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/info-card.less -------------------------------------------------------------------------------- /src/less/quadrone/components/inputs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/inputs.less -------------------------------------------------------------------------------- /src/less/quadrone/components/item-descriptions.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/item-descriptions.less -------------------------------------------------------------------------------- /src/less/quadrone/components/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/layout.less -------------------------------------------------------------------------------- /src/less/quadrone/components/listboxes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/listboxes.less -------------------------------------------------------------------------------- /src/less/quadrone/components/meters.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/meters.less -------------------------------------------------------------------------------- /src/less/quadrone/components/pills.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/pills.less -------------------------------------------------------------------------------- /src/less/quadrone/components/pins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/pins.less -------------------------------------------------------------------------------- /src/less/quadrone/components/pips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/pips.less -------------------------------------------------------------------------------- /src/less/quadrone/components/separators.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/separators.less -------------------------------------------------------------------------------- /src/less/quadrone/components/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/tabs.less -------------------------------------------------------------------------------- /src/less/quadrone/components/text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/text.less -------------------------------------------------------------------------------- /src/less/quadrone/components/toggles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/toggles.less -------------------------------------------------------------------------------- /src/less/quadrone/components/trackers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/components/trackers.less -------------------------------------------------------------------------------- /src/less/quadrone/dialogs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/dialogs.less -------------------------------------------------------------------------------- /src/less/quadrone/editors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/editors.less -------------------------------------------------------------------------------- /src/less/quadrone/encounter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/encounter.less -------------------------------------------------------------------------------- /src/less/quadrone/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/forms.less -------------------------------------------------------------------------------- /src/less/quadrone/group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/group.less -------------------------------------------------------------------------------- /src/less/quadrone/inventory.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/inventory.less -------------------------------------------------------------------------------- /src/less/quadrone/items.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/items.less -------------------------------------------------------------------------------- /src/less/quadrone/npc.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/npc.less -------------------------------------------------------------------------------- /src/less/quadrone/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/reset.less -------------------------------------------------------------------------------- /src/less/quadrone/sheets.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/sheets.less -------------------------------------------------------------------------------- /src/less/quadrone/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/tables.less -------------------------------------------------------------------------------- /src/less/quadrone/tooltips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/tooltips.less -------------------------------------------------------------------------------- /src/less/quadrone/typography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/typography.less -------------------------------------------------------------------------------- /src/less/quadrone/vehicle.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/quadrone/vehicle.less -------------------------------------------------------------------------------- /src/less/shared/dnd5e2-ports.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/shared/dnd5e2-ports.less -------------------------------------------------------------------------------- /src/less/tidy5e.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/tidy5e.less -------------------------------------------------------------------------------- /src/less/util.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/util.less -------------------------------------------------------------------------------- /src/less/variables-quadrone.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/variables-quadrone.less -------------------------------------------------------------------------------- /src/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/less/variables.less -------------------------------------------------------------------------------- /src/main.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/main.svelte.ts -------------------------------------------------------------------------------- /src/migrations/BulkMigrations.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/migrations/BulkMigrations.svelte -------------------------------------------------------------------------------- /src/migrations/BulkMigrationsApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/migrations/BulkMigrationsApplication.ts -------------------------------------------------------------------------------- /src/migrations/MigrationTally.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/migrations/MigrationTally.ts -------------------------------------------------------------------------------- /src/migrations/migration.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/migrations/migration.types.ts -------------------------------------------------------------------------------- /src/migrations/v3/CcssToTidyMigration.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/migrations/v3/CcssToTidyMigration.svelte -------------------------------------------------------------------------------- /src/migrations/v3/ccss-to-tidy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/migrations/v3/ccss-to-tidy.ts -------------------------------------------------------------------------------- /src/mixins/DragAndDropBaseMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/mixins/DragAndDropBaseMixin.ts -------------------------------------------------------------------------------- /src/mixins/SvelteApplicationMixin.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/mixins/SvelteApplicationMixin.svelte.ts -------------------------------------------------------------------------------- /src/mixins/Tidy5eActorSheetBaseMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/mixins/Tidy5eActorSheetBaseMixin.ts -------------------------------------------------------------------------------- /src/mixins/TidyDocumentSheetMixin.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/mixins/TidyDocumentSheetMixin.svelte.ts -------------------------------------------------------------------------------- /src/runtime/ActorItemRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/ActorItemRuntime.ts -------------------------------------------------------------------------------- /src/runtime/ActorPortraitRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/ActorPortraitRuntime.ts -------------------------------------------------------------------------------- /src/runtime/ActorSheetQuadroneRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/ActorSheetQuadroneRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/ActorSheetRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/ActorSheetRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/HandlebarsTemplateRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/HandlebarsTemplateRenderer.ts -------------------------------------------------------------------------------- /src/runtime/ItemSummaryRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/ItemSummaryRuntime.ts -------------------------------------------------------------------------------- /src/runtime/action-list/ActionListRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/action-list/ActionListRuntime.ts -------------------------------------------------------------------------------- /src/runtime/actor-traits/CustomActorTraitsRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/actor-traits/CustomActorTraitsRuntime.ts -------------------------------------------------------------------------------- /src/runtime/actor/ActorInspirationRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/actor/ActorInspirationRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/actor/GroupSheetClassicRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/actor/GroupSheetClassicRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/actor/GroupSheetQuadroneRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/actor/GroupSheetQuadroneRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/actor/NpcSheetClassicRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/actor/NpcSheetClassicRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/actor/NpcSheetQuadroneRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/actor/NpcSheetQuadroneRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/actor/VehicleSheetClassicRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/actor/VehicleSheetClassicRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/actor/VehicleSheetQuadroneRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/actor/VehicleSheetQuadroneRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/content/CustomContentManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/content/CustomContentManager.ts -------------------------------------------------------------------------------- /src/runtime/header-controls/HeaderControlsRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/header-controls/HeaderControlsRuntime.ts -------------------------------------------------------------------------------- /src/runtime/item/ColumnsLoadout.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/item/ColumnsLoadout.svelte.ts -------------------------------------------------------------------------------- /src/runtime/item/ItemFilterRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/item/ItemFilterRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/item/ItemSheetQuadroneRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/item/ItemSheetQuadroneRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/item/ItemSheetRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/item/ItemSheetRuntime.ts -------------------------------------------------------------------------------- /src/runtime/item/ItemSortRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/item/ItemSortRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/item/TabDocumentItemTypesRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/item/TabDocumentItemTypesRuntime.ts -------------------------------------------------------------------------------- /src/runtime/item/default-item-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/item/default-item-filters.ts -------------------------------------------------------------------------------- /src/runtime/item/default-item-sorts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/item/default-item-sorts.ts -------------------------------------------------------------------------------- /src/runtime/item/item-sheet-tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/item/item-sheet-tabs.ts -------------------------------------------------------------------------------- /src/runtime/item/item.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/item/item.types.ts -------------------------------------------------------------------------------- /src/runtime/runtime-init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/runtime-init.ts -------------------------------------------------------------------------------- /src/runtime/tab/TabManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/tab/TabManager.ts -------------------------------------------------------------------------------- /src/runtime/tables/ActivityColumnRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/tables/ActivityColumnRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/tables/EffectColumnRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/tables/EffectColumnRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/tables/GroupMemberColumnRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/tables/GroupMemberColumnRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/tables/ItemColumnRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/tables/ItemColumnRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/tables/TableColumnRuntimeBase.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/tables/TableColumnRuntimeBase.svelte.ts -------------------------------------------------------------------------------- /src/runtime/tables/TableRowActionsRuntime.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/tables/TableRowActionsRuntime.svelte.ts -------------------------------------------------------------------------------- /src/runtime/tables/default-activity-columns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/tables/default-activity-columns.ts -------------------------------------------------------------------------------- /src/runtime/tables/default-item-columns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/tables/default-item-columns.ts -------------------------------------------------------------------------------- /src/runtime/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/runtime/types.ts -------------------------------------------------------------------------------- /src/settings/ResetSettingsDialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/settings/ResetSettingsDialog.ts -------------------------------------------------------------------------------- /src/settings/flags.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/settings/settings-data-models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/settings/settings-data-models.ts -------------------------------------------------------------------------------- /src/settings/settings.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/settings/settings.svelte.ts -------------------------------------------------------------------------------- /src/settings/settings.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/settings/settings.types.ts -------------------------------------------------------------------------------- /src/sheets/CustomContentRendererV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/CustomContentRendererV2.ts -------------------------------------------------------------------------------- /src/sheets/classic/Tidy5eCharacterSheet.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/Tidy5eCharacterSheet.svelte.ts -------------------------------------------------------------------------------- /src/sheets/classic/Tidy5eGroupSheetClassic.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/Tidy5eGroupSheetClassic.svelte.ts -------------------------------------------------------------------------------- /src/sheets/classic/Tidy5eItemSheetClassic.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/Tidy5eItemSheetClassic.svelte.ts -------------------------------------------------------------------------------- /src/sheets/classic/Tidy5eKgarVehicleSheet.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/Tidy5eKgarVehicleSheet.svelte.ts -------------------------------------------------------------------------------- /src/sheets/classic/Tidy5eNpcSheet.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/Tidy5eNpcSheet.svelte.ts -------------------------------------------------------------------------------- /src/sheets/classic/actor/AcShield.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/AcShield.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/AcShieldBase.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/AcShieldBase.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/AcShieldVehicle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/AcShieldVehicle.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/ActorConditions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/ActorConditions.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/ActorEffectsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/ActorEffectsTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/ActorHeaderStats.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/ActorHeaderStats.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/ActorMovement.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/ActorMovement.less -------------------------------------------------------------------------------- /src/sheets/classic/actor/ActorMovement.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/ActorMovement.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/ActorName.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/ActorName.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/ActorPortrait.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/ActorPortrait.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/ActorProfile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/ActorProfile.less -------------------------------------------------------------------------------- /src/sheets/classic/actor/ActorProfile.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/ActorProfile.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/ActorWarnings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/ActorWarnings.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/AttributeBlock.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/AttributeBlock.less -------------------------------------------------------------------------------- /src/sheets/classic/actor/AttributeBlock.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/AttributeBlock.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/AttunementTracker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/AttunementTracker.less -------------------------------------------------------------------------------- /src/sheets/classic/actor/AttunementTracker.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/AttunementTracker.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/BlockScore.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/BlockScore.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/Currency.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/Currency.less -------------------------------------------------------------------------------- /src/sheets/classic/actor/Currency.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/Currency.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/DeathSaves.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/DeathSaves.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/EncumbranceBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/EncumbranceBar.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/ExhaustionInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/ExhaustionInput.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/ExhaustionTracker.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/ExhaustionTracker.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/InitiativeBlock.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/InitiativeBlock.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/InventoryGrid.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/InventoryGrid.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/InventoryList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/InventoryList.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/LevelUpDropdown.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/LevelUpDropdown.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/LimitedHeader.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/LimitedHeader.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/NoSpells.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/NoSpells.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/RollableBlockTitle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/RollableBlockTitle.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/SheetEditModeToggle.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/SheetEditModeToggle.less -------------------------------------------------------------------------------- /src/sheets/classic/actor/SkillsList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/SkillsList.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/SpecialSaves.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/SpecialSaves.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/TabFooter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/TabFooter.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/TempHp.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/TempHp.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/tabs/ActorActionsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/tabs/ActorActionsTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/tabs/ActorInventoryTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/tabs/ActorInventoryTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/tabs/ActorJournalTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/tabs/ActorJournalTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/tabs/SpecialTraitsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/tabs/SpecialTraitsTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/traits/TraitSection.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/traits/TraitSection.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/traits/TraitSectionTags.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/traits/TraitSectionTags.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/traits/Traits.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/traits/Traits.svelte -------------------------------------------------------------------------------- /src/sheets/classic/actor/traits/_traits.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/actor/traits/_traits.less -------------------------------------------------------------------------------- /src/sheets/classic/character/CharacterSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/character/CharacterSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/character/CharacterSheetFull.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/character/CharacterSheetFull.svelte -------------------------------------------------------------------------------- /src/sheets/classic/character/parts/Favorites.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/character/parts/Favorites.svelte -------------------------------------------------------------------------------- /src/sheets/classic/character/parts/HitDice.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/character/parts/HitDice.svelte -------------------------------------------------------------------------------- /src/sheets/classic/character/parts/Inspiration.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/character/parts/Inspiration.svelte -------------------------------------------------------------------------------- /src/sheets/classic/character/parts/Rest.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/character/parts/Rest.svelte -------------------------------------------------------------------------------- /src/sheets/classic/container/CapacityBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/container/CapacityBar.svelte -------------------------------------------------------------------------------- /src/sheets/classic/container/InlineContainerView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/container/InlineContainerView.svelte -------------------------------------------------------------------------------- /src/sheets/classic/encounter/EncounterSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/encounter/EncounterSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/group/GroupSheet.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/group/GroupSheet.less -------------------------------------------------------------------------------- /src/sheets/classic/group/GroupSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/group/GroupSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/group/parts/GroupHitPoints.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/group/parts/GroupHitPoints.svelte -------------------------------------------------------------------------------- /src/sheets/classic/group/parts/GroupLanguages.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/group/parts/GroupLanguages.svelte -------------------------------------------------------------------------------- /src/sheets/classic/group/parts/GroupMemberList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/group/parts/GroupMemberList.svelte -------------------------------------------------------------------------------- /src/sheets/classic/group/parts/GroupSkills.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/group/parts/GroupSkills.svelte -------------------------------------------------------------------------------- /src/sheets/classic/group/tabs/GroupInventoryTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/group/tabs/GroupInventoryTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/group/tabs/GroupMembersTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/group/tabs/GroupMembersTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/BackgroundSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/BackgroundSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/ClassSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/ClassSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/ConsumableSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/ConsumableSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/ContainerSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/ContainerSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/EquipmentSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/EquipmentSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/FacilitySheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/FacilitySheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/FeatSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/FeatSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/LootSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/LootSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/SpeciesSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/SpeciesSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/SpellSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/SpellSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/SubclassSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/SubclassSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/ToolSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/ToolSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/TypeNotFoundSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/TypeNotFoundSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/WeaponSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/WeaponSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/parts/DetailsMountable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/parts/DetailsMountable.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/parts/FieldActivation.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/parts/FieldActivation.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/parts/FieldDamage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/parts/FieldDamage.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/parts/FieldDuration.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/parts/FieldDuration.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/parts/FieldRange.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/parts/FieldRange.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/parts/FieldTargets.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/parts/FieldTargets.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/parts/FieldUses.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/parts/FieldUses.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/parts/ItemDescriptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/parts/ItemDescriptions.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/parts/ItemHeaderToggles.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/parts/ItemHeaderToggles.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/parts/ItemProfilePicture.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/parts/ItemProfilePicture.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/parts/ItemProperties.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/parts/ItemProperties.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/tabs/ItemActivitiesTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/tabs/ItemActivitiesTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/tabs/ItemAdvancementTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/tabs/ItemAdvancementTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/tabs/ItemClassDetailsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/tabs/ItemClassDetailsTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/tabs/ItemDescriptionTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/tabs/ItemDescriptionTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/tabs/ItemFeatDetailsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/tabs/ItemFeatDetailsTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/tabs/ItemLootDetailsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/tabs/ItemLootDetailsTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/tabs/ItemSpellDetailsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/tabs/ItemSpellDetailsTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/item/tabs/ItemToolDetailsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/item/tabs/ItemToolDetailsTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/npc/NpcSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/npc/NpcSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/npc/NpcSheetFull.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/npc/NpcSheetFull.svelte -------------------------------------------------------------------------------- /src/sheets/classic/npc/NpcSheetLimited.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/npc/NpcSheetLimited.svelte -------------------------------------------------------------------------------- /src/sheets/classic/npc/parts/NpcHitPoints.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/npc/parts/NpcHitPoints.svelte -------------------------------------------------------------------------------- /src/sheets/classic/npc/parts/NpcLegendaryActions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/npc/parts/NpcLegendaryActions.svelte -------------------------------------------------------------------------------- /src/sheets/classic/npc/parts/NpcLoyaltyTracker.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/npc/parts/NpcLoyaltyTracker.svelte -------------------------------------------------------------------------------- /src/sheets/classic/npc/parts/NpcProfile.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/npc/parts/NpcProfile.svelte -------------------------------------------------------------------------------- /src/sheets/classic/npc/parts/NpcRest.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/npc/parts/NpcRest.svelte -------------------------------------------------------------------------------- /src/sheets/classic/npc/tabs/NpcAbilitiesTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/npc/tabs/NpcAbilitiesTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/npc/tabs/NpcBiographyTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/npc/tabs/NpcBiographyTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/npc/tabs/NpcEffectsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/npc/tabs/NpcEffectsTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/npc/tabs/NpcSpellbookTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/npc/tabs/NpcSpellbookTab.svelte -------------------------------------------------------------------------------- /src/sheets/classic/shared/ClassicControls.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/shared/ClassicControls.svelte -------------------------------------------------------------------------------- /src/sheets/classic/shared/ContainerPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/shared/ContainerPanel.svelte -------------------------------------------------------------------------------- /src/sheets/classic/shared/D20Icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/shared/D20Icon.svelte -------------------------------------------------------------------------------- /src/sheets/classic/shared/InlineCreatureType.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/shared/InlineCreatureType.svelte -------------------------------------------------------------------------------- /src/sheets/classic/shared/InlineSource.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/shared/InlineSource.svelte -------------------------------------------------------------------------------- /src/sheets/classic/shared/InlineToggleControl.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/shared/InlineToggleControl.svelte -------------------------------------------------------------------------------- /src/sheets/classic/shared/Source.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/shared/Source.svelte -------------------------------------------------------------------------------- /src/sheets/classic/vehicle/VehicleSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/vehicle/VehicleSheet.svelte -------------------------------------------------------------------------------- /src/sheets/classic/vehicle/VehicleSheetFull.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/vehicle/VehicleSheetFull.svelte -------------------------------------------------------------------------------- /src/sheets/classic/vehicle/VehicleSheetLimited.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/vehicle/VehicleSheetLimited.svelte -------------------------------------------------------------------------------- /src/sheets/classic/vehicle/parts/VehicleMovement.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/vehicle/parts/VehicleMovement.svelte -------------------------------------------------------------------------------- /src/sheets/classic/vehicle/parts/VehicleProfile.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/vehicle/parts/VehicleProfile.svelte -------------------------------------------------------------------------------- /src/sheets/classic/vehicle/tabs/VehicleCargoTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/classic/vehicle/tabs/VehicleCargoTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/Tidy5eGroupSheetQuadrone.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/Tidy5eGroupSheetQuadrone.svelte.ts -------------------------------------------------------------------------------- /src/sheets/quadrone/Tidy5eItemSheetQuadrone.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/Tidy5eItemSheetQuadrone.svelte.ts -------------------------------------------------------------------------------- /src/sheets/quadrone/Tidy5eNpcSheetQuadrone.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/Tidy5eNpcSheetQuadrone.svelte.ts -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/ActorLimitedSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/ActorLimitedSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/CharacterSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/CharacterSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/EncounterSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/EncounterSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/GroupSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/GroupSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/NpcSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/NpcSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/VehicleSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/VehicleSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/npc-parts/Legendaries.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/npc-parts/Legendaries.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/npc-parts/NpcExhaustionBar.svelte: -------------------------------------------------------------------------------- 1 | NPC Exhaustion Bar -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/npc-parts/NpcSidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/npc-parts/NpcSidebar.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/npc-parts/NpcSubtitle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/npc-parts/NpcSubtitle.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/npc-parts/NpcTraits.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/npc-parts/NpcTraits.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/parts/ActorHeaderStart.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/parts/ActorHeaderStart.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/parts/ActorPortrait.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/parts/ActorPortrait.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/parts/ActorTraitPills.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/parts/ActorTraitPills.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/parts/ActorTraitSize.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/parts/ActorTraitSize.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/parts/ProficiencyCycle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/parts/ProficiencyCycle.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/parts/SpellSlotTracker.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/parts/SpellSlotTracker.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/parts/ToolsCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/parts/ToolsCard.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/tabs/ActorEffectsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/tabs/ActorEffectsTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/tabs/ActorInventoryTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/tabs/ActorInventoryTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/tabs/ActorJournalTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/tabs/ActorJournalTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/tabs/ActorSpellbookTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/tabs/ActorSpellbookTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/tabs/GroupBastionsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/tabs/GroupBastionsTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/tabs/GroupInventoryTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/tabs/GroupInventoryTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/tabs/GroupMembersTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/tabs/GroupMembersTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/tabs/NpcBiographyTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/tabs/NpcBiographyTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/tabs/NpcStatblockTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/tabs/NpcStatblockTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/tabs/SidebarTabSkills.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/tabs/SidebarTabSkills.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/tabs/SidebarTabTraits.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/tabs/SidebarTabTraits.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/tabs/VehicleCargoTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/tabs/VehicleCargoTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/actor/tabs/VehicleCrewTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/actor/tabs/VehicleCrewTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/container/ContainerSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/container/ContainerSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/container/parts/CapacityBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/container/parts/CapacityBar.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/container/parts/InlineContainerContents.svelte: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sheets/quadrone/item/BackgroundSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/BackgroundSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/ClassSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/ClassSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/ConsumableSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/ConsumableSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/EquipmentSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/EquipmentSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/FacilitySheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/FacilitySheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/FeatSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/FeatSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/ItemDebugSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/ItemDebugSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/LootSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/LootSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/SpeciesSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/SpeciesSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/SpellSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/SpellSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/SubclassSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/SubclassSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/ToolSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/ToolSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/WeaponSheet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/WeaponSheet.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/columns/GroupXpColumn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/columns/GroupXpColumn.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/columns/ItemPriceColumn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/columns/ItemPriceColumn.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/columns/ItemRangeColumn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/columns/ItemRangeColumn.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/columns/ItemRollColumn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/columns/ItemRollColumn.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/columns/ItemTimeColumn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/columns/ItemTimeColumn.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/columns/ItemUsesColumn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/columns/ItemUsesColumn.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/parts/DetailsMountable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/parts/DetailsMountable.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/parts/FieldActivation.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/parts/FieldActivation.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/parts/FieldDamage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/parts/FieldDamage.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/parts/FieldDuration.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/parts/FieldDuration.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/parts/FieldRange.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/parts/FieldRange.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/parts/FieldTargets.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/parts/FieldTargets.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/parts/FieldUses.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/parts/FieldUses.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/parts/ItemHeaderStart.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/parts/ItemHeaderStart.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/parts/ItemImageBorder.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/parts/ItemImageBorder.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/parts/ItemProperties.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/parts/ItemProperties.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/parts/Sidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/parts/Sidebar.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/parts/SpellBlock.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/parts/SpellBlock.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/parts/header/ItemName.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/parts/header/ItemName.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/tabs/ItemActivitiesTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/tabs/ItemActivitiesTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/tabs/ItemAdvancementTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/tabs/ItemAdvancementTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/tabs/ItemEffectsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/tabs/ItemEffectsTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/tabs/ItemFeatDetailsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/tabs/ItemFeatDetailsTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/tabs/ItemLootDetailsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/tabs/ItemLootDetailsTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/item/tabs/ItemToolDetailsTab.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/item/tabs/ItemToolDetailsTab.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/ActionTables.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/ActionTables.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/ActorWarnings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/ActorWarnings.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/ConfigurableSource.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/ConfigurableSource.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/ContainerPanel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/ContainerPanel.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/EffectsTables.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/EffectsTables.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/ExpandCollapseButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/ExpandCollapseButton.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/FeatureTable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/FeatureTable.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/FeatureTables.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/FeatureTables.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/GoldHeaderUnderline.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/GoldHeaderUnderline.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/GroupMembersActionBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/GroupMembersActionBar.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/InventoryActionBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/InventoryActionBar.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/InventoryTables.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/InventoryTables.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/ItemDescriptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/ItemDescriptions.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/ItemRollButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/ItemRollButton.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/ItemsActionBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/ItemsActionBar.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/Search.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/Search.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/SheetPinActivity.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/SheetPinActivity.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/SheetPinItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/SheetPinItem.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/SheetPins.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/SheetPins.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/SoloItemDescription.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/SoloItemDescription.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/SpellTable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/SpellTable.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/SpellTables.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/SpellTables.svelte -------------------------------------------------------------------------------- /src/sheets/quadrone/shared/StatblockTables.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/quadrone/shared/StatblockTables.svelte -------------------------------------------------------------------------------- /src/sheets/sheet-context.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/sheets/sheet-context.svelte.ts -------------------------------------------------------------------------------- /src/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/theme/README.md -------------------------------------------------------------------------------- /src/theme/theme-import-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/theme/theme-import-service.ts -------------------------------------------------------------------------------- /src/theme/theme-quadrone-detached.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/theme/theme-quadrone-detached.ts -------------------------------------------------------------------------------- /src/theme/theme-quadrone.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/theme/theme-quadrone.svelte.ts -------------------------------------------------------------------------------- /src/theme/theme-quadrone.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/theme/theme-quadrone.types.ts -------------------------------------------------------------------------------- /src/theme/theme-styles-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/theme/theme-styles-provider.ts -------------------------------------------------------------------------------- /src/theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/theme/theme.ts -------------------------------------------------------------------------------- /src/tidy5e-sheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/tidy5e-sheet.js -------------------------------------------------------------------------------- /src/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/todo.md -------------------------------------------------------------------------------- /src/tooltips/AttunementSummaryTooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/tooltips/AttunementSummaryTooltip.svelte -------------------------------------------------------------------------------- /src/tooltips/GroupLanguageTooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/tooltips/GroupLanguageTooltip.svelte -------------------------------------------------------------------------------- /src/tooltips/GroupSkillTooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/tooltips/GroupSkillTooltip.svelte -------------------------------------------------------------------------------- /src/tooltips/GroupToolTooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/tooltips/GroupToolTooltip.svelte -------------------------------------------------------------------------------- /src/tooltips/GroupTraitTooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/tooltips/GroupTraitTooltip.svelte -------------------------------------------------------------------------------- /src/tooltips/ListItemsTooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/tooltips/ListItemsTooltip.svelte -------------------------------------------------------------------------------- /src/tooltips/OccupantSummaryTooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/tooltips/OccupantSummaryTooltip.svelte -------------------------------------------------------------------------------- /src/tooltips/Tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/tooltips/Tooltip.ts -------------------------------------------------------------------------------- /src/tooltips/WeightDistributionTooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/tooltips/WeightDistributionTooltip.svelte -------------------------------------------------------------------------------- /src/tooltips/tooltips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/tooltips/tooltips.less -------------------------------------------------------------------------------- /src/types/application.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/types/application.types.ts -------------------------------------------------------------------------------- /src/types/dnd5e.actor5e.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/types/dnd5e.actor5e.types.ts -------------------------------------------------------------------------------- /src/types/group.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/types/group.types.ts -------------------------------------------------------------------------------- /src/types/item.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/types/item.types.ts -------------------------------------------------------------------------------- /src/types/location-awareness.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/types/location-awareness.types.ts -------------------------------------------------------------------------------- /src/types/sort.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/types/sort.types.ts -------------------------------------------------------------------------------- /src/types/theme.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/types/theme.types.ts -------------------------------------------------------------------------------- /src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/types/types.ts -------------------------------------------------------------------------------- /src/utils/DebugTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/DebugTools.ts -------------------------------------------------------------------------------- /src/utils/ItemUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/ItemUtils.ts -------------------------------------------------------------------------------- /src/utils/SpellUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/SpellUtils.ts -------------------------------------------------------------------------------- /src/utils/active-effect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/active-effect.ts -------------------------------------------------------------------------------- /src/utils/applications.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/applications.svelte.ts -------------------------------------------------------------------------------- /src/utils/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/array.ts -------------------------------------------------------------------------------- /src/utils/asynchrony.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/asynchrony.ts -------------------------------------------------------------------------------- /src/utils/class-inheritance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/class-inheritance.ts -------------------------------------------------------------------------------- /src/utils/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/component.ts -------------------------------------------------------------------------------- /src/utils/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/data.ts -------------------------------------------------------------------------------- /src/utils/element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/element.ts -------------------------------------------------------------------------------- /src/utils/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/events.ts -------------------------------------------------------------------------------- /src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/file.ts -------------------------------------------------------------------------------- /src/utils/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/form.ts -------------------------------------------------------------------------------- /src/utils/formatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/formatting.ts -------------------------------------------------------------------------------- /src/utils/formula.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/formula.ts -------------------------------------------------------------------------------- /src/utils/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/html.ts -------------------------------------------------------------------------------- /src/utils/iteration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/iteration.ts -------------------------------------------------------------------------------- /src/utils/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/logging.ts -------------------------------------------------------------------------------- /src/utils/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/map.ts -------------------------------------------------------------------------------- /src/utils/mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/mapping.ts -------------------------------------------------------------------------------- /src/utils/mutex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/mutex.ts -------------------------------------------------------------------------------- /src/utils/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/numbers.ts -------------------------------------------------------------------------------- /src/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/path.ts -------------------------------------------------------------------------------- /src/utils/positioning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/positioning.ts -------------------------------------------------------------------------------- /src/utils/reactivity.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/reactivity.svelte.ts -------------------------------------------------------------------------------- /src/utils/session-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/session-storage.ts -------------------------------------------------------------------------------- /src/utils/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/set.ts -------------------------------------------------------------------------------- /src/utils/system-properties-classic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/system-properties-classic.ts -------------------------------------------------------------------------------- /src/utils/system-properties-quadrone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/system-properties-quadrone.ts -------------------------------------------------------------------------------- /src/utils/value-cycling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/utils/value-cycling.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/svelte.config.js -------------------------------------------------------------------------------- /symlink-module-build-dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/symlink-module-build-dir.js -------------------------------------------------------------------------------- /tidy5e-sheet-kgar.lock: -------------------------------------------------------------------------------- 1 | 🔒 -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/typedoc.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kgar/foundry-vtt-tidy-5e-sheets/HEAD/vite.config.ts --------------------------------------------------------------------------------