@wavemaker/app-ng-runtime 11.8.0-rc.5676 → 11.8.0-rc.5679
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.
- app-ng-runtime/components/base/bundles/index.umd.js +5 -11
- app-ng-runtime/components/base/esm2022/widgets/common/base/base.component.mjs +6 -12
- app-ng-runtime/components/base/fesm2022/index.mjs +5 -11
- app-ng-runtime/components/base/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/components/base/widgets/common/base/base.component.d.ts +1 -1
- app-ng-runtime/components/data/table/bundles/index.umd.js +3 -0
- app-ng-runtime/components/data/table/esm2022/table.component.mjs +4 -1
- app-ng-runtime/components/data/table/fesm2022/index.mjs +3 -0
- app-ng-runtime/components/data/table/fesm2022/index.mjs.map +1 -1
- app-ng-runtime/package.json +1 -1
- app-ng-runtime/scripts/datatable/datatable.js +1 -1
|
@@ -226,7 +226,7 @@ export declare abstract class BaseComponent implements OnDestroy, OnInit, AfterV
|
|
|
226
226
|
protected execute(operation: any, options: any): any;
|
|
227
227
|
mute(): void;
|
|
228
228
|
unmute(): void;
|
|
229
|
-
customInjectorMap
|
|
229
|
+
private customInjectorMap;
|
|
230
230
|
createCustomInjector(contextKey: string, context: any): any;
|
|
231
231
|
/**
|
|
232
232
|
* After the host page is attached from cache, this function is called.
|
|
@@ -491,6 +491,9 @@
|
|
|
491
491
|
if (!this.multiselect) {
|
|
492
492
|
this.items.length = 0;
|
|
493
493
|
}
|
|
494
|
+
if (!this.infScroll && !this.onDemandLoad) {
|
|
495
|
+
this.callDataGridMethod('selectRows', this.items);
|
|
496
|
+
}
|
|
494
497
|
this.selectedItems = this.callDataGridMethod('getSelectedRows');
|
|
495
498
|
if (this.selectedItems.length) {
|
|
496
499
|
this.selectedItemChange.next(this.selectedItems);
|