@magic-xpa/angular 4.900.0-dev490.292 → 4.900.0-dev490.294
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/src/services/table.magic.service.mjs +2 -2
- package/esm2020/src/services/task.magics.service.mjs +2 -2
- package/fesm2015/magic-xpa-angular.mjs +2 -2
- package/fesm2015/magic-xpa-angular.mjs.map +1 -1
- package/fesm2020/magic-xpa-angular.mjs +2 -2
- package/fesm2020/magic-xpa-angular.mjs.map +1 -1
- package/package.json +3 -3
- package/src/services/table.magic.service.d.ts +1 -1
@@ -1961,7 +1961,7 @@ class TaskMagicService {
|
|
1961
1961
|
return val;
|
1962
1962
|
}
|
1963
1963
|
case StorageAttribute.NUMERIC:
|
1964
|
-
return +val;
|
1964
|
+
return val != null ? +val : null;
|
1965
1965
|
default:
|
1966
1966
|
return val;
|
1967
1967
|
}
|
@@ -2190,7 +2190,7 @@ class TableMagicService {
|
|
2190
2190
|
this.task.onScrollDown();
|
2191
2191
|
}
|
2192
2192
|
sortData(e) { }
|
2193
|
-
mgOnPaginateChange(e) { }
|
2193
|
+
mgOnPaginateChange(e, changeSelectedRow) { }
|
2194
2194
|
mgOptionChanged(e) { }
|
2195
2195
|
updateTableSize(size) {
|
2196
2196
|
if (size === 0) {
|