@limetech/lime-elements 37.52.4 → 37.52.5
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 +8 -0
- package/dist/cjs/limel-breadcrumbs_5.cjs.entry.js +1 -1
- package/dist/cjs/limel-breadcrumbs_5.cjs.entry.js.map +1 -1
- package/dist/collection/components/input-field/input-field.js +1 -1
- package/dist/collection/components/input-field/input-field.js.map +1 -1
- package/dist/esm/limel-breadcrumbs_5.entry.js +1 -1
- package/dist/esm/limel-breadcrumbs_5.entry.js.map +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-1dd3ffae.entry.js → p-773e3d4f.entry.js} +4 -4
- package/dist/lime-elements/p-773e3d4f.entry.js.map +1 -0
- package/package.json +1 -1
- package/dist/lime-elements/p-1dd3ffae.entry.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [37.52.5](https://github.com/Lundalogik/lime-elements/compare/v37.52.4...v37.52.5) (2024-06-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
* **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)
|
|
8
|
+
|
|
1
9
|
## [37.52.4](https://github.com/Lundalogik/lime-elements/compare/v37.52.3...v37.52.4) (2024-06-20)
|
|
2
10
|
|
|
3
11
|
|
|
@@ -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",
|
|
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()) {
|