@limetech/lime-elements 37.32.4 → 37.32.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,20 @@
1
+ ## [37.32.6](https://github.com/Lundalogik/lime-elements/compare/v37.32.5...v37.32.6) (2024-05-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+
7
+ * **menu:** avoid error when `items` is undefined ([140b791](https://github.com/Lundalogik/lime-elements/commit/140b79176ead70b46dc4221f90fa88ae14a0fea0))
8
+
9
+ ## [37.32.5](https://github.com/Lundalogik/lime-elements/compare/v37.32.4...v37.32.5) (2024-05-07)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+
15
+ * **dock:** better visualize when a button's popover is open ([4280a18](https://github.com/Lundalogik/lime-elements/commit/4280a185f63b49edf2c3a64a69f9451d99ff931f))
16
+ * **dock:** change opening direction of popover menus ([2aac9e2](https://github.com/Lundalogik/lime-elements/commit/2aac9e29de89ac5c3c923809d79857f1bdd55197))
17
+
1
18
  ## [37.32.4](https://github.com/Lundalogik/lime-elements/compare/v37.32.3...v37.32.4) (2024-05-03)
2
19
 
3
20
 
@@ -1850,7 +1850,8 @@ const MenuList = class {
1850
1850
  }, 0);
1851
1851
  }
1852
1852
  triggerIconColorWarning() {
1853
- if (this.items.some((item) => 'iconColor' in item)) {
1853
+ var _a;
1854
+ if ((_a = this.items) === null || _a === void 0 ? void 0 : _a.some((item) => 'iconColor' in item)) {
1854
1855
  /* eslint-disable-next-line no-console */
1855
1856
  console.warn("The `iconColor` prop is deprecated now! Use the new `Icon` interface and instead of `iconColor: 'color-name'` write `icon {name: 'icon-name', color: 'color-name'}`.");
1856
1857
  }