@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.es6.js
CHANGED
|
@@ -10,8 +10,8 @@ import { Legend, ChartPanel, Carousel } from '@hpcc-js/layout';
|
|
|
10
10
|
import { ReactTimelineSeries } from '@hpcc-js/timeline';
|
|
11
11
|
|
|
12
12
|
var PKG_NAME = "@hpcc-js/eclwatch";
|
|
13
|
-
var PKG_VERSION = "2.72.
|
|
14
|
-
var BUILD_VERSION = "2.102.
|
|
13
|
+
var PKG_VERSION = "2.72.9";
|
|
14
|
+
var BUILD_VERSION = "2.102.11";
|
|
15
15
|
|
|
16
16
|
/*! *****************************************************************************
|
|
17
17
|
Copyright (c) Microsoft Corporation.
|
|
@@ -447,7 +447,7 @@ var WUScopeController = /** @class */ (function () {
|
|
|
447
447
|
retVal += labelTpl.substring(rpos + 1, lpos);
|
|
448
448
|
rpos = labelTpl.indexOf("%", lpos + 1);
|
|
449
449
|
if (rpos < 0) {
|
|
450
|
-
console.
|
|
450
|
+
console.warn("Invalid Label Template");
|
|
451
451
|
break;
|
|
452
452
|
}
|
|
453
453
|
var key = labelTpl.substring(lpos + 1, rpos);
|
|
@@ -683,7 +683,6 @@ var WUScopeController = /** @class */ (function () {
|
|
|
683
683
|
Note: []
|
|
684
684
|
}
|
|
685
685
|
});
|
|
686
|
-
console.log(dummyEdgeScope.Id);
|
|
687
686
|
subgraph.createEdge(edge.source, dummyVertex, dummyEdgeScope);
|
|
688
687
|
}
|
|
689
688
|
}
|
|
@@ -701,7 +700,6 @@ var WUScopeController = /** @class */ (function () {
|
|
|
701
700
|
Note: []
|
|
702
701
|
}
|
|
703
702
|
});
|
|
704
|
-
console.log(dummyEdgeScope.Id);
|
|
705
703
|
subgraph.createEdge(dummyVertex, edge.target, dummyEdgeScope);
|
|
706
704
|
}
|
|
707
705
|
}
|
|
@@ -1072,7 +1070,7 @@ function safeEncode(item) {
|
|
|
1072
1070
|
case "[object String]":
|
|
1073
1071
|
return entitiesEncode(item);
|
|
1074
1072
|
default:
|
|
1075
|
-
console.
|
|
1073
|
+
console.warn("Unknown cell type: " + Object.prototype.toString.call(item));
|
|
1076
1074
|
}
|
|
1077
1075
|
return item;
|
|
1078
1076
|
}
|