@optionfactory/ful 1.1.3 → 3.0.0
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/dist/ful.iife.js +25 -7
- package/dist/ful.iife.js.map +1 -1
- package/dist/ful.iife.min.js +1 -1
- package/dist/ful.iife.min.js.map +1 -1
- package/dist/ful.min.mjs +1 -1
- package/dist/ful.min.mjs.map +1 -1
- package/dist/ful.mjs +26 -8
- package/dist/ful.mjs.map +1 -1
- package/package.json +2 -2
package/dist/ful.iife.js
CHANGED
|
@@ -1422,7 +1422,10 @@ var ful = (function (exports, ftl) {
|
|
|
1422
1422
|
static observed = ['value', 'readonly:presence'];
|
|
1423
1423
|
static slots = true;
|
|
1424
1424
|
static template = `
|
|
1425
|
-
<
|
|
1425
|
+
<div class="form-label">
|
|
1426
|
+
<label>{{{{ slots.default }}}}</label>
|
|
1427
|
+
{{{{ slots.info }}}}
|
|
1428
|
+
</div>
|
|
1426
1429
|
<div class="input-group">
|
|
1427
1430
|
<span data-tpl-if="slots.ibefore" class="input-group-text">{{{{ slots.ibefore }}}}</span>
|
|
1428
1431
|
{{{{ slots.before }}}}
|
|
@@ -1704,7 +1707,10 @@ var ful = (function (exports, ftl) {
|
|
|
1704
1707
|
static observed = ['value:csvm', 'readonly:presence']
|
|
1705
1708
|
static slots = true
|
|
1706
1709
|
static template = `
|
|
1707
|
-
<
|
|
1710
|
+
<div class="form-label">
|
|
1711
|
+
<label>{{{{ slots.default }}}}</label>
|
|
1712
|
+
{{{{ slots.info }}}}
|
|
1713
|
+
</div>
|
|
1708
1714
|
<div class="input-group flex-nowrap" tabindex="-1">
|
|
1709
1715
|
<span data-tpl-if="slots.ibefore" class="input-group-text">{{{{ slots.ibefore }}}}</span>
|
|
1710
1716
|
{{{{ slots.before }}}}
|
|
@@ -2006,7 +2012,10 @@ var ful = (function (exports, ftl) {
|
|
|
2006
2012
|
<div class="input-container">
|
|
2007
2013
|
<input class="form-check-input" type="checkbox" role="switch" form="" placeholder=" ">
|
|
2008
2014
|
</div>
|
|
2009
|
-
<
|
|
2015
|
+
<div class="form-check-label">
|
|
2016
|
+
<label>{{{{ slots.default }}}}</label>
|
|
2017
|
+
{{{{ slots.info }}}}
|
|
2018
|
+
</div>
|
|
2010
2019
|
</div>
|
|
2011
2020
|
<ful-field-error></ful-field-error>
|
|
2012
2021
|
`;
|
|
@@ -2376,7 +2385,7 @@ var ful = (function (exports, ftl) {
|
|
|
2376
2385
|
this.#paginator = ftl.Nodes.queryChildren(fragment, 'ful-pagination');
|
|
2377
2386
|
this.#sorters = table.querySelectorAll(':scope > thead ful-sorter') ?? [];
|
|
2378
2387
|
this.replaceChildren(fragment);
|
|
2379
|
-
await ftl.
|
|
2388
|
+
await ftl.Rendering.waitForChildren(this);
|
|
2380
2389
|
const orderFromSchema = schema.find(v => v.order);
|
|
2381
2390
|
|
|
2382
2391
|
const maybeForm = /** @type any */(ftl.Nodes.queryChildren(this, 'ful-form'));
|
|
@@ -2459,7 +2468,10 @@ var ful = (function (exports, ftl) {
|
|
|
2459
2468
|
static observed = ["value:json"];
|
|
2460
2469
|
static slots = true;
|
|
2461
2470
|
static template = `
|
|
2462
|
-
<
|
|
2471
|
+
<div class="form-label" data-tpl-if="label">
|
|
2472
|
+
<label>{{{{ label }}}}</label>
|
|
2473
|
+
{{{{ slots.info }}}}
|
|
2474
|
+
</div>
|
|
2463
2475
|
<div class="input-group">
|
|
2464
2476
|
<button data-ref="operator" class="btn btn-outline-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false" value="LTE" form="">≼</button>
|
|
2465
2477
|
<ul class="dropdown-menu">
|
|
@@ -2561,7 +2573,10 @@ var ful = (function (exports, ftl) {
|
|
|
2561
2573
|
static observed = ["value:json"];
|
|
2562
2574
|
static slots = true;
|
|
2563
2575
|
static template = `
|
|
2564
|
-
<
|
|
2576
|
+
<div class="form-label" data-tpl-if="label">
|
|
2577
|
+
<label>{{{{ label }}}}</label>
|
|
2578
|
+
{{{{ slots.info }}}}
|
|
2579
|
+
</div>
|
|
2565
2580
|
<div class="input-group">
|
|
2566
2581
|
<button data-ref="operator" class="btn btn-outline-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false" value="EQ" form="">=</button>
|
|
2567
2582
|
<ul class="dropdown-menu">
|
|
@@ -2653,7 +2668,10 @@ var ful = (function (exports, ftl) {
|
|
|
2653
2668
|
static observed = ["value:json"];
|
|
2654
2669
|
static slots = true;
|
|
2655
2670
|
static template = `
|
|
2656
|
-
<
|
|
2671
|
+
<div class="form-label" data-tpl-if="label">
|
|
2672
|
+
<label>{{{{ label }}}}</label>
|
|
2673
|
+
{{{{ slots.info }}}}
|
|
2674
|
+
</div>
|
|
2657
2675
|
<div class="input-group">
|
|
2658
2676
|
<button data-ref="operator" class="btn btn-outline-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false" value="CONTAINS" form="">…a…</button>
|
|
2659
2677
|
<ul class="dropdown-menu">
|