@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 +14 -0
- package/dist/cjs/limel-checkbox.cjs.entry.js +2 -2
- package/dist/cjs/limel-form.cjs.entry.js +2573 -934
- package/dist/cjs/limel-prosemirror-adapter.cjs.entry.js +27 -16
- package/dist/cjs/limel-table.cjs.entry.js +346 -112
- package/dist/collection/components/checkbox/checkbox.js +2 -2
- package/dist/collection/components/form/form.test-schemas.js +15 -0
- package/dist/collection/components/table/table.css +6 -0
- package/dist/esm/limel-checkbox.entry.js +2 -2
- package/dist/esm/limel-form.entry.js +2575 -936
- package/dist/esm/limel-prosemirror-adapter.entry.js +27 -16
- package/dist/esm/limel-table.entry.js +346 -112
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/p-1fb4bfa9.entry.js +13 -0
- package/dist/lime-elements/p-31713caf.entry.js +1 -0
- package/dist/lime-elements/p-4512a7b1.entry.js +1 -0
- package/dist/lime-elements/p-cf955cc2.entry.js +1 -0
- package/dist/types/components/checkbox/checkbox.d.ts +1 -1
- package/dist/types/components/form/form.test-schemas.d.ts +1 -0
- package/package.json +20 -21
- package/dist/lime-elements/p-49f810e0.entry.js +0 -1
- package/dist/lime-elements/p-68eda654.entry.js +0 -13
- package/dist/lime-elements/p-c1ceade7.entry.js +0 -1
- package/dist/lime-elements/p-ffd668d2.entry.js +0 -1
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.
|
|
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: '
|
|
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 {
|