@limetech/lime-elements 37.33.2 → 37.34.0

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,24 @@
1
+ ## [37.34.0](https://github.com/Lundalogik/lime-elements/compare/v37.33.3...v37.34.0) (2024-05-15)
2
+
3
+
4
+ ### Features
5
+
6
+
7
+ * **chip-set:** hide counter when a single chip is expected ([66ea537](https://github.com/Lundalogik/lime-elements/commit/66ea5373c65bd7397cd40c27bf9e05fd83736b60)), closes [#2299](https://github.com/Lundalogik/lime-elements/issues/2299)
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * **chip-set:** remove delimiter after last chip ([9fc8d19](https://github.com/Lundalogik/lime-elements/commit/9fc8d192f51ae17815ffc0c473b696d5340db1ae))
13
+
14
+ ## [37.33.3](https://github.com/Lundalogik/lime-elements/compare/v37.33.2...v37.33.3) (2024-05-15)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+
20
+ * **input-field:** update number value only when different ([d1caac5](https://github.com/Lundalogik/lime-elements/commit/d1caac5977541b051382d20b4e69a620b5e14bc4)), closes [#1402](https://github.com/Lundalogik/lime-elements/issues/1402)
21
+
1
22
  ## [37.33.2](https://github.com/Lundalogik/lime-elements/compare/v37.33.1...v37.33.2) (2024-05-14)
2
23
 
3
24
 
@@ -607,6 +607,11 @@ const InputField = class {
607
607
  if (this.changeWaiting) {
608
608
  return;
609
609
  }
610
+ if (this.type === 'number' &&
611
+ this.isFocused &&
612
+ Number(newValue) === Number(this.mdcTextField.value)) {
613
+ return;
614
+ }
610
615
  if (newValue !== this.mdcTextField.value) {
611
616
  this.mdcTextField.value = newValue || '';
612
617
  }