@indigina/ui-kit 1.1.246 → 1.1.247

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.
@@ -5959,8 +5959,10 @@ class KitCollapsedListComponent {
5959
5959
  }
5960
5960
  }
5961
5961
  selectionChange(item) {
5962
- this.setSelectedItem(item);
5963
- this.onSelectItem.emit(item);
5962
+ if (!this.disableActions()) {
5963
+ this.setSelectedItem(item);
5964
+ this.onSelectItem.emit(item);
5965
+ }
5964
5966
  }
5965
5967
  initResizeObserver() {
5966
5968
  this.resizeObserver = new ResizeObserver(() => this.resize());