@hpcc-js/other 2.13.80 → 2.14.4
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 +138 -155
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +141 -158
- 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 +10 -26
- package/src/AutoCompleteText.ts +0 -1
- package/src/CalendarHeatMap.ts +0 -2
- package/src/Comms.ts +16 -19
- package/src/Legend.ts +0 -9
- package/src/PropertyEditor.ts +2 -2
- package/src/RadioCheckbox.ts +0 -1
- package/src/Select.ts +0 -1
- package/src/Table.ts +1 -10
- package/src/__package__.ts +2 -2
- package/types/AutoCompleteText.d.ts.map +1 -1
- package/types/CalendarHeatMap.d.ts.map +1 -1
- package/types/Comms.d.ts.map +1 -1
- package/types/Legend.d.ts.map +1 -1
- package/types/RadioCheckbox.d.ts.map +1 -1
- package/types/Select.d.ts.map +1 -1
- package/types/Table.d.ts.map +1 -1
- package/types/__package__.d.ts +2 -2
- package/types/__package__.d.ts.map +1 -1
- package/types-3.4/__package__.d.ts +2 -2
package/dist/index.es6.js
CHANGED
|
@@ -1,9 +1,24 @@
|
|
|
1
1
|
import { HTMLWidget, timeParse, format, select, map, extent, range, Utility, Palette, CanvasWidget, SVGWidget, Entity, d3Event, Widget, Platform, selectAll, PropertyExt, local } from '@hpcc-js/common';
|
|
2
2
|
import { VerticalList, HorizontalList, Grid } from '@hpcc-js/layout';
|
|
3
3
|
|
|
4
|
+
function _mergeNamespaces(n, m) {
|
|
5
|
+
m.forEach(function (e) {
|
|
6
|
+
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
7
|
+
if (k !== 'default' && !(k in n)) {
|
|
8
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
9
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
10
|
+
enumerable: true,
|
|
11
|
+
get: function () { return e[k]; }
|
|
12
|
+
});
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
return Object.freeze(n);
|
|
17
|
+
}
|
|
18
|
+
|
|
4
19
|
var PKG_NAME = "@hpcc-js/other";
|
|
5
|
-
var PKG_VERSION = "2.
|
|
6
|
-
var BUILD_VERSION = "2.
|
|
20
|
+
var PKG_VERSION = "2.14.4";
|
|
21
|
+
var BUILD_VERSION = "2.103.0";
|
|
7
22
|
|
|
8
23
|
/*! *****************************************************************************
|
|
9
24
|
Copyright (c) Microsoft Corporation.
|
|
@@ -217,28 +232,16 @@ var Audio = /** @class */ (function (_super) {
|
|
|
217
232
|
Audio.prototype._class += " other_Audio";
|
|
218
233
|
Audio.prototype.publish("source", "", "string", "Audio Source");
|
|
219
234
|
|
|
220
|
-
|
|
221
|
-
return module = {
|
|
222
|
-
path: basedir,
|
|
223
|
-
exports: {},
|
|
224
|
-
require: function (path, base) {
|
|
225
|
-
return commonjsRequire(path, (base === undefined || base === null) ? module.path : base);
|
|
226
|
-
}
|
|
227
|
-
}, fn(module, module.exports), module.exports;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
function commonjsRequire () {
|
|
231
|
-
throw new Error('Dynamic requires are not currently supported by @rollup/plugin-commonjs');
|
|
232
|
-
}
|
|
235
|
+
var autoComplete = {exports: {}};
|
|
233
236
|
|
|
234
|
-
var autoComplete_1 = createCommonjsModule(function (module) {
|
|
235
237
|
/*
|
|
236
|
-
JavaScript autoComplete v1.0.
|
|
238
|
+
JavaScript autoComplete v1.0.5
|
|
237
239
|
Copyright (c) 2014 Simon Steinberger / Pixabay
|
|
238
240
|
GitHub: https://github.com/Pixabay/JavaScript-autoComplete
|
|
239
241
|
License: http://www.opensource.org/licenses/mit-license.php
|
|
240
242
|
*/
|
|
241
243
|
|
|
244
|
+
(function (module) {
|
|
242
245
|
var autoComplete = (function(){
|
|
243
246
|
// "use strict";
|
|
244
247
|
function autoComplete(options){
|
|
@@ -366,9 +369,10 @@ var autoComplete = (function(){
|
|
|
366
369
|
that.sc.innerHTML = s;
|
|
367
370
|
that.updateSC(0);
|
|
368
371
|
}
|
|
369
|
-
else
|
|
372
|
+
else {
|
|
370
373
|
that.sc.style.display = 'none';
|
|
371
374
|
that.sc.classList.add("hide");
|
|
375
|
+
}
|
|
372
376
|
};
|
|
373
377
|
|
|
374
378
|
that.keydownHandler = function(e){
|
|
@@ -470,17 +474,19 @@ var autoComplete = (function(){
|
|
|
470
474
|
})();
|
|
471
475
|
|
|
472
476
|
(function(){
|
|
473
|
-
if (
|
|
477
|
+
if (module.exports)
|
|
474
478
|
module.exports = autoComplete;
|
|
475
479
|
else
|
|
476
480
|
window.autoComplete = autoComplete;
|
|
477
481
|
})();
|
|
478
|
-
});
|
|
482
|
+
}(autoComplete));
|
|
479
483
|
|
|
480
|
-
var
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
+
var autoComplete_1 = autoComplete.exports;
|
|
485
|
+
|
|
486
|
+
var AutoComplete = /*#__PURE__*/_mergeNamespaces({
|
|
487
|
+
__proto__: null,
|
|
488
|
+
'default': autoComplete_1
|
|
489
|
+
}, [autoComplete.exports]);
|
|
484
490
|
|
|
485
491
|
function styleInject(css, ref) {
|
|
486
492
|
if ( ref === void 0 ) ref = {};
|
|
@@ -509,8 +515,8 @@ function styleInject(css, ref) {
|
|
|
509
515
|
}
|
|
510
516
|
}
|
|
511
517
|
|
|
512
|
-
var css_248z = ".other_autoCompleteText label{display:inline-block;vertical-align:top}.other_autoCompleteText input{
|
|
513
|
-
styleInject(css_248z);
|
|
518
|
+
var css_248z$c = ".other_autoCompleteText label{display:inline-block;vertical-align:top}.other_autoCompleteText input{border-radius:100;max-width:600px;outline:0;width:100%}.autocomplete-suggestions{background:#fff;border:1px solid #ccc;border-top:0;box-shadow:-1px 1px 3px rgba(0,0,0,.1);box-sizing:border-box;cursor:default;display:none;max-height:254px;overflow:hidden;overflow-y:auto;position:absolute;text-align:left;z-index:9999}.autocomplete-suggestion{color:#333;font-size:1.02em;line-height:23px;overflow:hidden;padding:0 .6em;position:relative;text-overflow:ellipsis;white-space:nowrap}.autocomplete-suggestion b{color:#1f8dd6;font-weight:400}.autocomplete-suggestion.selected{background:#f0f0f0}";
|
|
519
|
+
styleInject(css_248z$c);
|
|
514
520
|
|
|
515
521
|
var AutoCompleteText = /** @class */ (function (_super) {
|
|
516
522
|
__extends(AutoCompleteText, _super);
|
|
@@ -595,7 +601,6 @@ var AutoCompleteText = /** @class */ (function (_super) {
|
|
|
595
601
|
_super.prototype.exit.call(this, domNode, element);
|
|
596
602
|
};
|
|
597
603
|
AutoCompleteText.prototype.click = function (row, column, selected) {
|
|
598
|
-
console.log("Click: " + JSON.stringify(row) + ", " + column + ", " + selected);
|
|
599
604
|
};
|
|
600
605
|
return AutoCompleteText;
|
|
601
606
|
}(HTMLWidget));
|
|
@@ -705,12 +710,12 @@ function weekday(i) {
|
|
|
705
710
|
}
|
|
706
711
|
|
|
707
712
|
var sunday = weekday(0);
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
713
|
+
weekday(1);
|
|
714
|
+
weekday(2);
|
|
715
|
+
weekday(3);
|
|
716
|
+
weekday(4);
|
|
717
|
+
weekday(5);
|
|
718
|
+
weekday(6);
|
|
714
719
|
|
|
715
720
|
var month = newInterval(function(date) {
|
|
716
721
|
date.setDate(1);
|
|
@@ -746,8 +751,10 @@ year.every = function(k) {
|
|
|
746
751
|
});
|
|
747
752
|
};
|
|
748
753
|
|
|
749
|
-
var
|
|
750
|
-
|
|
754
|
+
var d3TimeYear = year;
|
|
755
|
+
|
|
756
|
+
var css_248z$b = ".other_CalendarHeatMap{shape-rendering:crispEdges}.other_CalendarHeatMap .day{fill:#fff;stroke:#ccc}.other_CalendarHeatMap .day.selected{stroke:red}.other_CalendarHeatMap .day.over{stroke:orange}.other_CalendarHeatMap .day.selected.over{stroke:red}.other_CalendarHeatMap .month{fill:none;stroke:#000;stroke-width:2px}";
|
|
757
|
+
styleInject(css_248z$b);
|
|
751
758
|
|
|
752
759
|
var CalendarHeatMap = /** @class */ (function (_super) {
|
|
753
760
|
__extends(CalendarHeatMap, _super);
|
|
@@ -858,7 +865,7 @@ var CalendarHeatMap = /** @class */ (function (_super) {
|
|
|
858
865
|
dayRectElement.append("title");
|
|
859
866
|
})
|
|
860
867
|
.merge(dayRect)
|
|
861
|
-
.attr("x", function (d) { return sunday.count(
|
|
868
|
+
.attr("x", function (d) { return sunday.count(d3TimeYear(d), d) * cellSize; })
|
|
862
869
|
.attr("y", function (d) { return d.getDay() * cellSize; })
|
|
863
870
|
.attr("width", cellSize)
|
|
864
871
|
.attr("height", cellSize)
|
|
@@ -892,9 +899,9 @@ var CalendarHeatMap = /** @class */ (function (_super) {
|
|
|
892
899
|
function calcMonthPath(t0) {
|
|
893
900
|
var t1 = new Date(t0.getFullYear(), t0.getMonth() + 1, 0);
|
|
894
901
|
var d0 = t0.getDay();
|
|
895
|
-
var w0 = sunday.count(
|
|
902
|
+
var w0 = sunday.count(d3TimeYear(t0), t0);
|
|
896
903
|
var d1 = t1.getDay();
|
|
897
|
-
var w1 = sunday.count(
|
|
904
|
+
var w1 = sunday.count(d3TimeYear(t1), t1);
|
|
898
905
|
return "M" + (w0 + 1) * cellSize + "," + d0 * cellSize +
|
|
899
906
|
"H" + w0 * cellSize + "V" + 7 * cellSize +
|
|
900
907
|
"H" + w1 * cellSize + "V" + (d1 + 1) * cellSize +
|
|
@@ -907,10 +914,8 @@ var CalendarHeatMap = /** @class */ (function (_super) {
|
|
|
907
914
|
};
|
|
908
915
|
// Events ---
|
|
909
916
|
CalendarHeatMap.prototype.click = function (row, column, selected) {
|
|
910
|
-
console.log("Click: " + JSON.stringify(row) + ", " + column + ", " + selected);
|
|
911
917
|
};
|
|
912
918
|
CalendarHeatMap.prototype.dblclick = function (row, column, selected) {
|
|
913
|
-
console.log("Double click: " + JSON.stringify(row) + ", " + column + ", " + selected);
|
|
914
919
|
};
|
|
915
920
|
return CalendarHeatMap;
|
|
916
921
|
}(HTMLWidget));
|
|
@@ -1108,7 +1113,7 @@ ESPMappings.prototype.mapResponse = function (response) {
|
|
|
1108
1113
|
this.mapResult(response, key);
|
|
1109
1114
|
}
|
|
1110
1115
|
};
|
|
1111
|
-
var serialize = function (obj) {
|
|
1116
|
+
var serialize$1 = function (obj) {
|
|
1112
1117
|
var str = [];
|
|
1113
1118
|
for (var key in obj) {
|
|
1114
1119
|
if (obj.hasOwnProperty(key)) {
|
|
@@ -1131,7 +1136,7 @@ var jsonp = function (url, request, timeout) {
|
|
|
1131
1136
|
resolve(response);
|
|
1132
1137
|
};
|
|
1133
1138
|
var script = document.createElement("script");
|
|
1134
|
-
script.src = url + (url.indexOf("?") >= 0 ? "&" : "?") + "jsonp=" + callbackName + "&" + serialize(request);
|
|
1139
|
+
script.src = url + (url.indexOf("?") >= 0 ? "&" : "?") + "jsonp=" + callbackName + "&" + serialize$1(request);
|
|
1135
1140
|
document.body.appendChild(script);
|
|
1136
1141
|
var progress = setInterval(function () {
|
|
1137
1142
|
if (respondedTimeout <= 0) {
|
|
@@ -1141,13 +1146,9 @@ var jsonp = function (url, request, timeout) {
|
|
|
1141
1146
|
respondedTimeout -= respondedTick;
|
|
1142
1147
|
if (respondedTimeout <= 0) {
|
|
1143
1148
|
clearInterval(progress);
|
|
1144
|
-
console.log("Request timeout: " + script.src);
|
|
1145
1149
|
doCallback();
|
|
1146
1150
|
reject(Error("Request timeout: " + script.src));
|
|
1147
1151
|
}
|
|
1148
|
-
else {
|
|
1149
|
-
console.log("Request pending (" + respondedTimeout / 1000 + " sec): " + script.src);
|
|
1150
|
-
}
|
|
1151
1152
|
}
|
|
1152
1153
|
}, respondedTick);
|
|
1153
1154
|
function doCallback() {
|
|
@@ -1200,7 +1201,7 @@ var Comms = /** @class */ (function (_super) {
|
|
|
1200
1201
|
return new Promise(function (resolve, reject) {
|
|
1201
1202
|
var uri = url;
|
|
1202
1203
|
if (method === "GET" && request) {
|
|
1203
|
-
uri += "?" + serialize(request);
|
|
1204
|
+
uri += "?" + serialize$1(request);
|
|
1204
1205
|
}
|
|
1205
1206
|
var xhr = new XMLHttpRequest();
|
|
1206
1207
|
xhr.onload = function (e) {
|
|
@@ -1221,7 +1222,7 @@ var Comms = /** @class */ (function (_super) {
|
|
|
1221
1222
|
}
|
|
1222
1223
|
else {
|
|
1223
1224
|
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
|
|
1224
|
-
xhr.send(serialize(request));
|
|
1225
|
+
xhr.send(serialize$1(request));
|
|
1225
1226
|
}
|
|
1226
1227
|
});
|
|
1227
1228
|
};
|
|
@@ -1263,7 +1264,7 @@ var Basic = /** @class */ (function (_super) {
|
|
|
1263
1264
|
return this;
|
|
1264
1265
|
};
|
|
1265
1266
|
Basic.prototype.call = function (request, callback) {
|
|
1266
|
-
var url = this._url + (this._url.indexOf("?") >= 0 ? "&" : "?") + serialize(request);
|
|
1267
|
+
var url = this._url + (this._url.indexOf("?") >= 0 ? "&" : "?") + serialize$1(request);
|
|
1267
1268
|
if (this._cacheCalls) {
|
|
1268
1269
|
var context_1 = this;
|
|
1269
1270
|
return new Promise(function (resolve, reject) {
|
|
@@ -1272,7 +1273,7 @@ var Basic = /** @class */ (function (_super) {
|
|
|
1272
1273
|
throw Error("not cached");
|
|
1273
1274
|
}
|
|
1274
1275
|
if (callback) {
|
|
1275
|
-
console.
|
|
1276
|
+
console.error("Deprecated: callback, use promise (Basic.prototype.call)");
|
|
1276
1277
|
callback(response);
|
|
1277
1278
|
}
|
|
1278
1279
|
resolve(response);
|
|
@@ -1280,7 +1281,7 @@ var Basic = /** @class */ (function (_super) {
|
|
|
1280
1281
|
return context_1.get(url).then(function (response2) {
|
|
1281
1282
|
localStorage.setItem("hpcc.viz." + url, JSON.stringify(response2));
|
|
1282
1283
|
if (callback) {
|
|
1283
|
-
console.
|
|
1284
|
+
console.error("Deprecated: callback, use promise (Basic.prototype.call)");
|
|
1284
1285
|
callback(response2);
|
|
1285
1286
|
}
|
|
1286
1287
|
return response2;
|
|
@@ -1291,7 +1292,7 @@ var Basic = /** @class */ (function (_super) {
|
|
|
1291
1292
|
localStorage.removeItem("hpcc.viz." + url);
|
|
1292
1293
|
return this.get(url).then(function (response) {
|
|
1293
1294
|
if (callback) {
|
|
1294
|
-
console.
|
|
1295
|
+
console.error("Deprecated: callback, use promise (Basic.prototype.call)");
|
|
1295
1296
|
callback(response);
|
|
1296
1297
|
}
|
|
1297
1298
|
return response;
|
|
@@ -1300,7 +1301,7 @@ var Basic = /** @class */ (function (_super) {
|
|
|
1300
1301
|
};
|
|
1301
1302
|
return Basic;
|
|
1302
1303
|
}(Comms));
|
|
1303
|
-
function locateRoxieResponse(response) {
|
|
1304
|
+
function locateRoxieResponse$1(response) {
|
|
1304
1305
|
// v5 and v6 compatible ---
|
|
1305
1306
|
for (var key in response) {
|
|
1306
1307
|
if (response[key].Row && response[key].Row instanceof Array) {
|
|
@@ -1308,7 +1309,7 @@ function locateRoxieResponse(response) {
|
|
|
1308
1309
|
}
|
|
1309
1310
|
var retVal = void 0;
|
|
1310
1311
|
if (typeof (response[key]) !== "string") {
|
|
1311
|
-
retVal = locateRoxieResponse(response[key]);
|
|
1312
|
+
retVal = locateRoxieResponse$1(response[key]);
|
|
1312
1313
|
}
|
|
1313
1314
|
if (retVal) {
|
|
1314
1315
|
return retVal;
|
|
@@ -1394,7 +1395,7 @@ var WsECL = /** @class */ (function (_super) {
|
|
|
1394
1395
|
pathname: "WsEcl/submit/query/" + target.target + "/" + target.query + "/json"
|
|
1395
1396
|
});
|
|
1396
1397
|
return this.jsonp(url, request).then(function (response) {
|
|
1397
|
-
var _response = locateRoxieResponse(response);
|
|
1398
|
+
var _response = locateRoxieResponse$1(response);
|
|
1398
1399
|
if (!_response) {
|
|
1399
1400
|
_response = locateRoxieException(response);
|
|
1400
1401
|
}
|
|
@@ -1416,7 +1417,7 @@ var WsECL = /** @class */ (function (_super) {
|
|
|
1416
1417
|
}
|
|
1417
1418
|
context._mappings.mapResponse(response);
|
|
1418
1419
|
if (callback) {
|
|
1419
|
-
console.
|
|
1420
|
+
console.error("Deprecated: callback, use promise (WsECL.prototype.call)");
|
|
1420
1421
|
callback(response);
|
|
1421
1422
|
}
|
|
1422
1423
|
return response;
|
|
@@ -1427,7 +1428,7 @@ var WsECL = /** @class */ (function (_super) {
|
|
|
1427
1428
|
};
|
|
1428
1429
|
return WsECL;
|
|
1429
1430
|
}(Comms));
|
|
1430
|
-
var WsWorkunits = /** @class */ (function (_super) {
|
|
1431
|
+
var WsWorkunits$1 = /** @class */ (function (_super) {
|
|
1431
1432
|
__extends(WsWorkunits, _super);
|
|
1432
1433
|
function WsWorkunits() {
|
|
1433
1434
|
var _this = _super.call(this) || this;
|
|
@@ -1547,7 +1548,7 @@ var WsWorkunits = /** @class */ (function (_super) {
|
|
|
1547
1548
|
context_2._mappings.mapResult(context_2._resultNameCache, target.resultname);
|
|
1548
1549
|
}
|
|
1549
1550
|
if (callback) {
|
|
1550
|
-
console.
|
|
1551
|
+
console.error("Deprecated: callback, use promise (WsWorkunits.prototype._fetchResult)");
|
|
1551
1552
|
callback(context_2._resultNameCache[target.resultname]);
|
|
1552
1553
|
}
|
|
1553
1554
|
return context_2._resultNameCache[target.resultname];
|
|
@@ -1583,7 +1584,7 @@ var WsWorkunits = /** @class */ (function (_super) {
|
|
|
1583
1584
|
}
|
|
1584
1585
|
response = response.WUQueryResponse.Workunits.ECLWorkunit;
|
|
1585
1586
|
if (callback) {
|
|
1586
|
-
console.
|
|
1587
|
+
console.error("Deprecated: callback, use promise (WsWorkunits.prototype.WUQuery)");
|
|
1587
1588
|
callback(response);
|
|
1588
1589
|
}
|
|
1589
1590
|
return response;
|
|
@@ -1616,7 +1617,7 @@ var WsWorkunits = /** @class */ (function (_super) {
|
|
|
1616
1617
|
var context_4 = this;
|
|
1617
1618
|
this._fetchResultNamesPromise = this.jsonp(url_1, request_1).then(function (response) {
|
|
1618
1619
|
if (Utility.exists("WUInfoResponse.Workunit.Archived", response) && response.WUInfoResponse.Workunit.Archived) {
|
|
1619
|
-
console.
|
|
1620
|
+
console.warn("WU is archived: " + url_1 + " " + JSON.stringify(request_1));
|
|
1620
1621
|
}
|
|
1621
1622
|
if (Utility.exists("WUInfoResponse.Workunit.Results.ECLResult", response)) {
|
|
1622
1623
|
response.WUInfoResponse.Workunit.Results.ECLResult.map(function (item) {
|
|
@@ -1625,7 +1626,7 @@ var WsWorkunits = /** @class */ (function (_super) {
|
|
|
1625
1626
|
});
|
|
1626
1627
|
}
|
|
1627
1628
|
if (callback) {
|
|
1628
|
-
console.
|
|
1629
|
+
console.error("Deprecated: callback, use promise (WsWorkunits.prototype.fetchResultNames)");
|
|
1629
1630
|
callback(context_4._resultNameCache);
|
|
1630
1631
|
}
|
|
1631
1632
|
return context_4._resultNameCache;
|
|
@@ -1642,7 +1643,7 @@ var WsWorkunits = /** @class */ (function (_super) {
|
|
|
1642
1643
|
}
|
|
1643
1644
|
return Promise.all(fetchArray).then(function (responseArray) {
|
|
1644
1645
|
if (callback) {
|
|
1645
|
-
console.
|
|
1646
|
+
console.error("Deprecated: callback, use promise (WsWorkunits.prototype.fetchResults)");
|
|
1646
1647
|
callback(context._resultNameCache);
|
|
1647
1648
|
}
|
|
1648
1649
|
return context._resultNameCache;
|
|
@@ -1715,14 +1716,14 @@ WsWorkunits_GetStats.prototype.send = function (request, callback) {
|
|
|
1715
1716
|
return this.jsonp(url, request).then(function (response) {
|
|
1716
1717
|
if (Utility.exists("WUGetStatsResponse.Statistics.WUStatisticItem", response)) {
|
|
1717
1718
|
if (callback) {
|
|
1718
|
-
console.
|
|
1719
|
+
console.error("Deprecated: callback, use promise (WsWorkunits_GetStats.prototype.send)");
|
|
1719
1720
|
callback(response.WUGetStatsResponse.Statistics.WUStatisticItem);
|
|
1720
1721
|
}
|
|
1721
1722
|
return response.WUGetStatsResponse.Statistics.WUStatisticItem;
|
|
1722
1723
|
}
|
|
1723
1724
|
else {
|
|
1724
1725
|
if (callback) {
|
|
1725
|
-
console.
|
|
1726
|
+
console.error("Deprecated: callback, use promise (WsWorkunits_GetStats.prototype.send)");
|
|
1726
1727
|
callback([]);
|
|
1727
1728
|
}
|
|
1728
1729
|
return [];
|
|
@@ -1740,7 +1741,7 @@ HIPIERoxie.prototype.fetchResults = function (request, callback) {
|
|
|
1740
1741
|
this._resultNameCacheCount = 0;
|
|
1741
1742
|
var context = this;
|
|
1742
1743
|
return this.jsonp(url, request).then(function (response) {
|
|
1743
|
-
var _response = locateRoxieResponse(response);
|
|
1744
|
+
var _response = locateRoxieResponse$1(response);
|
|
1744
1745
|
if (!_response) {
|
|
1745
1746
|
_response = locateRoxieException(response);
|
|
1746
1747
|
}
|
|
@@ -1762,7 +1763,7 @@ HIPIERoxie.prototype.fetchResults = function (request, callback) {
|
|
|
1762
1763
|
}
|
|
1763
1764
|
}
|
|
1764
1765
|
if (callback) {
|
|
1765
|
-
console.
|
|
1766
|
+
console.error("Deprecated: callback, use promise (HIPIERoxie.prototype.fetchResults)");
|
|
1766
1767
|
callback(context._resultNameCache);
|
|
1767
1768
|
}
|
|
1768
1769
|
return context._resultNameCache;
|
|
@@ -1772,7 +1773,7 @@ HIPIERoxie.prototype.fetchResult = function (name, callback) {
|
|
|
1772
1773
|
var context = this;
|
|
1773
1774
|
return new Promise(function (resolve, reject) {
|
|
1774
1775
|
if (callback) {
|
|
1775
|
-
console.
|
|
1776
|
+
console.error("Deprecated: callback, use promise (HIPIERoxie.prototype.fetchResult)");
|
|
1776
1777
|
callback(context._resultNameCache[name]);
|
|
1777
1778
|
}
|
|
1778
1779
|
resolve(context._resultNameCache[name]);
|
|
@@ -1791,12 +1792,12 @@ HIPIERoxie.prototype.call = function (request, callback) {
|
|
|
1791
1792
|
};
|
|
1792
1793
|
// HIPIEWorkunit ---
|
|
1793
1794
|
function HIPIEWorkunit() {
|
|
1794
|
-
WsWorkunits.call(this);
|
|
1795
|
+
WsWorkunits$1.call(this);
|
|
1795
1796
|
}
|
|
1796
|
-
HIPIEWorkunit.prototype = Object.create(WsWorkunits.prototype);
|
|
1797
|
+
HIPIEWorkunit.prototype = Object.create(WsWorkunits$1.prototype);
|
|
1797
1798
|
HIPIEWorkunit.prototype.fetchResults = function (callback) {
|
|
1798
1799
|
var context = this;
|
|
1799
|
-
return WsWorkunits.prototype.fetchResultNames.call(this).then(function (response) {
|
|
1800
|
+
return WsWorkunits$1.prototype.fetchResultNames.call(this).then(function (response) {
|
|
1800
1801
|
var fetchArray = [];
|
|
1801
1802
|
for (var key in context._hipieResults) {
|
|
1802
1803
|
var item = context._hipieResults[key];
|
|
@@ -1804,7 +1805,7 @@ HIPIEWorkunit.prototype.fetchResults = function (callback) {
|
|
|
1804
1805
|
}
|
|
1805
1806
|
return Promise.all(fetchArray).then(function (response2) {
|
|
1806
1807
|
if (callback) {
|
|
1807
|
-
console.
|
|
1808
|
+
console.error("Deprecated: callback, use promise (HIPIEWorkunit.prototype.fetchResults)");
|
|
1808
1809
|
callback(context._resultNameCache);
|
|
1809
1810
|
}
|
|
1810
1811
|
return context._resultNameCache;
|
|
@@ -1812,9 +1813,9 @@ HIPIEWorkunit.prototype.fetchResults = function (callback) {
|
|
|
1812
1813
|
});
|
|
1813
1814
|
};
|
|
1814
1815
|
HIPIEWorkunit.prototype.fetchResult = function (name, callback) {
|
|
1815
|
-
return WsWorkunits.prototype.fetchResult.call(this, { wuid: this._wuid, resultname: name }).then(function (response) {
|
|
1816
|
+
return WsWorkunits$1.prototype.fetchResult.call(this, { wuid: this._wuid, resultname: name }).then(function (response) {
|
|
1816
1817
|
if (callback) {
|
|
1817
|
-
console.
|
|
1818
|
+
console.error("Deprecated: callback, use promise (HIPIEWorkunit.prototype.fetchResult)");
|
|
1818
1819
|
callback(response);
|
|
1819
1820
|
}
|
|
1820
1821
|
return response;
|
|
@@ -1894,7 +1895,7 @@ HIPIEDatabomb.prototype.fetchResults = function (callback) {
|
|
|
1894
1895
|
var context = this;
|
|
1895
1896
|
return new Promise(function (resolve, reject) {
|
|
1896
1897
|
if (callback) {
|
|
1897
|
-
console.
|
|
1898
|
+
console.error("Deprecated: callback, use promise (HIPIEDatabomb.prototype.fetchResults)");
|
|
1898
1899
|
callback(context._resultNameCache);
|
|
1899
1900
|
}
|
|
1900
1901
|
resolve(context._resultNameCache);
|
|
@@ -1909,7 +1910,7 @@ function createESPConnection(url) {
|
|
|
1909
1910
|
.url(url);
|
|
1910
1911
|
}
|
|
1911
1912
|
if (testURL.isWsWorkunits()) {
|
|
1912
|
-
return new WsWorkunits()
|
|
1913
|
+
return new WsWorkunits$1()
|
|
1913
1914
|
.url(url);
|
|
1914
1915
|
}
|
|
1915
1916
|
if (testURL.isWsEcl()) {
|
|
@@ -1929,7 +1930,7 @@ var Comms$1 = /*#__PURE__*/Object.freeze({
|
|
|
1929
1930
|
Comms: Comms,
|
|
1930
1931
|
Basic: Basic,
|
|
1931
1932
|
WsECL: WsECL,
|
|
1932
|
-
WsWorkunits: WsWorkunits,
|
|
1933
|
+
WsWorkunits: WsWorkunits$1,
|
|
1933
1934
|
createESPConnection: createESPConnection,
|
|
1934
1935
|
hookJsonp: hookJsonp,
|
|
1935
1936
|
HIPIEWorkunit: HIPIEWorkunit,
|
|
@@ -1971,12 +1972,12 @@ BasicComms.prototype.jsonp = function (url, request) {
|
|
|
1971
1972
|
});
|
|
1972
1973
|
};
|
|
1973
1974
|
// WsWorkunits ---
|
|
1974
|
-
function WsWorkunits
|
|
1975
|
+
function WsWorkunits(baseUrl) {
|
|
1975
1976
|
BasicComms.call(this);
|
|
1976
1977
|
this.url(baseUrl + "WsWorkunits/");
|
|
1977
1978
|
}
|
|
1978
|
-
WsWorkunits
|
|
1979
|
-
WsWorkunits
|
|
1979
|
+
WsWorkunits.prototype = Object.create(BasicComms.prototype);
|
|
1980
|
+
WsWorkunits.prototype.wuQuery = function (options) {
|
|
1980
1981
|
var url = this.getUrl({
|
|
1981
1982
|
pathname: "WsWorkunits/WUQuery.json"
|
|
1982
1983
|
});
|
|
@@ -2252,13 +2253,13 @@ function postFilter(results, filter) {
|
|
|
2252
2253
|
return true;
|
|
2253
2254
|
});
|
|
2254
2255
|
}
|
|
2255
|
-
function locateRoxieResponse
|
|
2256
|
+
function locateRoxieResponse(response) {
|
|
2256
2257
|
// v5 and v6 compatible ---
|
|
2257
2258
|
for (var key in response) {
|
|
2258
2259
|
if (response[key].Row && response[key].Row instanceof Array) {
|
|
2259
2260
|
return response;
|
|
2260
2261
|
}
|
|
2261
|
-
var retVal = locateRoxieResponse
|
|
2262
|
+
var retVal = locateRoxieResponse(response[key]);
|
|
2262
2263
|
if (retVal) {
|
|
2263
2264
|
return retVal;
|
|
2264
2265
|
}
|
|
@@ -2277,7 +2278,7 @@ RoxieQuery.prototype.query = function (options, filter) {
|
|
|
2277
2278
|
}
|
|
2278
2279
|
var context = this;
|
|
2279
2280
|
return this.jsonp(this.url(), request).then(function (response) {
|
|
2280
|
-
response = locateRoxieResponse
|
|
2281
|
+
response = locateRoxieResponse(response);
|
|
2281
2282
|
if (response) {
|
|
2282
2283
|
if (context._resultName) {
|
|
2283
2284
|
if (response && response[context._resultName] && response[context._resultName].Row) {
|
|
@@ -2328,7 +2329,7 @@ function createConnection(url) {
|
|
|
2328
2329
|
.url(url);
|
|
2329
2330
|
if (testURL.isWsWorkunits()) {
|
|
2330
2331
|
var espConnection = createESPConnection(url);
|
|
2331
|
-
if (espConnection instanceof WsWorkunits && espConnection.wuid()) {
|
|
2332
|
+
if (espConnection instanceof WsWorkunits$1 && espConnection.wuid()) {
|
|
2332
2333
|
return new Workunit(espConnection.getUrl({ pathname: "" }), espConnection.wuid())
|
|
2333
2334
|
.url(url);
|
|
2334
2335
|
}
|
|
@@ -2367,7 +2368,9 @@ function flattenResult(result, mappings) {
|
|
|
2367
2368
|
return retVal;
|
|
2368
2369
|
}
|
|
2369
2370
|
|
|
2370
|
-
var
|
|
2371
|
+
var simpleheat$1 = {exports: {}};
|
|
2372
|
+
|
|
2373
|
+
(function (module) {
|
|
2371
2374
|
|
|
2372
2375
|
module.exports = simpleheat;
|
|
2373
2376
|
|
|
@@ -2509,12 +2512,14 @@ simpleheat.prototype = {
|
|
|
2509
2512
|
}
|
|
2510
2513
|
}
|
|
2511
2514
|
};
|
|
2512
|
-
});
|
|
2515
|
+
}(simpleheat$1));
|
|
2513
2516
|
|
|
2514
|
-
var
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2517
|
+
var simpleheat_1 = simpleheat$1.exports;
|
|
2518
|
+
|
|
2519
|
+
var _simpleheat = /*#__PURE__*/_mergeNamespaces({
|
|
2520
|
+
__proto__: null,
|
|
2521
|
+
'default': simpleheat_1
|
|
2522
|
+
}, [simpleheat$1.exports]);
|
|
2518
2523
|
|
|
2519
2524
|
var simpleheat = window.simpleheat || (_simpleheat && simpleheat_1) || _simpleheat;
|
|
2520
2525
|
var HeatMap = /** @class */ (function (_super) {
|
|
@@ -2761,8 +2766,8 @@ var HPCCBadge = /** @class */ (function (_super) {
|
|
|
2761
2766
|
HPCCBadge.prototype._class += " other_HPCCBadge";
|
|
2762
2767
|
HPCCBadge.prototype.publish("animation", "none", "set", "Animation Style", ["none", "accentInOut", "accentIn", "fade_in"]);
|
|
2763
2768
|
|
|
2764
|
-
var css_248z$
|
|
2765
|
-
styleInject(css_248z$
|
|
2769
|
+
var css_248z$a = ".other_Html{height:100%;overflow-x:auto;overflow-y:scroll;width:100%}";
|
|
2770
|
+
styleInject(css_248z$a);
|
|
2766
2771
|
|
|
2767
2772
|
var Html = /** @class */ (function (_super) {
|
|
2768
2773
|
__extends(Html, _super);
|
|
@@ -2793,8 +2798,8 @@ Html.prototype.publish("html", "", "string", "Html to render", null, { tags: ["B
|
|
|
2793
2798
|
Html.prototype.publish("overflowX", null, "set", "CSS overflow-x", ["", "visible", "hidden", "scroll", "auto", "initial", "inherit"], { tags: ["Basic"], optional: true });
|
|
2794
2799
|
Html.prototype.publish("overflowY", null, "set", "CSS overflow-y", ["", "visible", "hidden", "scroll", "auto", "initial", "inherit"], { tags: ["Basic"], optional: true });
|
|
2795
2800
|
|
|
2796
|
-
var css_248z$
|
|
2797
|
-
styleInject(css_248z$
|
|
2801
|
+
var css_248z$9 = ".other_IconList .other_Html{overflow-x:hidden;overflow-y:hidden}";
|
|
2802
|
+
styleInject(css_248z$9);
|
|
2798
2803
|
|
|
2799
2804
|
var IconList = /** @class */ (function (_super) {
|
|
2800
2805
|
__extends(IconList, _super);
|
|
@@ -2843,7 +2848,7 @@ var IconList = /** @class */ (function (_super) {
|
|
|
2843
2848
|
IconList.prototype.updateListProperties = function (list, idx) {
|
|
2844
2849
|
return list
|
|
2845
2850
|
.disableScroll(true)
|
|
2846
|
-
.widgetsFlexBasis([this.iconSize() + "px", "calc(100% - "
|
|
2851
|
+
.widgetsFlexBasis([this.iconSize() + "px", "calc(100% - ".concat(this.iconSize(), "px)")]);
|
|
2847
2852
|
};
|
|
2848
2853
|
IconList.prototype.updateEntityProperties = function (entity, idx) {
|
|
2849
2854
|
return entity
|
|
@@ -2860,8 +2865,8 @@ IconList.prototype.publish("iconColumnIndex", 0, "number", "Index of column cont
|
|
|
2860
2865
|
IconList.prototype.publish("iconColorColumnIndex", 1, "number", "Index of column containing icon color");
|
|
2861
2866
|
IconList.prototype.publish("htmlColumnIndex", 2, "number", "Index of column containing html string");
|
|
2862
2867
|
|
|
2863
|
-
var css_248z$
|
|
2864
|
-
styleInject(css_248z$
|
|
2868
|
+
var css_248z$8 = ".other_Paginator{display:block;position:absolute;white-space:nowrap}.other_Paginator .pagination{display:inline-block;margin:0;padding:0;white-space:nowrap}.other_Paginator .pagination>li{display:inline}.other_Paginator input[type=number].currentPageNumber{border:1px solid #ddd;outline:0 none;position:relative;text-align:center;width:37px}.other_Paginator div.side{padding-left:8px;padding-top:5px;vertical-align:top}.other_Paginator span.side{color:#337ab7;position:relative}.other_Paginator .pagination>div,.other_Paginator .pagination>li>a,.other_Paginator .pagination>li>span{background-color:#fff;border:1px solid #ddd;color:#337ab7;float:left;line-height:1.42857143;margin-left:-1px;padding:6px 12px;position:relative;text-decoration:none}.other_Paginator .pagination>li:first-child>a,.other_Paginator .pagination>li:first-child>span{border-bottom-left-radius:4px;border-top-left-radius:4px;margin-left:0}.other_Paginator .pagination>li:last-child>a,.other_Paginator .pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.other_Paginator .pagination>li>a:focus,.other_Paginator .pagination>li>a:hover,.other_Paginator .pagination>li>span:focus,.other_Paginator .pagination>li>span:hover{background-color:#eee;border-color:#ddd;color:#23527c}.other_Paginator .pagination>.active>a,.other_Paginator .pagination>.active>a:focus,.other_Paginator .pagination>.active>a:hover,.other_Paginator .pagination>.active>span,.other_Paginator .pagination>.active>span:focus,.other_Paginator .pagination>.active>span:hover{background-color:#337ab7;border-color:#337ab7;color:#fff;cursor:default;z-index:2}.other_Paginator .pagination>.disabled>a,.other_Paginator .pagination>.disabled>a:focus,.other_Paginator .pagination>.disabled>a:hover,.other_Paginator .pagination>.disabled>span,.other_Paginator .pagination>.disabled>span:focus,.other_Paginator .pagination>.disabled>span:hover{background-color:#fff;border-color:#ddd;color:#777;cursor:not-allowed}.other_Paginator .pagination-lg>li>a,.other_Paginator .pagination-lg>li>span{font-size:18px;padding:10px 16px}.other_Paginator .pagination-lg>li:first-child>a,.other_Paginator .pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.other_Paginator .pagination-lg>li:last-child>a,.other_Paginator .pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.other_Paginator .pagination-sm>li>a,.other_Paginator .pagination-sm>li>span{font-size:12px;padding:5px 10px}.other_Paginator .pagination-sm>li:first-child>a,.other_Paginator .pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.other_Paginator .pagination-sm>li:last-child>a,.other_Paginator .pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}";
|
|
2869
|
+
styleInject(css_248z$8);
|
|
2865
2870
|
|
|
2866
2871
|
var Paginator = /** @class */ (function (_super) {
|
|
2867
2872
|
__extends(Paginator, _super);
|
|
@@ -2979,15 +2984,9 @@ Paginator.prototype.publish("adjacentPages", 2, "number", "Number of page indexe
|
|
|
2979
2984
|
Paginator.prototype.publish("bottom", 20, "number", "Pagination bottom offset", null, { tags: ["Private"] });
|
|
2980
2985
|
Paginator.prototype.publish("right", 20, "number", "Pagination right offset", null, { tags: ["Private"] });
|
|
2981
2986
|
|
|
2982
|
-
var css_248z$
|
|
2983
|
-
styleInject(css_248z$
|
|
2987
|
+
var css_248z$7 = ".other_Table{border-color:#999;border-width:1px;color:#333}.other_Table table{border-collapse:collapse;border-spacing:0}.other_Table .tableDiv{position:absolute}.labels-wrapper th,.other_Table th{border:1px solid #a9c6c9;box-sizing:border-box;color:#fff;cursor:pointer;padding:5px 10px;white-space:nowrap}.cols-wrapper tr,.other_Table thead>tr{background-color:#1f77b4}.labels-wrapper .thIcon,.other_Table .thIcon{font-family:FontAwesome;padding-left:8px}.other_Table .tableDiv tbody>tr:nth-child(odd){background-color:#f3faff;color:#000}.other_Table .tableDiv tbody>tr:nth-child(2n){background-color:#fff;color:#000}.other_Table .tableDiv tbody>tr.selected{background-color:#f48a00;color:#fff}.other_Table .rows-wrapper table>tbody>tr{background-color:#bce1fb;color:#000}.other_Table .rows-wrapper .labels-wrapper{width:100%}.other_Table table tbody>tr.selected{background-color:#f48a00;color:#fff}.other_Table .tableDiv tbody>tr.hover,.other_Table .tableDiv tbody>tr:hover,.rows-wrapper table tbody tr.hover{background-color:#bfd7e7;color:#fff}.other_Table .rows-wrapper tbody tr.hover.selected,.other_Table .tableDiv tbody>tr.selected.hover,.other_Table .tableDiv tbody>tr.selected:hover,.other_Table tr.selected.hover,.other_Table tr.selected:hover{background-color:#5ea8db;color:#fff}.other_Table td,.rows-wrapper td{border:1px solid #a9c6c9;box-sizing:border-box;padding:2px 5px;vertical-align:middle;white-space:nowrap}.other_Table tfoot td,.rows-wrapper tfoot td{background-color:#addff3;font-weight:700}";
|
|
2988
|
+
styleInject(css_248z$7);
|
|
2984
2989
|
|
|
2985
|
-
function replacer(key, value) {
|
|
2986
|
-
if (value instanceof Widget) {
|
|
2987
|
-
return "Widget with class: " + value.classID();
|
|
2988
|
-
}
|
|
2989
|
-
return value;
|
|
2990
|
-
}
|
|
2991
2990
|
var Table = /** @class */ (function (_super) {
|
|
2992
2991
|
__extends(Table, _super);
|
|
2993
2992
|
function Table() {
|
|
@@ -3368,7 +3367,7 @@ var Table = /** @class */ (function (_super) {
|
|
|
3368
3367
|
if (this.pagination() && this._hasChildWidgets) {
|
|
3369
3368
|
this.tableDiv.style("overflow-y", "auto");
|
|
3370
3369
|
this.table.style("margin-bottom", "50px");
|
|
3371
|
-
console.
|
|
3370
|
+
console.warn("Warning: displaying another widget in the table may cause problems with pagination");
|
|
3372
3371
|
}
|
|
3373
3372
|
else {
|
|
3374
3373
|
this.tableDiv.style("overflow-y", null);
|
|
@@ -3489,8 +3488,6 @@ var Table = /** @class */ (function (_super) {
|
|
|
3489
3488
|
if (!rowsUpdate.empty())
|
|
3490
3489
|
this.setColumnWidths(rowsUpdate);
|
|
3491
3490
|
var box;
|
|
3492
|
-
var newTableHeight;
|
|
3493
|
-
var maxWidth;
|
|
3494
3491
|
if (this.fixedSize()) {
|
|
3495
3492
|
var node = select(".tableDiv > table").node();
|
|
3496
3493
|
if (node) {
|
|
@@ -3539,12 +3536,11 @@ var Table = /** @class */ (function (_super) {
|
|
|
3539
3536
|
}
|
|
3540
3537
|
this.setOnScrollEvents(this.tableDiv.node(), tableMarginHeight);
|
|
3541
3538
|
function calcWidth() {
|
|
3542
|
-
|
|
3543
|
-
|
|
3539
|
+
box.width;
|
|
3540
|
+
context.tbody.property("offsetWidth") + 1;
|
|
3544
3541
|
}
|
|
3545
3542
|
function calcHeight() {
|
|
3546
|
-
|
|
3547
|
-
newTableHeight = newTableHeight;
|
|
3543
|
+
context.tbody.property("offsetHeight") + tableMarginHeight;
|
|
3548
3544
|
}
|
|
3549
3545
|
this._paginator.render();
|
|
3550
3546
|
setTimeout(function () {
|
|
@@ -3785,10 +3781,8 @@ var Table = /** @class */ (function (_super) {
|
|
|
3785
3781
|
return this;
|
|
3786
3782
|
};
|
|
3787
3783
|
Table.prototype.click = function (row, column, selected) {
|
|
3788
|
-
console.log("click: " + JSON.stringify(row, replacer) + ", " + column + "," + selected);
|
|
3789
3784
|
};
|
|
3790
3785
|
Table.prototype.dblclick = function (row, column, selected) {
|
|
3791
|
-
console.log("dblclick: " + JSON.stringify(row, replacer) + ", " + column + "," + selected);
|
|
3792
3786
|
};
|
|
3793
3787
|
Table.prototype.headerClick = function (column, idx) {
|
|
3794
3788
|
this
|
|
@@ -3845,7 +3839,7 @@ Table.prototype.publish("minWidgetHeight", 240, "number", "Minimum height of a c
|
|
|
3845
3839
|
Table.prototype.publish("sortByFieldIndex", null, "number", "Index for the field/column to sort the data", null, { tags: ["Basic"], optional: true });
|
|
3846
3840
|
Table.prototype.publish("descending", false, "boolean", "Direction for sorting the data: ascending (true) or descending (false)", null, { tags: ["Basic"], optional: true });
|
|
3847
3841
|
|
|
3848
|
-
var css_248z$6 = ".other_Legend .colorBlock{
|
|
3842
|
+
var css_248z$6 = ".other_Legend .colorBlock{height:10px;width:10px}.other_Legend>table,.other_Legend>table td,.other_Legend>table th{border-collapse:collapse;border-spacing:0}.other_Table.other_Legend table{border-spacing:0}.labels-wrapper th,.other_Table.other_Legend th{background-color:transparent;border:1px solid transparent;color:#333;cursor:default;font-weight:400;padding:2px 5px;text-align:left;white-space:nowrap}.other_Table.other_Legend tr{background-color:transparent;color:#333}.other_Table.other_Legend .tableDiv tbody>tr:nth-child(odd){background-color:unset;color:#000}.other_Table.other_Legend .tableDiv tbody>tr.hover,.other_Table.other_Legend .tableDiv tbody>tr:hover,.rows-wrapper table tbody tr.hover{background-color:#bfd7e7;color:#fff}.other_Table.other_Legend thead>tr:hover{background-color:transparent}.other_Table.other_Legend tbody>tr.hover,.other_Table.other_Legend tbody>tr:hover,.rows-wrapper tbody tr.hover{background-color:#eee}.other_Table.other_Legend td,.rows-wrapper td{border-width:0;box-sizing:border-box;padding:2px 5px;white-space:nowrap}.other_Legend>.tableDiv>table>tbody>tr:hover{background-color:#ddd;color:#000;cursor:pointer}.other_Legend.horiz-legend .tableDiv{text-align:left;width:100%!important}.other_Legend.horiz-legend .tableDiv>table{display:inline-block;left:0!important;top:0!important;width:100%!important}.other_Legend.horiz-legend tbody,.other_Legend.horiz-legend thead,.other_Legend.horiz-legend tr{display:inline-block}.other_Legend.horiz-legend td,.other_Legend.horiz-legend td>div{display:inline-block;white-space:nowrap}.other_Legend.horiz-legend tr{white-space:nowrap}.other_Legend.horiz-legend tbody{display:inline-block;text-align:center;width:100%!important}";
|
|
3849
3843
|
styleInject(css_248z$6);
|
|
3850
3844
|
|
|
3851
3845
|
function _htmlColorBlock(hexColor) {
|
|
@@ -3998,19 +3992,10 @@ var Legend = /** @class */ (function (_super) {
|
|
|
3998
3992
|
_super.prototype.exit.call(this, domNode, element);
|
|
3999
3993
|
};
|
|
4000
3994
|
Legend.prototype.onClick = function (rowData, rowIdx) {
|
|
4001
|
-
console.log("Legend onClick method");
|
|
4002
|
-
console.log("rowData: " + rowData);
|
|
4003
|
-
console.log("rowIdx: " + rowIdx);
|
|
4004
3995
|
};
|
|
4005
3996
|
Legend.prototype.onDblClick = function (rowData, rowIdx) {
|
|
4006
|
-
console.log("Legend onDblClick method");
|
|
4007
|
-
console.log("rowData: " + rowData);
|
|
4008
|
-
console.log("rowIdx: " + rowIdx);
|
|
4009
3997
|
};
|
|
4010
3998
|
Legend.prototype.onMouseOver = function (rowData, rowIdx) {
|
|
4011
|
-
console.log("Legend onMouseOver method");
|
|
4012
|
-
console.log("rowData: " + rowData);
|
|
4013
|
-
console.log("rowIdx: " + rowIdx);
|
|
4014
3999
|
};
|
|
4015
4000
|
return Legend;
|
|
4016
4001
|
}(Table));
|
|
@@ -4037,8 +4022,8 @@ Legend.prototype.getBBox = function (refresh, round) {
|
|
|
4037
4022
|
return retVal;
|
|
4038
4023
|
};
|
|
4039
4024
|
|
|
4040
|
-
var css_248z$
|
|
4041
|
-
styleInject(css_248z$
|
|
4025
|
+
var css_248z$5 = ".other_MorphText .enter{fill:green}.other_MorphText .update{fill:#333}.other_MorphText .exit{fill:brown}";
|
|
4026
|
+
styleInject(css_248z$5);
|
|
4042
4027
|
|
|
4043
4028
|
var MorphText = /** @class */ (function (_super) {
|
|
4044
4029
|
__extends(MorphText, _super);
|
|
@@ -4166,8 +4151,8 @@ NestedTable.prototype.data = function (_) {
|
|
|
4166
4151
|
return origData.apply(this, arguments);
|
|
4167
4152
|
};
|
|
4168
4153
|
|
|
4169
|
-
var css_248z$
|
|
4170
|
-
styleInject(css_248z$
|
|
4154
|
+
var css_248z$4 = ".graph_Opportunity{transform:translate(20px,20px)scale(1)!important}.graph_Opportunity .group{stroke-width:1;stroke:#555;fill:#fefefe}.graph_Opportunity .group_headings{font-family:Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:20px}.graph_Opportunity .node_prev_rect{fill:#fff;stroke-width:2;stroke:#000;stroke-dasharray:3,3;opacity:.6}.graph_Opportunity .node_rev_change{fill:#fff}.graph_Opportunity .node_rev_change_text{color:#000;font-family:Arial;font-size:18px;font-weight:700}.graph_Opportunity .node_date_change{fill:#fff}.graph_Opportunity .node_date_change_text{color:#000;font-family:Arial;font-size:18px;font-weight:700}.graph_Opportunity .node_prev_text{font-family:Arial;font-size:9px;opacity:.6}.graph_Opportunity .node_cur_rect{stroke-width:2;stroke:#000}.graph_Opportunity .node_cur_text{font-family:Arial;font-size:9px;text-decoration:underline}.graph_Opportunity .arrowhead{refX:6}.graph_Opportunity-tooltip.tooltip{background:#bdbdbd;border:0;border-radius:8px;font:14px arial;height:135px;padding:15px 10px 10px;pointer-events:none;position:absolute;text-align:left;width:350px;z-index:1}";
|
|
4155
|
+
styleInject(css_248z$4);
|
|
4171
4156
|
|
|
4172
4157
|
var Column = /** @class */ (function (_super) {
|
|
4173
4158
|
__extends(Column, _super);
|
|
@@ -4745,7 +4730,7 @@ function serializeToObject(widget, filter, includeData, includeState) {
|
|
|
4745
4730
|
}
|
|
4746
4731
|
return retVal;
|
|
4747
4732
|
}
|
|
4748
|
-
function serialize
|
|
4733
|
+
function serialize(widget, filter, includeData, includeState) {
|
|
4749
4734
|
return JSON.stringify(serializeToObject(widget, filter, includeData, includeState));
|
|
4750
4735
|
}
|
|
4751
4736
|
|
|
@@ -4759,11 +4744,11 @@ var Persist = /*#__PURE__*/Object.freeze({
|
|
|
4759
4744
|
removeTheme: removeTheme,
|
|
4760
4745
|
applyTheme: applyTheme,
|
|
4761
4746
|
serializeToObject: serializeToObject,
|
|
4762
|
-
serialize: serialize
|
|
4747
|
+
serialize: serialize
|
|
4763
4748
|
});
|
|
4764
4749
|
|
|
4765
|
-
var css_248z$
|
|
4766
|
-
styleInject(css_248z$
|
|
4750
|
+
var css_248z$3 = ".other_PropertyEditor{height:100%;overflow-y:scroll;width:100%}.other_PropertyEditor .other_PropertyEditor{overflow:hidden}.other_PropertyEditor .property-table{border:solid #ddd;border-width:0 0 0 1px;width:100%}.other_PropertyEditor thead>tr>th{background-color:#333}.other_PropertyEditor .other_PropertyEditor th{background-color:#444}.other_PropertyEditor .other_PropertyEditor .other_PropertyEditor th{background-color:#555}.other_PropertyEditor .other_PropertyEditor .other_PropertyEditor .other_PropertyEditor th{background-color:#666}.other_PropertyEditor .other_PropertyEditor .other_PropertyEditor .other_PropertyEditor .other_PropertyEditor th{background-color:#777}.other_PropertyEditor .headerRow{background-color:#eee}.other_PropertyEditor .other_PropertyEditor .headerRow{background-color:#ddd}.other_PropertyEditor .other_PropertyEditor .other_PropertyEditor .headerRow{background-color:#ccc}.other_PropertyEditor .other_PropertyEditor .other_PropertyEditor .other_PropertyEditor .headerRow{background-color:#bbb}.other_PropertyEditor .other_PropertyEditor .other_PropertyEditor .other_PropertyEditor .other_PropertyEditor .headerRow{background-color:#aaa}.other_PropertyEditor .fa{font-size:14px;width:14px}.other_PropertyEditor div.property-table-collapsed{display:none}.other_PropertyEditor .headerRow>.peInput{padding-top:2px}.other_PropertyEditor .headerRow>.peInput>span{font-weight:700;padding-left:2px}.other_PropertyEditor .headerRow>.peInput>i{float:right;padding-bottom:2px;padding-top:2px}.other_PropertyEditor .headerRow>span>i:hover{background-color:#555;cursor:pointer}.other_PropertyEditor .property-table thead>tr>th{background-color:#333;color:#fff;padding-left:4px;padding-top:2px;text-align:left}.other_PropertyEditor .property-table thead>tr>th>i{float:right;padding-bottom:2px;padding-right:4px;padding-top:2px}.other_PropertyEditor .property-table thead>tr>th>i:hover{background-color:#555;cursor:pointer}.other_PropertyEditor .property-table tbody>tr:nth-child(2n){background-color:#f9f9f9}.other_PropertyEditor .property-table tbody>tr:nth-child(odd){background-color:#fff}.other_PropertyEditor .property-table tbody>tr>td{color:#333;padding:0 0 0 2px;text-align:left}.other_PropertyEditor .property-table tbody>tr.disabled>td{color:gray}.other_PropertyEditor .property-table tbody>tr.invalid>td{color:red}.other_PropertyEditor .property-input-cell>div{padding-left:8px}.other_PropertyEditor .property-label{box-sizing:border-box;height:20px;padding-right:4px}.other_PropertyEditor td.property-input-cell{height:20px;padding:1px 0;text-align:left;width:80%}.other_PropertyEditor .property-input-cell>input,.other_PropertyEditor .property-input-cell>textarea{box-sizing:border-box;width:100%}.other_PropertyEditor .property-input-cell>input{height:20px}.other_PropertyEditor .property-input-cell>textarea{height:120px}.other_PropertyEditor .property-input-cell.boolean-cell{margin:0;position:relative;width:auto}.other_PropertyEditor .property-input-cell>input[type=checkbox]{margin:0;position:absolute;top:0;width:auto}.other_PropertyEditor .html-color-cell>input{width:80%}.other_PropertyEditor .html-color-cell>input[type=color]{position:relative;top:-1px;width:20%}";
|
|
4751
|
+
styleInject(css_248z$3);
|
|
4767
4752
|
|
|
4768
4753
|
function hasProperties(type) {
|
|
4769
4754
|
switch (type) {
|
|
@@ -4832,15 +4817,15 @@ var PropertyEditor = /** @class */ (function (_super) {
|
|
|
4832
4817
|
}
|
|
4833
4818
|
return true;
|
|
4834
4819
|
});
|
|
4835
|
-
var table = element.selectAll("table.property-table.table-"
|
|
4820
|
+
var table = element.selectAll("table.property-table.table-".concat(this.depth())).data(rootWidgets, function (d) {
|
|
4836
4821
|
// We reuse the existing DOM Nodes and this node _might_ have been a regular Input previously ---
|
|
4837
4822
|
if (typeof d.id !== "function") {
|
|
4838
|
-
return "meta-"
|
|
4823
|
+
return "meta-".concat(d.id);
|
|
4839
4824
|
}
|
|
4840
4825
|
return d.id();
|
|
4841
4826
|
});
|
|
4842
4827
|
table.enter().append("table")
|
|
4843
|
-
.attr("class", "property-table table-"
|
|
4828
|
+
.attr("class", "property-table table-".concat(this.depth()))
|
|
4844
4829
|
.each(function () {
|
|
4845
4830
|
var tableElement = select(this);
|
|
4846
4831
|
// Header ---
|
|
@@ -4878,7 +4863,7 @@ var PropertyEditor = /** @class */ (function (_super) {
|
|
|
4878
4863
|
if (this._watch) {
|
|
4879
4864
|
if (window.__hpcc_debug) {
|
|
4880
4865
|
--this.watchDepth;
|
|
4881
|
-
console.
|
|
4866
|
+
console.info("watchDepth: " + this.watchDepth);
|
|
4882
4867
|
}
|
|
4883
4868
|
this._watch.remove();
|
|
4884
4869
|
delete this._watch;
|
|
@@ -4893,7 +4878,7 @@ var PropertyEditor = /** @class */ (function (_super) {
|
|
|
4893
4878
|
});
|
|
4894
4879
|
if (window.__hpcc_debug) {
|
|
4895
4880
|
++this.watchDepth;
|
|
4896
|
-
console.
|
|
4881
|
+
console.info("watchDepth: " + this.watchDepth);
|
|
4897
4882
|
}
|
|
4898
4883
|
}
|
|
4899
4884
|
};
|
|
@@ -4906,16 +4891,16 @@ var PropertyEditor = /** @class */ (function (_super) {
|
|
|
4906
4891
|
switch (context.peInputIcon()) {
|
|
4907
4892
|
case "fa-caret-up":
|
|
4908
4893
|
case "fa-caret-right":
|
|
4909
|
-
context.element().selectAll(".table-"
|
|
4894
|
+
context.element().selectAll(".table-".concat(context.depth(), " > tbody > tr > .headerRow > .peInput > .property-table-collapsed"))
|
|
4910
4895
|
.classed("property-table-collapsed", false);
|
|
4911
|
-
context.element().selectAll(".table-"
|
|
4896
|
+
context.element().selectAll(".table-".concat(context.depth(), " > tbody > tr > .headerRow > .peInput > i"))
|
|
4912
4897
|
.classed("fa-minus-square-o", true)
|
|
4913
4898
|
.classed("fa-plus-square-o", false);
|
|
4914
4899
|
break;
|
|
4915
4900
|
case "fa-caret-down":
|
|
4916
|
-
context.element().selectAll(".table-"
|
|
4901
|
+
context.element().selectAll(".table-".concat(context.depth(), " > tbody > tr > .headerRow > .peInput > div"))
|
|
4917
4902
|
.classed("property-table-collapsed", true);
|
|
4918
|
-
context.element().selectAll(".table-"
|
|
4903
|
+
context.element().selectAll(".table-".concat(context.depth(), " > tbody > tr > .headerRow > .peInput > i"))
|
|
4919
4904
|
.classed("fa-minus-square-o", false)
|
|
4920
4905
|
.classed("fa-plus-square-o", true);
|
|
4921
4906
|
break;
|
|
@@ -4954,10 +4939,10 @@ var PropertyEditor = /** @class */ (function (_super) {
|
|
|
4954
4939
|
this.refreshHideParamsIcon(th.select(".hideParamsIcon"));
|
|
4955
4940
|
};
|
|
4956
4941
|
PropertyEditor.prototype.peInputCount = function () {
|
|
4957
|
-
return this.element().selectAll(".table-"
|
|
4942
|
+
return this.element().selectAll(".table-".concat(this.depth(), " > tbody > tr > .headerRow > .peInput > div")).size();
|
|
4958
4943
|
};
|
|
4959
4944
|
PropertyEditor.prototype.peInputCollapsedCount = function () {
|
|
4960
|
-
return this.element().selectAll(".table-"
|
|
4945
|
+
return this.element().selectAll(".table-".concat(this.depth(), " > tbody > tr > .headerRow > .peInput > div.property-table-collapsed")).size();
|
|
4961
4946
|
};
|
|
4962
4947
|
PropertyEditor.prototype.peInputIcon = function () {
|
|
4963
4948
|
var collapsed = this.peInputCollapsedCount();
|
|
@@ -4971,7 +4956,7 @@ var PropertyEditor = /** @class */ (function (_super) {
|
|
|
4971
4956
|
};
|
|
4972
4957
|
PropertyEditor.prototype.refreshExpandIcon = function () {
|
|
4973
4958
|
var newIcon = this.peInputIcon();
|
|
4974
|
-
this.element().select(".table-"
|
|
4959
|
+
this.element().select(".table-".concat(this.depth(), " > thead > tr > th > .expandIcon"))
|
|
4975
4960
|
.classed("fa-caret-up", false)
|
|
4976
4961
|
.classed("fa-caret-right", false)
|
|
4977
4962
|
.classed("fa-caret-down", false)
|
|
@@ -5176,9 +5161,9 @@ var PropertyEditor = /** @class */ (function (_super) {
|
|
|
5176
5161
|
}
|
|
5177
5162
|
var context = this;
|
|
5178
5163
|
element.classed("headerRow", true);
|
|
5179
|
-
var peInput = element.selectAll("div.peInput-"
|
|
5164
|
+
var peInput = element.selectAll("div.peInput-".concat(this.depth())).data(widgetArr, function (d) { return d.id(); });
|
|
5180
5165
|
peInput.enter().append("div")
|
|
5181
|
-
.attr("class", "peInput peInput-"
|
|
5166
|
+
.attr("class", "peInput peInput-".concat(this.depth()))
|
|
5182
5167
|
.each(function (w) {
|
|
5183
5168
|
var peInputElement = select(this);
|
|
5184
5169
|
// Header ---
|
|
@@ -5204,7 +5189,7 @@ var PropertyEditor = /** @class */ (function (_super) {
|
|
|
5204
5189
|
var clickTarget = peInputElement.select("div");
|
|
5205
5190
|
// Header ---
|
|
5206
5191
|
select(this).select("span")
|
|
5207
|
-
.text(""
|
|
5192
|
+
.text("".concat(param.id));
|
|
5208
5193
|
select(this).select("i")
|
|
5209
5194
|
.classed("fa-minus-square-o", !clickTarget.classed("property-table-collapsed"))
|
|
5210
5195
|
.classed("fa-plus-square-o", clickTarget.classed("property-table-collapsed"));
|
|
@@ -5370,7 +5355,7 @@ var PropertyEditor = /** @class */ (function (_super) {
|
|
|
5370
5355
|
case "object":
|
|
5371
5356
|
element.property("value", JSON.stringify(val, function replacer(_key, value) {
|
|
5372
5357
|
if (value instanceof Widget) {
|
|
5373
|
-
return serialize
|
|
5358
|
+
return serialize(value);
|
|
5374
5359
|
}
|
|
5375
5360
|
return value;
|
|
5376
5361
|
}, " "));
|
|
@@ -5413,8 +5398,8 @@ PropertyEditor.prototype.widget = function (_) {
|
|
|
5413
5398
|
return retVal;
|
|
5414
5399
|
};
|
|
5415
5400
|
|
|
5416
|
-
var css_248z$
|
|
5417
|
-
styleInject(css_248z$
|
|
5401
|
+
var css_248z$2 = ".other_RadioCheckbox label,.other_RadioCheckbox span{vertical-align:top}";
|
|
5402
|
+
styleInject(css_248z$2);
|
|
5418
5403
|
|
|
5419
5404
|
var RadioCheckbox = /** @class */ (function (_super) {
|
|
5420
5405
|
__extends(RadioCheckbox, _super);
|
|
@@ -5507,7 +5492,6 @@ var RadioCheckbox = /** @class */ (function (_super) {
|
|
|
5507
5492
|
}
|
|
5508
5493
|
};
|
|
5509
5494
|
RadioCheckbox.prototype.click = function (row, column, selected) {
|
|
5510
|
-
console.log("Click: " + JSON.stringify(row) + ", " + column + ", " + selected);
|
|
5511
5495
|
};
|
|
5512
5496
|
return RadioCheckbox;
|
|
5513
5497
|
}(HTMLWidget));
|
|
@@ -5518,8 +5502,8 @@ RadioCheckbox.prototype.publish("textColumn", null, "set", "RadioCheckbox value(
|
|
|
5518
5502
|
RadioCheckbox.prototype.publish("sort", null, "set", "Sort contents", ["", "ascending", "descending"], { optional: true });
|
|
5519
5503
|
RadioCheckbox.prototype.publish("multiple", false, "boolean", "Multiple selection");
|
|
5520
5504
|
|
|
5521
|
-
var css_248z$
|
|
5522
|
-
styleInject(css_248z$
|
|
5505
|
+
var css_248z$1 = ".other_Select label,.other_Select span{vertical-align:top}";
|
|
5506
|
+
styleInject(css_248z$1);
|
|
5523
5507
|
|
|
5524
5508
|
var Select = /** @class */ (function (_super) {
|
|
5525
5509
|
__extends(Select, _super);
|
|
@@ -5599,7 +5583,6 @@ var Select = /** @class */ (function (_super) {
|
|
|
5599
5583
|
_super.prototype.exit.call(this, domNode, element);
|
|
5600
5584
|
};
|
|
5601
5585
|
Select.prototype.click = function (row, column, selected) {
|
|
5602
|
-
console.log("Click: " + JSON.stringify(row) + ", " + column + ", " + selected);
|
|
5603
5586
|
};
|
|
5604
5587
|
return Select;
|
|
5605
5588
|
}(HTMLWidget));
|
|
@@ -5612,8 +5595,8 @@ Select.prototype.publish("sort", null, "set", "Sort contents", ["", "ascending",
|
|
|
5612
5595
|
Select.prototype.publish("multiple", false, "boolean", "Multiple selection");
|
|
5613
5596
|
Select.prototype.publish("selectSize", 5, "number", "Size of multiselect box", null, { disable: function (w) { return !w.multiple(); } });
|
|
5614
5597
|
|
|
5615
|
-
var css_248z
|
|
5616
|
-
styleInject(css_248z
|
|
5598
|
+
var css_248z = ".other_ThemeEditor *{box-sizing:border-box}.other_ThemeEditor table{margin-bottom:4px;width:100%}.other_ThemeEditor table:last-child{margin-bottom:0}.other_ThemeEditor thead>tr>th{text-align:left}.other_ThemeEditor thead>tr>th>b{font-weight:700}.other_ThemeEditor thead>tr>th{background-color:#fafafa}.other_ThemeEditor tbody>tr>td,.other_ThemeEditor tbody>tr>th{background-color:#fafafa;font-weight:400}.other_ThemeEditor thead>tr:first-child>th{background-color:#e5e5e5}.other_ThemeEditor thead>tr.mm-content>th{font-size:12px;padding:0 4px}.other_ThemeEditor td,.other_ThemeEditor th{padding:4px;white-space:nowrap}.other_ThemeEditor thead.mm-label>tr:first-child>th{padding-left:29px;position:relative}.other_ThemeEditor thead.mm-label>tr:first-child>th:before{color:#404040;content:\"[+]\";font-family:monospace;height:15px;left:3px;position:absolute;top:3px;width:15px}.other_ThemeEditor thead.mm-label.max>tr:first-child>th:before{content:\"[-]\"}.other_ThemeEditor tr.sharedPropertyRow>td.label:after{color:#404040;content:\"[+]\";font-family:monospace;height:15px;position:absolute;right:10px;top:3px;width:15px}.other_ThemeEditor tr.sharedPropertyRow>td.label.expanded:after{content:\"[-]\"}.other_ThemeEditor tr.sharedPropertyRow>td.label{padding-right:30px;position:relative;text-decoration:underline}.other_ThemeEditor tr.sharedPropertyRow>td.label:hover{cursor:pointer;text-decoration:none}.other_ThemeEditor tr.propertyRow>td,.other_ThemeEditor tr.propertyRow>th{background-color:#f4f4f4}.other_ThemeEditor tr.propertyRow>td.label{padding-left:24px}.other_ThemeEditor table,.other_ThemeEditor td,.other_ThemeEditor th{border:1px solid #e5e5e5}.other_ThemeEditor .mm-label.min .mm-content,.other_ThemeEditor .mm-label.min+.mm-content{display:none}.mm-label:hover,.other_ThemeEditor .sharedPropertyRow>.te-label{cursor:pointer}.other_ThemeEditor .sharedPropertyRow>.te-label:hover{text-decoration:none}.other_ThemeEditor .propertyRow.shown>.te-label{padding-left:15px}.other_ThemeEditor .propertyRow>td{background-color:#f4f4f4}.other_ThemeEditor input,.other_ThemeEditor select,.other_ThemeEditor textarea{float:left;height:30px}.other_ThemeEditor input,.other_ThemeEditor select{width:150px}.other_ThemeEditor .te-checkbox{height:20px;margin:0;width:20px}.other_ThemeEditor .te-html-color-input{height:30px;width:120px}.other_ThemeEditor .te-html-color-button{width:30px}.other_ThemeEditor .te-html-color-button,.other_ThemeEditor button{background-color:#ccc;border:1px solid #a9a9a9;border-left:0;float:left;height:30px;padding:4px}.other_ThemeEditor .te-html-color-button,.other_ThemeEditor .te-section-table thead,.other_ThemeEditor button{cursor:pointer}.other_ThemeEditor .te-html-color-button:hover,.other_ThemeEditor button:hover{background-color:#bbb}.other_ThemeEditor .te-html-color-button:active,.other_ThemeEditor button:active{background-color:#aaa}.other_ThemeEditor .te-label{vertical-align:top;white-space:nowrap;width:1%}.other_ThemeEditor .te-section-table>tbody>tr:hover{background-color:#f8ff98}.te-section-table thead th{font-weight:700}.te-section-table.expanded>thead>tr>th:after{content:\"\";float:right;font:normal normal normal 14px/1 FontAwesome;margin-right:6px;margin-top:4px}.te-section-table.collapsed>thead>tr>th:after{content:\"\";float:right;font:normal normal normal 14px/1 FontAwesome;margin-right:6px;margin-top:4px}#te-tableModeOptions thead>tr>th,#te-themeEditorOptions thead>tr>th{background-color:#6e6e73;border:1px solid #6e6e73;color:#fafafa}";
|
|
5599
|
+
styleInject(css_248z);
|
|
5617
5600
|
|
|
5618
5601
|
function hasLocalStorage() {
|
|
5619
5602
|
var mod = "@hpcc-js/other";
|