@limetech/lime-elements 37.65.6 → 37.65.7

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.65.7](https://github.com/Lundalogik/lime-elements/compare/v37.65.6...v37.65.7) (2024-11-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+
7
+ * **form:** set collapsible item initial state correctly ([fc10d3d](https://github.com/Lundalogik/lime-elements/commit/fc10d3d9dca527af554c205508c3ca92e0282919)), closes [#3288](https://github.com/Lundalogik/lime-elements/issues/3288)
8
+
1
9
  ## [37.65.6](https://github.com/Lundalogik/lime-elements/compare/v37.65.5...v37.65.6) (2024-11-06)
2
10
 
3
11
 
@@ -23724,9 +23724,9 @@ class CollapsibleItemTemplate extends react.Component {
23724
23724
  };
23725
23725
  this.handleAction = this.handleAction.bind(this);
23726
23726
  this.isDeepEmpty = this.isDeepEmpty.bind(this);
23727
- this.setState({
23727
+ this.state = {
23728
23728
  isOpen: this.isDeepEmpty(props.data),
23729
- });
23729
+ };
23730
23730
  }
23731
23731
  componentDidMount() {
23732
23732
  const section = this.refs.section;