eservices-core 1.0.381 → 1.0.382
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 +4 -1
- 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.382
|
|
3
3
|
* (c) 2022 ESERVICES
|
|
4
4
|
*/
|
|
5
5
|
'use strict';
|
|
@@ -3605,6 +3605,9 @@ class Table extends List {
|
|
|
3605
3605
|
break;
|
|
3606
3606
|
}
|
|
3607
3607
|
}
|
|
3608
|
+
if (cell.onClick) {
|
|
3609
|
+
handlers.onClick = cell.onClick.bind(null, rowValues);
|
|
3610
|
+
}
|
|
3608
3611
|
if (cell.link) {
|
|
3609
3612
|
cellNodeChildren.push(vue.h(vueRouter.RouterLink, {
|
|
3610
3613
|
to: cell.link(cellValue, rowValues),
|