angular-slickgrid 5.5.1 → 5.6.0

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.
@@ -640,7 +640,7 @@ const GlobalGridOptions = {
640
640
  numberedMultiColumnSort: true,
641
641
  tristateMultiColumnSort: false,
642
642
  sortColNumberInSeparateSpan: true,
643
- suppressActiveCellChangeOnEdit: true,
643
+ suppressActiveCellChangeOnEdit: false,
644
644
  pagination: {
645
645
  pageSizes: [10, 15, 20, 25, 30, 40, 50, 75, 100],
646
646
  pageSize: 25,
@@ -1861,10 +1861,10 @@ class AngularSlickgridComponent {
1861
1861
  }
1862
1862
  return columnDefinitions.map((column) => {
1863
1863
  // on every Editor that have a "collectionAsync", resolve the data and assign it to the "collection" property
1864
- if (column && column.editor && column.editor.collectionAsync) {
1864
+ if (column?.editor?.collectionAsync) {
1865
1865
  this.loadEditorCollectionAsync(column);
1866
1866
  }
1867
- return { ...column, editor: column.editor && column.editor.model, internalColumnEditor: { ...column.editor } };
1867
+ return { ...column, editor: column.editor?.model, internalColumnEditor: { ...column.editor } };
1868
1868
  });
1869
1869
  }
1870
1870
  translateColumnHeaderTitleKeys() {