eservices-core 1.0.409 → 1.0.410
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/dist/index.js +14 -11
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* eservices-core v1.0.
|
|
2
|
+
* eservices-core v1.0.410
|
|
3
3
|
* (c) 2022 ESERVICES
|
|
4
4
|
*/
|
|
5
5
|
'use strict';
|
|
@@ -5099,16 +5099,19 @@ function getTableCell(cell, rowValue, controller) {
|
|
|
5099
5099
|
}
|
|
5100
5100
|
const outputNodes = [];
|
|
5101
5101
|
const cellNodeChildren = [];
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
|
|
5105
|
-
|
|
5106
|
-
|
|
5107
|
-
|
|
5108
|
-
|
|
5109
|
-
|
|
5110
|
-
|
|
5111
|
-
|
|
5102
|
+
if (cell.type) {
|
|
5103
|
+
attributes.class.push(`widget-table-cell_${cell.type}`);
|
|
5104
|
+
switch (cell.type) {
|
|
5105
|
+
case "edit": {
|
|
5106
|
+
cell.icon = 'edit';
|
|
5107
|
+
addHandleClick(controller.activate);
|
|
5108
|
+
break;
|
|
5109
|
+
}
|
|
5110
|
+
case "remove": {
|
|
5111
|
+
addHandleClick(controller.removeRow);
|
|
5112
|
+
cell.icon = 'remove';
|
|
5113
|
+
break;
|
|
5114
|
+
}
|
|
5112
5115
|
}
|
|
5113
5116
|
}
|
|
5114
5117
|
if (cell.onClick)
|