@hpcc-js/other 2.13.78 → 2.14.2
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 +119 -110
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +122 -113
- 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 +9 -25
- package/src/__package__.ts +2 -2
- 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.js
CHANGED
|
@@ -1,12 +1,27 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
2
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@hpcc-js/common'), require('@hpcc-js/layout')) :
|
|
3
3
|
typeof define === 'function' && define.amd ? define(['exports', '@hpcc-js/common', '@hpcc-js/layout'], factory) :
|
|
4
|
-
(global = global || self, factory(global[
|
|
5
|
-
}(this, (function (exports, common, layout) { 'use strict';
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["@hpcc-js/other"] = {}, global["@hpcc-js/common"], global["@hpcc-js/layout"]));
|
|
5
|
+
})(this, (function (exports, common, layout) { 'use strict';
|
|
6
|
+
|
|
7
|
+
function _mergeNamespaces(n, m) {
|
|
8
|
+
m.forEach(function (e) {
|
|
9
|
+
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
10
|
+
if (k !== 'default' && !(k in n)) {
|
|
11
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () { return e[k]; }
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
});
|
|
19
|
+
return Object.freeze(n);
|
|
20
|
+
}
|
|
6
21
|
|
|
7
22
|
var PKG_NAME = "@hpcc-js/other";
|
|
8
|
-
var PKG_VERSION = "2.
|
|
9
|
-
var BUILD_VERSION = "2.
|
|
23
|
+
var PKG_VERSION = "2.14.2";
|
|
24
|
+
var BUILD_VERSION = "2.102.4";
|
|
10
25
|
|
|
11
26
|
/*! *****************************************************************************
|
|
12
27
|
Copyright (c) Microsoft Corporation.
|
|
@@ -220,28 +235,16 @@
|
|
|
220
235
|
Audio.prototype._class += " other_Audio";
|
|
221
236
|
Audio.prototype.publish("source", "", "string", "Audio Source");
|
|
222
237
|
|
|
223
|
-
|
|
224
|
-
return module = {
|
|
225
|
-
path: basedir,
|
|
226
|
-
exports: {},
|
|
227
|
-
require: function (path, base) {
|
|
228
|
-
return commonjsRequire(path, (base === undefined || base === null) ? module.path : base);
|
|
229
|
-
}
|
|
230
|
-
}, fn(module, module.exports), module.exports;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
function commonjsRequire () {
|
|
234
|
-
throw new Error('Dynamic requires are not currently supported by @rollup/plugin-commonjs');
|
|
235
|
-
}
|
|
238
|
+
var autoComplete = {exports: {}};
|
|
236
239
|
|
|
237
|
-
var autoComplete_1 = createCommonjsModule(function (module) {
|
|
238
240
|
/*
|
|
239
|
-
JavaScript autoComplete v1.0.
|
|
241
|
+
JavaScript autoComplete v1.0.5
|
|
240
242
|
Copyright (c) 2014 Simon Steinberger / Pixabay
|
|
241
243
|
GitHub: https://github.com/Pixabay/JavaScript-autoComplete
|
|
242
244
|
License: http://www.opensource.org/licenses/mit-license.php
|
|
243
245
|
*/
|
|
244
246
|
|
|
247
|
+
(function (module) {
|
|
245
248
|
var autoComplete = (function(){
|
|
246
249
|
// "use strict";
|
|
247
250
|
function autoComplete(options){
|
|
@@ -369,9 +372,10 @@
|
|
|
369
372
|
that.sc.innerHTML = s;
|
|
370
373
|
that.updateSC(0);
|
|
371
374
|
}
|
|
372
|
-
else
|
|
375
|
+
else {
|
|
373
376
|
that.sc.style.display = 'none';
|
|
374
377
|
that.sc.classList.add("hide");
|
|
378
|
+
}
|
|
375
379
|
};
|
|
376
380
|
|
|
377
381
|
that.keydownHandler = function(e){
|
|
@@ -473,17 +477,19 @@
|
|
|
473
477
|
})();
|
|
474
478
|
|
|
475
479
|
(function(){
|
|
476
|
-
if (
|
|
480
|
+
if (module.exports)
|
|
477
481
|
module.exports = autoComplete;
|
|
478
482
|
else
|
|
479
483
|
window.autoComplete = autoComplete;
|
|
480
484
|
})();
|
|
481
|
-
});
|
|
485
|
+
}(autoComplete));
|
|
486
|
+
|
|
487
|
+
var autoComplete_1 = autoComplete.exports;
|
|
482
488
|
|
|
483
|
-
var AutoComplete = /*#__PURE__*/
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
})
|
|
489
|
+
var AutoComplete = /*#__PURE__*/_mergeNamespaces({
|
|
490
|
+
__proto__: null,
|
|
491
|
+
'default': autoComplete_1
|
|
492
|
+
}, [autoComplete.exports]);
|
|
487
493
|
|
|
488
494
|
function styleInject(css, ref) {
|
|
489
495
|
if ( ref === void 0 ) ref = {};
|
|
@@ -512,8 +518,8 @@
|
|
|
512
518
|
}
|
|
513
519
|
}
|
|
514
520
|
|
|
515
|
-
var css_248z = ".other_autoCompleteText label{display:inline-block;vertical-align:top}.other_autoCompleteText input{
|
|
516
|
-
styleInject(css_248z);
|
|
521
|
+
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}";
|
|
522
|
+
styleInject(css_248z$c);
|
|
517
523
|
|
|
518
524
|
var AutoCompleteText = /** @class */ (function (_super) {
|
|
519
525
|
__extends(AutoCompleteText, _super);
|
|
@@ -708,12 +714,12 @@
|
|
|
708
714
|
}
|
|
709
715
|
|
|
710
716
|
var sunday = weekday(0);
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
+
weekday(1);
|
|
718
|
+
weekday(2);
|
|
719
|
+
weekday(3);
|
|
720
|
+
weekday(4);
|
|
721
|
+
weekday(5);
|
|
722
|
+
weekday(6);
|
|
717
723
|
|
|
718
724
|
var month = newInterval(function(date) {
|
|
719
725
|
date.setDate(1);
|
|
@@ -749,8 +755,10 @@
|
|
|
749
755
|
});
|
|
750
756
|
};
|
|
751
757
|
|
|
752
|
-
var
|
|
753
|
-
|
|
758
|
+
var d3TimeYear = year;
|
|
759
|
+
|
|
760
|
+
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}";
|
|
761
|
+
styleInject(css_248z$b);
|
|
754
762
|
|
|
755
763
|
var CalendarHeatMap = /** @class */ (function (_super) {
|
|
756
764
|
__extends(CalendarHeatMap, _super);
|
|
@@ -861,7 +869,7 @@
|
|
|
861
869
|
dayRectElement.append("title");
|
|
862
870
|
})
|
|
863
871
|
.merge(dayRect)
|
|
864
|
-
.attr("x", function (d) { return sunday.count(
|
|
872
|
+
.attr("x", function (d) { return sunday.count(d3TimeYear(d), d) * cellSize; })
|
|
865
873
|
.attr("y", function (d) { return d.getDay() * cellSize; })
|
|
866
874
|
.attr("width", cellSize)
|
|
867
875
|
.attr("height", cellSize)
|
|
@@ -895,9 +903,9 @@
|
|
|
895
903
|
function calcMonthPath(t0) {
|
|
896
904
|
var t1 = new Date(t0.getFullYear(), t0.getMonth() + 1, 0);
|
|
897
905
|
var d0 = t0.getDay();
|
|
898
|
-
var w0 = sunday.count(
|
|
906
|
+
var w0 = sunday.count(d3TimeYear(t0), t0);
|
|
899
907
|
var d1 = t1.getDay();
|
|
900
|
-
var w1 = sunday.count(
|
|
908
|
+
var w1 = sunday.count(d3TimeYear(t1), t1);
|
|
901
909
|
return "M" + (w0 + 1) * cellSize + "," + d0 * cellSize +
|
|
902
910
|
"H" + w0 * cellSize + "V" + 7 * cellSize +
|
|
903
911
|
"H" + w1 * cellSize + "V" + (d1 + 1) * cellSize +
|
|
@@ -1111,7 +1119,7 @@
|
|
|
1111
1119
|
this.mapResult(response, key);
|
|
1112
1120
|
}
|
|
1113
1121
|
};
|
|
1114
|
-
var serialize = function (obj) {
|
|
1122
|
+
var serialize$1 = function (obj) {
|
|
1115
1123
|
var str = [];
|
|
1116
1124
|
for (var key in obj) {
|
|
1117
1125
|
if (obj.hasOwnProperty(key)) {
|
|
@@ -1134,7 +1142,7 @@
|
|
|
1134
1142
|
resolve(response);
|
|
1135
1143
|
};
|
|
1136
1144
|
var script = document.createElement("script");
|
|
1137
|
-
script.src = url + (url.indexOf("?") >= 0 ? "&" : "?") + "jsonp=" + callbackName + "&" + serialize(request);
|
|
1145
|
+
script.src = url + (url.indexOf("?") >= 0 ? "&" : "?") + "jsonp=" + callbackName + "&" + serialize$1(request);
|
|
1138
1146
|
document.body.appendChild(script);
|
|
1139
1147
|
var progress = setInterval(function () {
|
|
1140
1148
|
if (respondedTimeout <= 0) {
|
|
@@ -1203,7 +1211,7 @@
|
|
|
1203
1211
|
return new Promise(function (resolve, reject) {
|
|
1204
1212
|
var uri = url;
|
|
1205
1213
|
if (method === "GET" && request) {
|
|
1206
|
-
uri += "?" + serialize(request);
|
|
1214
|
+
uri += "?" + serialize$1(request);
|
|
1207
1215
|
}
|
|
1208
1216
|
var xhr = new XMLHttpRequest();
|
|
1209
1217
|
xhr.onload = function (e) {
|
|
@@ -1224,7 +1232,7 @@
|
|
|
1224
1232
|
}
|
|
1225
1233
|
else {
|
|
1226
1234
|
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
|
|
1227
|
-
xhr.send(serialize(request));
|
|
1235
|
+
xhr.send(serialize$1(request));
|
|
1228
1236
|
}
|
|
1229
1237
|
});
|
|
1230
1238
|
};
|
|
@@ -1266,7 +1274,7 @@
|
|
|
1266
1274
|
return this;
|
|
1267
1275
|
};
|
|
1268
1276
|
Basic.prototype.call = function (request, callback) {
|
|
1269
|
-
var url = this._url + (this._url.indexOf("?") >= 0 ? "&" : "?") + serialize(request);
|
|
1277
|
+
var url = this._url + (this._url.indexOf("?") >= 0 ? "&" : "?") + serialize$1(request);
|
|
1270
1278
|
if (this._cacheCalls) {
|
|
1271
1279
|
var context_1 = this;
|
|
1272
1280
|
return new Promise(function (resolve, reject) {
|
|
@@ -1303,7 +1311,7 @@
|
|
|
1303
1311
|
};
|
|
1304
1312
|
return Basic;
|
|
1305
1313
|
}(Comms));
|
|
1306
|
-
function locateRoxieResponse(response) {
|
|
1314
|
+
function locateRoxieResponse$1(response) {
|
|
1307
1315
|
// v5 and v6 compatible ---
|
|
1308
1316
|
for (var key in response) {
|
|
1309
1317
|
if (response[key].Row && response[key].Row instanceof Array) {
|
|
@@ -1311,7 +1319,7 @@
|
|
|
1311
1319
|
}
|
|
1312
1320
|
var retVal = void 0;
|
|
1313
1321
|
if (typeof (response[key]) !== "string") {
|
|
1314
|
-
retVal = locateRoxieResponse(response[key]);
|
|
1322
|
+
retVal = locateRoxieResponse$1(response[key]);
|
|
1315
1323
|
}
|
|
1316
1324
|
if (retVal) {
|
|
1317
1325
|
return retVal;
|
|
@@ -1397,7 +1405,7 @@
|
|
|
1397
1405
|
pathname: "WsEcl/submit/query/" + target.target + "/" + target.query + "/json"
|
|
1398
1406
|
});
|
|
1399
1407
|
return this.jsonp(url, request).then(function (response) {
|
|
1400
|
-
var _response = locateRoxieResponse(response);
|
|
1408
|
+
var _response = locateRoxieResponse$1(response);
|
|
1401
1409
|
if (!_response) {
|
|
1402
1410
|
_response = locateRoxieException(response);
|
|
1403
1411
|
}
|
|
@@ -1430,7 +1438,7 @@
|
|
|
1430
1438
|
};
|
|
1431
1439
|
return WsECL;
|
|
1432
1440
|
}(Comms));
|
|
1433
|
-
var WsWorkunits = /** @class */ (function (_super) {
|
|
1441
|
+
var WsWorkunits$1 = /** @class */ (function (_super) {
|
|
1434
1442
|
__extends(WsWorkunits, _super);
|
|
1435
1443
|
function WsWorkunits() {
|
|
1436
1444
|
var _this = _super.call(this) || this;
|
|
@@ -1743,7 +1751,7 @@
|
|
|
1743
1751
|
this._resultNameCacheCount = 0;
|
|
1744
1752
|
var context = this;
|
|
1745
1753
|
return this.jsonp(url, request).then(function (response) {
|
|
1746
|
-
var _response = locateRoxieResponse(response);
|
|
1754
|
+
var _response = locateRoxieResponse$1(response);
|
|
1747
1755
|
if (!_response) {
|
|
1748
1756
|
_response = locateRoxieException(response);
|
|
1749
1757
|
}
|
|
@@ -1794,12 +1802,12 @@
|
|
|
1794
1802
|
};
|
|
1795
1803
|
// HIPIEWorkunit ---
|
|
1796
1804
|
function HIPIEWorkunit() {
|
|
1797
|
-
WsWorkunits.call(this);
|
|
1805
|
+
WsWorkunits$1.call(this);
|
|
1798
1806
|
}
|
|
1799
|
-
HIPIEWorkunit.prototype = Object.create(WsWorkunits.prototype);
|
|
1807
|
+
HIPIEWorkunit.prototype = Object.create(WsWorkunits$1.prototype);
|
|
1800
1808
|
HIPIEWorkunit.prototype.fetchResults = function (callback) {
|
|
1801
1809
|
var context = this;
|
|
1802
|
-
return WsWorkunits.prototype.fetchResultNames.call(this).then(function (response) {
|
|
1810
|
+
return WsWorkunits$1.prototype.fetchResultNames.call(this).then(function (response) {
|
|
1803
1811
|
var fetchArray = [];
|
|
1804
1812
|
for (var key in context._hipieResults) {
|
|
1805
1813
|
var item = context._hipieResults[key];
|
|
@@ -1815,7 +1823,7 @@
|
|
|
1815
1823
|
});
|
|
1816
1824
|
};
|
|
1817
1825
|
HIPIEWorkunit.prototype.fetchResult = function (name, callback) {
|
|
1818
|
-
return WsWorkunits.prototype.fetchResult.call(this, { wuid: this._wuid, resultname: name }).then(function (response) {
|
|
1826
|
+
return WsWorkunits$1.prototype.fetchResult.call(this, { wuid: this._wuid, resultname: name }).then(function (response) {
|
|
1819
1827
|
if (callback) {
|
|
1820
1828
|
console.log("Deprecated: callback, use promise (HIPIEWorkunit.prototype.fetchResult)");
|
|
1821
1829
|
callback(response);
|
|
@@ -1912,7 +1920,7 @@
|
|
|
1912
1920
|
.url(url);
|
|
1913
1921
|
}
|
|
1914
1922
|
if (testURL.isWsWorkunits()) {
|
|
1915
|
-
return new WsWorkunits()
|
|
1923
|
+
return new WsWorkunits$1()
|
|
1916
1924
|
.url(url);
|
|
1917
1925
|
}
|
|
1918
1926
|
if (testURL.isWsEcl()) {
|
|
@@ -1932,7 +1940,7 @@
|
|
|
1932
1940
|
Comms: Comms,
|
|
1933
1941
|
Basic: Basic,
|
|
1934
1942
|
WsECL: WsECL,
|
|
1935
|
-
WsWorkunits: WsWorkunits,
|
|
1943
|
+
WsWorkunits: WsWorkunits$1,
|
|
1936
1944
|
createESPConnection: createESPConnection,
|
|
1937
1945
|
hookJsonp: hookJsonp,
|
|
1938
1946
|
HIPIEWorkunit: HIPIEWorkunit,
|
|
@@ -1974,12 +1982,12 @@
|
|
|
1974
1982
|
});
|
|
1975
1983
|
};
|
|
1976
1984
|
// WsWorkunits ---
|
|
1977
|
-
function WsWorkunits
|
|
1985
|
+
function WsWorkunits(baseUrl) {
|
|
1978
1986
|
BasicComms.call(this);
|
|
1979
1987
|
this.url(baseUrl + "WsWorkunits/");
|
|
1980
1988
|
}
|
|
1981
|
-
WsWorkunits
|
|
1982
|
-
WsWorkunits
|
|
1989
|
+
WsWorkunits.prototype = Object.create(BasicComms.prototype);
|
|
1990
|
+
WsWorkunits.prototype.wuQuery = function (options) {
|
|
1983
1991
|
var url = this.getUrl({
|
|
1984
1992
|
pathname: "WsWorkunits/WUQuery.json"
|
|
1985
1993
|
});
|
|
@@ -2255,13 +2263,13 @@
|
|
|
2255
2263
|
return true;
|
|
2256
2264
|
});
|
|
2257
2265
|
}
|
|
2258
|
-
function locateRoxieResponse
|
|
2266
|
+
function locateRoxieResponse(response) {
|
|
2259
2267
|
// v5 and v6 compatible ---
|
|
2260
2268
|
for (var key in response) {
|
|
2261
2269
|
if (response[key].Row && response[key].Row instanceof Array) {
|
|
2262
2270
|
return response;
|
|
2263
2271
|
}
|
|
2264
|
-
var retVal = locateRoxieResponse
|
|
2272
|
+
var retVal = locateRoxieResponse(response[key]);
|
|
2265
2273
|
if (retVal) {
|
|
2266
2274
|
return retVal;
|
|
2267
2275
|
}
|
|
@@ -2280,7 +2288,7 @@
|
|
|
2280
2288
|
}
|
|
2281
2289
|
var context = this;
|
|
2282
2290
|
return this.jsonp(this.url(), request).then(function (response) {
|
|
2283
|
-
response = locateRoxieResponse
|
|
2291
|
+
response = locateRoxieResponse(response);
|
|
2284
2292
|
if (response) {
|
|
2285
2293
|
if (context._resultName) {
|
|
2286
2294
|
if (response && response[context._resultName] && response[context._resultName].Row) {
|
|
@@ -2331,7 +2339,7 @@
|
|
|
2331
2339
|
.url(url);
|
|
2332
2340
|
if (testURL.isWsWorkunits()) {
|
|
2333
2341
|
var espConnection = createESPConnection(url);
|
|
2334
|
-
if (espConnection instanceof WsWorkunits && espConnection.wuid()) {
|
|
2342
|
+
if (espConnection instanceof WsWorkunits$1 && espConnection.wuid()) {
|
|
2335
2343
|
return new Workunit(espConnection.getUrl({ pathname: "" }), espConnection.wuid())
|
|
2336
2344
|
.url(url);
|
|
2337
2345
|
}
|
|
@@ -2370,7 +2378,9 @@
|
|
|
2370
2378
|
return retVal;
|
|
2371
2379
|
}
|
|
2372
2380
|
|
|
2373
|
-
var
|
|
2381
|
+
var simpleheat$1 = {exports: {}};
|
|
2382
|
+
|
|
2383
|
+
(function (module) {
|
|
2374
2384
|
|
|
2375
2385
|
module.exports = simpleheat;
|
|
2376
2386
|
|
|
@@ -2512,12 +2522,14 @@
|
|
|
2512
2522
|
}
|
|
2513
2523
|
}
|
|
2514
2524
|
};
|
|
2515
|
-
});
|
|
2525
|
+
}(simpleheat$1));
|
|
2526
|
+
|
|
2527
|
+
var simpleheat_1 = simpleheat$1.exports;
|
|
2516
2528
|
|
|
2517
|
-
var _simpleheat = /*#__PURE__*/
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
})
|
|
2529
|
+
var _simpleheat = /*#__PURE__*/_mergeNamespaces({
|
|
2530
|
+
__proto__: null,
|
|
2531
|
+
'default': simpleheat_1
|
|
2532
|
+
}, [simpleheat$1.exports]);
|
|
2521
2533
|
|
|
2522
2534
|
var simpleheat = window.simpleheat || (_simpleheat && simpleheat_1) || _simpleheat;
|
|
2523
2535
|
var HeatMap = /** @class */ (function (_super) {
|
|
@@ -2764,8 +2776,8 @@
|
|
|
2764
2776
|
HPCCBadge.prototype._class += " other_HPCCBadge";
|
|
2765
2777
|
HPCCBadge.prototype.publish("animation", "none", "set", "Animation Style", ["none", "accentInOut", "accentIn", "fade_in"]);
|
|
2766
2778
|
|
|
2767
|
-
var css_248z$
|
|
2768
|
-
styleInject(css_248z$
|
|
2779
|
+
var css_248z$a = ".other_Html{height:100%;overflow-x:auto;overflow-y:scroll;width:100%}";
|
|
2780
|
+
styleInject(css_248z$a);
|
|
2769
2781
|
|
|
2770
2782
|
var Html = /** @class */ (function (_super) {
|
|
2771
2783
|
__extends(Html, _super);
|
|
@@ -2796,8 +2808,8 @@
|
|
|
2796
2808
|
Html.prototype.publish("overflowX", null, "set", "CSS overflow-x", ["", "visible", "hidden", "scroll", "auto", "initial", "inherit"], { tags: ["Basic"], optional: true });
|
|
2797
2809
|
Html.prototype.publish("overflowY", null, "set", "CSS overflow-y", ["", "visible", "hidden", "scroll", "auto", "initial", "inherit"], { tags: ["Basic"], optional: true });
|
|
2798
2810
|
|
|
2799
|
-
var css_248z$
|
|
2800
|
-
styleInject(css_248z$
|
|
2811
|
+
var css_248z$9 = ".other_IconList .other_Html{overflow-x:hidden;overflow-y:hidden}";
|
|
2812
|
+
styleInject(css_248z$9);
|
|
2801
2813
|
|
|
2802
2814
|
var IconList = /** @class */ (function (_super) {
|
|
2803
2815
|
__extends(IconList, _super);
|
|
@@ -2846,7 +2858,7 @@
|
|
|
2846
2858
|
IconList.prototype.updateListProperties = function (list, idx) {
|
|
2847
2859
|
return list
|
|
2848
2860
|
.disableScroll(true)
|
|
2849
|
-
.widgetsFlexBasis([this.iconSize() + "px", "calc(100% - "
|
|
2861
|
+
.widgetsFlexBasis([this.iconSize() + "px", "calc(100% - ".concat(this.iconSize(), "px)")]);
|
|
2850
2862
|
};
|
|
2851
2863
|
IconList.prototype.updateEntityProperties = function (entity, idx) {
|
|
2852
2864
|
return entity
|
|
@@ -2863,8 +2875,8 @@
|
|
|
2863
2875
|
IconList.prototype.publish("iconColorColumnIndex", 1, "number", "Index of column containing icon color");
|
|
2864
2876
|
IconList.prototype.publish("htmlColumnIndex", 2, "number", "Index of column containing html string");
|
|
2865
2877
|
|
|
2866
|
-
var css_248z$
|
|
2867
|
-
styleInject(css_248z$
|
|
2878
|
+
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}";
|
|
2879
|
+
styleInject(css_248z$8);
|
|
2868
2880
|
|
|
2869
2881
|
var Paginator = /** @class */ (function (_super) {
|
|
2870
2882
|
__extends(Paginator, _super);
|
|
@@ -2982,8 +2994,8 @@
|
|
|
2982
2994
|
Paginator.prototype.publish("bottom", 20, "number", "Pagination bottom offset", null, { tags: ["Private"] });
|
|
2983
2995
|
Paginator.prototype.publish("right", 20, "number", "Pagination right offset", null, { tags: ["Private"] });
|
|
2984
2996
|
|
|
2985
|
-
var css_248z$
|
|
2986
|
-
styleInject(css_248z$
|
|
2997
|
+
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}";
|
|
2998
|
+
styleInject(css_248z$7);
|
|
2987
2999
|
|
|
2988
3000
|
function replacer(key, value) {
|
|
2989
3001
|
if (value instanceof common.Widget) {
|
|
@@ -3492,8 +3504,6 @@
|
|
|
3492
3504
|
if (!rowsUpdate.empty())
|
|
3493
3505
|
this.setColumnWidths(rowsUpdate);
|
|
3494
3506
|
var box;
|
|
3495
|
-
var newTableHeight;
|
|
3496
|
-
var maxWidth;
|
|
3497
3507
|
if (this.fixedSize()) {
|
|
3498
3508
|
var node = common.select(".tableDiv > table").node();
|
|
3499
3509
|
if (node) {
|
|
@@ -3542,12 +3552,11 @@
|
|
|
3542
3552
|
}
|
|
3543
3553
|
this.setOnScrollEvents(this.tableDiv.node(), tableMarginHeight);
|
|
3544
3554
|
function calcWidth() {
|
|
3545
|
-
|
|
3546
|
-
|
|
3555
|
+
box.width;
|
|
3556
|
+
context.tbody.property("offsetWidth") + 1;
|
|
3547
3557
|
}
|
|
3548
3558
|
function calcHeight() {
|
|
3549
|
-
|
|
3550
|
-
newTableHeight = newTableHeight;
|
|
3559
|
+
context.tbody.property("offsetHeight") + tableMarginHeight;
|
|
3551
3560
|
}
|
|
3552
3561
|
this._paginator.render();
|
|
3553
3562
|
setTimeout(function () {
|
|
@@ -3848,7 +3857,7 @@
|
|
|
3848
3857
|
Table.prototype.publish("sortByFieldIndex", null, "number", "Index for the field/column to sort the data", null, { tags: ["Basic"], optional: true });
|
|
3849
3858
|
Table.prototype.publish("descending", false, "boolean", "Direction for sorting the data: ascending (true) or descending (false)", null, { tags: ["Basic"], optional: true });
|
|
3850
3859
|
|
|
3851
|
-
var css_248z$6 = ".other_Legend .colorBlock{
|
|
3860
|
+
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}";
|
|
3852
3861
|
styleInject(css_248z$6);
|
|
3853
3862
|
|
|
3854
3863
|
function _htmlColorBlock(hexColor) {
|
|
@@ -4040,8 +4049,8 @@
|
|
|
4040
4049
|
return retVal;
|
|
4041
4050
|
};
|
|
4042
4051
|
|
|
4043
|
-
var css_248z$
|
|
4044
|
-
styleInject(css_248z$
|
|
4052
|
+
var css_248z$5 = ".other_MorphText .enter{fill:green}.other_MorphText .update{fill:#333}.other_MorphText .exit{fill:brown}";
|
|
4053
|
+
styleInject(css_248z$5);
|
|
4045
4054
|
|
|
4046
4055
|
var MorphText = /** @class */ (function (_super) {
|
|
4047
4056
|
__extends(MorphText, _super);
|
|
@@ -4169,8 +4178,8 @@
|
|
|
4169
4178
|
return origData.apply(this, arguments);
|
|
4170
4179
|
};
|
|
4171
4180
|
|
|
4172
|
-
var css_248z$
|
|
4173
|
-
styleInject(css_248z$
|
|
4181
|
+
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}";
|
|
4182
|
+
styleInject(css_248z$4);
|
|
4174
4183
|
|
|
4175
4184
|
var Column = /** @class */ (function (_super) {
|
|
4176
4185
|
__extends(Column, _super);
|
|
@@ -4748,7 +4757,7 @@
|
|
|
4748
4757
|
}
|
|
4749
4758
|
return retVal;
|
|
4750
4759
|
}
|
|
4751
|
-
function serialize
|
|
4760
|
+
function serialize(widget, filter, includeData, includeState) {
|
|
4752
4761
|
return JSON.stringify(serializeToObject(widget, filter, includeData, includeState));
|
|
4753
4762
|
}
|
|
4754
4763
|
|
|
@@ -4762,11 +4771,11 @@
|
|
|
4762
4771
|
removeTheme: removeTheme,
|
|
4763
4772
|
applyTheme: applyTheme,
|
|
4764
4773
|
serializeToObject: serializeToObject,
|
|
4765
|
-
serialize: serialize
|
|
4774
|
+
serialize: serialize
|
|
4766
4775
|
});
|
|
4767
4776
|
|
|
4768
|
-
var css_248z$
|
|
4769
|
-
styleInject(css_248z$
|
|
4777
|
+
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%}";
|
|
4778
|
+
styleInject(css_248z$3);
|
|
4770
4779
|
|
|
4771
4780
|
function hasProperties(type) {
|
|
4772
4781
|
switch (type) {
|
|
@@ -4835,15 +4844,15 @@
|
|
|
4835
4844
|
}
|
|
4836
4845
|
return true;
|
|
4837
4846
|
});
|
|
4838
|
-
var table = element.selectAll("table.property-table.table-"
|
|
4847
|
+
var table = element.selectAll("table.property-table.table-".concat(this.depth())).data(rootWidgets, function (d) {
|
|
4839
4848
|
// We reuse the existing DOM Nodes and this node _might_ have been a regular Input previously ---
|
|
4840
4849
|
if (typeof d.id !== "function") {
|
|
4841
|
-
return "meta-"
|
|
4850
|
+
return "meta-".concat(d.id);
|
|
4842
4851
|
}
|
|
4843
4852
|
return d.id();
|
|
4844
4853
|
});
|
|
4845
4854
|
table.enter().append("table")
|
|
4846
|
-
.attr("class", "property-table table-"
|
|
4855
|
+
.attr("class", "property-table table-".concat(this.depth()))
|
|
4847
4856
|
.each(function () {
|
|
4848
4857
|
var tableElement = common.select(this);
|
|
4849
4858
|
// Header ---
|
|
@@ -4909,16 +4918,16 @@
|
|
|
4909
4918
|
switch (context.peInputIcon()) {
|
|
4910
4919
|
case "fa-caret-up":
|
|
4911
4920
|
case "fa-caret-right":
|
|
4912
|
-
context.element().selectAll(".table-"
|
|
4921
|
+
context.element().selectAll(".table-".concat(context.depth(), " > tbody > tr > .headerRow > .peInput > .property-table-collapsed"))
|
|
4913
4922
|
.classed("property-table-collapsed", false);
|
|
4914
|
-
context.element().selectAll(".table-"
|
|
4923
|
+
context.element().selectAll(".table-".concat(context.depth(), " > tbody > tr > .headerRow > .peInput > i"))
|
|
4915
4924
|
.classed("fa-minus-square-o", true)
|
|
4916
4925
|
.classed("fa-plus-square-o", false);
|
|
4917
4926
|
break;
|
|
4918
4927
|
case "fa-caret-down":
|
|
4919
|
-
context.element().selectAll(".table-"
|
|
4928
|
+
context.element().selectAll(".table-".concat(context.depth(), " > tbody > tr > .headerRow > .peInput > div"))
|
|
4920
4929
|
.classed("property-table-collapsed", true);
|
|
4921
|
-
context.element().selectAll(".table-"
|
|
4930
|
+
context.element().selectAll(".table-".concat(context.depth(), " > tbody > tr > .headerRow > .peInput > i"))
|
|
4922
4931
|
.classed("fa-minus-square-o", false)
|
|
4923
4932
|
.classed("fa-plus-square-o", true);
|
|
4924
4933
|
break;
|
|
@@ -4957,10 +4966,10 @@
|
|
|
4957
4966
|
this.refreshHideParamsIcon(th.select(".hideParamsIcon"));
|
|
4958
4967
|
};
|
|
4959
4968
|
PropertyEditor.prototype.peInputCount = function () {
|
|
4960
|
-
return this.element().selectAll(".table-"
|
|
4969
|
+
return this.element().selectAll(".table-".concat(this.depth(), " > tbody > tr > .headerRow > .peInput > div")).size();
|
|
4961
4970
|
};
|
|
4962
4971
|
PropertyEditor.prototype.peInputCollapsedCount = function () {
|
|
4963
|
-
return this.element().selectAll(".table-"
|
|
4972
|
+
return this.element().selectAll(".table-".concat(this.depth(), " > tbody > tr > .headerRow > .peInput > div.property-table-collapsed")).size();
|
|
4964
4973
|
};
|
|
4965
4974
|
PropertyEditor.prototype.peInputIcon = function () {
|
|
4966
4975
|
var collapsed = this.peInputCollapsedCount();
|
|
@@ -4974,7 +4983,7 @@
|
|
|
4974
4983
|
};
|
|
4975
4984
|
PropertyEditor.prototype.refreshExpandIcon = function () {
|
|
4976
4985
|
var newIcon = this.peInputIcon();
|
|
4977
|
-
this.element().select(".table-"
|
|
4986
|
+
this.element().select(".table-".concat(this.depth(), " > thead > tr > th > .expandIcon"))
|
|
4978
4987
|
.classed("fa-caret-up", false)
|
|
4979
4988
|
.classed("fa-caret-right", false)
|
|
4980
4989
|
.classed("fa-caret-down", false)
|
|
@@ -5179,9 +5188,9 @@
|
|
|
5179
5188
|
}
|
|
5180
5189
|
var context = this;
|
|
5181
5190
|
element.classed("headerRow", true);
|
|
5182
|
-
var peInput = element.selectAll("div.peInput-"
|
|
5191
|
+
var peInput = element.selectAll("div.peInput-".concat(this.depth())).data(widgetArr, function (d) { return d.id(); });
|
|
5183
5192
|
peInput.enter().append("div")
|
|
5184
|
-
.attr("class", "peInput peInput-"
|
|
5193
|
+
.attr("class", "peInput peInput-".concat(this.depth()))
|
|
5185
5194
|
.each(function (w) {
|
|
5186
5195
|
var peInputElement = common.select(this);
|
|
5187
5196
|
// Header ---
|
|
@@ -5207,7 +5216,7 @@
|
|
|
5207
5216
|
var clickTarget = peInputElement.select("div");
|
|
5208
5217
|
// Header ---
|
|
5209
5218
|
common.select(this).select("span")
|
|
5210
|
-
.text(""
|
|
5219
|
+
.text("".concat(param.id));
|
|
5211
5220
|
common.select(this).select("i")
|
|
5212
5221
|
.classed("fa-minus-square-o", !clickTarget.classed("property-table-collapsed"))
|
|
5213
5222
|
.classed("fa-plus-square-o", clickTarget.classed("property-table-collapsed"));
|
|
@@ -5373,7 +5382,7 @@
|
|
|
5373
5382
|
case "object":
|
|
5374
5383
|
element.property("value", JSON.stringify(val, function replacer(_key, value) {
|
|
5375
5384
|
if (value instanceof common.Widget) {
|
|
5376
|
-
return serialize
|
|
5385
|
+
return serialize(value);
|
|
5377
5386
|
}
|
|
5378
5387
|
return value;
|
|
5379
5388
|
}, " "));
|
|
@@ -5416,8 +5425,8 @@
|
|
|
5416
5425
|
return retVal;
|
|
5417
5426
|
};
|
|
5418
5427
|
|
|
5419
|
-
var css_248z$
|
|
5420
|
-
styleInject(css_248z$
|
|
5428
|
+
var css_248z$2 = ".other_RadioCheckbox label,.other_RadioCheckbox span{vertical-align:top}";
|
|
5429
|
+
styleInject(css_248z$2);
|
|
5421
5430
|
|
|
5422
5431
|
var RadioCheckbox = /** @class */ (function (_super) {
|
|
5423
5432
|
__extends(RadioCheckbox, _super);
|
|
@@ -5521,8 +5530,8 @@
|
|
|
5521
5530
|
RadioCheckbox.prototype.publish("sort", null, "set", "Sort contents", ["", "ascending", "descending"], { optional: true });
|
|
5522
5531
|
RadioCheckbox.prototype.publish("multiple", false, "boolean", "Multiple selection");
|
|
5523
5532
|
|
|
5524
|
-
var css_248z$
|
|
5525
|
-
styleInject(css_248z$
|
|
5533
|
+
var css_248z$1 = ".other_Select label,.other_Select span{vertical-align:top}";
|
|
5534
|
+
styleInject(css_248z$1);
|
|
5526
5535
|
|
|
5527
5536
|
var Select = /** @class */ (function (_super) {
|
|
5528
5537
|
__extends(Select, _super);
|
|
@@ -5615,8 +5624,8 @@
|
|
|
5615
5624
|
Select.prototype.publish("multiple", false, "boolean", "Multiple selection");
|
|
5616
5625
|
Select.prototype.publish("selectSize", 5, "number", "Size of multiselect box", null, { disable: function (w) { return !w.multiple(); } });
|
|
5617
5626
|
|
|
5618
|
-
var css_248z
|
|
5619
|
-
styleInject(css_248z
|
|
5627
|
+
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}";
|
|
5628
|
+
styleInject(css_248z);
|
|
5620
5629
|
|
|
5621
5630
|
function hasLocalStorage() {
|
|
5622
5631
|
var mod = "@hpcc-js/other";
|
|
@@ -6344,5 +6353,5 @@
|
|
|
6344
6353
|
|
|
6345
6354
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
6346
6355
|
|
|
6347
|
-
}))
|
|
6356
|
+
}));
|
|
6348
6357
|
//# sourceMappingURL=index.js.map
|