@optionfactory/ful 1.0.15 → 1.0.16

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.mjs CHANGED
@@ -2372,7 +2372,7 @@ class Table extends ParsedElement {
2372
2372
  this.#paginator = Nodes.queryChildren(fragment, 'ful-pagination');
2373
2373
  this.#sorters = table.querySelectorAll(':scope > thead ful-sorter') ?? [];
2374
2374
  this.replaceChildren(fragment);
2375
- await Nodes.waitForUpgrades();
2375
+ await registry.waitForChildrenRendered(this);
2376
2376
  const orderFromSchema = schema.find(v => v.order);
2377
2377
 
2378
2378
  const maybeForm = /** @type any */(Nodes.queryChildren(this, 'ful-form'));