ontimize-web-ngx 15.5.0 → 15.5.1
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/table/o-table.component.mjs +2 -2
- package/fesm2015/ontimize-web-ngx.mjs +1 -1
- package/fesm2015/ontimize-web-ngx.mjs.map +1 -1
- package/fesm2020/ontimize-web-ngx.mjs +1 -1
- package/fesm2020/ontimize-web-ngx.mjs.map +1 -1
- package/package.json +1 -1
- package/theme.scss +69 -69
|
@@ -32455,7 +32455,6 @@ class OTableComponent extends AbstractOServiceComponent {
|
|
|
32455
32455
|
if (Util.isDefined(_sort) &&
|
|
32456
32456
|
(!Util.isDefined(this.sort) || (Util.isDefined(this.sort) && Util.stringify(this.sort) !== Util.stringify(_sort)))) {
|
|
32457
32457
|
this.sort = _sort;
|
|
32458
|
-
this.registerSortListener();
|
|
32459
32458
|
this.setDatasource();
|
|
32460
32459
|
}
|
|
32461
32460
|
}
|
|
@@ -33334,6 +33333,7 @@ class OTableComponent extends AbstractOServiceComponent {
|
|
|
33334
33333
|
const dataSourceService = this.injector.get(OTableDataSourceService);
|
|
33335
33334
|
this.dataSource = dataSourceService.getInstance(this);
|
|
33336
33335
|
this.registerDataSourceListeners();
|
|
33336
|
+
this.registerSortListener();
|
|
33337
33337
|
}
|
|
33338
33338
|
registerDataSourceListeners() {
|
|
33339
33339
|
this.onRenderedDataChange = this.dataSource.onRenderedDataChange.subscribe(() => {
|