Item Support #69

Merged
Oliver merged 50 commits from feature/item-support into main 2026-04-15 02:42:54 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 57b902f986 - Show all commits

View file

@ -22,6 +22,8 @@ export default [
Hooks: `readonly`,
ui: `readonly`,
foundry: `readonly`,
Actor: `readonly`,
Item: `readonly`,
ChatMessage: `readonly`,
ActiveEffect: `readonly`,
fromUuid: `readonly`,

View file

@ -1,11 +1,11 @@
import { __ID__, filePath } from "../consts.mjs";
import { deleteItemFromElement, editItemFromElement } from "./utils.mjs";
import { AttributeManager } from "./AttributeManager.mjs";
import { attributeSorter } from "../utils/attributeSort.mjs";
import { config } from "../config.mjs";
import { Logger } from "../utils/Logger.mjs";
import { TAFDocumentSheetConfig } from "./TAFDocumentSheetConfig.mjs";
import { TAFDocumentSheetMixin } from "./mixins/TAFDocumentSheetMixin.mjs";
import { deleteItemFromElement, editItemFromElement } from "./utils.mjs";
import { Logger } from "../utils/Logger.mjs";
const { HandlebarsApplicationMixin } = foundry.applications.api;
const { ActorSheetV2 } = foundry.applications.sheets;