feat!: migrate to v12
BREAKING CHANGE: Support for v11 has been dropped
This commit is contained in:
parent
1dd2705bf1
commit
6ac9f49463
13 changed files with 52 additions and 89 deletions
|
@ -8,14 +8,14 @@ SPDX-License-Identifier: MIT
|
|||
|
||||
<!-- Effect Header -->
|
||||
<header class="sheet-header">
|
||||
<img class="effect-icon" src="{{ data.icon }}" data-edit="icon">
|
||||
<img class="effect-img" src="{{ data.img }}" data-edit="img">
|
||||
<h1 class="effect-title">
|
||||
<input name="name" type="text" value="{{data.name}}" placeholder="{{ localize 'Name' }}" />
|
||||
</h1>
|
||||
</header>
|
||||
|
||||
<!-- Effect Configuration Tabs -->
|
||||
<nav class="sheet-tabs tabs">
|
||||
<nav class="sheet-tabs tabs" aria-role="{{localize 'SHEETS.FormNavLabel'}}">
|
||||
<a class="item" data-tab="details"><i class="fas fa-book"></i> {{localize "EFFECT.TabDetails"}}</a>
|
||||
<a class="item" data-tab="duration"><i class="fas fa-clock"></i> {{localize "EFFECT.TabDuration"}}</a>
|
||||
<a class="item" data-tab="effects"><i class="fas fa-cogs"></i> {{localize "EFFECT.TabEffects"}}</a>
|
||||
|
@ -24,9 +24,9 @@ SPDX-License-Identifier: MIT
|
|||
<!-- Details Tab -->
|
||||
<section class="tab" data-tab="details">
|
||||
<div class="form-group">
|
||||
<label>{{ localize "EFFECT.IconTint" }}</label>
|
||||
<label>{{ localize "EFFECT.Tint" }}</label>
|
||||
<div class="form-fields">
|
||||
{{colorPicker name="tint" value=data.tint}}
|
||||
<color-picker name="tint" value="{{data.tint}}" placeholder="#ffffff"></color-picker>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -38,9 +38,7 @@ SPDX-License-Identifier: MIT
|
|||
|
||||
<div class="form-group">
|
||||
<label>{{ localize "EFFECT.Disabled" }}</label>
|
||||
<div class="form-fields">
|
||||
<input type="checkbox" name="disabled" {{ checked data.disabled }} />
|
||||
</div>
|
||||
<input type="checkbox" name="disabled" {{ checked data.disabled }}/>
|
||||
</div>
|
||||
|
||||
{{#if isActorEffect}}
|
||||
|
@ -62,6 +60,17 @@ SPDX-License-Identifier: MIT
|
|||
</div>
|
||||
{{/if}}
|
||||
|
||||
<div class="form-group">
|
||||
<label>Status Conditions</label>
|
||||
<div class="form-fields">
|
||||
<multi-select name="statuses">
|
||||
{{#each statuses as |status|}}
|
||||
<option value="{{status.id}}" {{status.selected}}>{{status.label}}</option>
|
||||
{{/each}}
|
||||
</multi-select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>{{ localize "DS4.ActiveEffectApplyToItems" }}</label>
|
||||
<div class="form-fields">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue