@annalib/anna-core 11.3.4 → 11.3.5
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/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +3 -2
- package/fesm2015/annalib-anna-core.mjs +2 -1
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +2 -1
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1781,7 +1781,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
1781
1781
|
this.options = {
|
|
1782
1782
|
floor: 0,
|
|
1783
1783
|
ceil: 0,
|
|
1784
|
-
step: 0.
|
|
1784
|
+
step: 0.01
|
|
1785
1785
|
};
|
|
1786
1786
|
this.tableColumns = [];
|
|
1787
1787
|
this.totalRowColumns = null;
|
|
@@ -2083,6 +2083,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
2083
2083
|
this.showSkeletonLoading = false;
|
|
2084
2084
|
}
|
|
2085
2085
|
selectOrUnselectCheckbox(rowData, columnKeys, isCheckboxSelected) {
|
|
2086
|
+
rowData[columnKeys] = !rowData[columnKeys];
|
|
2086
2087
|
this.toggleCheckbox.emit({ rowData, columnKeys, isCheckboxSelected });
|
|
2087
2088
|
}
|
|
2088
2089
|
selectUnselectAllRows() {
|