@optionfactory/ful 1.0.0 → 1.0.1

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
@@ -1270,6 +1270,7 @@ class Form extends ParsedElement {
1270
1270
  form.replaceChildren(...this.childNodes);
1271
1271
  form.addEventListener('submit', async (e) => {
1272
1272
  e.preventDefault();
1273
+ e.stopPropagation();
1273
1274
  await this.submit();
1274
1275
  });
1275
1276
  if (this.hasAttribute("clear-invalid-on-change")) {
@@ -1770,7 +1771,7 @@ class RadioGroup extends ParsedElement {
1770
1771
  <div class="label-wrapper" data-tpl-each="inputsAndLabels" data-tpl-var="ial">
1771
1772
  <label>
1772
1773
  {{{{ ial[0] }}}}
1773
- {{{{ ial[1] }}}}
1774
+ <div>{{{{ ial[1] }}}}</div>
1774
1775
  </label>
1775
1776
  </div>
1776
1777
  </section>