@limetech/lime-elements 39.44.2 → 39.44.4

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [39.44.4](https://github.com/Lundalogik/lime-elements/compare/v39.44.3...v39.44.4) (2026-08-12)
2
+
3
+ ### Bug Fixes
4
+
5
+
6
+ * **form:** allow clearing a field that has a schema default ([3fb4c0c](https://github.com/Lundalogik/lime-elements/commit/3fb4c0c16a56e4b7be2b8676a86128a21bdf9cac)), closes [#5125](https://github.com/Lundalogik/lime-elements/issues/5125)
7
+
8
+ ## [39.44.3](https://github.com/Lundalogik/lime-elements/compare/v39.44.2...v39.44.3) (2026-08-11)
9
+
10
+ ### Bug Fixes
11
+
12
+
13
+ * **checkbox:** rename internal id field to avoid createElement error ([0c17b93](https://github.com/Lundalogik/lime-elements/commit/0c17b93848e48b37a92f5576001de8d802f67bd0)), closes [#4190](https://github.com/Lundalogik/lime-elements/issues/4190)
14
+
1
15
  ## [39.44.2](https://github.com/Lundalogik/lime-elements/compare/v39.44.1...v39.44.2) (2026-08-06)
2
16
 
3
17
  ### Bug Fixes
@@ -40,7 +40,7 @@ const Checkbox = class {
40
40
  this.readonlyLabels = [];
41
41
  this.modified = false;
42
42
  this.shouldReinitialize = false;
43
- this.id = randomString.createRandomString();
43
+ this.inputId = randomString.createRandomString();
44
44
  this.helperTextId = randomString.createRandomString();
45
45
  this.destroyMDCInstances = () => {
46
46
  const input = this.getCheckboxElement();
@@ -113,7 +113,7 @@ const Checkbox = class {
113
113
  this.destroyMDCInstances();
114
114
  }
115
115
  render() {
116
- return (index.h(checkbox_template.CheckboxTemplate, { key: 'f01c9a3786bfb88bbf4450fc4b96f48385e50cc2', disabled: this.disabled || this.readonly, label: this.label, readonlyLabels: this.readonlyLabels, helperText: this.helperText, helperTextId: this.helperTextId, checked: this.checked || this.indeterminate, indeterminate: this.indeterminate, required: this.required, readonly: this.readonly, invalid: this.isInvalid(), onChange: this.onChange, id: this.id }));
116
+ return (index.h(checkbox_template.CheckboxTemplate, { key: '2193fb569354ec8ef9effbeaa5d600c9fde9686f', disabled: this.disabled || this.readonly, label: this.label, readonlyLabels: this.readonlyLabels, helperText: this.helperText, helperTextId: this.helperTextId, checked: this.checked || this.indeterminate, indeterminate: this.indeterminate, required: this.required, readonly: this.readonly, invalid: this.isInvalid(), onChange: this.onChange, id: this.inputId }));
117
117
  }
118
118
  get limelCheckbox() { return index.getElement(this); }
119
119
  static get watchers() { return {