@league-of-foundry-developers/foundry-vtt-types 9.255.2 → 9.268.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -4
- package/index.d.ts +1 -1
- package/package.json +4 -3
- package/src/foundry/{foundry.js/application.d.ts → client/apps/app.d.ts} +0 -14
- package/src/foundry/client/apps/av/av-config.d.ts +85 -0
- package/src/foundry/client/apps/av/camera-popout.d.ts +49 -0
- package/src/foundry/client/apps/av/cameras.d.ts +174 -0
- package/src/foundry/client/apps/av/index.d.ts +3 -0
- package/src/foundry/client/apps/form.d.ts +384 -0
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/actorSheet.d.ts → client/apps/forms/actor.d.ts} +13 -29
- package/src/foundry/client/apps/forms/card-config.d.ts +51 -0
- package/src/foundry/client/apps/forms/cards-config.d.ts +128 -0
- package/src/foundry/client/apps/forms/combat-config.d.ts +41 -0
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/combatantConfig.d.ts → client/apps/forms/combatant-config.d.ts} +4 -12
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/activeEffectConfig.d.ts → client/apps/forms/effect-config.d.ts} +6 -16
- package/src/foundry/client/apps/forms/folder-config.d.ts +63 -0
- package/src/foundry/{foundry.js/applications/formApplications/gridConfig.d.ts → client/apps/forms/grid-config.d.ts} +9 -24
- package/src/foundry/client/apps/forms/image-popout.d.ts +166 -0
- package/src/foundry/client/apps/forms/index.d.ts +20 -0
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/itemSheet.d.ts → client/apps/forms/item.d.ts} +8 -25
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/journalSheet.d.ts → client/apps/forms/journal-sheet.d.ts} +16 -28
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/macroConfig.d.ts → client/apps/forms/macro-config.d.ts} +8 -15
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/measuredTemplateConfig.d.ts → client/apps/forms/measure-template.d.ts} +5 -12
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/permissionControl.d.ts → client/apps/forms/permission.d.ts} +11 -19
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/playlistConfig.d.ts → client/apps/forms/playlist-config.d.ts} +6 -12
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/playlistSoundConfig.d.ts → client/apps/forms/playlist-sound-config.d.ts} +6 -20
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/rollTableConfig.d.ts → client/apps/forms/roll-table-config.d.ts} +16 -32
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/sceneConfig.d.ts → client/apps/forms/scene-config.d.ts} +30 -34
- package/src/foundry/{foundry.js/applications/formApplications/entitySheetConfig.d.ts → client/apps/forms/sheet-config.d.ts} +38 -24
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/userConfig.d.ts → client/apps/forms/user-config.d.ts} +6 -13
- package/src/foundry/{foundry.js/chatBubbles.d.ts → client/apps/hud/chatbubble.d.ts} +0 -0
- package/src/foundry/{foundry.js/applications/headsUpDisplay.d.ts → client/apps/hud/container.d.ts} +3 -6
- package/src/foundry/{foundry.js/applications/sceneControls.d.ts → client/apps/hud/controls.d.ts} +3 -6
- package/src/foundry/{foundry.js/applications → client/apps/hud}/hotbar.d.ts +14 -27
- package/src/foundry/{foundry.js/applications/basePlaceableHUD.d.ts → client/apps/hud/hud.d.ts} +5 -10
- package/src/foundry/client/apps/hud/index.d.ts +9 -0
- package/src/foundry/{foundry.js/applications/mainMenu.d.ts → client/apps/hud/menu.d.ts} +3 -9
- package/src/foundry/{foundry.js/applications/sceneNavigation.d.ts → client/apps/hud/navigation.d.ts} +8 -21
- package/src/foundry/{foundry.js/applications → client/apps/hud}/pause.d.ts +1 -2
- package/src/foundry/{foundry.js/applications/playerList.d.ts → client/apps/hud/players.d.ts} +4 -7
- package/src/foundry/{foundry.js/localization.d.ts → client/apps/i18n.d.ts} +1 -2
- package/src/foundry/client/apps/index.d.ts +9 -0
- package/src/foundry/{foundry.js/applications/formApplications/drawingConfig.d.ts → client/apps/placeables/drawing-config.d.ts} +19 -30
- package/src/foundry/{foundry.js/applications/basePlaceableHUDs/drawingHUD.d.ts → client/apps/placeables/drawing-hud.d.ts} +3 -9
- package/src/foundry/client/apps/placeables/index.d.ts +10 -0
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/ambientLightConfig.d.ts → client/apps/placeables/light-config.d.ts} +18 -27
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/noteConfig.d.ts → client/apps/placeables/note-config.d.ts} +5 -20
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/ambientSoundConfig.d.ts → client/apps/placeables/sound-config.d.ts} +7 -17
- package/src/foundry/{foundry.js/applications/formApplications/documentSheets/tileConfig.d.ts → client/apps/placeables/tile-config.d.ts} +7 -18
- package/src/foundry/{foundry.js/applications/basePlaceableHUDs/tileHUD.d.ts → client/apps/placeables/tile-hud.d.ts} +3 -9
- package/src/foundry/{foundry.js/applications/formApplications/tokenConfig.d.ts → client/apps/placeables/token-config.d.ts} +93 -29
- package/src/foundry/{foundry.js/applications/basePlaceableHUDs/tokenHUD.d.ts → client/apps/placeables/token-hud.d.ts} +13 -18
- package/src/foundry/{foundry.js/applications/formApplications/wallConfig.d.ts → client/apps/placeables/wall-config.d.ts} +24 -21
- package/src/foundry/{foundry.js/applications/chatPopout.d.ts → client/apps/sidebar/apps/chat-popout.d.ts} +6 -14
- package/src/foundry/{foundry.js/applications/formApplications/settingsConfig.d.ts → client/apps/sidebar/apps/client-settings.d.ts} +18 -14
- package/src/foundry/{foundry.js/applications → client/apps/sidebar/apps}/compendium.d.ts +28 -30
- package/src/foundry/client/apps/sidebar/apps/controls-reference.d.ts +30 -0
- package/src/foundry/client/apps/sidebar/apps/index.d.ts +10 -0
- package/src/foundry/client/apps/sidebar/apps/invitation-links.d.ts +37 -0
- package/src/foundry/{foundry.js/applications/formApplications/keybindingsConfig.d.ts → client/apps/sidebar/apps/keybindings-config.d.ts} +4 -14
- package/src/foundry/{foundry.js/applications/formApplications/moduleManagement.d.ts → client/apps/sidebar/apps/module-management.d.ts} +13 -34
- package/src/foundry/{foundry.js/applications/formApplications/permissionConfig.d.ts → client/apps/sidebar/apps/permission-config.d.ts} +5 -16
- package/src/foundry/client/apps/sidebar/apps/support-details.d.ts +76 -0
- package/src/foundry/{foundry.js/applications/formApplications/worldConfig.d.ts → client/apps/sidebar/apps/world-config.d.ts} +10 -12
- package/src/foundry/client/apps/sidebar/index.d.ts +5 -0
- package/src/foundry/{foundry.js/applications → client/apps/sidebar}/sidebar.d.ts +5 -17
- package/src/foundry/{foundry.js/applications/sidebarTab.d.ts → client/apps/sidebar/tab-base.d.ts} +4 -8
- package/src/foundry/{foundry.js/applications/sidebarTabs/sidebarDirectory.d.ts → client/apps/sidebar/tab-directory.d.ts} +22 -31
- package/src/foundry/client/apps/sidebar/tabs/actors-directory.d.ts +16 -0
- package/src/foundry/{foundry.js/applications/sidebarTabs/sidebarDirectories/cardsDirectory.d.ts → client/apps/sidebar/tabs/cards-directory.d.ts} +1 -2
- package/src/foundry/{foundry.js/applications/sidebarTabs/chatLog.d.ts → client/apps/sidebar/tabs/chat-log.d.ts} +68 -51
- package/src/foundry/{foundry.js/applications/sidebarTabs/combatTracker.d.ts → client/apps/sidebar/tabs/combat-tracker.d.ts} +4 -7
- package/src/foundry/{foundry.js/applications/sidebarTabs/compendiumDirectory.d.ts → client/apps/sidebar/tabs/compendium-directory.d.ts} +20 -14
- package/src/foundry/client/apps/sidebar/tabs/index.d.ts +12 -0
- package/src/foundry/client/apps/sidebar/tabs/items-directory.d.ts +10 -0
- package/src/foundry/client/apps/sidebar/tabs/journal-directory.d.ts +11 -0
- package/src/foundry/{foundry.js/applications/sidebarTabs/sidebarDirectories/macroDirectory.d.ts → client/apps/sidebar/tabs/macros-directory.d.ts} +3 -10
- package/src/foundry/{foundry.js/applications/sidebarTabs/sidebarDirectories/playlistDirectory.d.ts → client/apps/sidebar/tabs/playlists-directory.d.ts} +43 -22
- package/src/foundry/{foundry.js/applications/sidebarTabs/sidebarDirectories/rollTableDirectory.d.ts → client/apps/sidebar/tabs/roll-table-directory.d.ts} +1 -2
- package/src/foundry/client/apps/sidebar/tabs/scenes-directory.d.ts +18 -0
- package/src/foundry/client/apps/sidebar/tabs/settings.d.ts +85 -0
- package/src/foundry/client/apps/templates.d.ts +425 -0
- package/src/foundry/{foundry.js/audioHelper.d.ts → client/audio/audio.d.ts} +0 -0
- package/src/foundry/{foundry.js/audioContainer.d.ts → client/audio/container.d.ts} +0 -0
- package/src/foundry/client/audio/index.d.ts +3 -0
- package/src/foundry/{foundry.js → client/audio}/sound.d.ts +0 -0
- package/src/foundry/{foundry.js/avClient.d.ts → client/av/client.d.ts} +0 -0
- package/src/foundry/client/av/clients/index.d.ts +1 -0
- package/src/foundry/{foundry.js/avClients/simplePeerAVClient.d.ts → client/av/clients/simplepeer.d.ts} +14 -28
- package/src/foundry/client/av/index.d.ts +4 -0
- package/src/foundry/{foundry.js/avMaster.d.ts → client/av/master.d.ts} +0 -0
- package/src/foundry/{foundry.js/avSettings.d.ts → client/av/settings.d.ts} +0 -0
- package/src/foundry/{foundry.js → client}/config.d.ts +31 -180
- package/src/foundry/{foundry.js/gamepadManager.d.ts → client/core/gamepad.d.ts} +0 -0
- package/src/foundry/{foundry.js → client/core}/hooks.d.ts +4 -4
- package/src/foundry/{foundry.js/imageHelper.d.ts → client/core/image.d.ts} +0 -0
- package/src/foundry/client/core/index.d.ts +13 -0
- package/src/foundry/{foundry.js/clientKeybindings.d.ts → client/core/keybindings.d.ts} +1 -12
- package/src/foundry/{foundry.js/keyboardManager.d.ts → client/core/keyboard.d.ts} +0 -0
- package/src/foundry/{foundry.js/mouseManager.d.ts → client/core/mouse.d.ts} +0 -0
- package/src/foundry/{foundry.js/newUserExperience.d.ts → client/core/nue.d.ts} +0 -0
- package/src/foundry/{foundry.js/clientSettings.d.ts → client/core/settings.d.ts} +2 -2
- package/src/foundry/{foundry.js/socketInterface.d.ts → client/core/socket.d.ts} +0 -0
- package/src/foundry/{foundry.js/sortingHelpers.d.ts → client/core/sorting.d.ts} +0 -0
- package/src/foundry/{foundry.js/gameTime.d.ts → client/core/time.d.ts} +0 -0
- package/src/foundry/{foundry.js → client/core}/utils.d.ts +0 -0
- package/src/foundry/{foundry.js/videoHelper.d.ts → client/core/video.d.ts} +0 -0
- package/src/foundry/{foundry.js/canvasDocumentMixin.d.ts → client/data/abstract/canvas-document.d.ts} +3 -3
- package/src/foundry/{foundry.js/clientDatabaseBackend.d.ts → client/data/abstract/client-backend.d.ts} +13 -23
- package/src/foundry/{foundry.js/clientDocumentMixin.d.ts → client/data/abstract/client-document.d.ts} +2 -6
- package/src/foundry/{foundry.js/collections/documentCollection.d.ts → client/data/abstract/document-collection.d.ts} +2 -2
- package/src/foundry/client/data/abstract/index.d.ts +5 -0
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollection.d.ts → client/data/abstract/world-collection.d.ts} +4 -5
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections → client/data/collections}/actors.d.ts +3 -5
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections/cardStacks.d.ts → client/data/collections/cards.d.ts} +1 -2
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections/combatEncounters.d.ts → client/data/collections/combats.d.ts} +3 -5
- package/src/foundry/{foundry.js/collections/documentCollections/compendiumCollection.d.ts → client/data/collections/compendium.d.ts} +2 -3
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections/fogExplorations.d.ts → client/data/collections/fog.d.ts} +0 -0
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections/folders.d.ts → client/data/collections/folder.d.ts} +3 -5
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections → client/data/collections}/index.d.ts +7 -6
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections → client/data/collections}/items.d.ts +1 -2
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections → client/data/collections}/journal.d.ts +1 -2
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections → client/data/collections}/macros.d.ts +4 -7
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections → client/data/collections}/messages.d.ts +4 -9
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections → client/data/collections}/playlists.d.ts +3 -4
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections → client/data/collections}/scenes.d.ts +3 -5
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections/worldSettings.d.ts → client/data/collections/settings.d.ts} +2 -4
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections/rollTables.d.ts → client/data/collections/tables.d.ts} +2 -4
- package/src/foundry/{foundry.js/collections/documentCollections/worldCollections → client/data/collections}/users.d.ts +3 -5
- package/src/foundry/{foundry.js/clientDocuments/activeEffect.d.ts → client/data/documents/active-effect.d.ts} +7 -10
- package/src/foundry/{foundry.js/clientDocuments → client/data/documents}/actor.d.ts +18 -21
- package/src/foundry/{foundry.js/clientDocuments/canvasDocuments/ambientLightDocument.d.ts → client/data/documents/ambient-light.d.ts} +0 -0
- package/src/foundry/{foundry.js/clientDocuments/canvasDocuments/ambientSoundDocument.d.ts → client/data/documents/ambient-sound.d.ts} +0 -0
- package/src/foundry/{foundry.js/clientDocuments → client/data/documents}/card.d.ts +2 -3
- package/src/foundry/{foundry.js/clientDocuments → client/data/documents}/cards.d.ts +17 -12
- package/src/foundry/{foundry.js/clientDocuments/chatMessage.d.ts → client/data/documents/chat-message.d.ts} +94 -57
- package/src/foundry/{foundry.js/clientDocuments → client/data/documents}/combat.d.ts +16 -19
- package/src/foundry/{foundry.js/clientDocuments → client/data/documents}/combatant.d.ts +5 -10
- package/src/foundry/{foundry.js/clientDocuments/canvasDocuments/drawingDocument.d.ts → client/data/documents/drawing.d.ts} +0 -0
- package/src/foundry/{foundry.js/clientDocuments/fogExploration.d.ts → client/data/documents/fog-exploration.d.ts} +2 -2
- package/src/foundry/{foundry.js/clientDocuments → client/data/documents}/folder.d.ts +4 -8
- package/src/foundry/client/data/documents/index.d.ts +27 -0
- package/src/foundry/{foundry.js/clientDocuments → client/data/documents}/item.d.ts +5 -5
- package/src/foundry/{foundry.js/clientDocuments/journalEntry.d.ts → client/data/documents/journal-entry.d.ts} +3 -5
- package/src/foundry/{foundry.js/clientDocuments → client/data/documents}/macro.d.ts +0 -0
- package/src/foundry/{foundry.js/clientDocuments/canvasDocuments/measuredTemplateDocument.d.ts → client/data/documents/measured-template.d.ts} +0 -0
- package/src/foundry/{foundry.js/clientDocuments/canvasDocuments/noteDocument.d.ts → client/data/documents/note.d.ts} +0 -0
- package/src/foundry/{foundry.js/clientDocuments/playlistSound.d.ts → client/data/documents/playlist-sound.d.ts} +10 -6
- package/src/foundry/{foundry.js/clientDocuments → client/data/documents}/playlist.d.ts +11 -19
- package/src/foundry/{foundry.js/clientDocuments → client/data/documents}/scene.d.ts +29 -41
- package/src/foundry/{foundry.js/clientDocuments → client/data/documents}/setting.d.ts +2 -3
- package/src/foundry/{foundry.js/clientDocuments/tableResult.d.ts → client/data/documents/table-result.d.ts} +0 -0
- package/src/foundry/{foundry.js/clientDocuments/rollTable.d.ts → client/data/documents/table.d.ts} +5 -8
- package/src/foundry/{foundry.js/clientDocuments/canvasDocuments/tileDocument.d.ts → client/data/documents/tile.d.ts} +2 -4
- package/src/foundry/{foundry.js/clientDocuments/canvasDocuments/tokenDocument.d.ts → client/data/documents/token.d.ts} +29 -10
- package/src/foundry/{foundry.js/clientDocuments → client/data/documents}/user.d.ts +4 -6
- package/src/foundry/{foundry.js/clientDocuments/canvasDocuments/wallDocument.d.ts → client/data/documents/wall.d.ts} +0 -0
- package/src/foundry/client/data/index.d.ts +3 -0
- package/src/foundry/{foundry.js/rollTerms/diceTerms → client/dice/dice}/coin.d.ts +3 -12
- package/src/foundry/{foundry.js/rollTerms/diceTerms → client/dice/dice}/die.d.ts +3 -8
- package/src/foundry/{foundry.js/rollTerms/diceTerms/fateDie.d.ts → client/dice/dice/fate.d.ts} +3 -10
- package/src/foundry/client/dice/dice/index.d.ts +3 -0
- package/src/foundry/client/dice/index.d.ts +5 -0
- package/src/foundry/{foundry.js → client/dice}/roll.d.ts +9 -9
- package/src/foundry/{foundry.js/rollTerm.d.ts → client/dice/term.d.ts} +0 -0
- package/src/foundry/{foundry.js/rollTerms/diceTerm.d.ts → client/dice/terms/dice.d.ts} +1 -2
- package/src/foundry/client/dice/terms/index.d.ts +7 -0
- package/src/foundry/{foundry.js/rollTerms/mathTerm.d.ts → client/dice/terms/math.d.ts} +1 -2
- package/src/foundry/{foundry.js/rollTerms/numericTerm.d.ts → client/dice/terms/numeric.d.ts} +0 -0
- package/src/foundry/{foundry.js/rollTerms/operatorTerm.d.ts → client/dice/terms/operator.d.ts} +0 -0
- package/src/foundry/{foundry.js/rollTerms/parentheticalTerm.d.ts → client/dice/terms/parenthetical.d.ts} +1 -2
- package/src/foundry/{foundry.js/rollTerms/poolTerm.d.ts → client/dice/terms/pool.d.ts} +5 -1
- package/src/foundry/{foundry.js/rollTerms/stringTerm.d.ts → client/dice/terms/string.d.ts} +1 -2
- package/src/foundry/{foundry.js/mersenneTwister.d.ts → client/dice/twister.d.ts} +0 -0
- package/src/foundry/{foundry.js → client}/game.d.ts +8 -5
- package/src/foundry/client/head.d.ts +44 -0
- package/src/foundry/client/index.d.ts +12 -0
- package/src/foundry/{foundry.js/canvas.d.ts → client/pixi/board.d.ts} +21 -24
- package/src/foundry/{foundry.js/pixi/containers/cachedContainer.d.ts → client/pixi/core/containers/cached-container.d.ts} +0 -0
- package/src/foundry/client/pixi/core/containers/index.d.ts +3 -0
- package/src/foundry/{foundry.js → client/pixi/core/containers}/quadtree.d.ts +0 -0
- package/src/foundry/{foundry.js/pixi/meshes/samplerMesh.d.ts → client/pixi/core/containers/sampler-mesh.d.ts} +0 -0
- package/src/foundry/{foundry.js/screenCulling.d.ts → client/pixi/core/culling.d.ts} +18 -0
- package/src/foundry/client/pixi/core/index.d.ts +5 -0
- package/src/foundry/{foundry.js/canvasAnimation.d.ts → client/pixi/core/interaction/canvas-animation.d.ts} +0 -0
- package/src/foundry/{foundry.js/pixi/containers/controlIcon.d.ts → client/pixi/core/interaction/control-icon.d.ts} +3 -0
- package/src/foundry/client/pixi/core/interaction/index.d.ts +5 -0
- package/src/foundry/{foundry.js/mouseInteractionManager.d.ts → client/pixi/core/interaction/mouse-handler.d.ts} +0 -0
- package/src/foundry/{foundry.js/pixi/graphics/resizeHandle.d.ts → client/pixi/core/interaction/resize-handle.d.ts} +0 -0
- package/src/foundry/{foundry.js/userTargets.d.ts → client/pixi/core/interaction/targets.d.ts} +5 -8
- package/src/foundry/{foundry.js/textureLoader.d.ts → client/pixi/core/loader.d.ts} +26 -1
- package/src/foundry/client/pixi/core/shapes/index.d.ts +5 -0
- package/src/foundry/{foundry.js/pixi/rectangles/normalizedRectangle.d.ts → client/pixi/core/shapes/normalized-rectangle.d.ts} +0 -0
- package/src/foundry/client/pixi/core/shapes/polygon-helpers.d.ts +263 -0
- package/src/foundry/{foundry.js/pixi/texts/preciseText.d.ts → client/pixi/core/shapes/precise-text.d.ts} +0 -0
- package/src/foundry/{foundry.js → client/pixi/core/shapes}/ray.d.ts +36 -1
- package/src/foundry/{foundry.js/pixi/polygons/pointSourcePolygon.d.ts → client/pixi/core/shapes/source-polygon.d.ts} +10 -0
- package/src/foundry/{foundry.js/pixi/containers/effectsCanvasGroup.d.ts → client/pixi/groups/effects.d.ts} +0 -0
- package/src/foundry/client/pixi/groups/index.d.ts +3 -0
- package/src/foundry/{foundry.js/pixi/containers/interfaceCanvasGroup.d.ts → client/pixi/groups/interface.d.ts} +0 -0
- package/src/foundry/{foundry.js/pixi/containers/cachedContainers/primaryCanvasGroup.d.ts → client/pixi/groups/primary.d.ts} +2 -4
- package/src/foundry/client/pixi/index.d.ts +10 -0
- package/src/foundry/{foundry.js/pixi/containers/canvasLayer.d.ts → client/pixi/layer.d.ts} +2 -1
- package/src/foundry/{foundry.js/pixi/containers → client/pixi/layers/controls}/cursor.d.ts +2 -3
- package/src/foundry/{foundry.js/pixi/containers/doorControl.d.ts → client/pixi/layers/controls/door.d.ts} +1 -1
- package/src/foundry/client/pixi/layers/controls/hud.d.ts +117 -0
- package/src/foundry/client/pixi/layers/controls/index.d.ts +4 -0
- package/src/foundry/{foundry.js/pixi/containers → client/pixi/layers/controls}/ruler.d.ts +1 -1
- package/src/foundry/{foundry.js/pixi/containers/canvasLayers/controlsLayer.d.ts → client/pixi/layers/controls.d.ts} +50 -53
- package/src/foundry/{foundry.js/pixi/containers/canvasLayers/placeablesLayers/drawingsLayer.d.ts → client/pixi/layers/drawings.d.ts} +9 -18
- package/src/foundry/{foundry.js/specialEffect.d.ts → client/pixi/layers/effects/effect.d.ts} +0 -0
- package/src/foundry/client/pixi/layers/effects/index.d.ts +4 -0
- package/src/foundry/{foundry.js/specialEffects/autumnLeavesWeatherEffect.d.ts → client/pixi/layers/effects/leaves.d.ts} +0 -0
- package/src/foundry/{foundry.js/specialEffects/rainWeatherEffect.d.ts → client/pixi/layers/effects/rain.d.ts} +0 -0
- package/src/foundry/{foundry.js/specialEffects/snowWeatherEffect.d.ts → client/pixi/layers/effects/snow.d.ts} +0 -0
- package/src/foundry/{foundry.js/pixi/containers/canvasLayers/weatherLayer.d.ts → client/pixi/layers/effects.d.ts} +2 -4
- package/src/foundry/{foundry.js/pixi/containers/baseGrid.d.ts → client/pixi/layers/grid/grid.d.ts} +0 -0
- package/src/foundry/{foundry.js/pixi/containers/baseGrids/hexagonalGrid.d.ts → client/pixi/layers/grid/hex.d.ts} +8 -16
- package/src/foundry/{foundry.js/pixi/graphics/gridHighlight.d.ts → client/pixi/layers/grid/highlight.d.ts} +2 -4
- package/src/foundry/client/pixi/layers/grid/index.d.ts +4 -0
- package/src/foundry/{foundry.js/pixi/containers/baseGrids/squareGrid.d.ts → client/pixi/layers/grid/square.d.ts} +8 -16
- package/src/foundry/{foundry.js/pixi/containers/canvasLayers/gridLayer.d.ts → client/pixi/layers/grid.d.ts} +1 -2
- package/src/foundry/client/pixi/layers/index.d.ts +15 -0
- package/src/foundry/{foundry.js/pixi/containers/canvasLayers/placeablesLayers/lightingLayer.d.ts → client/pixi/layers/lighting.d.ts} +71 -38
- package/src/foundry/client/pixi/layers/map.d.ts +263 -0
- package/src/foundry/{foundry.js/pixi/containers/canvasLayers/placeablesLayers/notesLayer.d.ts → client/pixi/layers/notes.d.ts} +7 -11
- package/src/foundry/{foundry.js/pixi/containers/canvasLayers/sightLayer.d.ts → client/pixi/layers/sight.d.ts} +127 -112
- package/src/foundry/{foundry.js/pixi/containers/canvasLayers/placeablesLayers/soundsLayer.d.ts → client/pixi/layers/sounds.d.ts} +18 -16
- package/src/foundry/{foundry.js/pixi/containers/canvasLayers/placeablesLayers/templateLayer.d.ts → client/pixi/layers/templates.d.ts} +7 -16
- package/src/foundry/{foundry.js/pixi/containers/canvasLayers/placeablesLayers/tokenLayer.d.ts → client/pixi/layers/tokens.d.ts} +49 -38
- package/src/foundry/{foundry.js/pixi/containers/canvasLayers/placeablesLayers/wallsLayer.d.ts → client/pixi/layers/walls.d.ts} +63 -150
- package/src/foundry/{foundry.js/pixi/polygons/pointSourcePolygons/clockwiseSweepPolygon.d.ts → client/pixi/perception/clockwise-sweep.d.ts} +4 -8
- package/src/foundry/client/pixi/perception/index.d.ts +2 -0
- package/src/foundry/{foundry.js/perceptionManager.d.ts → client/pixi/perception/perception-manager.d.ts} +0 -0
- package/src/foundry/{foundry.js/pixi/containers/placeableObject.d.ts → client/pixi/placeable.d.ts} +4 -28
- package/src/foundry/{foundry.js/pixi/containers/placeableObjects → client/pixi/placeables}/drawing.d.ts +17 -32
- package/src/foundry/{foundry.js/pixi/containers/placeableObjects → client/pixi/placeables}/index.d.ts +3 -3
- package/src/foundry/{foundry.js/pixi/containers/placeableObjects/ambientLight.d.ts → client/pixi/placeables/light.d.ts} +16 -30
- package/src/foundry/{foundry.js/pixi/containers/placeableObjects → client/pixi/placeables}/note.d.ts +12 -22
- package/src/foundry/{foundry.js/pixi/containers/placeableObjects/ambientSound.d.ts → client/pixi/placeables/sound.d.ts} +15 -28
- package/src/foundry/client/pixi/placeables/template.d.ts +153 -0
- package/src/foundry/{foundry.js/pixi/containers/placeableObjects → client/pixi/placeables}/tile.d.ts +30 -32
- package/src/foundry/{foundry.js/pixi/containers/placeableObjects → client/pixi/placeables}/token.d.ts +283 -129
- package/src/foundry/client/pixi/placeables/wall.d.ts +268 -0
- package/src/foundry/{foundry.js/pixi/containers/canvasLayers/placeablesLayer.d.ts → client/pixi/placeables.d.ts} +58 -57
- package/src/foundry/{foundry.js/pointSource.d.ts → client/pixi/sources/base-source.d.ts} +0 -0
- package/src/foundry/client/pixi/sources/index.d.ts +4 -0
- package/src/foundry/{foundry.js/pointSources/lightSource.d.ts → client/pixi/sources/light-source.d.ts} +2 -6
- package/src/foundry/{foundry.js/pointSources/soundSource.d.ts → client/pixi/sources/sound-source.d.ts} +2 -3
- package/src/foundry/{foundry.js/pointSources/visionSource.d.ts → client/pixi/sources/vision-source.d.ts} +3 -5
- package/src/foundry/{foundry.js/pixi/shaders/abstractBaseShader.d.ts → client/pixi/webgl/base.d.ts} +0 -0
- package/src/foundry/{foundry.js/pixi/blendModes.d.ts → client/pixi/webgl/blend_modes.d.ts} +0 -0
- package/src/foundry/client/pixi/webgl/filters.d.ts +182 -0
- package/src/foundry/client/pixi/webgl/index.d.ts +5 -0
- package/src/foundry/client/pixi/webgl/lighting.d.ts +480 -0
- package/src/foundry/{foundry.js/pixi/shaders/abstractBaseShaders/baseSamplerShader.d.ts → client/pixi/webgl/sampler.d.ts} +3 -6
- package/src/foundry/client/tail.d.ts +3 -0
- package/src/foundry/{foundry.js/contextMenu.d.ts → client/ui/context.d.ts} +53 -44
- package/src/foundry/{foundry.js/applications → client/ui}/dialog.d.ts +4 -17
- package/src/foundry/{foundry.js/draggable.d.ts → client/ui/drag.d.ts} +0 -0
- package/src/foundry/{foundry.js/dragDrop.d.ts → client/ui/dragdrop.d.ts} +0 -0
- package/src/foundry/client/ui/editor.d.ts +321 -0
- package/src/foundry/{foundry.js/applications/filePicker.d.ts → client/ui/filepicker.d.ts} +75 -112
- package/src/foundry/{foundry.js/searchFilter.d.ts → client/ui/filter.d.ts} +0 -0
- package/src/foundry/{foundry.js/formDataExtended.d.ts → client/ui/forms.d.ts} +0 -0
- package/src/foundry/client/ui/index.d.ts +10 -0
- package/src/foundry/{foundry.js/applications → client/ui}/notifications.d.ts +3 -6
- package/src/foundry/{foundry.js → client/ui}/tabs.d.ts +0 -0
- package/src/foundry/common/data/data.mjs/activeEffectData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/actorData.d.ts +0 -3
- package/src/foundry/common/data/data.mjs/adventureData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/ambientLightData.d.ts +3 -6
- package/src/foundry/common/data/data.mjs/ambientSoundData.d.ts +3 -6
- package/src/foundry/common/data/data.mjs/animationData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/cardData.d.ts +0 -1
- package/src/foundry/common/data/data.mjs/cardFaceData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/cardsData.d.ts +0 -1
- package/src/foundry/common/data/data.mjs/chatMessageData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/chatSpeakerData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/combatData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/combatantData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/darknessActivation.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/drawingData.d.ts +3 -6
- package/src/foundry/common/data/data.mjs/effectChangeData.d.ts +3 -4
- package/src/foundry/common/data/data.mjs/effectDurationData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/fogExplorationData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/folderData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/index.d.ts +0 -1
- package/src/foundry/common/data/data.mjs/itemData.d.ts +0 -2
- package/src/foundry/common/data/data.mjs/journalEntryData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/lightData.d.ts +3 -6
- package/src/foundry/common/data/data.mjs/macroData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/measuredTemplateData.d.ts +3 -6
- package/src/foundry/common/data/data.mjs/noteData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/playlistData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/playlistSoundData.d.ts +2 -4
- package/src/foundry/common/data/data.mjs/prototypeTokenData.d.ts +2 -4
- package/src/foundry/common/data/data.mjs/rollTableData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/sceneData.d.ts +2 -4
- package/src/foundry/common/data/data.mjs/settingData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/tableResultData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/tileData.d.ts +2 -4
- package/src/foundry/common/data/data.mjs/tileOcclusion.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/tokenBarData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/tokenData.d.ts +3 -6
- package/src/foundry/common/data/data.mjs/userData.d.ts +1 -2
- package/src/foundry/common/data/data.mjs/videoData.d.ts +2 -4
- package/src/foundry/common/data/data.mjs/wallData.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseActiveEffect.d.ts +4 -8
- package/src/foundry/common/documents.mjs/baseActor.d.ts +4 -8
- package/src/foundry/common/documents.mjs/baseAdventure.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseAmbientLight.d.ts +3 -6
- package/src/foundry/common/documents.mjs/baseAmbientSound.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseCard.d.ts +3 -6
- package/src/foundry/common/documents.mjs/baseCards.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseChatMessage.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseCombat.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseCombatant.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseDrawing.d.ts +3 -6
- package/src/foundry/common/documents.mjs/baseFogExploration.d.ts +3 -6
- package/src/foundry/common/documents.mjs/baseFolder.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseItem.d.ts +4 -8
- package/src/foundry/common/documents.mjs/baseJournalEntry.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseMacro.d.ts +4 -8
- package/src/foundry/common/documents.mjs/baseMeasuredTemplate.d.ts +3 -6
- package/src/foundry/common/documents.mjs/baseNote.d.ts +3 -6
- package/src/foundry/common/documents.mjs/basePlaylist.d.ts +2 -4
- package/src/foundry/common/documents.mjs/basePlaylistSound.d.ts +3 -6
- package/src/foundry/common/documents.mjs/baseRollTable.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseScene.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseSetting.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseTableResult.d.ts +3 -6
- package/src/foundry/common/documents.mjs/baseTile.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseToken.d.ts +2 -4
- package/src/foundry/common/documents.mjs/baseUser.d.ts +3 -6
- package/src/foundry/common/documents.mjs/baseWall.d.ts +2 -4
- package/src/foundry/common/packages.mjs/moduleData.d.ts +1 -2
- package/src/foundry/common/packages.mjs/packageAuthorData.d.ts +1 -2
- package/src/foundry/common/packages.mjs/packageCompendiumData.d.ts +2 -4
- package/src/foundry/common/packages.mjs/packageData.d.ts +2 -4
- package/src/foundry/common/packages.mjs/packageDependencyData.d.ts +7 -6
- package/src/foundry/common/packages.mjs/packageLanguageData.d.ts +2 -4
- package/src/foundry/common/packages.mjs/systemData.d.ts +1 -2
- package/src/foundry/common/packages.mjs/worldData.d.ts +1 -2
- package/src/foundry/common/types.mjs.d.ts +2 -5
- package/src/foundry/common/utils/helpers.mjs.d.ts +1 -0
- package/src/foundry/index.d.ts +2 -75
- package/src/foundry/templates/index.d.ts +1 -0
- package/src/foundry/templates/views/layouts/main.hbs.d.ts +11 -0
- package/src/types/augments/index.d.ts +2 -0
- package/src/types/augments/pixiGraphicsSmooth.d.ts +7 -0
- package/src/types/augments/pixiLegacyGraphics.d.ts +7 -0
- package/src/types/config.d.ts +183 -0
- package/src/types/index.d.ts +1 -0
- package/src/types/utils.d.ts +5 -0
- package/src/foundry/foundry.js/applications/basePlaceableHUDs/index.d.ts +0 -3
- package/src/foundry/foundry.js/applications/cameraViews.d.ts +0 -177
- package/src/foundry/foundry.js/applications/controlsReference.d.ts +0 -16
- package/src/foundry/foundry.js/applications/formApplication.d.ts +0 -336
- package/src/foundry/foundry.js/applications/formApplications/avConfig.d.ts +0 -85
- package/src/foundry/foundry.js/applications/formApplications/combatTrackerConfig.d.ts +0 -39
- package/src/foundry/foundry.js/applications/formApplications/defaultTokenConfig.d.ts +0 -66
- package/src/foundry/foundry.js/applications/formApplications/documentSheet.d.ts +0 -115
- package/src/foundry/foundry.js/applications/formApplications/documentSheets/folderConfig.d.ts +0 -70
- package/src/foundry/foundry.js/applications/formApplications/documentSheets/index.d.ts +0 -19
- package/src/foundry/foundry.js/applications/formApplications/documentSheets/lightConfig.d.ts +0 -10
- package/src/foundry/foundry.js/applications/formApplications/imagePopout.d.ts +0 -132
- package/src/foundry/foundry.js/applications/formApplications/index.d.ts +0 -16
- package/src/foundry/foundry.js/applications/frameViewer.d.ts +0 -28
- package/src/foundry/foundry.js/applications/index.d.ts +0 -23
- package/src/foundry/foundry.js/applications/invitationLinks.d.ts +0 -25
- package/src/foundry/foundry.js/applications/sidebarTabs/index.d.ts +0 -6
- package/src/foundry/foundry.js/applications/sidebarTabs/settings.d.ts +0 -59
- package/src/foundry/foundry.js/applications/sidebarTabs/sidebarDirectories/actorDirectory.d.ts +0 -24
- package/src/foundry/foundry.js/applications/sidebarTabs/sidebarDirectories/index.d.ts +0 -8
- package/src/foundry/foundry.js/applications/sidebarTabs/sidebarDirectories/itemDirectory.d.ts +0 -13
- package/src/foundry/foundry.js/applications/sidebarTabs/sidebarDirectories/journalDirectory.d.ts +0 -27
- package/src/foundry/foundry.js/applications/sidebarTabs/sidebarDirectories/sceneDirectory.d.ts +0 -13
- package/src/foundry/foundry.js/avClients/index.d.ts +0 -1
- package/src/foundry/foundry.js/cameraPopoutAppWrapper.d.ts +0 -45
- package/src/foundry/foundry.js/clientDocuments/canvasDocuments/index.d.ts +0 -8
- package/src/foundry/foundry.js/clientDocuments/index.d.ts +0 -21
- package/src/foundry/foundry.js/clientDocuments/prototypeToken.d.ts +0 -25
- package/src/foundry/foundry.js/collections/documentCollections/index.d.ts +0 -3
- package/src/foundry/foundry.js/collections/index.d.ts +0 -2
- package/src/foundry/foundry.js/collisionResult.d.ts +0 -60
- package/src/foundry/foundry.js/globalVariables.d.ts +0 -103
- package/src/foundry/foundry.js/handlebarsHelpers.d.ts +0 -392
- package/src/foundry/foundry.js/pixi/containers/baseGrids/index.d.ts +0 -2
- package/src/foundry/foundry.js/pixi/containers/cachedContainers/index.d.ts +0 -1
- package/src/foundry/foundry.js/pixi/containers/canvasLayers/index.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/containers/canvasLayers/placeablesLayers/index.d.ts +0 -10
- package/src/foundry/foundry.js/pixi/containers/canvasLayers/placeablesLayers/mapLayer.d.ts +0 -139
- package/src/foundry/foundry.js/pixi/containers/canvasLayers/placeablesLayers/mapLayers/backgroundLayer.d.ts +0 -43
- package/src/foundry/foundry.js/pixi/containers/canvasLayers/placeablesLayers/mapLayers/foregroundLayer.d.ts +0 -71
- package/src/foundry/foundry.js/pixi/containers/canvasLayers/placeablesLayers/mapLayers/index.d.ts +0 -2
- package/src/foundry/foundry.js/pixi/containers/index.d.ts +0 -14
- package/src/foundry/foundry.js/pixi/containers/placeableObjects/measuredTemplate.d.ts +0 -127
- package/src/foundry/foundry.js/pixi/containers/placeableObjects/wall.d.ts +0 -199
- package/src/foundry/foundry.js/pixi/filters/abstractBaseMaskFilter.d.ts +0 -40
- package/src/foundry/foundry.js/pixi/filters/abstractBaseMaskFilters/index.d.ts +0 -1
- package/src/foundry/foundry.js/pixi/filters/abstractBaseMaskFilters/inverseOcclusionMaskFilter.d.ts +0 -18
- package/src/foundry/foundry.js/pixi/filters/index.d.ts +0 -2
- package/src/foundry/foundry.js/pixi/graphics/index.d.ts +0 -2
- package/src/foundry/foundry.js/pixi/index.d.ts +0 -11
- package/src/foundry/foundry.js/pixi/meshes/index.d.ts +0 -1
- package/src/foundry/foundry.js/pixi/points/index.d.ts +0 -1
- package/src/foundry/foundry.js/pixi/points/wallEndpoint.d.ts +0 -92
- package/src/foundry/foundry.js/pixi/polygons/index.d.ts +0 -2
- package/src/foundry/foundry.js/pixi/polygons/pointSourcePolygons/index.d.ts +0 -1
- package/src/foundry/foundry.js/pixi/rectangles/index.d.ts +0 -1
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShader.d.ts +0 -114
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveBackgroundShader.d.ts +0 -57
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShader.d.ts +0 -47
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/bewitchingWaveColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/chromaColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/emanationColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/energyFieldColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/fairyLightColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/fogColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/ghostLightColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/hexaDomeColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/index.d.ts +0 -16
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/lightDomeColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/pulseColorationShader.d.ts +0 -17
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/radialRainbowColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/sunburstColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/swirlingRainbowColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/torchColorationShader.d.ts +0 -18
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/vortexColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveColorationShaders/waveColorationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveIlluminationShader.d.ts +0 -63
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveIlluminationShaders/bewitchingWaveIlluminationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveIlluminationShaders/blackHoleIlluminationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveIlluminationShaders/fairyLightIlluminationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveIlluminationShaders/ghostLightIlluminationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveIlluminationShaders/index.d.ts +0 -10
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveIlluminationShaders/pulseIlluminationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveIlluminationShaders/roilingIlluminationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveIlluminationShaders/sunburstIlluminationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveIlluminationShaders/torchIlluminationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveIlluminationShaders/vortexIlluminationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/adaptiveIlluminationShaders/waveIlluminationShader.d.ts +0 -6
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/adaptiveLightingShaders/index.d.ts +0 -5
- package/src/foundry/foundry.js/pixi/shaders/abstractBaseShaders/index.d.ts +0 -3
- package/src/foundry/foundry.js/pixi/shaders/index.d.ts +0 -2
- package/src/foundry/foundry.js/pixi/texts/index.d.ts +0 -1
- package/src/foundry/foundry.js/pixi/transforms/index.d.ts +0 -1
- package/src/foundry/foundry.js/pixi/transforms/synchronizedTransform.d.ts +0 -38
- package/src/foundry/foundry.js/pointSources/index.d.ts +0 -3
- package/src/foundry/foundry.js/polygonEdge.d.ts +0 -26
- package/src/foundry/foundry.js/polygonVertex.d.ts +0 -89
- package/src/foundry/foundry.js/quadtreeCulling.d.ts +0 -11
- package/src/foundry/foundry.js/rays/index.d.ts +0 -1
- package/src/foundry/foundry.js/rays/sightRay.d.ts +0 -34
- package/src/foundry/foundry.js/specialEffects/index.d.ts +0 -3
- package/src/foundry/foundry.js/templateUtils.d.ts +0 -39
- package/src/foundry/foundry.js/textEditor.d.ts +0 -286
- package/src/foundry/foundry.js/textureUtils.d.ts +0 -25
@@ -1,45 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Abstraction of the Application interface to be used with the Draggable class as a substitute for the app
|
3
|
-
* This class will represent one popout feed window and handle its positioning and draggability
|
4
|
-
*/
|
5
|
-
declare class CameraPopoutAppWrapper {
|
6
|
-
/**
|
7
|
-
* @param view - The CameraViews application that this popout belongs to
|
8
|
-
* @param userId - ID of the user this popout belongs to
|
9
|
-
* @param element - The div element of this specific popout window
|
10
|
-
*/
|
11
|
-
constructor(view: CameraViews, userId: string, element: JQuery);
|
12
|
-
|
13
|
-
/**
|
14
|
-
* The CameraViews application that this popout belongs to
|
15
|
-
*/
|
16
|
-
view: CameraViews;
|
17
|
-
|
18
|
-
/**
|
19
|
-
* The div element of this specific popout window
|
20
|
-
*/
|
21
|
-
element: JQuery;
|
22
|
-
|
23
|
-
/**
|
24
|
-
* ID of the user this popout belongs to
|
25
|
-
*/
|
26
|
-
userId: string;
|
27
|
-
|
28
|
-
/** @defaultValue `true` */
|
29
|
-
popOut: boolean;
|
30
|
-
|
31
|
-
/** @defaultValue `{}` */
|
32
|
-
options: Record<string, unknown>;
|
33
|
-
|
34
|
-
/**
|
35
|
-
* Get the current position of this popout window
|
36
|
-
*/
|
37
|
-
get position(): Application.Position;
|
38
|
-
|
39
|
-
setPosition(options?: Partial<Application.Position>): (Application.Position & { height: number }) | void;
|
40
|
-
|
41
|
-
/** @internal */
|
42
|
-
protected _onResize(event: Event): void;
|
43
|
-
|
44
|
-
bringToTop(): void;
|
45
|
-
}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
import './activeEffect';
|
2
|
-
import './actor';
|
3
|
-
import './canvasDocuments';
|
4
|
-
import './card';
|
5
|
-
import './cards';
|
6
|
-
import './chatMessage';
|
7
|
-
import './combat';
|
8
|
-
import './combatant';
|
9
|
-
import './fogExploration';
|
10
|
-
import './folder';
|
11
|
-
import './item';
|
12
|
-
import './journalEntry';
|
13
|
-
import './macro';
|
14
|
-
import './playlist';
|
15
|
-
import './playlistSound';
|
16
|
-
import './prototypeToken';
|
17
|
-
import './rollTable';
|
18
|
-
import './scene';
|
19
|
-
import './setting';
|
20
|
-
import './tableResult';
|
21
|
-
import './user';
|
@@ -1,25 +0,0 @@
|
|
1
|
-
import type { PrototypeTokenDataConstructorData } from '../../common/data/data.mjs/prototypeTokenData';
|
2
|
-
|
3
|
-
declare global {
|
4
|
-
/**
|
5
|
-
* An extended Document definition used specifically
|
6
|
-
* This ensures that the PrototypeTokenData schema is used instead of the standard TokenData.
|
7
|
-
* This exists specifically for prototype Token configuration in the TokenConfig app and should not be used otherwise.
|
8
|
-
* @internal
|
9
|
-
* @remarks The types for this are incorrect, in particular everything related to the data should use
|
10
|
-
* {@link foundry.data.PrototypeTokenData} instead of {@link foundry.data.TokenData}. However, with the current approach
|
11
|
-
* to type documents, we don't see a way to do this. This class is just added for reference. As the documentation above
|
12
|
-
* says, don't use it (there really shouldn't be a need to do so).
|
13
|
-
*/
|
14
|
-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
15
|
-
// @ts-ignore
|
16
|
-
class PrototypeTokenDocument extends TokenDocument {
|
17
|
-
static get schema(): typeof foundry.data.PrototypeTokenData;
|
18
|
-
|
19
|
-
/** @override */
|
20
|
-
update(
|
21
|
-
data?: DeepPartial<PrototypeTokenDataConstructorData> | undefined,
|
22
|
-
context?: (DocumentModificationContext & foundry.utils.MergeObjectOptions) | undefined
|
23
|
-
): Promise<this | undefined>;
|
24
|
-
}
|
25
|
-
}
|
@@ -1,60 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* An object containing the result of a collision test.
|
3
|
-
* @internal
|
4
|
-
*/
|
5
|
-
declare class CollisionResult {
|
6
|
-
constructor(values?: {
|
7
|
-
target?: PolygonVertex | null;
|
8
|
-
collisions?: PolygonVertex[];
|
9
|
-
cwEdges?: EdgeSet;
|
10
|
-
ccwEdges?: EdgeSet;
|
11
|
-
isBehind?: boolean;
|
12
|
-
isLimited?: boolean;
|
13
|
-
isRequired?: boolean;
|
14
|
-
wasLimited?: boolean;
|
15
|
-
});
|
16
|
-
|
17
|
-
/**
|
18
|
-
* The vertex that was the target of this result
|
19
|
-
* @defaultValue `null`
|
20
|
-
*/
|
21
|
-
target: PolygonVertex | null;
|
22
|
-
|
23
|
-
/**
|
24
|
-
* The array of collision points which apply to this result
|
25
|
-
* @defaultValue `[]`
|
26
|
-
*/
|
27
|
-
collisions: PolygonVertex[];
|
28
|
-
|
29
|
-
/**
|
30
|
-
* The set of edges connected to the target vertex that continue clockwise
|
31
|
-
* @defaultValue `new Set()`
|
32
|
-
*/
|
33
|
-
cwEdges: EdgeSet;
|
34
|
-
|
35
|
-
/**
|
36
|
-
* The set of edges connected to the target vertex that continue counter-clockwise
|
37
|
-
* @defaultValue `new Set()`
|
38
|
-
*/
|
39
|
-
ccwEdges: EdgeSet;
|
40
|
-
|
41
|
-
/**
|
42
|
-
* Is the target vertex for this result behind some closer active edge?
|
43
|
-
*/
|
44
|
-
isBehind: boolean | undefined;
|
45
|
-
|
46
|
-
/**
|
47
|
-
* Does the target vertex for this result impose a limited collision?
|
48
|
-
*/
|
49
|
-
isLimited: boolean | undefined;
|
50
|
-
|
51
|
-
/**
|
52
|
-
* Is this result required due to a limited angle?
|
53
|
-
*/
|
54
|
-
isRequired: boolean | undefined;
|
55
|
-
|
56
|
-
/**
|
57
|
-
* Has the set of collisions for this result encountered a limited edge?
|
58
|
-
*/
|
59
|
-
wasLimited: boolean | undefined;
|
60
|
-
}
|
@@ -1,103 +0,0 @@
|
|
1
|
-
declare global {
|
2
|
-
/**
|
3
|
-
* Some global variables (such as {@link game}) are only initialized after certain events have happened during the
|
4
|
-
* initialization of Foundry VTT. For that reason, the correct types for these variables include the types for the
|
5
|
-
* uninitialized state.
|
6
|
-
*
|
7
|
-
* While this is correct from a type checking perspective, it can be inconvenient to have to type guard these global
|
8
|
-
* variables everywhere. Some users might prefer the convenience over the 100% correctness in type checking.
|
9
|
-
*
|
10
|
-
* For this reason, this interface provides a way for users to configure certain global variables to be typed more
|
11
|
-
* leniently, i.e., as the types of their initialized state. This is done via declaration merging. To configure a
|
12
|
-
* specific global variable to be typed leniently, the user simply needs to merge a property with the name of the
|
13
|
-
* variable into this interface (the type doesn't matter).
|
14
|
-
*
|
15
|
-
* The currently supported variables are:
|
16
|
-
* - {@link game}
|
17
|
-
* - {@link socket}
|
18
|
-
* - {@link ui}
|
19
|
-
* - {@link canvas}
|
20
|
-
*
|
21
|
-
* @example
|
22
|
-
* ```typescript
|
23
|
-
* declare global {
|
24
|
-
* interface LenientGlobalVariableTypes {
|
25
|
-
* game: never; // the type doesn't matter
|
26
|
-
* }
|
27
|
-
* }
|
28
|
-
*
|
29
|
-
* const referenceToGame: Game = game; // ok! :)
|
30
|
-
* ```
|
31
|
-
*/
|
32
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
33
|
-
interface LenientGlobalVariableTypes {}
|
34
|
-
|
35
|
-
let vtt: 'Foundry VTT';
|
36
|
-
|
37
|
-
/**
|
38
|
-
* @defaultValue `{}`
|
39
|
-
* @remarks
|
40
|
-
* Initialized between the `'DOMContentLoaded'` event and the `'init'` hook event.
|
41
|
-
*/
|
42
|
-
let game: 'game' extends keyof LenientGlobalVariableTypes ? Game : Game | {};
|
43
|
-
|
44
|
-
/**
|
45
|
-
* @defaultValue `null`
|
46
|
-
* @remarks
|
47
|
-
* Initialized between the `'DOMContentLoaded'` event and the `'init'` hook event.
|
48
|
-
*/
|
49
|
-
let socket: 'socket' extends keyof LenientGlobalVariableTypes ? io.Socket : io.Socket | null;
|
50
|
-
|
51
|
-
/**
|
52
|
-
* A collection of application instances
|
53
|
-
* @remarks
|
54
|
-
* - All of the elements of {@link ui} except for `context` and `window` are initialized between the `'setup'` and `'ready'` hook events.
|
55
|
-
* - In the `/stream` view, only `chat` is initialized but none of the other {@link Application}s.
|
56
|
-
*/
|
57
|
-
let ui: {
|
58
|
-
/**
|
59
|
-
* @remarks
|
60
|
-
* Initialized whenever a {@link ContextMenu} is opened, deleted when it's closed again.
|
61
|
-
*/
|
62
|
-
context?: ContextMenu;
|
63
|
-
|
64
|
-
/**
|
65
|
-
* @defaultValue `{}`
|
66
|
-
*/
|
67
|
-
windows: Record<number, Application>;
|
68
|
-
} & ('ui' extends keyof LenientGlobalVariableTypes ? UiApplications : Partial<UiApplications>);
|
69
|
-
|
70
|
-
/** The client-side console is the default logger */
|
71
|
-
let logger: typeof console;
|
72
|
-
|
73
|
-
/**
|
74
|
-
* @defaultValue `undefined`
|
75
|
-
* Initialized between the `'DOMContentLoaded'` event and the `'init'` hook event.
|
76
|
-
*/
|
77
|
-
let canvas: 'canvas' extends keyof LenientGlobalVariableTypes ? Canvas : Canvas | undefined;
|
78
|
-
|
79
|
-
/**
|
80
|
-
* A "secret" global to help debug attributes of the currently controlled Token.
|
81
|
-
* This is only for debugging, and may be removed in the future, so it's not safe to use.
|
82
|
-
*/
|
83
|
-
let _token: InstanceType<CONFIG['Token']['objectClass']> | null;
|
84
|
-
|
85
|
-
/*
|
86
|
-
* Global Variables
|
87
|
-
* The following variables are declared directly in foundry's HTML file (or more concretely, in `main.hbs`)
|
88
|
-
*/
|
89
|
-
|
90
|
-
const SIGNED_EULA: boolean;
|
91
|
-
|
92
|
-
const ROUTE_PREFIX: string;
|
93
|
-
|
94
|
-
const MESSAGES:
|
95
|
-
| { type: Notifications.Notification['type']; message: string; options: Notifications.Options }[]
|
96
|
-
| null;
|
97
|
-
}
|
98
|
-
|
99
|
-
type UiApplications = {
|
100
|
-
[Key in keyof CONFIG['ui']]: InstanceType<CONFIG['ui'][Key]>;
|
101
|
-
};
|
102
|
-
|
103
|
-
export {};
|
@@ -1,392 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* A collection of Handlebars template helpers which can be used within HTML templates.
|
3
|
-
*/
|
4
|
-
declare class HandlebarsHelpers {
|
5
|
-
/**
|
6
|
-
* For checkboxes, if the value of the checkbox is true, add the "checked" property, otherwise add nothing.
|
7
|
-
*/
|
8
|
-
static checked(value: unknown): string;
|
9
|
-
|
10
|
-
/**
|
11
|
-
* For use in form inputs. If the supplied value is truthy, add the "disabled" property, otherwise add nothing.
|
12
|
-
*/
|
13
|
-
static disabled(value: unknown): string;
|
14
|
-
|
15
|
-
/**
|
16
|
-
* Concatenate a number of string terms into a single string.
|
17
|
-
* This is useful for passing arguments with variable names.
|
18
|
-
* @param values - The values to concatenate
|
19
|
-
*
|
20
|
-
* @example <caption>Concatenate several string parts to create a dynamic variable</caption>
|
21
|
-
* ```handlebars
|
22
|
-
* {{filePicker target=(concat "faces." i ".img") type="image"}}
|
23
|
-
* ```
|
24
|
-
*/
|
25
|
-
static concat(...values: string[]): Handlebars.SafeString;
|
26
|
-
|
27
|
-
/**
|
28
|
-
* Render a pair of inputs for selecting a color.
|
29
|
-
* @param options - Helper options
|
30
|
-
*/
|
31
|
-
static colorPicker(options: HandlebarsHelpers.ColorPickerOptions): Handlebars.SafeString;
|
32
|
-
|
33
|
-
/**
|
34
|
-
* Construct an editor element for rich text editing with TinyMCE
|
35
|
-
* @param options - Helper options
|
36
|
-
*/
|
37
|
-
static editor(options: HandlebarsHelpers.EditorOptions): Handlebars.SafeString;
|
38
|
-
|
39
|
-
/**
|
40
|
-
* Render a file-picker button linked to an `<input>` field
|
41
|
-
* @param options - Helper options
|
42
|
-
*/
|
43
|
-
static filePicker(options: HandlebarsHelpers.FilePickerOptions): Handlebars.SafeString | string;
|
44
|
-
|
45
|
-
/**
|
46
|
-
* Translate a provided string key by using the loaded dictionary of localization strings.
|
47
|
-
*
|
48
|
-
* @example <caption>Translate a provided localization string, optionally including formatting parameters</caption>
|
49
|
-
* ```handlebars
|
50
|
-
* <label>{{localize "ACTOR.Create"}}</label> <!-- "Create Actor" -->
|
51
|
-
* <label>{{localize "CHAT.InvalidCommand" command=foo}}</label> <!-- "foo is not a valid chat message command." -->
|
52
|
-
* ```
|
53
|
-
*/
|
54
|
-
static localize(value: string, options: HandlebarsHelpers.LocalizeOptions): string;
|
55
|
-
|
56
|
-
/**
|
57
|
-
* @param value - A numeric value to format
|
58
|
-
* @param options - Additional options which customize the resulting format
|
59
|
-
* @returns The formatted string to be included in a template
|
60
|
-
* A string formatting helper to display a number with a certain fixed number of decimals and an explicit sign.
|
61
|
-
*/
|
62
|
-
static numberFormat(value: string, options: HandlebarsHelpers.NumberFormatOptions): string;
|
63
|
-
|
64
|
-
/**
|
65
|
-
* Render a form input field of type number with value appropriately rounded to step size.
|
66
|
-
*/
|
67
|
-
static numberInput(value: string, options: HandlebarsHelpers.NumberInputOptions): Handlebars.SafeString;
|
68
|
-
|
69
|
-
/**
|
70
|
-
* A helper to create a set of radio checkbox input elements in a named set.
|
71
|
-
* The provided keys are the possible radio values while the provided values are human readable labels.
|
72
|
-
*
|
73
|
-
* @param name - The radio checkbox field name
|
74
|
-
* @param choices - A mapping of radio checkbox values to human readable labels
|
75
|
-
* @param options - Options which customize the radio boxes creation
|
76
|
-
*
|
77
|
-
* @example <caption>The provided input data</caption>
|
78
|
-
* ```typescript
|
79
|
-
* let groupName = "importantChoice";
|
80
|
-
* let choices = {a: "Choice A", b: "Choice B"};
|
81
|
-
* let chosen = "a";
|
82
|
-
* ```
|
83
|
-
*
|
84
|
-
* @example <caption>The template HTML structure</caption>
|
85
|
-
* ```handlebars
|
86
|
-
* <div class="form-group">
|
87
|
-
* <label>Radio Group Label</label>
|
88
|
-
* <div class="form-fields">
|
89
|
-
* {{radioBoxes groupName choices checked=chosen localize=true}}
|
90
|
-
* </div>
|
91
|
-
* </div>
|
92
|
-
* ```
|
93
|
-
*/
|
94
|
-
static radioBoxes(
|
95
|
-
name: string,
|
96
|
-
choices: Record<string, string>,
|
97
|
-
options: HandlebarsHelpers.RadioBoxesOptions
|
98
|
-
): Handlebars.SafeString;
|
99
|
-
|
100
|
-
/**
|
101
|
-
* Render a pair of inputs for selecting a value in a range.
|
102
|
-
* @param options - Helper options
|
103
|
-
*/
|
104
|
-
static rangePicker(options: HandlebarsHelpers.RangePickerOptions): Handlebars.SafeString;
|
105
|
-
|
106
|
-
/**
|
107
|
-
* A helper to assign an `<option>` within a `<select>` block as selected based on its value
|
108
|
-
* Escape the string as handlebars would, then escape any regexp characters in it
|
109
|
-
*/
|
110
|
-
static select(selected: string, options: HandlebarsHelpers.SelectOptions): string;
|
111
|
-
|
112
|
-
/**
|
113
|
-
* A helper to create a set of `<option>` elements in a `<select>` block based on a provided dictionary.
|
114
|
-
* The provided keys are the option values while the provided values are human readable labels.
|
115
|
-
* This helper supports both single-select as well as multi-select input fields.
|
116
|
-
*
|
117
|
-
* @param choices - A mapping of radio checkbox values to human readable labels
|
118
|
-
* @param options - Helper options
|
119
|
-
*
|
120
|
-
* @example <caption>The provided input data</caption>
|
121
|
-
* ```typescript
|
122
|
-
* let choices = {a: "Choice A", b: "Choice B"};
|
123
|
-
* let value = "a";
|
124
|
-
* ```
|
125
|
-
*
|
126
|
-
* @example <caption>The template HTML structure</caption>
|
127
|
-
* ```handlebars
|
128
|
-
* <select name="importantChoice">
|
129
|
-
* {{selectOptions choices selected=value localize=true}}
|
130
|
-
* </select>
|
131
|
-
* ```
|
132
|
-
*
|
133
|
-
* @example <caption>The resulting HTML</caption>
|
134
|
-
* ```handlebars
|
135
|
-
* <select name="importantChoice">
|
136
|
-
* <option value="a" selected>Choice A</option>
|
137
|
-
* <option value="b">Choice B</option>
|
138
|
-
* </select>
|
139
|
-
* ```
|
140
|
-
*
|
141
|
-
* @example <caption>Using inverted</caption>
|
142
|
-
* ```typescript
|
143
|
-
* let choices = {"Choice A": "a", "Choice B": "b"};
|
144
|
-
* let value = "a";
|
145
|
-
* ```
|
146
|
-
*
|
147
|
-
* @example <caption>The template HTML structure</caption>
|
148
|
-
* ```handlebars
|
149
|
-
* <select name="importantChoice">
|
150
|
-
* {{selectOptions choices selected=value inverted=true}}
|
151
|
-
* </select>
|
152
|
-
* ```
|
153
|
-
*
|
154
|
-
* @example <caption>Using nameAttr and labelAttr with objects</caption>
|
155
|
-
* ```typescript
|
156
|
-
* let choices = {foo: {key: "a", label: "Choice A"}, bar: {key: "b", label: "Choice B"}};
|
157
|
-
* let value = "b";
|
158
|
-
* ```
|
159
|
-
*
|
160
|
-
* @example <caption>The template HTML structure</caption>
|
161
|
-
* ```handlebars
|
162
|
-
* <select name="importantChoice">
|
163
|
-
* {{selectOptions choices selected=value nameAttr="key" labelAttr="label"}}
|
164
|
-
* </select>
|
165
|
-
* ```
|
166
|
-
*
|
167
|
-
* @example <caption>Using nameAttr and labelAttr with arrays</caption>
|
168
|
-
* ```typescript
|
169
|
-
* let choices = [{key: "a", label: "Choice A"}, {key: "b", label: "Choice B"}];
|
170
|
-
* let value = "b";
|
171
|
-
* ```
|
172
|
-
*
|
173
|
-
* @example <caption>The template HTML structure</caption>
|
174
|
-
* ```handlebars
|
175
|
-
* <select name="importantChoice">
|
176
|
-
* {{selectOptions choices selected=value nameAttr="key" labelAttr="label"}}
|
177
|
-
* </select>
|
178
|
-
* ```
|
179
|
-
*/
|
180
|
-
static selectOptions(
|
181
|
-
choices: Record<string, string>,
|
182
|
-
options: HandlebarsHelpers.SelectOptionsOptions
|
183
|
-
): Handlebars.SafeString;
|
184
|
-
}
|
185
|
-
|
186
|
-
declare namespace HandlebarsHelpers {
|
187
|
-
interface ColorPickerOptions extends Handlebars.HelperOptions {
|
188
|
-
hash: {
|
189
|
-
/**
|
190
|
-
* The name of the field to create
|
191
|
-
*/
|
192
|
-
name?: string;
|
193
|
-
|
194
|
-
/**
|
195
|
-
* The current color value
|
196
|
-
*/
|
197
|
-
value?: string;
|
198
|
-
|
199
|
-
/**
|
200
|
-
* A default color string if a value is not provided
|
201
|
-
*/
|
202
|
-
default?: string;
|
203
|
-
};
|
204
|
-
}
|
205
|
-
|
206
|
-
interface EditorOptions extends Handlebars.HelperOptions {
|
207
|
-
hash: {
|
208
|
-
/**
|
209
|
-
* The named target data element
|
210
|
-
*/
|
211
|
-
target: string;
|
212
|
-
|
213
|
-
/**
|
214
|
-
* Is the current user an owner of the data?
|
215
|
-
*/
|
216
|
-
owner?: boolean;
|
217
|
-
|
218
|
-
/**
|
219
|
-
* Include a button used to activate the editor later?
|
220
|
-
*/
|
221
|
-
button?: boolean;
|
222
|
-
|
223
|
-
/**
|
224
|
-
* Is the text editor area currently editable?
|
225
|
-
*/
|
226
|
-
editable?: boolean;
|
227
|
-
|
228
|
-
/**
|
229
|
-
* Replace dynamic document links?
|
230
|
-
* @defaultValue `true`
|
231
|
-
*/
|
232
|
-
documents?: boolean;
|
233
|
-
|
234
|
-
/**
|
235
|
-
* The data object providing context for inline rolls
|
236
|
-
*/
|
237
|
-
rollData?: object | (() => object);
|
238
|
-
|
239
|
-
/**
|
240
|
-
* The original HTML content as a string
|
241
|
-
* @defaultValue `""`
|
242
|
-
*/
|
243
|
-
content?: string;
|
244
|
-
};
|
245
|
-
}
|
246
|
-
|
247
|
-
interface FilePickerOptions extends Handlebars.HelperOptions {
|
248
|
-
hash: {
|
249
|
-
/**
|
250
|
-
* The type of FilePicker instance to display
|
251
|
-
*/
|
252
|
-
type?: FilePicker.Type;
|
253
|
-
|
254
|
-
/**
|
255
|
-
* The field name in the target data
|
256
|
-
*/
|
257
|
-
target: string;
|
258
|
-
};
|
259
|
-
}
|
260
|
-
|
261
|
-
interface LocalizeOptions extends Handlebars.HelperOptions {
|
262
|
-
hash: Record<string, unknown>;
|
263
|
-
}
|
264
|
-
|
265
|
-
interface NumberFormatOptions extends Handlebars.HelperOptions {
|
266
|
-
hash: {
|
267
|
-
/**
|
268
|
-
* The number of decimal places to include in the resulting string
|
269
|
-
* @defaultValue `0`
|
270
|
-
*/
|
271
|
-
decimals?: number;
|
272
|
-
|
273
|
-
/**
|
274
|
-
* Whether to include an explicit "+" sign for positive numbers
|
275
|
-
* @defaultValue `false`
|
276
|
-
*/
|
277
|
-
sign?: boolean;
|
278
|
-
};
|
279
|
-
}
|
280
|
-
|
281
|
-
interface NumberInputOptions extends Handlebars.HelperOptions {
|
282
|
-
hash: {
|
283
|
-
/**
|
284
|
-
* @defaultValue `""`
|
285
|
-
*/
|
286
|
-
name?: string;
|
287
|
-
|
288
|
-
step?: number;
|
289
|
-
|
290
|
-
/**
|
291
|
-
* @defaultValue `false`
|
292
|
-
*/
|
293
|
-
disabled?: boolean;
|
294
|
-
|
295
|
-
/**
|
296
|
-
* @defaultValue `""`
|
297
|
-
*/
|
298
|
-
placeholder?: string;
|
299
|
-
|
300
|
-
/**
|
301
|
-
* @defaultValue `""`
|
302
|
-
*/
|
303
|
-
class?: string;
|
304
|
-
|
305
|
-
min?: number;
|
306
|
-
|
307
|
-
max?: number;
|
308
|
-
};
|
309
|
-
}
|
310
|
-
|
311
|
-
interface RadioBoxesOptions extends Handlebars.HelperOptions {
|
312
|
-
hash: {
|
313
|
-
/**
|
314
|
-
* Which key is currently checked?
|
315
|
-
* @defaultValue `null`
|
316
|
-
*/
|
317
|
-
checked?: string;
|
318
|
-
|
319
|
-
/**
|
320
|
-
* Pass each label through string localization?
|
321
|
-
* @defaultValue `false`
|
322
|
-
*/
|
323
|
-
localize?: boolean;
|
324
|
-
};
|
325
|
-
}
|
326
|
-
|
327
|
-
interface RangePickerOptions extends Handlebars.HelperOptions {
|
328
|
-
/**
|
329
|
-
* The name of the field to create
|
330
|
-
* @defaultValue `'range'`
|
331
|
-
*/
|
332
|
-
name?: string;
|
333
|
-
|
334
|
-
/**
|
335
|
-
* The current range value
|
336
|
-
*/
|
337
|
-
value?: number;
|
338
|
-
|
339
|
-
/**
|
340
|
-
* The minimum allowed value
|
341
|
-
*/
|
342
|
-
min?: number;
|
343
|
-
|
344
|
-
/**
|
345
|
-
* The maximum allowed value
|
346
|
-
*/
|
347
|
-
max?: number;
|
348
|
-
|
349
|
-
/**
|
350
|
-
* The allowed step size
|
351
|
-
*/
|
352
|
-
step?: number;
|
353
|
-
}
|
354
|
-
|
355
|
-
type SelectOptions = Handlebars.HelperOptions;
|
356
|
-
|
357
|
-
interface SelectOptionsOptions extends Handlebars.HelperOptions {
|
358
|
-
hash: {
|
359
|
-
/**
|
360
|
-
* Which key or array of keys that are currently selected?
|
361
|
-
*/
|
362
|
-
selected?: string | string[];
|
363
|
-
|
364
|
-
/**
|
365
|
-
* Pass each label through string localization?
|
366
|
-
* @defaultValue `false`
|
367
|
-
*/
|
368
|
-
localize?: boolean;
|
369
|
-
|
370
|
-
/**
|
371
|
-
* Add a blank option as the first option with this label
|
372
|
-
*/
|
373
|
-
blank?: string;
|
374
|
-
|
375
|
-
/**
|
376
|
-
* Look up a property in the choice object values to use as the option value
|
377
|
-
*/
|
378
|
-
nameAttr?: string;
|
379
|
-
|
380
|
-
/**
|
381
|
-
* Look up a property in the choice object values to use as the option label
|
382
|
-
*/
|
383
|
-
labelAttr?: string;
|
384
|
-
|
385
|
-
/**
|
386
|
-
* Use the choice object value as the option value, and the key as the label
|
387
|
-
* instead of vice-versa
|
388
|
-
*/
|
389
|
-
inverted?: boolean;
|
390
|
-
};
|
391
|
-
}
|
392
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
import './primaryCanvasGroup';
|