vcomply-workflow-engine 2.9.43 → 2.9.44
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/bundles/vcomply-workflow-engine.umd.js +8 -2
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/sharedComponents/pipes/rcTreeToolTip.pipe.js +7 -5
- package/fesm2015/vcomply-workflow-engine.js +6 -4
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/sharedComponents/pipes/rcTreeToolTip.pipe.d.ts +1 -1
- package/package.json +1 -1
|
@@ -18663,10 +18663,16 @@
|
|
|
18663
18663
|
function rcTreeToolTipPipe() {
|
|
18664
18664
|
}
|
|
18665
18665
|
rcTreeToolTipPipe.prototype.transform = function (value) {
|
|
18666
|
-
var
|
|
18666
|
+
var args = [];
|
|
18667
|
+
for (var _i = 1; _i < arguments.length; _i++) {
|
|
18668
|
+
args[_i - 1] = arguments[_i];
|
|
18669
|
+
}
|
|
18667
18670
|
var data = lodash.cloneDeep(value);
|
|
18671
|
+
if (args[0]) {
|
|
18672
|
+
data = data === null || data === void 0 ? void 0 : data.reverse();
|
|
18673
|
+
}
|
|
18668
18674
|
if (value === null || value === void 0 ? void 0 : value.length) {
|
|
18669
|
-
return
|
|
18675
|
+
return data === null || data === void 0 ? void 0 : data.join(' < ');
|
|
18670
18676
|
}
|
|
18671
18677
|
else {
|
|
18672
18678
|
return '';
|