@hpcc-js/eclwatch 2.72.8 → 2.72.9
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.es6.js +4 -6
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +4 -6
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +13 -13
- package/src/WUResultStore.ts +1 -1
- package/src/WUScopeController.ts +1 -3
- package/src/__package__.ts +2 -2
- package/types/WUScopeController.d.ts.map +1 -1
- package/types/__package__.d.ts +2 -2
- package/types-3.4/__package__.d.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["@hpcc-js/eclwatch"] = {}, global["@hpcc-js/codemirror"], global["@hpcc-js/comms"], global["@hpcc-js/phosphor"], global["@hpcc-js/tree"], global["@hpcc-js/util"], global["@hpcc-js/common"], global["@hpcc-js/dgrid"], global["@hpcc-js/graph"], global["@hpcc-js/layout"], global["@hpcc-js/timeline"]));
|
|
5
5
|
})(this, (function (exports, codemirror, comms, phosphor, tree, util, common, dgrid, graph, layout, timeline) {
|
|
6
6
|
var PKG_NAME = "@hpcc-js/eclwatch";
|
|
7
|
-
var PKG_VERSION = "2.72.
|
|
8
|
-
var BUILD_VERSION = "2.102.
|
|
7
|
+
var PKG_VERSION = "2.72.9";
|
|
8
|
+
var BUILD_VERSION = "2.102.11";
|
|
9
9
|
|
|
10
10
|
/*! *****************************************************************************
|
|
11
11
|
Copyright (c) Microsoft Corporation.
|
|
@@ -441,7 +441,7 @@
|
|
|
441
441
|
retVal += labelTpl.substring(rpos + 1, lpos);
|
|
442
442
|
rpos = labelTpl.indexOf("%", lpos + 1);
|
|
443
443
|
if (rpos < 0) {
|
|
444
|
-
console.
|
|
444
|
+
console.warn("Invalid Label Template");
|
|
445
445
|
break;
|
|
446
446
|
}
|
|
447
447
|
var key = labelTpl.substring(lpos + 1, rpos);
|
|
@@ -677,7 +677,6 @@
|
|
|
677
677
|
Note: []
|
|
678
678
|
}
|
|
679
679
|
});
|
|
680
|
-
console.log(dummyEdgeScope.Id);
|
|
681
680
|
subgraph.createEdge(edge.source, dummyVertex, dummyEdgeScope);
|
|
682
681
|
}
|
|
683
682
|
}
|
|
@@ -695,7 +694,6 @@
|
|
|
695
694
|
Note: []
|
|
696
695
|
}
|
|
697
696
|
});
|
|
698
|
-
console.log(dummyEdgeScope.Id);
|
|
699
697
|
subgraph.createEdge(dummyVertex, edge.target, dummyEdgeScope);
|
|
700
698
|
}
|
|
701
699
|
}
|
|
@@ -1066,7 +1064,7 @@
|
|
|
1066
1064
|
case "[object String]":
|
|
1067
1065
|
return entitiesEncode(item);
|
|
1068
1066
|
default:
|
|
1069
|
-
console.
|
|
1067
|
+
console.warn("Unknown cell type: " + Object.prototype.toString.call(item));
|
|
1070
1068
|
}
|
|
1071
1069
|
return item;
|
|
1072
1070
|
}
|