@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 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() {