@optionfactory/ful 4.0.0 → 4.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
@@ -2186,7 +2186,8 @@ class RadioGroup extends ParsedElement {
2186
2186
  }
2187
2187
  set readonly(v) {
2188
2188
  this.#fieldset.inert = v;
2189
- }
2189
+ }
2190
+ //@ts-ignore
2190
2191
  get disabled(){
2191
2192
  return this.#fieldset.hasAttribute('disabled');
2192
2193
  }
@@ -2274,7 +2275,8 @@ class Checkbox extends ParsedElement {
2274
2275
  }
2275
2276
  set readonly(v) {
2276
2277
  this.#container.inert = v;
2277
- }
2278
+ }
2279
+ //@ts-ignore
2278
2280
  get disabled() {
2279
2281
  return this.#input.hasAttribute('disabled');
2280
2282
  }