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.
- package/esm2020/app/modules/angular-slickgrid/components/angular-slickgrid.component.mjs +3 -3
- package/esm2020/app/modules/angular-slickgrid/global-grid-options.mjs +2 -2
- package/fesm2015/angular-slickgrid.mjs +4 -3
- package/fesm2015/angular-slickgrid.mjs.map +1 -1
- package/fesm2020/angular-slickgrid.mjs +3 -3
- package/fesm2020/angular-slickgrid.mjs.map +1 -1
- package/package.json +9 -9
|
@@ -640,7 +640,7 @@ const GlobalGridOptions = {
|
|
|
640
640
|
numberedMultiColumnSort: true,
|
|
641
641
|
tristateMultiColumnSort: false,
|
|
642
642
|
sortColNumberInSeparateSpan: true,
|
|
643
|
-
suppressActiveCellChangeOnEdit:
|
|
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
|
|
1864
|
+
if (column?.editor?.collectionAsync) {
|
|
1865
1865
|
this.loadEditorCollectionAsync(column);
|
|
1866
1866
|
}
|
|
1867
|
-
return { ...column, editor: column.editor
|
|
1867
|
+
return { ...column, editor: column.editor?.model, internalColumnEditor: { ...column.editor } };
|
|
1868
1868
|
});
|
|
1869
1869
|
}
|
|
1870
1870
|
translateColumnHeaderTitleKeys() {
|