@limetech/lime-elements 37.11.2 → 37.11.3

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,11 @@
1
+ ## [37.11.3](https://github.com/Lundalogik/lime-elements/compare/v37.11.2...v37.11.3) (2024-03-14)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+
7
+ * **tab-bar:** ensure component is initialized before handling resize event ([05887f5](https://github.com/Lundalogik/lime-elements/commit/05887f56063de0c69c7775f9165bba376f53ff15))
8
+
1
9
  ## [37.11.2](https://github.com/Lundalogik/lime-elements/compare/v37.11.1...v37.11.2) (2024-03-09)
2
10
 
3
11
 
@@ -2105,6 +2105,9 @@ const TabBar = class {
2105
2105
  this.tearDown();
2106
2106
  }
2107
2107
  handleWindowResize() {
2108
+ if (!this.scrollArea) {
2109
+ return;
2110
+ }
2108
2111
  this.handleScroll();
2109
2112
  }
2110
2113
  setup() {