@optionfactory/ful 1.1.4 → 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 +1 -1
- 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 +2 -2
- package/dist/ful.mjs.map +1 -1
- package/package.json +2 -2
package/dist/ful.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { registry, ParsedElement, Attributes, Fragments, Nodes } from '@optionfactory/ftl';
|
|
1
|
+
import { registry, ParsedElement, Attributes, Fragments, Nodes, Rendering } from '@optionfactory/ftl';
|
|
2
2
|
|
|
3
3
|
class Base64 {
|
|
4
4
|
static encode(arrayBuffer, dialect) {
|
|
@@ -2384,7 +2384,7 @@ class Table extends ParsedElement {
|
|
|
2384
2384
|
this.#paginator = Nodes.queryChildren(fragment, 'ful-pagination');
|
|
2385
2385
|
this.#sorters = table.querySelectorAll(':scope > thead ful-sorter') ?? [];
|
|
2386
2386
|
this.replaceChildren(fragment);
|
|
2387
|
-
await
|
|
2387
|
+
await Rendering.waitForChildren(this);
|
|
2388
2388
|
const orderFromSchema = schema.find(v => v.order);
|
|
2389
2389
|
|
|
2390
2390
|
const maybeForm = /** @type any */(Nodes.queryChildren(this, 'ful-form'));
|