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.
@@ -18663,10 +18663,16 @@
18663
18663
  function rcTreeToolTipPipe() {
18664
18664
  }
18665
18665
  rcTreeToolTipPipe.prototype.transform = function (value) {
18666
- var _a;
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 (_a = data === null || data === void 0 ? void 0 : data.reverse()) === null || _a === void 0 ? void 0 : _a.join(' < ');
18675
+ return data === null || data === void 0 ? void 0 : data.join(' < ');
18670
18676
  }
18671
18677
  else {
18672
18678
  return '';