eservices-core 1.0.509 → 1.0.510
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
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* eservices-core v1.0.
|
|
2
|
+
* eservices-core v1.0.510
|
|
3
3
|
* (c) 2023 ESERVICES
|
|
4
4
|
*/
|
|
5
5
|
'use strict';
|
|
@@ -3554,8 +3554,14 @@ var script$h = {
|
|
|
3554
3554
|
values: Object
|
|
3555
3555
|
},
|
|
3556
3556
|
setup(props) {
|
|
3557
|
-
|
|
3558
|
-
|
|
3557
|
+
let elem = null;
|
|
3558
|
+
try {
|
|
3559
|
+
elem = getTableRow$1(props.config, props.values);
|
|
3560
|
+
}
|
|
3561
|
+
catch (e) {
|
|
3562
|
+
console.warn('[widget-list-row]', e);
|
|
3563
|
+
}
|
|
3564
|
+
return () => elem;
|
|
3559
3565
|
}
|
|
3560
3566
|
};
|
|
3561
3567
|
|
|
@@ -3,8 +3,6 @@ declare const _default: {
|
|
|
3
3
|
config: ArrayConstructor;
|
|
4
4
|
values: ObjectConstructor;
|
|
5
5
|
};
|
|
6
|
-
setup(props: any): () =>
|
|
7
|
-
[key: string]: any;
|
|
8
|
-
}>;
|
|
6
|
+
setup(props: any): () => any;
|
|
9
7
|
};
|
|
10
8
|
export default _default;
|