@limetech/lime-elements 37.60.0 → 37.60.2

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.60.2](https://github.com/Lundalogik/lime-elements/compare/v37.60.1...v37.60.2) (2024-09-18)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+
7
+ * **form:** correctly determine the correct number of columns when form is used inside dialog ([34818d6](https://github.com/Lundalogik/lime-elements/commit/34818d64e8e6d32cfc196856a98e37d55b382753)), closes [Lundalogik/lime-elements#1628](https://github.com/Lundalogik/lime-elements/issues/1628)
8
+
9
+ ## [37.60.1](https://github.com/Lundalogik/lime-elements/compare/v37.60.0...v37.60.1) (2024-09-17)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+
15
+ * **table-view:** only release element pool if should replace is true ([ff9268b](https://github.com/Lundalogik/lime-elements/commit/ff9268bb5f476b9fb94e4fc1ca38c846370608a0))
16
+
1
17
  ## [37.60.0](https://github.com/Lundalogik/lime-elements/compare/v37.59.1...v37.60.0) (2024-09-16)
2
18
 
3
19
 
@@ -23905,9 +23905,16 @@ class GridLayout extends react.Component {
23905
23905
  componentDidMount() {
23906
23906
  this.observer = new ResizeObserver(this.handleResize);
23907
23907
  this.observer.observe(this.elementRef.current);
23908
+ window.addEventListener('resize', this.handleResize, {
23909
+ capture: true,
23910
+ passive: true,
23911
+ });
23908
23912
  }
23909
23913
  componentWillUnmount() {
23910
23914
  this.observer.unobserve(this.elementRef.current);
23915
+ window.removeEventListener('resize', this.handleResize, {
23916
+ capture: true,
23917
+ });
23911
23918
  }
23912
23919
  handleResize() {
23913
23920
  const element = this.elementRef.current;