daggerheart/module/applications/sheets/items/domainCard.mjs
Joaquin Pereyra 5eab093ac4 FIX: class tagify selector
FEAT: add tagifyCOnfig on weapon sheet
FIX: prettier format
2025-06-25 15:20:01 -03:00

24 lines
928 B
JavaScript

import DHBaseItemSheet from '../api/base-item.mjs';
export default class DomainCardSheet extends DHBaseItemSheet {
/**@inheritdoc */
static DEFAULT_OPTIONS = {
classes: ['domain-card'],
position: { width: 450, height: 700 }
};
/**@override */
static PARTS = {
header: { template: 'systems/daggerheart/templates/sheets/items/domainCard/header.hbs' },
tabs: { template: 'systems/daggerheart/templates/sheets/global/tabs/tab-navigation.hbs' },
description: { template: 'systems/daggerheart/templates/sheets/global/tabs/tab-description.hbs' },
actions: {
template: 'systems/daggerheart/templates/sheets/global/tabs/tab-actions.hbs',
scrollable: ['.actions']
},
settings: {
template: 'systems/daggerheart/templates/sheets/items/domainCard/settings.hbs',
scrollable: ['.settings']
}
};
}