@pageboard/html 0.12.6 → 0.12.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pageboard/html",
3
- "version": "0.12.6",
3
+ "version": "0.12.7",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -207,7 +207,7 @@ class HTMLElementFieldsetList extends Page.Element {
207
207
 
208
208
  #listToValues(values, list) {
209
209
  for (let i = 0; i < list.length; i++) {
210
- const obj = list[i];
210
+ const obj = list[i] ?? {};
211
211
  for (const [key, val] of Object.entries(obj)) {
212
212
  const parts = this.#prefix.slice();
213
213
  parts.push(i);
package/ui/form.js CHANGED
@@ -364,7 +364,6 @@ class HTMLElementForm extends Page.create(HTMLFormElement) {
364
364
  } else {
365
365
  vary = "patch";
366
366
  }
367
- scope.$vary = vary;
368
367
  }
369
368
  state.push(loc, { vary });
370
369
  }