reference DocumentSheetConfig from the new namespace

This commit is contained in:
Sven Balzer 2025-05-01 07:16:16 +02:00
parent 51235ebaf2
commit d653d58741

View File

@ -1,9 +1,10 @@
const { TypeDataModel } = foundry.abstract; const { TypeDataModel } = foundry.abstract;
const { ApplicationV2, HandlebarsApplicationMixin } = foundry.applications.api;
const { DocumentSheetConfig } = foundry.applications.apps;
const { ActorSheetV2, ItemSheetV2 } = foundry.applications.sheets;
const { Notifications } = foundry.applications.ui;
const { SchemaField, NumberField, StringField, BooleanField } = foundry.data.fields; const { SchemaField, NumberField, StringField, BooleanField } = foundry.data.fields;
const { ActorSheetV2, ItemSheetV2 } = foundry.applications.sheets; const { OperatorTerm, NumericTerm } = foundry.dice.terms;
const { ApplicationV2, HandlebarsApplicationMixin } = foundry.applications.api;
const { Notifications } = foundry.applications.ui;
const { OperatorTerm, NumericTerm } = foundry.dice.terms;
Hooks.once("i18nInit", async function() { Hooks.once("i18nInit", async function() {
const lang = game.i18n.lang; const lang = game.i18n.lang;