@limetech/lime-elements 37.52.4 → 37.52.6

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.52.6](https://github.com/Lundalogik/lime-elements/compare/v37.52.5...v37.52.6) (2024-06-20)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+
7
+ * **table:** use latest available options on init ([bbbc2b8](https://github.com/Lundalogik/lime-elements/commit/bbbc2b85557773aae59226bb96035f20b657920e)), closes [Lundalogik/crm-feature#4186](https://github.com/Lundalogik/crm-feature/issues/4186)
8
+
9
+ ## [37.52.5](https://github.com/Lundalogik/lime-elements/compare/v37.52.4...v37.52.5) (2024-06-20)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+
15
+ * **input-field:** handle keydown instead of keypress event ([e736c9d](https://github.com/Lundalogik/lime-elements/commit/e736c9d39d948808b01252281f62e52529e1822e)), closes [Lundalogik/crm-feature#4182](https://github.com/Lundalogik/crm-feature/issues/4182)
16
+
1
17
  ## [37.52.4](https://github.com/Lundalogik/lime-elements/compare/v37.52.3...v37.52.4) (2024-06-20)
2
18
 
3
19
 
@@ -353,7 +353,7 @@ const InputField = class {
353
353
  if (this.isInvalid()) {
354
354
  return (index.h("i", { key: "invalid", class: "material-icons mdc-text-field__icon invalid-icon" }, index.h("limel-icon", { name: icon })));
355
355
  }
356
- return (index.h("i", { key: "action", class: "material-icons mdc-text-field__icon mdc-text-field__icon--trailing", tabIndex: 0, role: "button", onKeyPress: this.handleIconKeyPress, onClick: this.handleIconClick }, index.h("limel-icon", { name: icon })));
356
+ return (index.h("i", { key: "action", class: "material-icons mdc-text-field__icon mdc-text-field__icon--trailing", tabIndex: 0, role: "button", onKeyDown: this.handleIconKeyPress, onClick: this.handleIconClick }, index.h("limel-icon", { name: icon })));
357
357
  };
358
358
  this.getTrailingIcon = () => {
359
359
  if (this.isInvalid()) {