@limetech/lime-elements 37.49.5 → 37.50.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/CHANGELOG.md +16 -0
- package/dist/cjs/limel-breadcrumbs_5.cjs.entry.js +0 -6
- package/dist/cjs/limel-breadcrumbs_5.cjs.entry.js.map +1 -1
- package/dist/cjs/limel-text-editor.cjs.entry.js.map +1 -1
- package/dist/collection/components/input-field/input-field.js +0 -6
- package/dist/collection/components/input-field/input-field.js.map +1 -1
- package/dist/collection/components/text-editor/text-editor.js +0 -1
- package/dist/collection/components/text-editor/text-editor.js.map +1 -1
- package/dist/esm/limel-breadcrumbs_5.entry.js +0 -6
- package/dist/esm/limel-breadcrumbs_5.entry.js.map +1 -1
- package/dist/esm/limel-text-editor.entry.js.map +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/p-8f10b7e4.entry.js.map +1 -1
- package/dist/lime-elements/{p-d2213a74.entry.js → p-bcfb5db5.entry.js} +2 -2
- package/dist/lime-elements/p-bcfb5db5.entry.js.map +1 -0
- package/dist/types/components/text-editor/text-editor.d.ts +0 -1
- package/dist/types/components.d.ts +0 -4
- package/package.json +1 -1
- package/dist/lime-elements/p-d2213a74.entry.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [37.50.1](https://github.com/Lundalogik/lime-elements/compare/v37.50.0...v37.50.1) (2024-06-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
* **input-field:** revert synchronisation with invalid property ([8bb0c3f](https://github.com/Lundalogik/lime-elements/commit/8bb0c3f4a1a0b0b97e0cdf9a33bf01f0d8dcb698))
|
|
8
|
+
|
|
9
|
+
## [37.50.0](https://github.com/Lundalogik/lime-elements/compare/v37.49.5...v37.50.0) (2024-06-10)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
* **text-editor:** make it beta ([67b3750](https://github.com/Lundalogik/lime-elements/commit/67b3750d023374adab2ebb888b63d053385ab5f4))
|
|
16
|
+
|
|
1
17
|
## [37.49.5](https://github.com/Lundalogik/lime-elements/compare/v37.49.4...v37.49.5) (2024-06-10)
|
|
2
18
|
|
|
3
19
|
|
|
@@ -124,9 +124,6 @@ const InputField = class {
|
|
|
124
124
|
if (this.invalid) {
|
|
125
125
|
this.mdcTextField.valid = false;
|
|
126
126
|
}
|
|
127
|
-
else {
|
|
128
|
-
this.mdcTextField.valid = true;
|
|
129
|
-
}
|
|
130
127
|
this.mapCompletions();
|
|
131
128
|
window.addEventListener('resize', this.layout, { passive: true });
|
|
132
129
|
this.limelInputField.addEventListener('focus', this.setFocus);
|
|
@@ -569,9 +566,6 @@ const InputField = class {
|
|
|
569
566
|
if (this.invalid) {
|
|
570
567
|
this.mdcTextField.valid = false;
|
|
571
568
|
}
|
|
572
|
-
else {
|
|
573
|
-
this.mdcTextField.valid = true;
|
|
574
|
-
}
|
|
575
569
|
this.mdcTextField.disabled = this.disabled || this.readonly;
|
|
576
570
|
}
|
|
577
571
|
render() {
|