ontimize-web-ngx 15.1.1 → 15.1.3
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/lib/components/list/o-list.component.mjs +1 -3
- package/esm2020/lib/components/o-service-component.class.mjs +7 -2
- package/esm2020/lib/components/table/o-table.component.mjs +7 -2
- package/fesm2015/ontimize-web-ngx.mjs +12 -3
- package/fesm2015/ontimize-web-ngx.mjs.map +1 -1
- package/fesm2020/ontimize-web-ngx.mjs +12 -3
- package/fesm2020/ontimize-web-ngx.mjs.map +1 -1
- package/lib/components/list/o-list.component.d.ts +0 -2
- package/lib/components/o-service-component.class.d.ts +2 -1
- package/lib/components/table/o-table.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -16527,6 +16527,12 @@ class AbstractOServiceComponent extends AbstractOServiceBaseComponent {
|
|
|
16527
16527
|
setTimeout(() => this.registerQuickFilter(this.searchInputComponent), 0);
|
|
16528
16528
|
}
|
|
16529
16529
|
}
|
|
16530
|
+
get selection() {
|
|
16531
|
+
if (!Util.isDefined(this._selection)) {
|
|
16532
|
+
this._selection = new SelectionModel(true, []);
|
|
16533
|
+
}
|
|
16534
|
+
return this._selection;
|
|
16535
|
+
}
|
|
16530
16536
|
constructor(injector, elRef, form) {
|
|
16531
16537
|
super(injector);
|
|
16532
16538
|
this.elRef = elRef;
|
|
@@ -16557,7 +16563,6 @@ class AbstractOServiceComponent extends AbstractOServiceBaseComponent {
|
|
|
16557
16563
|
this.onDataLoaded = new EventEmitter();
|
|
16558
16564
|
this.onPaginatedDataLoaded = new EventEmitter();
|
|
16559
16565
|
this.onSearch = new EventEmitter();
|
|
16560
|
-
this.selection = new SelectionModel(true, []);
|
|
16561
16566
|
this.dataResponseArray = [];
|
|
16562
16567
|
this._pageSizeOptions = Codes.PAGE_SIZE_OPTIONS;
|
|
16563
16568
|
this.clickDelay = 200;
|
|
@@ -26304,7 +26309,6 @@ class OListComponent extends AbstractOServiceComponent {
|
|
|
26304
26309
|
this.sortColArray = [];
|
|
26305
26310
|
this.onInsertButtonClick = new EventEmitter();
|
|
26306
26311
|
this.onItemDeleted = new EventEmitter();
|
|
26307
|
-
this.selection = new SelectionModel(true, []);
|
|
26308
26312
|
this.enabledDeleteButton = false;
|
|
26309
26313
|
this.insertButtonPosition = 'bottom';
|
|
26310
26314
|
this.storePaginationState = false;
|
|
@@ -31966,7 +31970,12 @@ class OTableComponent extends AbstractOServiceComponent {
|
|
|
31966
31970
|
this.queryRows = this.state.queryRows;
|
|
31967
31971
|
}
|
|
31968
31972
|
}
|
|
31969
|
-
|
|
31973
|
+
}
|
|
31974
|
+
get selection() {
|
|
31975
|
+
if (!Util.isDefined(this._selection)) {
|
|
31976
|
+
this._selection = new SelectionModel(this.isSelectionModeMultiple(), []);
|
|
31977
|
+
}
|
|
31978
|
+
return this._selection;
|
|
31970
31979
|
}
|
|
31971
31980
|
updateStateExpandedColumn() {
|
|
31972
31981
|
if (!this.tableRowExpandable || !this.tableRowExpandable.expandableColumnVisible) {
|