toggle-components-library 1.25.0 → 1.25.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/toggle-components-library.common.js +438 -841
- package/dist/toggle-components-library.common.js.map +1 -1
- package/dist/toggle-components-library.css +1 -1
- package/dist/toggle-components-library.umd.js +438 -841
- package/dist/toggle-components-library.umd.js.map +1 -1
- package/dist/toggle-components-library.umd.min.js +6 -6
- package/dist/toggle-components-library.umd.min.js.map +1 -1
- package/package-lock.json +20762 -0
- package/package.json +1 -1
- package/src/components/forms/ToggleInputText.vue +6 -6
- package/src/components/json/char_list.json +2233 -0
- package/src/components/metrics/ToggleMetricSparkLine.vue +1 -1
- package/src/components/mixins/mixins.js +18 -1
- package/src/.DS_Store +0 -0
|
@@ -90,11 +90,11 @@ module.exports =
|
|
|
90
90
|
/***/ "04f8":
|
|
91
91
|
/***/ (function(module, exports, __webpack_require__) {
|
|
92
92
|
|
|
93
|
-
/* eslint-disable es
|
|
93
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
94
94
|
var V8_VERSION = __webpack_require__("2d00");
|
|
95
95
|
var fails = __webpack_require__("d039");
|
|
96
96
|
|
|
97
|
-
// eslint-disable-next-line es
|
|
97
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
98
98
|
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
99
99
|
var symbol = Symbol();
|
|
100
100
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
@@ -119,7 +119,7 @@ var toPropertyKey = __webpack_require__("a04b");
|
|
|
119
119
|
var hasOwn = __webpack_require__("1a2d");
|
|
120
120
|
var IE8_DOM_DEFINE = __webpack_require__("0cfb");
|
|
121
121
|
|
|
122
|
-
// eslint-disable-next-line es
|
|
122
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
123
123
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
124
124
|
|
|
125
125
|
// `Object.getOwnPropertyDescriptor` method
|
|
@@ -191,7 +191,7 @@ var createElement = __webpack_require__("cc12");
|
|
|
191
191
|
|
|
192
192
|
// Thanks to IE8 for its funny defineProperty
|
|
193
193
|
module.exports = !DESCRIPTORS && !fails(function () {
|
|
194
|
-
// eslint-disable-next-line es
|
|
194
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
195
195
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
196
196
|
get: function () { return 7; }
|
|
197
197
|
}).a != 7;
|
|
@@ -560,7 +560,7 @@ var InternalStateModule = __webpack_require__("69f3");
|
|
|
560
560
|
|
|
561
561
|
var enforceInternalState = InternalStateModule.enforce;
|
|
562
562
|
var getInternalState = InternalStateModule.get;
|
|
563
|
-
// eslint-disable-next-line es
|
|
563
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
564
564
|
var defineProperty = Object.defineProperty;
|
|
565
565
|
|
|
566
566
|
var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
|
|
@@ -601,14 +601,68 @@ Function.prototype.toString = makeBuiltIn(function toString() {
|
|
|
601
601
|
}, 'toString');
|
|
602
602
|
|
|
603
603
|
|
|
604
|
+
/***/ }),
|
|
605
|
+
|
|
606
|
+
/***/ "14d9":
|
|
607
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
608
|
+
|
|
609
|
+
"use strict";
|
|
610
|
+
|
|
611
|
+
var $ = __webpack_require__("23e7");
|
|
612
|
+
var toObject = __webpack_require__("7b0b");
|
|
613
|
+
var lengthOfArrayLike = __webpack_require__("07fa");
|
|
614
|
+
var setArrayLength = __webpack_require__("3a34");
|
|
615
|
+
var doesNotExceedSafeInteger = __webpack_require__("3511");
|
|
616
|
+
var fails = __webpack_require__("d039");
|
|
617
|
+
|
|
618
|
+
var INCORRECT_TO_LENGTH = fails(function () {
|
|
619
|
+
return [].push.call({ length: 0x100000000 }, 1) !== 4294967297;
|
|
620
|
+
});
|
|
621
|
+
|
|
622
|
+
// V8 and Safari <= 15.4, FF < 23 throws InternalError
|
|
623
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=12681
|
|
624
|
+
var SILENT_ON_NON_WRITABLE_LENGTH = !function () {
|
|
625
|
+
try {
|
|
626
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
627
|
+
Object.defineProperty([], 'length', { writable: false }).push();
|
|
628
|
+
} catch (error) {
|
|
629
|
+
return error instanceof TypeError;
|
|
630
|
+
}
|
|
631
|
+
}();
|
|
632
|
+
|
|
633
|
+
// `Array.prototype.push` method
|
|
634
|
+
// https://tc39.es/ecma262/#sec-array.prototype.push
|
|
635
|
+
$({ target: 'Array', proto: true, arity: 1, forced: INCORRECT_TO_LENGTH || SILENT_ON_NON_WRITABLE_LENGTH }, {
|
|
636
|
+
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
|
637
|
+
push: function push(item) {
|
|
638
|
+
var O = toObject(this);
|
|
639
|
+
var len = lengthOfArrayLike(O);
|
|
640
|
+
var argCount = arguments.length;
|
|
641
|
+
doesNotExceedSafeInteger(len + argCount);
|
|
642
|
+
for (var i = 0; i < argCount; i++) {
|
|
643
|
+
O[len] = arguments[i];
|
|
644
|
+
len++;
|
|
645
|
+
}
|
|
646
|
+
setArrayLength(O, len);
|
|
647
|
+
return len;
|
|
648
|
+
}
|
|
649
|
+
});
|
|
650
|
+
|
|
651
|
+
|
|
604
652
|
/***/ }),
|
|
605
653
|
|
|
606
654
|
/***/ "1626":
|
|
607
|
-
/***/ (function(module, exports) {
|
|
655
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
656
|
+
|
|
657
|
+
var $documentAll = __webpack_require__("8ea1");
|
|
658
|
+
|
|
659
|
+
var documentAll = $documentAll.all;
|
|
608
660
|
|
|
609
661
|
// `IsCallable` abstract operation
|
|
610
662
|
// https://tc39.es/ecma262/#sec-iscallable
|
|
611
|
-
module.exports = function (argument) {
|
|
663
|
+
module.exports = $documentAll.IS_HTMLDDA ? function (argument) {
|
|
664
|
+
return typeof argument == 'function' || argument === documentAll;
|
|
665
|
+
} : function (argument) {
|
|
612
666
|
return typeof argument == 'function';
|
|
613
667
|
};
|
|
614
668
|
|
|
@@ -625,22 +679,12 @@ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
|
|
|
625
679
|
|
|
626
680
|
// `HasOwnProperty` abstract operation
|
|
627
681
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
628
|
-
// eslint-disable-next-line es
|
|
682
|
+
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
629
683
|
module.exports = Object.hasOwn || function hasOwn(it, key) {
|
|
630
684
|
return hasOwnProperty(toObject(it), key);
|
|
631
685
|
};
|
|
632
686
|
|
|
633
687
|
|
|
634
|
-
/***/ }),
|
|
635
|
-
|
|
636
|
-
/***/ "1be4":
|
|
637
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
638
|
-
|
|
639
|
-
var getBuiltIn = __webpack_require__("d066");
|
|
640
|
-
|
|
641
|
-
module.exports = getBuiltIn('document', 'documentElement');
|
|
642
|
-
|
|
643
|
-
|
|
644
688
|
/***/ }),
|
|
645
689
|
|
|
646
690
|
/***/ "1d80":
|
|
@@ -773,7 +817,7 @@ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
|
|
773
817
|
|
|
774
818
|
// `Object.getOwnPropertyNames` method
|
|
775
819
|
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
776
|
-
// eslint-disable-next-line es
|
|
820
|
+
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
777
821
|
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
778
822
|
return internalObjectKeys(O, hiddenKeys);
|
|
779
823
|
};
|
|
@@ -989,28 +1033,15 @@ module.exports = getBuiltIn('navigator', 'userAgent') || '';
|
|
|
989
1033
|
|
|
990
1034
|
/***/ }),
|
|
991
1035
|
|
|
992
|
-
/***/ "
|
|
993
|
-
/***/ (function(module, exports
|
|
1036
|
+
/***/ "3511":
|
|
1037
|
+
/***/ (function(module, exports) {
|
|
994
1038
|
|
|
995
|
-
var
|
|
996
|
-
var
|
|
997
|
-
var definePropertyModule = __webpack_require__("9bf2");
|
|
998
|
-
var anObject = __webpack_require__("825a");
|
|
999
|
-
var toIndexedObject = __webpack_require__("fc6a");
|
|
1000
|
-
var objectKeys = __webpack_require__("df75");
|
|
1039
|
+
var $TypeError = TypeError;
|
|
1040
|
+
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
|
|
1001
1041
|
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
1006
|
-
anObject(O);
|
|
1007
|
-
var props = toIndexedObject(Properties);
|
|
1008
|
-
var keys = objectKeys(Properties);
|
|
1009
|
-
var length = keys.length;
|
|
1010
|
-
var index = 0;
|
|
1011
|
-
var key;
|
|
1012
|
-
while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
|
|
1013
|
-
return O;
|
|
1042
|
+
module.exports = function (it) {
|
|
1043
|
+
if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
|
|
1044
|
+
return it;
|
|
1014
1045
|
};
|
|
1015
1046
|
|
|
1016
1047
|
|
|
@@ -1057,6 +1088,41 @@ function setMonth (dirtyDate, dirtyMonth) {
|
|
|
1057
1088
|
module.exports = setMonth
|
|
1058
1089
|
|
|
1059
1090
|
|
|
1091
|
+
/***/ }),
|
|
1092
|
+
|
|
1093
|
+
/***/ "3a34":
|
|
1094
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1095
|
+
|
|
1096
|
+
"use strict";
|
|
1097
|
+
|
|
1098
|
+
var DESCRIPTORS = __webpack_require__("83ab");
|
|
1099
|
+
var isArray = __webpack_require__("e8b5");
|
|
1100
|
+
|
|
1101
|
+
var $TypeError = TypeError;
|
|
1102
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1103
|
+
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
1104
|
+
|
|
1105
|
+
// Safari < 13 does not throw an error in this case
|
|
1106
|
+
var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
|
|
1107
|
+
// makes no sense without proper strict mode support
|
|
1108
|
+
if (this !== undefined) return true;
|
|
1109
|
+
try {
|
|
1110
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1111
|
+
Object.defineProperty([], 'length', { writable: false }).length = 1;
|
|
1112
|
+
} catch (error) {
|
|
1113
|
+
return error instanceof TypeError;
|
|
1114
|
+
}
|
|
1115
|
+
}();
|
|
1116
|
+
|
|
1117
|
+
module.exports = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
|
|
1118
|
+
if (isArray(O) && !getOwnPropertyDescriptor(O, 'length').writable) {
|
|
1119
|
+
throw $TypeError('Cannot set read only .length');
|
|
1120
|
+
} return O.length = length;
|
|
1121
|
+
} : function (O, length) {
|
|
1122
|
+
return O.length = length;
|
|
1123
|
+
};
|
|
1124
|
+
|
|
1125
|
+
|
|
1060
1126
|
/***/ }),
|
|
1061
1127
|
|
|
1062
1128
|
/***/ "3a9b":
|
|
@@ -1097,7 +1163,7 @@ function(){function t(t){t.remember("_draggable",this),this.el=t}t.prototype.ini
|
|
|
1097
1163
|
var fails = __webpack_require__("d039");
|
|
1098
1164
|
|
|
1099
1165
|
module.exports = !fails(function () {
|
|
1100
|
-
// eslint-disable-next-line es
|
|
1166
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
1101
1167
|
var test = (function () { /* empty */ }).bind();
|
|
1102
1168
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
1103
1169
|
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
@@ -1165,33 +1231,6 @@ module.exports = fails(function () {
|
|
|
1165
1231
|
} : $Object;
|
|
1166
1232
|
|
|
1167
1233
|
|
|
1168
|
-
/***/ }),
|
|
1169
|
-
|
|
1170
|
-
/***/ "44d2":
|
|
1171
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
1172
|
-
|
|
1173
|
-
var wellKnownSymbol = __webpack_require__("b622");
|
|
1174
|
-
var create = __webpack_require__("7c73");
|
|
1175
|
-
var defineProperty = __webpack_require__("9bf2").f;
|
|
1176
|
-
|
|
1177
|
-
var UNSCOPABLES = wellKnownSymbol('unscopables');
|
|
1178
|
-
var ArrayPrototype = Array.prototype;
|
|
1179
|
-
|
|
1180
|
-
// Array.prototype[@@unscopables]
|
|
1181
|
-
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
1182
|
-
if (ArrayPrototype[UNSCOPABLES] == undefined) {
|
|
1183
|
-
defineProperty(ArrayPrototype, UNSCOPABLES, {
|
|
1184
|
-
configurable: true,
|
|
1185
|
-
value: create(null)
|
|
1186
|
-
});
|
|
1187
|
-
}
|
|
1188
|
-
|
|
1189
|
-
// add a key to Array.prototype[@@unscopables]
|
|
1190
|
-
module.exports = function (key) {
|
|
1191
|
-
ArrayPrototype[UNSCOPABLES][key] = true;
|
|
1192
|
-
};
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
1234
|
/***/ }),
|
|
1196
1235
|
|
|
1197
1236
|
/***/ "485a":
|
|
@@ -1361,10 +1400,10 @@ var store = __webpack_require__("c6cd");
|
|
|
1361
1400
|
(module.exports = function (key, value) {
|
|
1362
1401
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
1363
1402
|
})('versions', []).push({
|
|
1364
|
-
version: '3.25.
|
|
1403
|
+
version: '3.25.5',
|
|
1365
1404
|
mode: IS_PURE ? 'pure' : 'global',
|
|
1366
1405
|
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
1367
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.25.
|
|
1406
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.25.5/LICENSE',
|
|
1368
1407
|
source: 'https://github.com/zloirock/core-js'
|
|
1369
1408
|
});
|
|
1370
1409
|
|
|
@@ -1517,7 +1556,7 @@ var DESCRIPTORS = __webpack_require__("83ab");
|
|
|
1517
1556
|
var hasOwn = __webpack_require__("1a2d");
|
|
1518
1557
|
|
|
1519
1558
|
var FunctionPrototype = Function.prototype;
|
|
1520
|
-
// eslint-disable-next-line es
|
|
1559
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1521
1560
|
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
1522
1561
|
|
|
1523
1562
|
var EXISTS = hasOwn(FunctionPrototype, 'name');
|
|
@@ -1539,7 +1578,7 @@ module.exports = {
|
|
|
1539
1578
|
|
|
1540
1579
|
var global = __webpack_require__("da84");
|
|
1541
1580
|
|
|
1542
|
-
// eslint-disable-next-line es
|
|
1581
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1543
1582
|
var defineProperty = Object.defineProperty;
|
|
1544
1583
|
|
|
1545
1584
|
module.exports = function (key, value) {
|
|
@@ -1599,7 +1638,6 @@ module.exports = addMonths
|
|
|
1599
1638
|
|
|
1600
1639
|
var NATIVE_WEAK_MAP = __webpack_require__("cdce");
|
|
1601
1640
|
var global = __webpack_require__("da84");
|
|
1602
|
-
var uncurryThis = __webpack_require__("e330");
|
|
1603
1641
|
var isObject = __webpack_require__("861d");
|
|
1604
1642
|
var createNonEnumerableProperty = __webpack_require__("9112");
|
|
1605
1643
|
var hasOwn = __webpack_require__("1a2d");
|
|
@@ -1627,20 +1665,22 @@ var getterFor = function (TYPE) {
|
|
|
1627
1665
|
|
|
1628
1666
|
if (NATIVE_WEAK_MAP || shared.state) {
|
|
1629
1667
|
var store = shared.state || (shared.state = new WeakMap());
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1668
|
+
/* eslint-disable no-self-assign -- prototype methods protection */
|
|
1669
|
+
store.get = store.get;
|
|
1670
|
+
store.has = store.has;
|
|
1671
|
+
store.set = store.set;
|
|
1672
|
+
/* eslint-enable no-self-assign -- prototype methods protection */
|
|
1633
1673
|
set = function (it, metadata) {
|
|
1634
|
-
if (
|
|
1674
|
+
if (store.has(it)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
1635
1675
|
metadata.facade = it;
|
|
1636
|
-
|
|
1676
|
+
store.set(it, metadata);
|
|
1637
1677
|
return metadata;
|
|
1638
1678
|
};
|
|
1639
1679
|
get = function (it) {
|
|
1640
|
-
return
|
|
1680
|
+
return store.get(it) || {};
|
|
1641
1681
|
};
|
|
1642
1682
|
has = function (it) {
|
|
1643
|
-
return
|
|
1683
|
+
return store.has(it);
|
|
1644
1684
|
};
|
|
1645
1685
|
} else {
|
|
1646
1686
|
var STATE = sharedKey('state');
|
|
@@ -2083,7 +2123,7 @@ module.exports = getMonth
|
|
|
2083
2123
|
/***/ "7418":
|
|
2084
2124
|
/***/ (function(module, exports) {
|
|
2085
2125
|
|
|
2086
|
-
// eslint-disable-next-line es
|
|
2126
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
2087
2127
|
exports.f = Object.getOwnPropertySymbols;
|
|
2088
2128
|
|
|
2089
2129
|
|
|
@@ -2199,91 +2239,19 @@ module.exports = function (argument) {
|
|
|
2199
2239
|
|
|
2200
2240
|
/***/ }),
|
|
2201
2241
|
|
|
2202
|
-
/***/ "
|
|
2242
|
+
/***/ "7d7e":
|
|
2203
2243
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2204
2244
|
|
|
2205
|
-
|
|
2206
|
-
var anObject = __webpack_require__("825a");
|
|
2207
|
-
var definePropertiesModule = __webpack_require__("37e8");
|
|
2208
|
-
var enumBugKeys = __webpack_require__("7839");
|
|
2209
|
-
var hiddenKeys = __webpack_require__("d012");
|
|
2210
|
-
var html = __webpack_require__("1be4");
|
|
2211
|
-
var documentCreateElement = __webpack_require__("cc12");
|
|
2212
|
-
var sharedKey = __webpack_require__("f772");
|
|
2213
|
-
|
|
2214
|
-
var GT = '>';
|
|
2215
|
-
var LT = '<';
|
|
2216
|
-
var PROTOTYPE = 'prototype';
|
|
2217
|
-
var SCRIPT = 'script';
|
|
2218
|
-
var IE_PROTO = sharedKey('IE_PROTO');
|
|
2219
|
-
|
|
2220
|
-
var EmptyConstructor = function () { /* empty */ };
|
|
2221
|
-
|
|
2222
|
-
var scriptTag = function (content) {
|
|
2223
|
-
return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
|
|
2224
|
-
};
|
|
2225
|
-
|
|
2226
|
-
// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
|
|
2227
|
-
var NullProtoObjectViaActiveX = function (activeXDocument) {
|
|
2228
|
-
activeXDocument.write(scriptTag(''));
|
|
2229
|
-
activeXDocument.close();
|
|
2230
|
-
var temp = activeXDocument.parentWindow.Object;
|
|
2231
|
-
activeXDocument = null; // avoid memory leak
|
|
2232
|
-
return temp;
|
|
2233
|
-
};
|
|
2234
|
-
|
|
2235
|
-
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
|
2236
|
-
var NullProtoObjectViaIFrame = function () {
|
|
2237
|
-
// Thrash, waste and sodomy: IE GC bug
|
|
2238
|
-
var iframe = documentCreateElement('iframe');
|
|
2239
|
-
var JS = 'java' + SCRIPT + ':';
|
|
2240
|
-
var iframeDocument;
|
|
2241
|
-
iframe.style.display = 'none';
|
|
2242
|
-
html.appendChild(iframe);
|
|
2243
|
-
// https://github.com/zloirock/core-js/issues/475
|
|
2244
|
-
iframe.src = String(JS);
|
|
2245
|
-
iframeDocument = iframe.contentWindow.document;
|
|
2246
|
-
iframeDocument.open();
|
|
2247
|
-
iframeDocument.write(scriptTag('document.F=Object'));
|
|
2248
|
-
iframeDocument.close();
|
|
2249
|
-
return iframeDocument.F;
|
|
2250
|
-
};
|
|
2251
|
-
|
|
2252
|
-
// Check for document.domain and active x support
|
|
2253
|
-
// No need to use active x approach when document.domain is not set
|
|
2254
|
-
// see https://github.com/es-shims/es5-shim/issues/150
|
|
2255
|
-
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
|
|
2256
|
-
// avoid IE GC bug
|
|
2257
|
-
var activeXDocument;
|
|
2258
|
-
var NullProtoObject = function () {
|
|
2259
|
-
try {
|
|
2260
|
-
activeXDocument = new ActiveXObject('htmlfile');
|
|
2261
|
-
} catch (error) { /* ignore */ }
|
|
2262
|
-
NullProtoObject = typeof document != 'undefined'
|
|
2263
|
-
? document.domain && activeXDocument
|
|
2264
|
-
? NullProtoObjectViaActiveX(activeXDocument) // old IE
|
|
2265
|
-
: NullProtoObjectViaIFrame()
|
|
2266
|
-
: NullProtoObjectViaActiveX(activeXDocument); // WSH
|
|
2267
|
-
var length = enumBugKeys.length;
|
|
2268
|
-
while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
|
|
2269
|
-
return NullProtoObject();
|
|
2270
|
-
};
|
|
2245
|
+
var NATIVE_BIND = __webpack_require__("40d5");
|
|
2271
2246
|
|
|
2272
|
-
|
|
2247
|
+
var FunctionPrototype = Function.prototype;
|
|
2248
|
+
var call = FunctionPrototype.call;
|
|
2249
|
+
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
|
|
2273
2250
|
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
var result;
|
|
2279
|
-
if (O !== null) {
|
|
2280
|
-
EmptyConstructor[PROTOTYPE] = anObject(O);
|
|
2281
|
-
result = new EmptyConstructor();
|
|
2282
|
-
EmptyConstructor[PROTOTYPE] = null;
|
|
2283
|
-
// add "__proto__" for Object.getPrototypeOf polyfill
|
|
2284
|
-
result[IE_PROTO] = O;
|
|
2285
|
-
} else result = NullProtoObject();
|
|
2286
|
-
return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
|
|
2251
|
+
module.exports = function (fn) {
|
|
2252
|
+
return NATIVE_BIND ? uncurryThisWithBind(fn) : function () {
|
|
2253
|
+
return call.apply(fn, arguments);
|
|
2254
|
+
};
|
|
2287
2255
|
};
|
|
2288
2256
|
|
|
2289
2257
|
|
|
@@ -2405,7 +2373,7 @@ var fails = __webpack_require__("d039");
|
|
|
2405
2373
|
|
|
2406
2374
|
// Detect IE8's incomplete defineProperty implementation
|
|
2407
2375
|
module.exports = !fails(function () {
|
|
2408
|
-
// eslint-disable-next-line es
|
|
2376
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
2409
2377
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
|
2410
2378
|
});
|
|
2411
2379
|
|
|
@@ -2416,13 +2384,11 @@ module.exports = !fails(function () {
|
|
|
2416
2384
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2417
2385
|
|
|
2418
2386
|
var isCallable = __webpack_require__("1626");
|
|
2387
|
+
var $documentAll = __webpack_require__("8ea1");
|
|
2419
2388
|
|
|
2420
|
-
var documentAll =
|
|
2421
|
-
|
|
2422
|
-
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
2423
|
-
var SPECIAL_DOCUMENT_ALL = typeof documentAll == 'undefined' && documentAll !== undefined;
|
|
2389
|
+
var documentAll = $documentAll.all;
|
|
2424
2390
|
|
|
2425
|
-
module.exports =
|
|
2391
|
+
module.exports = $documentAll.IS_HTMLDDA ? function (it) {
|
|
2426
2392
|
return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll;
|
|
2427
2393
|
} : function (it) {
|
|
2428
2394
|
return typeof it == 'object' ? it !== null : isCallable(it);
|
|
@@ -2549,6 +2515,22 @@ module.exports = require("vue");
|
|
|
2549
2515
|
|
|
2550
2516
|
!function(t,e){ true?module.exports=e():undefined}(this,function(){return function(t){function e(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,i){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:i})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="/",e(e.s=60)}([function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e,n){var i=n(49)("wks"),r=n(30),o=n(0).Symbol,s="function"==typeof o;(t.exports=function(t){return i[t]||(i[t]=s&&o[t]||(s?o:r)("Symbol."+t))}).store=i},function(t,e,n){var i=n(5);t.exports=function(t){if(!i(t))throw TypeError(t+" is not an object!");return t}},function(t,e,n){var i=n(0),r=n(10),o=n(8),s=n(6),u=n(11),a=function(t,e,n){var l,c,f,p,h=t&a.F,d=t&a.G,v=t&a.S,g=t&a.P,y=t&a.B,m=d?i:v?i[e]||(i[e]={}):(i[e]||{}).prototype,b=d?r:r[e]||(r[e]={}),_=b.prototype||(b.prototype={});d&&(n=e);for(l in n)c=!h&&m&&void 0!==m[l],f=(c?m:n)[l],p=y&&c?u(f,i):g&&"function"==typeof f?u(Function.call,f):f,m&&s(m,l,f,t&a.U),b[l]!=f&&o(b,l,p),g&&_[l]!=f&&(_[l]=f)};i.core=r,a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},function(t,e,n){t.exports=!n(7)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var i=n(0),r=n(8),o=n(12),s=n(30)("src"),u=Function.toString,a=(""+u).split("toString");n(10).inspectSource=function(t){return u.call(t)},(t.exports=function(t,e,n,u){var l="function"==typeof n;l&&(o(n,"name")||r(n,"name",e)),t[e]!==n&&(l&&(o(n,s)||r(n,s,t[e]?""+t[e]:a.join(String(e)))),t===i?t[e]=n:u?t[e]?t[e]=n:r(t,e,n):(delete t[e],r(t,e,n)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[s]||u.call(this)})},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var i=n(13),r=n(25);t.exports=n(4)?function(t,e,n){return i.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){var n=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},function(t,e,n){var i=n(14);t.exports=function(t,e,n){if(i(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,i){return t.call(e,n,i)};case 3:return function(n,i,r){return t.call(e,n,i,r)}}return function(){return t.apply(e,arguments)}}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var i=n(2),r=n(41),o=n(29),s=Object.defineProperty;e.f=n(4)?Object.defineProperty:function(t,e,n){if(i(t),e=o(e,!0),i(n),r)try{return s(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e){t.exports={}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,n){"use strict";var i=n(7);t.exports=function(t,e){return!!t&&i(function(){e?t.call(null,function(){},1):t.call(null)})}},function(t,e,n){var i=n(23),r=n(16);t.exports=function(t){return i(r(t))}},function(t,e,n){var i=n(53),r=Math.min;t.exports=function(t){return t>0?r(i(t),9007199254740991):0}},function(t,e,n){var i=n(11),r=n(23),o=n(28),s=n(19),u=n(64);t.exports=function(t,e){var n=1==t,a=2==t,l=3==t,c=4==t,f=6==t,p=5==t||f,h=e||u;return function(e,u,d){for(var v,g,y=o(e),m=r(y),b=i(u,d,3),_=s(m.length),x=0,w=n?h(e,_):a?h(e,0):void 0;_>x;x++)if((p||x in m)&&(v=m[x],g=b(v,x,y),t))if(n)w[x]=g;else if(g)switch(t){case 3:return!0;case 5:return v;case 6:return x;case 2:w.push(v)}else if(c)return!1;return f?-1:l||c?c:w}}},function(t,e,n){var i=n(5),r=n(0).document,o=i(r)&&i(r.createElement);t.exports=function(t){return o?r.createElement(t):{}}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,n){var i=n(9);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==i(t)?t.split(""):Object(t)}},function(t,e){t.exports=!1},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var i=n(13).f,r=n(12),o=n(1)("toStringTag");t.exports=function(t,e,n){t&&!r(t=n?t:t.prototype,o)&&i(t,o,{configurable:!0,value:e})}},function(t,e,n){var i=n(49)("keys"),r=n(30);t.exports=function(t){return i[t]||(i[t]=r(t))}},function(t,e,n){var i=n(16);t.exports=function(t){return Object(i(t))}},function(t,e,n){var i=n(5);t.exports=function(t,e){if(!i(t))return t;var n,r;if(e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;if("function"==typeof(n=t.valueOf)&&!i(r=n.call(t)))return r;if(!e&&"function"==typeof(n=t.toString)&&!i(r=n.call(t)))return r;throw TypeError("Can't convert object to primitive value")}},function(t,e){var n=0,i=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+i).toString(36))}},function(t,e,n){"use strict";var i=n(0),r=n(12),o=n(9),s=n(67),u=n(29),a=n(7),l=n(77).f,c=n(45).f,f=n(13).f,p=n(51).trim,h=i.Number,d=h,v=h.prototype,g="Number"==o(n(44)(v)),y="trim"in String.prototype,m=function(t){var e=u(t,!1);if("string"==typeof e&&e.length>2){e=y?e.trim():p(e,3);var n,i,r,o=e.charCodeAt(0);if(43===o||45===o){if(88===(n=e.charCodeAt(2))||120===n)return NaN}else if(48===o){switch(e.charCodeAt(1)){case 66:case 98:i=2,r=49;break;case 79:case 111:i=8,r=55;break;default:return+e}for(var s,a=e.slice(2),l=0,c=a.length;l<c;l++)if((s=a.charCodeAt(l))<48||s>r)return NaN;return parseInt(a,i)}}return+e};if(!h(" 0o1")||!h("0b1")||h("+0x1")){h=function(t){var e=arguments.length<1?0:t,n=this;return n instanceof h&&(g?a(function(){v.valueOf.call(n)}):"Number"!=o(n))?s(new d(m(e)),n,h):m(e)};for(var b,_=n(4)?l(d):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),x=0;_.length>x;x++)r(d,b=_[x])&&!r(h,b)&&f(h,b,c(d,b));h.prototype=v,v.constructor=h,n(6)(i,"Number",h)}},function(t,e,n){"use strict";function i(t){return 0!==t&&(!(!Array.isArray(t)||0!==t.length)||!t)}function r(t){return function(){return!t.apply(void 0,arguments)}}function o(t,e){return void 0===t&&(t="undefined"),null===t&&(t="null"),!1===t&&(t="false"),-1!==t.toString().toLowerCase().indexOf(e.trim())}function s(t,e,n,i){return t.filter(function(t){return o(i(t,n),e)})}function u(t){return t.filter(function(t){return!t.$isLabel})}function a(t,e){return function(n){return n.reduce(function(n,i){return i[t]&&i[t].length?(n.push({$groupLabel:i[e],$isLabel:!0}),n.concat(i[t])):n},[])}}function l(t,e,i,r,o){return function(u){return u.map(function(u){var a;if(!u[i])return console.warn("Options passed to vue-multiselect do not contain groups, despite the config."),[];var l=s(u[i],t,e,o);return l.length?(a={},n.i(d.a)(a,r,u[r]),n.i(d.a)(a,i,l),a):[]})}}var c=n(59),f=n(54),p=(n.n(f),n(95)),h=(n.n(p),n(31)),d=(n.n(h),n(58)),v=n(91),g=(n.n(v),n(98)),y=(n.n(g),n(92)),m=(n.n(y),n(88)),b=(n.n(m),n(97)),_=(n.n(b),n(89)),x=(n.n(_),n(96)),w=(n.n(x),n(93)),S=(n.n(w),n(90)),O=(n.n(S),function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t){return e.reduce(function(t,e){return e(t)},t)}});e.a={data:function(){return{search:"",isOpen:!1,preferredOpenDirection:"below",optimizedHeight:this.maxHeight}},props:{internalSearch:{type:Boolean,default:!0},options:{type:Array,required:!0},multiple:{type:Boolean,default:!1},value:{type:null,default:function(){return[]}},trackBy:{type:String},label:{type:String},searchable:{type:Boolean,default:!0},clearOnSelect:{type:Boolean,default:!0},hideSelected:{type:Boolean,default:!1},placeholder:{type:String,default:"Select option"},allowEmpty:{type:Boolean,default:!0},resetAfter:{type:Boolean,default:!1},closeOnSelect:{type:Boolean,default:!0},customLabel:{type:Function,default:function(t,e){return i(t)?"":e?t[e]:t}},taggable:{type:Boolean,default:!1},tagPlaceholder:{type:String,default:"Press enter to create a tag"},tagPosition:{type:String,default:"top"},max:{type:[Number,Boolean],default:!1},id:{default:null},optionsLimit:{type:Number,default:1e3},groupValues:{type:String},groupLabel:{type:String},groupSelect:{type:Boolean,default:!1},blockKeys:{type:Array,default:function(){return[]}},preserveSearch:{type:Boolean,default:!1},preselectFirst:{type:Boolean,default:!1}},mounted:function(){!this.multiple&&this.max&&console.warn("[Vue-Multiselect warn]: Max prop should not be used when prop Multiple equals false."),this.preselectFirst&&!this.internalValue.length&&this.options.length&&this.select(this.filteredOptions[0])},computed:{internalValue:function(){return this.value||0===this.value?Array.isArray(this.value)?this.value:[this.value]:[]},filteredOptions:function(){var t=this.search||"",e=t.toLowerCase().trim(),n=this.options.concat();return n=this.internalSearch?this.groupValues?this.filterAndFlat(n,e,this.label):s(n,e,this.label,this.customLabel):this.groupValues?a(this.groupValues,this.groupLabel)(n):n,n=this.hideSelected?n.filter(r(this.isSelected)):n,this.taggable&&e.length&&!this.isExistingOption(e)&&("bottom"===this.tagPosition?n.push({isTag:!0,label:t}):n.unshift({isTag:!0,label:t})),n.slice(0,this.optionsLimit)},valueKeys:function(){var t=this;return this.trackBy?this.internalValue.map(function(e){return e[t.trackBy]}):this.internalValue},optionKeys:function(){var t=this;return(this.groupValues?this.flatAndStrip(this.options):this.options).map(function(e){return t.customLabel(e,t.label).toString().toLowerCase()})},currentOptionLabel:function(){return this.multiple?this.searchable?"":this.placeholder:this.internalValue.length?this.getOptionLabel(this.internalValue[0]):this.searchable?"":this.placeholder}},watch:{internalValue:function(){this.resetAfter&&this.internalValue.length&&(this.search="",this.$emit("input",this.multiple?[]:null))},search:function(){this.$emit("search-change",this.search,this.id)}},methods:{getValue:function(){return this.multiple?this.internalValue:0===this.internalValue.length?null:this.internalValue[0]},filterAndFlat:function(t,e,n){return O(l(e,n,this.groupValues,this.groupLabel,this.customLabel),a(this.groupValues,this.groupLabel))(t)},flatAndStrip:function(t){return O(a(this.groupValues,this.groupLabel),u)(t)},updateSearch:function(t){this.search=t},isExistingOption:function(t){return!!this.options&&this.optionKeys.indexOf(t)>-1},isSelected:function(t){var e=this.trackBy?t[this.trackBy]:t;return this.valueKeys.indexOf(e)>-1},isOptionDisabled:function(t){return!!t.$isDisabled},getOptionLabel:function(t){if(i(t))return"";if(t.isTag)return t.label;if(t.$isLabel)return t.$groupLabel;var e=this.customLabel(t,this.label);return i(e)?"":e},select:function(t,e){if(t.$isLabel&&this.groupSelect)return void this.selectGroup(t);if(!(-1!==this.blockKeys.indexOf(e)||this.disabled||t.$isDisabled||t.$isLabel)&&(!this.max||!this.multiple||this.internalValue.length!==this.max)&&("Tab"!==e||this.pointerDirty)){if(t.isTag)this.$emit("tag",t.label,this.id),this.search="",this.closeOnSelect&&!this.multiple&&this.deactivate();else{if(this.isSelected(t))return void("Tab"!==e&&this.removeElement(t));this.$emit("select",t,this.id),this.multiple?this.$emit("input",this.internalValue.concat([t]),this.id):this.$emit("input",t,this.id),this.clearOnSelect&&(this.search="")}this.closeOnSelect&&this.deactivate()}},selectGroup:function(t){var e=this,n=this.options.find(function(n){return n[e.groupLabel]===t.$groupLabel});if(n)if(this.wholeGroupSelected(n)){this.$emit("remove",n[this.groupValues],this.id);var i=this.internalValue.filter(function(t){return-1===n[e.groupValues].indexOf(t)});this.$emit("input",i,this.id)}else{var r=n[this.groupValues].filter(function(t){return!(e.isOptionDisabled(t)||e.isSelected(t))});this.$emit("select",r,this.id),this.$emit("input",this.internalValue.concat(r),this.id)}},wholeGroupSelected:function(t){var e=this;return t[this.groupValues].every(function(t){return e.isSelected(t)||e.isOptionDisabled(t)})},wholeGroupDisabled:function(t){return t[this.groupValues].every(this.isOptionDisabled)},removeElement:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(!this.disabled&&!t.$isDisabled){if(!this.allowEmpty&&this.internalValue.length<=1)return void this.deactivate();var i="object"===n.i(c.a)(t)?this.valueKeys.indexOf(t[this.trackBy]):this.valueKeys.indexOf(t);if(this.$emit("remove",t,this.id),this.multiple){var r=this.internalValue.slice(0,i).concat(this.internalValue.slice(i+1));this.$emit("input",r,this.id)}else this.$emit("input",null,this.id);this.closeOnSelect&&e&&this.deactivate()}},removeLastElement:function(){-1===this.blockKeys.indexOf("Delete")&&0===this.search.length&&Array.isArray(this.internalValue)&&this.internalValue.length&&this.removeElement(this.internalValue[this.internalValue.length-1],!1)},activate:function(){var t=this;this.isOpen||this.disabled||(this.adjustPosition(),this.groupValues&&0===this.pointer&&this.filteredOptions.length&&(this.pointer=1),this.isOpen=!0,this.searchable?(this.preserveSearch||(this.search=""),this.$nextTick(function(){return t.$refs.search.focus()})):this.$el.focus(),this.$emit("open",this.id))},deactivate:function(){this.isOpen&&(this.isOpen=!1,this.searchable?this.$refs.search.blur():this.$el.blur(),this.preserveSearch||(this.search=""),this.$emit("close",this.getValue(),this.id))},toggle:function(){this.isOpen?this.deactivate():this.activate()},adjustPosition:function(){if("undefined"!=typeof window){var t=this.$el.getBoundingClientRect().top,e=window.innerHeight-this.$el.getBoundingClientRect().bottom;e>this.maxHeight||e>t||"below"===this.openDirection||"bottom"===this.openDirection?(this.preferredOpenDirection="below",this.optimizedHeight=Math.min(e-40,this.maxHeight)):(this.preferredOpenDirection="above",this.optimizedHeight=Math.min(t-40,this.maxHeight))}}}}},function(t,e,n){"use strict";var i=n(54),r=(n.n(i),n(31));n.n(r);e.a={data:function(){return{pointer:0,pointerDirty:!1}},props:{showPointer:{type:Boolean,default:!0},optionHeight:{type:Number,default:40}},computed:{pointerPosition:function(){return this.pointer*this.optionHeight},visibleElements:function(){return this.optimizedHeight/this.optionHeight}},watch:{filteredOptions:function(){this.pointerAdjust()},isOpen:function(){this.pointerDirty=!1}},methods:{optionHighlight:function(t,e){return{"multiselect__option--highlight":t===this.pointer&&this.showPointer,"multiselect__option--selected":this.isSelected(e)}},groupHighlight:function(t,e){var n=this;if(!this.groupSelect)return["multiselect__option--group","multiselect__option--disabled"];var i=this.options.find(function(t){return t[n.groupLabel]===e.$groupLabel});return i&&!this.wholeGroupDisabled(i)?["multiselect__option--group",{"multiselect__option--highlight":t===this.pointer&&this.showPointer},{"multiselect__option--group-selected":this.wholeGroupSelected(i)}]:"multiselect__option--disabled"},addPointerElement:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Enter",e=t.key;this.filteredOptions.length>0&&this.select(this.filteredOptions[this.pointer],e),this.pointerReset()},pointerForward:function(){this.pointer<this.filteredOptions.length-1&&(this.pointer++,this.$refs.list.scrollTop<=this.pointerPosition-(this.visibleElements-1)*this.optionHeight&&(this.$refs.list.scrollTop=this.pointerPosition-(this.visibleElements-1)*this.optionHeight),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()),this.pointerDirty=!0},pointerBackward:function(){this.pointer>0?(this.pointer--,this.$refs.list.scrollTop>=this.pointerPosition&&(this.$refs.list.scrollTop=this.pointerPosition),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerBackward()):this.filteredOptions[this.pointer]&&this.filteredOptions[0].$isLabel&&!this.groupSelect&&this.pointerForward(),this.pointerDirty=!0},pointerReset:function(){this.closeOnSelect&&(this.pointer=0,this.$refs.list&&(this.$refs.list.scrollTop=0))},pointerAdjust:function(){this.pointer>=this.filteredOptions.length-1&&(this.pointer=this.filteredOptions.length?this.filteredOptions.length-1:0),this.filteredOptions.length>0&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()},pointerSet:function(t){this.pointer=t,this.pointerDirty=!0}}}},function(t,e,n){"use strict";var i=n(36),r=n(74),o=n(15),s=n(18);t.exports=n(72)(Array,"Array",function(t,e){this._t=s(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,r(1)):"keys"==e?r(0,n):"values"==e?r(0,t[n]):r(0,[n,t[n]])},"values"),o.Arguments=o.Array,i("keys"),i("values"),i("entries")},function(t,e,n){"use strict";var i=n(31),r=(n.n(i),n(32)),o=n(33);e.a={name:"vue-multiselect",mixins:[r.a,o.a],props:{name:{type:String,default:""},selectLabel:{type:String,default:"Press enter to select"},selectGroupLabel:{type:String,default:"Press enter to select group"},selectedLabel:{type:String,default:"Selected"},deselectLabel:{type:String,default:"Press enter to remove"},deselectGroupLabel:{type:String,default:"Press enter to deselect group"},showLabels:{type:Boolean,default:!0},limit:{type:Number,default:99999},maxHeight:{type:Number,default:300},limitText:{type:Function,default:function(t){return"and ".concat(t," more")}},loading:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},openDirection:{type:String,default:""},showNoOptions:{type:Boolean,default:!0},showNoResults:{type:Boolean,default:!0},tabindex:{type:Number,default:0}},computed:{isSingleLabelVisible:function(){return(this.singleValue||0===this.singleValue)&&(!this.isOpen||!this.searchable)&&!this.visibleValues.length},isPlaceholderVisible:function(){return!(this.internalValue.length||this.searchable&&this.isOpen)},visibleValues:function(){return this.multiple?this.internalValue.slice(0,this.limit):[]},singleValue:function(){return this.internalValue[0]},deselectLabelText:function(){return this.showLabels?this.deselectLabel:""},deselectGroupLabelText:function(){return this.showLabels?this.deselectGroupLabel:""},selectLabelText:function(){return this.showLabels?this.selectLabel:""},selectGroupLabelText:function(){return this.showLabels?this.selectGroupLabel:""},selectedLabelText:function(){return this.showLabels?this.selectedLabel:""},inputStyle:function(){if(this.searchable||this.multiple&&this.value&&this.value.length)return this.isOpen?{width:"100%"}:{width:"0",position:"absolute",padding:"0"}},contentStyle:function(){return this.options.length?{display:"inline-block"}:{display:"block"}},isAbove:function(){return"above"===this.openDirection||"top"===this.openDirection||"below"!==this.openDirection&&"bottom"!==this.openDirection&&"above"===this.preferredOpenDirection},showSearchInput:function(){return this.searchable&&(!this.hasSingleSelectedSlot||!this.visibleSingleValue&&0!==this.visibleSingleValue||this.isOpen)}}}},function(t,e,n){var i=n(1)("unscopables"),r=Array.prototype;void 0==r[i]&&n(8)(r,i,{}),t.exports=function(t){r[i][t]=!0}},function(t,e,n){var i=n(18),r=n(19),o=n(85);t.exports=function(t){return function(e,n,s){var u,a=i(e),l=r(a.length),c=o(s,l);if(t&&n!=n){for(;l>c;)if((u=a[c++])!=u)return!0}else for(;l>c;c++)if((t||c in a)&&a[c]===n)return t||c||0;return!t&&-1}}},function(t,e,n){var i=n(9),r=n(1)("toStringTag"),o="Arguments"==i(function(){return arguments}()),s=function(t,e){try{return t[e]}catch(t){}};t.exports=function(t){var e,n,u;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=s(e=Object(t),r))?n:o?i(e):"Object"==(u=i(e))&&"function"==typeof e.callee?"Arguments":u}},function(t,e,n){"use strict";var i=n(2);t.exports=function(){var t=i(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},function(t,e,n){var i=n(0).document;t.exports=i&&i.documentElement},function(t,e,n){t.exports=!n(4)&&!n(7)(function(){return 7!=Object.defineProperty(n(21)("div"),"a",{get:function(){return 7}}).a})},function(t,e,n){var i=n(9);t.exports=Array.isArray||function(t){return"Array"==i(t)}},function(t,e,n){"use strict";function i(t){var e,n;this.promise=new t(function(t,i){if(void 0!==e||void 0!==n)throw TypeError("Bad Promise constructor");e=t,n=i}),this.resolve=r(e),this.reject=r(n)}var r=n(14);t.exports.f=function(t){return new i(t)}},function(t,e,n){var i=n(2),r=n(76),o=n(22),s=n(27)("IE_PROTO"),u=function(){},a=function(){var t,e=n(21)("iframe"),i=o.length;for(e.style.display="none",n(40).appendChild(e),e.src="javascript:",t=e.contentWindow.document,t.open(),t.write("<script>document.F=Object<\/script>"),t.close(),a=t.F;i--;)delete a.prototype[o[i]];return a()};t.exports=Object.create||function(t,e){var n;return null!==t?(u.prototype=i(t),n=new u,u.prototype=null,n[s]=t):n=a(),void 0===e?n:r(n,e)}},function(t,e,n){var i=n(79),r=n(25),o=n(18),s=n(29),u=n(12),a=n(41),l=Object.getOwnPropertyDescriptor;e.f=n(4)?l:function(t,e){if(t=o(t),e=s(e,!0),a)try{return l(t,e)}catch(t){}if(u(t,e))return r(!i.f.call(t,e),t[e])}},function(t,e,n){var i=n(12),r=n(18),o=n(37)(!1),s=n(27)("IE_PROTO");t.exports=function(t,e){var n,u=r(t),a=0,l=[];for(n in u)n!=s&&i(u,n)&&l.push(n);for(;e.length>a;)i(u,n=e[a++])&&(~o(l,n)||l.push(n));return l}},function(t,e,n){var i=n(46),r=n(22);t.exports=Object.keys||function(t){return i(t,r)}},function(t,e,n){var i=n(2),r=n(5),o=n(43);t.exports=function(t,e){if(i(t),r(e)&&e.constructor===t)return e;var n=o.f(t);return(0,n.resolve)(e),n.promise}},function(t,e,n){var i=n(10),r=n(0),o=r["__core-js_shared__"]||(r["__core-js_shared__"]={});(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:i.version,mode:n(24)?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},function(t,e,n){var i=n(2),r=n(14),o=n(1)("species");t.exports=function(t,e){var n,s=i(t).constructor;return void 0===s||void 0==(n=i(s)[o])?e:r(n)}},function(t,e,n){var i=n(3),r=n(16),o=n(7),s=n(84),u="["+s+"]",a="
",l=RegExp("^"+u+u+"*"),c=RegExp(u+u+"*$"),f=function(t,e,n){var r={},u=o(function(){return!!s[t]()||a[t]()!=a}),l=r[t]=u?e(p):s[t];n&&(r[n]=l),i(i.P+i.F*u,"String",r)},p=f.trim=function(t,e){return t=String(r(t)),1&e&&(t=t.replace(l,"")),2&e&&(t=t.replace(c,"")),t};t.exports=f},function(t,e,n){var i,r,o,s=n(11),u=n(68),a=n(40),l=n(21),c=n(0),f=c.process,p=c.setImmediate,h=c.clearImmediate,d=c.MessageChannel,v=c.Dispatch,g=0,y={},m=function(){var t=+this;if(y.hasOwnProperty(t)){var e=y[t];delete y[t],e()}},b=function(t){m.call(t.data)};p&&h||(p=function(t){for(var e=[],n=1;arguments.length>n;)e.push(arguments[n++]);return y[++g]=function(){u("function"==typeof t?t:Function(t),e)},i(g),g},h=function(t){delete y[t]},"process"==n(9)(f)?i=function(t){f.nextTick(s(m,t,1))}:v&&v.now?i=function(t){v.now(s(m,t,1))}:d?(r=new d,o=r.port2,r.port1.onmessage=b,i=s(o.postMessage,o,1)):c.addEventListener&&"function"==typeof postMessage&&!c.importScripts?(i=function(t){c.postMessage(t+"","*")},c.addEventListener("message",b,!1)):i="onreadystatechange"in l("script")?function(t){a.appendChild(l("script")).onreadystatechange=function(){a.removeChild(this),m.call(t)}}:function(t){setTimeout(s(m,t,1),0)}),t.exports={set:p,clear:h}},function(t,e){var n=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:n)(t)}},function(t,e,n){"use strict";var i=n(3),r=n(20)(5),o=!0;"find"in[]&&Array(1).find(function(){o=!1}),i(i.P+i.F*o,"Array",{find:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),n(36)("find")},function(t,e,n){"use strict";var i,r,o,s,u=n(24),a=n(0),l=n(11),c=n(38),f=n(3),p=n(5),h=n(14),d=n(61),v=n(66),g=n(50),y=n(52).set,m=n(75)(),b=n(43),_=n(80),x=n(86),w=n(48),S=a.TypeError,O=a.process,L=O&&O.versions,k=L&&L.v8||"",P=a.Promise,T="process"==c(O),V=function(){},E=r=b.f,A=!!function(){try{var t=P.resolve(1),e=(t.constructor={})[n(1)("species")]=function(t){t(V,V)};return(T||"function"==typeof PromiseRejectionEvent)&&t.then(V)instanceof e&&0!==k.indexOf("6.6")&&-1===x.indexOf("Chrome/66")}catch(t){}}(),C=function(t){var e;return!(!p(t)||"function"!=typeof(e=t.then))&&e},D=function(t,e){if(!t._n){t._n=!0;var n=t._c;m(function(){for(var i=t._v,r=1==t._s,o=0;n.length>o;)!function(e){var n,o,s,u=r?e.ok:e.fail,a=e.resolve,l=e.reject,c=e.domain;try{u?(r||(2==t._h&&$(t),t._h=1),!0===u?n=i:(c&&c.enter(),n=u(i),c&&(c.exit(),s=!0)),n===e.promise?l(S("Promise-chain cycle")):(o=C(n))?o.call(n,a,l):a(n)):l(i)}catch(t){c&&!s&&c.exit(),l(t)}}(n[o++]);t._c=[],t._n=!1,e&&!t._h&&j(t)})}},j=function(t){y.call(a,function(){var e,n,i,r=t._v,o=N(t);if(o&&(e=_(function(){T?O.emit("unhandledRejection",r,t):(n=a.onunhandledrejection)?n({promise:t,reason:r}):(i=a.console)&&i.error&&i.error("Unhandled promise rejection",r)}),t._h=T||N(t)?2:1),t._a=void 0,o&&e.e)throw e.v})},N=function(t){return 1!==t._h&&0===(t._a||t._c).length},$=function(t){y.call(a,function(){var e;T?O.emit("rejectionHandled",t):(e=a.onrejectionhandled)&&e({promise:t,reason:t._v})})},F=function(t){var e=this;e._d||(e._d=!0,e=e._w||e,e._v=t,e._s=2,e._a||(e._a=e._c.slice()),D(e,!0))},M=function(t){var e,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===t)throw S("Promise can't be resolved itself");(e=C(t))?m(function(){var i={_w:n,_d:!1};try{e.call(t,l(M,i,1),l(F,i,1))}catch(t){F.call(i,t)}}):(n._v=t,n._s=1,D(n,!1))}catch(t){F.call({_w:n,_d:!1},t)}}};A||(P=function(t){d(this,P,"Promise","_h"),h(t),i.call(this);try{t(l(M,this,1),l(F,this,1))}catch(t){F.call(this,t)}},i=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1},i.prototype=n(81)(P.prototype,{then:function(t,e){var n=E(g(this,P));return n.ok="function"!=typeof t||t,n.fail="function"==typeof e&&e,n.domain=T?O.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&D(this,!1),n.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new i;this.promise=t,this.resolve=l(M,t,1),this.reject=l(F,t,1)},b.f=E=function(t){return t===P||t===s?new o(t):r(t)}),f(f.G+f.W+f.F*!A,{Promise:P}),n(26)(P,"Promise"),n(83)("Promise"),s=n(10).Promise,f(f.S+f.F*!A,"Promise",{reject:function(t){var e=E(this);return(0,e.reject)(t),e.promise}}),f(f.S+f.F*(u||!A),"Promise",{resolve:function(t){return w(u&&this===s?P:this,t)}}),f(f.S+f.F*!(A&&n(73)(function(t){P.all(t).catch(V)})),"Promise",{all:function(t){var e=this,n=E(e),i=n.resolve,r=n.reject,o=_(function(){var n=[],o=0,s=1;v(t,!1,function(t){var u=o++,a=!1;n.push(void 0),s++,e.resolve(t).then(function(t){a||(a=!0,n[u]=t,--s||i(n))},r)}),--s||i(n)});return o.e&&r(o.v),n.promise},race:function(t){var e=this,n=E(e),i=n.reject,r=_(function(){v(t,!1,function(t){e.resolve(t).then(n.resolve,i)})});return r.e&&i(r.v),n.promise}})},function(t,e,n){"use strict";var i=n(3),r=n(10),o=n(0),s=n(50),u=n(48);i(i.P+i.R,"Promise",{finally:function(t){var e=s(this,r.Promise||o.Promise),n="function"==typeof t;return this.then(n?function(n){return u(e,t()).then(function(){return n})}:t,n?function(n){return u(e,t()).then(function(){throw n})}:t)}})},function(t,e,n){"use strict";function i(t){n(99)}var r=n(35),o=n(101),s=n(100),u=i,a=s(r.a,o.a,!1,u,null,null);e.a=a.exports},function(t,e,n){"use strict";function i(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}e.a=i},function(t,e,n){"use strict";function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function r(t){return(r="function"==typeof Symbol&&"symbol"===i(Symbol.iterator)?function(t){return i(t)}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":i(t)})(t)}e.a=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n(34),r=(n.n(i),n(55)),o=(n.n(r),n(56)),s=(n.n(o),n(57)),u=n(32),a=n(33);n.d(e,"Multiselect",function(){return s.a}),n.d(e,"multiselectMixin",function(){return u.a}),n.d(e,"pointerMixin",function(){return a.a}),e.default=s.a},function(t,e){t.exports=function(t,e,n,i){if(!(t instanceof e)||void 0!==i&&i in t)throw TypeError(n+": incorrect invocation!");return t}},function(t,e,n){var i=n(14),r=n(28),o=n(23),s=n(19);t.exports=function(t,e,n,u,a){i(e);var l=r(t),c=o(l),f=s(l.length),p=a?f-1:0,h=a?-1:1;if(n<2)for(;;){if(p in c){u=c[p],p+=h;break}if(p+=h,a?p<0:f<=p)throw TypeError("Reduce of empty array with no initial value")}for(;a?p>=0:f>p;p+=h)p in c&&(u=e(u,c[p],p,l));return u}},function(t,e,n){var i=n(5),r=n(42),o=n(1)("species");t.exports=function(t){var e;return r(t)&&(e=t.constructor,"function"!=typeof e||e!==Array&&!r(e.prototype)||(e=void 0),i(e)&&null===(e=e[o])&&(e=void 0)),void 0===e?Array:e}},function(t,e,n){var i=n(63);t.exports=function(t,e){return new(i(t))(e)}},function(t,e,n){"use strict";var i=n(8),r=n(6),o=n(7),s=n(16),u=n(1);t.exports=function(t,e,n){var a=u(t),l=n(s,a,""[t]),c=l[0],f=l[1];o(function(){var e={};return e[a]=function(){return 7},7!=""[t](e)})&&(r(String.prototype,t,c),i(RegExp.prototype,a,2==e?function(t,e){return f.call(t,this,e)}:function(t){return f.call(t,this)}))}},function(t,e,n){var i=n(11),r=n(70),o=n(69),s=n(2),u=n(19),a=n(87),l={},c={},e=t.exports=function(t,e,n,f,p){var h,d,v,g,y=p?function(){return t}:a(t),m=i(n,f,e?2:1),b=0;if("function"!=typeof y)throw TypeError(t+" is not iterable!");if(o(y)){for(h=u(t.length);h>b;b++)if((g=e?m(s(d=t[b])[0],d[1]):m(t[b]))===l||g===c)return g}else for(v=y.call(t);!(d=v.next()).done;)if((g=r(v,m,d.value,e))===l||g===c)return g};e.BREAK=l,e.RETURN=c},function(t,e,n){var i=n(5),r=n(82).set;t.exports=function(t,e,n){var o,s=e.constructor;return s!==n&&"function"==typeof s&&(o=s.prototype)!==n.prototype&&i(o)&&r&&r(t,o),t}},function(t,e){t.exports=function(t,e,n){var i=void 0===n;switch(e.length){case 0:return i?t():t.call(n);case 1:return i?t(e[0]):t.call(n,e[0]);case 2:return i?t(e[0],e[1]):t.call(n,e[0],e[1]);case 3:return i?t(e[0],e[1],e[2]):t.call(n,e[0],e[1],e[2]);case 4:return i?t(e[0],e[1],e[2],e[3]):t.call(n,e[0],e[1],e[2],e[3])}return t.apply(n,e)}},function(t,e,n){var i=n(15),r=n(1)("iterator"),o=Array.prototype;t.exports=function(t){return void 0!==t&&(i.Array===t||o[r]===t)}},function(t,e,n){var i=n(2);t.exports=function(t,e,n,r){try{return r?e(i(n)[0],n[1]):e(n)}catch(e){var o=t.return;throw void 0!==o&&i(o.call(t)),e}}},function(t,e,n){"use strict";var i=n(44),r=n(25),o=n(26),s={};n(8)(s,n(1)("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=i(s,{next:r(1,n)}),o(t,e+" Iterator")}},function(t,e,n){"use strict";var i=n(24),r=n(3),o=n(6),s=n(8),u=n(15),a=n(71),l=n(26),c=n(78),f=n(1)("iterator"),p=!([].keys&&"next"in[].keys()),h=function(){return this};t.exports=function(t,e,n,d,v,g,y){a(n,e,d);var m,b,_,x=function(t){if(!p&&t in L)return L[t];switch(t){case"keys":case"values":return function(){return new n(this,t)}}return function(){return new n(this,t)}},w=e+" Iterator",S="values"==v,O=!1,L=t.prototype,k=L[f]||L["@@iterator"]||v&&L[v],P=k||x(v),T=v?S?x("entries"):P:void 0,V="Array"==e?L.entries||k:k;if(V&&(_=c(V.call(new t)))!==Object.prototype&&_.next&&(l(_,w,!0),i||"function"==typeof _[f]||s(_,f,h)),S&&k&&"values"!==k.name&&(O=!0,P=function(){return k.call(this)}),i&&!y||!p&&!O&&L[f]||s(L,f,P),u[e]=P,u[w]=h,v)if(m={values:S?P:x("values"),keys:g?P:x("keys"),entries:T},y)for(b in m)b in L||o(L,b,m[b]);else r(r.P+r.F*(p||O),e,m);return m}},function(t,e,n){var i=n(1)("iterator"),r=!1;try{var o=[7][i]();o.return=function(){r=!0},Array.from(o,function(){throw 2})}catch(t){}t.exports=function(t,e){if(!e&&!r)return!1;var n=!1;try{var o=[7],s=o[i]();s.next=function(){return{done:n=!0}},o[i]=function(){return s},t(o)}catch(t){}return n}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){var i=n(0),r=n(52).set,o=i.MutationObserver||i.WebKitMutationObserver,s=i.process,u=i.Promise,a="process"==n(9)(s);t.exports=function(){var t,e,n,l=function(){var i,r;for(a&&(i=s.domain)&&i.exit();t;){r=t.fn,t=t.next;try{r()}catch(i){throw t?n():e=void 0,i}}e=void 0,i&&i.enter()};if(a)n=function(){s.nextTick(l)};else if(!o||i.navigator&&i.navigator.standalone)if(u&&u.resolve){var c=u.resolve(void 0);n=function(){c.then(l)}}else n=function(){r.call(i,l)};else{var f=!0,p=document.createTextNode("");new o(l).observe(p,{characterData:!0}),n=function(){p.data=f=!f}}return function(i){var r={fn:i,next:void 0};e&&(e.next=r),t||(t=r,n()),e=r}}},function(t,e,n){var i=n(13),r=n(2),o=n(47);t.exports=n(4)?Object.defineProperties:function(t,e){r(t);for(var n,s=o(e),u=s.length,a=0;u>a;)i.f(t,n=s[a++],e[n]);return t}},function(t,e,n){var i=n(46),r=n(22).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return i(t,r)}},function(t,e,n){var i=n(12),r=n(28),o=n(27)("IE_PROTO"),s=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=r(t),i(t,o)?t[o]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?s:null}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e){t.exports=function(t){try{return{e:!1,v:t()}}catch(t){return{e:!0,v:t}}}},function(t,e,n){var i=n(6);t.exports=function(t,e,n){for(var r in e)i(t,r,e[r],n);return t}},function(t,e,n){var i=n(5),r=n(2),o=function(t,e){if(r(t),!i(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,e,i){try{i=n(11)(Function.call,n(45).f(Object.prototype,"__proto__").set,2),i(t,[]),e=!(t instanceof Array)}catch(t){e=!0}return function(t,n){return o(t,n),e?t.__proto__=n:i(t,n),t}}({},!1):void 0),check:o}},function(t,e,n){"use strict";var i=n(0),r=n(13),o=n(4),s=n(1)("species");t.exports=function(t){var e=i[t];o&&e&&!e[s]&&r.f(e,s,{configurable:!0,get:function(){return this}})}},function(t,e){t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},function(t,e,n){var i=n(53),r=Math.max,o=Math.min;t.exports=function(t,e){return t=i(t),t<0?r(t+e,0):o(t,e)}},function(t,e,n){var i=n(0),r=i.navigator;t.exports=r&&r.userAgent||""},function(t,e,n){var i=n(38),r=n(1)("iterator"),o=n(15);t.exports=n(10).getIteratorMethod=function(t){if(void 0!=t)return t[r]||t["@@iterator"]||o[i(t)]}},function(t,e,n){"use strict";var i=n(3),r=n(20)(2);i(i.P+i.F*!n(17)([].filter,!0),"Array",{filter:function(t){return r(this,t,arguments[1])}})},function(t,e,n){"use strict";var i=n(3),r=n(37)(!1),o=[].indexOf,s=!!o&&1/[1].indexOf(1,-0)<0;i(i.P+i.F*(s||!n(17)(o)),"Array",{indexOf:function(t){return s?o.apply(this,arguments)||0:r(this,t,arguments[1])}})},function(t,e,n){var i=n(3);i(i.S,"Array",{isArray:n(42)})},function(t,e,n){"use strict";var i=n(3),r=n(20)(1);i(i.P+i.F*!n(17)([].map,!0),"Array",{map:function(t){return r(this,t,arguments[1])}})},function(t,e,n){"use strict";var i=n(3),r=n(62);i(i.P+i.F*!n(17)([].reduce,!0),"Array",{reduce:function(t){return r(this,t,arguments.length,arguments[1],!1)}})},function(t,e,n){var i=Date.prototype,r=i.toString,o=i.getTime;new Date(NaN)+""!="Invalid Date"&&n(6)(i,"toString",function(){var t=o.call(this);return t===t?r.call(this):"Invalid Date"})},function(t,e,n){n(4)&&"g"!=/./g.flags&&n(13).f(RegExp.prototype,"flags",{configurable:!0,get:n(39)})},function(t,e,n){n(65)("search",1,function(t,e,n){return[function(n){"use strict";var i=t(this),r=void 0==n?void 0:n[e];return void 0!==r?r.call(n,i):new RegExp(n)[e](String(i))},n]})},function(t,e,n){"use strict";n(94);var i=n(2),r=n(39),o=n(4),s=/./.toString,u=function(t){n(6)(RegExp.prototype,"toString",t,!0)};n(7)(function(){return"/a/b"!=s.call({source:"a",flags:"b"})})?u(function(){var t=i(this);return"/".concat(t.source,"/","flags"in t?t.flags:!o&&t instanceof RegExp?r.call(t):void 0)}):"toString"!=s.name&&u(function(){return s.call(this)})},function(t,e,n){"use strict";n(51)("trim",function(t){return function(){return t(this,3)}})},function(t,e,n){for(var i=n(34),r=n(47),o=n(6),s=n(0),u=n(8),a=n(15),l=n(1),c=l("iterator"),f=l("toStringTag"),p=a.Array,h={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},d=r(h),v=0;v<d.length;v++){var g,y=d[v],m=h[y],b=s[y],_=b&&b.prototype;if(_&&(_[c]||u(_,c,p),_[f]||u(_,f,y),a[y]=p,m))for(g in i)_[g]||o(_,g,i[g],!0)}},function(t,e){},function(t,e){t.exports=function(t,e,n,i,r,o){var s,u=t=t||{},a=typeof t.default;"object"!==a&&"function"!==a||(s=t,u=t.default);var l="function"==typeof u?u.options:u;e&&(l.render=e.render,l.staticRenderFns=e.staticRenderFns,l._compiled=!0),n&&(l.functional=!0),r&&(l._scopeId=r);var c;if(o?(c=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},l._ssrRegister=c):i&&(c=i),c){var f=l.functional,p=f?l.render:l.beforeCreate;f?(l._injectStyles=c,l.render=function(t,e){return c.call(e),p(t,e)}):l.beforeCreate=p?[].concat(p,c):[c]}return{esModule:s,exports:u,options:l}}},function(t,e,n){"use strict";var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"multiselect",class:{"multiselect--active":t.isOpen,"multiselect--disabled":t.disabled,"multiselect--above":t.isAbove},attrs:{tabindex:t.searchable?-1:t.tabindex},on:{focus:function(e){t.activate()},blur:function(e){!t.searchable&&t.deactivate()},keydown:[function(e){return"button"in e||!t._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"])?e.target!==e.currentTarget?null:(e.preventDefault(),void t.pointerForward()):null},function(e){return"button"in e||!t._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"])?e.target!==e.currentTarget?null:(e.preventDefault(),void t.pointerBackward()):null}],keypress:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")||!t._k(e.keyCode,"tab",9,e.key,"Tab")?(e.stopPropagation(),e.target!==e.currentTarget?null:void t.addPointerElement(e)):null},keyup:function(e){if(!("button"in e)&&t._k(e.keyCode,"esc",27,e.key,"Escape"))return null;t.deactivate()}}},[t._t("caret",[n("div",{staticClass:"multiselect__select",on:{mousedown:function(e){e.preventDefault(),e.stopPropagation(),t.toggle()}}})],{toggle:t.toggle}),t._v(" "),t._t("clear",null,{search:t.search}),t._v(" "),n("div",{ref:"tags",staticClass:"multiselect__tags"},[t._t("selection",[n("div",{directives:[{name:"show",rawName:"v-show",value:t.visibleValues.length>0,expression:"visibleValues.length > 0"}],staticClass:"multiselect__tags-wrap"},[t._l(t.visibleValues,function(e,i){return[t._t("tag",[n("span",{key:i,staticClass:"multiselect__tag"},[n("span",{domProps:{textContent:t._s(t.getOptionLabel(e))}}),t._v(" "),n("i",{staticClass:"multiselect__tag-icon",attrs:{"aria-hidden":"true",tabindex:"1"},on:{keypress:function(n){if(!("button"in n)&&t._k(n.keyCode,"enter",13,n.key,"Enter"))return null;n.preventDefault(),t.removeElement(e)},mousedown:function(n){n.preventDefault(),t.removeElement(e)}}})])],{option:e,search:t.search,remove:t.removeElement})]})],2),t._v(" "),t.internalValue&&t.internalValue.length>t.limit?[t._t("limit",[n("strong",{staticClass:"multiselect__strong",domProps:{textContent:t._s(t.limitText(t.internalValue.length-t.limit))}})])]:t._e()],{search:t.search,remove:t.removeElement,values:t.visibleValues,isOpen:t.isOpen}),t._v(" "),n("transition",{attrs:{name:"multiselect__loading"}},[t._t("loading",[n("div",{directives:[{name:"show",rawName:"v-show",value:t.loading,expression:"loading"}],staticClass:"multiselect__spinner"})])],2),t._v(" "),t.searchable?n("input",{ref:"search",staticClass:"multiselect__input",style:t.inputStyle,attrs:{name:t.name,id:t.id,type:"text",autocomplete:"nope",placeholder:t.placeholder,disabled:t.disabled,tabindex:t.tabindex},domProps:{value:t.search},on:{input:function(e){t.updateSearch(e.target.value)},focus:function(e){e.preventDefault(),t.activate()},blur:function(e){e.preventDefault(),t.deactivate()},keyup:function(e){if(!("button"in e)&&t._k(e.keyCode,"esc",27,e.key,"Escape"))return null;t.deactivate()},keydown:[function(e){if(!("button"in e)&&t._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"]))return null;e.preventDefault(),t.pointerForward()},function(e){if(!("button"in e)&&t._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"]))return null;e.preventDefault(),t.pointerBackward()},function(e){if(!("button"in e)&&t._k(e.keyCode,"delete",[8,46],e.key,["Backspace","Delete"]))return null;e.stopPropagation(),t.removeLastElement()}],keypress:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")?(e.preventDefault(),e.stopPropagation(),e.target!==e.currentTarget?null:void t.addPointerElement(e)):null}}}):t._e(),t._v(" "),t.isSingleLabelVisible?n("span",{staticClass:"multiselect__single",on:{mousedown:function(e){return e.preventDefault(),t.toggle(e)}}},[t._t("singleLabel",[[t._v(t._s(t.currentOptionLabel))]],{option:t.singleValue})],2):t._e(),t._v(" "),t.isPlaceholderVisible?n("span",{staticClass:"multiselect__placeholder",on:{mousedown:function(e){return e.preventDefault(),t.toggle(e)}}},[t._t("placeholder",[t._v("\n "+t._s(t.placeholder)+"\n ")])],2):t._e()],2),t._v(" "),n("transition",{attrs:{name:"multiselect"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.isOpen,expression:"isOpen"}],ref:"list",staticClass:"multiselect__content-wrapper",style:{maxHeight:t.optimizedHeight+"px"},attrs:{tabindex:"-1"},on:{focus:t.activate,mousedown:function(t){t.preventDefault()}}},[n("ul",{staticClass:"multiselect__content",style:t.contentStyle},[t._t("beforeList"),t._v(" "),t.multiple&&t.max===t.internalValue.length?n("li",[n("span",{staticClass:"multiselect__option"},[t._t("maxElements",[t._v("Maximum of "+t._s(t.max)+" options selected. First remove a selected option to select another.")])],2)]):t._e(),t._v(" "),!t.max||t.internalValue.length<t.max?t._l(t.filteredOptions,function(e,i){return n("li",{key:i,staticClass:"multiselect__element"},[e&&(e.$isLabel||e.$isDisabled)?t._e():n("span",{staticClass:"multiselect__option",class:t.optionHighlight(i,e),attrs:{"data-select":e&&e.isTag?t.tagPlaceholder:t.selectLabelText,"data-selected":t.selectedLabelText,"data-deselect":t.deselectLabelText},on:{click:function(n){n.stopPropagation(),t.select(e)},mouseenter:function(e){if(e.target!==e.currentTarget)return null;t.pointerSet(i)}}},[t._t("option",[n("span",[t._v(t._s(t.getOptionLabel(e)))])],{option:e,search:t.search})],2),t._v(" "),e&&(e.$isLabel||e.$isDisabled)?n("span",{staticClass:"multiselect__option",class:t.groupHighlight(i,e),attrs:{"data-select":t.groupSelect&&t.selectGroupLabelText,"data-deselect":t.groupSelect&&t.deselectGroupLabelText},on:{mouseenter:function(e){if(e.target!==e.currentTarget)return null;t.groupSelect&&t.pointerSet(i)},mousedown:function(n){n.preventDefault(),t.selectGroup(e)}}},[t._t("option",[n("span",[t._v(t._s(t.getOptionLabel(e)))])],{option:e,search:t.search})],2):t._e()])}):t._e(),t._v(" "),n("li",{directives:[{name:"show",rawName:"v-show",value:t.showNoResults&&0===t.filteredOptions.length&&t.search&&!t.loading,expression:"showNoResults && (filteredOptions.length === 0 && search && !loading)"}]},[n("span",{staticClass:"multiselect__option"},[t._t("noResult",[t._v("No elements found. Consider changing the search query.")],{search:t.search})],2)]),t._v(" "),n("li",{directives:[{name:"show",rawName:"v-show",value:t.showNoOptions&&0===t.options.length&&!t.search&&!t.loading,expression:"showNoOptions && (options.length === 0 && !search && !loading)"}]},[n("span",{staticClass:"multiselect__option"},[t._t("noOptions",[t._v("List is empty.")])],2)]),t._v(" "),t._t("afterList")],2)])])],2)},r=[],o={render:i,staticRenderFns:r};e.a=o}])});
|
|
2551
2517
|
|
|
2518
|
+
/***/ }),
|
|
2519
|
+
|
|
2520
|
+
/***/ "8ea1":
|
|
2521
|
+
/***/ (function(module, exports) {
|
|
2522
|
+
|
|
2523
|
+
var documentAll = typeof document == 'object' && document.all;
|
|
2524
|
+
|
|
2525
|
+
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
2526
|
+
var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
|
|
2527
|
+
|
|
2528
|
+
module.exports = {
|
|
2529
|
+
all: documentAll,
|
|
2530
|
+
IS_HTMLDDA: IS_HTMLDDA
|
|
2531
|
+
};
|
|
2532
|
+
|
|
2533
|
+
|
|
2552
2534
|
/***/ }),
|
|
2553
2535
|
|
|
2554
2536
|
/***/ "8ff2":
|
|
@@ -2711,9 +2693,9 @@ var anObject = __webpack_require__("825a");
|
|
|
2711
2693
|
var toPropertyKey = __webpack_require__("a04b");
|
|
2712
2694
|
|
|
2713
2695
|
var $TypeError = TypeError;
|
|
2714
|
-
// eslint-disable-next-line es
|
|
2696
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
2715
2697
|
var $defineProperty = Object.defineProperty;
|
|
2716
|
-
// eslint-disable-next-line es
|
|
2698
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
2717
2699
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
2718
2700
|
var ENUMERABLE = 'enumerable';
|
|
2719
2701
|
var CONFIGURABLE = 'configurable';
|
|
@@ -2749,6 +2731,13 @@ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P
|
|
|
2749
2731
|
};
|
|
2750
2732
|
|
|
2751
2733
|
|
|
2734
|
+
/***/ }),
|
|
2735
|
+
|
|
2736
|
+
/***/ "a01d":
|
|
2737
|
+
/***/ (function(module) {
|
|
2738
|
+
|
|
2739
|
+
module.exports = JSON.parse("{\"Æ\":{\"codepoints\":[198],\"characters\":\"Æ\"},\"Æ\":{\"codepoints\":[198],\"characters\":\"Æ\"},\"&\":{\"codepoints\":[38],\"characters\":\"&\"},\"&\":{\"codepoints\":[38],\"characters\":\"&\"},\"Á\":{\"codepoints\":[193],\"characters\":\"Á\"},\"Á\":{\"codepoints\":[193],\"characters\":\"Á\"},\"Ă\":{\"codepoints\":[258],\"characters\":\"Ă\"},\"Â\":{\"codepoints\":[194],\"characters\":\"Â\"},\"Â\":{\"codepoints\":[194],\"characters\":\"Â\"},\"А\":{\"codepoints\":[1040],\"characters\":\"А\"},\"𝔄\":{\"codepoints\":[120068],\"characters\":\"𝔄\"},\"À\":{\"codepoints\":[192],\"characters\":\"À\"},\"À\":{\"codepoints\":[192],\"characters\":\"À\"},\"Α\":{\"codepoints\":[913],\"characters\":\"Α\"},\"Ā\":{\"codepoints\":[256],\"characters\":\"Ā\"},\"⩓\":{\"codepoints\":[10835],\"characters\":\"⩓\"},\"Ą\":{\"codepoints\":[260],\"characters\":\"Ą\"},\"𝔸\":{\"codepoints\":[120120],\"characters\":\"𝔸\"},\"⁡\":{\"codepoints\":[8289],\"characters\":\"\"},\"Å\":{\"codepoints\":[197],\"characters\":\"Å\"},\"Å\":{\"codepoints\":[197],\"characters\":\"Å\"},\"𝒜\":{\"codepoints\":[119964],\"characters\":\"𝒜\"},\"≔\":{\"codepoints\":[8788],\"characters\":\"≔\"},\"Ã\":{\"codepoints\":[195],\"characters\":\"Ã\"},\"Ã\":{\"codepoints\":[195],\"characters\":\"Ã\"},\"Ä\":{\"codepoints\":[196],\"characters\":\"Ä\"},\"Ä\":{\"codepoints\":[196],\"characters\":\"Ä\"},\"∖\":{\"codepoints\":[8726],\"characters\":\"∖\"},\"⫧\":{\"codepoints\":[10983],\"characters\":\"⫧\"},\"⌆\":{\"codepoints\":[8966],\"characters\":\"⌆\"},\"Б\":{\"codepoints\":[1041],\"characters\":\"Б\"},\"∵\":{\"codepoints\":[8757],\"characters\":\"∵\"},\"ℬ\":{\"codepoints\":[8492],\"characters\":\"ℬ\"},\"Β\":{\"codepoints\":[914],\"characters\":\"Β\"},\"𝔅\":{\"codepoints\":[120069],\"characters\":\"𝔅\"},\"𝔹\":{\"codepoints\":[120121],\"characters\":\"𝔹\"},\"˘\":{\"codepoints\":[728],\"characters\":\"˘\"},\"ℬ\":{\"codepoints\":[8492],\"characters\":\"ℬ\"},\"≎\":{\"codepoints\":[8782],\"characters\":\"≎\"},\"Ч\":{\"codepoints\":[1063],\"characters\":\"Ч\"},\"©\":{\"codepoints\":[169],\"characters\":\"©\"},\"©\":{\"codepoints\":[169],\"characters\":\"©\"},\"Ć\":{\"codepoints\":[262],\"characters\":\"Ć\"},\"⋒\":{\"codepoints\":[8914],\"characters\":\"⋒\"},\"ⅅ\":{\"codepoints\":[8517],\"characters\":\"ⅅ\"},\"ℭ\":{\"codepoints\":[8493],\"characters\":\"ℭ\"},\"Č\":{\"codepoints\":[268],\"characters\":\"Č\"},\"Ç\":{\"codepoints\":[199],\"characters\":\"Ç\"},\"Ç\":{\"codepoints\":[199],\"characters\":\"Ç\"},\"Ĉ\":{\"codepoints\":[264],\"characters\":\"Ĉ\"},\"∰\":{\"codepoints\":[8752],\"characters\":\"∰\"},\"Ċ\":{\"codepoints\":[266],\"characters\":\"Ċ\"},\"¸\":{\"codepoints\":[184],\"characters\":\"¸\"},\"·\":{\"codepoints\":[183],\"characters\":\"·\"},\"ℭ\":{\"codepoints\":[8493],\"characters\":\"ℭ\"},\"Χ\":{\"codepoints\":[935],\"characters\":\"Χ\"},\"⊙\":{\"codepoints\":[8857],\"characters\":\"⊙\"},\"⊖\":{\"codepoints\":[8854],\"characters\":\"⊖\"},\"⊕\":{\"codepoints\":[8853],\"characters\":\"⊕\"},\"⊗\":{\"codepoints\":[8855],\"characters\":\"⊗\"},\"∲\":{\"codepoints\":[8754],\"characters\":\"∲\"},\"”\":{\"codepoints\":[8221],\"characters\":\"”\"},\"’\":{\"codepoints\":[8217],\"characters\":\"’\"},\"∷\":{\"codepoints\":[8759],\"characters\":\"∷\"},\"⩴\":{\"codepoints\":[10868],\"characters\":\"⩴\"},\"≡\":{\"codepoints\":[8801],\"characters\":\"≡\"},\"∯\":{\"codepoints\":[8751],\"characters\":\"∯\"},\"∮\":{\"codepoints\":[8750],\"characters\":\"∮\"},\"ℂ\":{\"codepoints\":[8450],\"characters\":\"ℂ\"},\"∐\":{\"codepoints\":[8720],\"characters\":\"∐\"},\"∳\":{\"codepoints\":[8755],\"characters\":\"∳\"},\"⨯\":{\"codepoints\":[10799],\"characters\":\"⨯\"},\"𝒞\":{\"codepoints\":[119966],\"characters\":\"𝒞\"},\"⋓\":{\"codepoints\":[8915],\"characters\":\"⋓\"},\"≍\":{\"codepoints\":[8781],\"characters\":\"≍\"},\"ⅅ\":{\"codepoints\":[8517],\"characters\":\"ⅅ\"},\"⤑\":{\"codepoints\":[10513],\"characters\":\"⤑\"},\"Ђ\":{\"codepoints\":[1026],\"characters\":\"Ђ\"},\"Ѕ\":{\"codepoints\":[1029],\"characters\":\"Ѕ\"},\"Џ\":{\"codepoints\":[1039],\"characters\":\"Џ\"},\"‡\":{\"codepoints\":[8225],\"characters\":\"‡\"},\"↡\":{\"codepoints\":[8609],\"characters\":\"↡\"},\"⫤\":{\"codepoints\":[10980],\"characters\":\"⫤\"},\"Ď\":{\"codepoints\":[270],\"characters\":\"Ď\"},\"Д\":{\"codepoints\":[1044],\"characters\":\"Д\"},\"∇\":{\"codepoints\":[8711],\"characters\":\"∇\"},\"Δ\":{\"codepoints\":[916],\"characters\":\"Δ\"},\"𝔇\":{\"codepoints\":[120071],\"characters\":\"𝔇\"},\"´\":{\"codepoints\":[180],\"characters\":\"´\"},\"˙\":{\"codepoints\":[729],\"characters\":\"˙\"},\"˝\":{\"codepoints\":[733],\"characters\":\"˝\"},\"`\":{\"codepoints\":[96],\"characters\":\"`\"},\"˜\":{\"codepoints\":[732],\"characters\":\"˜\"},\"⋄\":{\"codepoints\":[8900],\"characters\":\"⋄\"},\"ⅆ\":{\"codepoints\":[8518],\"characters\":\"ⅆ\"},\"𝔻\":{\"codepoints\":[120123],\"characters\":\"𝔻\"},\"¨\":{\"codepoints\":[168],\"characters\":\"¨\"},\"⃜\":{\"codepoints\":[8412],\"characters\":\"⃜\"},\"≐\":{\"codepoints\":[8784],\"characters\":\"≐\"},\"∯\":{\"codepoints\":[8751],\"characters\":\"∯\"},\"¨\":{\"codepoints\":[168],\"characters\":\"¨\"},\"⇓\":{\"codepoints\":[8659],\"characters\":\"⇓\"},\"⇐\":{\"codepoints\":[8656],\"characters\":\"⇐\"},\"⇔\":{\"codepoints\":[8660],\"characters\":\"⇔\"},\"⫤\":{\"codepoints\":[10980],\"characters\":\"⫤\"},\"⟸\":{\"codepoints\":[10232],\"characters\":\"⟸\"},\"⟺\":{\"codepoints\":[10234],\"characters\":\"⟺\"},\"⟹\":{\"codepoints\":[10233],\"characters\":\"⟹\"},\"⇒\":{\"codepoints\":[8658],\"characters\":\"⇒\"},\"⊨\":{\"codepoints\":[8872],\"characters\":\"⊨\"},\"⇑\":{\"codepoints\":[8657],\"characters\":\"⇑\"},\"⇕\":{\"codepoints\":[8661],\"characters\":\"⇕\"},\"∥\":{\"codepoints\":[8741],\"characters\":\"∥\"},\"↓\":{\"codepoints\":[8595],\"characters\":\"↓\"},\"⤓\":{\"codepoints\":[10515],\"characters\":\"⤓\"},\"⇵\":{\"codepoints\":[8693],\"characters\":\"⇵\"},\"̑\":{\"codepoints\":[785],\"characters\":\"̑\"},\"⥐\":{\"codepoints\":[10576],\"characters\":\"⥐\"},\"⥞\":{\"codepoints\":[10590],\"characters\":\"⥞\"},\"↽\":{\"codepoints\":[8637],\"characters\":\"↽\"},\"⥖\":{\"codepoints\":[10582],\"characters\":\"⥖\"},\"⥟\":{\"codepoints\":[10591],\"characters\":\"⥟\"},\"⇁\":{\"codepoints\":[8641],\"characters\":\"⇁\"},\"⥗\":{\"codepoints\":[10583],\"characters\":\"⥗\"},\"⊤\":{\"codepoints\":[8868],\"characters\":\"⊤\"},\"↧\":{\"codepoints\":[8615],\"characters\":\"↧\"},\"⇓\":{\"codepoints\":[8659],\"characters\":\"⇓\"},\"𝒟\":{\"codepoints\":[119967],\"characters\":\"𝒟\"},\"Đ\":{\"codepoints\":[272],\"characters\":\"Đ\"},\"Ŋ\":{\"codepoints\":[330],\"characters\":\"Ŋ\"},\"Ð\":{\"codepoints\":[208],\"characters\":\"Ð\"},\"Ð\":{\"codepoints\":[208],\"characters\":\"Ð\"},\"É\":{\"codepoints\":[201],\"characters\":\"É\"},\"É\":{\"codepoints\":[201],\"characters\":\"É\"},\"Ě\":{\"codepoints\":[282],\"characters\":\"Ě\"},\"Ê\":{\"codepoints\":[202],\"characters\":\"Ê\"},\"Ê\":{\"codepoints\":[202],\"characters\":\"Ê\"},\"Э\":{\"codepoints\":[1069],\"characters\":\"Э\"},\"Ė\":{\"codepoints\":[278],\"characters\":\"Ė\"},\"𝔈\":{\"codepoints\":[120072],\"characters\":\"𝔈\"},\"È\":{\"codepoints\":[200],\"characters\":\"È\"},\"È\":{\"codepoints\":[200],\"characters\":\"È\"},\"∈\":{\"codepoints\":[8712],\"characters\":\"∈\"},\"Ē\":{\"codepoints\":[274],\"characters\":\"Ē\"},\"◻\":{\"codepoints\":[9723],\"characters\":\"◻\"},\"▫\":{\"codepoints\":[9643],\"characters\":\"▫\"},\"Ę\":{\"codepoints\":[280],\"characters\":\"Ę\"},\"𝔼\":{\"codepoints\":[120124],\"characters\":\"𝔼\"},\"Ε\":{\"codepoints\":[917],\"characters\":\"Ε\"},\"⩵\":{\"codepoints\":[10869],\"characters\":\"⩵\"},\"≂\":{\"codepoints\":[8770],\"characters\":\"≂\"},\"⇌\":{\"codepoints\":[8652],\"characters\":\"⇌\"},\"ℰ\":{\"codepoints\":[8496],\"characters\":\"ℰ\"},\"⩳\":{\"codepoints\":[10867],\"characters\":\"⩳\"},\"Η\":{\"codepoints\":[919],\"characters\":\"Η\"},\"Ë\":{\"codepoints\":[203],\"characters\":\"Ë\"},\"Ë\":{\"codepoints\":[203],\"characters\":\"Ë\"},\"∃\":{\"codepoints\":[8707],\"characters\":\"∃\"},\"ⅇ\":{\"codepoints\":[8519],\"characters\":\"ⅇ\"},\"Ф\":{\"codepoints\":[1060],\"characters\":\"Ф\"},\"𝔉\":{\"codepoints\":[120073],\"characters\":\"𝔉\"},\"◼\":{\"codepoints\":[9724],\"characters\":\"◼\"},\"▪\":{\"codepoints\":[9642],\"characters\":\"▪\"},\"𝔽\":{\"codepoints\":[120125],\"characters\":\"𝔽\"},\"∀\":{\"codepoints\":[8704],\"characters\":\"∀\"},\"ℱ\":{\"codepoints\":[8497],\"characters\":\"ℱ\"},\"ℱ\":{\"codepoints\":[8497],\"characters\":\"ℱ\"},\"Ѓ\":{\"codepoints\":[1027],\"characters\":\"Ѓ\"},\">\":{\"codepoints\":[62],\"characters\":\">\"},\">\":{\"codepoints\":[62],\"characters\":\">\"},\"Γ\":{\"codepoints\":[915],\"characters\":\"Γ\"},\"Ϝ\":{\"codepoints\":[988],\"characters\":\"Ϝ\"},\"Ğ\":{\"codepoints\":[286],\"characters\":\"Ğ\"},\"Ģ\":{\"codepoints\":[290],\"characters\":\"Ģ\"},\"Ĝ\":{\"codepoints\":[284],\"characters\":\"Ĝ\"},\"Г\":{\"codepoints\":[1043],\"characters\":\"Г\"},\"Ġ\":{\"codepoints\":[288],\"characters\":\"Ġ\"},\"𝔊\":{\"codepoints\":[120074],\"characters\":\"𝔊\"},\"⋙\":{\"codepoints\":[8921],\"characters\":\"⋙\"},\"𝔾\":{\"codepoints\":[120126],\"characters\":\"𝔾\"},\"≥\":{\"codepoints\":[8805],\"characters\":\"≥\"},\"⋛\":{\"codepoints\":[8923],\"characters\":\"⋛\"},\"≧\":{\"codepoints\":[8807],\"characters\":\"≧\"},\"⪢\":{\"codepoints\":[10914],\"characters\":\"⪢\"},\"≷\":{\"codepoints\":[8823],\"characters\":\"≷\"},\"⩾\":{\"codepoints\":[10878],\"characters\":\"⩾\"},\"≳\":{\"codepoints\":[8819],\"characters\":\"≳\"},\"𝒢\":{\"codepoints\":[119970],\"characters\":\"𝒢\"},\"≫\":{\"codepoints\":[8811],\"characters\":\"≫\"},\"Ъ\":{\"codepoints\":[1066],\"characters\":\"Ъ\"},\"ˇ\":{\"codepoints\":[711],\"characters\":\"ˇ\"},\"^\":{\"codepoints\":[94],\"characters\":\"^\"},\"Ĥ\":{\"codepoints\":[292],\"characters\":\"Ĥ\"},\"ℌ\":{\"codepoints\":[8460],\"characters\":\"ℌ\"},\"ℋ\":{\"codepoints\":[8459],\"characters\":\"ℋ\"},\"ℍ\":{\"codepoints\":[8461],\"characters\":\"ℍ\"},\"─\":{\"codepoints\":[9472],\"characters\":\"─\"},\"ℋ\":{\"codepoints\":[8459],\"characters\":\"ℋ\"},\"Ħ\":{\"codepoints\":[294],\"characters\":\"Ħ\"},\"≎\":{\"codepoints\":[8782],\"characters\":\"≎\"},\"≏\":{\"codepoints\":[8783],\"characters\":\"≏\"},\"Е\":{\"codepoints\":[1045],\"characters\":\"Е\"},\"IJ\":{\"codepoints\":[306],\"characters\":\"IJ\"},\"Ё\":{\"codepoints\":[1025],\"characters\":\"Ё\"},\"Í\":{\"codepoints\":[205],\"characters\":\"Í\"},\"Í\":{\"codepoints\":[205],\"characters\":\"Í\"},\"Î\":{\"codepoints\":[206],\"characters\":\"Î\"},\"Î\":{\"codepoints\":[206],\"characters\":\"Î\"},\"И\":{\"codepoints\":[1048],\"characters\":\"И\"},\"İ\":{\"codepoints\":[304],\"characters\":\"İ\"},\"ℑ\":{\"codepoints\":[8465],\"characters\":\"ℑ\"},\"Ì\":{\"codepoints\":[204],\"characters\":\"Ì\"},\"Ì\":{\"codepoints\":[204],\"characters\":\"Ì\"},\"ℑ\":{\"codepoints\":[8465],\"characters\":\"ℑ\"},\"Ī\":{\"codepoints\":[298],\"characters\":\"Ī\"},\"ⅈ\":{\"codepoints\":[8520],\"characters\":\"ⅈ\"},\"⇒\":{\"codepoints\":[8658],\"characters\":\"⇒\"},\"∬\":{\"codepoints\":[8748],\"characters\":\"∬\"},\"∫\":{\"codepoints\":[8747],\"characters\":\"∫\"},\"⋂\":{\"codepoints\":[8898],\"characters\":\"⋂\"},\"⁣\":{\"codepoints\":[8291],\"characters\":\"\"},\"⁢\":{\"codepoints\":[8290],\"characters\":\"\"},\"Į\":{\"codepoints\":[302],\"characters\":\"Į\"},\"𝕀\":{\"codepoints\":[120128],\"characters\":\"𝕀\"},\"Ι\":{\"codepoints\":[921],\"characters\":\"Ι\"},\"ℐ\":{\"codepoints\":[8464],\"characters\":\"ℐ\"},\"Ĩ\":{\"codepoints\":[296],\"characters\":\"Ĩ\"},\"І\":{\"codepoints\":[1030],\"characters\":\"І\"},\"Ï\":{\"codepoints\":[207],\"characters\":\"Ï\"},\"Ï\":{\"codepoints\":[207],\"characters\":\"Ï\"},\"Ĵ\":{\"codepoints\":[308],\"characters\":\"Ĵ\"},\"Й\":{\"codepoints\":[1049],\"characters\":\"Й\"},\"𝔍\":{\"codepoints\":[120077],\"characters\":\"𝔍\"},\"𝕁\":{\"codepoints\":[120129],\"characters\":\"𝕁\"},\"𝒥\":{\"codepoints\":[119973],\"characters\":\"𝒥\"},\"Ј\":{\"codepoints\":[1032],\"characters\":\"Ј\"},\"Є\":{\"codepoints\":[1028],\"characters\":\"Є\"},\"Х\":{\"codepoints\":[1061],\"characters\":\"Х\"},\"Ќ\":{\"codepoints\":[1036],\"characters\":\"Ќ\"},\"Κ\":{\"codepoints\":[922],\"characters\":\"Κ\"},\"Ķ\":{\"codepoints\":[310],\"characters\":\"Ķ\"},\"К\":{\"codepoints\":[1050],\"characters\":\"К\"},\"𝔎\":{\"codepoints\":[120078],\"characters\":\"𝔎\"},\"𝕂\":{\"codepoints\":[120130],\"characters\":\"𝕂\"},\"𝒦\":{\"codepoints\":[119974],\"characters\":\"𝒦\"},\"Љ\":{\"codepoints\":[1033],\"characters\":\"Љ\"},\"<\":{\"codepoints\":[60],\"characters\":\"<\"},\"<\":{\"codepoints\":[60],\"characters\":\"<\"},\"Ĺ\":{\"codepoints\":[313],\"characters\":\"Ĺ\"},\"Λ\":{\"codepoints\":[923],\"characters\":\"Λ\"},\"⟪\":{\"codepoints\":[10218],\"characters\":\"⟪\"},\"ℒ\":{\"codepoints\":[8466],\"characters\":\"ℒ\"},\"↞\":{\"codepoints\":[8606],\"characters\":\"↞\"},\"Ľ\":{\"codepoints\":[317],\"characters\":\"Ľ\"},\"Ļ\":{\"codepoints\":[315],\"characters\":\"Ļ\"},\"Л\":{\"codepoints\":[1051],\"characters\":\"Л\"},\"⟨\":{\"codepoints\":[10216],\"characters\":\"⟨\"},\"←\":{\"codepoints\":[8592],\"characters\":\"←\"},\"⇤\":{\"codepoints\":[8676],\"characters\":\"⇤\"},\"⇆\":{\"codepoints\":[8646],\"characters\":\"⇆\"},\"⌈\":{\"codepoints\":[8968],\"characters\":\"⌈\"},\"⟦\":{\"codepoints\":[10214],\"characters\":\"⟦\"},\"⥡\":{\"codepoints\":[10593],\"characters\":\"⥡\"},\"⇃\":{\"codepoints\":[8643],\"characters\":\"⇃\"},\"⥙\":{\"codepoints\":[10585],\"characters\":\"⥙\"},\"⌊\":{\"codepoints\":[8970],\"characters\":\"⌊\"},\"↔\":{\"codepoints\":[8596],\"characters\":\"↔\"},\"⥎\":{\"codepoints\":[10574],\"characters\":\"⥎\"},\"⊣\":{\"codepoints\":[8867],\"characters\":\"⊣\"},\"↤\":{\"codepoints\":[8612],\"characters\":\"↤\"},\"⥚\":{\"codepoints\":[10586],\"characters\":\"⥚\"},\"⊲\":{\"codepoints\":[8882],\"characters\":\"⊲\"},\"⧏\":{\"codepoints\":[10703],\"characters\":\"⧏\"},\"⊴\":{\"codepoints\":[8884],\"characters\":\"⊴\"},\"⥑\":{\"codepoints\":[10577],\"characters\":\"⥑\"},\"⥠\":{\"codepoints\":[10592],\"characters\":\"⥠\"},\"↿\":{\"codepoints\":[8639],\"characters\":\"↿\"},\"⥘\":{\"codepoints\":[10584],\"characters\":\"⥘\"},\"↼\":{\"codepoints\":[8636],\"characters\":\"↼\"},\"⥒\":{\"codepoints\":[10578],\"characters\":\"⥒\"},\"⇐\":{\"codepoints\":[8656],\"characters\":\"⇐\"},\"⇔\":{\"codepoints\":[8660],\"characters\":\"⇔\"},\"⋚\":{\"codepoints\":[8922],\"characters\":\"⋚\"},\"≦\":{\"codepoints\":[8806],\"characters\":\"≦\"},\"≶\":{\"codepoints\":[8822],\"characters\":\"≶\"},\"⪡\":{\"codepoints\":[10913],\"characters\":\"⪡\"},\"⩽\":{\"codepoints\":[10877],\"characters\":\"⩽\"},\"≲\":{\"codepoints\":[8818],\"characters\":\"≲\"},\"𝔏\":{\"codepoints\":[120079],\"characters\":\"𝔏\"},\"⋘\":{\"codepoints\":[8920],\"characters\":\"⋘\"},\"⇚\":{\"codepoints\":[8666],\"characters\":\"⇚\"},\"Ŀ\":{\"codepoints\":[319],\"characters\":\"Ŀ\"},\"⟵\":{\"codepoints\":[10229],\"characters\":\"⟵\"},\"⟷\":{\"codepoints\":[10231],\"characters\":\"⟷\"},\"⟶\":{\"codepoints\":[10230],\"characters\":\"⟶\"},\"⟸\":{\"codepoints\":[10232],\"characters\":\"⟸\"},\"⟺\":{\"codepoints\":[10234],\"characters\":\"⟺\"},\"⟹\":{\"codepoints\":[10233],\"characters\":\"⟹\"},\"𝕃\":{\"codepoints\":[120131],\"characters\":\"𝕃\"},\"↙\":{\"codepoints\":[8601],\"characters\":\"↙\"},\"↘\":{\"codepoints\":[8600],\"characters\":\"↘\"},\"ℒ\":{\"codepoints\":[8466],\"characters\":\"ℒ\"},\"↰\":{\"codepoints\":[8624],\"characters\":\"↰\"},\"Ł\":{\"codepoints\":[321],\"characters\":\"Ł\"},\"≪\":{\"codepoints\":[8810],\"characters\":\"≪\"},\"⤅\":{\"codepoints\":[10501],\"characters\":\"⤅\"},\"М\":{\"codepoints\":[1052],\"characters\":\"М\"},\" \":{\"codepoints\":[8287],\"characters\":\" \"},\"ℳ\":{\"codepoints\":[8499],\"characters\":\"ℳ\"},\"𝔐\":{\"codepoints\":[120080],\"characters\":\"𝔐\"},\"∓\":{\"codepoints\":[8723],\"characters\":\"∓\"},\"𝕄\":{\"codepoints\":[120132],\"characters\":\"𝕄\"},\"ℳ\":{\"codepoints\":[8499],\"characters\":\"ℳ\"},\"Μ\":{\"codepoints\":[924],\"characters\":\"Μ\"},\"Њ\":{\"codepoints\":[1034],\"characters\":\"Њ\"},\"Ń\":{\"codepoints\":[323],\"characters\":\"Ń\"},\"Ň\":{\"codepoints\":[327],\"characters\":\"Ň\"},\"Ņ\":{\"codepoints\":[325],\"characters\":\"Ņ\"},\"Н\":{\"codepoints\":[1053],\"characters\":\"Н\"},\"​\":{\"codepoints\":[8203],\"characters\":\"\"},\"​\":{\"codepoints\":[8203],\"characters\":\"\"},\"​\":{\"codepoints\":[8203],\"characters\":\"\"},\"​\":{\"codepoints\":[8203],\"characters\":\"\"},\"≫\":{\"codepoints\":[8811],\"characters\":\"≫\"},\"≪\":{\"codepoints\":[8810],\"characters\":\"≪\"},\"
\":{\"codepoints\":[10],\"characters\":\"\\n\"},\"𝔑\":{\"codepoints\":[120081],\"characters\":\"𝔑\"},\"⁠\":{\"codepoints\":[8288],\"characters\":\"\"},\" \":{\"codepoints\":[160],\"characters\":\" \"},\"ℕ\":{\"codepoints\":[8469],\"characters\":\"ℕ\"},\"⫬\":{\"codepoints\":[10988],\"characters\":\"⫬\"},\"≢\":{\"codepoints\":[8802],\"characters\":\"≢\"},\"≭\":{\"codepoints\":[8813],\"characters\":\"≭\"},\"∦\":{\"codepoints\":[8742],\"characters\":\"∦\"},\"∉\":{\"codepoints\":[8713],\"characters\":\"∉\"},\"≠\":{\"codepoints\":[8800],\"characters\":\"≠\"},\"≂̸\":{\"codepoints\":[8770,824],\"characters\":\"≂̸\"},\"∄\":{\"codepoints\":[8708],\"characters\":\"∄\"},\"≯\":{\"codepoints\":[8815],\"characters\":\"≯\"},\"≱\":{\"codepoints\":[8817],\"characters\":\"≱\"},\"≧̸\":{\"codepoints\":[8807,824],\"characters\":\"≧̸\"},\"≫̸\":{\"codepoints\":[8811,824],\"characters\":\"≫̸\"},\"≹\":{\"codepoints\":[8825],\"characters\":\"≹\"},\"⩾̸\":{\"codepoints\":[10878,824],\"characters\":\"⩾̸\"},\"≵\":{\"codepoints\":[8821],\"characters\":\"≵\"},\"≎̸\":{\"codepoints\":[8782,824],\"characters\":\"≎̸\"},\"≏̸\":{\"codepoints\":[8783,824],\"characters\":\"≏̸\"},\"⋪\":{\"codepoints\":[8938],\"characters\":\"⋪\"},\"⧏̸\":{\"codepoints\":[10703,824],\"characters\":\"⧏̸\"},\"⋬\":{\"codepoints\":[8940],\"characters\":\"⋬\"},\"≮\":{\"codepoints\":[8814],\"characters\":\"≮\"},\"≰\":{\"codepoints\":[8816],\"characters\":\"≰\"},\"≸\":{\"codepoints\":[8824],\"characters\":\"≸\"},\"≪̸\":{\"codepoints\":[8810,824],\"characters\":\"≪̸\"},\"⩽̸\":{\"codepoints\":[10877,824],\"characters\":\"⩽̸\"},\"≴\":{\"codepoints\":[8820],\"characters\":\"≴\"},\"⪢̸\":{\"codepoints\":[10914,824],\"characters\":\"⪢̸\"},\"⪡̸\":{\"codepoints\":[10913,824],\"characters\":\"⪡̸\"},\"⊀\":{\"codepoints\":[8832],\"characters\":\"⊀\"},\"⪯̸\":{\"codepoints\":[10927,824],\"characters\":\"⪯̸\"},\"⋠\":{\"codepoints\":[8928],\"characters\":\"⋠\"},\"∌\":{\"codepoints\":[8716],\"characters\":\"∌\"},\"⋫\":{\"codepoints\":[8939],\"characters\":\"⋫\"},\"⧐̸\":{\"codepoints\":[10704,824],\"characters\":\"⧐̸\"},\"⋭\":{\"codepoints\":[8941],\"characters\":\"⋭\"},\"⊏̸\":{\"codepoints\":[8847,824],\"characters\":\"⊏̸\"},\"⋢\":{\"codepoints\":[8930],\"characters\":\"⋢\"},\"⊐̸\":{\"codepoints\":[8848,824],\"characters\":\"⊐̸\"},\"⋣\":{\"codepoints\":[8931],\"characters\":\"⋣\"},\"⊂⃒\":{\"codepoints\":[8834,8402],\"characters\":\"⊂⃒\"},\"⊈\":{\"codepoints\":[8840],\"characters\":\"⊈\"},\"⊁\":{\"codepoints\":[8833],\"characters\":\"⊁\"},\"⪰̸\":{\"codepoints\":[10928,824],\"characters\":\"⪰̸\"},\"⋡\":{\"codepoints\":[8929],\"characters\":\"⋡\"},\"≿̸\":{\"codepoints\":[8831,824],\"characters\":\"≿̸\"},\"⊃⃒\":{\"codepoints\":[8835,8402],\"characters\":\"⊃⃒\"},\"⊉\":{\"codepoints\":[8841],\"characters\":\"⊉\"},\"≁\":{\"codepoints\":[8769],\"characters\":\"≁\"},\"≄\":{\"codepoints\":[8772],\"characters\":\"≄\"},\"≇\":{\"codepoints\":[8775],\"characters\":\"≇\"},\"≉\":{\"codepoints\":[8777],\"characters\":\"≉\"},\"∤\":{\"codepoints\":[8740],\"characters\":\"∤\"},\"𝒩\":{\"codepoints\":[119977],\"characters\":\"𝒩\"},\"Ñ\":{\"codepoints\":[209],\"characters\":\"Ñ\"},\"Ñ\":{\"codepoints\":[209],\"characters\":\"Ñ\"},\"Ν\":{\"codepoints\":[925],\"characters\":\"Ν\"},\"Œ\":{\"codepoints\":[338],\"characters\":\"Œ\"},\"Ó\":{\"codepoints\":[211],\"characters\":\"Ó\"},\"Ó\":{\"codepoints\":[211],\"characters\":\"Ó\"},\"Ô\":{\"codepoints\":[212],\"characters\":\"Ô\"},\"Ô\":{\"codepoints\":[212],\"characters\":\"Ô\"},\"О\":{\"codepoints\":[1054],\"characters\":\"О\"},\"Ő\":{\"codepoints\":[336],\"characters\":\"Ő\"},\"𝔒\":{\"codepoints\":[120082],\"characters\":\"𝔒\"},\"Ò\":{\"codepoints\":[210],\"characters\":\"Ò\"},\"Ò\":{\"codepoints\":[210],\"characters\":\"Ò\"},\"Ō\":{\"codepoints\":[332],\"characters\":\"Ō\"},\"Ω\":{\"codepoints\":[937],\"characters\":\"Ω\"},\"Ο\":{\"codepoints\":[927],\"characters\":\"Ο\"},\"𝕆\":{\"codepoints\":[120134],\"characters\":\"𝕆\"},\"“\":{\"codepoints\":[8220],\"characters\":\"“\"},\"‘\":{\"codepoints\":[8216],\"characters\":\"‘\"},\"⩔\":{\"codepoints\":[10836],\"characters\":\"⩔\"},\"𝒪\":{\"codepoints\":[119978],\"characters\":\"𝒪\"},\"Ø\":{\"codepoints\":[216],\"characters\":\"Ø\"},\"Ø\":{\"codepoints\":[216],\"characters\":\"Ø\"},\"Õ\":{\"codepoints\":[213],\"characters\":\"Õ\"},\"Õ\":{\"codepoints\":[213],\"characters\":\"Õ\"},\"⨷\":{\"codepoints\":[10807],\"characters\":\"⨷\"},\"Ö\":{\"codepoints\":[214],\"characters\":\"Ö\"},\"Ö\":{\"codepoints\":[214],\"characters\":\"Ö\"},\"‾\":{\"codepoints\":[8254],\"characters\":\"‾\"},\"⏞\":{\"codepoints\":[9182],\"characters\":\"⏞\"},\"⎴\":{\"codepoints\":[9140],\"characters\":\"⎴\"},\"⏜\":{\"codepoints\":[9180],\"characters\":\"⏜\"},\"∂\":{\"codepoints\":[8706],\"characters\":\"∂\"},\"П\":{\"codepoints\":[1055],\"characters\":\"П\"},\"𝔓\":{\"codepoints\":[120083],\"characters\":\"𝔓\"},\"Φ\":{\"codepoints\":[934],\"characters\":\"Φ\"},\"Π\":{\"codepoints\":[928],\"characters\":\"Π\"},\"±\":{\"codepoints\":[177],\"characters\":\"±\"},\"ℌ\":{\"codepoints\":[8460],\"characters\":\"ℌ\"},\"ℙ\":{\"codepoints\":[8473],\"characters\":\"ℙ\"},\"⪻\":{\"codepoints\":[10939],\"characters\":\"⪻\"},\"≺\":{\"codepoints\":[8826],\"characters\":\"≺\"},\"⪯\":{\"codepoints\":[10927],\"characters\":\"⪯\"},\"≼\":{\"codepoints\":[8828],\"characters\":\"≼\"},\"≾\":{\"codepoints\":[8830],\"characters\":\"≾\"},\"″\":{\"codepoints\":[8243],\"characters\":\"″\"},\"∏\":{\"codepoints\":[8719],\"characters\":\"∏\"},\"∷\":{\"codepoints\":[8759],\"characters\":\"∷\"},\"∝\":{\"codepoints\":[8733],\"characters\":\"∝\"},\"𝒫\":{\"codepoints\":[119979],\"characters\":\"𝒫\"},\"Ψ\":{\"codepoints\":[936],\"characters\":\"Ψ\"},\""\":{\"codepoints\":[34],\"characters\":\"\\\"\"},\""\":{\"codepoints\":[34],\"characters\":\"\\\"\"},\"𝔔\":{\"codepoints\":[120084],\"characters\":\"𝔔\"},\"ℚ\":{\"codepoints\":[8474],\"characters\":\"ℚ\"},\"𝒬\":{\"codepoints\":[119980],\"characters\":\"𝒬\"},\"⤐\":{\"codepoints\":[10512],\"characters\":\"⤐\"},\"®\":{\"codepoints\":[174],\"characters\":\"®\"},\"®\":{\"codepoints\":[174],\"characters\":\"®\"},\"Ŕ\":{\"codepoints\":[340],\"characters\":\"Ŕ\"},\"⟫\":{\"codepoints\":[10219],\"characters\":\"⟫\"},\"↠\":{\"codepoints\":[8608],\"characters\":\"↠\"},\"⤖\":{\"codepoints\":[10518],\"characters\":\"⤖\"},\"Ř\":{\"codepoints\":[344],\"characters\":\"Ř\"},\"Ŗ\":{\"codepoints\":[342],\"characters\":\"Ŗ\"},\"Р\":{\"codepoints\":[1056],\"characters\":\"Р\"},\"ℜ\":{\"codepoints\":[8476],\"characters\":\"ℜ\"},\"∋\":{\"codepoints\":[8715],\"characters\":\"∋\"},\"⇋\":{\"codepoints\":[8651],\"characters\":\"⇋\"},\"⥯\":{\"codepoints\":[10607],\"characters\":\"⥯\"},\"ℜ\":{\"codepoints\":[8476],\"characters\":\"ℜ\"},\"Ρ\":{\"codepoints\":[929],\"characters\":\"Ρ\"},\"⟩\":{\"codepoints\":[10217],\"characters\":\"⟩\"},\"→\":{\"codepoints\":[8594],\"characters\":\"→\"},\"⇥\":{\"codepoints\":[8677],\"characters\":\"⇥\"},\"⇄\":{\"codepoints\":[8644],\"characters\":\"⇄\"},\"⌉\":{\"codepoints\":[8969],\"characters\":\"⌉\"},\"⟧\":{\"codepoints\":[10215],\"characters\":\"⟧\"},\"⥝\":{\"codepoints\":[10589],\"characters\":\"⥝\"},\"⇂\":{\"codepoints\":[8642],\"characters\":\"⇂\"},\"⥕\":{\"codepoints\":[10581],\"characters\":\"⥕\"},\"⌋\":{\"codepoints\":[8971],\"characters\":\"⌋\"},\"⊢\":{\"codepoints\":[8866],\"characters\":\"⊢\"},\"↦\":{\"codepoints\":[8614],\"characters\":\"↦\"},\"⥛\":{\"codepoints\":[10587],\"characters\":\"⥛\"},\"⊳\":{\"codepoints\":[8883],\"characters\":\"⊳\"},\"⧐\":{\"codepoints\":[10704],\"characters\":\"⧐\"},\"⊵\":{\"codepoints\":[8885],\"characters\":\"⊵\"},\"⥏\":{\"codepoints\":[10575],\"characters\":\"⥏\"},\"⥜\":{\"codepoints\":[10588],\"characters\":\"⥜\"},\"↾\":{\"codepoints\":[8638],\"characters\":\"↾\"},\"⥔\":{\"codepoints\":[10580],\"characters\":\"⥔\"},\"⇀\":{\"codepoints\":[8640],\"characters\":\"⇀\"},\"⥓\":{\"codepoints\":[10579],\"characters\":\"⥓\"},\"⇒\":{\"codepoints\":[8658],\"characters\":\"⇒\"},\"ℝ\":{\"codepoints\":[8477],\"characters\":\"ℝ\"},\"⥰\":{\"codepoints\":[10608],\"characters\":\"⥰\"},\"⇛\":{\"codepoints\":[8667],\"characters\":\"⇛\"},\"ℛ\":{\"codepoints\":[8475],\"characters\":\"ℛ\"},\"↱\":{\"codepoints\":[8625],\"characters\":\"↱\"},\"⧴\":{\"codepoints\":[10740],\"characters\":\"⧴\"},\"Щ\":{\"codepoints\":[1065],\"characters\":\"Щ\"},\"Ш\":{\"codepoints\":[1064],\"characters\":\"Ш\"},\"Ь\":{\"codepoints\":[1068],\"characters\":\"Ь\"},\"Ś\":{\"codepoints\":[346],\"characters\":\"Ś\"},\"⪼\":{\"codepoints\":[10940],\"characters\":\"⪼\"},\"Š\":{\"codepoints\":[352],\"characters\":\"Š\"},\"Ş\":{\"codepoints\":[350],\"characters\":\"Ş\"},\"Ŝ\":{\"codepoints\":[348],\"characters\":\"Ŝ\"},\"С\":{\"codepoints\":[1057],\"characters\":\"С\"},\"𝔖\":{\"codepoints\":[120086],\"characters\":\"𝔖\"},\"↓\":{\"codepoints\":[8595],\"characters\":\"↓\"},\"←\":{\"codepoints\":[8592],\"characters\":\"←\"},\"→\":{\"codepoints\":[8594],\"characters\":\"→\"},\"↑\":{\"codepoints\":[8593],\"characters\":\"↑\"},\"Σ\":{\"codepoints\":[931],\"characters\":\"Σ\"},\"∘\":{\"codepoints\":[8728],\"characters\":\"∘\"},\"𝕊\":{\"codepoints\":[120138],\"characters\":\"𝕊\"},\"√\":{\"codepoints\":[8730],\"characters\":\"√\"},\"□\":{\"codepoints\":[9633],\"characters\":\"□\"},\"⊓\":{\"codepoints\":[8851],\"characters\":\"⊓\"},\"⊏\":{\"codepoints\":[8847],\"characters\":\"⊏\"},\"⊑\":{\"codepoints\":[8849],\"characters\":\"⊑\"},\"⊐\":{\"codepoints\":[8848],\"characters\":\"⊐\"},\"⊒\":{\"codepoints\":[8850],\"characters\":\"⊒\"},\"⊔\":{\"codepoints\":[8852],\"characters\":\"⊔\"},\"𝒮\":{\"codepoints\":[119982],\"characters\":\"𝒮\"},\"⋆\":{\"codepoints\":[8902],\"characters\":\"⋆\"},\"⋐\":{\"codepoints\":[8912],\"characters\":\"⋐\"},\"⋐\":{\"codepoints\":[8912],\"characters\":\"⋐\"},\"⊆\":{\"codepoints\":[8838],\"characters\":\"⊆\"},\"≻\":{\"codepoints\":[8827],\"characters\":\"≻\"},\"⪰\":{\"codepoints\":[10928],\"characters\":\"⪰\"},\"≽\":{\"codepoints\":[8829],\"characters\":\"≽\"},\"≿\":{\"codepoints\":[8831],\"characters\":\"≿\"},\"∋\":{\"codepoints\":[8715],\"characters\":\"∋\"},\"∑\":{\"codepoints\":[8721],\"characters\":\"∑\"},\"⋑\":{\"codepoints\":[8913],\"characters\":\"⋑\"},\"⊃\":{\"codepoints\":[8835],\"characters\":\"⊃\"},\"⊇\":{\"codepoints\":[8839],\"characters\":\"⊇\"},\"⋑\":{\"codepoints\":[8913],\"characters\":\"⋑\"},\"Þ\":{\"codepoints\":[222],\"characters\":\"Þ\"},\"Þ\":{\"codepoints\":[222],\"characters\":\"Þ\"},\"™\":{\"codepoints\":[8482],\"characters\":\"™\"},\"Ћ\":{\"codepoints\":[1035],\"characters\":\"Ћ\"},\"Ц\":{\"codepoints\":[1062],\"characters\":\"Ц\"},\"	\":{\"codepoints\":[9],\"characters\":\"\\t\"},\"Τ\":{\"codepoints\":[932],\"characters\":\"Τ\"},\"Ť\":{\"codepoints\":[356],\"characters\":\"Ť\"},\"Ţ\":{\"codepoints\":[354],\"characters\":\"Ţ\"},\"Т\":{\"codepoints\":[1058],\"characters\":\"Т\"},\"𝔗\":{\"codepoints\":[120087],\"characters\":\"𝔗\"},\"∴\":{\"codepoints\":[8756],\"characters\":\"∴\"},\"Θ\":{\"codepoints\":[920],\"characters\":\"Θ\"},\"  \":{\"codepoints\":[8287,8202],\"characters\":\" \"},\" \":{\"codepoints\":[8201],\"characters\":\" \"},\"∼\":{\"codepoints\":[8764],\"characters\":\"∼\"},\"≃\":{\"codepoints\":[8771],\"characters\":\"≃\"},\"≅\":{\"codepoints\":[8773],\"characters\":\"≅\"},\"≈\":{\"codepoints\":[8776],\"characters\":\"≈\"},\"𝕋\":{\"codepoints\":[120139],\"characters\":\"𝕋\"},\"⃛\":{\"codepoints\":[8411],\"characters\":\"⃛\"},\"𝒯\":{\"codepoints\":[119983],\"characters\":\"𝒯\"},\"Ŧ\":{\"codepoints\":[358],\"characters\":\"Ŧ\"},\"Ú\":{\"codepoints\":[218],\"characters\":\"Ú\"},\"Ú\":{\"codepoints\":[218],\"characters\":\"Ú\"},\"↟\":{\"codepoints\":[8607],\"characters\":\"↟\"},\"⥉\":{\"codepoints\":[10569],\"characters\":\"⥉\"},\"Ў\":{\"codepoints\":[1038],\"characters\":\"Ў\"},\"Ŭ\":{\"codepoints\":[364],\"characters\":\"Ŭ\"},\"Û\":{\"codepoints\":[219],\"characters\":\"Û\"},\"Û\":{\"codepoints\":[219],\"characters\":\"Û\"},\"У\":{\"codepoints\":[1059],\"characters\":\"У\"},\"Ű\":{\"codepoints\":[368],\"characters\":\"Ű\"},\"𝔘\":{\"codepoints\":[120088],\"characters\":\"𝔘\"},\"Ù\":{\"codepoints\":[217],\"characters\":\"Ù\"},\"Ù\":{\"codepoints\":[217],\"characters\":\"Ù\"},\"Ū\":{\"codepoints\":[362],\"characters\":\"Ū\"},\"_\":{\"codepoints\":[95],\"characters\":\"_\"},\"⏟\":{\"codepoints\":[9183],\"characters\":\"⏟\"},\"⎵\":{\"codepoints\":[9141],\"characters\":\"⎵\"},\"⏝\":{\"codepoints\":[9181],\"characters\":\"⏝\"},\"⋃\":{\"codepoints\":[8899],\"characters\":\"⋃\"},\"⊎\":{\"codepoints\":[8846],\"characters\":\"⊎\"},\"Ų\":{\"codepoints\":[370],\"characters\":\"Ų\"},\"𝕌\":{\"codepoints\":[120140],\"characters\":\"𝕌\"},\"↑\":{\"codepoints\":[8593],\"characters\":\"↑\"},\"⤒\":{\"codepoints\":[10514],\"characters\":\"⤒\"},\"⇅\":{\"codepoints\":[8645],\"characters\":\"⇅\"},\"↕\":{\"codepoints\":[8597],\"characters\":\"↕\"},\"⥮\":{\"codepoints\":[10606],\"characters\":\"⥮\"},\"⊥\":{\"codepoints\":[8869],\"characters\":\"⊥\"},\"↥\":{\"codepoints\":[8613],\"characters\":\"↥\"},\"⇑\":{\"codepoints\":[8657],\"characters\":\"⇑\"},\"⇕\":{\"codepoints\":[8661],\"characters\":\"⇕\"},\"↖\":{\"codepoints\":[8598],\"characters\":\"↖\"},\"↗\":{\"codepoints\":[8599],\"characters\":\"↗\"},\"ϒ\":{\"codepoints\":[978],\"characters\":\"ϒ\"},\"Υ\":{\"codepoints\":[933],\"characters\":\"Υ\"},\"Ů\":{\"codepoints\":[366],\"characters\":\"Ů\"},\"𝒰\":{\"codepoints\":[119984],\"characters\":\"𝒰\"},\"Ũ\":{\"codepoints\":[360],\"characters\":\"Ũ\"},\"Ü\":{\"codepoints\":[220],\"characters\":\"Ü\"},\"Ü\":{\"codepoints\":[220],\"characters\":\"Ü\"},\"⊫\":{\"codepoints\":[8875],\"characters\":\"⊫\"},\"⫫\":{\"codepoints\":[10987],\"characters\":\"⫫\"},\"В\":{\"codepoints\":[1042],\"characters\":\"В\"},\"⊩\":{\"codepoints\":[8873],\"characters\":\"⊩\"},\"⫦\":{\"codepoints\":[10982],\"characters\":\"⫦\"},\"⋁\":{\"codepoints\":[8897],\"characters\":\"⋁\"},\"‖\":{\"codepoints\":[8214],\"characters\":\"‖\"},\"‖\":{\"codepoints\":[8214],\"characters\":\"‖\"},\"∣\":{\"codepoints\":[8739],\"characters\":\"∣\"},\"|\":{\"codepoints\":[124],\"characters\":\"|\"},\"❘\":{\"codepoints\":[10072],\"characters\":\"❘\"},\"≀\":{\"codepoints\":[8768],\"characters\":\"≀\"},\" \":{\"codepoints\":[8202],\"characters\":\" \"},\"𝔙\":{\"codepoints\":[120089],\"characters\":\"𝔙\"},\"𝕍\":{\"codepoints\":[120141],\"characters\":\"𝕍\"},\"𝒱\":{\"codepoints\":[119985],\"characters\":\"𝒱\"},\"⊪\":{\"codepoints\":[8874],\"characters\":\"⊪\"},\"Ŵ\":{\"codepoints\":[372],\"characters\":\"Ŵ\"},\"⋀\":{\"codepoints\":[8896],\"characters\":\"⋀\"},\"𝔚\":{\"codepoints\":[120090],\"characters\":\"𝔚\"},\"𝕎\":{\"codepoints\":[120142],\"characters\":\"𝕎\"},\"𝒲\":{\"codepoints\":[119986],\"characters\":\"𝒲\"},\"𝔛\":{\"codepoints\":[120091],\"characters\":\"𝔛\"},\"Ξ\":{\"codepoints\":[926],\"characters\":\"Ξ\"},\"𝕏\":{\"codepoints\":[120143],\"characters\":\"𝕏\"},\"𝒳\":{\"codepoints\":[119987],\"characters\":\"𝒳\"},\"Я\":{\"codepoints\":[1071],\"characters\":\"Я\"},\"Ї\":{\"codepoints\":[1031],\"characters\":\"Ї\"},\"Ю\":{\"codepoints\":[1070],\"characters\":\"Ю\"},\"Ý\":{\"codepoints\":[221],\"characters\":\"Ý\"},\"Ý\":{\"codepoints\":[221],\"characters\":\"Ý\"},\"Ŷ\":{\"codepoints\":[374],\"characters\":\"Ŷ\"},\"Ы\":{\"codepoints\":[1067],\"characters\":\"Ы\"},\"𝔜\":{\"codepoints\":[120092],\"characters\":\"𝔜\"},\"𝕐\":{\"codepoints\":[120144],\"characters\":\"𝕐\"},\"𝒴\":{\"codepoints\":[119988],\"characters\":\"𝒴\"},\"Ÿ\":{\"codepoints\":[376],\"characters\":\"Ÿ\"},\"Ж\":{\"codepoints\":[1046],\"characters\":\"Ж\"},\"Ź\":{\"codepoints\":[377],\"characters\":\"Ź\"},\"Ž\":{\"codepoints\":[381],\"characters\":\"Ž\"},\"З\":{\"codepoints\":[1047],\"characters\":\"З\"},\"Ż\":{\"codepoints\":[379],\"characters\":\"Ż\"},\"​\":{\"codepoints\":[8203],\"characters\":\"\"},\"Ζ\":{\"codepoints\":[918],\"characters\":\"Ζ\"},\"ℨ\":{\"codepoints\":[8488],\"characters\":\"ℨ\"},\"ℤ\":{\"codepoints\":[8484],\"characters\":\"ℤ\"},\"𝒵\":{\"codepoints\":[119989],\"characters\":\"𝒵\"},\"á\":{\"codepoints\":[225],\"characters\":\"á\"},\"á\":{\"codepoints\":[225],\"characters\":\"á\"},\"ă\":{\"codepoints\":[259],\"characters\":\"ă\"},\"∾\":{\"codepoints\":[8766],\"characters\":\"∾\"},\"∾̳\":{\"codepoints\":[8766,819],\"characters\":\"∾̳\"},\"∿\":{\"codepoints\":[8767],\"characters\":\"∿\"},\"â\":{\"codepoints\":[226],\"characters\":\"â\"},\"â\":{\"codepoints\":[226],\"characters\":\"â\"},\"´\":{\"codepoints\":[180],\"characters\":\"´\"},\"´\":{\"codepoints\":[180],\"characters\":\"´\"},\"а\":{\"codepoints\":[1072],\"characters\":\"а\"},\"æ\":{\"codepoints\":[230],\"characters\":\"æ\"},\"æ\":{\"codepoints\":[230],\"characters\":\"æ\"},\"⁡\":{\"codepoints\":[8289],\"characters\":\"\"},\"𝔞\":{\"codepoints\":[120094],\"characters\":\"𝔞\"},\"à\":{\"codepoints\":[224],\"characters\":\"à\"},\"à\":{\"codepoints\":[224],\"characters\":\"à\"},\"ℵ\":{\"codepoints\":[8501],\"characters\":\"ℵ\"},\"ℵ\":{\"codepoints\":[8501],\"characters\":\"ℵ\"},\"α\":{\"codepoints\":[945],\"characters\":\"α\"},\"ā\":{\"codepoints\":[257],\"characters\":\"ā\"},\"⨿\":{\"codepoints\":[10815],\"characters\":\"⨿\"},\"&\":{\"codepoints\":[38],\"characters\":\"&\"},\"&\":{\"codepoints\":[38],\"characters\":\"&\"},\"∧\":{\"codepoints\":[8743],\"characters\":\"∧\"},\"⩕\":{\"codepoints\":[10837],\"characters\":\"⩕\"},\"⩜\":{\"codepoints\":[10844],\"characters\":\"⩜\"},\"⩘\":{\"codepoints\":[10840],\"characters\":\"⩘\"},\"⩚\":{\"codepoints\":[10842],\"characters\":\"⩚\"},\"∠\":{\"codepoints\":[8736],\"characters\":\"∠\"},\"⦤\":{\"codepoints\":[10660],\"characters\":\"⦤\"},\"∠\":{\"codepoints\":[8736],\"characters\":\"∠\"},\"∡\":{\"codepoints\":[8737],\"characters\":\"∡\"},\"⦨\":{\"codepoints\":[10664],\"characters\":\"⦨\"},\"⦩\":{\"codepoints\":[10665],\"characters\":\"⦩\"},\"⦪\":{\"codepoints\":[10666],\"characters\":\"⦪\"},\"⦫\":{\"codepoints\":[10667],\"characters\":\"⦫\"},\"⦬\":{\"codepoints\":[10668],\"characters\":\"⦬\"},\"⦭\":{\"codepoints\":[10669],\"characters\":\"⦭\"},\"⦮\":{\"codepoints\":[10670],\"characters\":\"⦮\"},\"⦯\":{\"codepoints\":[10671],\"characters\":\"⦯\"},\"∟\":{\"codepoints\":[8735],\"characters\":\"∟\"},\"⊾\":{\"codepoints\":[8894],\"characters\":\"⊾\"},\"⦝\":{\"codepoints\":[10653],\"characters\":\"⦝\"},\"∢\":{\"codepoints\":[8738],\"characters\":\"∢\"},\"Å\":{\"codepoints\":[197],\"characters\":\"Å\"},\"⍼\":{\"codepoints\":[9084],\"characters\":\"⍼\"},\"ą\":{\"codepoints\":[261],\"characters\":\"ą\"},\"𝕒\":{\"codepoints\":[120146],\"characters\":\"𝕒\"},\"≈\":{\"codepoints\":[8776],\"characters\":\"≈\"},\"⩰\":{\"codepoints\":[10864],\"characters\":\"⩰\"},\"⩯\":{\"codepoints\":[10863],\"characters\":\"⩯\"},\"≊\":{\"codepoints\":[8778],\"characters\":\"≊\"},\"≋\":{\"codepoints\":[8779],\"characters\":\"≋\"},\"'\":{\"codepoints\":[39],\"characters\":\"'\"},\"≈\":{\"codepoints\":[8776],\"characters\":\"≈\"},\"≊\":{\"codepoints\":[8778],\"characters\":\"≊\"},\"å\":{\"codepoints\":[229],\"characters\":\"å\"},\"å\":{\"codepoints\":[229],\"characters\":\"å\"},\"𝒶\":{\"codepoints\":[119990],\"characters\":\"𝒶\"},\"*\":{\"codepoints\":[42],\"characters\":\"*\"},\"≈\":{\"codepoints\":[8776],\"characters\":\"≈\"},\"≍\":{\"codepoints\":[8781],\"characters\":\"≍\"},\"ã\":{\"codepoints\":[227],\"characters\":\"ã\"},\"ã\":{\"codepoints\":[227],\"characters\":\"ã\"},\"ä\":{\"codepoints\":[228],\"characters\":\"ä\"},\"ä\":{\"codepoints\":[228],\"characters\":\"ä\"},\"∳\":{\"codepoints\":[8755],\"characters\":\"∳\"},\"⨑\":{\"codepoints\":[10769],\"characters\":\"⨑\"},\"⫭\":{\"codepoints\":[10989],\"characters\":\"⫭\"},\"≌\":{\"codepoints\":[8780],\"characters\":\"≌\"},\"϶\":{\"codepoints\":[1014],\"characters\":\"϶\"},\"‵\":{\"codepoints\":[8245],\"characters\":\"‵\"},\"∽\":{\"codepoints\":[8765],\"characters\":\"∽\"},\"⋍\":{\"codepoints\":[8909],\"characters\":\"⋍\"},\"⊽\":{\"codepoints\":[8893],\"characters\":\"⊽\"},\"⌅\":{\"codepoints\":[8965],\"characters\":\"⌅\"},\"⌅\":{\"codepoints\":[8965],\"characters\":\"⌅\"},\"⎵\":{\"codepoints\":[9141],\"characters\":\"⎵\"},\"⎶\":{\"codepoints\":[9142],\"characters\":\"⎶\"},\"≌\":{\"codepoints\":[8780],\"characters\":\"≌\"},\"б\":{\"codepoints\":[1073],\"characters\":\"б\"},\"„\":{\"codepoints\":[8222],\"characters\":\"„\"},\"∵\":{\"codepoints\":[8757],\"characters\":\"∵\"},\"∵\":{\"codepoints\":[8757],\"characters\":\"∵\"},\"⦰\":{\"codepoints\":[10672],\"characters\":\"⦰\"},\"϶\":{\"codepoints\":[1014],\"characters\":\"϶\"},\"ℬ\":{\"codepoints\":[8492],\"characters\":\"ℬ\"},\"β\":{\"codepoints\":[946],\"characters\":\"β\"},\"ℶ\":{\"codepoints\":[8502],\"characters\":\"ℶ\"},\"≬\":{\"codepoints\":[8812],\"characters\":\"≬\"},\"𝔟\":{\"codepoints\":[120095],\"characters\":\"𝔟\"},\"⋂\":{\"codepoints\":[8898],\"characters\":\"⋂\"},\"◯\":{\"codepoints\":[9711],\"characters\":\"◯\"},\"⋃\":{\"codepoints\":[8899],\"characters\":\"⋃\"},\"⨀\":{\"codepoints\":[10752],\"characters\":\"⨀\"},\"⨁\":{\"codepoints\":[10753],\"characters\":\"⨁\"},\"⨂\":{\"codepoints\":[10754],\"characters\":\"⨂\"},\"⨆\":{\"codepoints\":[10758],\"characters\":\"⨆\"},\"★\":{\"codepoints\":[9733],\"characters\":\"★\"},\"▽\":{\"codepoints\":[9661],\"characters\":\"▽\"},\"△\":{\"codepoints\":[9651],\"characters\":\"△\"},\"⨄\":{\"codepoints\":[10756],\"characters\":\"⨄\"},\"⋁\":{\"codepoints\":[8897],\"characters\":\"⋁\"},\"⋀\":{\"codepoints\":[8896],\"characters\":\"⋀\"},\"⤍\":{\"codepoints\":[10509],\"characters\":\"⤍\"},\"⧫\":{\"codepoints\":[10731],\"characters\":\"⧫\"},\"▪\":{\"codepoints\":[9642],\"characters\":\"▪\"},\"▴\":{\"codepoints\":[9652],\"characters\":\"▴\"},\"▾\":{\"codepoints\":[9662],\"characters\":\"▾\"},\"◂\":{\"codepoints\":[9666],\"characters\":\"◂\"},\"▸\":{\"codepoints\":[9656],\"characters\":\"▸\"},\"␣\":{\"codepoints\":[9251],\"characters\":\"␣\"},\"▒\":{\"codepoints\":[9618],\"characters\":\"▒\"},\"░\":{\"codepoints\":[9617],\"characters\":\"░\"},\"▓\":{\"codepoints\":[9619],\"characters\":\"▓\"},\"█\":{\"codepoints\":[9608],\"characters\":\"█\"},\"=⃥\":{\"codepoints\":[61,8421],\"characters\":\"=⃥\"},\"≡⃥\":{\"codepoints\":[8801,8421],\"characters\":\"≡⃥\"},\"⌐\":{\"codepoints\":[8976],\"characters\":\"⌐\"},\"𝕓\":{\"codepoints\":[120147],\"characters\":\"𝕓\"},\"⊥\":{\"codepoints\":[8869],\"characters\":\"⊥\"},\"⊥\":{\"codepoints\":[8869],\"characters\":\"⊥\"},\"⋈\":{\"codepoints\":[8904],\"characters\":\"⋈\"},\"╗\":{\"codepoints\":[9559],\"characters\":\"╗\"},\"╔\":{\"codepoints\":[9556],\"characters\":\"╔\"},\"╖\":{\"codepoints\":[9558],\"characters\":\"╖\"},\"╓\":{\"codepoints\":[9555],\"characters\":\"╓\"},\"═\":{\"codepoints\":[9552],\"characters\":\"═\"},\"╦\":{\"codepoints\":[9574],\"characters\":\"╦\"},\"╩\":{\"codepoints\":[9577],\"characters\":\"╩\"},\"╤\":{\"codepoints\":[9572],\"characters\":\"╤\"},\"╧\":{\"codepoints\":[9575],\"characters\":\"╧\"},\"╝\":{\"codepoints\":[9565],\"characters\":\"╝\"},\"╚\":{\"codepoints\":[9562],\"characters\":\"╚\"},\"╜\":{\"codepoints\":[9564],\"characters\":\"╜\"},\"╙\":{\"codepoints\":[9561],\"characters\":\"╙\"},\"║\":{\"codepoints\":[9553],\"characters\":\"║\"},\"╬\":{\"codepoints\":[9580],\"characters\":\"╬\"},\"╣\":{\"codepoints\":[9571],\"characters\":\"╣\"},\"╠\":{\"codepoints\":[9568],\"characters\":\"╠\"},\"╫\":{\"codepoints\":[9579],\"characters\":\"╫\"},\"╢\":{\"codepoints\":[9570],\"characters\":\"╢\"},\"╟\":{\"codepoints\":[9567],\"characters\":\"╟\"},\"⧉\":{\"codepoints\":[10697],\"characters\":\"⧉\"},\"╕\":{\"codepoints\":[9557],\"characters\":\"╕\"},\"╒\":{\"codepoints\":[9554],\"characters\":\"╒\"},\"┐\":{\"codepoints\":[9488],\"characters\":\"┐\"},\"┌\":{\"codepoints\":[9484],\"characters\":\"┌\"},\"─\":{\"codepoints\":[9472],\"characters\":\"─\"},\"╥\":{\"codepoints\":[9573],\"characters\":\"╥\"},\"╨\":{\"codepoints\":[9576],\"characters\":\"╨\"},\"┬\":{\"codepoints\":[9516],\"characters\":\"┬\"},\"┴\":{\"codepoints\":[9524],\"characters\":\"┴\"},\"⊟\":{\"codepoints\":[8863],\"characters\":\"⊟\"},\"⊞\":{\"codepoints\":[8862],\"characters\":\"⊞\"},\"⊠\":{\"codepoints\":[8864],\"characters\":\"⊠\"},\"╛\":{\"codepoints\":[9563],\"characters\":\"╛\"},\"╘\":{\"codepoints\":[9560],\"characters\":\"╘\"},\"┘\":{\"codepoints\":[9496],\"characters\":\"┘\"},\"└\":{\"codepoints\":[9492],\"characters\":\"└\"},\"│\":{\"codepoints\":[9474],\"characters\":\"│\"},\"╪\":{\"codepoints\":[9578],\"characters\":\"╪\"},\"╡\":{\"codepoints\":[9569],\"characters\":\"╡\"},\"╞\":{\"codepoints\":[9566],\"characters\":\"╞\"},\"┼\":{\"codepoints\":[9532],\"characters\":\"┼\"},\"┤\":{\"codepoints\":[9508],\"characters\":\"┤\"},\"├\":{\"codepoints\":[9500],\"characters\":\"├\"},\"‵\":{\"codepoints\":[8245],\"characters\":\"‵\"},\"˘\":{\"codepoints\":[728],\"characters\":\"˘\"},\"¦\":{\"codepoints\":[166],\"characters\":\"¦\"},\"¦\":{\"codepoints\":[166],\"characters\":\"¦\"},\"𝒷\":{\"codepoints\":[119991],\"characters\":\"𝒷\"},\"⁏\":{\"codepoints\":[8271],\"characters\":\"⁏\"},\"∽\":{\"codepoints\":[8765],\"characters\":\"∽\"},\"⋍\":{\"codepoints\":[8909],\"characters\":\"⋍\"},\"\\":{\"codepoints\":[92],\"characters\":\"\\\\\"},\"⧅\":{\"codepoints\":[10693],\"characters\":\"⧅\"},\"⟈\":{\"codepoints\":[10184],\"characters\":\"⟈\"},\"•\":{\"codepoints\":[8226],\"characters\":\"•\"},\"•\":{\"codepoints\":[8226],\"characters\":\"•\"},\"≎\":{\"codepoints\":[8782],\"characters\":\"≎\"},\"⪮\":{\"codepoints\":[10926],\"characters\":\"⪮\"},\"≏\":{\"codepoints\":[8783],\"characters\":\"≏\"},\"≏\":{\"codepoints\":[8783],\"characters\":\"≏\"},\"ć\":{\"codepoints\":[263],\"characters\":\"ć\"},\"∩\":{\"codepoints\":[8745],\"characters\":\"∩\"},\"⩄\":{\"codepoints\":[10820],\"characters\":\"⩄\"},\"⩉\":{\"codepoints\":[10825],\"characters\":\"⩉\"},\"⩋\":{\"codepoints\":[10827],\"characters\":\"⩋\"},\"⩇\":{\"codepoints\":[10823],\"characters\":\"⩇\"},\"⩀\":{\"codepoints\":[10816],\"characters\":\"⩀\"},\"∩︀\":{\"codepoints\":[8745,65024],\"characters\":\"∩︀\"},\"⁁\":{\"codepoints\":[8257],\"characters\":\"⁁\"},\"ˇ\":{\"codepoints\":[711],\"characters\":\"ˇ\"},\"⩍\":{\"codepoints\":[10829],\"characters\":\"⩍\"},\"č\":{\"codepoints\":[269],\"characters\":\"č\"},\"ç\":{\"codepoints\":[231],\"characters\":\"ç\"},\"ç\":{\"codepoints\":[231],\"characters\":\"ç\"},\"ĉ\":{\"codepoints\":[265],\"characters\":\"ĉ\"},\"⩌\":{\"codepoints\":[10828],\"characters\":\"⩌\"},\"⩐\":{\"codepoints\":[10832],\"characters\":\"⩐\"},\"ċ\":{\"codepoints\":[267],\"characters\":\"ċ\"},\"¸\":{\"codepoints\":[184],\"characters\":\"¸\"},\"¸\":{\"codepoints\":[184],\"characters\":\"¸\"},\"⦲\":{\"codepoints\":[10674],\"characters\":\"⦲\"},\"¢\":{\"codepoints\":[162],\"characters\":\"¢\"},\"¢\":{\"codepoints\":[162],\"characters\":\"¢\"},\"·\":{\"codepoints\":[183],\"characters\":\"·\"},\"𝔠\":{\"codepoints\":[120096],\"characters\":\"𝔠\"},\"ч\":{\"codepoints\":[1095],\"characters\":\"ч\"},\"✓\":{\"codepoints\":[10003],\"characters\":\"✓\"},\"✓\":{\"codepoints\":[10003],\"characters\":\"✓\"},\"χ\":{\"codepoints\":[967],\"characters\":\"χ\"},\"○\":{\"codepoints\":[9675],\"characters\":\"○\"},\"⧃\":{\"codepoints\":[10691],\"characters\":\"⧃\"},\"ˆ\":{\"codepoints\":[710],\"characters\":\"ˆ\"},\"≗\":{\"codepoints\":[8791],\"characters\":\"≗\"},\"↺\":{\"codepoints\":[8634],\"characters\":\"↺\"},\"↻\":{\"codepoints\":[8635],\"characters\":\"↻\"},\"®\":{\"codepoints\":[174],\"characters\":\"®\"},\"Ⓢ\":{\"codepoints\":[9416],\"characters\":\"Ⓢ\"},\"⊛\":{\"codepoints\":[8859],\"characters\":\"⊛\"},\"⊚\":{\"codepoints\":[8858],\"characters\":\"⊚\"},\"⊝\":{\"codepoints\":[8861],\"characters\":\"⊝\"},\"≗\":{\"codepoints\":[8791],\"characters\":\"≗\"},\"⨐\":{\"codepoints\":[10768],\"characters\":\"⨐\"},\"⫯\":{\"codepoints\":[10991],\"characters\":\"⫯\"},\"⧂\":{\"codepoints\":[10690],\"characters\":\"⧂\"},\"♣\":{\"codepoints\":[9827],\"characters\":\"♣\"},\"♣\":{\"codepoints\":[9827],\"characters\":\"♣\"},\":\":{\"codepoints\":[58],\"characters\":\":\"},\"≔\":{\"codepoints\":[8788],\"characters\":\"≔\"},\"≔\":{\"codepoints\":[8788],\"characters\":\"≔\"},\",\":{\"codepoints\":[44],\"characters\":\",\"},\"@\":{\"codepoints\":[64],\"characters\":\"@\"},\"∁\":{\"codepoints\":[8705],\"characters\":\"∁\"},\"∘\":{\"codepoints\":[8728],\"characters\":\"∘\"},\"∁\":{\"codepoints\":[8705],\"characters\":\"∁\"},\"ℂ\":{\"codepoints\":[8450],\"characters\":\"ℂ\"},\"≅\":{\"codepoints\":[8773],\"characters\":\"≅\"},\"⩭\":{\"codepoints\":[10861],\"characters\":\"⩭\"},\"∮\":{\"codepoints\":[8750],\"characters\":\"∮\"},\"𝕔\":{\"codepoints\":[120148],\"characters\":\"𝕔\"},\"∐\":{\"codepoints\":[8720],\"characters\":\"∐\"},\"©\":{\"codepoints\":[169],\"characters\":\"©\"},\"©\":{\"codepoints\":[169],\"characters\":\"©\"},\"℗\":{\"codepoints\":[8471],\"characters\":\"℗\"},\"↵\":{\"codepoints\":[8629],\"characters\":\"↵\"},\"✗\":{\"codepoints\":[10007],\"characters\":\"✗\"},\"𝒸\":{\"codepoints\":[119992],\"characters\":\"𝒸\"},\"⫏\":{\"codepoints\":[10959],\"characters\":\"⫏\"},\"⫑\":{\"codepoints\":[10961],\"characters\":\"⫑\"},\"⫐\":{\"codepoints\":[10960],\"characters\":\"⫐\"},\"⫒\":{\"codepoints\":[10962],\"characters\":\"⫒\"},\"⋯\":{\"codepoints\":[8943],\"characters\":\"⋯\"},\"⤸\":{\"codepoints\":[10552],\"characters\":\"⤸\"},\"⤵\":{\"codepoints\":[10549],\"characters\":\"⤵\"},\"⋞\":{\"codepoints\":[8926],\"characters\":\"⋞\"},\"⋟\":{\"codepoints\":[8927],\"characters\":\"⋟\"},\"↶\":{\"codepoints\":[8630],\"characters\":\"↶\"},\"⤽\":{\"codepoints\":[10557],\"characters\":\"⤽\"},\"∪\":{\"codepoints\":[8746],\"characters\":\"∪\"},\"⩈\":{\"codepoints\":[10824],\"characters\":\"⩈\"},\"⩆\":{\"codepoints\":[10822],\"characters\":\"⩆\"},\"⩊\":{\"codepoints\":[10826],\"characters\":\"⩊\"},\"⊍\":{\"codepoints\":[8845],\"characters\":\"⊍\"},\"⩅\":{\"codepoints\":[10821],\"characters\":\"⩅\"},\"∪︀\":{\"codepoints\":[8746,65024],\"characters\":\"∪︀\"},\"↷\":{\"codepoints\":[8631],\"characters\":\"↷\"},\"⤼\":{\"codepoints\":[10556],\"characters\":\"⤼\"},\"⋞\":{\"codepoints\":[8926],\"characters\":\"⋞\"},\"⋟\":{\"codepoints\":[8927],\"characters\":\"⋟\"},\"⋎\":{\"codepoints\":[8910],\"characters\":\"⋎\"},\"⋏\":{\"codepoints\":[8911],\"characters\":\"⋏\"},\"¤\":{\"codepoints\":[164],\"characters\":\"¤\"},\"¤\":{\"codepoints\":[164],\"characters\":\"¤\"},\"↶\":{\"codepoints\":[8630],\"characters\":\"↶\"},\"↷\":{\"codepoints\":[8631],\"characters\":\"↷\"},\"⋎\":{\"codepoints\":[8910],\"characters\":\"⋎\"},\"⋏\":{\"codepoints\":[8911],\"characters\":\"⋏\"},\"∲\":{\"codepoints\":[8754],\"characters\":\"∲\"},\"∱\":{\"codepoints\":[8753],\"characters\":\"∱\"},\"⌭\":{\"codepoints\":[9005],\"characters\":\"⌭\"},\"⇓\":{\"codepoints\":[8659],\"characters\":\"⇓\"},\"⥥\":{\"codepoints\":[10597],\"characters\":\"⥥\"},\"†\":{\"codepoints\":[8224],\"characters\":\"†\"},\"ℸ\":{\"codepoints\":[8504],\"characters\":\"ℸ\"},\"↓\":{\"codepoints\":[8595],\"characters\":\"↓\"},\"‐\":{\"codepoints\":[8208],\"characters\":\"‐\"},\"⊣\":{\"codepoints\":[8867],\"characters\":\"⊣\"},\"⤏\":{\"codepoints\":[10511],\"characters\":\"⤏\"},\"˝\":{\"codepoints\":[733],\"characters\":\"˝\"},\"ď\":{\"codepoints\":[271],\"characters\":\"ď\"},\"д\":{\"codepoints\":[1076],\"characters\":\"д\"},\"ⅆ\":{\"codepoints\":[8518],\"characters\":\"ⅆ\"},\"‡\":{\"codepoints\":[8225],\"characters\":\"‡\"},\"⇊\":{\"codepoints\":[8650],\"characters\":\"⇊\"},\"⩷\":{\"codepoints\":[10871],\"characters\":\"⩷\"},\"°\":{\"codepoints\":[176],\"characters\":\"°\"},\"°\":{\"codepoints\":[176],\"characters\":\"°\"},\"δ\":{\"codepoints\":[948],\"characters\":\"δ\"},\"⦱\":{\"codepoints\":[10673],\"characters\":\"⦱\"},\"⥿\":{\"codepoints\":[10623],\"characters\":\"⥿\"},\"𝔡\":{\"codepoints\":[120097],\"characters\":\"𝔡\"},\"⇃\":{\"codepoints\":[8643],\"characters\":\"⇃\"},\"⇂\":{\"codepoints\":[8642],\"characters\":\"⇂\"},\"⋄\":{\"codepoints\":[8900],\"characters\":\"⋄\"},\"⋄\":{\"codepoints\":[8900],\"characters\":\"⋄\"},\"♦\":{\"codepoints\":[9830],\"characters\":\"♦\"},\"♦\":{\"codepoints\":[9830],\"characters\":\"♦\"},\"¨\":{\"codepoints\":[168],\"characters\":\"¨\"},\"ϝ\":{\"codepoints\":[989],\"characters\":\"ϝ\"},\"⋲\":{\"codepoints\":[8946],\"characters\":\"⋲\"},\"÷\":{\"codepoints\":[247],\"characters\":\"÷\"},\"÷\":{\"codepoints\":[247],\"characters\":\"÷\"},\"÷\":{\"codepoints\":[247],\"characters\":\"÷\"},\"⋇\":{\"codepoints\":[8903],\"characters\":\"⋇\"},\"⋇\":{\"codepoints\":[8903],\"characters\":\"⋇\"},\"ђ\":{\"codepoints\":[1106],\"characters\":\"ђ\"},\"⌞\":{\"codepoints\":[8990],\"characters\":\"⌞\"},\"⌍\":{\"codepoints\":[8973],\"characters\":\"⌍\"},\"$\":{\"codepoints\":[36],\"characters\":\"$\"},\"𝕕\":{\"codepoints\":[120149],\"characters\":\"𝕕\"},\"˙\":{\"codepoints\":[729],\"characters\":\"˙\"},\"≐\":{\"codepoints\":[8784],\"characters\":\"≐\"},\"≑\":{\"codepoints\":[8785],\"characters\":\"≑\"},\"∸\":{\"codepoints\":[8760],\"characters\":\"∸\"},\"∔\":{\"codepoints\":[8724],\"characters\":\"∔\"},\"⊡\":{\"codepoints\":[8865],\"characters\":\"⊡\"},\"⌆\":{\"codepoints\":[8966],\"characters\":\"⌆\"},\"↓\":{\"codepoints\":[8595],\"characters\":\"↓\"},\"⇊\":{\"codepoints\":[8650],\"characters\":\"⇊\"},\"⇃\":{\"codepoints\":[8643],\"characters\":\"⇃\"},\"⇂\":{\"codepoints\":[8642],\"characters\":\"⇂\"},\"⤐\":{\"codepoints\":[10512],\"characters\":\"⤐\"},\"⌟\":{\"codepoints\":[8991],\"characters\":\"⌟\"},\"⌌\":{\"codepoints\":[8972],\"characters\":\"⌌\"},\"𝒹\":{\"codepoints\":[119993],\"characters\":\"𝒹\"},\"ѕ\":{\"codepoints\":[1109],\"characters\":\"ѕ\"},\"⧶\":{\"codepoints\":[10742],\"characters\":\"⧶\"},\"đ\":{\"codepoints\":[273],\"characters\":\"đ\"},\"⋱\":{\"codepoints\":[8945],\"characters\":\"⋱\"},\"▿\":{\"codepoints\":[9663],\"characters\":\"▿\"},\"▾\":{\"codepoints\":[9662],\"characters\":\"▾\"},\"⇵\":{\"codepoints\":[8693],\"characters\":\"⇵\"},\"⥯\":{\"codepoints\":[10607],\"characters\":\"⥯\"},\"⦦\":{\"codepoints\":[10662],\"characters\":\"⦦\"},\"џ\":{\"codepoints\":[1119],\"characters\":\"џ\"},\"⟿\":{\"codepoints\":[10239],\"characters\":\"⟿\"},\"⩷\":{\"codepoints\":[10871],\"characters\":\"⩷\"},\"≑\":{\"codepoints\":[8785],\"characters\":\"≑\"},\"é\":{\"codepoints\":[233],\"characters\":\"é\"},\"é\":{\"codepoints\":[233],\"characters\":\"é\"},\"⩮\":{\"codepoints\":[10862],\"characters\":\"⩮\"},\"ě\":{\"codepoints\":[283],\"characters\":\"ě\"},\"≖\":{\"codepoints\":[8790],\"characters\":\"≖\"},\"ê\":{\"codepoints\":[234],\"characters\":\"ê\"},\"ê\":{\"codepoints\":[234],\"characters\":\"ê\"},\"≕\":{\"codepoints\":[8789],\"characters\":\"≕\"},\"э\":{\"codepoints\":[1101],\"characters\":\"э\"},\"ė\":{\"codepoints\":[279],\"characters\":\"ė\"},\"ⅇ\":{\"codepoints\":[8519],\"characters\":\"ⅇ\"},\"≒\":{\"codepoints\":[8786],\"characters\":\"≒\"},\"𝔢\":{\"codepoints\":[120098],\"characters\":\"𝔢\"},\"⪚\":{\"codepoints\":[10906],\"characters\":\"⪚\"},\"è\":{\"codepoints\":[232],\"characters\":\"è\"},\"è\":{\"codepoints\":[232],\"characters\":\"è\"},\"⪖\":{\"codepoints\":[10902],\"characters\":\"⪖\"},\"⪘\":{\"codepoints\":[10904],\"characters\":\"⪘\"},\"⪙\":{\"codepoints\":[10905],\"characters\":\"⪙\"},\"⏧\":{\"codepoints\":[9191],\"characters\":\"⏧\"},\"ℓ\":{\"codepoints\":[8467],\"characters\":\"ℓ\"},\"⪕\":{\"codepoints\":[10901],\"characters\":\"⪕\"},\"⪗\":{\"codepoints\":[10903],\"characters\":\"⪗\"},\"ē\":{\"codepoints\":[275],\"characters\":\"ē\"},\"∅\":{\"codepoints\":[8709],\"characters\":\"∅\"},\"∅\":{\"codepoints\":[8709],\"characters\":\"∅\"},\"∅\":{\"codepoints\":[8709],\"characters\":\"∅\"},\" \":{\"codepoints\":[8196],\"characters\":\" \"},\" \":{\"codepoints\":[8197],\"characters\":\" \"},\" \":{\"codepoints\":[8195],\"characters\":\" \"},\"ŋ\":{\"codepoints\":[331],\"characters\":\"ŋ\"},\" \":{\"codepoints\":[8194],\"characters\":\" \"},\"ę\":{\"codepoints\":[281],\"characters\":\"ę\"},\"𝕖\":{\"codepoints\":[120150],\"characters\":\"𝕖\"},\"⋕\":{\"codepoints\":[8917],\"characters\":\"⋕\"},\"⧣\":{\"codepoints\":[10723],\"characters\":\"⧣\"},\"⩱\":{\"codepoints\":[10865],\"characters\":\"⩱\"},\"ε\":{\"codepoints\":[949],\"characters\":\"ε\"},\"ε\":{\"codepoints\":[949],\"characters\":\"ε\"},\"ϵ\":{\"codepoints\":[1013],\"characters\":\"ϵ\"},\"≖\":{\"codepoints\":[8790],\"characters\":\"≖\"},\"≕\":{\"codepoints\":[8789],\"characters\":\"≕\"},\"≂\":{\"codepoints\":[8770],\"characters\":\"≂\"},\"⪖\":{\"codepoints\":[10902],\"characters\":\"⪖\"},\"⪕\":{\"codepoints\":[10901],\"characters\":\"⪕\"},\"=\":{\"codepoints\":[61],\"characters\":\"=\"},\"≟\":{\"codepoints\":[8799],\"characters\":\"≟\"},\"≡\":{\"codepoints\":[8801],\"characters\":\"≡\"},\"⩸\":{\"codepoints\":[10872],\"characters\":\"⩸\"},\"⧥\":{\"codepoints\":[10725],\"characters\":\"⧥\"},\"≓\":{\"codepoints\":[8787],\"characters\":\"≓\"},\"⥱\":{\"codepoints\":[10609],\"characters\":\"⥱\"},\"ℯ\":{\"codepoints\":[8495],\"characters\":\"ℯ\"},\"≐\":{\"codepoints\":[8784],\"characters\":\"≐\"},\"≂\":{\"codepoints\":[8770],\"characters\":\"≂\"},\"η\":{\"codepoints\":[951],\"characters\":\"η\"},\"ð\":{\"codepoints\":[240],\"characters\":\"ð\"},\"ð\":{\"codepoints\":[240],\"characters\":\"ð\"},\"ë\":{\"codepoints\":[235],\"characters\":\"ë\"},\"ë\":{\"codepoints\":[235],\"characters\":\"ë\"},\"€\":{\"codepoints\":[8364],\"characters\":\"€\"},\"!\":{\"codepoints\":[33],\"characters\":\"!\"},\"∃\":{\"codepoints\":[8707],\"characters\":\"∃\"},\"ℰ\":{\"codepoints\":[8496],\"characters\":\"ℰ\"},\"ⅇ\":{\"codepoints\":[8519],\"characters\":\"ⅇ\"},\"≒\":{\"codepoints\":[8786],\"characters\":\"≒\"},\"ф\":{\"codepoints\":[1092],\"characters\":\"ф\"},\"♀\":{\"codepoints\":[9792],\"characters\":\"♀\"},\"ffi\":{\"codepoints\":[64259],\"characters\":\"ffi\"},\"ff\":{\"codepoints\":[64256],\"characters\":\"ff\"},\"ffl\":{\"codepoints\":[64260],\"characters\":\"ffl\"},\"𝔣\":{\"codepoints\":[120099],\"characters\":\"𝔣\"},\"fi\":{\"codepoints\":[64257],\"characters\":\"fi\"},\"fj\":{\"codepoints\":[102,106],\"characters\":\"fj\"},\"♭\":{\"codepoints\":[9837],\"characters\":\"♭\"},\"fl\":{\"codepoints\":[64258],\"characters\":\"fl\"},\"▱\":{\"codepoints\":[9649],\"characters\":\"▱\"},\"ƒ\":{\"codepoints\":[402],\"characters\":\"ƒ\"},\"𝕗\":{\"codepoints\":[120151],\"characters\":\"𝕗\"},\"∀\":{\"codepoints\":[8704],\"characters\":\"∀\"},\"⋔\":{\"codepoints\":[8916],\"characters\":\"⋔\"},\"⫙\":{\"codepoints\":[10969],\"characters\":\"⫙\"},\"⨍\":{\"codepoints\":[10765],\"characters\":\"⨍\"},\"½\":{\"codepoints\":[189],\"characters\":\"½\"},\"½\":{\"codepoints\":[189],\"characters\":\"½\"},\"⅓\":{\"codepoints\":[8531],\"characters\":\"⅓\"},\"¼\":{\"codepoints\":[188],\"characters\":\"¼\"},\"¼\":{\"codepoints\":[188],\"characters\":\"¼\"},\"⅕\":{\"codepoints\":[8533],\"characters\":\"⅕\"},\"⅙\":{\"codepoints\":[8537],\"characters\":\"⅙\"},\"⅛\":{\"codepoints\":[8539],\"characters\":\"⅛\"},\"⅔\":{\"codepoints\":[8532],\"characters\":\"⅔\"},\"⅖\":{\"codepoints\":[8534],\"characters\":\"⅖\"},\"¾\":{\"codepoints\":[190],\"characters\":\"¾\"},\"¾\":{\"codepoints\":[190],\"characters\":\"¾\"},\"⅗\":{\"codepoints\":[8535],\"characters\":\"⅗\"},\"⅜\":{\"codepoints\":[8540],\"characters\":\"⅜\"},\"⅘\":{\"codepoints\":[8536],\"characters\":\"⅘\"},\"⅚\":{\"codepoints\":[8538],\"characters\":\"⅚\"},\"⅝\":{\"codepoints\":[8541],\"characters\":\"⅝\"},\"⅞\":{\"codepoints\":[8542],\"characters\":\"⅞\"},\"⁄\":{\"codepoints\":[8260],\"characters\":\"⁄\"},\"⌢\":{\"codepoints\":[8994],\"characters\":\"⌢\"},\"𝒻\":{\"codepoints\":[119995],\"characters\":\"𝒻\"},\"≧\":{\"codepoints\":[8807],\"characters\":\"≧\"},\"⪌\":{\"codepoints\":[10892],\"characters\":\"⪌\"},\"ǵ\":{\"codepoints\":[501],\"characters\":\"ǵ\"},\"γ\":{\"codepoints\":[947],\"characters\":\"γ\"},\"ϝ\":{\"codepoints\":[989],\"characters\":\"ϝ\"},\"⪆\":{\"codepoints\":[10886],\"characters\":\"⪆\"},\"ğ\":{\"codepoints\":[287],\"characters\":\"ğ\"},\"ĝ\":{\"codepoints\":[285],\"characters\":\"ĝ\"},\"г\":{\"codepoints\":[1075],\"characters\":\"г\"},\"ġ\":{\"codepoints\":[289],\"characters\":\"ġ\"},\"≥\":{\"codepoints\":[8805],\"characters\":\"≥\"},\"⋛\":{\"codepoints\":[8923],\"characters\":\"⋛\"},\"≥\":{\"codepoints\":[8805],\"characters\":\"≥\"},\"≧\":{\"codepoints\":[8807],\"characters\":\"≧\"},\"⩾\":{\"codepoints\":[10878],\"characters\":\"⩾\"},\"⩾\":{\"codepoints\":[10878],\"characters\":\"⩾\"},\"⪩\":{\"codepoints\":[10921],\"characters\":\"⪩\"},\"⪀\":{\"codepoints\":[10880],\"characters\":\"⪀\"},\"⪂\":{\"codepoints\":[10882],\"characters\":\"⪂\"},\"⪄\":{\"codepoints\":[10884],\"characters\":\"⪄\"},\"⋛︀\":{\"codepoints\":[8923,65024],\"characters\":\"⋛︀\"},\"⪔\":{\"codepoints\":[10900],\"characters\":\"⪔\"},\"𝔤\":{\"codepoints\":[120100],\"characters\":\"𝔤\"},\"≫\":{\"codepoints\":[8811],\"characters\":\"≫\"},\"⋙\":{\"codepoints\":[8921],\"characters\":\"⋙\"},\"ℷ\":{\"codepoints\":[8503],\"characters\":\"ℷ\"},\"ѓ\":{\"codepoints\":[1107],\"characters\":\"ѓ\"},\"≷\":{\"codepoints\":[8823],\"characters\":\"≷\"},\"⪒\":{\"codepoints\":[10898],\"characters\":\"⪒\"},\"⪥\":{\"codepoints\":[10917],\"characters\":\"⪥\"},\"⪤\":{\"codepoints\":[10916],\"characters\":\"⪤\"},\"≩\":{\"codepoints\":[8809],\"characters\":\"≩\"},\"⪊\":{\"codepoints\":[10890],\"characters\":\"⪊\"},\"⪊\":{\"codepoints\":[10890],\"characters\":\"⪊\"},\"⪈\":{\"codepoints\":[10888],\"characters\":\"⪈\"},\"⪈\":{\"codepoints\":[10888],\"characters\":\"⪈\"},\"≩\":{\"codepoints\":[8809],\"characters\":\"≩\"},\"⋧\":{\"codepoints\":[8935],\"characters\":\"⋧\"},\"𝕘\":{\"codepoints\":[120152],\"characters\":\"𝕘\"},\"`\":{\"codepoints\":[96],\"characters\":\"`\"},\"ℊ\":{\"codepoints\":[8458],\"characters\":\"ℊ\"},\"≳\":{\"codepoints\":[8819],\"characters\":\"≳\"},\"⪎\":{\"codepoints\":[10894],\"characters\":\"⪎\"},\"⪐\":{\"codepoints\":[10896],\"characters\":\"⪐\"},\">\":{\"codepoints\":[62],\"characters\":\">\"},\">\":{\"codepoints\":[62],\"characters\":\">\"},\"⪧\":{\"codepoints\":[10919],\"characters\":\"⪧\"},\"⩺\":{\"codepoints\":[10874],\"characters\":\"⩺\"},\"⋗\":{\"codepoints\":[8919],\"characters\":\"⋗\"},\"⦕\":{\"codepoints\":[10645],\"characters\":\"⦕\"},\"⩼\":{\"codepoints\":[10876],\"characters\":\"⩼\"},\"⪆\":{\"codepoints\":[10886],\"characters\":\"⪆\"},\"⥸\":{\"codepoints\":[10616],\"characters\":\"⥸\"},\"⋗\":{\"codepoints\":[8919],\"characters\":\"⋗\"},\"⋛\":{\"codepoints\":[8923],\"characters\":\"⋛\"},\"⪌\":{\"codepoints\":[10892],\"characters\":\"⪌\"},\"≷\":{\"codepoints\":[8823],\"characters\":\"≷\"},\"≳\":{\"codepoints\":[8819],\"characters\":\"≳\"},\"≩︀\":{\"codepoints\":[8809,65024],\"characters\":\"≩︀\"},\"≩︀\":{\"codepoints\":[8809,65024],\"characters\":\"≩︀\"},\"⇔\":{\"codepoints\":[8660],\"characters\":\"⇔\"},\" \":{\"codepoints\":[8202],\"characters\":\" \"},\"½\":{\"codepoints\":[189],\"characters\":\"½\"},\"ℋ\":{\"codepoints\":[8459],\"characters\":\"ℋ\"},\"ъ\":{\"codepoints\":[1098],\"characters\":\"ъ\"},\"↔\":{\"codepoints\":[8596],\"characters\":\"↔\"},\"⥈\":{\"codepoints\":[10568],\"characters\":\"⥈\"},\"↭\":{\"codepoints\":[8621],\"characters\":\"↭\"},\"ℏ\":{\"codepoints\":[8463],\"characters\":\"ℏ\"},\"ĥ\":{\"codepoints\":[293],\"characters\":\"ĥ\"},\"♥\":{\"codepoints\":[9829],\"characters\":\"♥\"},\"♥\":{\"codepoints\":[9829],\"characters\":\"♥\"},\"…\":{\"codepoints\":[8230],\"characters\":\"…\"},\"⊹\":{\"codepoints\":[8889],\"characters\":\"⊹\"},\"𝔥\":{\"codepoints\":[120101],\"characters\":\"𝔥\"},\"⤥\":{\"codepoints\":[10533],\"characters\":\"⤥\"},\"⤦\":{\"codepoints\":[10534],\"characters\":\"⤦\"},\"⇿\":{\"codepoints\":[8703],\"characters\":\"⇿\"},\"∻\":{\"codepoints\":[8763],\"characters\":\"∻\"},\"↩\":{\"codepoints\":[8617],\"characters\":\"↩\"},\"↪\":{\"codepoints\":[8618],\"characters\":\"↪\"},\"𝕙\":{\"codepoints\":[120153],\"characters\":\"𝕙\"},\"―\":{\"codepoints\":[8213],\"characters\":\"―\"},\"𝒽\":{\"codepoints\":[119997],\"characters\":\"𝒽\"},\"ℏ\":{\"codepoints\":[8463],\"characters\":\"ℏ\"},\"ħ\":{\"codepoints\":[295],\"characters\":\"ħ\"},\"⁃\":{\"codepoints\":[8259],\"characters\":\"⁃\"},\"‐\":{\"codepoints\":[8208],\"characters\":\"‐\"},\"í\":{\"codepoints\":[237],\"characters\":\"í\"},\"í\":{\"codepoints\":[237],\"characters\":\"í\"},\"⁣\":{\"codepoints\":[8291],\"characters\":\"\"},\"î\":{\"codepoints\":[238],\"characters\":\"î\"},\"î\":{\"codepoints\":[238],\"characters\":\"î\"},\"и\":{\"codepoints\":[1080],\"characters\":\"и\"},\"е\":{\"codepoints\":[1077],\"characters\":\"е\"},\"¡\":{\"codepoints\":[161],\"characters\":\"¡\"},\"¡\":{\"codepoints\":[161],\"characters\":\"¡\"},\"⇔\":{\"codepoints\":[8660],\"characters\":\"⇔\"},\"𝔦\":{\"codepoints\":[120102],\"characters\":\"𝔦\"},\"ì\":{\"codepoints\":[236],\"characters\":\"ì\"},\"ì\":{\"codepoints\":[236],\"characters\":\"ì\"},\"ⅈ\":{\"codepoints\":[8520],\"characters\":\"ⅈ\"},\"⨌\":{\"codepoints\":[10764],\"characters\":\"⨌\"},\"∭\":{\"codepoints\":[8749],\"characters\":\"∭\"},\"⧜\":{\"codepoints\":[10716],\"characters\":\"⧜\"},\"℩\":{\"codepoints\":[8489],\"characters\":\"℩\"},\"ij\":{\"codepoints\":[307],\"characters\":\"ij\"},\"ī\":{\"codepoints\":[299],\"characters\":\"ī\"},\"ℑ\":{\"codepoints\":[8465],\"characters\":\"ℑ\"},\"ℐ\":{\"codepoints\":[8464],\"characters\":\"ℐ\"},\"ℑ\":{\"codepoints\":[8465],\"characters\":\"ℑ\"},\"ı\":{\"codepoints\":[305],\"characters\":\"ı\"},\"⊷\":{\"codepoints\":[8887],\"characters\":\"⊷\"},\"Ƶ\":{\"codepoints\":[437],\"characters\":\"Ƶ\"},\"∈\":{\"codepoints\":[8712],\"characters\":\"∈\"},\"℅\":{\"codepoints\":[8453],\"characters\":\"℅\"},\"∞\":{\"codepoints\":[8734],\"characters\":\"∞\"},\"⧝\":{\"codepoints\":[10717],\"characters\":\"⧝\"},\"ı\":{\"codepoints\":[305],\"characters\":\"ı\"},\"∫\":{\"codepoints\":[8747],\"characters\":\"∫\"},\"⊺\":{\"codepoints\":[8890],\"characters\":\"⊺\"},\"ℤ\":{\"codepoints\":[8484],\"characters\":\"ℤ\"},\"⊺\":{\"codepoints\":[8890],\"characters\":\"⊺\"},\"⨗\":{\"codepoints\":[10775],\"characters\":\"⨗\"},\"⨼\":{\"codepoints\":[10812],\"characters\":\"⨼\"},\"ё\":{\"codepoints\":[1105],\"characters\":\"ё\"},\"į\":{\"codepoints\":[303],\"characters\":\"į\"},\"𝕚\":{\"codepoints\":[120154],\"characters\":\"𝕚\"},\"ι\":{\"codepoints\":[953],\"characters\":\"ι\"},\"⨼\":{\"codepoints\":[10812],\"characters\":\"⨼\"},\"¿\":{\"codepoints\":[191],\"characters\":\"¿\"},\"¿\":{\"codepoints\":[191],\"characters\":\"¿\"},\"𝒾\":{\"codepoints\":[119998],\"characters\":\"𝒾\"},\"∈\":{\"codepoints\":[8712],\"characters\":\"∈\"},\"⋹\":{\"codepoints\":[8953],\"characters\":\"⋹\"},\"⋵\":{\"codepoints\":[8949],\"characters\":\"⋵\"},\"⋴\":{\"codepoints\":[8948],\"characters\":\"⋴\"},\"⋳\":{\"codepoints\":[8947],\"characters\":\"⋳\"},\"∈\":{\"codepoints\":[8712],\"characters\":\"∈\"},\"⁢\":{\"codepoints\":[8290],\"characters\":\"\"},\"ĩ\":{\"codepoints\":[297],\"characters\":\"ĩ\"},\"і\":{\"codepoints\":[1110],\"characters\":\"і\"},\"ï\":{\"codepoints\":[239],\"characters\":\"ï\"},\"ï\":{\"codepoints\":[239],\"characters\":\"ï\"},\"ĵ\":{\"codepoints\":[309],\"characters\":\"ĵ\"},\"й\":{\"codepoints\":[1081],\"characters\":\"й\"},\"𝔧\":{\"codepoints\":[120103],\"characters\":\"𝔧\"},\"ȷ\":{\"codepoints\":[567],\"characters\":\"ȷ\"},\"𝕛\":{\"codepoints\":[120155],\"characters\":\"𝕛\"},\"𝒿\":{\"codepoints\":[119999],\"characters\":\"𝒿\"},\"ј\":{\"codepoints\":[1112],\"characters\":\"ј\"},\"є\":{\"codepoints\":[1108],\"characters\":\"є\"},\"κ\":{\"codepoints\":[954],\"characters\":\"κ\"},\"ϰ\":{\"codepoints\":[1008],\"characters\":\"ϰ\"},\"ķ\":{\"codepoints\":[311],\"characters\":\"ķ\"},\"к\":{\"codepoints\":[1082],\"characters\":\"к\"},\"𝔨\":{\"codepoints\":[120104],\"characters\":\"𝔨\"},\"ĸ\":{\"codepoints\":[312],\"characters\":\"ĸ\"},\"х\":{\"codepoints\":[1093],\"characters\":\"х\"},\"ќ\":{\"codepoints\":[1116],\"characters\":\"ќ\"},\"𝕜\":{\"codepoints\":[120156],\"characters\":\"𝕜\"},\"𝓀\":{\"codepoints\":[120000],\"characters\":\"𝓀\"},\"⇚\":{\"codepoints\":[8666],\"characters\":\"⇚\"},\"⇐\":{\"codepoints\":[8656],\"characters\":\"⇐\"},\"⤛\":{\"codepoints\":[10523],\"characters\":\"⤛\"},\"⤎\":{\"codepoints\":[10510],\"characters\":\"⤎\"},\"≦\":{\"codepoints\":[8806],\"characters\":\"≦\"},\"⪋\":{\"codepoints\":[10891],\"characters\":\"⪋\"},\"⥢\":{\"codepoints\":[10594],\"characters\":\"⥢\"},\"ĺ\":{\"codepoints\":[314],\"characters\":\"ĺ\"},\"⦴\":{\"codepoints\":[10676],\"characters\":\"⦴\"},\"ℒ\":{\"codepoints\":[8466],\"characters\":\"ℒ\"},\"λ\":{\"codepoints\":[955],\"characters\":\"λ\"},\"⟨\":{\"codepoints\":[10216],\"characters\":\"⟨\"},\"⦑\":{\"codepoints\":[10641],\"characters\":\"⦑\"},\"⟨\":{\"codepoints\":[10216],\"characters\":\"⟨\"},\"⪅\":{\"codepoints\":[10885],\"characters\":\"⪅\"},\"«\":{\"codepoints\":[171],\"characters\":\"«\"},\"«\":{\"codepoints\":[171],\"characters\":\"«\"},\"←\":{\"codepoints\":[8592],\"characters\":\"←\"},\"⇤\":{\"codepoints\":[8676],\"characters\":\"⇤\"},\"⤟\":{\"codepoints\":[10527],\"characters\":\"⤟\"},\"⤝\":{\"codepoints\":[10525],\"characters\":\"⤝\"},\"↩\":{\"codepoints\":[8617],\"characters\":\"↩\"},\"↫\":{\"codepoints\":[8619],\"characters\":\"↫\"},\"⤹\":{\"codepoints\":[10553],\"characters\":\"⤹\"},\"⥳\":{\"codepoints\":[10611],\"characters\":\"⥳\"},\"↢\":{\"codepoints\":[8610],\"characters\":\"↢\"},\"⪫\":{\"codepoints\":[10923],\"characters\":\"⪫\"},\"⤙\":{\"codepoints\":[10521],\"characters\":\"⤙\"},\"⪭\":{\"codepoints\":[10925],\"characters\":\"⪭\"},\"⪭︀\":{\"codepoints\":[10925,65024],\"characters\":\"⪭︀\"},\"⤌\":{\"codepoints\":[10508],\"characters\":\"⤌\"},\"❲\":{\"codepoints\":[10098],\"characters\":\"❲\"},\"{\":{\"codepoints\":[123],\"characters\":\"{\"},\"[\":{\"codepoints\":[91],\"characters\":\"[\"},\"⦋\":{\"codepoints\":[10635],\"characters\":\"⦋\"},\"⦏\":{\"codepoints\":[10639],\"characters\":\"⦏\"},\"⦍\":{\"codepoints\":[10637],\"characters\":\"⦍\"},\"ľ\":{\"codepoints\":[318],\"characters\":\"ľ\"},\"ļ\":{\"codepoints\":[316],\"characters\":\"ļ\"},\"⌈\":{\"codepoints\":[8968],\"characters\":\"⌈\"},\"{\":{\"codepoints\":[123],\"characters\":\"{\"},\"л\":{\"codepoints\":[1083],\"characters\":\"л\"},\"⤶\":{\"codepoints\":[10550],\"characters\":\"⤶\"},\"“\":{\"codepoints\":[8220],\"characters\":\"“\"},\"„\":{\"codepoints\":[8222],\"characters\":\"„\"},\"⥧\":{\"codepoints\":[10599],\"characters\":\"⥧\"},\"⥋\":{\"codepoints\":[10571],\"characters\":\"⥋\"},\"↲\":{\"codepoints\":[8626],\"characters\":\"↲\"},\"≤\":{\"codepoints\":[8804],\"characters\":\"≤\"},\"←\":{\"codepoints\":[8592],\"characters\":\"←\"},\"↢\":{\"codepoints\":[8610],\"characters\":\"↢\"},\"↽\":{\"codepoints\":[8637],\"characters\":\"↽\"},\"↼\":{\"codepoints\":[8636],\"characters\":\"↼\"},\"⇇\":{\"codepoints\":[8647],\"characters\":\"⇇\"},\"↔\":{\"codepoints\":[8596],\"characters\":\"↔\"},\"⇆\":{\"codepoints\":[8646],\"characters\":\"⇆\"},\"⇋\":{\"codepoints\":[8651],\"characters\":\"⇋\"},\"↭\":{\"codepoints\":[8621],\"characters\":\"↭\"},\"⋋\":{\"codepoints\":[8907],\"characters\":\"⋋\"},\"⋚\":{\"codepoints\":[8922],\"characters\":\"⋚\"},\"≤\":{\"codepoints\":[8804],\"characters\":\"≤\"},\"≦\":{\"codepoints\":[8806],\"characters\":\"≦\"},\"⩽\":{\"codepoints\":[10877],\"characters\":\"⩽\"},\"⩽\":{\"codepoints\":[10877],\"characters\":\"⩽\"},\"⪨\":{\"codepoints\":[10920],\"characters\":\"⪨\"},\"⩿\":{\"codepoints\":[10879],\"characters\":\"⩿\"},\"⪁\":{\"codepoints\":[10881],\"characters\":\"⪁\"},\"⪃\":{\"codepoints\":[10883],\"characters\":\"⪃\"},\"⋚︀\":{\"codepoints\":[8922,65024],\"characters\":\"⋚︀\"},\"⪓\":{\"codepoints\":[10899],\"characters\":\"⪓\"},\"⪅\":{\"codepoints\":[10885],\"characters\":\"⪅\"},\"⋖\":{\"codepoints\":[8918],\"characters\":\"⋖\"},\"⋚\":{\"codepoints\":[8922],\"characters\":\"⋚\"},\"⪋\":{\"codepoints\":[10891],\"characters\":\"⪋\"},\"≶\":{\"codepoints\":[8822],\"characters\":\"≶\"},\"≲\":{\"codepoints\":[8818],\"characters\":\"≲\"},\"⥼\":{\"codepoints\":[10620],\"characters\":\"⥼\"},\"⌊\":{\"codepoints\":[8970],\"characters\":\"⌊\"},\"𝔩\":{\"codepoints\":[120105],\"characters\":\"𝔩\"},\"≶\":{\"codepoints\":[8822],\"characters\":\"≶\"},\"⪑\":{\"codepoints\":[10897],\"characters\":\"⪑\"},\"↽\":{\"codepoints\":[8637],\"characters\":\"↽\"},\"↼\":{\"codepoints\":[8636],\"characters\":\"↼\"},\"⥪\":{\"codepoints\":[10602],\"characters\":\"⥪\"},\"▄\":{\"codepoints\":[9604],\"characters\":\"▄\"},\"љ\":{\"codepoints\":[1113],\"characters\":\"љ\"},\"≪\":{\"codepoints\":[8810],\"characters\":\"≪\"},\"⇇\":{\"codepoints\":[8647],\"characters\":\"⇇\"},\"⌞\":{\"codepoints\":[8990],\"characters\":\"⌞\"},\"⥫\":{\"codepoints\":[10603],\"characters\":\"⥫\"},\"◺\":{\"codepoints\":[9722],\"characters\":\"◺\"},\"ŀ\":{\"codepoints\":[320],\"characters\":\"ŀ\"},\"⎰\":{\"codepoints\":[9136],\"characters\":\"⎰\"},\"⎰\":{\"codepoints\":[9136],\"characters\":\"⎰\"},\"≨\":{\"codepoints\":[8808],\"characters\":\"≨\"},\"⪉\":{\"codepoints\":[10889],\"characters\":\"⪉\"},\"⪉\":{\"codepoints\":[10889],\"characters\":\"⪉\"},\"⪇\":{\"codepoints\":[10887],\"characters\":\"⪇\"},\"⪇\":{\"codepoints\":[10887],\"characters\":\"⪇\"},\"≨\":{\"codepoints\":[8808],\"characters\":\"≨\"},\"⋦\":{\"codepoints\":[8934],\"characters\":\"⋦\"},\"⟬\":{\"codepoints\":[10220],\"characters\":\"⟬\"},\"⇽\":{\"codepoints\":[8701],\"characters\":\"⇽\"},\"⟦\":{\"codepoints\":[10214],\"characters\":\"⟦\"},\"⟵\":{\"codepoints\":[10229],\"characters\":\"⟵\"},\"⟷\":{\"codepoints\":[10231],\"characters\":\"⟷\"},\"⟼\":{\"codepoints\":[10236],\"characters\":\"⟼\"},\"⟶\":{\"codepoints\":[10230],\"characters\":\"⟶\"},\"↫\":{\"codepoints\":[8619],\"characters\":\"↫\"},\"↬\":{\"codepoints\":[8620],\"characters\":\"↬\"},\"⦅\":{\"codepoints\":[10629],\"characters\":\"⦅\"},\"𝕝\":{\"codepoints\":[120157],\"characters\":\"𝕝\"},\"⨭\":{\"codepoints\":[10797],\"characters\":\"⨭\"},\"⨴\":{\"codepoints\":[10804],\"characters\":\"⨴\"},\"∗\":{\"codepoints\":[8727],\"characters\":\"∗\"},\"_\":{\"codepoints\":[95],\"characters\":\"_\"},\"◊\":{\"codepoints\":[9674],\"characters\":\"◊\"},\"◊\":{\"codepoints\":[9674],\"characters\":\"◊\"},\"⧫\":{\"codepoints\":[10731],\"characters\":\"⧫\"},\"(\":{\"codepoints\":[40],\"characters\":\"(\"},\"⦓\":{\"codepoints\":[10643],\"characters\":\"⦓\"},\"⇆\":{\"codepoints\":[8646],\"characters\":\"⇆\"},\"⌟\":{\"codepoints\":[8991],\"characters\":\"⌟\"},\"⇋\":{\"codepoints\":[8651],\"characters\":\"⇋\"},\"⥭\":{\"codepoints\":[10605],\"characters\":\"⥭\"},\"‎\":{\"codepoints\":[8206],\"characters\":\"\"},\"⊿\":{\"codepoints\":[8895],\"characters\":\"⊿\"},\"‹\":{\"codepoints\":[8249],\"characters\":\"‹\"},\"𝓁\":{\"codepoints\":[120001],\"characters\":\"𝓁\"},\"↰\":{\"codepoints\":[8624],\"characters\":\"↰\"},\"≲\":{\"codepoints\":[8818],\"characters\":\"≲\"},\"⪍\":{\"codepoints\":[10893],\"characters\":\"⪍\"},\"⪏\":{\"codepoints\":[10895],\"characters\":\"⪏\"},\"[\":{\"codepoints\":[91],\"characters\":\"[\"},\"‘\":{\"codepoints\":[8216],\"characters\":\"‘\"},\"‚\":{\"codepoints\":[8218],\"characters\":\"‚\"},\"ł\":{\"codepoints\":[322],\"characters\":\"ł\"},\"<\":{\"codepoints\":[60],\"characters\":\"<\"},\"<\":{\"codepoints\":[60],\"characters\":\"<\"},\"⪦\":{\"codepoints\":[10918],\"characters\":\"⪦\"},\"⩹\":{\"codepoints\":[10873],\"characters\":\"⩹\"},\"⋖\":{\"codepoints\":[8918],\"characters\":\"⋖\"},\"⋋\":{\"codepoints\":[8907],\"characters\":\"⋋\"},\"⋉\":{\"codepoints\":[8905],\"characters\":\"⋉\"},\"⥶\":{\"codepoints\":[10614],\"characters\":\"⥶\"},\"⩻\":{\"codepoints\":[10875],\"characters\":\"⩻\"},\"⦖\":{\"codepoints\":[10646],\"characters\":\"⦖\"},\"◃\":{\"codepoints\":[9667],\"characters\":\"◃\"},\"⊴\":{\"codepoints\":[8884],\"characters\":\"⊴\"},\"◂\":{\"codepoints\":[9666],\"characters\":\"◂\"},\"⥊\":{\"codepoints\":[10570],\"characters\":\"⥊\"},\"⥦\":{\"codepoints\":[10598],\"characters\":\"⥦\"},\"≨︀\":{\"codepoints\":[8808,65024],\"characters\":\"≨︀\"},\"≨︀\":{\"codepoints\":[8808,65024],\"characters\":\"≨︀\"},\"∺\":{\"codepoints\":[8762],\"characters\":\"∺\"},\"¯\":{\"codepoints\":[175],\"characters\":\"¯\"},\"¯\":{\"codepoints\":[175],\"characters\":\"¯\"},\"♂\":{\"codepoints\":[9794],\"characters\":\"♂\"},\"✠\":{\"codepoints\":[10016],\"characters\":\"✠\"},\"✠\":{\"codepoints\":[10016],\"characters\":\"✠\"},\"↦\":{\"codepoints\":[8614],\"characters\":\"↦\"},\"↦\":{\"codepoints\":[8614],\"characters\":\"↦\"},\"↧\":{\"codepoints\":[8615],\"characters\":\"↧\"},\"↤\":{\"codepoints\":[8612],\"characters\":\"↤\"},\"↥\":{\"codepoints\":[8613],\"characters\":\"↥\"},\"▮\":{\"codepoints\":[9646],\"characters\":\"▮\"},\"⨩\":{\"codepoints\":[10793],\"characters\":\"⨩\"},\"м\":{\"codepoints\":[1084],\"characters\":\"м\"},\"—\":{\"codepoints\":[8212],\"characters\":\"—\"},\"∡\":{\"codepoints\":[8737],\"characters\":\"∡\"},\"𝔪\":{\"codepoints\":[120106],\"characters\":\"𝔪\"},\"℧\":{\"codepoints\":[8487],\"characters\":\"℧\"},\"µ\":{\"codepoints\":[181],\"characters\":\"µ\"},\"µ\":{\"codepoints\":[181],\"characters\":\"µ\"},\"∣\":{\"codepoints\":[8739],\"characters\":\"∣\"},\"*\":{\"codepoints\":[42],\"characters\":\"*\"},\"⫰\":{\"codepoints\":[10992],\"characters\":\"⫰\"},\"·\":{\"codepoints\":[183],\"characters\":\"·\"},\"·\":{\"codepoints\":[183],\"characters\":\"·\"},\"−\":{\"codepoints\":[8722],\"characters\":\"−\"},\"⊟\":{\"codepoints\":[8863],\"characters\":\"⊟\"},\"∸\":{\"codepoints\":[8760],\"characters\":\"∸\"},\"⨪\":{\"codepoints\":[10794],\"characters\":\"⨪\"},\"⫛\":{\"codepoints\":[10971],\"characters\":\"⫛\"},\"…\":{\"codepoints\":[8230],\"characters\":\"…\"},\"∓\":{\"codepoints\":[8723],\"characters\":\"∓\"},\"⊧\":{\"codepoints\":[8871],\"characters\":\"⊧\"},\"𝕞\":{\"codepoints\":[120158],\"characters\":\"𝕞\"},\"∓\":{\"codepoints\":[8723],\"characters\":\"∓\"},\"𝓂\":{\"codepoints\":[120002],\"characters\":\"𝓂\"},\"∾\":{\"codepoints\":[8766],\"characters\":\"∾\"},\"μ\":{\"codepoints\":[956],\"characters\":\"μ\"},\"⊸\":{\"codepoints\":[8888],\"characters\":\"⊸\"},\"⊸\":{\"codepoints\":[8888],\"characters\":\"⊸\"},\"⋙̸\":{\"codepoints\":[8921,824],\"characters\":\"⋙̸\"},\"≫⃒\":{\"codepoints\":[8811,8402],\"characters\":\"≫⃒\"},\"≫̸\":{\"codepoints\":[8811,824],\"characters\":\"≫̸\"},\"⇍\":{\"codepoints\":[8653],\"characters\":\"⇍\"},\"⇎\":{\"codepoints\":[8654],\"characters\":\"⇎\"},\"⋘̸\":{\"codepoints\":[8920,824],\"characters\":\"⋘̸\"},\"≪⃒\":{\"codepoints\":[8810,8402],\"characters\":\"≪⃒\"},\"≪̸\":{\"codepoints\":[8810,824],\"characters\":\"≪̸\"},\"⇏\":{\"codepoints\":[8655],\"characters\":\"⇏\"},\"⊯\":{\"codepoints\":[8879],\"characters\":\"⊯\"},\"⊮\":{\"codepoints\":[8878],\"characters\":\"⊮\"},\"∇\":{\"codepoints\":[8711],\"characters\":\"∇\"},\"ń\":{\"codepoints\":[324],\"characters\":\"ń\"},\"∠⃒\":{\"codepoints\":[8736,8402],\"characters\":\"∠⃒\"},\"≉\":{\"codepoints\":[8777],\"characters\":\"≉\"},\"⩰̸\":{\"codepoints\":[10864,824],\"characters\":\"⩰̸\"},\"≋̸\":{\"codepoints\":[8779,824],\"characters\":\"≋̸\"},\"ʼn\":{\"codepoints\":[329],\"characters\":\"ʼn\"},\"≉\":{\"codepoints\":[8777],\"characters\":\"≉\"},\"♮\":{\"codepoints\":[9838],\"characters\":\"♮\"},\"♮\":{\"codepoints\":[9838],\"characters\":\"♮\"},\"ℕ\":{\"codepoints\":[8469],\"characters\":\"ℕ\"},\" \":{\"codepoints\":[160],\"characters\":\" \"},\" \":{\"codepoints\":[160],\"characters\":\" \"},\"≎̸\":{\"codepoints\":[8782,824],\"characters\":\"≎̸\"},\"≏̸\":{\"codepoints\":[8783,824],\"characters\":\"≏̸\"},\"⩃\":{\"codepoints\":[10819],\"characters\":\"⩃\"},\"ň\":{\"codepoints\":[328],\"characters\":\"ň\"},\"ņ\":{\"codepoints\":[326],\"characters\":\"ņ\"},\"≇\":{\"codepoints\":[8775],\"characters\":\"≇\"},\"⩭̸\":{\"codepoints\":[10861,824],\"characters\":\"⩭̸\"},\"⩂\":{\"codepoints\":[10818],\"characters\":\"⩂\"},\"н\":{\"codepoints\":[1085],\"characters\":\"н\"},\"–\":{\"codepoints\":[8211],\"characters\":\"–\"},\"≠\":{\"codepoints\":[8800],\"characters\":\"≠\"},\"⇗\":{\"codepoints\":[8663],\"characters\":\"⇗\"},\"⤤\":{\"codepoints\":[10532],\"characters\":\"⤤\"},\"↗\":{\"codepoints\":[8599],\"characters\":\"↗\"},\"↗\":{\"codepoints\":[8599],\"characters\":\"↗\"},\"≐̸\":{\"codepoints\":[8784,824],\"characters\":\"≐̸\"},\"≢\":{\"codepoints\":[8802],\"characters\":\"≢\"},\"⤨\":{\"codepoints\":[10536],\"characters\":\"⤨\"},\"≂̸\":{\"codepoints\":[8770,824],\"characters\":\"≂̸\"},\"∄\":{\"codepoints\":[8708],\"characters\":\"∄\"},\"∄\":{\"codepoints\":[8708],\"characters\":\"∄\"},\"𝔫\":{\"codepoints\":[120107],\"characters\":\"𝔫\"},\"≧̸\":{\"codepoints\":[8807,824],\"characters\":\"≧̸\"},\"≱\":{\"codepoints\":[8817],\"characters\":\"≱\"},\"≱\":{\"codepoints\":[8817],\"characters\":\"≱\"},\"≧̸\":{\"codepoints\":[8807,824],\"characters\":\"≧̸\"},\"⩾̸\":{\"codepoints\":[10878,824],\"characters\":\"⩾̸\"},\"⩾̸\":{\"codepoints\":[10878,824],\"characters\":\"⩾̸\"},\"≵\":{\"codepoints\":[8821],\"characters\":\"≵\"},\"≯\":{\"codepoints\":[8815],\"characters\":\"≯\"},\"≯\":{\"codepoints\":[8815],\"characters\":\"≯\"},\"⇎\":{\"codepoints\":[8654],\"characters\":\"⇎\"},\"↮\":{\"codepoints\":[8622],\"characters\":\"↮\"},\"⫲\":{\"codepoints\":[10994],\"characters\":\"⫲\"},\"∋\":{\"codepoints\":[8715],\"characters\":\"∋\"},\"⋼\":{\"codepoints\":[8956],\"characters\":\"⋼\"},\"⋺\":{\"codepoints\":[8954],\"characters\":\"⋺\"},\"∋\":{\"codepoints\":[8715],\"characters\":\"∋\"},\"њ\":{\"codepoints\":[1114],\"characters\":\"њ\"},\"⇍\":{\"codepoints\":[8653],\"characters\":\"⇍\"},\"≦̸\":{\"codepoints\":[8806,824],\"characters\":\"≦̸\"},\"↚\":{\"codepoints\":[8602],\"characters\":\"↚\"},\"‥\":{\"codepoints\":[8229],\"characters\":\"‥\"},\"≰\":{\"codepoints\":[8816],\"characters\":\"≰\"},\"↚\":{\"codepoints\":[8602],\"characters\":\"↚\"},\"↮\":{\"codepoints\":[8622],\"characters\":\"↮\"},\"≰\":{\"codepoints\":[8816],\"characters\":\"≰\"},\"≦̸\":{\"codepoints\":[8806,824],\"characters\":\"≦̸\"},\"⩽̸\":{\"codepoints\":[10877,824],\"characters\":\"⩽̸\"},\"⩽̸\":{\"codepoints\":[10877,824],\"characters\":\"⩽̸\"},\"≮\":{\"codepoints\":[8814],\"characters\":\"≮\"},\"≴\":{\"codepoints\":[8820],\"characters\":\"≴\"},\"≮\":{\"codepoints\":[8814],\"characters\":\"≮\"},\"⋪\":{\"codepoints\":[8938],\"characters\":\"⋪\"},\"⋬\":{\"codepoints\":[8940],\"characters\":\"⋬\"},\"∤\":{\"codepoints\":[8740],\"characters\":\"∤\"},\"𝕟\":{\"codepoints\":[120159],\"characters\":\"𝕟\"},\"¬\":{\"codepoints\":[172],\"characters\":\"¬\"},\"¬\":{\"codepoints\":[172],\"characters\":\"¬\"},\"∉\":{\"codepoints\":[8713],\"characters\":\"∉\"},\"⋹̸\":{\"codepoints\":[8953,824],\"characters\":\"⋹̸\"},\"⋵̸\":{\"codepoints\":[8949,824],\"characters\":\"⋵̸\"},\"∉\":{\"codepoints\":[8713],\"characters\":\"∉\"},\"⋷\":{\"codepoints\":[8951],\"characters\":\"⋷\"},\"⋶\":{\"codepoints\":[8950],\"characters\":\"⋶\"},\"∌\":{\"codepoints\":[8716],\"characters\":\"∌\"},\"∌\":{\"codepoints\":[8716],\"characters\":\"∌\"},\"⋾\":{\"codepoints\":[8958],\"characters\":\"⋾\"},\"⋽\":{\"codepoints\":[8957],\"characters\":\"⋽\"},\"∦\":{\"codepoints\":[8742],\"characters\":\"∦\"},\"∦\":{\"codepoints\":[8742],\"characters\":\"∦\"},\"⫽⃥\":{\"codepoints\":[11005,8421],\"characters\":\"⫽⃥\"},\"∂̸\":{\"codepoints\":[8706,824],\"characters\":\"∂̸\"},\"⨔\":{\"codepoints\":[10772],\"characters\":\"⨔\"},\"⊀\":{\"codepoints\":[8832],\"characters\":\"⊀\"},\"⋠\":{\"codepoints\":[8928],\"characters\":\"⋠\"},\"⪯̸\":{\"codepoints\":[10927,824],\"characters\":\"⪯̸\"},\"⊀\":{\"codepoints\":[8832],\"characters\":\"⊀\"},\"⪯̸\":{\"codepoints\":[10927,824],\"characters\":\"⪯̸\"},\"⇏\":{\"codepoints\":[8655],\"characters\":\"⇏\"},\"↛\":{\"codepoints\":[8603],\"characters\":\"↛\"},\"⤳̸\":{\"codepoints\":[10547,824],\"characters\":\"⤳̸\"},\"↝̸\":{\"codepoints\":[8605,824],\"characters\":\"↝̸\"},\"↛\":{\"codepoints\":[8603],\"characters\":\"↛\"},\"⋫\":{\"codepoints\":[8939],\"characters\":\"⋫\"},\"⋭\":{\"codepoints\":[8941],\"characters\":\"⋭\"},\"⊁\":{\"codepoints\":[8833],\"characters\":\"⊁\"},\"⋡\":{\"codepoints\":[8929],\"characters\":\"⋡\"},\"⪰̸\":{\"codepoints\":[10928,824],\"characters\":\"⪰̸\"},\"𝓃\":{\"codepoints\":[120003],\"characters\":\"𝓃\"},\"∤\":{\"codepoints\":[8740],\"characters\":\"∤\"},\"∦\":{\"codepoints\":[8742],\"characters\":\"∦\"},\"≁\":{\"codepoints\":[8769],\"characters\":\"≁\"},\"≄\":{\"codepoints\":[8772],\"characters\":\"≄\"},\"≄\":{\"codepoints\":[8772],\"characters\":\"≄\"},\"∤\":{\"codepoints\":[8740],\"characters\":\"∤\"},\"∦\":{\"codepoints\":[8742],\"characters\":\"∦\"},\"⋢\":{\"codepoints\":[8930],\"characters\":\"⋢\"},\"⋣\":{\"codepoints\":[8931],\"characters\":\"⋣\"},\"⊄\":{\"codepoints\":[8836],\"characters\":\"⊄\"},\"⫅̸\":{\"codepoints\":[10949,824],\"characters\":\"⫅̸\"},\"⊈\":{\"codepoints\":[8840],\"characters\":\"⊈\"},\"⊂⃒\":{\"codepoints\":[8834,8402],\"characters\":\"⊂⃒\"},\"⊈\":{\"codepoints\":[8840],\"characters\":\"⊈\"},\"⫅̸\":{\"codepoints\":[10949,824],\"characters\":\"⫅̸\"},\"⊁\":{\"codepoints\":[8833],\"characters\":\"⊁\"},\"⪰̸\":{\"codepoints\":[10928,824],\"characters\":\"⪰̸\"},\"⊅\":{\"codepoints\":[8837],\"characters\":\"⊅\"},\"⫆̸\":{\"codepoints\":[10950,824],\"characters\":\"⫆̸\"},\"⊉\":{\"codepoints\":[8841],\"characters\":\"⊉\"},\"⊃⃒\":{\"codepoints\":[8835,8402],\"characters\":\"⊃⃒\"},\"⊉\":{\"codepoints\":[8841],\"characters\":\"⊉\"},\"⫆̸\":{\"codepoints\":[10950,824],\"characters\":\"⫆̸\"},\"≹\":{\"codepoints\":[8825],\"characters\":\"≹\"},\"ñ\":{\"codepoints\":[241],\"characters\":\"ñ\"},\"ñ\":{\"codepoints\":[241],\"characters\":\"ñ\"},\"≸\":{\"codepoints\":[8824],\"characters\":\"≸\"},\"⋪\":{\"codepoints\":[8938],\"characters\":\"⋪\"},\"⋬\":{\"codepoints\":[8940],\"characters\":\"⋬\"},\"⋫\":{\"codepoints\":[8939],\"characters\":\"⋫\"},\"⋭\":{\"codepoints\":[8941],\"characters\":\"⋭\"},\"ν\":{\"codepoints\":[957],\"characters\":\"ν\"},\"#\":{\"codepoints\":[35],\"characters\":\"#\"},\"№\":{\"codepoints\":[8470],\"characters\":\"№\"},\" \":{\"codepoints\":[8199],\"characters\":\" \"},\"⊭\":{\"codepoints\":[8877],\"characters\":\"⊭\"},\"⤄\":{\"codepoints\":[10500],\"characters\":\"⤄\"},\"≍⃒\":{\"codepoints\":[8781,8402],\"characters\":\"≍⃒\"},\"⊬\":{\"codepoints\":[8876],\"characters\":\"⊬\"},\"≥⃒\":{\"codepoints\":[8805,8402],\"characters\":\"≥⃒\"},\">⃒\":{\"codepoints\":[62,8402],\"characters\":\">⃒\"},\"⧞\":{\"codepoints\":[10718],\"characters\":\"⧞\"},\"⤂\":{\"codepoints\":[10498],\"characters\":\"⤂\"},\"≤⃒\":{\"codepoints\":[8804,8402],\"characters\":\"≤⃒\"},\"<⃒\":{\"codepoints\":[60,8402],\"characters\":\"<⃒\"},\"⊴⃒\":{\"codepoints\":[8884,8402],\"characters\":\"⊴⃒\"},\"⤃\":{\"codepoints\":[10499],\"characters\":\"⤃\"},\"⊵⃒\":{\"codepoints\":[8885,8402],\"characters\":\"⊵⃒\"},\"∼⃒\":{\"codepoints\":[8764,8402],\"characters\":\"∼⃒\"},\"⇖\":{\"codepoints\":[8662],\"characters\":\"⇖\"},\"⤣\":{\"codepoints\":[10531],\"characters\":\"⤣\"},\"↖\":{\"codepoints\":[8598],\"characters\":\"↖\"},\"↖\":{\"codepoints\":[8598],\"characters\":\"↖\"},\"⤧\":{\"codepoints\":[10535],\"characters\":\"⤧\"},\"Ⓢ\":{\"codepoints\":[9416],\"characters\":\"Ⓢ\"},\"ó\":{\"codepoints\":[243],\"characters\":\"ó\"},\"ó\":{\"codepoints\":[243],\"characters\":\"ó\"},\"⊛\":{\"codepoints\":[8859],\"characters\":\"⊛\"},\"⊚\":{\"codepoints\":[8858],\"characters\":\"⊚\"},\"ô\":{\"codepoints\":[244],\"characters\":\"ô\"},\"ô\":{\"codepoints\":[244],\"characters\":\"ô\"},\"о\":{\"codepoints\":[1086],\"characters\":\"о\"},\"⊝\":{\"codepoints\":[8861],\"characters\":\"⊝\"},\"ő\":{\"codepoints\":[337],\"characters\":\"ő\"},\"⨸\":{\"codepoints\":[10808],\"characters\":\"⨸\"},\"⊙\":{\"codepoints\":[8857],\"characters\":\"⊙\"},\"⦼\":{\"codepoints\":[10684],\"characters\":\"⦼\"},\"œ\":{\"codepoints\":[339],\"characters\":\"œ\"},\"⦿\":{\"codepoints\":[10687],\"characters\":\"⦿\"},\"𝔬\":{\"codepoints\":[120108],\"characters\":\"𝔬\"},\"˛\":{\"codepoints\":[731],\"characters\":\"˛\"},\"ò\":{\"codepoints\":[242],\"characters\":\"ò\"},\"ò\":{\"codepoints\":[242],\"characters\":\"ò\"},\"⧁\":{\"codepoints\":[10689],\"characters\":\"⧁\"},\"⦵\":{\"codepoints\":[10677],\"characters\":\"⦵\"},\"Ω\":{\"codepoints\":[937],\"characters\":\"Ω\"},\"∮\":{\"codepoints\":[8750],\"characters\":\"∮\"},\"↺\":{\"codepoints\":[8634],\"characters\":\"↺\"},\"⦾\":{\"codepoints\":[10686],\"characters\":\"⦾\"},\"⦻\":{\"codepoints\":[10683],\"characters\":\"⦻\"},\"‾\":{\"codepoints\":[8254],\"characters\":\"‾\"},\"⧀\":{\"codepoints\":[10688],\"characters\":\"⧀\"},\"ō\":{\"codepoints\":[333],\"characters\":\"ō\"},\"ω\":{\"codepoints\":[969],\"characters\":\"ω\"},\"ο\":{\"codepoints\":[959],\"characters\":\"ο\"},\"⦶\":{\"codepoints\":[10678],\"characters\":\"⦶\"},\"⊖\":{\"codepoints\":[8854],\"characters\":\"⊖\"},\"𝕠\":{\"codepoints\":[120160],\"characters\":\"𝕠\"},\"⦷\":{\"codepoints\":[10679],\"characters\":\"⦷\"},\"⦹\":{\"codepoints\":[10681],\"characters\":\"⦹\"},\"⊕\":{\"codepoints\":[8853],\"characters\":\"⊕\"},\"∨\":{\"codepoints\":[8744],\"characters\":\"∨\"},\"↻\":{\"codepoints\":[8635],\"characters\":\"↻\"},\"⩝\":{\"codepoints\":[10845],\"characters\":\"⩝\"},\"ℴ\":{\"codepoints\":[8500],\"characters\":\"ℴ\"},\"ℴ\":{\"codepoints\":[8500],\"characters\":\"ℴ\"},\"ª\":{\"codepoints\":[170],\"characters\":\"ª\"},\"ª\":{\"codepoints\":[170],\"characters\":\"ª\"},\"º\":{\"codepoints\":[186],\"characters\":\"º\"},\"º\":{\"codepoints\":[186],\"characters\":\"º\"},\"⊶\":{\"codepoints\":[8886],\"characters\":\"⊶\"},\"⩖\":{\"codepoints\":[10838],\"characters\":\"⩖\"},\"⩗\":{\"codepoints\":[10839],\"characters\":\"⩗\"},\"⩛\":{\"codepoints\":[10843],\"characters\":\"⩛\"},\"ℴ\":{\"codepoints\":[8500],\"characters\":\"ℴ\"},\"ø\":{\"codepoints\":[248],\"characters\":\"ø\"},\"ø\":{\"codepoints\":[248],\"characters\":\"ø\"},\"⊘\":{\"codepoints\":[8856],\"characters\":\"⊘\"},\"õ\":{\"codepoints\":[245],\"characters\":\"õ\"},\"õ\":{\"codepoints\":[245],\"characters\":\"õ\"},\"⊗\":{\"codepoints\":[8855],\"characters\":\"⊗\"},\"⨶\":{\"codepoints\":[10806],\"characters\":\"⨶\"},\"ö\":{\"codepoints\":[246],\"characters\":\"ö\"},\"ö\":{\"codepoints\":[246],\"characters\":\"ö\"},\"⌽\":{\"codepoints\":[9021],\"characters\":\"⌽\"},\"∥\":{\"codepoints\":[8741],\"characters\":\"∥\"},\"¶\":{\"codepoints\":[182],\"characters\":\"¶\"},\"¶\":{\"codepoints\":[182],\"characters\":\"¶\"},\"∥\":{\"codepoints\":[8741],\"characters\":\"∥\"},\"⫳\":{\"codepoints\":[10995],\"characters\":\"⫳\"},\"⫽\":{\"codepoints\":[11005],\"characters\":\"⫽\"},\"∂\":{\"codepoints\":[8706],\"characters\":\"∂\"},\"п\":{\"codepoints\":[1087],\"characters\":\"п\"},\"%\":{\"codepoints\":[37],\"characters\":\"%\"},\".\":{\"codepoints\":[46],\"characters\":\".\"},\"‰\":{\"codepoints\":[8240],\"characters\":\"‰\"},\"⊥\":{\"codepoints\":[8869],\"characters\":\"⊥\"},\"‱\":{\"codepoints\":[8241],\"characters\":\"‱\"},\"𝔭\":{\"codepoints\":[120109],\"characters\":\"𝔭\"},\"φ\":{\"codepoints\":[966],\"characters\":\"φ\"},\"ϕ\":{\"codepoints\":[981],\"characters\":\"ϕ\"},\"ℳ\":{\"codepoints\":[8499],\"characters\":\"ℳ\"},\"☎\":{\"codepoints\":[9742],\"characters\":\"☎\"},\"π\":{\"codepoints\":[960],\"characters\":\"π\"},\"⋔\":{\"codepoints\":[8916],\"characters\":\"⋔\"},\"ϖ\":{\"codepoints\":[982],\"characters\":\"ϖ\"},\"ℏ\":{\"codepoints\":[8463],\"characters\":\"ℏ\"},\"ℎ\":{\"codepoints\":[8462],\"characters\":\"ℎ\"},\"ℏ\":{\"codepoints\":[8463],\"characters\":\"ℏ\"},\"+\":{\"codepoints\":[43],\"characters\":\"+\"},\"⨣\":{\"codepoints\":[10787],\"characters\":\"⨣\"},\"⊞\":{\"codepoints\":[8862],\"characters\":\"⊞\"},\"⨢\":{\"codepoints\":[10786],\"characters\":\"⨢\"},\"∔\":{\"codepoints\":[8724],\"characters\":\"∔\"},\"⨥\":{\"codepoints\":[10789],\"characters\":\"⨥\"},\"⩲\":{\"codepoints\":[10866],\"characters\":\"⩲\"},\"±\":{\"codepoints\":[177],\"characters\":\"±\"},\"±\":{\"codepoints\":[177],\"characters\":\"±\"},\"⨦\":{\"codepoints\":[10790],\"characters\":\"⨦\"},\"⨧\":{\"codepoints\":[10791],\"characters\":\"⨧\"},\"±\":{\"codepoints\":[177],\"characters\":\"±\"},\"⨕\":{\"codepoints\":[10773],\"characters\":\"⨕\"},\"𝕡\":{\"codepoints\":[120161],\"characters\":\"𝕡\"},\"£\":{\"codepoints\":[163],\"characters\":\"£\"},\"£\":{\"codepoints\":[163],\"characters\":\"£\"},\"≺\":{\"codepoints\":[8826],\"characters\":\"≺\"},\"⪳\":{\"codepoints\":[10931],\"characters\":\"⪳\"},\"⪷\":{\"codepoints\":[10935],\"characters\":\"⪷\"},\"≼\":{\"codepoints\":[8828],\"characters\":\"≼\"},\"⪯\":{\"codepoints\":[10927],\"characters\":\"⪯\"},\"≺\":{\"codepoints\":[8826],\"characters\":\"≺\"},\"⪷\":{\"codepoints\":[10935],\"characters\":\"⪷\"},\"≼\":{\"codepoints\":[8828],\"characters\":\"≼\"},\"⪯\":{\"codepoints\":[10927],\"characters\":\"⪯\"},\"⪹\":{\"codepoints\":[10937],\"characters\":\"⪹\"},\"⪵\":{\"codepoints\":[10933],\"characters\":\"⪵\"},\"⋨\":{\"codepoints\":[8936],\"characters\":\"⋨\"},\"≾\":{\"codepoints\":[8830],\"characters\":\"≾\"},\"′\":{\"codepoints\":[8242],\"characters\":\"′\"},\"ℙ\":{\"codepoints\":[8473],\"characters\":\"ℙ\"},\"⪵\":{\"codepoints\":[10933],\"characters\":\"⪵\"},\"⪹\":{\"codepoints\":[10937],\"characters\":\"⪹\"},\"⋨\":{\"codepoints\":[8936],\"characters\":\"⋨\"},\"∏\":{\"codepoints\":[8719],\"characters\":\"∏\"},\"⌮\":{\"codepoints\":[9006],\"characters\":\"⌮\"},\"⌒\":{\"codepoints\":[8978],\"characters\":\"⌒\"},\"⌓\":{\"codepoints\":[8979],\"characters\":\"⌓\"},\"∝\":{\"codepoints\":[8733],\"characters\":\"∝\"},\"∝\":{\"codepoints\":[8733],\"characters\":\"∝\"},\"≾\":{\"codepoints\":[8830],\"characters\":\"≾\"},\"⊰\":{\"codepoints\":[8880],\"characters\":\"⊰\"},\"𝓅\":{\"codepoints\":[120005],\"characters\":\"𝓅\"},\"ψ\":{\"codepoints\":[968],\"characters\":\"ψ\"},\" \":{\"codepoints\":[8200],\"characters\":\" \"},\"𝔮\":{\"codepoints\":[120110],\"characters\":\"𝔮\"},\"⨌\":{\"codepoints\":[10764],\"characters\":\"⨌\"},\"𝕢\":{\"codepoints\":[120162],\"characters\":\"𝕢\"},\"⁗\":{\"codepoints\":[8279],\"characters\":\"⁗\"},\"𝓆\":{\"codepoints\":[120006],\"characters\":\"𝓆\"},\"ℍ\":{\"codepoints\":[8461],\"characters\":\"ℍ\"},\"⨖\":{\"codepoints\":[10774],\"characters\":\"⨖\"},\"?\":{\"codepoints\":[63],\"characters\":\"?\"},\"≟\":{\"codepoints\":[8799],\"characters\":\"≟\"},\""\":{\"codepoints\":[34],\"characters\":\"\\\"\"},\""\":{\"codepoints\":[34],\"characters\":\"\\\"\"},\"⇛\":{\"codepoints\":[8667],\"characters\":\"⇛\"},\"⇒\":{\"codepoints\":[8658],\"characters\":\"⇒\"},\"⤜\":{\"codepoints\":[10524],\"characters\":\"⤜\"},\"⤏\":{\"codepoints\":[10511],\"characters\":\"⤏\"},\"⥤\":{\"codepoints\":[10596],\"characters\":\"⥤\"},\"∽̱\":{\"codepoints\":[8765,817],\"characters\":\"∽̱\"},\"ŕ\":{\"codepoints\":[341],\"characters\":\"ŕ\"},\"√\":{\"codepoints\":[8730],\"characters\":\"√\"},\"⦳\":{\"codepoints\":[10675],\"characters\":\"⦳\"},\"⟩\":{\"codepoints\":[10217],\"characters\":\"⟩\"},\"⦒\":{\"codepoints\":[10642],\"characters\":\"⦒\"},\"⦥\":{\"codepoints\":[10661],\"characters\":\"⦥\"},\"⟩\":{\"codepoints\":[10217],\"characters\":\"⟩\"},\"»\":{\"codepoints\":[187],\"characters\":\"»\"},\"»\":{\"codepoints\":[187],\"characters\":\"»\"},\"→\":{\"codepoints\":[8594],\"characters\":\"→\"},\"⥵\":{\"codepoints\":[10613],\"characters\":\"⥵\"},\"⇥\":{\"codepoints\":[8677],\"characters\":\"⇥\"},\"⤠\":{\"codepoints\":[10528],\"characters\":\"⤠\"},\"⤳\":{\"codepoints\":[10547],\"characters\":\"⤳\"},\"⤞\":{\"codepoints\":[10526],\"characters\":\"⤞\"},\"↪\":{\"codepoints\":[8618],\"characters\":\"↪\"},\"↬\":{\"codepoints\":[8620],\"characters\":\"↬\"},\"⥅\":{\"codepoints\":[10565],\"characters\":\"⥅\"},\"⥴\":{\"codepoints\":[10612],\"characters\":\"⥴\"},\"↣\":{\"codepoints\":[8611],\"characters\":\"↣\"},\"↝\":{\"codepoints\":[8605],\"characters\":\"↝\"},\"⤚\":{\"codepoints\":[10522],\"characters\":\"⤚\"},\"∶\":{\"codepoints\":[8758],\"characters\":\"∶\"},\"ℚ\":{\"codepoints\":[8474],\"characters\":\"ℚ\"},\"⤍\":{\"codepoints\":[10509],\"characters\":\"⤍\"},\"❳\":{\"codepoints\":[10099],\"characters\":\"❳\"},\"}\":{\"codepoints\":[125],\"characters\":\"}\"},\"]\":{\"codepoints\":[93],\"characters\":\"]\"},\"⦌\":{\"codepoints\":[10636],\"characters\":\"⦌\"},\"⦎\":{\"codepoints\":[10638],\"characters\":\"⦎\"},\"⦐\":{\"codepoints\":[10640],\"characters\":\"⦐\"},\"ř\":{\"codepoints\":[345],\"characters\":\"ř\"},\"ŗ\":{\"codepoints\":[343],\"characters\":\"ŗ\"},\"⌉\":{\"codepoints\":[8969],\"characters\":\"⌉\"},\"}\":{\"codepoints\":[125],\"characters\":\"}\"},\"р\":{\"codepoints\":[1088],\"characters\":\"р\"},\"⤷\":{\"codepoints\":[10551],\"characters\":\"⤷\"},\"⥩\":{\"codepoints\":[10601],\"characters\":\"⥩\"},\"”\":{\"codepoints\":[8221],\"characters\":\"”\"},\"”\":{\"codepoints\":[8221],\"characters\":\"”\"},\"↳\":{\"codepoints\":[8627],\"characters\":\"↳\"},\"ℜ\":{\"codepoints\":[8476],\"characters\":\"ℜ\"},\"ℛ\":{\"codepoints\":[8475],\"characters\":\"ℛ\"},\"ℜ\":{\"codepoints\":[8476],\"characters\":\"ℜ\"},\"ℝ\":{\"codepoints\":[8477],\"characters\":\"ℝ\"},\"▭\":{\"codepoints\":[9645],\"characters\":\"▭\"},\"®\":{\"codepoints\":[174],\"characters\":\"®\"},\"®\":{\"codepoints\":[174],\"characters\":\"®\"},\"⥽\":{\"codepoints\":[10621],\"characters\":\"⥽\"},\"⌋\":{\"codepoints\":[8971],\"characters\":\"⌋\"},\"𝔯\":{\"codepoints\":[120111],\"characters\":\"𝔯\"},\"⇁\":{\"codepoints\":[8641],\"characters\":\"⇁\"},\"⇀\":{\"codepoints\":[8640],\"characters\":\"⇀\"},\"⥬\":{\"codepoints\":[10604],\"characters\":\"⥬\"},\"ρ\":{\"codepoints\":[961],\"characters\":\"ρ\"},\"ϱ\":{\"codepoints\":[1009],\"characters\":\"ϱ\"},\"→\":{\"codepoints\":[8594],\"characters\":\"→\"},\"↣\":{\"codepoints\":[8611],\"characters\":\"↣\"},\"⇁\":{\"codepoints\":[8641],\"characters\":\"⇁\"},\"⇀\":{\"codepoints\":[8640],\"characters\":\"⇀\"},\"⇄\":{\"codepoints\":[8644],\"characters\":\"⇄\"},\"⇌\":{\"codepoints\":[8652],\"characters\":\"⇌\"},\"⇉\":{\"codepoints\":[8649],\"characters\":\"⇉\"},\"↝\":{\"codepoints\":[8605],\"characters\":\"↝\"},\"⋌\":{\"codepoints\":[8908],\"characters\":\"⋌\"},\"˚\":{\"codepoints\":[730],\"characters\":\"˚\"},\"≓\":{\"codepoints\":[8787],\"characters\":\"≓\"},\"⇄\":{\"codepoints\":[8644],\"characters\":\"⇄\"},\"⇌\":{\"codepoints\":[8652],\"characters\":\"⇌\"},\"‏\":{\"codepoints\":[8207],\"characters\":\"\"},\"⎱\":{\"codepoints\":[9137],\"characters\":\"⎱\"},\"⎱\":{\"codepoints\":[9137],\"characters\":\"⎱\"},\"⫮\":{\"codepoints\":[10990],\"characters\":\"⫮\"},\"⟭\":{\"codepoints\":[10221],\"characters\":\"⟭\"},\"⇾\":{\"codepoints\":[8702],\"characters\":\"⇾\"},\"⟧\":{\"codepoints\":[10215],\"characters\":\"⟧\"},\"⦆\":{\"codepoints\":[10630],\"characters\":\"⦆\"},\"𝕣\":{\"codepoints\":[120163],\"characters\":\"𝕣\"},\"⨮\":{\"codepoints\":[10798],\"characters\":\"⨮\"},\"⨵\":{\"codepoints\":[10805],\"characters\":\"⨵\"},\")\":{\"codepoints\":[41],\"characters\":\")\"},\"⦔\":{\"codepoints\":[10644],\"characters\":\"⦔\"},\"⨒\":{\"codepoints\":[10770],\"characters\":\"⨒\"},\"⇉\":{\"codepoints\":[8649],\"characters\":\"⇉\"},\"›\":{\"codepoints\":[8250],\"characters\":\"›\"},\"𝓇\":{\"codepoints\":[120007],\"characters\":\"𝓇\"},\"↱\":{\"codepoints\":[8625],\"characters\":\"↱\"},\"]\":{\"codepoints\":[93],\"characters\":\"]\"},\"’\":{\"codepoints\":[8217],\"characters\":\"’\"},\"’\":{\"codepoints\":[8217],\"characters\":\"’\"},\"⋌\":{\"codepoints\":[8908],\"characters\":\"⋌\"},\"⋊\":{\"codepoints\":[8906],\"characters\":\"⋊\"},\"▹\":{\"codepoints\":[9657],\"characters\":\"▹\"},\"⊵\":{\"codepoints\":[8885],\"characters\":\"⊵\"},\"▸\":{\"codepoints\":[9656],\"characters\":\"▸\"},\"⧎\":{\"codepoints\":[10702],\"characters\":\"⧎\"},\"⥨\":{\"codepoints\":[10600],\"characters\":\"⥨\"},\"℞\":{\"codepoints\":[8478],\"characters\":\"℞\"},\"ś\":{\"codepoints\":[347],\"characters\":\"ś\"},\"‚\":{\"codepoints\":[8218],\"characters\":\"‚\"},\"≻\":{\"codepoints\":[8827],\"characters\":\"≻\"},\"⪴\":{\"codepoints\":[10932],\"characters\":\"⪴\"},\"⪸\":{\"codepoints\":[10936],\"characters\":\"⪸\"},\"š\":{\"codepoints\":[353],\"characters\":\"š\"},\"≽\":{\"codepoints\":[8829],\"characters\":\"≽\"},\"⪰\":{\"codepoints\":[10928],\"characters\":\"⪰\"},\"ş\":{\"codepoints\":[351],\"characters\":\"ş\"},\"ŝ\":{\"codepoints\":[349],\"characters\":\"ŝ\"},\"⪶\":{\"codepoints\":[10934],\"characters\":\"⪶\"},\"⪺\":{\"codepoints\":[10938],\"characters\":\"⪺\"},\"⋩\":{\"codepoints\":[8937],\"characters\":\"⋩\"},\"⨓\":{\"codepoints\":[10771],\"characters\":\"⨓\"},\"≿\":{\"codepoints\":[8831],\"characters\":\"≿\"},\"с\":{\"codepoints\":[1089],\"characters\":\"с\"},\"⋅\":{\"codepoints\":[8901],\"characters\":\"⋅\"},\"⊡\":{\"codepoints\":[8865],\"characters\":\"⊡\"},\"⩦\":{\"codepoints\":[10854],\"characters\":\"⩦\"},\"⇘\":{\"codepoints\":[8664],\"characters\":\"⇘\"},\"⤥\":{\"codepoints\":[10533],\"characters\":\"⤥\"},\"↘\":{\"codepoints\":[8600],\"characters\":\"↘\"},\"↘\":{\"codepoints\":[8600],\"characters\":\"↘\"},\"§\":{\"codepoints\":[167],\"characters\":\"§\"},\"§\":{\"codepoints\":[167],\"characters\":\"§\"},\";\":{\"codepoints\":[59],\"characters\":\";\"},\"⤩\":{\"codepoints\":[10537],\"characters\":\"⤩\"},\"∖\":{\"codepoints\":[8726],\"characters\":\"∖\"},\"∖\":{\"codepoints\":[8726],\"characters\":\"∖\"},\"✶\":{\"codepoints\":[10038],\"characters\":\"✶\"},\"𝔰\":{\"codepoints\":[120112],\"characters\":\"𝔰\"},\"⌢\":{\"codepoints\":[8994],\"characters\":\"⌢\"},\"♯\":{\"codepoints\":[9839],\"characters\":\"♯\"},\"щ\":{\"codepoints\":[1097],\"characters\":\"щ\"},\"ш\":{\"codepoints\":[1096],\"characters\":\"ш\"},\"∣\":{\"codepoints\":[8739],\"characters\":\"∣\"},\"∥\":{\"codepoints\":[8741],\"characters\":\"∥\"},\"­\":{\"codepoints\":[173],\"characters\":\"\"},\"­\":{\"codepoints\":[173],\"characters\":\"\"},\"σ\":{\"codepoints\":[963],\"characters\":\"σ\"},\"ς\":{\"codepoints\":[962],\"characters\":\"ς\"},\"ς\":{\"codepoints\":[962],\"characters\":\"ς\"},\"∼\":{\"codepoints\":[8764],\"characters\":\"∼\"},\"⩪\":{\"codepoints\":[10858],\"characters\":\"⩪\"},\"≃\":{\"codepoints\":[8771],\"characters\":\"≃\"},\"≃\":{\"codepoints\":[8771],\"characters\":\"≃\"},\"⪞\":{\"codepoints\":[10910],\"characters\":\"⪞\"},\"⪠\":{\"codepoints\":[10912],\"characters\":\"⪠\"},\"⪝\":{\"codepoints\":[10909],\"characters\":\"⪝\"},\"⪟\":{\"codepoints\":[10911],\"characters\":\"⪟\"},\"≆\":{\"codepoints\":[8774],\"characters\":\"≆\"},\"⨤\":{\"codepoints\":[10788],\"characters\":\"⨤\"},\"⥲\":{\"codepoints\":[10610],\"characters\":\"⥲\"},\"←\":{\"codepoints\":[8592],\"characters\":\"←\"},\"∖\":{\"codepoints\":[8726],\"characters\":\"∖\"},\"⨳\":{\"codepoints\":[10803],\"characters\":\"⨳\"},\"⧤\":{\"codepoints\":[10724],\"characters\":\"⧤\"},\"∣\":{\"codepoints\":[8739],\"characters\":\"∣\"},\"⌣\":{\"codepoints\":[8995],\"characters\":\"⌣\"},\"⪪\":{\"codepoints\":[10922],\"characters\":\"⪪\"},\"⪬\":{\"codepoints\":[10924],\"characters\":\"⪬\"},\"⪬︀\":{\"codepoints\":[10924,65024],\"characters\":\"⪬︀\"},\"ь\":{\"codepoints\":[1100],\"characters\":\"ь\"},\"/\":{\"codepoints\":[47],\"characters\":\"/\"},\"⧄\":{\"codepoints\":[10692],\"characters\":\"⧄\"},\"⌿\":{\"codepoints\":[9023],\"characters\":\"⌿\"},\"𝕤\":{\"codepoints\":[120164],\"characters\":\"𝕤\"},\"♠\":{\"codepoints\":[9824],\"characters\":\"♠\"},\"♠\":{\"codepoints\":[9824],\"characters\":\"♠\"},\"∥\":{\"codepoints\":[8741],\"characters\":\"∥\"},\"⊓\":{\"codepoints\":[8851],\"characters\":\"⊓\"},\"⊓︀\":{\"codepoints\":[8851,65024],\"characters\":\"⊓︀\"},\"⊔\":{\"codepoints\":[8852],\"characters\":\"⊔\"},\"⊔︀\":{\"codepoints\":[8852,65024],\"characters\":\"⊔︀\"},\"⊏\":{\"codepoints\":[8847],\"characters\":\"⊏\"},\"⊑\":{\"codepoints\":[8849],\"characters\":\"⊑\"},\"⊏\":{\"codepoints\":[8847],\"characters\":\"⊏\"},\"⊑\":{\"codepoints\":[8849],\"characters\":\"⊑\"},\"⊐\":{\"codepoints\":[8848],\"characters\":\"⊐\"},\"⊒\":{\"codepoints\":[8850],\"characters\":\"⊒\"},\"⊐\":{\"codepoints\":[8848],\"characters\":\"⊐\"},\"⊒\":{\"codepoints\":[8850],\"characters\":\"⊒\"},\"□\":{\"codepoints\":[9633],\"characters\":\"□\"},\"□\":{\"codepoints\":[9633],\"characters\":\"□\"},\"▪\":{\"codepoints\":[9642],\"characters\":\"▪\"},\"▪\":{\"codepoints\":[9642],\"characters\":\"▪\"},\"→\":{\"codepoints\":[8594],\"characters\":\"→\"},\"𝓈\":{\"codepoints\":[120008],\"characters\":\"𝓈\"},\"∖\":{\"codepoints\":[8726],\"characters\":\"∖\"},\"⌣\":{\"codepoints\":[8995],\"characters\":\"⌣\"},\"⋆\":{\"codepoints\":[8902],\"characters\":\"⋆\"},\"☆\":{\"codepoints\":[9734],\"characters\":\"☆\"},\"★\":{\"codepoints\":[9733],\"characters\":\"★\"},\"ϵ\":{\"codepoints\":[1013],\"characters\":\"ϵ\"},\"ϕ\":{\"codepoints\":[981],\"characters\":\"ϕ\"},\"¯\":{\"codepoints\":[175],\"characters\":\"¯\"},\"⊂\":{\"codepoints\":[8834],\"characters\":\"⊂\"},\"⫅\":{\"codepoints\":[10949],\"characters\":\"⫅\"},\"⪽\":{\"codepoints\":[10941],\"characters\":\"⪽\"},\"⊆\":{\"codepoints\":[8838],\"characters\":\"⊆\"},\"⫃\":{\"codepoints\":[10947],\"characters\":\"⫃\"},\"⫁\":{\"codepoints\":[10945],\"characters\":\"⫁\"},\"⫋\":{\"codepoints\":[10955],\"characters\":\"⫋\"},\"⊊\":{\"codepoints\":[8842],\"characters\":\"⊊\"},\"⪿\":{\"codepoints\":[10943],\"characters\":\"⪿\"},\"⥹\":{\"codepoints\":[10617],\"characters\":\"⥹\"},\"⊂\":{\"codepoints\":[8834],\"characters\":\"⊂\"},\"⊆\":{\"codepoints\":[8838],\"characters\":\"⊆\"},\"⫅\":{\"codepoints\":[10949],\"characters\":\"⫅\"},\"⊊\":{\"codepoints\":[8842],\"characters\":\"⊊\"},\"⫋\":{\"codepoints\":[10955],\"characters\":\"⫋\"},\"⫇\":{\"codepoints\":[10951],\"characters\":\"⫇\"},\"⫕\":{\"codepoints\":[10965],\"characters\":\"⫕\"},\"⫓\":{\"codepoints\":[10963],\"characters\":\"⫓\"},\"≻\":{\"codepoints\":[8827],\"characters\":\"≻\"},\"⪸\":{\"codepoints\":[10936],\"characters\":\"⪸\"},\"≽\":{\"codepoints\":[8829],\"characters\":\"≽\"},\"⪰\":{\"codepoints\":[10928],\"characters\":\"⪰\"},\"⪺\":{\"codepoints\":[10938],\"characters\":\"⪺\"},\"⪶\":{\"codepoints\":[10934],\"characters\":\"⪶\"},\"⋩\":{\"codepoints\":[8937],\"characters\":\"⋩\"},\"≿\":{\"codepoints\":[8831],\"characters\":\"≿\"},\"∑\":{\"codepoints\":[8721],\"characters\":\"∑\"},\"♪\":{\"codepoints\":[9834],\"characters\":\"♪\"},\"¹\":{\"codepoints\":[185],\"characters\":\"¹\"},\"¹\":{\"codepoints\":[185],\"characters\":\"¹\"},\"²\":{\"codepoints\":[178],\"characters\":\"²\"},\"²\":{\"codepoints\":[178],\"characters\":\"²\"},\"³\":{\"codepoints\":[179],\"characters\":\"³\"},\"³\":{\"codepoints\":[179],\"characters\":\"³\"},\"⊃\":{\"codepoints\":[8835],\"characters\":\"⊃\"},\"⫆\":{\"codepoints\":[10950],\"characters\":\"⫆\"},\"⪾\":{\"codepoints\":[10942],\"characters\":\"⪾\"},\"⫘\":{\"codepoints\":[10968],\"characters\":\"⫘\"},\"⊇\":{\"codepoints\":[8839],\"characters\":\"⊇\"},\"⫄\":{\"codepoints\":[10948],\"characters\":\"⫄\"},\"⟉\":{\"codepoints\":[10185],\"characters\":\"⟉\"},\"⫗\":{\"codepoints\":[10967],\"characters\":\"⫗\"},\"⥻\":{\"codepoints\":[10619],\"characters\":\"⥻\"},\"⫂\":{\"codepoints\":[10946],\"characters\":\"⫂\"},\"⫌\":{\"codepoints\":[10956],\"characters\":\"⫌\"},\"⊋\":{\"codepoints\":[8843],\"characters\":\"⊋\"},\"⫀\":{\"codepoints\":[10944],\"characters\":\"⫀\"},\"⊃\":{\"codepoints\":[8835],\"characters\":\"⊃\"},\"⊇\":{\"codepoints\":[8839],\"characters\":\"⊇\"},\"⫆\":{\"codepoints\":[10950],\"characters\":\"⫆\"},\"⊋\":{\"codepoints\":[8843],\"characters\":\"⊋\"},\"⫌\":{\"codepoints\":[10956],\"characters\":\"⫌\"},\"⫈\":{\"codepoints\":[10952],\"characters\":\"⫈\"},\"⫔\":{\"codepoints\":[10964],\"characters\":\"⫔\"},\"⫖\":{\"codepoints\":[10966],\"characters\":\"⫖\"},\"⇙\":{\"codepoints\":[8665],\"characters\":\"⇙\"},\"⤦\":{\"codepoints\":[10534],\"characters\":\"⤦\"},\"↙\":{\"codepoints\":[8601],\"characters\":\"↙\"},\"↙\":{\"codepoints\":[8601],\"characters\":\"↙\"},\"⤪\":{\"codepoints\":[10538],\"characters\":\"⤪\"},\"ß\":{\"codepoints\":[223],\"characters\":\"ß\"},\"ß\":{\"codepoints\":[223],\"characters\":\"ß\"},\"⌖\":{\"codepoints\":[8982],\"characters\":\"⌖\"},\"τ\":{\"codepoints\":[964],\"characters\":\"τ\"},\"⎴\":{\"codepoints\":[9140],\"characters\":\"⎴\"},\"ť\":{\"codepoints\":[357],\"characters\":\"ť\"},\"ţ\":{\"codepoints\":[355],\"characters\":\"ţ\"},\"т\":{\"codepoints\":[1090],\"characters\":\"т\"},\"⃛\":{\"codepoints\":[8411],\"characters\":\"⃛\"},\"⌕\":{\"codepoints\":[8981],\"characters\":\"⌕\"},\"𝔱\":{\"codepoints\":[120113],\"characters\":\"𝔱\"},\"∴\":{\"codepoints\":[8756],\"characters\":\"∴\"},\"∴\":{\"codepoints\":[8756],\"characters\":\"∴\"},\"θ\":{\"codepoints\":[952],\"characters\":\"θ\"},\"ϑ\":{\"codepoints\":[977],\"characters\":\"ϑ\"},\"ϑ\":{\"codepoints\":[977],\"characters\":\"ϑ\"},\"≈\":{\"codepoints\":[8776],\"characters\":\"≈\"},\"∼\":{\"codepoints\":[8764],\"characters\":\"∼\"},\" \":{\"codepoints\":[8201],\"characters\":\" \"},\"≈\":{\"codepoints\":[8776],\"characters\":\"≈\"},\"∼\":{\"codepoints\":[8764],\"characters\":\"∼\"},\"þ\":{\"codepoints\":[254],\"characters\":\"þ\"},\"þ\":{\"codepoints\":[254],\"characters\":\"þ\"},\"˜\":{\"codepoints\":[732],\"characters\":\"˜\"},\"×\":{\"codepoints\":[215],\"characters\":\"×\"},\"×\":{\"codepoints\":[215],\"characters\":\"×\"},\"⊠\":{\"codepoints\":[8864],\"characters\":\"⊠\"},\"⨱\":{\"codepoints\":[10801],\"characters\":\"⨱\"},\"⨰\":{\"codepoints\":[10800],\"characters\":\"⨰\"},\"∭\":{\"codepoints\":[8749],\"characters\":\"∭\"},\"⤨\":{\"codepoints\":[10536],\"characters\":\"⤨\"},\"⊤\":{\"codepoints\":[8868],\"characters\":\"⊤\"},\"⌶\":{\"codepoints\":[9014],\"characters\":\"⌶\"},\"⫱\":{\"codepoints\":[10993],\"characters\":\"⫱\"},\"𝕥\":{\"codepoints\":[120165],\"characters\":\"𝕥\"},\"⫚\":{\"codepoints\":[10970],\"characters\":\"⫚\"},\"⤩\":{\"codepoints\":[10537],\"characters\":\"⤩\"},\"‴\":{\"codepoints\":[8244],\"characters\":\"‴\"},\"™\":{\"codepoints\":[8482],\"characters\":\"™\"},\"▵\":{\"codepoints\":[9653],\"characters\":\"▵\"},\"▿\":{\"codepoints\":[9663],\"characters\":\"▿\"},\"◃\":{\"codepoints\":[9667],\"characters\":\"◃\"},\"⊴\":{\"codepoints\":[8884],\"characters\":\"⊴\"},\"≜\":{\"codepoints\":[8796],\"characters\":\"≜\"},\"▹\":{\"codepoints\":[9657],\"characters\":\"▹\"},\"⊵\":{\"codepoints\":[8885],\"characters\":\"⊵\"},\"◬\":{\"codepoints\":[9708],\"characters\":\"◬\"},\"≜\":{\"codepoints\":[8796],\"characters\":\"≜\"},\"⨺\":{\"codepoints\":[10810],\"characters\":\"⨺\"},\"⨹\":{\"codepoints\":[10809],\"characters\":\"⨹\"},\"⧍\":{\"codepoints\":[10701],\"characters\":\"⧍\"},\"⨻\":{\"codepoints\":[10811],\"characters\":\"⨻\"},\"⏢\":{\"codepoints\":[9186],\"characters\":\"⏢\"},\"𝓉\":{\"codepoints\":[120009],\"characters\":\"𝓉\"},\"ц\":{\"codepoints\":[1094],\"characters\":\"ц\"},\"ћ\":{\"codepoints\":[1115],\"characters\":\"ћ\"},\"ŧ\":{\"codepoints\":[359],\"characters\":\"ŧ\"},\"≬\":{\"codepoints\":[8812],\"characters\":\"≬\"},\"↞\":{\"codepoints\":[8606],\"characters\":\"↞\"},\"↠\":{\"codepoints\":[8608],\"characters\":\"↠\"},\"⇑\":{\"codepoints\":[8657],\"characters\":\"⇑\"},\"⥣\":{\"codepoints\":[10595],\"characters\":\"⥣\"},\"ú\":{\"codepoints\":[250],\"characters\":\"ú\"},\"ú\":{\"codepoints\":[250],\"characters\":\"ú\"},\"↑\":{\"codepoints\":[8593],\"characters\":\"↑\"},\"ў\":{\"codepoints\":[1118],\"characters\":\"ў\"},\"ŭ\":{\"codepoints\":[365],\"characters\":\"ŭ\"},\"û\":{\"codepoints\":[251],\"characters\":\"û\"},\"û\":{\"codepoints\":[251],\"characters\":\"û\"},\"у\":{\"codepoints\":[1091],\"characters\":\"у\"},\"⇅\":{\"codepoints\":[8645],\"characters\":\"⇅\"},\"ű\":{\"codepoints\":[369],\"characters\":\"ű\"},\"⥮\":{\"codepoints\":[10606],\"characters\":\"⥮\"},\"⥾\":{\"codepoints\":[10622],\"characters\":\"⥾\"},\"𝔲\":{\"codepoints\":[120114],\"characters\":\"𝔲\"},\"ù\":{\"codepoints\":[249],\"characters\":\"ù\"},\"ù\":{\"codepoints\":[249],\"characters\":\"ù\"},\"↿\":{\"codepoints\":[8639],\"characters\":\"↿\"},\"↾\":{\"codepoints\":[8638],\"characters\":\"↾\"},\"▀\":{\"codepoints\":[9600],\"characters\":\"▀\"},\"⌜\":{\"codepoints\":[8988],\"characters\":\"⌜\"},\"⌜\":{\"codepoints\":[8988],\"characters\":\"⌜\"},\"⌏\":{\"codepoints\":[8975],\"characters\":\"⌏\"},\"◸\":{\"codepoints\":[9720],\"characters\":\"◸\"},\"ū\":{\"codepoints\":[363],\"characters\":\"ū\"},\"¨\":{\"codepoints\":[168],\"characters\":\"¨\"},\"¨\":{\"codepoints\":[168],\"characters\":\"¨\"},\"ų\":{\"codepoints\":[371],\"characters\":\"ų\"},\"𝕦\":{\"codepoints\":[120166],\"characters\":\"𝕦\"},\"↑\":{\"codepoints\":[8593],\"characters\":\"↑\"},\"↕\":{\"codepoints\":[8597],\"characters\":\"↕\"},\"↿\":{\"codepoints\":[8639],\"characters\":\"↿\"},\"↾\":{\"codepoints\":[8638],\"characters\":\"↾\"},\"⊎\":{\"codepoints\":[8846],\"characters\":\"⊎\"},\"υ\":{\"codepoints\":[965],\"characters\":\"υ\"},\"ϒ\":{\"codepoints\":[978],\"characters\":\"ϒ\"},\"υ\":{\"codepoints\":[965],\"characters\":\"υ\"},\"⇈\":{\"codepoints\":[8648],\"characters\":\"⇈\"},\"⌝\":{\"codepoints\":[8989],\"characters\":\"⌝\"},\"⌝\":{\"codepoints\":[8989],\"characters\":\"⌝\"},\"⌎\":{\"codepoints\":[8974],\"characters\":\"⌎\"},\"ů\":{\"codepoints\":[367],\"characters\":\"ů\"},\"◹\":{\"codepoints\":[9721],\"characters\":\"◹\"},\"𝓊\":{\"codepoints\":[120010],\"characters\":\"𝓊\"},\"⋰\":{\"codepoints\":[8944],\"characters\":\"⋰\"},\"ũ\":{\"codepoints\":[361],\"characters\":\"ũ\"},\"▵\":{\"codepoints\":[9653],\"characters\":\"▵\"},\"▴\":{\"codepoints\":[9652],\"characters\":\"▴\"},\"⇈\":{\"codepoints\":[8648],\"characters\":\"⇈\"},\"ü\":{\"codepoints\":[252],\"characters\":\"ü\"},\"ü\":{\"codepoints\":[252],\"characters\":\"ü\"},\"⦧\":{\"codepoints\":[10663],\"characters\":\"⦧\"},\"⇕\":{\"codepoints\":[8661],\"characters\":\"⇕\"},\"⫨\":{\"codepoints\":[10984],\"characters\":\"⫨\"},\"⫩\":{\"codepoints\":[10985],\"characters\":\"⫩\"},\"⊨\":{\"codepoints\":[8872],\"characters\":\"⊨\"},\"⦜\":{\"codepoints\":[10652],\"characters\":\"⦜\"},\"ϵ\":{\"codepoints\":[1013],\"characters\":\"ϵ\"},\"ϰ\":{\"codepoints\":[1008],\"characters\":\"ϰ\"},\"∅\":{\"codepoints\":[8709],\"characters\":\"∅\"},\"ϕ\":{\"codepoints\":[981],\"characters\":\"ϕ\"},\"ϖ\":{\"codepoints\":[982],\"characters\":\"ϖ\"},\"∝\":{\"codepoints\":[8733],\"characters\":\"∝\"},\"↕\":{\"codepoints\":[8597],\"characters\":\"↕\"},\"ϱ\":{\"codepoints\":[1009],\"characters\":\"ϱ\"},\"ς\":{\"codepoints\":[962],\"characters\":\"ς\"},\"⊊︀\":{\"codepoints\":[8842,65024],\"characters\":\"⊊︀\"},\"⫋︀\":{\"codepoints\":[10955,65024],\"characters\":\"⫋︀\"},\"⊋︀\":{\"codepoints\":[8843,65024],\"characters\":\"⊋︀\"},\"⫌︀\":{\"codepoints\":[10956,65024],\"characters\":\"⫌︀\"},\"ϑ\":{\"codepoints\":[977],\"characters\":\"ϑ\"},\"⊲\":{\"codepoints\":[8882],\"characters\":\"⊲\"},\"⊳\":{\"codepoints\":[8883],\"characters\":\"⊳\"},\"в\":{\"codepoints\":[1074],\"characters\":\"в\"},\"⊢\":{\"codepoints\":[8866],\"characters\":\"⊢\"},\"∨\":{\"codepoints\":[8744],\"characters\":\"∨\"},\"⊻\":{\"codepoints\":[8891],\"characters\":\"⊻\"},\"≚\":{\"codepoints\":[8794],\"characters\":\"≚\"},\"⋮\":{\"codepoints\":[8942],\"characters\":\"⋮\"},\"|\":{\"codepoints\":[124],\"characters\":\"|\"},\"|\":{\"codepoints\":[124],\"characters\":\"|\"},\"𝔳\":{\"codepoints\":[120115],\"characters\":\"𝔳\"},\"⊲\":{\"codepoints\":[8882],\"characters\":\"⊲\"},\"⊂⃒\":{\"codepoints\":[8834,8402],\"characters\":\"⊂⃒\"},\"⊃⃒\":{\"codepoints\":[8835,8402],\"characters\":\"⊃⃒\"},\"𝕧\":{\"codepoints\":[120167],\"characters\":\"𝕧\"},\"∝\":{\"codepoints\":[8733],\"characters\":\"∝\"},\"⊳\":{\"codepoints\":[8883],\"characters\":\"⊳\"},\"𝓋\":{\"codepoints\":[120011],\"characters\":\"𝓋\"},\"⫋︀\":{\"codepoints\":[10955,65024],\"characters\":\"⫋︀\"},\"⊊︀\":{\"codepoints\":[8842,65024],\"characters\":\"⊊︀\"},\"⫌︀\":{\"codepoints\":[10956,65024],\"characters\":\"⫌︀\"},\"⊋︀\":{\"codepoints\":[8843,65024],\"characters\":\"⊋︀\"},\"⦚\":{\"codepoints\":[10650],\"characters\":\"⦚\"},\"ŵ\":{\"codepoints\":[373],\"characters\":\"ŵ\"},\"⩟\":{\"codepoints\":[10847],\"characters\":\"⩟\"},\"∧\":{\"codepoints\":[8743],\"characters\":\"∧\"},\"≙\":{\"codepoints\":[8793],\"characters\":\"≙\"},\"℘\":{\"codepoints\":[8472],\"characters\":\"℘\"},\"𝔴\":{\"codepoints\":[120116],\"characters\":\"𝔴\"},\"𝕨\":{\"codepoints\":[120168],\"characters\":\"𝕨\"},\"℘\":{\"codepoints\":[8472],\"characters\":\"℘\"},\"≀\":{\"codepoints\":[8768],\"characters\":\"≀\"},\"≀\":{\"codepoints\":[8768],\"characters\":\"≀\"},\"𝓌\":{\"codepoints\":[120012],\"characters\":\"𝓌\"},\"⋂\":{\"codepoints\":[8898],\"characters\":\"⋂\"},\"◯\":{\"codepoints\":[9711],\"characters\":\"◯\"},\"⋃\":{\"codepoints\":[8899],\"characters\":\"⋃\"},\"▽\":{\"codepoints\":[9661],\"characters\":\"▽\"},\"𝔵\":{\"codepoints\":[120117],\"characters\":\"𝔵\"},\"⟺\":{\"codepoints\":[10234],\"characters\":\"⟺\"},\"⟷\":{\"codepoints\":[10231],\"characters\":\"⟷\"},\"ξ\":{\"codepoints\":[958],\"characters\":\"ξ\"},\"⟸\":{\"codepoints\":[10232],\"characters\":\"⟸\"},\"⟵\":{\"codepoints\":[10229],\"characters\":\"⟵\"},\"⟼\":{\"codepoints\":[10236],\"characters\":\"⟼\"},\"⋻\":{\"codepoints\":[8955],\"characters\":\"⋻\"},\"⨀\":{\"codepoints\":[10752],\"characters\":\"⨀\"},\"𝕩\":{\"codepoints\":[120169],\"characters\":\"𝕩\"},\"⨁\":{\"codepoints\":[10753],\"characters\":\"⨁\"},\"⨂\":{\"codepoints\":[10754],\"characters\":\"⨂\"},\"⟹\":{\"codepoints\":[10233],\"characters\":\"⟹\"},\"⟶\":{\"codepoints\":[10230],\"characters\":\"⟶\"},\"𝓍\":{\"codepoints\":[120013],\"characters\":\"𝓍\"},\"⨆\":{\"codepoints\":[10758],\"characters\":\"⨆\"},\"⨄\":{\"codepoints\":[10756],\"characters\":\"⨄\"},\"△\":{\"codepoints\":[9651],\"characters\":\"△\"},\"⋁\":{\"codepoints\":[8897],\"characters\":\"⋁\"},\"⋀\":{\"codepoints\":[8896],\"characters\":\"⋀\"},\"ý\":{\"codepoints\":[253],\"characters\":\"ý\"},\"ý\":{\"codepoints\":[253],\"characters\":\"ý\"},\"я\":{\"codepoints\":[1103],\"characters\":\"я\"},\"ŷ\":{\"codepoints\":[375],\"characters\":\"ŷ\"},\"ы\":{\"codepoints\":[1099],\"characters\":\"ы\"},\"¥\":{\"codepoints\":[165],\"characters\":\"¥\"},\"¥\":{\"codepoints\":[165],\"characters\":\"¥\"},\"𝔶\":{\"codepoints\":[120118],\"characters\":\"𝔶\"},\"ї\":{\"codepoints\":[1111],\"characters\":\"ї\"},\"𝕪\":{\"codepoints\":[120170],\"characters\":\"𝕪\"},\"𝓎\":{\"codepoints\":[120014],\"characters\":\"𝓎\"},\"ю\":{\"codepoints\":[1102],\"characters\":\"ю\"},\"ÿ\":{\"codepoints\":[255],\"characters\":\"ÿ\"},\"ÿ\":{\"codepoints\":[255],\"characters\":\"ÿ\"},\"ź\":{\"codepoints\":[378],\"characters\":\"ź\"},\"ž\":{\"codepoints\":[382],\"characters\":\"ž\"},\"з\":{\"codepoints\":[1079],\"characters\":\"з\"},\"ż\":{\"codepoints\":[380],\"characters\":\"ż\"},\"ℨ\":{\"codepoints\":[8488],\"characters\":\"ℨ\"},\"ζ\":{\"codepoints\":[950],\"characters\":\"ζ\"},\"𝔷\":{\"codepoints\":[120119],\"characters\":\"𝔷\"},\"ж\":{\"codepoints\":[1078],\"characters\":\"ж\"},\"⇝\":{\"codepoints\":[8669],\"characters\":\"⇝\"},\"𝕫\":{\"codepoints\":[120171],\"characters\":\"𝕫\"},\"𝓏\":{\"codepoints\":[120015],\"characters\":\"𝓏\"},\"‍\":{\"codepoints\":[8205],\"characters\":\"\"},\"‌\":{\"codepoints\":[8204],\"characters\":\"\"}}");
|
|
2740
|
+
|
|
2752
2741
|
/***/ }),
|
|
2753
2742
|
|
|
2754
2743
|
/***/ "a04b":
|
|
@@ -6580,7 +6569,7 @@ var fails = __webpack_require__("d039");
|
|
|
6580
6569
|
// V8 ~ Chrome 36-
|
|
6581
6570
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
6582
6571
|
module.exports = DESCRIPTORS && fails(function () {
|
|
6583
|
-
// eslint-disable-next-line es
|
|
6572
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
6584
6573
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
6585
6574
|
value: 42,
|
|
6586
6575
|
writable: false
|
|
@@ -6598,7 +6587,7 @@ var floor = Math.floor;
|
|
|
6598
6587
|
|
|
6599
6588
|
// `Math.trunc` method
|
|
6600
6589
|
// https://tc39.es/ecma262/#sec-math.trunc
|
|
6601
|
-
// eslint-disable-next-line es
|
|
6590
|
+
// eslint-disable-next-line es/no-math-trunc -- safe
|
|
6602
6591
|
module.exports = Math.trunc || function trunc(x) {
|
|
6603
6592
|
var n = +x;
|
|
6604
6593
|
return (n > 0 ? floor : ceil)(n);
|
|
@@ -9204,10 +9193,10 @@ module.exports = NATIVE_BIND ? call.bind(call) : function () {
|
|
|
9204
9193
|
/***/ "c6b6":
|
|
9205
9194
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9206
9195
|
|
|
9207
|
-
var
|
|
9196
|
+
var uncurryThisRaw = __webpack_require__("7d7e");
|
|
9208
9197
|
|
|
9209
|
-
var toString =
|
|
9210
|
-
var stringSlice =
|
|
9198
|
+
var toString = uncurryThisRaw({}.toString);
|
|
9199
|
+
var stringSlice = uncurryThisRaw(''.slice);
|
|
9211
9200
|
|
|
9212
9201
|
module.exports = function (it) {
|
|
9213
9202
|
return stringSlice(toString(it), 8, -1);
|
|
@@ -9666,35 +9655,6 @@ module.exports = function (object, names) {
|
|
|
9666
9655
|
};
|
|
9667
9656
|
|
|
9668
9657
|
|
|
9669
|
-
/***/ }),
|
|
9670
|
-
|
|
9671
|
-
/***/ "caad":
|
|
9672
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
9673
|
-
|
|
9674
|
-
"use strict";
|
|
9675
|
-
|
|
9676
|
-
var $ = __webpack_require__("23e7");
|
|
9677
|
-
var $includes = __webpack_require__("4d64").includes;
|
|
9678
|
-
var fails = __webpack_require__("d039");
|
|
9679
|
-
var addToUnscopables = __webpack_require__("44d2");
|
|
9680
|
-
|
|
9681
|
-
// FF99+ bug
|
|
9682
|
-
var BROKEN_ON_SPARSE = fails(function () {
|
|
9683
|
-
return !Array(1).includes();
|
|
9684
|
-
});
|
|
9685
|
-
|
|
9686
|
-
// `Array.prototype.includes` method
|
|
9687
|
-
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
9688
|
-
$({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
|
|
9689
|
-
includes: function includes(el /* , fromIndex = 0 */) {
|
|
9690
|
-
return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
|
|
9691
|
-
}
|
|
9692
|
-
});
|
|
9693
|
-
|
|
9694
|
-
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
9695
|
-
addToUnscopables('includes');
|
|
9696
|
-
|
|
9697
|
-
|
|
9698
9658
|
/***/ }),
|
|
9699
9659
|
|
|
9700
9660
|
/***/ "cb2d":
|
|
@@ -9813,7 +9773,7 @@ module.exports = function (namespace, method) {
|
|
|
9813
9773
|
"use strict";
|
|
9814
9774
|
|
|
9815
9775
|
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
9816
|
-
// eslint-disable-next-line es
|
|
9776
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
9817
9777
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
9818
9778
|
|
|
9819
9779
|
// Nashorn ~ JDK8 bug
|
|
@@ -9906,7 +9866,7 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
|
|
|
9906
9866
|
|
|
9907
9867
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
9908
9868
|
module.exports =
|
|
9909
|
-
// eslint-disable-next-line es
|
|
9869
|
+
// eslint-disable-next-line es/no-global-this -- safe
|
|
9910
9870
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
9911
9871
|
check(typeof window == 'object' && window) ||
|
|
9912
9872
|
// eslint-disable-next-line no-restricted-globals -- safe
|
|
@@ -9941,22 +9901,6 @@ module.exports = function (V, P) {
|
|
|
9941
9901
|
};
|
|
9942
9902
|
|
|
9943
9903
|
|
|
9944
|
-
/***/ }),
|
|
9945
|
-
|
|
9946
|
-
/***/ "df75":
|
|
9947
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
9948
|
-
|
|
9949
|
-
var internalObjectKeys = __webpack_require__("ca84");
|
|
9950
|
-
var enumBugKeys = __webpack_require__("7839");
|
|
9951
|
-
|
|
9952
|
-
// `Object.keys` method
|
|
9953
|
-
// https://tc39.es/ecma262/#sec-object.keys
|
|
9954
|
-
// eslint-disable-next-line es-x/no-object-keys -- safe
|
|
9955
|
-
module.exports = Object.keys || function keys(O) {
|
|
9956
|
-
return internalObjectKeys(O, enumBugKeys);
|
|
9957
|
-
};
|
|
9958
|
-
|
|
9959
|
-
|
|
9960
9904
|
/***/ }),
|
|
9961
9905
|
|
|
9962
9906
|
/***/ "e1ca":
|
|
@@ -10024,19 +9968,14 @@ module.exports = subDays
|
|
|
10024
9968
|
/***/ "e330":
|
|
10025
9969
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10026
9970
|
|
|
10027
|
-
var
|
|
10028
|
-
|
|
10029
|
-
var FunctionPrototype = Function.prototype;
|
|
10030
|
-
var bind = FunctionPrototype.bind;
|
|
10031
|
-
var call = FunctionPrototype.call;
|
|
10032
|
-
var uncurryThis = NATIVE_BIND && bind.bind(call, call);
|
|
9971
|
+
var classofRaw = __webpack_require__("c6b6");
|
|
9972
|
+
var uncurryThisRaw = __webpack_require__("7d7e");
|
|
10033
9973
|
|
|
10034
|
-
module.exports =
|
|
10035
|
-
|
|
10036
|
-
|
|
10037
|
-
|
|
10038
|
-
|
|
10039
|
-
};
|
|
9974
|
+
module.exports = function (fn) {
|
|
9975
|
+
// Nashorn bug:
|
|
9976
|
+
// https://github.com/zloirock/core-js/issues/1128
|
|
9977
|
+
// https://github.com/zloirock/core-js/issues/1130
|
|
9978
|
+
if (classofRaw(fn) === 'Function') return uncurryThisRaw(fn);
|
|
10040
9979
|
};
|
|
10041
9980
|
|
|
10042
9981
|
|
|
@@ -10165,6 +10104,21 @@ module.exports = function (target, source, exceptions) {
|
|
|
10165
10104
|
};
|
|
10166
10105
|
|
|
10167
10106
|
|
|
10107
|
+
/***/ }),
|
|
10108
|
+
|
|
10109
|
+
/***/ "e8b5":
|
|
10110
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
10111
|
+
|
|
10112
|
+
var classof = __webpack_require__("c6b6");
|
|
10113
|
+
|
|
10114
|
+
// `IsArray` abstract operation
|
|
10115
|
+
// https://tc39.es/ecma262/#sec-isarray
|
|
10116
|
+
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
10117
|
+
module.exports = Array.isArray || function isArray(argument) {
|
|
10118
|
+
return classof(argument) == 'Array';
|
|
10119
|
+
};
|
|
10120
|
+
|
|
10121
|
+
|
|
10168
10122
|
/***/ }),
|
|
10169
10123
|
|
|
10170
10124
|
/***/ "eca2":
|
|
@@ -10243,11 +10197,10 @@ if (typeof window !== 'undefined') {
|
|
|
10243
10197
|
var external_commonjs_vue_commonjs2_vue_root_Vue_ = __webpack_require__("8bbf");
|
|
10244
10198
|
var external_commonjs_vue_commonjs2_vue_root_Vue_default = /*#__PURE__*/__webpack_require__.n(external_commonjs_vue_commonjs2_vue_root_Vue_);
|
|
10245
10199
|
|
|
10246
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10200
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputText.vue?vue&type=template&id=4d4c2c24&
|
|
10247
10201
|
var render = function render() {
|
|
10248
10202
|
var _vm = this,
|
|
10249
|
-
|
|
10250
|
-
|
|
10203
|
+
_c = _vm._self._c;
|
|
10251
10204
|
return _c('div', {
|
|
10252
10205
|
staticClass: "toggle-input-container",
|
|
10253
10206
|
class: {
|
|
@@ -10288,13 +10241,11 @@ var render = function render() {
|
|
|
10288
10241
|
on: {
|
|
10289
10242
|
"change": function ($event) {
|
|
10290
10243
|
var $$a = _vm.inputVal,
|
|
10291
|
-
|
|
10292
|
-
|
|
10293
|
-
|
|
10244
|
+
$$el = $event.target,
|
|
10245
|
+
$$c = $$el.checked ? true : false;
|
|
10294
10246
|
if (Array.isArray($$a)) {
|
|
10295
10247
|
var $$v = null,
|
|
10296
|
-
|
|
10297
|
-
|
|
10248
|
+
$$i = _vm._i($$a, $$v);
|
|
10298
10249
|
if ($$el.checked) {
|
|
10299
10250
|
$$i < 0 && (_vm.inputVal = $$a.concat([$$v]));
|
|
10300
10251
|
} else {
|
|
@@ -10365,99 +10316,111 @@ var render = function render() {
|
|
|
10365
10316
|
}
|
|
10366
10317
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
10367
10318
|
};
|
|
10368
|
-
|
|
10369
10319
|
var staticRenderFns = [];
|
|
10370
10320
|
|
|
10371
|
-
// CONCATENATED MODULE: ./src/components/forms/ToggleInputText.vue?vue&type=template&id=
|
|
10321
|
+
// CONCATENATED MODULE: ./src/components/forms/ToggleInputText.vue?vue&type=template&id=4d4c2c24&
|
|
10372
10322
|
|
|
10373
10323
|
// EXTERNAL MODULE: ./src/sass/includes/_as_variables.scss
|
|
10374
10324
|
var _as_variables = __webpack_require__("b659");
|
|
10375
10325
|
var _as_variables_default = /*#__PURE__*/__webpack_require__.n(_as_variables);
|
|
10376
10326
|
|
|
10327
|
+
// EXTERNAL MODULE: ./src/components/json/char_list.json
|
|
10328
|
+
var char_list = __webpack_require__("a01d");
|
|
10329
|
+
|
|
10377
10330
|
// CONCATENATED MODULE: ./src/components/mixins/mixins.js
|
|
10378
10331
|
|
|
10332
|
+
|
|
10379
10333
|
const mixins = {
|
|
10380
10334
|
data() {
|
|
10381
|
-
return {
|
|
10335
|
+
return {
|
|
10336
|
+
jsonCharCodes: char_list
|
|
10337
|
+
};
|
|
10382
10338
|
},
|
|
10383
|
-
|
|
10384
10339
|
methods: {
|
|
10385
10340
|
// When a container is clicked, the cosest internal input is focused.
|
|
10386
10341
|
focusClosestInput(event) {
|
|
10387
10342
|
if (event.target.querySelector('input, textarea') !== null) event.target.querySelector('input, textarea').focus();
|
|
10388
10343
|
},
|
|
10389
|
-
|
|
10390
10344
|
// Pass in a string date YYYY-MM-DD and returned as DD/MM/YYYY
|
|
10391
10345
|
dateRangeView(date) {
|
|
10392
10346
|
let formattedDate = '';
|
|
10393
|
-
|
|
10394
10347
|
if (date) {
|
|
10395
10348
|
let splitdate = date.split("-");
|
|
10396
10349
|
formattedDate = splitdate[2] + '/' + splitdate[1] + '/' + splitdate[0];
|
|
10397
10350
|
}
|
|
10398
|
-
|
|
10399
10351
|
return formattedDate;
|
|
10400
10352
|
},
|
|
10401
|
-
|
|
10402
10353
|
// Pass in a Javascript Date object and return as a string YYYY-MM-DD
|
|
10403
10354
|
formatDate(date) {
|
|
10404
10355
|
if (!date) return '';
|
|
10405
10356
|
let dd = date.getDate();
|
|
10406
10357
|
let mm = date.getMonth() + 1;
|
|
10407
|
-
let yyyy = date.getFullYear();
|
|
10358
|
+
let yyyy = date.getFullYear();
|
|
10408
10359
|
|
|
10360
|
+
// add zeros to single figures
|
|
10409
10361
|
if (dd < 10) dd = '0' + dd;
|
|
10410
10362
|
if (mm < 10) mm = '0' + mm;
|
|
10411
10363
|
return yyyy + '-' + mm + '-' + dd;
|
|
10412
10364
|
},
|
|
10413
|
-
|
|
10414
10365
|
/*
|
|
10415
10366
|
* Converts emojis to html entity
|
|
10416
10367
|
* @param str (the entire message)
|
|
10417
10368
|
* @return string of entire message including decoded emojis
|
|
10418
10369
|
*/
|
|
10419
10370
|
convertEmojis(str) {
|
|
10420
|
-
let result = '';
|
|
10421
|
-
|
|
10422
|
-
let decimal2Html = num => `&#${num};`; //converts a character into an HTML entity
|
|
10371
|
+
let result = '';
|
|
10423
10372
|
|
|
10373
|
+
//converts unicode decimal value into an HTML entity
|
|
10374
|
+
let decimal2Html = num => `&#${num};`;
|
|
10424
10375
|
|
|
10376
|
+
//converts a character into an HTML entity
|
|
10425
10377
|
const char2Html = char => {
|
|
10426
|
-
|
|
10378
|
+
// Check for special characters first
|
|
10379
|
+
let codepointVals = Object.values(this.jsonCharCodes).map(value => value.codepoints[0]);
|
|
10380
|
+
let codesArray = Object.entries(this.jsonCharCodes);
|
|
10381
|
+
if (codepointVals.includes(char.codePointAt())) {
|
|
10382
|
+
let namedChar = codesArray.filter(nestedArr => {
|
|
10383
|
+
return nestedArr[1].codepoints[0] == char.codePointAt();
|
|
10384
|
+
});
|
|
10385
|
+
// If it's a special character return now
|
|
10386
|
+
return `${namedChar[0][0]}`;
|
|
10387
|
+
}
|
|
10388
|
+
let item = `${char}`;
|
|
10427
10389
|
|
|
10390
|
+
//spread operator can detect emoji surrogate pairs
|
|
10428
10391
|
if ([...item].length > 1) {
|
|
10429
10392
|
//handle and convert utf surrogate pairs
|
|
10430
10393
|
let concat = '';
|
|
10431
|
-
let unicode = '';
|
|
10394
|
+
let unicode = '';
|
|
10432
10395
|
|
|
10396
|
+
//for each part of the pair
|
|
10433
10397
|
for (let i = 0; i < 2; i++) {
|
|
10434
10398
|
//get the character code value
|
|
10435
|
-
let dec = char[i].codePointAt();
|
|
10436
|
-
|
|
10437
|
-
let bin = dec.toString(2);
|
|
10438
|
-
|
|
10439
|
-
let last10 = bin.slice(-10);
|
|
10440
|
-
|
|
10441
|
-
concat = concat + last10;
|
|
10442
|
-
|
|
10399
|
+
let dec = char[i].codePointAt();
|
|
10400
|
+
//convert to binary
|
|
10401
|
+
let bin = dec.toString(2);
|
|
10402
|
+
//take the last 10 bits
|
|
10403
|
+
let last10 = bin.slice(-10);
|
|
10404
|
+
//concatenate into 20 bit binary
|
|
10405
|
+
concat = concat + last10;
|
|
10406
|
+
//add 0x10000 to get unicode value
|
|
10443
10407
|
unicode = parseInt(concat, 2) + 0x10000;
|
|
10444
|
-
}
|
|
10445
|
-
|
|
10408
|
+
}
|
|
10446
10409
|
|
|
10410
|
+
//html entity from unicode value
|
|
10447
10411
|
return decimal2Html(unicode);
|
|
10448
|
-
}
|
|
10449
|
-
|
|
10412
|
+
}
|
|
10450
10413
|
|
|
10414
|
+
//ASCII character or html entity from character code
|
|
10451
10415
|
return char.codePointAt() > 127 ? decimal2Html(char.codePointAt()) : char;
|
|
10452
|
-
};
|
|
10453
|
-
|
|
10416
|
+
};
|
|
10454
10417
|
|
|
10418
|
+
//check each character
|
|
10455
10419
|
[...str].forEach(char => {
|
|
10456
10420
|
result += char2Html(char);
|
|
10457
10421
|
});
|
|
10458
10422
|
return result;
|
|
10459
10423
|
}
|
|
10460
|
-
|
|
10461
10424
|
}
|
|
10462
10425
|
};
|
|
10463
10426
|
const charts = {
|
|
@@ -10480,9 +10443,7 @@ const charts = {
|
|
|
10480
10443
|
if (values.every(val => val === 0)) {
|
|
10481
10444
|
return false;
|
|
10482
10445
|
}
|
|
10483
|
-
|
|
10484
10446
|
let regressionCalc = this.calculateLinearRegression(values);
|
|
10485
|
-
|
|
10486
10447
|
if (regressionCalc >= trend_impact_base) {
|
|
10487
10448
|
return 1;
|
|
10488
10449
|
} else if (regressionCalc < -trend_impact_base) {
|
|
@@ -10491,7 +10452,6 @@ const charts = {
|
|
|
10491
10452
|
return 0;
|
|
10492
10453
|
}
|
|
10493
10454
|
},
|
|
10494
|
-
|
|
10495
10455
|
/*
|
|
10496
10456
|
* Calculates the linear regression for the trend impact
|
|
10497
10457
|
*
|
|
@@ -10516,38 +10476,29 @@ const charts = {
|
|
|
10516
10476
|
let denominator = nums.length * squared_index - summed_index ** 2;
|
|
10517
10477
|
if (denominator != 0) return numerator / denominator;else return 0;
|
|
10518
10478
|
},
|
|
10519
|
-
|
|
10520
10479
|
//return an array of default colors
|
|
10521
10480
|
getDefaultColors() {
|
|
10522
10481
|
return this.$data.defcolors;
|
|
10523
10482
|
},
|
|
10524
|
-
|
|
10525
10483
|
//return a specific color
|
|
10526
10484
|
getColor(color) {
|
|
10527
10485
|
switch (color) {
|
|
10528
10486
|
case 'black':
|
|
10529
10487
|
return _as_variables_default.a.toggleMetricLabelBlack;
|
|
10530
|
-
|
|
10531
10488
|
case 'gray':
|
|
10532
10489
|
return _as_variables_default.a.toggleMetricLabelGray;
|
|
10533
|
-
|
|
10534
10490
|
case 'green':
|
|
10535
10491
|
return _as_variables_default.a.toggleMetricChartGreen;
|
|
10536
|
-
|
|
10537
10492
|
case 'amber':
|
|
10538
10493
|
return _as_variables_default.a.toggleMetricChartAmber;
|
|
10539
|
-
|
|
10540
10494
|
case 'red':
|
|
10541
10495
|
return _as_variables_default.a.toggleMetricChartRed;
|
|
10542
|
-
|
|
10543
10496
|
case 'blue':
|
|
10544
10497
|
return _as_variables_default.a.toggleMetricChartBlue;
|
|
10545
|
-
|
|
10546
10498
|
case 'additional':
|
|
10547
10499
|
return _as_variables_default.a.toggleMetricChartAdditional;
|
|
10548
10500
|
}
|
|
10549
10501
|
}
|
|
10550
|
-
|
|
10551
10502
|
}
|
|
10552
10503
|
};
|
|
10553
10504
|
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputText.vue?vue&type=script&lang=js&
|
|
@@ -10636,28 +10587,25 @@ const charts = {
|
|
|
10636
10587
|
* Concat message for count characters
|
|
10637
10588
|
* @return string
|
|
10638
10589
|
*/
|
|
10639
|
-
messageLength(
|
|
10640
|
-
let message =
|
|
10641
|
-
let mcount = 0;
|
|
10590
|
+
messageLength(msg, maxLength) {
|
|
10591
|
+
let message = msg;
|
|
10592
|
+
let mcount = 0;
|
|
10642
10593
|
|
|
10643
|
-
|
|
10644
|
-
|
|
10645
|
-
|
|
10594
|
+
// If the emoji flag is set, make sure the character count takes account of the decoded emoji characters (this will include £ signs)
|
|
10595
|
+
if (this.includeEmojiEntitiesInCharCount && msg) {
|
|
10596
|
+
message = this.convertEmojis(msg);
|
|
10597
|
+
mcount = message ? message.length : 0;
|
|
10646
10598
|
} else {
|
|
10647
10599
|
mcount = message ? message.length : 0;
|
|
10648
10600
|
}
|
|
10649
|
-
|
|
10650
|
-
return mcount + ' / ' + maxLenght;
|
|
10601
|
+
return mcount + ' / ' + maxLength;
|
|
10651
10602
|
},
|
|
10652
|
-
|
|
10653
10603
|
onFocus() {
|
|
10654
10604
|
this.$emit('onFocus');
|
|
10655
10605
|
},
|
|
10656
|
-
|
|
10657
10606
|
onBlur() {
|
|
10658
10607
|
this.$emit('onBlur');
|
|
10659
10608
|
}
|
|
10660
|
-
|
|
10661
10609
|
}
|
|
10662
10610
|
});
|
|
10663
10611
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputText.vue?vue&type=script&lang=js&
|
|
@@ -10780,11 +10728,10 @@ var component = normalizeComponent(
|
|
|
10780
10728
|
)
|
|
10781
10729
|
|
|
10782
10730
|
/* harmony default export */ var ToggleInputText = (component.exports);
|
|
10783
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10731
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputWebsite.vue?vue&type=template&id=7b07579a&
|
|
10784
10732
|
var ToggleInputWebsitevue_type_template_id_7b07579a_render = function render() {
|
|
10785
10733
|
var _vm = this,
|
|
10786
|
-
|
|
10787
|
-
|
|
10734
|
+
_c = _vm._self._c;
|
|
10788
10735
|
return _c('div', {
|
|
10789
10736
|
staticClass: "toggle-input-container",
|
|
10790
10737
|
class: {
|
|
@@ -10852,13 +10799,11 @@ var ToggleInputWebsitevue_type_template_id_7b07579a_render = function render() {
|
|
|
10852
10799
|
"blur": _vm.setWebsite,
|
|
10853
10800
|
"change": function ($event) {
|
|
10854
10801
|
var $$a = _vm.website,
|
|
10855
|
-
|
|
10856
|
-
|
|
10857
|
-
|
|
10802
|
+
$$el = $event.target,
|
|
10803
|
+
$$c = $$el.checked ? true : false;
|
|
10858
10804
|
if (Array.isArray($$a)) {
|
|
10859
10805
|
var $$v = null,
|
|
10860
|
-
|
|
10861
|
-
|
|
10806
|
+
$$i = _vm._i($$a, $$v);
|
|
10862
10807
|
if ($$el.checked) {
|
|
10863
10808
|
$$i < 0 && (_vm.website = $$a.concat([$$v]));
|
|
10864
10809
|
} else {
|
|
@@ -10927,7 +10872,6 @@ var ToggleInputWebsitevue_type_template_id_7b07579a_render = function render() {
|
|
|
10927
10872
|
}
|
|
10928
10873
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
10929
10874
|
};
|
|
10930
|
-
|
|
10931
10875
|
var ToggleInputWebsitevue_type_template_id_7b07579a_staticRenderFns = [];
|
|
10932
10876
|
|
|
10933
10877
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputWebsite.vue?vue&type=template&id=7b07579a&
|
|
@@ -11020,20 +10964,16 @@ var ToggleInputWebsitevue_type_template_id_7b07579a_staticRenderFns = [];
|
|
|
11020
10964
|
let mcount = count ? count.length : 0;
|
|
11021
10965
|
return mcount + ' / ' + maxLenght;
|
|
11022
10966
|
},
|
|
11023
|
-
|
|
11024
10967
|
onFocus() {
|
|
11025
10968
|
this.$emit('onFocus');
|
|
11026
10969
|
},
|
|
11027
|
-
|
|
11028
10970
|
onBlur() {
|
|
11029
10971
|
this.$emit('onBlur');
|
|
11030
10972
|
},
|
|
11031
|
-
|
|
11032
10973
|
setWebsite() {
|
|
11033
10974
|
if (this.inputVal) {
|
|
11034
10975
|
this.website = this.website.replace(/(^\w+:|^)\/\//, '');
|
|
11035
10976
|
var arr = this.inputVal.split("/");
|
|
11036
|
-
|
|
11037
10977
|
if (arr[2] === 'http:' || arr[2] === 'https:') {
|
|
11038
10978
|
this.protocol = arr[2] + "//";
|
|
11039
10979
|
} else {
|
|
@@ -11044,7 +10984,6 @@ var ToggleInputWebsitevue_type_template_id_7b07579a_staticRenderFns = [];
|
|
|
11044
10984
|
this.website = '';
|
|
11045
10985
|
}
|
|
11046
10986
|
}
|
|
11047
|
-
|
|
11048
10987
|
}
|
|
11049
10988
|
});
|
|
11050
10989
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputWebsite.vue?vue&type=script&lang=js&
|
|
@@ -11069,11 +11008,10 @@ var ToggleInputWebsite_component = normalizeComponent(
|
|
|
11069
11008
|
)
|
|
11070
11009
|
|
|
11071
11010
|
/* harmony default export */ var ToggleInputWebsite = (ToggleInputWebsite_component.exports);
|
|
11072
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
11011
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleDatePicker.vue?vue&type=template&id=44ffdc7f&
|
|
11073
11012
|
var ToggleDatePickervue_type_template_id_44ffdc7f_render = function render() {
|
|
11074
11013
|
var _vm = this,
|
|
11075
|
-
|
|
11076
|
-
|
|
11014
|
+
_c = _vm._self._c;
|
|
11077
11015
|
return _c('div', {
|
|
11078
11016
|
staticClass: "toggle-date-container",
|
|
11079
11017
|
class: ['datepicker-trigger', {
|
|
@@ -11136,7 +11074,6 @@ var ToggleDatePickervue_type_template_id_44ffdc7f_render = function render() {
|
|
|
11136
11074
|
}
|
|
11137
11075
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
|
|
11138
11076
|
};
|
|
11139
|
-
|
|
11140
11077
|
var ToggleDatePickervue_type_template_id_44ffdc7f_staticRenderFns = [];
|
|
11141
11078
|
|
|
11142
11079
|
// CONCATENATED MODULE: ./src/components/forms/ToggleDatePicker.vue?vue&type=template&id=44ffdc7f&
|
|
@@ -12399,13 +12336,11 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12399
12336
|
let state = newVal ? 'open' : 'closed';
|
|
12400
12337
|
this.$emit('state', state);
|
|
12401
12338
|
}
|
|
12402
|
-
|
|
12403
12339
|
},
|
|
12404
12340
|
computed: {
|
|
12405
12341
|
date() {
|
|
12406
12342
|
return this.dateRangeView(this.displayValue);
|
|
12407
12343
|
},
|
|
12408
|
-
|
|
12409
12344
|
// plugin only accepts MM/DD/YYYY, so change this so that it excepts and outputs JS dates
|
|
12410
12345
|
displayValue: {
|
|
12411
12346
|
get: function () {
|
|
@@ -12415,7 +12350,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12415
12350
|
if (modifiedValue) {
|
|
12416
12351
|
modifiedValue = new Date(new Date(modifiedValue + ' 00:00:00').toISOString());
|
|
12417
12352
|
} else modifiedValue = false;
|
|
12418
|
-
|
|
12419
12353
|
this.$emit('input', modifiedValue);
|
|
12420
12354
|
}
|
|
12421
12355
|
}
|
|
@@ -12424,13 +12358,11 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12424
12358
|
clearDate() {
|
|
12425
12359
|
this.displayValue = '';
|
|
12426
12360
|
},
|
|
12427
|
-
|
|
12428
12361
|
toggleDatePickerState(state) {
|
|
12429
12362
|
this.$nextTick(() => {
|
|
12430
12363
|
if (typeof state === 'boolean') this.datePickerOpen = state;else this.datePickerOpen = !this.datePickerOpen;
|
|
12431
12364
|
});
|
|
12432
12365
|
}
|
|
12433
|
-
|
|
12434
12366
|
}
|
|
12435
12367
|
});
|
|
12436
12368
|
// CONCATENATED MODULE: ./src/components/forms/ToggleDatePicker.vue?vue&type=script&lang=js&
|
|
@@ -12455,11 +12387,10 @@ var ToggleDatePicker_component = normalizeComponent(
|
|
|
12455
12387
|
)
|
|
12456
12388
|
|
|
12457
12389
|
/* harmony default export */ var ToggleDatePicker = (ToggleDatePicker_component.exports);
|
|
12458
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12390
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleDateRangePicker.vue?vue&type=template&id=5605f472&
|
|
12459
12391
|
var ToggleDateRangePickervue_type_template_id_5605f472_render = function render() {
|
|
12460
12392
|
var _vm = this,
|
|
12461
|
-
|
|
12462
|
-
|
|
12393
|
+
_c = _vm._self._c;
|
|
12463
12394
|
return _c('div', {
|
|
12464
12395
|
staticClass: "toggle-date-container",
|
|
12465
12396
|
class: ['datepicker-trigger', {
|
|
@@ -12531,7 +12462,6 @@ var ToggleDateRangePickervue_type_template_id_5605f472_render = function render(
|
|
|
12531
12462
|
}
|
|
12532
12463
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
|
|
12533
12464
|
};
|
|
12534
|
-
|
|
12535
12465
|
var ToggleDateRangePickervue_type_template_id_5605f472_staticRenderFns = [];
|
|
12536
12466
|
|
|
12537
12467
|
// CONCATENATED MODULE: ./src/components/forms/ToggleDateRangePicker.vue?vue&type=template&id=5605f472&
|
|
@@ -12613,23 +12543,18 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12613
12543
|
let state = newVal ? 'open' : 'closed';
|
|
12614
12544
|
this.$emit('state', state);
|
|
12615
12545
|
}
|
|
12616
|
-
|
|
12617
12546
|
},
|
|
12618
12547
|
computed: {
|
|
12619
12548
|
dateRange() {
|
|
12620
12549
|
let formattedDates = '';
|
|
12621
|
-
|
|
12622
12550
|
if (this.displayValue.start) {
|
|
12623
12551
|
formattedDates = this.dateRangeView(this.displayValue.start);
|
|
12624
12552
|
}
|
|
12625
|
-
|
|
12626
12553
|
if (this.displayValue.end) {
|
|
12627
12554
|
formattedDates += ' - ' + this.dateRangeView(this.displayValue.end);
|
|
12628
12555
|
}
|
|
12629
|
-
|
|
12630
12556
|
return formattedDates;
|
|
12631
12557
|
},
|
|
12632
|
-
|
|
12633
12558
|
displayValue: {
|
|
12634
12559
|
get: function () {
|
|
12635
12560
|
return {
|
|
@@ -12647,7 +12572,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12647
12572
|
end: this.selectedDateToEmit.end ? this.selectedDateToEmit.end : isoDate
|
|
12648
12573
|
};
|
|
12649
12574
|
}
|
|
12650
|
-
|
|
12651
12575
|
if (modifiedValue.end) {
|
|
12652
12576
|
//if modifiedValue.end is present, set selectedDateToEmit.end to it. If there is already a start date stored,
|
|
12653
12577
|
// set selectedDateToEmit.start to it, otherwise use the end date.
|
|
@@ -12656,9 +12580,8 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12656
12580
|
start: this.selectedDateToEmit.start ? this.selectedDateToEmit.start : isoDate,
|
|
12657
12581
|
end: isoDate
|
|
12658
12582
|
};
|
|
12659
|
-
}
|
|
12660
|
-
|
|
12661
|
-
|
|
12583
|
+
}
|
|
12584
|
+
// If the start date is more recent than the end date, set the end date to the start date.
|
|
12662
12585
|
if (new Date(this.selectedDateToEmit.start).getTime() > new Date(this.selectedDateToEmit.end).getTime()) this.selectedDateToEmit.end = this.selectedDateToEmit.start;
|
|
12663
12586
|
}
|
|
12664
12587
|
}
|
|
@@ -12670,14 +12593,12 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12670
12593
|
end: ''
|
|
12671
12594
|
};
|
|
12672
12595
|
},
|
|
12673
|
-
|
|
12674
12596
|
toggleDatePickerState(state, emit) {
|
|
12675
12597
|
this.$nextTick(() => {
|
|
12676
12598
|
this.displayValue = {
|
|
12677
12599
|
start: '',
|
|
12678
12600
|
end: ''
|
|
12679
12601
|
};
|
|
12680
|
-
|
|
12681
12602
|
if (typeof state === 'boolean') {
|
|
12682
12603
|
//if done is clicked, emit
|
|
12683
12604
|
if (emit) this.$emit('input', this.selectedDateToEmit);
|
|
@@ -12685,7 +12606,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12685
12606
|
} else this.datePickerOpen = !this.datePickerOpen;
|
|
12686
12607
|
});
|
|
12687
12608
|
}
|
|
12688
|
-
|
|
12689
12609
|
}
|
|
12690
12610
|
});
|
|
12691
12611
|
// CONCATENATED MODULE: ./src/components/forms/ToggleDateRangePicker.vue?vue&type=script&lang=js&
|
|
@@ -12710,11 +12630,10 @@ var ToggleDateRangePicker_component = normalizeComponent(
|
|
|
12710
12630
|
)
|
|
12711
12631
|
|
|
12712
12632
|
/* harmony default export */ var ToggleDateRangePicker = (ToggleDateRangePicker_component.exports);
|
|
12713
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12633
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputSelect.vue?vue&type=template&id=1fed8e17&
|
|
12714
12634
|
var ToggleInputSelectvue_type_template_id_1fed8e17_render = function render() {
|
|
12715
12635
|
var _vm = this,
|
|
12716
|
-
|
|
12717
|
-
|
|
12636
|
+
_c = _vm._self._c;
|
|
12718
12637
|
return _c('div', {
|
|
12719
12638
|
staticClass: "toggle-input-container",
|
|
12720
12639
|
class: {
|
|
@@ -12773,7 +12692,6 @@ var ToggleInputSelectvue_type_template_id_1fed8e17_render = function render() {
|
|
|
12773
12692
|
}
|
|
12774
12693
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
12775
12694
|
};
|
|
12776
|
-
|
|
12777
12695
|
var ToggleInputSelectvue_type_template_id_1fed8e17_staticRenderFns = [];
|
|
12778
12696
|
|
|
12779
12697
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputSelect.vue?vue&type=template&id=1fed8e17&
|
|
@@ -12838,17 +12756,14 @@ var ToggleInputSelectvue_type_template_id_1fed8e17_staticRenderFns = [];
|
|
|
12838
12756
|
onFocus() {
|
|
12839
12757
|
this.$emit('onFocus');
|
|
12840
12758
|
},
|
|
12841
|
-
|
|
12842
12759
|
onBlur() {
|
|
12843
12760
|
this.$emit('onBlur');
|
|
12844
12761
|
}
|
|
12845
|
-
|
|
12846
12762
|
},
|
|
12847
12763
|
watch: {
|
|
12848
12764
|
options(options) {
|
|
12849
12765
|
if (options.filter(option => option.value == this.inputVal).length == 0) this.inputVal = "";
|
|
12850
12766
|
}
|
|
12851
|
-
|
|
12852
12767
|
}
|
|
12853
12768
|
});
|
|
12854
12769
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputSelect.vue?vue&type=script&lang=js&
|
|
@@ -12873,11 +12788,10 @@ var ToggleInputSelect_component = normalizeComponent(
|
|
|
12873
12788
|
)
|
|
12874
12789
|
|
|
12875
12790
|
/* harmony default export */ var ToggleInputSelect = (ToggleInputSelect_component.exports);
|
|
12876
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12791
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputPercentage.vue?vue&type=template&id=1c55c28c&
|
|
12877
12792
|
var ToggleInputPercentagevue_type_template_id_1c55c28c_render = function render() {
|
|
12878
12793
|
var _vm = this,
|
|
12879
|
-
|
|
12880
|
-
|
|
12794
|
+
_c = _vm._self._c;
|
|
12881
12795
|
return _c('div', {
|
|
12882
12796
|
staticClass: "toggle-input-container",
|
|
12883
12797
|
class: {
|
|
@@ -12927,7 +12841,6 @@ var ToggleInputPercentagevue_type_template_id_1c55c28c_render = function render(
|
|
|
12927
12841
|
}
|
|
12928
12842
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
12929
12843
|
};
|
|
12930
|
-
|
|
12931
12844
|
var ToggleInputPercentagevue_type_template_id_1c55c28c_staticRenderFns = [];
|
|
12932
12845
|
|
|
12933
12846
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputPercentage.vue?vue&type=template&id=1c55c28c&
|
|
@@ -12987,7 +12900,6 @@ var ToggleInputPercentagevue_type_template_id_1c55c28c_staticRenderFns = [];
|
|
|
12987
12900
|
this.inputVal = '100';
|
|
12988
12901
|
}
|
|
12989
12902
|
}
|
|
12990
|
-
|
|
12991
12903
|
},
|
|
12992
12904
|
computed: {
|
|
12993
12905
|
inputVal: {
|
|
@@ -13017,15 +12929,12 @@ var ToggleInputPercentagevue_type_template_id_1c55c28c_staticRenderFns = [];
|
|
|
13017
12929
|
let mcount = count ? count.length : 0;
|
|
13018
12930
|
return mcount + ' / ' + maxLenght;
|
|
13019
12931
|
},
|
|
13020
|
-
|
|
13021
12932
|
onFocus() {
|
|
13022
12933
|
this.$emit('onFocus');
|
|
13023
12934
|
},
|
|
13024
|
-
|
|
13025
12935
|
onBlur() {
|
|
13026
12936
|
this.$emit('onBlur');
|
|
13027
12937
|
}
|
|
13028
|
-
|
|
13029
12938
|
}
|
|
13030
12939
|
});
|
|
13031
12940
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputPercentage.vue?vue&type=script&lang=js&
|
|
@@ -13050,11 +12959,10 @@ var ToggleInputPercentage_component = normalizeComponent(
|
|
|
13050
12959
|
)
|
|
13051
12960
|
|
|
13052
12961
|
/* harmony default export */ var ToggleInputPercentage = (ToggleInputPercentage_component.exports);
|
|
13053
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12962
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCurrency.vue?vue&type=template&id=26af574e&
|
|
13054
12963
|
var ToggleInputCurrencyvue_type_template_id_26af574e_render = function render() {
|
|
13055
12964
|
var _vm = this,
|
|
13056
|
-
|
|
13057
|
-
|
|
12965
|
+
_c = _vm._self._c;
|
|
13058
12966
|
return _c('div', {
|
|
13059
12967
|
staticClass: "toggle-input-container",
|
|
13060
12968
|
class: {
|
|
@@ -13104,7 +13012,6 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_render = function render()
|
|
|
13104
13012
|
}
|
|
13105
13013
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
13106
13014
|
};
|
|
13107
|
-
|
|
13108
13015
|
var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
|
|
13109
13016
|
|
|
13110
13017
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCurrency.vue?vue&type=template&id=26af574e&
|
|
@@ -13180,11 +13087,12 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
|
|
|
13180
13087
|
inputVal: {
|
|
13181
13088
|
get: function () {
|
|
13182
13089
|
if (this.isInputActive) {
|
|
13183
|
-
if ((this.value === '' || this.value === null) && this.allowBlank) return '';
|
|
13184
|
-
|
|
13090
|
+
if ((this.value === '' || this.value === null) && this.allowBlank) return '';
|
|
13091
|
+
// Cursor is inside the input field. unformat display value for user
|
|
13185
13092
|
return (this.value / this.currencyDenomination).toLocaleString(this.currencyLocale);
|
|
13186
13093
|
} else {
|
|
13187
|
-
if (this.value === '' || this.value == null) return '';
|
|
13094
|
+
if (this.value === '' || this.value == null) return '';
|
|
13095
|
+
// User is not modifying now. Format display value for user interface
|
|
13188
13096
|
|
|
13189
13097
|
return (this.value / this.currencyDenomination).toLocaleString(this.currencyLocale, {
|
|
13190
13098
|
style: 'currency',
|
|
@@ -13194,16 +13102,16 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
|
|
|
13194
13102
|
},
|
|
13195
13103
|
set: function (modifiedValue) {
|
|
13196
13104
|
// if the decimal seperator is a comma replace any inputted commas to periods
|
|
13197
|
-
let newValue = this.unformatString(modifiedValue);
|
|
13105
|
+
let newValue = this.unformatString(modifiedValue);
|
|
13106
|
+
|
|
13107
|
+
// Recalculate value after ignoring "$" and "," in user input
|
|
13198
13108
|
// let newValue = parseFloat(modifiedValue.replace(/[^\d.]/g, ""));
|
|
13199
13109
|
// Ensure that it is not NaN
|
|
13200
|
-
|
|
13201
13110
|
if (isNaN(newValue)) {
|
|
13202
13111
|
if (this.allowBlank) newValue = '';else newValue = 0;
|
|
13203
|
-
}
|
|
13112
|
+
}
|
|
13113
|
+
// Note: we cannot set this.value as it is a "prop". It needs to be passed to parent component
|
|
13204
13114
|
// $emit the event so that parent component gets it
|
|
13205
|
-
|
|
13206
|
-
|
|
13207
13115
|
if (newValue !== '') newValue = Math.round(newValue * this.currencyDenomination);
|
|
13208
13116
|
this.$emit('input', newValue);
|
|
13209
13117
|
}
|
|
@@ -13213,6 +13121,7 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
|
|
|
13213
13121
|
/**
|
|
13214
13122
|
* Unformats from locale currency to float
|
|
13215
13123
|
*/
|
|
13124
|
+
|
|
13216
13125
|
unformatString(string) {
|
|
13217
13126
|
var parts = 1234.5.toLocaleString(this.currencyLocale).match(/(\D+)/g);
|
|
13218
13127
|
var unformatted = string;
|
|
@@ -13220,7 +13129,6 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
|
|
|
13220
13129
|
unformatted = unformatted.split(parts[1]).join(".");
|
|
13221
13130
|
return parseFloat(unformatted);
|
|
13222
13131
|
},
|
|
13223
|
-
|
|
13224
13132
|
/*
|
|
13225
13133
|
* Concat message for count characters
|
|
13226
13134
|
* @return string
|
|
@@ -13229,15 +13137,12 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
|
|
|
13229
13137
|
let mcount = count ? count.length : 0;
|
|
13230
13138
|
return mcount + ' / ' + maxLenght;
|
|
13231
13139
|
},
|
|
13232
|
-
|
|
13233
13140
|
onFocus() {
|
|
13234
13141
|
this.$emit('onFocus');
|
|
13235
13142
|
},
|
|
13236
|
-
|
|
13237
13143
|
onBlur() {
|
|
13238
13144
|
this.$emit('onBlur');
|
|
13239
13145
|
}
|
|
13240
|
-
|
|
13241
13146
|
}
|
|
13242
13147
|
});
|
|
13243
13148
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCurrency.vue?vue&type=script&lang=js&
|
|
@@ -13262,11 +13167,10 @@ var ToggleInputCurrency_component = normalizeComponent(
|
|
|
13262
13167
|
)
|
|
13263
13168
|
|
|
13264
13169
|
/* harmony default export */ var ToggleInputCurrency = (ToggleInputCurrency_component.exports);
|
|
13265
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13170
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputRadioButtons.vue?vue&type=template&id=2bb47213&
|
|
13266
13171
|
var ToggleInputRadioButtonsvue_type_template_id_2bb47213_render = function render() {
|
|
13267
13172
|
var _vm = this,
|
|
13268
|
-
|
|
13269
|
-
|
|
13173
|
+
_c = _vm._self._c;
|
|
13270
13174
|
return _c('div', {
|
|
13271
13175
|
ref: "toggle-input-container",
|
|
13272
13176
|
staticClass: "toggle-input-container margin-bottom-0",
|
|
@@ -13342,16 +13246,14 @@ var ToggleInputRadioButtonsvue_type_template_id_2bb47213_render = function rende
|
|
|
13342
13246
|
}
|
|
13343
13247
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
|
|
13344
13248
|
};
|
|
13345
|
-
|
|
13346
13249
|
var ToggleInputRadioButtonsvue_type_template_id_2bb47213_staticRenderFns = [];
|
|
13347
13250
|
|
|
13348
13251
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtons.vue?vue&type=template&id=2bb47213&
|
|
13349
13252
|
|
|
13350
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13253
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCheckbox.vue?vue&type=template&id=e8a79348&
|
|
13351
13254
|
var ToggleInputCheckboxvue_type_template_id_e8a79348_render = function render() {
|
|
13352
13255
|
var _vm = this,
|
|
13353
|
-
|
|
13354
|
-
|
|
13256
|
+
_c = _vm._self._c;
|
|
13355
13257
|
return _c('label', {
|
|
13356
13258
|
staticClass: "toggle-input-checkbox"
|
|
13357
13259
|
}, [_c('input', {
|
|
@@ -13373,13 +13275,11 @@ var ToggleInputCheckboxvue_type_template_id_e8a79348_render = function render()
|
|
|
13373
13275
|
on: {
|
|
13374
13276
|
"change": function ($event) {
|
|
13375
13277
|
var $$a = _vm.inputVal,
|
|
13376
|
-
|
|
13377
|
-
|
|
13378
|
-
|
|
13278
|
+
$$el = $event.target,
|
|
13279
|
+
$$c = $$el.checked ? true : false;
|
|
13379
13280
|
if (Array.isArray($$a)) {
|
|
13380
13281
|
var $$v = _vm.option,
|
|
13381
|
-
|
|
13382
|
-
|
|
13282
|
+
$$i = _vm._i($$a, $$v);
|
|
13383
13283
|
if ($$el.checked) {
|
|
13384
13284
|
$$i < 0 && (_vm.inputVal = $$a.concat([$$v]));
|
|
13385
13285
|
} else {
|
|
@@ -13396,7 +13296,6 @@ var ToggleInputCheckboxvue_type_template_id_e8a79348_render = function render()
|
|
|
13396
13296
|
class: ['toggle-input-checkbox-label', _vm.label_style]
|
|
13397
13297
|
}, [_vm._v(_vm._s(_vm.label))])])]);
|
|
13398
13298
|
};
|
|
13399
|
-
|
|
13400
13299
|
var ToggleInputCheckboxvue_type_template_id_e8a79348_staticRenderFns = [];
|
|
13401
13300
|
|
|
13402
13301
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckbox.vue?vue&type=template&id=e8a79348&
|
|
@@ -13451,11 +13350,9 @@ var ToggleInputCheckboxvue_type_template_id_e8a79348_staticRenderFns = [];
|
|
|
13451
13350
|
onFocus() {
|
|
13452
13351
|
this.$emit('onFocus');
|
|
13453
13352
|
},
|
|
13454
|
-
|
|
13455
13353
|
onBlur() {
|
|
13456
13354
|
this.$emit('onBlur');
|
|
13457
13355
|
}
|
|
13458
|
-
|
|
13459
13356
|
}
|
|
13460
13357
|
});
|
|
13461
13358
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckbox.vue?vue&type=script&lang=js&
|
|
@@ -13542,7 +13439,6 @@ var ToggleInputCheckbox_component = normalizeComponent(
|
|
|
13542
13439
|
if (newVal != '') this.checkboxModel = true;
|
|
13543
13440
|
this.previousValue = newVal;
|
|
13544
13441
|
},
|
|
13545
|
-
|
|
13546
13442
|
checkboxModel(newVal) {
|
|
13547
13443
|
if (!newVal) this.inputVal = '';
|
|
13548
13444
|
/*else if(this.inputVal == ''){
|
|
@@ -13551,17 +13447,15 @@ var ToggleInputCheckbox_component = normalizeComponent(
|
|
|
13551
13447
|
});
|
|
13552
13448
|
}*/
|
|
13553
13449
|
}
|
|
13554
|
-
|
|
13555
13450
|
},
|
|
13451
|
+
|
|
13556
13452
|
methods: {
|
|
13557
13453
|
onFocus() {
|
|
13558
13454
|
this.$emit('onFocus');
|
|
13559
13455
|
},
|
|
13560
|
-
|
|
13561
13456
|
onBlur() {
|
|
13562
13457
|
this.$emit('onBlur');
|
|
13563
13458
|
}
|
|
13564
|
-
|
|
13565
13459
|
}
|
|
13566
13460
|
});
|
|
13567
13461
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtons.vue?vue&type=script&lang=js&
|
|
@@ -13586,11 +13480,10 @@ var ToggleInputRadioButtons_component = normalizeComponent(
|
|
|
13586
13480
|
)
|
|
13587
13481
|
|
|
13588
13482
|
/* harmony default export */ var ToggleInputRadioButtons = (ToggleInputRadioButtons_component.exports);
|
|
13589
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13483
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputTextArea.vue?vue&type=template&id=60540840&
|
|
13590
13484
|
var ToggleInputTextAreavue_type_template_id_60540840_render = function render() {
|
|
13591
13485
|
var _vm = this,
|
|
13592
|
-
|
|
13593
|
-
|
|
13486
|
+
_c = _vm._self._c;
|
|
13594
13487
|
return _c('div', {
|
|
13595
13488
|
staticClass: "toggle-input-container",
|
|
13596
13489
|
class: {
|
|
@@ -13639,7 +13532,6 @@ var ToggleInputTextAreavue_type_template_id_60540840_render = function render()
|
|
|
13639
13532
|
}
|
|
13640
13533
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
13641
13534
|
};
|
|
13642
|
-
|
|
13643
13535
|
var ToggleInputTextAreavue_type_template_id_60540840_staticRenderFns = [];
|
|
13644
13536
|
|
|
13645
13537
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputTextArea.vue?vue&type=template&id=60540840&
|
|
@@ -13722,15 +13614,12 @@ var ToggleInputTextAreavue_type_template_id_60540840_staticRenderFns = [];
|
|
|
13722
13614
|
let mcount = count ? count.length : 0;
|
|
13723
13615
|
return mcount + ' / ' + maxLenght;
|
|
13724
13616
|
},
|
|
13725
|
-
|
|
13726
13617
|
onFocus() {
|
|
13727
13618
|
this.$emit('onFocus');
|
|
13728
13619
|
},
|
|
13729
|
-
|
|
13730
13620
|
onBlur() {
|
|
13731
13621
|
this.$emit('onBlur');
|
|
13732
13622
|
}
|
|
13733
|
-
|
|
13734
13623
|
}
|
|
13735
13624
|
});
|
|
13736
13625
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputTextArea.vue?vue&type=script&lang=js&
|
|
@@ -13755,11 +13644,10 @@ var ToggleInputTextArea_component = normalizeComponent(
|
|
|
13755
13644
|
)
|
|
13756
13645
|
|
|
13757
13646
|
/* harmony default export */ var ToggleInputTextArea = (ToggleInputTextArea_component.exports);
|
|
13758
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13647
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCheckboxContainer.vue?vue&type=template&id=37cf23ee&
|
|
13759
13648
|
var ToggleInputCheckboxContainervue_type_template_id_37cf23ee_render = function render() {
|
|
13760
13649
|
var _vm = this,
|
|
13761
|
-
|
|
13762
|
-
|
|
13650
|
+
_c = _vm._self._c;
|
|
13763
13651
|
return _c('div', {
|
|
13764
13652
|
staticClass: "toggle-input-container margin-bottom-0",
|
|
13765
13653
|
class: {
|
|
@@ -13776,7 +13664,6 @@ var ToggleInputCheckboxContainervue_type_template_id_37cf23ee_render = function
|
|
|
13776
13664
|
staticClass: "toggle-input-label-error"
|
|
13777
13665
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
13778
13666
|
};
|
|
13779
|
-
|
|
13780
13667
|
var ToggleInputCheckboxContainervue_type_template_id_37cf23ee_staticRenderFns = [];
|
|
13781
13668
|
|
|
13782
13669
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckboxContainer.vue?vue&type=template&id=37cf23ee&
|
|
@@ -13805,11 +13692,9 @@ var ToggleInputCheckboxContainervue_type_template_id_37cf23ee_staticRenderFns =
|
|
|
13805
13692
|
onFocus() {
|
|
13806
13693
|
this.$emit('onFocus');
|
|
13807
13694
|
},
|
|
13808
|
-
|
|
13809
13695
|
onBlur() {
|
|
13810
13696
|
this.$emit('onBlur');
|
|
13811
13697
|
}
|
|
13812
|
-
|
|
13813
13698
|
}
|
|
13814
13699
|
});
|
|
13815
13700
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckboxContainer.vue?vue&type=script&lang=js&
|
|
@@ -13834,11 +13719,10 @@ var ToggleInputCheckboxContainer_component = normalizeComponent(
|
|
|
13834
13719
|
)
|
|
13835
13720
|
|
|
13836
13721
|
/* harmony default export */ var ToggleInputCheckboxContainer = (ToggleInputCheckboxContainer_component.exports);
|
|
13837
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13722
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInternationalPhoneInputSelect.vue?vue&type=template&id=61f0b5fb&
|
|
13838
13723
|
var ToggleInternationalPhoneInputSelectvue_type_template_id_61f0b5fb_render = function render() {
|
|
13839
13724
|
var _vm = this,
|
|
13840
|
-
|
|
13841
|
-
|
|
13725
|
+
_c = _vm._self._c;
|
|
13842
13726
|
return _c('div', {
|
|
13843
13727
|
staticClass: "toggle-country-wrapper"
|
|
13844
13728
|
}, [_c('div', {
|
|
@@ -13913,7 +13797,6 @@ var ToggleInternationalPhoneInputSelectvue_type_template_id_61f0b5fb_render = fu
|
|
|
13913
13797
|
on: {
|
|
13914
13798
|
"input": function ($event) {
|
|
13915
13799
|
if ($event.target.composing) return;
|
|
13916
|
-
|
|
13917
13800
|
_vm.$set(_vm.inputVal, "lineNumber", $event.target.value);
|
|
13918
13801
|
}
|
|
13919
13802
|
}
|
|
@@ -13924,7 +13807,6 @@ var ToggleInternationalPhoneInputSelectvue_type_template_id_61f0b5fb_render = fu
|
|
|
13924
13807
|
}
|
|
13925
13808
|
}, [_vm._v(" " + _vm._s(_vm.componentError) + " ")]) : _vm._e()]);
|
|
13926
13809
|
};
|
|
13927
|
-
|
|
13928
13810
|
var ToggleInternationalPhoneInputSelectvue_type_template_id_61f0b5fb_staticRenderFns = [];
|
|
13929
13811
|
|
|
13930
13812
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInternationalPhoneInputSelect.vue?vue&type=template&id=61f0b5fb&
|
|
@@ -13942,7 +13824,6 @@ var index_es5_min = __webpack_require__("839e");
|
|
|
13942
13824
|
countrySelectormodel: ''
|
|
13943
13825
|
};
|
|
13944
13826
|
},
|
|
13945
|
-
|
|
13946
13827
|
props: {
|
|
13947
13828
|
value: {
|
|
13948
13829
|
type: Object,
|
|
@@ -13992,17 +13873,13 @@ var index_es5_min = __webpack_require__("839e");
|
|
|
13992
13873
|
countrySelectormodel(newVal) {
|
|
13993
13874
|
this.inputVal.areaCode = newVal.phone;
|
|
13994
13875
|
}
|
|
13995
|
-
|
|
13996
13876
|
},
|
|
13997
|
-
|
|
13998
13877
|
mounted() {
|
|
13999
13878
|
const {
|
|
14000
13879
|
countries
|
|
14001
13880
|
} = __webpack_require__("839e");
|
|
14002
|
-
|
|
14003
13881
|
this.setDefaultContry(countries);
|
|
14004
13882
|
},
|
|
14005
|
-
|
|
14006
13883
|
methods: {
|
|
14007
13884
|
// Sets the selected country on page load
|
|
14008
13885
|
setDefaultContry(countries) {
|
|
@@ -14010,33 +13887,32 @@ var index_es5_min = __webpack_require__("839e");
|
|
|
14010
13887
|
let co = Object.keys(countries).map(function (key) {
|
|
14011
13888
|
countries[key].code = key;
|
|
14012
13889
|
return countries[key];
|
|
14013
|
-
});
|
|
13890
|
+
});
|
|
14014
13891
|
|
|
13892
|
+
// sort the countires by name, alphabetically
|
|
14015
13893
|
this.countries = co.sort(function (a, b) {
|
|
14016
13894
|
if (a.name < b.name) return -1;
|
|
14017
13895
|
if (a.name > b.name) return 1;
|
|
14018
13896
|
return 0;
|
|
14019
|
-
});
|
|
13897
|
+
});
|
|
14020
13898
|
|
|
13899
|
+
// if a value hasn't been set, lets select UK as default
|
|
14021
13900
|
if (!this.value.areaCode) {
|
|
14022
13901
|
this.value.areaCode = '44';
|
|
14023
|
-
}
|
|
14024
|
-
// otherwise just select the first country found that's a match.
|
|
14025
|
-
|
|
13902
|
+
}
|
|
14026
13903
|
|
|
13904
|
+
// some provinces share phone country codes, including the UK, if it's a 44 number, let's select United Kingdom by default
|
|
13905
|
+
// otherwise just select the first country found that's a match.
|
|
14027
13906
|
let possibleCountries = this.countries.filter(country => country.phone == this.value.areaCode);
|
|
14028
13907
|
let gb = possibleCountries.filter(country => country.code == 'GB');
|
|
14029
13908
|
this.countrySelectormodel = gb.length ? gb[0] : possibleCountries.length ? possibleCountries[0] : '';
|
|
14030
13909
|
},
|
|
14031
|
-
|
|
14032
13910
|
onFocus() {
|
|
14033
13911
|
this.$emit('onFocus');
|
|
14034
13912
|
},
|
|
14035
|
-
|
|
14036
13913
|
onBlur() {
|
|
14037
13914
|
this.$emit('onBlur');
|
|
14038
13915
|
}
|
|
14039
|
-
|
|
14040
13916
|
}
|
|
14041
13917
|
});
|
|
14042
13918
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInternationalPhoneInputSelect.vue?vue&type=script&lang=js&
|
|
@@ -14061,11 +13937,10 @@ var ToggleInternationalPhoneInputSelect_component = normalizeComponent(
|
|
|
14061
13937
|
)
|
|
14062
13938
|
|
|
14063
13939
|
/* harmony default export */ var ToggleInternationalPhoneInputSelect = (ToggleInternationalPhoneInputSelect_component.exports);
|
|
14064
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13940
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCrudField.vue?vue&type=template&id=5e1accbb&
|
|
14065
13941
|
var ToggleInputCrudFieldvue_type_template_id_5e1accbb_render = function render() {
|
|
14066
13942
|
var _vm = this,
|
|
14067
|
-
|
|
14068
|
-
|
|
13943
|
+
_c = _vm._self._c;
|
|
14069
13944
|
return _c('div', {
|
|
14070
13945
|
staticClass: "toggle-input-crud-container",
|
|
14071
13946
|
class: {
|
|
@@ -14103,16 +13978,14 @@ var ToggleInputCrudFieldvue_type_template_id_5e1accbb_render = function render()
|
|
|
14103
13978
|
staticClass: "toggle-input-label-error"
|
|
14104
13979
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
14105
13980
|
};
|
|
14106
|
-
|
|
14107
13981
|
var ToggleInputCrudFieldvue_type_template_id_5e1accbb_staticRenderFns = [];
|
|
14108
13982
|
|
|
14109
13983
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCrudField.vue?vue&type=template&id=5e1accbb&
|
|
14110
13984
|
|
|
14111
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13985
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/buttons/ToggleButton.vue?vue&type=template&id=66f2c9bb&
|
|
14112
13986
|
var ToggleButtonvue_type_template_id_66f2c9bb_render = function render() {
|
|
14113
13987
|
var _vm = this,
|
|
14114
|
-
|
|
14115
|
-
|
|
13988
|
+
_c = _vm._self._c;
|
|
14116
13989
|
return _c('div', {
|
|
14117
13990
|
class: ['toggle-button-container', {
|
|
14118
13991
|
'toggle-button-container-mini': _vm.isMini
|
|
@@ -14147,16 +14020,11 @@ var ToggleButtonvue_type_template_id_66f2c9bb_render = function render() {
|
|
|
14147
14020
|
return [_vm._v(_vm._s(_vm.buttonText))];
|
|
14148
14021
|
})], 2)]);
|
|
14149
14022
|
};
|
|
14150
|
-
|
|
14151
14023
|
var ToggleButtonvue_type_template_id_66f2c9bb_staticRenderFns = [];
|
|
14152
14024
|
|
|
14153
14025
|
// CONCATENATED MODULE: ./src/components/buttons/ToggleButton.vue?vue&type=template&id=66f2c9bb&
|
|
14154
14026
|
|
|
14155
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.includes.js
|
|
14156
|
-
var es_array_includes = __webpack_require__("caad");
|
|
14157
|
-
|
|
14158
14027
|
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/buttons/ToggleButton.vue?vue&type=script&lang=js&
|
|
14159
|
-
|
|
14160
14028
|
/* harmony default export */ var ToggleButtonvue_type_script_lang_js_ = ({
|
|
14161
14029
|
name: 'ButtonPrimary',
|
|
14162
14030
|
props: {
|
|
@@ -14167,7 +14035,6 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14167
14035
|
type: String,
|
|
14168
14036
|
default: "button"
|
|
14169
14037
|
},
|
|
14170
|
-
|
|
14171
14038
|
/**
|
|
14172
14039
|
* The HTML button type i.e. `submit` or `button`
|
|
14173
14040
|
*/
|
|
@@ -14175,7 +14042,6 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14175
14042
|
type: String,
|
|
14176
14043
|
default: "text"
|
|
14177
14044
|
},
|
|
14178
|
-
|
|
14179
14045
|
/**
|
|
14180
14046
|
* If it's a link, then the URL of the link
|
|
14181
14047
|
*/
|
|
@@ -14183,14 +14049,12 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14183
14049
|
type: String,
|
|
14184
14050
|
default: ""
|
|
14185
14051
|
},
|
|
14186
|
-
|
|
14187
14052
|
/**
|
|
14188
14053
|
* Should the button be disabled?
|
|
14189
14054
|
*/
|
|
14190
14055
|
disabled: {
|
|
14191
14056
|
default: false
|
|
14192
14057
|
},
|
|
14193
|
-
|
|
14194
14058
|
/**
|
|
14195
14059
|
* Is the button in a loading state?
|
|
14196
14060
|
*/
|
|
@@ -14198,7 +14062,6 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14198
14062
|
type: Boolean,
|
|
14199
14063
|
default: false
|
|
14200
14064
|
},
|
|
14201
|
-
|
|
14202
14065
|
/**
|
|
14203
14066
|
* The button visual style out of: `neutral`, `confirm`, `abort`
|
|
14204
14067
|
*/
|
|
@@ -14211,7 +14074,6 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14211
14074
|
isMini() {
|
|
14212
14075
|
return this.buttonStyle.includes('mini');
|
|
14213
14076
|
}
|
|
14214
|
-
|
|
14215
14077
|
},
|
|
14216
14078
|
watch: {
|
|
14217
14079
|
disabled() {
|
|
@@ -14219,13 +14081,11 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14219
14081
|
this.disableLinks();
|
|
14220
14082
|
}
|
|
14221
14083
|
},
|
|
14222
|
-
|
|
14223
14084
|
loading() {
|
|
14224
14085
|
if (this.$slots.default !== undefined) {
|
|
14225
14086
|
this.disableLinks();
|
|
14226
14087
|
}
|
|
14227
14088
|
}
|
|
14228
|
-
|
|
14229
14089
|
},
|
|
14230
14090
|
methods: {
|
|
14231
14091
|
/**
|
|
@@ -14236,7 +14096,6 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14236
14096
|
slot.data.attrs.href = this.disabled ? null : slot.data.attrs.href;
|
|
14237
14097
|
});
|
|
14238
14098
|
},
|
|
14239
|
-
|
|
14240
14099
|
click() {
|
|
14241
14100
|
/**
|
|
14242
14101
|
* Emitted when the button is clicked.
|
|
@@ -14245,15 +14104,12 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14245
14104
|
*/
|
|
14246
14105
|
this.$emit('click');
|
|
14247
14106
|
}
|
|
14248
|
-
|
|
14249
14107
|
},
|
|
14250
|
-
|
|
14251
14108
|
created() {
|
|
14252
14109
|
if (this.$slots.default !== undefined) {
|
|
14253
14110
|
this.disableLinks();
|
|
14254
14111
|
}
|
|
14255
14112
|
}
|
|
14256
|
-
|
|
14257
14113
|
});
|
|
14258
14114
|
// CONCATENATED MODULE: ./src/components/buttons/ToggleButton.vue?vue&type=script&lang=js&
|
|
14259
14115
|
/* harmony default export */ var buttons_ToggleButtonvue_type_script_lang_js_ = (ToggleButtonvue_type_script_lang_js_);
|
|
@@ -14316,7 +14172,6 @@ var ToggleButton_component = normalizeComponent(
|
|
|
14316
14172
|
let labelLength = this.label.split('').length;
|
|
14317
14173
|
return labelLength <= 15 ? this.label : this.label.slice(0, 15) + '...';
|
|
14318
14174
|
}
|
|
14319
|
-
|
|
14320
14175
|
},
|
|
14321
14176
|
methods: {
|
|
14322
14177
|
clickEmpty(e) {
|
|
@@ -14324,7 +14179,6 @@ var ToggleButton_component = normalizeComponent(
|
|
|
14324
14179
|
this.$emit('add');
|
|
14325
14180
|
}
|
|
14326
14181
|
}
|
|
14327
|
-
|
|
14328
14182
|
}
|
|
14329
14183
|
});
|
|
14330
14184
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCrudField.vue?vue&type=script&lang=js&
|
|
@@ -14349,11 +14203,10 @@ var ToggleInputCrudField_component = normalizeComponent(
|
|
|
14349
14203
|
)
|
|
14350
14204
|
|
|
14351
14205
|
/* harmony default export */ var ToggleInputCrudField = (ToggleInputCrudField_component.exports);
|
|
14352
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14206
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputGrid.vue?vue&type=template&id=0cb87c32&
|
|
14353
14207
|
var ToggleInputGridvue_type_template_id_0cb87c32_render = function render() {
|
|
14354
14208
|
var _vm = this,
|
|
14355
|
-
|
|
14356
|
-
|
|
14209
|
+
_c = _vm._self._c;
|
|
14357
14210
|
return _c('div', {
|
|
14358
14211
|
staticClass: "toggle-grid-input-container"
|
|
14359
14212
|
}, [_vm._l(_vm.inputVal, function (row, rowindex) {
|
|
@@ -14480,16 +14333,17 @@ var ToggleInputGridvue_type_template_id_0cb87c32_render = function render() {
|
|
|
14480
14333
|
}
|
|
14481
14334
|
})], 1)], 1)], 2);
|
|
14482
14335
|
};
|
|
14483
|
-
|
|
14484
14336
|
var ToggleInputGridvue_type_template_id_0cb87c32_staticRenderFns = [];
|
|
14485
14337
|
|
|
14486
14338
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputGrid.vue?vue&type=template&id=0cb87c32&
|
|
14487
14339
|
|
|
14488
|
-
//
|
|
14340
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
|
|
14341
|
+
var es_array_push = __webpack_require__("14d9");
|
|
14342
|
+
|
|
14343
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/modals/ToggleModal.vue?vue&type=template&id=35748012&
|
|
14489
14344
|
var ToggleModalvue_type_template_id_35748012_render = function render() {
|
|
14490
14345
|
var _vm = this,
|
|
14491
|
-
|
|
14492
|
-
|
|
14346
|
+
_c = _vm._self._c;
|
|
14493
14347
|
return _c('transition', {
|
|
14494
14348
|
attrs: {
|
|
14495
14349
|
"name": "toggle-modal"
|
|
@@ -14515,7 +14369,6 @@ var ToggleModalvue_type_template_id_35748012_render = function render() {
|
|
|
14515
14369
|
}
|
|
14516
14370
|
}), _vm._t("default")], 2)])]) : _vm._e()]);
|
|
14517
14371
|
};
|
|
14518
|
-
|
|
14519
14372
|
var ToggleModalvue_type_template_id_35748012_staticRenderFns = [];
|
|
14520
14373
|
|
|
14521
14374
|
// CONCATENATED MODULE: ./src/components/modals/ToggleModal.vue?vue&type=template&id=35748012&
|
|
@@ -14543,26 +14396,21 @@ var ToggleModalvue_type_template_id_35748012_staticRenderFns = [];
|
|
|
14543
14396
|
this.$toggle_event.$on('modal_show', this.show);
|
|
14544
14397
|
this.$toggle_event.$on('modal_hide', this.hide);
|
|
14545
14398
|
},
|
|
14546
|
-
|
|
14547
14399
|
beforeDestroy() {
|
|
14548
14400
|
this.$toggle_event.$off('modal_show', this.show);
|
|
14549
14401
|
this.$toggle_event.$off('modal_hide', this.hide);
|
|
14550
14402
|
},
|
|
14551
|
-
|
|
14552
14403
|
computed: {},
|
|
14553
14404
|
methods: {
|
|
14554
14405
|
show(payload) {
|
|
14555
14406
|
if (payload == this.name) this.showModal = true;
|
|
14556
14407
|
},
|
|
14557
|
-
|
|
14558
14408
|
hide(payload) {
|
|
14559
14409
|
if (payload == this.name) this.showModal = false;
|
|
14560
14410
|
},
|
|
14561
|
-
|
|
14562
14411
|
backgroundClick(e) {
|
|
14563
14412
|
if (e.target.classList.contains('toggle-modal-close')) this.showModal = false;
|
|
14564
14413
|
}
|
|
14565
|
-
|
|
14566
14414
|
}
|
|
14567
14415
|
});
|
|
14568
14416
|
// CONCATENATED MODULE: ./src/components/modals/ToggleModal.vue?vue&type=script&lang=js&
|
|
@@ -14587,16 +14435,14 @@ var ToggleModal_component = normalizeComponent(
|
|
|
14587
14435
|
)
|
|
14588
14436
|
|
|
14589
14437
|
/* harmony default export */ var ToggleModal = (ToggleModal_component.exports);
|
|
14590
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14438
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/text/ToggleHeaderTextLarge.vue?vue&type=template&id=47a1f9bc&
|
|
14591
14439
|
var ToggleHeaderTextLargevue_type_template_id_47a1f9bc_render = function render() {
|
|
14592
14440
|
var _vm = this,
|
|
14593
|
-
|
|
14594
|
-
|
|
14441
|
+
_c = _vm._self._c;
|
|
14595
14442
|
return _c('h3', {
|
|
14596
14443
|
staticClass: "toggle-h2-header"
|
|
14597
14444
|
}, [_vm._t("default")], 2);
|
|
14598
14445
|
};
|
|
14599
|
-
|
|
14600
14446
|
var ToggleHeaderTextLargevue_type_template_id_47a1f9bc_staticRenderFns = [];
|
|
14601
14447
|
|
|
14602
14448
|
// CONCATENATED MODULE: ./src/components/text/ToggleHeaderTextLarge.vue?vue&type=template&id=47a1f9bc&
|
|
@@ -14625,6 +14471,7 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14625
14471
|
|
|
14626
14472
|
|
|
14627
14473
|
|
|
14474
|
+
|
|
14628
14475
|
/* harmony default export */ var ToggleInputGridvue_type_script_lang_js_ = ({
|
|
14629
14476
|
mixins: [mixins],
|
|
14630
14477
|
components: {
|
|
@@ -14685,7 +14532,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14685
14532
|
data: function () {
|
|
14686
14533
|
return {
|
|
14687
14534
|
draggingIndex: null,
|
|
14688
|
-
|
|
14689
14535
|
/*rowModel:[
|
|
14690
14536
|
{
|
|
14691
14537
|
layout:[12]
|
|
@@ -14731,24 +14577,23 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14731
14577
|
}
|
|
14732
14578
|
},
|
|
14733
14579
|
deep: true // watches changes within an array of objects
|
|
14734
|
-
|
|
14735
14580
|
}
|
|
14736
14581
|
},
|
|
14582
|
+
|
|
14737
14583
|
methods: {
|
|
14738
14584
|
allowDrop(ev) {
|
|
14739
14585
|
ev.preventDefault();
|
|
14740
14586
|
},
|
|
14741
|
-
|
|
14742
14587
|
/**
|
|
14743
14588
|
* Drag handler
|
|
14744
14589
|
* @param {Number} [row] [row dropped into]
|
|
14745
14590
|
* @param {Number} [column] [column dropped into]
|
|
14746
14591
|
* @return Void
|
|
14747
14592
|
*/
|
|
14593
|
+
|
|
14748
14594
|
drag(row, column) {
|
|
14749
14595
|
this.draggingIndex = [row, column];
|
|
14750
14596
|
},
|
|
14751
|
-
|
|
14752
14597
|
/**
|
|
14753
14598
|
* Updates the layout of the grid and content automatically to the most logical position
|
|
14754
14599
|
* Can be called without params, if no content is being added to the grid
|
|
@@ -14760,7 +14605,8 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14760
14605
|
updateGridLayout(row, column, dropped_content) {
|
|
14761
14606
|
// if row is undefined, we're not adding a new column
|
|
14762
14607
|
let built_content = this.buildContentArray(row, column, dropped_content);
|
|
14763
|
-
this.setGridContent(built_content.column_array);
|
|
14608
|
+
this.setGridContent(built_content.column_array);
|
|
14609
|
+
// this.removeEmptyRows();
|
|
14764
14610
|
},
|
|
14765
14611
|
|
|
14766
14612
|
/*
|
|
@@ -14772,7 +14618,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14772
14618
|
*/
|
|
14773
14619
|
getGridReferenceOfColumn(column_number) {
|
|
14774
14620
|
let column_count = 0;
|
|
14775
|
-
|
|
14776
14621
|
for (let rowindex = 0; rowindex < this.inputVal.length; rowindex++) {
|
|
14777
14622
|
for (let columnindex = 0; columnindex < this.inputVal[rowindex].content.length; columnindex++) {
|
|
14778
14623
|
if (column_number == column_count) return [rowindex, columnindex];
|
|
@@ -14780,7 +14625,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14780
14625
|
}
|
|
14781
14626
|
}
|
|
14782
14627
|
},
|
|
14783
|
-
|
|
14784
14628
|
/*
|
|
14785
14629
|
* Remove a row from the grid
|
|
14786
14630
|
*
|
|
@@ -14792,12 +14636,10 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14792
14636
|
this.$delete(this.inputVal, row_index);
|
|
14793
14637
|
this.$toggle_event.$emit('modal_hide', 'confirm_delete_row');
|
|
14794
14638
|
},
|
|
14795
|
-
|
|
14796
14639
|
deleteCurrentRow(rowindex) {
|
|
14797
14640
|
this.editingGridRow = rowindex;
|
|
14798
14641
|
this.$toggle_event.$emit('modal_show', 'confirm_delete_row');
|
|
14799
14642
|
},
|
|
14800
|
-
|
|
14801
14643
|
/*
|
|
14802
14644
|
* Adds the array of content to the grid layout
|
|
14803
14645
|
*
|
|
@@ -14805,38 +14647,35 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14805
14647
|
*
|
|
14806
14648
|
* @return Void
|
|
14807
14649
|
*/
|
|
14650
|
+
|
|
14808
14651
|
setGridContent(content) {
|
|
14809
14652
|
// set the new content to the grid layout
|
|
14810
14653
|
for (let rowindex = 0; rowindex < this.inputVal.length; rowindex++) {
|
|
14811
14654
|
let old_number_of_columns = this.inputVal[rowindex].content.length;
|
|
14812
14655
|
this.inputVal[rowindex].content.length = this.inputVal[rowindex].layout.length;
|
|
14813
|
-
|
|
14814
14656
|
for (let columnindex = 0; columnindex < this.inputVal[rowindex].content.length; columnindex++) {
|
|
14815
14657
|
old_number_of_columns--;
|
|
14816
14658
|
this.$set(this.inputVal[rowindex].content, columnindex, content.shift());
|
|
14817
|
-
}
|
|
14818
|
-
|
|
14659
|
+
}
|
|
14819
14660
|
|
|
14661
|
+
// If we're reducing the number of columns in a row, remove any of the extra blank columns that were in that row
|
|
14820
14662
|
while (old_number_of_columns > 0) {
|
|
14821
14663
|
old_number_of_columns--;
|
|
14822
|
-
|
|
14823
14664
|
if (!content[0]) {
|
|
14824
14665
|
content.shift();
|
|
14825
14666
|
}
|
|
14826
14667
|
}
|
|
14827
|
-
}
|
|
14828
|
-
|
|
14668
|
+
}
|
|
14829
14669
|
|
|
14670
|
+
// Add new rows for any fields that no longer fit in the grid
|
|
14830
14671
|
while (content.length) {
|
|
14831
14672
|
let value = content.shift();
|
|
14832
|
-
|
|
14833
14673
|
if (value) {
|
|
14834
14674
|
this.addRow();
|
|
14835
14675
|
this.$set(this.inputVal[this.inputVal.length - 1].content, 0, value);
|
|
14836
14676
|
}
|
|
14837
14677
|
}
|
|
14838
14678
|
},
|
|
14839
|
-
|
|
14840
14679
|
/*
|
|
14841
14680
|
* Build a row agnostic array of content
|
|
14842
14681
|
* Can be called without params, if no content is being added to the grid
|
|
@@ -14847,11 +14686,10 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14847
14686
|
*
|
|
14848
14687
|
* @return { {Array} [column_array] [Array of columns],{Number} [content_inserted_at] [Index of inserted content] }
|
|
14849
14688
|
*/
|
|
14689
|
+
|
|
14850
14690
|
buildContentArray(row, column, dropped_content) {
|
|
14851
14691
|
let column_array = []; // the array to return
|
|
14852
|
-
|
|
14853
14692
|
let content_inserted_at = false; // have we reached the index that the new content has been added to?
|
|
14854
|
-
|
|
14855
14693
|
let spaceMadeUp = false; // have we managed to make up space for the extra content?
|
|
14856
14694
|
|
|
14857
14695
|
for (let rowindex = 0; rowindex < this.inputVal.length; rowindex++) {
|
|
@@ -14859,11 +14697,10 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14859
14697
|
// if we're adding a new column at this grid co-ordinate, add it in here
|
|
14860
14698
|
if (rowindex == row && columnindex == column) {
|
|
14861
14699
|
column_array.push(dropped_content); // add in our extra index
|
|
14862
|
-
|
|
14863
14700
|
content_inserted_at = column_array.length - 1;
|
|
14864
|
-
}
|
|
14865
|
-
|
|
14701
|
+
}
|
|
14866
14702
|
|
|
14703
|
+
// if there's a free space after inserting a new grid content, we remove this to compensate for adding one higher up in the grid
|
|
14867
14704
|
if (content_inserted_at !== false && !this.inputVal[rowindex].content[columnindex] && !spaceMadeUp) {
|
|
14868
14705
|
spaceMadeUp = true;
|
|
14869
14706
|
} else {
|
|
@@ -14872,13 +14709,11 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14872
14709
|
}
|
|
14873
14710
|
}
|
|
14874
14711
|
}
|
|
14875
|
-
|
|
14876
14712
|
return {
|
|
14877
14713
|
column_array: column_array,
|
|
14878
14714
|
content_inserted_at: content_inserted_at
|
|
14879
14715
|
};
|
|
14880
14716
|
},
|
|
14881
|
-
|
|
14882
14717
|
/**
|
|
14883
14718
|
* Checks if a given row index has content set
|
|
14884
14719
|
*
|
|
@@ -14887,12 +14722,9 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14887
14722
|
*/
|
|
14888
14723
|
rowHasContent(row_index) {
|
|
14889
14724
|
let row_content_found = false;
|
|
14890
|
-
|
|
14891
14725
|
for (let columnindex = 0; columnindex < this.inputVal[row_index].content.length; columnindex++) if (this.inputVal[row_index].content[columnindex]) row_content_found = true;
|
|
14892
|
-
|
|
14893
14726
|
return row_content_found;
|
|
14894
14727
|
},
|
|
14895
|
-
|
|
14896
14728
|
/**
|
|
14897
14729
|
* Removes excess row content. For example if a layout is [3,3,3] and content is
|
|
14898
14730
|
* [true,false,true,true] then it sets the content to [true, false, true]
|
|
@@ -14902,7 +14734,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14902
14734
|
removeExcessContent() {
|
|
14903
14735
|
for (let row_index = 0; row_index < this.inputVal.length; row_index++) this.inputVal[row_index].content.length = this.inputVal[row_index].layout.length;
|
|
14904
14736
|
},
|
|
14905
|
-
|
|
14906
14737
|
/**
|
|
14907
14738
|
* Removes empty rows from the grid
|
|
14908
14739
|
*
|
|
@@ -14910,22 +14741,20 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14910
14741
|
*/
|
|
14911
14742
|
removeEmptyRows() {
|
|
14912
14743
|
this.removeExcessContent();
|
|
14913
|
-
|
|
14914
14744
|
for (let rowindex = 0; rowindex < this.inputVal.length; rowindex++) if (!this.rowHasContent(rowindex)) this.inputVal.splice(rowindex, 1);
|
|
14915
14745
|
},
|
|
14916
|
-
|
|
14917
14746
|
/**
|
|
14918
14747
|
* Drop content handler
|
|
14919
14748
|
* @param {Number} [row] [row dropped into]
|
|
14920
14749
|
* @param {Number} [column] [column dropped into]
|
|
14921
14750
|
* @return Void
|
|
14922
14751
|
*/
|
|
14752
|
+
|
|
14923
14753
|
drop(row, column) {
|
|
14924
14754
|
let dropped_content = this.inputVal[this.draggingIndex[0]].content[this.draggingIndex[1]];
|
|
14925
14755
|
this.$set(this.inputVal[this.draggingIndex[0]].content, this.draggingIndex[1], null);
|
|
14926
14756
|
this.updateGridLayout(row, column, dropped_content);
|
|
14927
14757
|
},
|
|
14928
|
-
|
|
14929
14758
|
/**
|
|
14930
14759
|
* Add a blank row to the grid
|
|
14931
14760
|
*/
|
|
@@ -14935,7 +14764,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14935
14764
|
content: [null]
|
|
14936
14765
|
});
|
|
14937
14766
|
},
|
|
14938
|
-
|
|
14939
14767
|
/**
|
|
14940
14768
|
* Get a column percentage width
|
|
14941
14769
|
* @param {Nunber} [columns] [number of columns (out of 12) the column takes up]
|
|
@@ -14944,7 +14772,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14944
14772
|
getColumnWidth(columns) {
|
|
14945
14773
|
return 100 / (12 / columns);
|
|
14946
14774
|
}
|
|
14947
|
-
|
|
14948
14775
|
}
|
|
14949
14776
|
});
|
|
14950
14777
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputGrid.vue?vue&type=script&lang=js&
|
|
@@ -14969,11 +14796,10 @@ var ToggleInputGrid_component = normalizeComponent(
|
|
|
14969
14796
|
)
|
|
14970
14797
|
|
|
14971
14798
|
/* harmony default export */ var ToggleInputGrid = (ToggleInputGrid_component.exports);
|
|
14972
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14799
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputCheckboxInline.vue?vue&type=template&id=65994c14&
|
|
14973
14800
|
var ToggleInputCheckboxInlinevue_type_template_id_65994c14_render = function render() {
|
|
14974
14801
|
var _vm = this,
|
|
14975
|
-
|
|
14976
|
-
|
|
14802
|
+
_c = _vm._self._c;
|
|
14977
14803
|
return _c('label', {
|
|
14978
14804
|
staticClass: "toggle-input-checkbox-inline"
|
|
14979
14805
|
}, [_c('input', {
|
|
@@ -14994,13 +14820,11 @@ var ToggleInputCheckboxInlinevue_type_template_id_65994c14_render = function ren
|
|
|
14994
14820
|
on: {
|
|
14995
14821
|
"change": function ($event) {
|
|
14996
14822
|
var $$a = _vm.inputVal,
|
|
14997
|
-
|
|
14998
|
-
|
|
14999
|
-
|
|
14823
|
+
$$el = $event.target,
|
|
14824
|
+
$$c = $$el.checked ? true : false;
|
|
15000
14825
|
if (Array.isArray($$a)) {
|
|
15001
14826
|
var $$v = null,
|
|
15002
|
-
|
|
15003
|
-
|
|
14827
|
+
$$i = _vm._i($$a, $$v);
|
|
15004
14828
|
if ($$el.checked) {
|
|
15005
14829
|
$$i < 0 && (_vm.inputVal = $$a.concat([$$v]));
|
|
15006
14830
|
} else {
|
|
@@ -15017,7 +14841,6 @@ var ToggleInputCheckboxInlinevue_type_template_id_65994c14_render = function ren
|
|
|
15017
14841
|
class: ['toggle-input-checkbox-label', _vm.label_style]
|
|
15018
14842
|
}, [_vm._v(_vm._s(_vm.label))])])]);
|
|
15019
14843
|
};
|
|
15020
|
-
|
|
15021
14844
|
var ToggleInputCheckboxInlinevue_type_template_id_65994c14_staticRenderFns = [];
|
|
15022
14845
|
|
|
15023
14846
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckboxInline.vue?vue&type=template&id=65994c14&
|
|
@@ -15069,11 +14892,9 @@ var ToggleInputCheckboxInlinevue_type_template_id_65994c14_staticRenderFns = [];
|
|
|
15069
14892
|
onFocus() {
|
|
15070
14893
|
this.$emit('onFocus');
|
|
15071
14894
|
},
|
|
15072
|
-
|
|
15073
14895
|
onBlur() {
|
|
15074
14896
|
this.$emit('onBlur');
|
|
15075
14897
|
}
|
|
15076
|
-
|
|
15077
14898
|
}
|
|
15078
14899
|
});
|
|
15079
14900
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckboxInline.vue?vue&type=script&lang=js&
|
|
@@ -15098,11 +14919,10 @@ var ToggleInputCheckboxInline_component = normalizeComponent(
|
|
|
15098
14919
|
)
|
|
15099
14920
|
|
|
15100
14921
|
/* harmony default export */ var ToggleInputCheckboxInline = (ToggleInputCheckboxInline_component.exports);
|
|
15101
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14922
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputImage.vue?vue&type=template&id=6dd50c98&
|
|
15102
14923
|
var ToggleInputImagevue_type_template_id_6dd50c98_render = function render() {
|
|
15103
14924
|
var _vm = this,
|
|
15104
|
-
|
|
15105
|
-
|
|
14925
|
+
_c = _vm._self._c;
|
|
15106
14926
|
return _c('div', {
|
|
15107
14927
|
staticClass: "toggle-input-container",
|
|
15108
14928
|
class: {
|
|
@@ -15179,21 +14999,18 @@ var ToggleInputImagevue_type_template_id_6dd50c98_render = function render() {
|
|
|
15179
14999
|
staticClass: "toggle-input-label-error"
|
|
15180
15000
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
|
|
15181
15001
|
};
|
|
15182
|
-
|
|
15183
15002
|
var ToggleInputImagevue_type_template_id_6dd50c98_staticRenderFns = [];
|
|
15184
15003
|
|
|
15185
15004
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputImage.vue?vue&type=template&id=6dd50c98&
|
|
15186
15005
|
|
|
15187
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15006
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/text/ToggleHelperTextSmall.vue?vue&type=template&id=d8210f4e&
|
|
15188
15007
|
var ToggleHelperTextSmallvue_type_template_id_d8210f4e_render = function render() {
|
|
15189
15008
|
var _vm = this,
|
|
15190
|
-
|
|
15191
|
-
|
|
15009
|
+
_c = _vm._self._c;
|
|
15192
15010
|
return _c('p', {
|
|
15193
15011
|
staticClass: "toggle-helper-text-small"
|
|
15194
15012
|
}, [_vm._t("default")], 2);
|
|
15195
15013
|
};
|
|
15196
|
-
|
|
15197
15014
|
var ToggleHelperTextSmallvue_type_template_id_d8210f4e_staticRenderFns = [];
|
|
15198
15015
|
|
|
15199
15016
|
// CONCATENATED MODULE: ./src/components/text/ToggleHelperTextSmall.vue?vue&type=template&id=d8210f4e&
|
|
@@ -15217,11 +15034,10 @@ var ToggleHelperTextSmall_component = normalizeComponent(
|
|
|
15217
15034
|
)
|
|
15218
15035
|
|
|
15219
15036
|
/* harmony default export */ var ToggleHelperTextSmall = (ToggleHelperTextSmall_component.exports);
|
|
15220
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15037
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/loaders/ToggleFillLoader.vue?vue&type=template&id=2fbb049c&
|
|
15221
15038
|
var ToggleFillLoadervue_type_template_id_2fbb049c_render = function render() {
|
|
15222
15039
|
var _vm = this,
|
|
15223
|
-
|
|
15224
|
-
|
|
15040
|
+
_c = _vm._self._c;
|
|
15225
15041
|
return _c('div', {
|
|
15226
15042
|
staticClass: "toggle-fill-loader-container",
|
|
15227
15043
|
class: {
|
|
@@ -15229,11 +15045,9 @@ var ToggleFillLoadervue_type_template_id_2fbb049c_render = function render() {
|
|
|
15229
15045
|
}
|
|
15230
15046
|
}, [_vm._m(0)]);
|
|
15231
15047
|
};
|
|
15232
|
-
|
|
15233
15048
|
var ToggleFillLoadervue_type_template_id_2fbb049c_staticRenderFns = [function () {
|
|
15234
15049
|
var _vm = this,
|
|
15235
|
-
|
|
15236
|
-
|
|
15050
|
+
_c = _vm._self._c;
|
|
15237
15051
|
return _c('div', {
|
|
15238
15052
|
staticClass: "toggle-fill-loader-container-background"
|
|
15239
15053
|
}, [_c('div', {
|
|
@@ -15375,7 +15189,6 @@ var vue2Dropzone_min = __webpack_require__("1e3f");
|
|
|
15375
15189
|
group: "images"
|
|
15376
15190
|
};
|
|
15377
15191
|
},
|
|
15378
|
-
|
|
15379
15192
|
inputVal: {
|
|
15380
15193
|
get: function () {
|
|
15381
15194
|
return this.images;
|
|
@@ -15409,11 +15222,10 @@ var ToggleInputImage_component = normalizeComponent(
|
|
|
15409
15222
|
)
|
|
15410
15223
|
|
|
15411
15224
|
/* harmony default export */ var ToggleInputImage = (ToggleInputImage_component.exports);
|
|
15412
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15225
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputFile.vue?vue&type=template&id=564702b5&
|
|
15413
15226
|
var ToggleInputFilevue_type_template_id_564702b5_render = function render() {
|
|
15414
15227
|
var _vm = this,
|
|
15415
|
-
|
|
15416
|
-
|
|
15228
|
+
_c = _vm._self._c;
|
|
15417
15229
|
return _c('div', {
|
|
15418
15230
|
staticClass: "toggle-input-container",
|
|
15419
15231
|
class: {
|
|
@@ -15458,7 +15270,6 @@ var ToggleInputFilevue_type_template_id_564702b5_render = function render() {
|
|
|
15458
15270
|
staticClass: "toggle-input-label-error"
|
|
15459
15271
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
|
|
15460
15272
|
};
|
|
15461
|
-
|
|
15462
15273
|
var ToggleInputFilevue_type_template_id_564702b5_staticRenderFns = [];
|
|
15463
15274
|
|
|
15464
15275
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputFile.vue?vue&type=template&id=564702b5&
|
|
@@ -15537,16 +15348,14 @@ var ToggleInputFile_component = normalizeComponent(
|
|
|
15537
15348
|
)
|
|
15538
15349
|
|
|
15539
15350
|
/* harmony default export */ var ToggleInputFile = (ToggleInputFile_component.exports);
|
|
15540
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15351
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputGroup.vue?vue&type=template&id=a6b9978e&
|
|
15541
15352
|
var ToggleInputGroupvue_type_template_id_a6b9978e_render = function render() {
|
|
15542
15353
|
var _vm = this,
|
|
15543
|
-
|
|
15544
|
-
|
|
15354
|
+
_c = _vm._self._c;
|
|
15545
15355
|
return _c('div', [_vm.label ? _c('ToggleHeaderTextLarge', [_vm._v(_vm._s(_vm.label))]) : _vm._e(), _c('div', {
|
|
15546
15356
|
staticClass: "toggle-input-group"
|
|
15547
15357
|
}, [_vm._t("default")], 2)], 1);
|
|
15548
15358
|
};
|
|
15549
|
-
|
|
15550
15359
|
var ToggleInputGroupvue_type_template_id_a6b9978e_staticRenderFns = [];
|
|
15551
15360
|
|
|
15552
15361
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputGroup.vue?vue&type=template&id=a6b9978e&
|
|
@@ -15594,11 +15403,10 @@ var ToggleInputGroup_component = normalizeComponent(
|
|
|
15594
15403
|
)
|
|
15595
15404
|
|
|
15596
15405
|
/* harmony default export */ var ToggleInputGroup = (ToggleInputGroup_component.exports);
|
|
15597
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15406
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputNumber.vue?vue&type=template&id=ef0b99dc&
|
|
15598
15407
|
var ToggleInputNumbervue_type_template_id_ef0b99dc_render = function render() {
|
|
15599
15408
|
var _vm = this,
|
|
15600
|
-
|
|
15601
|
-
|
|
15409
|
+
_c = _vm._self._c;
|
|
15602
15410
|
return _c('div', {
|
|
15603
15411
|
staticClass: "toggle-input-container",
|
|
15604
15412
|
class: {
|
|
@@ -15649,7 +15457,6 @@ var ToggleInputNumbervue_type_template_id_ef0b99dc_render = function render() {
|
|
|
15649
15457
|
}
|
|
15650
15458
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
15651
15459
|
};
|
|
15652
|
-
|
|
15653
15460
|
var ToggleInputNumbervue_type_template_id_ef0b99dc_staticRenderFns = [];
|
|
15654
15461
|
|
|
15655
15462
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputNumber.vue?vue&type=template&id=ef0b99dc&
|
|
@@ -15735,7 +15542,8 @@ var ToggleInputNumbervue_type_template_id_ef0b99dc_staticRenderFns = [];
|
|
|
15735
15542
|
if (modifiedValue === '') {
|
|
15736
15543
|
this.$emit('input', modifiedValue);
|
|
15737
15544
|
} else {
|
|
15738
|
-
let newValue = parseFloat(modifiedValue);
|
|
15545
|
+
let newValue = parseFloat(modifiedValue);
|
|
15546
|
+
// Ensure that it is not NaN
|
|
15739
15547
|
|
|
15740
15548
|
if (isNaN(newValue)) newValue = 0;
|
|
15741
15549
|
this.$emit('input', newValue);
|
|
@@ -15752,15 +15560,12 @@ var ToggleInputNumbervue_type_template_id_ef0b99dc_staticRenderFns = [];
|
|
|
15752
15560
|
let mcount = count ? count.length : 0;
|
|
15753
15561
|
return mcount + ' / ' + maxLenght;
|
|
15754
15562
|
},
|
|
15755
|
-
|
|
15756
15563
|
onFocus() {
|
|
15757
15564
|
this.$emit('onFocus');
|
|
15758
15565
|
},
|
|
15759
|
-
|
|
15760
15566
|
onBlur() {
|
|
15761
15567
|
this.$emit('onBlur');
|
|
15762
15568
|
}
|
|
15763
|
-
|
|
15764
15569
|
}
|
|
15765
15570
|
});
|
|
15766
15571
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputNumber.vue?vue&type=script&lang=js&
|
|
@@ -15785,11 +15590,10 @@ var ToggleInputNumber_component = normalizeComponent(
|
|
|
15785
15590
|
)
|
|
15786
15591
|
|
|
15787
15592
|
/* harmony default export */ var ToggleInputNumber = (ToggleInputNumber_component.exports);
|
|
15788
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15593
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleColourPicker.vue?vue&type=template&id=ce1c3b3a&
|
|
15789
15594
|
var ToggleColourPickervue_type_template_id_ce1c3b3a_render = function render() {
|
|
15790
15595
|
var _vm = this,
|
|
15791
|
-
|
|
15792
|
-
|
|
15596
|
+
_c = _vm._self._c;
|
|
15793
15597
|
return _c('div', {
|
|
15794
15598
|
staticClass: "toggle-input-container",
|
|
15795
15599
|
class: {
|
|
@@ -15845,7 +15649,6 @@ var ToggleColourPickervue_type_template_id_ce1c3b3a_render = function render() {
|
|
|
15845
15649
|
}
|
|
15846
15650
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1)]);
|
|
15847
15651
|
};
|
|
15848
|
-
|
|
15849
15652
|
var ToggleColourPickervue_type_template_id_ce1c3b3a_staticRenderFns = [];
|
|
15850
15653
|
|
|
15851
15654
|
// CONCATENATED MODULE: ./src/components/forms/ToggleColourPicker.vue?vue&type=template&id=ce1c3b3a&
|
|
@@ -15928,7 +15731,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
|
|
|
15928
15731
|
this.$emit('input', val);
|
|
15929
15732
|
}
|
|
15930
15733
|
}
|
|
15931
|
-
|
|
15932
15734
|
},
|
|
15933
15735
|
mounted: function () {
|
|
15934
15736
|
this.setColor(this.value || '#000000');
|
|
@@ -15938,19 +15740,19 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
|
|
|
15938
15740
|
this.updateColors(color);
|
|
15939
15741
|
this.colorValue = color;
|
|
15940
15742
|
},
|
|
15941
|
-
|
|
15942
15743
|
setBorderColour(color, colorsRgba = '') {
|
|
15943
|
-
if (colorsRgba === '')
|
|
15744
|
+
if (colorsRgba === '')
|
|
15745
|
+
//if has only hex
|
|
15944
15746
|
{
|
|
15945
15747
|
let isWhite = color.charAt(1) === 'F' && color.charAt(2) != 'F' ? true : false;
|
|
15946
15748
|
this.borderColour = isWhite ? '#EAE8E8' : color;
|
|
15947
|
-
} else if (colorsRgba != '')
|
|
15749
|
+
} else if (colorsRgba != '')
|
|
15750
|
+
//if has rgba
|
|
15948
15751
|
{
|
|
15949
15752
|
let hasTransparency = parseFloat(colorsRgba.a) < 0.2 ? true : false;
|
|
15950
15753
|
this.borderColour = hasTransparency ? colorsRgba.hex : color;
|
|
15951
15754
|
}
|
|
15952
15755
|
},
|
|
15953
|
-
|
|
15954
15756
|
updateColors(color) {
|
|
15955
15757
|
if (color.slice(0, 1) == '#') {
|
|
15956
15758
|
this.colors = {
|
|
@@ -15959,7 +15761,7 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
|
|
|
15959
15761
|
this.setBorderColour(color);
|
|
15960
15762
|
} else if (color.slice(0, 4) == 'rgba') {
|
|
15961
15763
|
var rgba = color.replace(/^rgba?\(|\s+|\)$/g, '').split(','),
|
|
15962
|
-
|
|
15764
|
+
hex = '#' + ((1 << 24) + (parseInt(rgba[0]) << 16) + (parseInt(rgba[1]) << 8) + parseInt(rgba[2])).toString(16).slice(1);
|
|
15963
15765
|
this.colors = {
|
|
15964
15766
|
hex: hex,
|
|
15965
15767
|
a: rgba[3]
|
|
@@ -15967,44 +15769,35 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
|
|
|
15967
15769
|
this.setBorderColour(color, this.colors);
|
|
15968
15770
|
}
|
|
15969
15771
|
},
|
|
15970
|
-
|
|
15971
15772
|
updateFromInput() {
|
|
15972
15773
|
this.updateColors(this.colorValue);
|
|
15973
15774
|
},
|
|
15974
|
-
|
|
15975
15775
|
showPicker() {
|
|
15976
15776
|
this.displayPicker = true;
|
|
15977
15777
|
document.addEventListener('click', this.documentClick);
|
|
15978
15778
|
},
|
|
15979
|
-
|
|
15980
15779
|
hidePicker() {
|
|
15981
15780
|
this.displayPicker = false;
|
|
15982
15781
|
document.removeEventListener('click', this.documentClick);
|
|
15983
15782
|
},
|
|
15984
|
-
|
|
15985
15783
|
togglePicker() {
|
|
15986
15784
|
this.displayPicker ? this.hidePicker() : this.showPicker();
|
|
15987
15785
|
},
|
|
15988
|
-
|
|
15989
15786
|
documentClick(e) {
|
|
15990
15787
|
var el = this.$refs.colorpicker,
|
|
15991
|
-
|
|
15992
|
-
|
|
15788
|
+
target = e.target;
|
|
15993
15789
|
if (el !== target && !el.contains(target)) {
|
|
15994
15790
|
this.hidePicker();
|
|
15995
15791
|
}
|
|
15996
15792
|
},
|
|
15997
|
-
|
|
15998
15793
|
updateFromPicker(color) {
|
|
15999
15794
|
this.colors = color;
|
|
16000
|
-
|
|
16001
15795
|
if (color.rgba.a == 1) {
|
|
16002
15796
|
this.colorValue = color.hex;
|
|
16003
15797
|
} else {
|
|
16004
15798
|
this.colorValue = 'rgba(' + color.rgba.r + ', ' + color.rgba.g + ', ' + color.rgba.b + ', ' + color.rgba.a + ')';
|
|
16005
15799
|
}
|
|
16006
15800
|
}
|
|
16007
|
-
|
|
16008
15801
|
}
|
|
16009
15802
|
});
|
|
16010
15803
|
// CONCATENATED MODULE: ./src/components/forms/ToggleColourPicker.vue?vue&type=script&lang=js&
|
|
@@ -16029,11 +15822,10 @@ var ToggleColourPicker_component = normalizeComponent(
|
|
|
16029
15822
|
)
|
|
16030
15823
|
|
|
16031
15824
|
/* harmony default export */ var ToggleColourPicker = (ToggleColourPicker_component.exports);
|
|
16032
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15825
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputSearch.vue?vue&type=template&id=76f40c51&
|
|
16033
15826
|
var ToggleInputSearchvue_type_template_id_76f40c51_render = function render() {
|
|
16034
15827
|
var _vm = this,
|
|
16035
|
-
|
|
16036
|
-
|
|
15828
|
+
_c = _vm._self._c;
|
|
16037
15829
|
return _c('div', {
|
|
16038
15830
|
ref: "toggle-input-search",
|
|
16039
15831
|
staticClass: "toggle-input-container",
|
|
@@ -16074,13 +15866,11 @@ var ToggleInputSearchvue_type_template_id_76f40c51_render = function render() {
|
|
|
16074
15866
|
on: {
|
|
16075
15867
|
"change": function ($event) {
|
|
16076
15868
|
var $$a = _vm.searchModel,
|
|
16077
|
-
|
|
16078
|
-
|
|
16079
|
-
|
|
15869
|
+
$$el = $event.target,
|
|
15870
|
+
$$c = $$el.checked ? true : false;
|
|
16080
15871
|
if (Array.isArray($$a)) {
|
|
16081
15872
|
var $$v = null,
|
|
16082
|
-
|
|
16083
|
-
|
|
15873
|
+
$$i = _vm._i($$a, $$v);
|
|
16084
15874
|
if ($$el.checked) {
|
|
16085
15875
|
$$i < 0 && (_vm.searchModel = $$a.concat([$$v]));
|
|
16086
15876
|
} else {
|
|
@@ -16173,7 +15963,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_render = function render() {
|
|
|
16173
15963
|
}
|
|
16174
15964
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
16175
15965
|
};
|
|
16176
|
-
|
|
16177
15966
|
var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
16178
15967
|
|
|
16179
15968
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputSearch.vue?vue&type=template&id=76f40c51&
|
|
@@ -16181,7 +15970,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16181
15970
|
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputSearch.vue?vue&type=script&lang=js&
|
|
16182
15971
|
|
|
16183
15972
|
|
|
16184
|
-
|
|
16185
15973
|
/* harmony default export */ var ToggleInputSearchvue_type_script_lang_js_ = ({
|
|
16186
15974
|
mixins: [mixins],
|
|
16187
15975
|
props: {
|
|
@@ -16243,11 +16031,9 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16243
16031
|
created: function () {
|
|
16244
16032
|
window.addEventListener('click', this.windowClick, true);
|
|
16245
16033
|
},
|
|
16246
|
-
|
|
16247
16034
|
beforeDestroy() {
|
|
16248
16035
|
window.removeEventListener('click', this.windowClick, true);
|
|
16249
16036
|
},
|
|
16250
|
-
|
|
16251
16037
|
components: {
|
|
16252
16038
|
ToggleButton: ToggleButton
|
|
16253
16039
|
},
|
|
@@ -16266,17 +16052,14 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16266
16052
|
return this.savedSearchModel = value;
|
|
16267
16053
|
}
|
|
16268
16054
|
},
|
|
16269
|
-
|
|
16270
16055
|
// should the add option show?
|
|
16271
16056
|
showAddButton() {
|
|
16272
16057
|
return (!this.filteredOptions.length || !this.exactMatch) && this.allowAddValue && this.searchModel;
|
|
16273
16058
|
},
|
|
16274
|
-
|
|
16275
16059
|
// should options dropdown show?
|
|
16276
16060
|
showOptions() {
|
|
16277
16061
|
return !this.disabled && this.inputFocussed && (this.searchModel && (this.value == null || this.searchModel != this.value.label) || !this.searchModel);
|
|
16278
16062
|
},
|
|
16279
|
-
|
|
16280
16063
|
/*
|
|
16281
16064
|
* does the search query exactly match an option?
|
|
16282
16065
|
* returns bool
|
|
@@ -16284,7 +16067,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16284
16067
|
exactMatch() {
|
|
16285
16068
|
return this.options.filter(option => option.label.toLowerCase() == this.searchModel.toLowerCase()).length != 0;
|
|
16286
16069
|
},
|
|
16287
|
-
|
|
16288
16070
|
/*
|
|
16289
16071
|
* Returns options that contain the search query
|
|
16290
16072
|
* returns array
|
|
@@ -16292,7 +16074,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16292
16074
|
filteredOptions() {
|
|
16293
16075
|
return this.options.filter(option => option.label.toLowerCase().includes(this.searchModel.toLowerCase()));
|
|
16294
16076
|
},
|
|
16295
|
-
|
|
16296
16077
|
// the input model
|
|
16297
16078
|
inputVal: {
|
|
16298
16079
|
get: function () {
|
|
@@ -16309,7 +16090,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16309
16090
|
this.searchModel = option.label;
|
|
16310
16091
|
this.inputVal = option;
|
|
16311
16092
|
},
|
|
16312
|
-
|
|
16313
16093
|
// add option to options list
|
|
16314
16094
|
addOption(option) {
|
|
16315
16095
|
this.searchModel = option;
|
|
@@ -16318,7 +16098,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16318
16098
|
label: option
|
|
16319
16099
|
};
|
|
16320
16100
|
},
|
|
16321
|
-
|
|
16322
16101
|
/*
|
|
16323
16102
|
* Concat message for count characters
|
|
16324
16103
|
* @return string
|
|
@@ -16327,17 +16106,14 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16327
16106
|
let mcount = count ? count.length : 0;
|
|
16328
16107
|
return mcount + ' / ' + maxLenght;
|
|
16329
16108
|
},
|
|
16330
|
-
|
|
16331
16109
|
windowClick(e) {
|
|
16332
16110
|
var element = this.$refs["toggle-input-search"];
|
|
16333
|
-
|
|
16334
16111
|
if (e.target !== element && !element.contains(e.target)) {
|
|
16335
16112
|
this.inputFocussed = false;
|
|
16336
16113
|
} else {
|
|
16337
16114
|
this.inputFocussed = true;
|
|
16338
16115
|
}
|
|
16339
16116
|
}
|
|
16340
|
-
|
|
16341
16117
|
}
|
|
16342
16118
|
});
|
|
16343
16119
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputSearch.vue?vue&type=script&lang=js&
|
|
@@ -16362,11 +16138,10 @@ var ToggleInputSearch_component = normalizeComponent(
|
|
|
16362
16138
|
)
|
|
16363
16139
|
|
|
16364
16140
|
/* harmony default export */ var ToggleInputSearch = (ToggleInputSearch_component.exports);
|
|
16365
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16141
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputRadioButtonGroup.vue?vue&type=template&id=35e8cd10&
|
|
16366
16142
|
var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_render = function render() {
|
|
16367
16143
|
var _vm = this,
|
|
16368
|
-
|
|
16369
|
-
|
|
16144
|
+
_c = _vm._self._c;
|
|
16370
16145
|
return _c('div', {
|
|
16371
16146
|
staticClass: "toggle-input-container margin-bottom-0",
|
|
16372
16147
|
class: {
|
|
@@ -16390,7 +16165,6 @@ var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_render = function r
|
|
|
16390
16165
|
}
|
|
16391
16166
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 2)]);
|
|
16392
16167
|
};
|
|
16393
|
-
|
|
16394
16168
|
var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_staticRenderFns = [];
|
|
16395
16169
|
|
|
16396
16170
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtonGroup.vue?vue&type=template&id=35e8cd10&
|
|
@@ -16427,11 +16201,9 @@ var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_staticRenderFns = [
|
|
|
16427
16201
|
onFocus() {
|
|
16428
16202
|
this.$emit('onFocus');
|
|
16429
16203
|
},
|
|
16430
|
-
|
|
16431
16204
|
onBlur() {
|
|
16432
16205
|
this.$emit('onBlur');
|
|
16433
16206
|
}
|
|
16434
|
-
|
|
16435
16207
|
}
|
|
16436
16208
|
});
|
|
16437
16209
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtonGroup.vue?vue&type=script&lang=js&
|
|
@@ -16456,11 +16228,10 @@ var ToggleInputRadioButtonGroup_component = normalizeComponent(
|
|
|
16456
16228
|
)
|
|
16457
16229
|
|
|
16458
16230
|
/* harmony default export */ var ToggleInputRadioButtonGroup = (ToggleInputRadioButtonGroup_component.exports);
|
|
16459
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16231
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/tables/ToggleTable.vue?vue&type=template&id=841ba81c&
|
|
16460
16232
|
var ToggleTablevue_type_template_id_841ba81c_render = function render() {
|
|
16461
16233
|
var _vm = this,
|
|
16462
|
-
|
|
16463
|
-
|
|
16234
|
+
_c = _vm._self._c;
|
|
16464
16235
|
return _c('div', [_c('table', {
|
|
16465
16236
|
staticClass: "toggle-table"
|
|
16466
16237
|
}, [_c('thead', {
|
|
@@ -16571,16 +16342,14 @@ var ToggleTablevue_type_template_id_841ba81c_render = function render() {
|
|
|
16571
16342
|
}
|
|
16572
16343
|
}) : _vm._e()], 1);
|
|
16573
16344
|
};
|
|
16574
|
-
|
|
16575
16345
|
var ToggleTablevue_type_template_id_841ba81c_staticRenderFns = [];
|
|
16576
16346
|
|
|
16577
16347
|
// CONCATENATED MODULE: ./src/components/tables/ToggleTable.vue?vue&type=template&id=841ba81c&
|
|
16578
16348
|
|
|
16579
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16349
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/tables/ToggleTableRow.vue?vue&type=template&id=bab4fd8c&
|
|
16580
16350
|
var ToggleTableRowvue_type_template_id_bab4fd8c_render = function render() {
|
|
16581
16351
|
var _vm = this,
|
|
16582
|
-
|
|
16583
|
-
|
|
16352
|
+
_c = _vm._self._c;
|
|
16584
16353
|
return _c('tr', {
|
|
16585
16354
|
staticClass: "toggle-tablee-tr",
|
|
16586
16355
|
on: {
|
|
@@ -16590,7 +16359,6 @@ var ToggleTableRowvue_type_template_id_bab4fd8c_render = function render() {
|
|
|
16590
16359
|
}
|
|
16591
16360
|
}, [_vm._t("default")], 2);
|
|
16592
16361
|
};
|
|
16593
|
-
|
|
16594
16362
|
var ToggleTableRowvue_type_template_id_bab4fd8c_staticRenderFns = [];
|
|
16595
16363
|
|
|
16596
16364
|
// CONCATENATED MODULE: ./src/components/tables/ToggleTableRow.vue?vue&type=template&id=bab4fd8c&
|
|
@@ -16614,16 +16382,14 @@ var ToggleTableRow_component = normalizeComponent(
|
|
|
16614
16382
|
)
|
|
16615
16383
|
|
|
16616
16384
|
/* harmony default export */ var ToggleTableRow = (ToggleTableRow_component.exports);
|
|
16617
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16385
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/tables/ToggleTableColumn.vue?vue&type=template&id=6de6ba9d&
|
|
16618
16386
|
var ToggleTableColumnvue_type_template_id_6de6ba9d_render = function render() {
|
|
16619
16387
|
var _vm = this,
|
|
16620
|
-
|
|
16621
|
-
|
|
16388
|
+
_c = _vm._self._c;
|
|
16622
16389
|
return _c('td', {
|
|
16623
16390
|
staticClass: "toggle-tablee-td"
|
|
16624
16391
|
}, [_vm._t("default")], 2);
|
|
16625
16392
|
};
|
|
16626
|
-
|
|
16627
16393
|
var ToggleTableColumnvue_type_template_id_6de6ba9d_staticRenderFns = [];
|
|
16628
16394
|
|
|
16629
16395
|
// CONCATENATED MODULE: ./src/components/tables/ToggleTableColumn.vue?vue&type=template&id=6de6ba9d&
|
|
@@ -16647,11 +16413,10 @@ var ToggleTableColumn_component = normalizeComponent(
|
|
|
16647
16413
|
)
|
|
16648
16414
|
|
|
16649
16415
|
/* harmony default export */ var ToggleTableColumn = (ToggleTableColumn_component.exports);
|
|
16650
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16416
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/tables/TogglePagination.vue?vue&type=template&id=36fed3cc&
|
|
16651
16417
|
var TogglePaginationvue_type_template_id_36fed3cc_render = function render() {
|
|
16652
16418
|
var _vm = this,
|
|
16653
|
-
|
|
16654
|
-
|
|
16419
|
+
_c = _vm._self._c;
|
|
16655
16420
|
return _c('div', {
|
|
16656
16421
|
staticClass: "toggle-pagination"
|
|
16657
16422
|
}, [_c('ul', [_c('li', [_c('button', {
|
|
@@ -16689,7 +16454,6 @@ var TogglePaginationvue_type_template_id_36fed3cc_render = function render() {
|
|
|
16689
16454
|
}
|
|
16690
16455
|
}, [_vm._v(" Next ")])])], 2)]);
|
|
16691
16456
|
};
|
|
16692
|
-
|
|
16693
16457
|
var TogglePaginationvue_type_template_id_36fed3cc_staticRenderFns = [];
|
|
16694
16458
|
|
|
16695
16459
|
// CONCATENATED MODULE: ./src/components/tables/TogglePagination.vue?vue&type=template&id=36fed3cc&
|
|
@@ -16702,9 +16466,9 @@ var TogglePaginationvue_type_template_id_36fed3cc_staticRenderFns = [];
|
|
|
16702
16466
|
data: function () {
|
|
16703
16467
|
return {
|
|
16704
16468
|
maxPaginationPages: 6 // number of pagination numbers on a page
|
|
16705
|
-
|
|
16706
16469
|
};
|
|
16707
16470
|
},
|
|
16471
|
+
|
|
16708
16472
|
computed: {
|
|
16709
16473
|
pageNumber: {
|
|
16710
16474
|
get: function () {
|
|
@@ -16714,41 +16478,40 @@ var TogglePaginationvue_type_template_id_36fed3cc_staticRenderFns = [];
|
|
|
16714
16478
|
this.$emit('input', newVal);
|
|
16715
16479
|
}
|
|
16716
16480
|
},
|
|
16717
|
-
|
|
16718
16481
|
/* Page Count
|
|
16719
16482
|
* Calculate how many pages the orders object have.
|
|
16720
16483
|
* @return number of pages
|
|
16721
16484
|
*/
|
|
16722
16485
|
pageCount() {
|
|
16723
16486
|
let l = this.total,
|
|
16724
|
-
|
|
16487
|
+
s = this.per_page;
|
|
16725
16488
|
return Math.ceil(l / s) ? Math.ceil(l / s) : 0;
|
|
16726
16489
|
},
|
|
16727
|
-
|
|
16728
16490
|
/* returns the numbers shown in the validation
|
|
16729
16491
|
*/
|
|
16492
|
+
|
|
16730
16493
|
pagiPages() {
|
|
16731
16494
|
var startarray = [];
|
|
16732
|
-
var endarray = [];
|
|
16495
|
+
var endarray = [];
|
|
16733
16496
|
|
|
16497
|
+
// show all pages
|
|
16734
16498
|
if (this.pageCount <= this.maxPaginationPages) {
|
|
16735
16499
|
while (startarray.length < this.maxPaginationPages && startarray.length < this.pageCount) startarray.push(startarray.length + 1);
|
|
16736
16500
|
} else {
|
|
16737
16501
|
// if there are too many pages, we need to remove some options
|
|
16738
16502
|
// create the first pages
|
|
16739
|
-
while (startarray.length < this.maxPaginationPages / 2 - 1) startarray.push(startarray.length + 1);
|
|
16740
|
-
|
|
16741
|
-
|
|
16742
|
-
while (startarray.length + endarray.length + 1 <= this.maxPaginationPages) endarray.push(this.pageCount - this.maxPaginationPages + 1 + (startarray.length + endarray.length)); // add the current page to the array, if it doesn't exist
|
|
16503
|
+
while (startarray.length < this.maxPaginationPages / 2 - 1) startarray.push(startarray.length + 1);
|
|
16743
16504
|
|
|
16505
|
+
// create the last pages
|
|
16506
|
+
while (startarray.length + endarray.length + 1 <= this.maxPaginationPages) endarray.push(this.pageCount - this.maxPaginationPages + 1 + (startarray.length + endarray.length));
|
|
16744
16507
|
|
|
16508
|
+
// add the current page to the array, if it doesn't exist
|
|
16745
16509
|
if (!(startarray.includes(this.pageNumber) || endarray.includes(this.pageNumber))) startarray.push(this.pageNumber);
|
|
16746
|
-
}
|
|
16747
|
-
|
|
16510
|
+
}
|
|
16748
16511
|
|
|
16512
|
+
// merge the two arrays into one
|
|
16749
16513
|
return startarray.concat(endarray);
|
|
16750
16514
|
}
|
|
16751
|
-
|
|
16752
16515
|
}
|
|
16753
16516
|
});
|
|
16754
16517
|
// CONCATENATED MODULE: ./src/components/tables/TogglePagination.vue?vue&type=script&lang=js&
|
|
@@ -16821,7 +16584,6 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16821
16584
|
search_value: this.searchModels[field.key]
|
|
16822
16585
|
}));
|
|
16823
16586
|
},
|
|
16824
|
-
|
|
16825
16587
|
pagenumber: {
|
|
16826
16588
|
get: function () {
|
|
16827
16589
|
return this.page;
|
|
@@ -16830,31 +16592,24 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16830
16592
|
this.$emit('page_change', newVal);
|
|
16831
16593
|
}
|
|
16832
16594
|
},
|
|
16833
|
-
|
|
16834
16595
|
headers() {
|
|
16835
16596
|
if (!this.fields) {
|
|
16836
16597
|
return Object.keys(this.items[0]);
|
|
16837
16598
|
}
|
|
16838
|
-
|
|
16839
16599
|
return this.fields;
|
|
16840
16600
|
},
|
|
16841
|
-
|
|
16842
16601
|
searchActive() {
|
|
16843
16602
|
if (this.editingInput) {
|
|
16844
16603
|
return true;
|
|
16845
16604
|
}
|
|
16846
|
-
|
|
16847
16605
|
for (let col in this.searchModels) {
|
|
16848
16606
|
if (!this.searchModels[col]) return false;
|
|
16849
|
-
|
|
16850
16607
|
if (this.searchModels[col].start !== undefined) {
|
|
16851
16608
|
return true;
|
|
16852
16609
|
} else if (this.searchModels[col]) return true;
|
|
16853
16610
|
}
|
|
16854
|
-
|
|
16855
16611
|
return false;
|
|
16856
16612
|
}
|
|
16857
|
-
|
|
16858
16613
|
},
|
|
16859
16614
|
created: function () {
|
|
16860
16615
|
if (this.fields) {
|
|
@@ -16862,15 +16617,14 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16862
16617
|
let value = this.fields[i].type == 'date' ? this.setInitialDate(i) : this.fields[i].value;
|
|
16863
16618
|
let field_name = this.fields[i].key;
|
|
16864
16619
|
this.$set(this.searchModels, field_name, value);
|
|
16865
|
-
|
|
16866
16620
|
if (value) {
|
|
16867
16621
|
// if date has an initial value set, show it.
|
|
16868
16622
|
if (typeof value.start !== 'undefined') {
|
|
16869
16623
|
if (value.start.length) this.activateSearch(this.fields[i]);
|
|
16870
|
-
}
|
|
16624
|
+
}
|
|
16625
|
+
// show the other fields with initial values set.
|
|
16871
16626
|
else this.activateSearch(this.fields[i]);
|
|
16872
16627
|
}
|
|
16873
|
-
|
|
16874
16628
|
this.searchChange();
|
|
16875
16629
|
}
|
|
16876
16630
|
}
|
|
@@ -16891,15 +16645,12 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16891
16645
|
end: false
|
|
16892
16646
|
};
|
|
16893
16647
|
},
|
|
16894
|
-
|
|
16895
16648
|
tableSearchActive(field) {
|
|
16896
16649
|
if (field.type == 'date') {
|
|
16897
16650
|
return this.searchModels[field.key].start || this.searchModels[field.key].end || this.editingInput == field.key;
|
|
16898
16651
|
}
|
|
16899
|
-
|
|
16900
16652
|
return this.searchModels[field.key] || this.editingInput == field.key;
|
|
16901
16653
|
},
|
|
16902
|
-
|
|
16903
16654
|
closeSearch(field) {
|
|
16904
16655
|
this.editingInput = false;
|
|
16905
16656
|
this.searchModels[field.key] = field.type == 'date' ? {
|
|
@@ -16908,24 +16659,20 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16908
16659
|
} : '';
|
|
16909
16660
|
this.searchChange();
|
|
16910
16661
|
},
|
|
16911
|
-
|
|
16912
16662
|
searchChange() {
|
|
16913
16663
|
this.$emit('search', this.fieldsWithSearch);
|
|
16914
16664
|
},
|
|
16915
|
-
|
|
16916
16665
|
/* activateSearch
|
|
16917
16666
|
* When a user clicks a searchable column name, show it as active, and focus the child input field (unless it's already active)
|
|
16918
16667
|
*/
|
|
16919
16668
|
activateSearch(field) {
|
|
16920
16669
|
if (!field.filterable) return;
|
|
16921
|
-
|
|
16922
16670
|
if (field.type === 'date') {
|
|
16923
16671
|
this.datePickerOpen = true;
|
|
16924
16672
|
}
|
|
16925
|
-
|
|
16926
|
-
|
|
16673
|
+
this.editingInput = field.key;
|
|
16674
|
+
//this.$nextTick(() => this.$refs[this.editingInput + '-input'].focus())
|
|
16927
16675
|
}
|
|
16928
|
-
|
|
16929
16676
|
}
|
|
16930
16677
|
});
|
|
16931
16678
|
// CONCATENATED MODULE: ./src/components/tables/ToggleTable.vue?vue&type=script&lang=js&
|
|
@@ -16950,16 +16697,14 @@ var ToggleTable_component = normalizeComponent(
|
|
|
16950
16697
|
)
|
|
16951
16698
|
|
|
16952
16699
|
/* harmony default export */ var ToggleTable = (ToggleTable_component.exports);
|
|
16953
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16700
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/badges/ToggleBadge.vue?vue&type=template&id=7aacd399&
|
|
16954
16701
|
var ToggleBadgevue_type_template_id_7aacd399_render = function render() {
|
|
16955
16702
|
var _vm = this,
|
|
16956
|
-
|
|
16957
|
-
|
|
16703
|
+
_c = _vm._self._c;
|
|
16958
16704
|
return _c('span', {
|
|
16959
16705
|
class: ['toggle-badge', _vm.badgeStyle]
|
|
16960
16706
|
}, [_vm._t("default")], 2);
|
|
16961
16707
|
};
|
|
16962
|
-
|
|
16963
16708
|
var ToggleBadgevue_type_template_id_7aacd399_staticRenderFns = [];
|
|
16964
16709
|
|
|
16965
16710
|
// CONCATENATED MODULE: ./src/components/badges/ToggleBadge.vue?vue&type=template&id=7aacd399&
|
|
@@ -17001,11 +16746,10 @@ var ToggleBadge_component = normalizeComponent(
|
|
|
17001
16746
|
)
|
|
17002
16747
|
|
|
17003
16748
|
/* harmony default export */ var ToggleBadge = (ToggleBadge_component.exports);
|
|
17004
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16749
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/breadcrumb/ToggleBreadCrumb.vue?vue&type=template&id=b829739a&
|
|
17005
16750
|
var ToggleBreadCrumbvue_type_template_id_b829739a_render = function render() {
|
|
17006
16751
|
var _vm = this,
|
|
17007
|
-
|
|
17008
|
-
|
|
16752
|
+
_c = _vm._self._c;
|
|
17009
16753
|
return _vm.breadcrumb_computed ? _c('div', {
|
|
17010
16754
|
staticClass: "toggle-breadcrumb"
|
|
17011
16755
|
}, _vm._l(_vm.breadcrumb_computed, function (crumb, index) {
|
|
@@ -17032,7 +16776,6 @@ var ToggleBreadCrumbvue_type_template_id_b829739a_render = function render() {
|
|
|
17032
16776
|
}, [_vm._v(_vm._s(crumb.name))]) : _vm._e()], 1);
|
|
17033
16777
|
}), 0) : _vm._e();
|
|
17034
16778
|
};
|
|
17035
|
-
|
|
17036
16779
|
var ToggleBreadCrumbvue_type_template_id_b829739a_staticRenderFns = [];
|
|
17037
16780
|
|
|
17038
16781
|
// CONCATENATED MODULE: ./src/components/breadcrumb/ToggleBreadCrumb.vue?vue&type=template&id=b829739a&
|
|
@@ -17057,7 +16800,6 @@ var ToggleBreadCrumbvue_type_template_id_b829739a_staticRenderFns = [];
|
|
|
17057
16800
|
breadcrumb_computed() {
|
|
17058
16801
|
return this.isNuxt ? this.breadcrumb : this.$route.meta.breadcrumb;
|
|
17059
16802
|
}
|
|
17060
|
-
|
|
17061
16803
|
}
|
|
17062
16804
|
});
|
|
17063
16805
|
// CONCATENATED MODULE: ./src/components/breadcrumb/ToggleBreadCrumb.vue?vue&type=script&lang=js&
|
|
@@ -17082,11 +16824,10 @@ var ToggleBreadCrumb_component = normalizeComponent(
|
|
|
17082
16824
|
)
|
|
17083
16825
|
|
|
17084
16826
|
/* harmony default export */ var ToggleBreadCrumb = (ToggleBreadCrumb_component.exports);
|
|
17085
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16827
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/sidenav/ToggleSideNavItem.vue?vue&type=template&id=35f39f46&
|
|
17086
16828
|
var ToggleSideNavItemvue_type_template_id_35f39f46_render = function render() {
|
|
17087
16829
|
var _vm = this,
|
|
17088
|
-
|
|
17089
|
-
|
|
16830
|
+
_c = _vm._self._c;
|
|
17090
16831
|
return _c('li', {
|
|
17091
16832
|
class: ['toggle-sidenav-item', _vm.icon, {
|
|
17092
16833
|
'active': _vm.active,
|
|
@@ -17094,7 +16835,6 @@ var ToggleSideNavItemvue_type_template_id_35f39f46_render = function render() {
|
|
|
17094
16835
|
}]
|
|
17095
16836
|
}, [_vm._t("item"), _vm._t("sub-nav")], 2);
|
|
17096
16837
|
};
|
|
17097
|
-
|
|
17098
16838
|
var ToggleSideNavItemvue_type_template_id_35f39f46_staticRenderFns = [];
|
|
17099
16839
|
|
|
17100
16840
|
// CONCATENATED MODULE: ./src/components/navs/sidenav/ToggleSideNavItem.vue?vue&type=template&id=35f39f46&
|
|
@@ -17110,7 +16850,6 @@ var ToggleSideNavItemvue_type_template_id_35f39f46_staticRenderFns = [];
|
|
|
17110
16850
|
type: Boolean,
|
|
17111
16851
|
default: false
|
|
17112
16852
|
},
|
|
17113
|
-
|
|
17114
16853
|
/**
|
|
17115
16854
|
* Icon to use `toggle-graph-icon`, `toggle-orders-icon`, `toggle-card-icon`, `toggle-megaphone-icon`, `toggle-form-icon`
|
|
17116
16855
|
*/
|
|
@@ -17141,11 +16880,10 @@ var ToggleSideNavItem_component = normalizeComponent(
|
|
|
17141
16880
|
)
|
|
17142
16881
|
|
|
17143
16882
|
/* harmony default export */ var ToggleSideNavItem = (ToggleSideNavItem_component.exports);
|
|
17144
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16883
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/sidenav/ToggleSideNav.vue?vue&type=template&id=63256d5d&
|
|
17145
16884
|
var ToggleSideNavvue_type_template_id_63256d5d_render = function render() {
|
|
17146
16885
|
var _vm = this,
|
|
17147
|
-
|
|
17148
|
-
|
|
16886
|
+
_c = _vm._self._c;
|
|
17149
16887
|
return _c('nav', {
|
|
17150
16888
|
staticClass: "toggle-sidenav-container"
|
|
17151
16889
|
}, [_c('img', {
|
|
@@ -17160,7 +16898,6 @@ var ToggleSideNavvue_type_template_id_63256d5d_render = function render() {
|
|
|
17160
16898
|
staticClass: "toggle-sidenav-ul"
|
|
17161
16899
|
}, [_vm._t("default")], 2)], 1);
|
|
17162
16900
|
};
|
|
17163
|
-
|
|
17164
16901
|
var ToggleSideNavvue_type_template_id_63256d5d_staticRenderFns = [];
|
|
17165
16902
|
|
|
17166
16903
|
// CONCATENATED MODULE: ./src/components/navs/sidenav/ToggleSideNav.vue?vue&type=template&id=63256d5d&
|
|
@@ -17177,7 +16914,6 @@ var ToggleSideNavvue_type_template_id_63256d5d_staticRenderFns = [];
|
|
|
17177
16914
|
type: Object,
|
|
17178
16915
|
required: true
|
|
17179
16916
|
},
|
|
17180
|
-
|
|
17181
16917
|
/**
|
|
17182
16918
|
* The main title, displayed below logo
|
|
17183
16919
|
*/
|
|
@@ -17212,16 +16948,14 @@ var ToggleSideNav_component = normalizeComponent(
|
|
|
17212
16948
|
)
|
|
17213
16949
|
|
|
17214
16950
|
/* harmony default export */ var ToggleSideNav = (ToggleSideNav_component.exports);
|
|
17215
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16951
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/sidenav/ToggleSideSubNav.vue?vue&type=template&id=78a7c4f0&
|
|
17216
16952
|
var ToggleSideSubNavvue_type_template_id_78a7c4f0_render = function render() {
|
|
17217
16953
|
var _vm = this,
|
|
17218
|
-
|
|
17219
|
-
|
|
16954
|
+
_c = _vm._self._c;
|
|
17220
16955
|
return _vm.expanded ? _c('ul', {
|
|
17221
16956
|
staticClass: "toggle-sidenav-sub-ul"
|
|
17222
16957
|
}, [_vm._t("default")], 2) : _vm._e();
|
|
17223
16958
|
};
|
|
17224
|
-
|
|
17225
16959
|
var ToggleSideSubNavvue_type_template_id_78a7c4f0_staticRenderFns = [];
|
|
17226
16960
|
|
|
17227
16961
|
// CONCATENATED MODULE: ./src/components/navs/sidenav/ToggleSideSubNav.vue?vue&type=template&id=78a7c4f0&
|
|
@@ -17261,11 +16995,10 @@ var ToggleSideSubNav_component = normalizeComponent(
|
|
|
17261
16995
|
)
|
|
17262
16996
|
|
|
17263
16997
|
/* harmony default export */ var ToggleSideSubNav = (ToggleSideSubNav_component.exports);
|
|
17264
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16998
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/multitiersidenav/ToggleMultiTierSideNav.vue?vue&type=template&id=4850f9eb&
|
|
17265
16999
|
var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_render = function render() {
|
|
17266
17000
|
var _vm = this,
|
|
17267
|
-
|
|
17268
|
-
|
|
17001
|
+
_c = _vm._self._c;
|
|
17269
17002
|
return _c('nav', {
|
|
17270
17003
|
staticClass: "toggle-multi-tier-sidenav-container"
|
|
17271
17004
|
}, [_c('img', {
|
|
@@ -17315,7 +17048,6 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_render = function render
|
|
|
17315
17048
|
}
|
|
17316
17049
|
})], 1);
|
|
17317
17050
|
};
|
|
17318
|
-
|
|
17319
17051
|
var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
|
|
17320
17052
|
|
|
17321
17053
|
// CONCATENATED MODULE: ./src/components/navs/multitiersidenav/ToggleMultiTierSideNav.vue?vue&type=template&id=4850f9eb&
|
|
@@ -17325,16 +17057,13 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
|
|
|
17325
17057
|
|
|
17326
17058
|
/* harmony default export */ var ToggleMultiTierSideNavvue_type_script_lang_js_ = ({
|
|
17327
17059
|
name: 'ToggleMultiTierSideNav',
|
|
17328
|
-
|
|
17329
17060
|
data() {
|
|
17330
17061
|
return {
|
|
17331
17062
|
userMenuOpen: false
|
|
17332
17063
|
};
|
|
17333
17064
|
},
|
|
17334
|
-
|
|
17335
17065
|
props: {
|
|
17336
17066
|
value: {},
|
|
17337
|
-
|
|
17338
17067
|
/**
|
|
17339
17068
|
* For the logo that is displayed at the top of the nav
|
|
17340
17069
|
*/
|
|
@@ -17342,7 +17071,6 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
|
|
|
17342
17071
|
type: Object,
|
|
17343
17072
|
required: true
|
|
17344
17073
|
},
|
|
17345
|
-
|
|
17346
17074
|
/**
|
|
17347
17075
|
* The main title, displayed below logo
|
|
17348
17076
|
*/
|
|
@@ -17350,7 +17078,6 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
|
|
|
17350
17078
|
type: String,
|
|
17351
17079
|
default: 'Airship'
|
|
17352
17080
|
},
|
|
17353
|
-
|
|
17354
17081
|
/**
|
|
17355
17082
|
* Name of the user, displayed in the user menu
|
|
17356
17083
|
*/
|
|
@@ -17400,11 +17127,10 @@ var ToggleMultiTierSideNav_component = normalizeComponent(
|
|
|
17400
17127
|
)
|
|
17401
17128
|
|
|
17402
17129
|
/* harmony default export */ var ToggleMultiTierSideNav = (ToggleMultiTierSideNav_component.exports);
|
|
17403
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17130
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/multitiersidenav/ToggleMultiTierSideNavItem.vue?vue&type=template&id=30f86f6f&
|
|
17404
17131
|
var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_render = function render() {
|
|
17405
17132
|
var _vm = this,
|
|
17406
|
-
|
|
17407
|
-
|
|
17133
|
+
_c = _vm._self._c;
|
|
17408
17134
|
return _c('li', {
|
|
17409
17135
|
class: ['toggle-multi-tier-sidenav-item', _vm.icon, {
|
|
17410
17136
|
'active': _vm.active,
|
|
@@ -17413,7 +17139,6 @@ var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_render = function re
|
|
|
17413
17139
|
}]
|
|
17414
17140
|
}, [_vm._t("item"), _vm._t("sub-nav")], 2);
|
|
17415
17141
|
};
|
|
17416
|
-
|
|
17417
17142
|
var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_staticRenderFns = [];
|
|
17418
17143
|
|
|
17419
17144
|
// CONCATENATED MODULE: ./src/components/navs/multitiersidenav/ToggleMultiTierSideNavItem.vue?vue&type=template&id=30f86f6f&
|
|
@@ -17429,14 +17154,12 @@ var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_staticRenderFns = []
|
|
|
17429
17154
|
type: Boolean,
|
|
17430
17155
|
default: false
|
|
17431
17156
|
},
|
|
17432
|
-
|
|
17433
17157
|
/**
|
|
17434
17158
|
* Icon to use `toggle-graph-icon`, `toggle-orders-icon`, `toggle-card-icon`, `toggle-megaphone-icon`, `toggle-form-icon`
|
|
17435
17159
|
*/
|
|
17436
17160
|
icon: {
|
|
17437
17161
|
type: String
|
|
17438
17162
|
},
|
|
17439
|
-
|
|
17440
17163
|
/**
|
|
17441
17164
|
* Set whether the arrow displays, e.g only for items with sub navs
|
|
17442
17165
|
*/
|
|
@@ -17468,11 +17191,10 @@ var ToggleMultiTierSideNavItem_component = normalizeComponent(
|
|
|
17468
17191
|
)
|
|
17469
17192
|
|
|
17470
17193
|
/* harmony default export */ var ToggleMultiTierSideNavItem = (ToggleMultiTierSideNavItem_component.exports);
|
|
17471
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17194
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/navs/multitiersidenav/ToggleMultiTierSideSubNav.vue?vue&type=template&id=1dfe3f51&
|
|
17472
17195
|
var ToggleMultiTierSideSubNavvue_type_template_id_1dfe3f51_render = function render() {
|
|
17473
17196
|
var _vm = this,
|
|
17474
|
-
|
|
17475
|
-
|
|
17197
|
+
_c = _vm._self._c;
|
|
17476
17198
|
return _c('Transition', {
|
|
17477
17199
|
attrs: {
|
|
17478
17200
|
"name": "drop-down"
|
|
@@ -17481,7 +17203,6 @@ var ToggleMultiTierSideSubNavvue_type_template_id_1dfe3f51_render = function ren
|
|
|
17481
17203
|
staticClass: "toggle-multi-tier-sidenav-sub-ul"
|
|
17482
17204
|
}, [_vm._t("default")], 2) : _vm._e()]);
|
|
17483
17205
|
};
|
|
17484
|
-
|
|
17485
17206
|
var ToggleMultiTierSideSubNavvue_type_template_id_1dfe3f51_staticRenderFns = [];
|
|
17486
17207
|
|
|
17487
17208
|
// CONCATENATED MODULE: ./src/components/navs/multitiersidenav/ToggleMultiTierSideSubNav.vue?vue&type=template&id=1dfe3f51&
|
|
@@ -17521,11 +17242,10 @@ var ToggleMultiTierSideSubNav_component = normalizeComponent(
|
|
|
17521
17242
|
)
|
|
17522
17243
|
|
|
17523
17244
|
/* harmony default export */ var ToggleMultiTierSideSubNav = (ToggleMultiTierSideSubNav_component.exports);
|
|
17524
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17245
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/text/ToggleTextClipboardCopy.vue?vue&type=template&id=478c65bc&
|
|
17525
17246
|
var ToggleTextClipboardCopyvue_type_template_id_478c65bc_render = function render() {
|
|
17526
17247
|
var _vm = this,
|
|
17527
|
-
|
|
17528
|
-
|
|
17248
|
+
_c = _vm._self._c;
|
|
17529
17249
|
return _c('div', {
|
|
17530
17250
|
staticClass: "toggle-copy-text"
|
|
17531
17251
|
}, [_c('p', {
|
|
@@ -17543,7 +17263,6 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_render = function rende
|
|
|
17543
17263
|
staticClass: "product-link-icon"
|
|
17544
17264
|
})])]);
|
|
17545
17265
|
};
|
|
17546
|
-
|
|
17547
17266
|
var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
|
|
17548
17267
|
|
|
17549
17268
|
// CONCATENATED MODULE: ./src/components/text/ToggleTextClipboardCopy.vue?vue&type=template&id=478c65bc&
|
|
@@ -17556,14 +17275,12 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
|
|
|
17556
17275
|
type: String,
|
|
17557
17276
|
default: '15px'
|
|
17558
17277
|
},
|
|
17559
|
-
|
|
17560
17278
|
/**
|
|
17561
17279
|
* For the text you would like to display
|
|
17562
17280
|
*/
|
|
17563
17281
|
copy: {
|
|
17564
17282
|
type: String
|
|
17565
17283
|
},
|
|
17566
|
-
|
|
17567
17284
|
/**
|
|
17568
17285
|
* The string used in link
|
|
17569
17286
|
*/
|
|
@@ -17571,7 +17288,6 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
|
|
|
17571
17288
|
type: String,
|
|
17572
17289
|
required: true
|
|
17573
17290
|
},
|
|
17574
|
-
|
|
17575
17291
|
/**
|
|
17576
17292
|
* The url for the link
|
|
17577
17293
|
*/
|
|
@@ -17588,7 +17304,6 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
|
|
|
17588
17304
|
window.getSelection().addRange(range);
|
|
17589
17305
|
document.execCommand("copy");
|
|
17590
17306
|
}
|
|
17591
|
-
|
|
17592
17307
|
}
|
|
17593
17308
|
});
|
|
17594
17309
|
// CONCATENATED MODULE: ./src/components/text/ToggleTextClipboardCopy.vue?vue&type=script&lang=js&
|
|
@@ -17613,22 +17328,19 @@ var ToggleTextClipboardCopy_component = normalizeComponent(
|
|
|
17613
17328
|
)
|
|
17614
17329
|
|
|
17615
17330
|
/* harmony default export */ var ToggleTextClipboardCopy = (ToggleTextClipboardCopy_component.exports);
|
|
17616
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17331
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/elements/ToggleLineBreak.vue?vue&type=template&id=5db9229a&
|
|
17617
17332
|
var ToggleLineBreakvue_type_template_id_5db9229a_render = function render() {
|
|
17618
17333
|
var _vm = this,
|
|
17619
|
-
|
|
17620
|
-
|
|
17334
|
+
_c = _vm._self._c;
|
|
17621
17335
|
return _c('hr', {
|
|
17622
17336
|
class: _vm.classes
|
|
17623
17337
|
});
|
|
17624
17338
|
};
|
|
17625
|
-
|
|
17626
17339
|
var ToggleLineBreakvue_type_template_id_5db9229a_staticRenderFns = [];
|
|
17627
17340
|
|
|
17628
17341
|
// CONCATENATED MODULE: ./src/components/elements/ToggleLineBreak.vue?vue&type=template&id=5db9229a&
|
|
17629
17342
|
|
|
17630
17343
|
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/elements/ToggleLineBreak.vue?vue&type=script&lang=js&
|
|
17631
|
-
|
|
17632
17344
|
/* harmony default export */ var ToggleLineBreakvue_type_script_lang_js_ = ({
|
|
17633
17345
|
name: "LineBreak",
|
|
17634
17346
|
props: {
|
|
@@ -17645,7 +17357,6 @@ var ToggleLineBreakvue_type_template_id_5db9229a_staticRenderFns = [];
|
|
|
17645
17357
|
'toggle-line-break-grey': this.colour == 'grey'
|
|
17646
17358
|
};
|
|
17647
17359
|
}
|
|
17648
|
-
|
|
17649
17360
|
}
|
|
17650
17361
|
});
|
|
17651
17362
|
// CONCATENATED MODULE: ./src/components/elements/ToggleLineBreak.vue?vue&type=script&lang=js&
|
|
@@ -17670,11 +17381,10 @@ var ToggleLineBreak_component = normalizeComponent(
|
|
|
17670
17381
|
)
|
|
17671
17382
|
|
|
17672
17383
|
/* harmony default export */ var ToggleLineBreak = (ToggleLineBreak_component.exports);
|
|
17673
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17384
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/elements/ToggleSectionCollapse.vue?vue&type=template&id=28fe93af&
|
|
17674
17385
|
var ToggleSectionCollapsevue_type_template_id_28fe93af_render = function render() {
|
|
17675
17386
|
var _vm = this,
|
|
17676
|
-
|
|
17677
|
-
|
|
17387
|
+
_c = _vm._self._c;
|
|
17678
17388
|
return _c('div', {
|
|
17679
17389
|
staticClass: "toggle-section-collapse"
|
|
17680
17390
|
}, [_c('div', {
|
|
@@ -17708,7 +17418,6 @@ var ToggleSectionCollapsevue_type_template_id_28fe93af_render = function render(
|
|
|
17708
17418
|
staticClass: "toggle-section-collapse-linebreak"
|
|
17709
17419
|
})], 1);
|
|
17710
17420
|
};
|
|
17711
|
-
|
|
17712
17421
|
var ToggleSectionCollapsevue_type_template_id_28fe93af_staticRenderFns = [];
|
|
17713
17422
|
|
|
17714
17423
|
// CONCATENATED MODULE: ./src/components/elements/ToggleSectionCollapse.vue?vue&type=template&id=28fe93af&
|
|
@@ -17732,13 +17441,11 @@ var ToggleSectionCollapsevue_type_template_id_28fe93af_staticRenderFns = [];
|
|
|
17732
17441
|
updated: false
|
|
17733
17442
|
};
|
|
17734
17443
|
},
|
|
17735
|
-
|
|
17736
17444
|
mounted() {
|
|
17737
17445
|
if (this.startOpen) {
|
|
17738
17446
|
this.visible = true;
|
|
17739
17447
|
}
|
|
17740
17448
|
},
|
|
17741
|
-
|
|
17742
17449
|
beforeUpdate: function () {
|
|
17743
17450
|
this.updated = true;
|
|
17744
17451
|
}
|
|
@@ -17765,11 +17472,10 @@ var ToggleSectionCollapse_component = normalizeComponent(
|
|
|
17765
17472
|
)
|
|
17766
17473
|
|
|
17767
17474
|
/* harmony default export */ var ToggleSectionCollapse = (ToggleSectionCollapse_component.exports);
|
|
17768
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17475
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/notifications/ToggleNotifications.vue?vue&type=template&id=5bd4c8f9&
|
|
17769
17476
|
var ToggleNotificationsvue_type_template_id_5bd4c8f9_render = function render() {
|
|
17770
17477
|
var _vm = this,
|
|
17771
|
-
|
|
17772
|
-
|
|
17478
|
+
_c = _vm._self._c;
|
|
17773
17479
|
return _c('div', [_c('div', {
|
|
17774
17480
|
staticClass: "toggle-notifications-messagebox",
|
|
17775
17481
|
class: {
|
|
@@ -17780,7 +17486,6 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_render = function render()
|
|
|
17780
17486
|
staticClass: "message"
|
|
17781
17487
|
}, [_vm._v(_vm._s(_vm.message))])])]);
|
|
17782
17488
|
};
|
|
17783
|
-
|
|
17784
17489
|
var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
17785
17490
|
|
|
17786
17491
|
// CONCATENATED MODULE: ./src/components/notifications/ToggleNotifications.vue?vue&type=template&id=5bd4c8f9&
|
|
@@ -17799,36 +17504,32 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
|
17799
17504
|
showAlertsFor: 3000,
|
|
17800
17505
|
// how long should each error display for?
|
|
17801
17506
|
isError: false // is it an error? true for yes, false for now
|
|
17802
|
-
|
|
17803
17507
|
};
|
|
17804
17508
|
},
|
|
17509
|
+
|
|
17805
17510
|
computed: {
|
|
17806
|
-
active()
|
|
17511
|
+
active()
|
|
17512
|
+
// is the message showing?
|
|
17807
17513
|
{
|
|
17808
17514
|
return this.queuedMessages > 0;
|
|
17809
17515
|
},
|
|
17810
|
-
|
|
17811
|
-
|
|
17516
|
+
timeout()
|
|
17517
|
+
// timeouts ensure that when there are multiple errors, they are shown in order rather than all at once.
|
|
17812
17518
|
{
|
|
17813
17519
|
return this.queuedMessages * this.showAlertsFor;
|
|
17814
17520
|
}
|
|
17815
|
-
|
|
17816
17521
|
},
|
|
17817
17522
|
watch: {},
|
|
17818
17523
|
created: function () {
|
|
17819
17524
|
this.$toggle_event.$on('success_message', this.showBox);
|
|
17820
17525
|
this.$toggle_event.$on('error_message', this.showErrorBox);
|
|
17821
17526
|
},
|
|
17822
|
-
|
|
17823
17527
|
beforeDestroy() {
|
|
17824
17528
|
this.$toggle_event.$off('success_message', this.showBox);
|
|
17825
17529
|
this.$toggle_event.$off('error_message', this.showErrorBox);
|
|
17826
17530
|
},
|
|
17827
|
-
|
|
17828
17531
|
mounted: function () {},
|
|
17829
|
-
|
|
17830
17532
|
destroyed() {},
|
|
17831
|
-
|
|
17832
17533
|
methods: {
|
|
17833
17534
|
// trigger an error alert
|
|
17834
17535
|
showErrorBox(message) {
|
|
@@ -17842,7 +17543,6 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
|
17842
17543
|
this.hideBox();
|
|
17843
17544
|
}, this.timeout);
|
|
17844
17545
|
},
|
|
17845
|
-
|
|
17846
17546
|
// trigger a success alert
|
|
17847
17547
|
showBox(message) {
|
|
17848
17548
|
setTimeout(() => {
|
|
@@ -17855,11 +17555,9 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
|
17855
17555
|
this.hideBox();
|
|
17856
17556
|
}, this.timeout);
|
|
17857
17557
|
},
|
|
17858
|
-
|
|
17859
17558
|
// remove a queued message and remove the box if none remaining
|
|
17860
17559
|
hideBox() {
|
|
17861
17560
|
this.queuedMessages--;
|
|
17862
|
-
|
|
17863
17561
|
if (this.queuedMessages == 0) {
|
|
17864
17562
|
setTimeout(() => {
|
|
17865
17563
|
this.message = '';
|
|
@@ -17867,7 +17565,6 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
|
17867
17565
|
}, 1000); // wait for the box to transition out of the page before resetting the message
|
|
17868
17566
|
}
|
|
17869
17567
|
}
|
|
17870
|
-
|
|
17871
17568
|
}
|
|
17872
17569
|
});
|
|
17873
17570
|
// CONCATENATED MODULE: ./src/components/notifications/ToggleNotifications.vue?vue&type=script&lang=js&
|
|
@@ -17892,11 +17589,10 @@ var ToggleNotifications_component = normalizeComponent(
|
|
|
17892
17589
|
)
|
|
17893
17590
|
|
|
17894
17591
|
/* harmony default export */ var ToggleNotifications = (ToggleNotifications_component.exports);
|
|
17895
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17592
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/buttons/ToggleFeatureButton.vue?vue&type=template&id=a49bdc38&scoped=true&
|
|
17896
17593
|
var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_render = function render() {
|
|
17897
17594
|
var _vm = this,
|
|
17898
|
-
|
|
17899
|
-
|
|
17595
|
+
_c = _vm._self._c;
|
|
17900
17596
|
return _c('button', {
|
|
17901
17597
|
staticClass: "toggle-feature-button",
|
|
17902
17598
|
on: {
|
|
@@ -17919,7 +17615,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_render = functi
|
|
|
17919
17615
|
}
|
|
17920
17616
|
})], 1)]);
|
|
17921
17617
|
};
|
|
17922
|
-
|
|
17923
17618
|
var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns = [];
|
|
17924
17619
|
|
|
17925
17620
|
// CONCATENATED MODULE: ./src/components/buttons/ToggleFeatureButton.vue?vue&type=template&id=a49bdc38&scoped=true&
|
|
@@ -17939,7 +17634,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
|
|
|
17939
17634
|
type: String,
|
|
17940
17635
|
required: true
|
|
17941
17636
|
},
|
|
17942
|
-
|
|
17943
17637
|
/**
|
|
17944
17638
|
* Logo alt
|
|
17945
17639
|
*/
|
|
@@ -17947,7 +17641,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
|
|
|
17947
17641
|
type: String,
|
|
17948
17642
|
required: true
|
|
17949
17643
|
},
|
|
17950
|
-
|
|
17951
17644
|
/**
|
|
17952
17645
|
* The label for the button
|
|
17953
17646
|
*/
|
|
@@ -17955,7 +17648,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
|
|
|
17955
17648
|
type: String,
|
|
17956
17649
|
required: true
|
|
17957
17650
|
},
|
|
17958
|
-
|
|
17959
17651
|
/**
|
|
17960
17652
|
* Icon style (mini_delete etc)
|
|
17961
17653
|
*/
|
|
@@ -17973,7 +17665,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
|
|
|
17973
17665
|
*/
|
|
17974
17666
|
this.$emit('click');
|
|
17975
17667
|
}
|
|
17976
|
-
|
|
17977
17668
|
}
|
|
17978
17669
|
});
|
|
17979
17670
|
// CONCATENATED MODULE: ./src/components/buttons/ToggleFeatureButton.vue?vue&type=script&lang=js&
|
|
@@ -17998,16 +17689,14 @@ var ToggleFeatureButton_component = normalizeComponent(
|
|
|
17998
17689
|
)
|
|
17999
17690
|
|
|
18000
17691
|
/* harmony default export */ var ToggleFeatureButton = (ToggleFeatureButton_component.exports);
|
|
18001
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17692
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/text/ToggleInfoText.vue?vue&type=template&id=2abee308&
|
|
18002
17693
|
var ToggleInfoTextvue_type_template_id_2abee308_render = function render() {
|
|
18003
17694
|
var _vm = this,
|
|
18004
|
-
|
|
18005
|
-
|
|
17695
|
+
_c = _vm._self._c;
|
|
18006
17696
|
return _c('p', {
|
|
18007
17697
|
staticClass: "toggle-info-text"
|
|
18008
17698
|
}, [_vm._t("default")], 2);
|
|
18009
17699
|
};
|
|
18010
|
-
|
|
18011
17700
|
var ToggleInfoTextvue_type_template_id_2abee308_staticRenderFns = [];
|
|
18012
17701
|
|
|
18013
17702
|
// CONCATENATED MODULE: ./src/components/text/ToggleInfoText.vue?vue&type=template&id=2abee308&
|
|
@@ -18031,11 +17720,10 @@ var ToggleInfoText_component = normalizeComponent(
|
|
|
18031
17720
|
)
|
|
18032
17721
|
|
|
18033
17722
|
/* harmony default export */ var ToggleInfoText = (ToggleInfoText_component.exports);
|
|
18034
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17723
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleFontPicker.vue?vue&type=template&id=b38afddc&
|
|
18035
17724
|
var ToggleFontPickervue_type_template_id_b38afddc_render = function render() {
|
|
18036
17725
|
var _vm = this,
|
|
18037
|
-
|
|
18038
|
-
|
|
17726
|
+
_c = _vm._self._c;
|
|
18039
17727
|
return _c('ToggleInputSelect', {
|
|
18040
17728
|
style: `font-family: ${_vm.inputVal};`,
|
|
18041
17729
|
attrs: {
|
|
@@ -18054,7 +17742,6 @@ var ToggleFontPickervue_type_template_id_b38afddc_render = function render() {
|
|
|
18054
17742
|
}
|
|
18055
17743
|
});
|
|
18056
17744
|
};
|
|
18057
|
-
|
|
18058
17745
|
var ToggleFontPickervue_type_template_id_b38afddc_staticRenderFns = [];
|
|
18059
17746
|
|
|
18060
17747
|
// CONCATENATED MODULE: ./src/components/forms/ToggleFontPicker.vue?vue&type=template&id=b38afddc&
|
|
@@ -18062,9 +17749,7 @@ var ToggleFontPickervue_type_template_id_b38afddc_staticRenderFns = [];
|
|
|
18062
17749
|
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleFontPicker.vue?vue&type=script&lang=js&
|
|
18063
17750
|
|
|
18064
17751
|
|
|
18065
|
-
|
|
18066
17752
|
var WebFont = __webpack_require__("27d6");
|
|
18067
|
-
|
|
18068
17753
|
/* harmony default export */ var ToggleFontPickervue_type_script_lang_js_ = ({
|
|
18069
17754
|
mixins: [mixins],
|
|
18070
17755
|
components: {
|
|
@@ -18075,7 +17760,6 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18075
17760
|
value: {
|
|
18076
17761
|
type: String
|
|
18077
17762
|
},
|
|
18078
|
-
|
|
18079
17763
|
/**
|
|
18080
17764
|
* The name of the fontpicker component
|
|
18081
17765
|
*/
|
|
@@ -18083,7 +17767,6 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18083
17767
|
type: String,
|
|
18084
17768
|
default: "ToggleFontPicker"
|
|
18085
17769
|
},
|
|
18086
|
-
|
|
18087
17770
|
/**
|
|
18088
17771
|
* The label that will be displayed
|
|
18089
17772
|
*/
|
|
@@ -18092,7 +17775,6 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18092
17775
|
required: false,
|
|
18093
17776
|
default: "Font picker"
|
|
18094
17777
|
},
|
|
18095
|
-
|
|
18096
17778
|
/**
|
|
18097
17779
|
* Whether this is a required field or not
|
|
18098
17780
|
*/
|
|
@@ -18101,17 +17783,14 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18101
17783
|
default: false
|
|
18102
17784
|
}
|
|
18103
17785
|
},
|
|
18104
|
-
|
|
18105
17786
|
data() {
|
|
18106
17787
|
return {
|
|
18107
17788
|
fonts: ['Abril Fatface', 'Alpha Slab One', 'Anton', 'Arvo', 'Bodoni Moda', 'Courier Prime', 'EB Garamond', 'Fredoka One', 'Helvetica', 'IBM Plex Mono', 'Lato', 'Libre Baskerville', 'Lora', 'Merriweather', 'Montserrat', 'Nunito', 'Open Sans', 'Open Sans Condensed', 'Oswald', 'Poppins', 'Prata', 'PT Serif', 'Quicksand', 'Roboto', 'Roboto Mono', 'Roboto Slab', 'Rubik', 'Sacramento', 'Source Sans Pro', 'Source Serif Pro', 'Volkhov', 'Work Sans Pro', 'Space Mono']
|
|
18108
17789
|
};
|
|
18109
17790
|
},
|
|
18110
|
-
|
|
18111
17791
|
created() {
|
|
18112
17792
|
this.getFonts();
|
|
18113
17793
|
},
|
|
18114
|
-
|
|
18115
17794
|
computed: {
|
|
18116
17795
|
fontOptions() {
|
|
18117
17796
|
// Format font list into value/label object for select input
|
|
@@ -18122,16 +17801,13 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18122
17801
|
};
|
|
18123
17802
|
});
|
|
18124
17803
|
},
|
|
18125
|
-
|
|
18126
17804
|
inputVal: {
|
|
18127
17805
|
get() {
|
|
18128
17806
|
return this.value;
|
|
18129
17807
|
},
|
|
18130
|
-
|
|
18131
17808
|
set(value) {
|
|
18132
17809
|
this.$emit('input', value);
|
|
18133
17810
|
}
|
|
18134
|
-
|
|
18135
17811
|
}
|
|
18136
17812
|
},
|
|
18137
17813
|
methods: {
|
|
@@ -18142,7 +17818,6 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18142
17818
|
}
|
|
18143
17819
|
});
|
|
18144
17820
|
}
|
|
18145
|
-
|
|
18146
17821
|
}
|
|
18147
17822
|
});
|
|
18148
17823
|
// CONCATENATED MODULE: ./src/components/forms/ToggleFontPicker.vue?vue&type=script&lang=js&
|
|
@@ -18167,11 +17842,10 @@ var ToggleFontPicker_component = normalizeComponent(
|
|
|
18167
17842
|
)
|
|
18168
17843
|
|
|
18169
17844
|
/* harmony default export */ var ToggleFontPicker = (ToggleFontPicker_component.exports);
|
|
18170
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17845
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputNumberUnit.vue?vue&type=template&id=2553a8be&
|
|
18171
17846
|
var ToggleInputNumberUnitvue_type_template_id_2553a8be_render = function render() {
|
|
18172
17847
|
var _vm = this,
|
|
18173
|
-
|
|
18174
|
-
|
|
17848
|
+
_c = _vm._self._c;
|
|
18175
17849
|
return _c('div', {
|
|
18176
17850
|
staticClass: "toggle-input-container",
|
|
18177
17851
|
class: {
|
|
@@ -18218,7 +17892,6 @@ var ToggleInputNumberUnitvue_type_template_id_2553a8be_render = function render(
|
|
|
18218
17892
|
}
|
|
18219
17893
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
18220
17894
|
};
|
|
18221
|
-
|
|
18222
17895
|
var ToggleInputNumberUnitvue_type_template_id_2553a8be_staticRenderFns = [];
|
|
18223
17896
|
|
|
18224
17897
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputNumberUnit.vue?vue&type=template&id=2553a8be&
|
|
@@ -18278,13 +17951,11 @@ var ToggleInputNumberUnitvue_type_template_id_2553a8be_staticRenderFns = [];
|
|
|
18278
17951
|
required: false
|
|
18279
17952
|
}
|
|
18280
17953
|
},
|
|
18281
|
-
|
|
18282
17954
|
data() {
|
|
18283
17955
|
return {
|
|
18284
17956
|
inputActive: false
|
|
18285
17957
|
};
|
|
18286
17958
|
},
|
|
18287
|
-
|
|
18288
17959
|
computed: {
|
|
18289
17960
|
inputVal: {
|
|
18290
17961
|
get() {
|
|
@@ -18296,73 +17967,58 @@ var ToggleInputNumberUnitvue_type_template_id_2553a8be_staticRenderFns = [];
|
|
|
18296
17967
|
return this.value;
|
|
18297
17968
|
}
|
|
18298
17969
|
},
|
|
18299
|
-
|
|
18300
17970
|
set(modifiedValue) {
|
|
18301
17971
|
this.$emit('input', modifiedValue);
|
|
18302
17972
|
}
|
|
18303
|
-
|
|
18304
17973
|
},
|
|
18305
|
-
|
|
18306
17974
|
appendStringLength() {
|
|
18307
17975
|
var _this$appendString$le;
|
|
18308
|
-
|
|
18309
17976
|
return (_this$appendString$le = this.appendString.length) !== null && _this$appendString$le !== void 0 ? _this$appendString$le : 0;
|
|
18310
17977
|
},
|
|
18311
|
-
|
|
18312
17978
|
prependStringLength() {
|
|
18313
17979
|
var _this$prependString$l;
|
|
18314
|
-
|
|
18315
17980
|
return (_this$prependString$l = this.prependString.length) !== null && _this$prependString$l !== void 0 ? _this$prependString$l : 0;
|
|
18316
17981
|
}
|
|
18317
|
-
|
|
18318
17982
|
},
|
|
18319
17983
|
methods: {
|
|
18320
17984
|
onKeyup() {
|
|
18321
17985
|
// Remove any non-numbers from the input value
|
|
18322
17986
|
this.$emit('input', this.value.replace(/[^0-9]/g, ''));
|
|
18323
17987
|
},
|
|
18324
|
-
|
|
18325
17988
|
onFocus() {
|
|
18326
|
-
this.inputActive = true;
|
|
18327
|
-
|
|
17989
|
+
this.inputActive = true;
|
|
17990
|
+
// When the user clicks in the box, remove the append and/or prepend values
|
|
18328
17991
|
if (this.value != 0 && this.value != '') {
|
|
18329
17992
|
let tempValue = this.value;
|
|
18330
|
-
|
|
18331
17993
|
if (this.appendString) {
|
|
18332
17994
|
// First take off the appended string
|
|
18333
17995
|
tempValue = this.value.slice(0, -this.appendStringLength);
|
|
18334
17996
|
}
|
|
18335
|
-
|
|
18336
17997
|
if (this.prependString) {
|
|
18337
17998
|
// Then take off the prepended string
|
|
18338
17999
|
tempValue = tempValue.slice(this.prependStringLength, this.value.length);
|
|
18339
18000
|
}
|
|
18340
|
-
|
|
18341
18001
|
this.$emit('input', tempValue);
|
|
18342
18002
|
}
|
|
18343
18003
|
},
|
|
18344
|
-
|
|
18345
18004
|
onBlur() {
|
|
18346
|
-
this.inputActive = false;
|
|
18005
|
+
this.inputActive = false;
|
|
18347
18006
|
|
|
18007
|
+
// Don't add the unit if the value is left empty
|
|
18348
18008
|
if (this.value != '') {
|
|
18349
18009
|
// When the user clicks out of the box, add the prepend and/or append values
|
|
18350
18010
|
let tempValue = this.value;
|
|
18351
|
-
|
|
18352
18011
|
if (this.appendString) {
|
|
18353
18012
|
// First add the append string
|
|
18354
18013
|
tempValue += this.appendString;
|
|
18355
18014
|
}
|
|
18356
|
-
|
|
18357
18015
|
if (this.prependString) {
|
|
18358
18016
|
// Then add the prepend string
|
|
18359
18017
|
tempValue = this.prependString + tempValue;
|
|
18360
18018
|
}
|
|
18361
|
-
|
|
18362
18019
|
this.$emit('input', tempValue);
|
|
18363
18020
|
}
|
|
18364
18021
|
}
|
|
18365
|
-
|
|
18366
18022
|
}
|
|
18367
18023
|
});
|
|
18368
18024
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputNumberUnit.vue?vue&type=script&lang=js&
|
|
@@ -18387,11 +18043,10 @@ var ToggleInputNumberUnit_component = normalizeComponent(
|
|
|
18387
18043
|
)
|
|
18388
18044
|
|
|
18389
18045
|
/* harmony default export */ var ToggleInputNumberUnit = (ToggleInputNumberUnit_component.exports);
|
|
18390
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18046
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputLabelLeft.vue?vue&type=template&id=3d8b699e&
|
|
18391
18047
|
var ToggleInputLabelLeftvue_type_template_id_3d8b699e_render = function render() {
|
|
18392
18048
|
var _vm = this,
|
|
18393
|
-
|
|
18394
|
-
|
|
18049
|
+
_c = _vm._self._c;
|
|
18395
18050
|
return _c('div', {
|
|
18396
18051
|
staticClass: "toggle-formbuilder-input-outer-container"
|
|
18397
18052
|
}, [_c('div', {
|
|
@@ -18412,7 +18067,6 @@ var ToggleInputLabelLeftvue_type_template_id_3d8b699e_render = function render()
|
|
|
18412
18067
|
staticClass: "info"
|
|
18413
18068
|
}, [_vm._v(_vm._s(_vm.infoText))]) : _vm._e()], 1)])]);
|
|
18414
18069
|
};
|
|
18415
|
-
|
|
18416
18070
|
var ToggleInputLabelLeftvue_type_template_id_3d8b699e_staticRenderFns = [];
|
|
18417
18071
|
|
|
18418
18072
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputLabelLeft.vue?vue&type=template&id=3d8b699e&
|
|
@@ -18468,11 +18122,10 @@ var ToggleInputLabelLeft_component = normalizeComponent(
|
|
|
18468
18122
|
)
|
|
18469
18123
|
|
|
18470
18124
|
/* harmony default export */ var ToggleInputLabelLeft = (ToggleInputLabelLeft_component.exports);
|
|
18471
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18125
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/forms/ToggleInputMultiSelect.vue?vue&type=template&id=2266e218&
|
|
18472
18126
|
var ToggleInputMultiSelectvue_type_template_id_2266e218_render = function render() {
|
|
18473
18127
|
var _vm = this,
|
|
18474
|
-
|
|
18475
|
-
|
|
18128
|
+
_c = _vm._self._c;
|
|
18476
18129
|
return _c('div', {
|
|
18477
18130
|
staticClass: "toggle-input-container",
|
|
18478
18131
|
class: {
|
|
@@ -18511,7 +18164,6 @@ var ToggleInputMultiSelectvue_type_template_id_2266e218_render = function render
|
|
|
18511
18164
|
}
|
|
18512
18165
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
18513
18166
|
};
|
|
18514
|
-
|
|
18515
18167
|
var ToggleInputMultiSelectvue_type_template_id_2266e218_staticRenderFns = [];
|
|
18516
18168
|
|
|
18517
18169
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputMultiSelect.vue?vue&type=template&id=2266e218&
|
|
@@ -18565,11 +18217,9 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('multi-select',
|
|
|
18565
18217
|
get() {
|
|
18566
18218
|
return this.value;
|
|
18567
18219
|
},
|
|
18568
|
-
|
|
18569
18220
|
set(value) {
|
|
18570
18221
|
this.$emit('input', value);
|
|
18571
18222
|
}
|
|
18572
|
-
|
|
18573
18223
|
}
|
|
18574
18224
|
}
|
|
18575
18225
|
});
|
|
@@ -18595,18 +18245,16 @@ var ToggleInputMultiSelect_component = normalizeComponent(
|
|
|
18595
18245
|
)
|
|
18596
18246
|
|
|
18597
18247
|
/* harmony default export */ var ToggleInputMultiSelect = (ToggleInputMultiSelect_component.exports);
|
|
18598
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18248
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricSingleMetric.vue?vue&type=template&id=327815ad&
|
|
18599
18249
|
var ToggleMetricSingleMetricvue_type_template_id_327815ad_render = function render() {
|
|
18600
18250
|
var _vm = this,
|
|
18601
|
-
|
|
18602
|
-
|
|
18251
|
+
_c = _vm._self._c;
|
|
18603
18252
|
return _c('div', [_c('h3', {
|
|
18604
18253
|
staticClass: "toggle-metric metric-label"
|
|
18605
18254
|
}, [_vm._v(_vm._s(_vm.label))]), _c('h1', {
|
|
18606
18255
|
staticClass: "toggle-metric metric-value"
|
|
18607
18256
|
}, [_vm._v(_vm._s(_vm.metricValue))])]);
|
|
18608
18257
|
};
|
|
18609
|
-
|
|
18610
18258
|
var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
18611
18259
|
|
|
18612
18260
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSingleMetric.vue?vue&type=template&id=327815ad&
|
|
@@ -18623,7 +18271,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18623
18271
|
type: String,
|
|
18624
18272
|
default: "ToggleMetricSingleMetric"
|
|
18625
18273
|
},
|
|
18626
|
-
|
|
18627
18274
|
/**
|
|
18628
18275
|
* Type of the value, this will affect on the format shown
|
|
18629
18276
|
*/
|
|
@@ -18633,7 +18280,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18633
18280
|
return ['text', 'number', 'percentage', 'currency'].indexOf(value) !== -1;
|
|
18634
18281
|
}
|
|
18635
18282
|
},
|
|
18636
|
-
|
|
18637
18283
|
/**
|
|
18638
18284
|
* Component's value
|
|
18639
18285
|
*/
|
|
@@ -18641,7 +18287,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18641
18287
|
type: [String, Number],
|
|
18642
18288
|
required: true
|
|
18643
18289
|
},
|
|
18644
|
-
|
|
18645
18290
|
/**
|
|
18646
18291
|
* Component's label
|
|
18647
18292
|
*/
|
|
@@ -18649,7 +18294,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18649
18294
|
type: String,
|
|
18650
18295
|
default: ""
|
|
18651
18296
|
},
|
|
18652
|
-
|
|
18653
18297
|
/**
|
|
18654
18298
|
* Currency Code
|
|
18655
18299
|
*/
|
|
@@ -18657,7 +18301,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18657
18301
|
type: String,
|
|
18658
18302
|
default: 'GBP'
|
|
18659
18303
|
},
|
|
18660
|
-
|
|
18661
18304
|
/**
|
|
18662
18305
|
* Currency locale
|
|
18663
18306
|
*/
|
|
@@ -18665,7 +18308,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18665
18308
|
type: String,
|
|
18666
18309
|
default: 'en-GB'
|
|
18667
18310
|
},
|
|
18668
|
-
|
|
18669
18311
|
/**
|
|
18670
18312
|
* Currency denomination
|
|
18671
18313
|
*/
|
|
@@ -18683,22 +18325,18 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18683
18325
|
if (this.value === null) {
|
|
18684
18326
|
return "-";
|
|
18685
18327
|
}
|
|
18686
|
-
|
|
18687
18328
|
switch (this.type) {
|
|
18688
18329
|
case 'currency':
|
|
18689
18330
|
return (this.value / this.currencyDenomination).toLocaleString(this.currencyLocale, {
|
|
18690
18331
|
style: 'currency',
|
|
18691
18332
|
currency: this.currencyCode
|
|
18692
18333
|
});
|
|
18693
|
-
|
|
18694
18334
|
case 'percentage':
|
|
18695
18335
|
return `${this.value} %`;
|
|
18696
|
-
|
|
18697
18336
|
default:
|
|
18698
18337
|
return this.value.toLocaleString();
|
|
18699
18338
|
}
|
|
18700
18339
|
}
|
|
18701
|
-
|
|
18702
18340
|
}
|
|
18703
18341
|
});
|
|
18704
18342
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSingleMetric.vue?vue&type=script&lang=js&
|
|
@@ -18723,11 +18361,10 @@ var ToggleMetricSingleMetric_component = normalizeComponent(
|
|
|
18723
18361
|
)
|
|
18724
18362
|
|
|
18725
18363
|
/* harmony default export */ var ToggleMetricSingleMetric = (ToggleMetricSingleMetric_component.exports);
|
|
18726
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18727
|
-
var
|
|
18364
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricSparkLine.vue?vue&type=template&id=3daa6edc&
|
|
18365
|
+
var ToggleMetricSparkLinevue_type_template_id_3daa6edc_render = function render() {
|
|
18728
18366
|
var _vm = this,
|
|
18729
|
-
|
|
18730
|
-
|
|
18367
|
+
_c = _vm._self._c;
|
|
18731
18368
|
return _c('div', [_c('ToggleBadge', {
|
|
18732
18369
|
staticStyle: {
|
|
18733
18370
|
"margin-bottom": "10px"
|
|
@@ -18755,10 +18392,9 @@ var ToggleMetricSparkLinevue_type_template_id_3bcb5f44_render = function render(
|
|
|
18755
18392
|
}
|
|
18756
18393
|
})], 1);
|
|
18757
18394
|
};
|
|
18395
|
+
var ToggleMetricSparkLinevue_type_template_id_3daa6edc_staticRenderFns = [];
|
|
18758
18396
|
|
|
18759
|
-
|
|
18760
|
-
|
|
18761
|
-
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSparkLine.vue?vue&type=template&id=3bcb5f44&
|
|
18397
|
+
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSparkLine.vue?vue&type=template&id=3daa6edc&
|
|
18762
18398
|
|
|
18763
18399
|
// EXTERNAL MODULE: ./node_modules/vue-apexcharts/dist/vue-apexcharts.js
|
|
18764
18400
|
var vue_apexcharts = __webpack_require__("1321");
|
|
@@ -18782,7 +18418,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18782
18418
|
type: String,
|
|
18783
18419
|
default: "ToggleMetricSingleMetric"
|
|
18784
18420
|
},
|
|
18785
|
-
|
|
18786
18421
|
/**
|
|
18787
18422
|
* The line chart height
|
|
18788
18423
|
*/
|
|
@@ -18790,7 +18425,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18790
18425
|
type: String,
|
|
18791
18426
|
default: "25%"
|
|
18792
18427
|
},
|
|
18793
|
-
|
|
18794
18428
|
/**
|
|
18795
18429
|
* The line chart width
|
|
18796
18430
|
*/
|
|
@@ -18798,7 +18432,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18798
18432
|
type: String,
|
|
18799
18433
|
default: "25%"
|
|
18800
18434
|
},
|
|
18801
|
-
|
|
18802
18435
|
/**
|
|
18803
18436
|
* Type of the value, this will affect on the format shown for the single value
|
|
18804
18437
|
*/
|
|
@@ -18808,7 +18441,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18808
18441
|
return ['text', 'number', 'percentage', 'currency'].indexOf(value) !== -1;
|
|
18809
18442
|
}
|
|
18810
18443
|
},
|
|
18811
|
-
|
|
18812
18444
|
/**
|
|
18813
18445
|
* single metric component value
|
|
18814
18446
|
*/
|
|
@@ -18816,7 +18448,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18816
18448
|
type: [String, Number],
|
|
18817
18449
|
required: true
|
|
18818
18450
|
},
|
|
18819
|
-
|
|
18820
18451
|
/**
|
|
18821
18452
|
* spark line component value
|
|
18822
18453
|
*/
|
|
@@ -18824,7 +18455,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18824
18455
|
type: Array,
|
|
18825
18456
|
required: true
|
|
18826
18457
|
},
|
|
18827
|
-
|
|
18828
18458
|
/**
|
|
18829
18459
|
* Component's label
|
|
18830
18460
|
*/
|
|
@@ -18832,7 +18462,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18832
18462
|
type: String,
|
|
18833
18463
|
required: true
|
|
18834
18464
|
},
|
|
18835
|
-
|
|
18836
18465
|
/**
|
|
18837
18466
|
* Currency Code
|
|
18838
18467
|
*/
|
|
@@ -18840,7 +18469,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18840
18469
|
type: String,
|
|
18841
18470
|
default: 'GBP'
|
|
18842
18471
|
},
|
|
18843
|
-
|
|
18844
18472
|
/**
|
|
18845
18473
|
* Currency locale
|
|
18846
18474
|
*/
|
|
@@ -18848,7 +18476,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18848
18476
|
type: String,
|
|
18849
18477
|
default: 'en-GB'
|
|
18850
18478
|
},
|
|
18851
|
-
|
|
18852
18479
|
/**
|
|
18853
18480
|
* Currency denomination
|
|
18854
18481
|
*/
|
|
@@ -18856,15 +18483,13 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18856
18483
|
type: Number,
|
|
18857
18484
|
default: 1
|
|
18858
18485
|
},
|
|
18859
|
-
|
|
18860
18486
|
/**
|
|
18861
18487
|
* Percentage base used to calculate the trend impact
|
|
18862
18488
|
*/
|
|
18863
18489
|
trend_impact_base: {
|
|
18864
18490
|
type: Number,
|
|
18865
|
-
default: 5
|
|
18491
|
+
default: 0.5
|
|
18866
18492
|
},
|
|
18867
|
-
|
|
18868
18493
|
/**
|
|
18869
18494
|
* This prop will inverse the trend impact
|
|
18870
18495
|
*/
|
|
@@ -18910,15 +18535,12 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18910
18535
|
}
|
|
18911
18536
|
};
|
|
18912
18537
|
},
|
|
18913
|
-
|
|
18914
18538
|
mounted() {
|
|
18915
18539
|
this.updateTrend();
|
|
18916
18540
|
},
|
|
18917
|
-
|
|
18918
18541
|
updated() {
|
|
18919
18542
|
this.updateTrend();
|
|
18920
18543
|
},
|
|
18921
|
-
|
|
18922
18544
|
computed: {
|
|
18923
18545
|
/**
|
|
18924
18546
|
* Defines the badge class from the trending impact
|
|
@@ -18927,7 +18549,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18927
18549
|
trendImpactClass() {
|
|
18928
18550
|
return this.getTrendImpact() === 1 ? 'confirm' : this.getTrendImpact() === -1 ? 'abort' : this.getTrendImpact() === 0 ? 'warning' : 'empty';
|
|
18929
18551
|
},
|
|
18930
|
-
|
|
18931
18552
|
/**
|
|
18932
18553
|
* Defines the badge title from the trending impact
|
|
18933
18554
|
* @return String
|
|
@@ -18935,7 +18556,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18935
18556
|
trendImpactLabel() {
|
|
18936
18557
|
return this.getTrendImpact() === 1 ? 'Trending up' : this.getTrendImpact() === -1 ? 'Going down' : this.getTrendImpact() === 0 ? 'Keeping steady' : 'No data';
|
|
18937
18558
|
}
|
|
18938
|
-
|
|
18939
18559
|
},
|
|
18940
18560
|
methods: {
|
|
18941
18561
|
/**
|
|
@@ -18945,6 +18565,7 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18945
18565
|
getTrendImpact() {
|
|
18946
18566
|
if (this.sparkLineVal[0].data.length > 0) {
|
|
18947
18567
|
// if the value is an object, map to array
|
|
18568
|
+
|
|
18948
18569
|
const trendImpactVals = this.sparkLineVal[0].data[0].y || this.sparkLineVal[0].data[0].y === 0 ? this.sparkLineVal[0].data.map(data => data.y) : this.sparkLineVal[0].data;
|
|
18949
18570
|
let result = this.calcTrendImpact(trendImpactVals, this.trend_impact_base);
|
|
18950
18571
|
if (this.inverse_trend_impact === true && result != false) return result * -1;else return result;
|
|
@@ -18952,33 +18573,27 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18952
18573
|
return false;
|
|
18953
18574
|
}
|
|
18954
18575
|
},
|
|
18955
|
-
|
|
18956
18576
|
/**
|
|
18957
18577
|
* Gets trend impact and udpates the chart with respective color
|
|
18958
18578
|
* @return Void
|
|
18959
18579
|
*/
|
|
18960
18580
|
updateTrend() {
|
|
18961
18581
|
this.trendImpact = this.getTrendImpact();
|
|
18962
|
-
|
|
18963
18582
|
switch (this.trendImpact) {
|
|
18964
18583
|
case 1:
|
|
18965
18584
|
this.updateChart([this.getColor('green')]);
|
|
18966
18585
|
break;
|
|
18967
|
-
|
|
18968
18586
|
case 0:
|
|
18969
18587
|
this.updateChart([this.getColor('amber')]);
|
|
18970
18588
|
break;
|
|
18971
|
-
|
|
18972
18589
|
case -1:
|
|
18973
18590
|
this.updateChart([this.getColor('red')]);
|
|
18974
18591
|
break;
|
|
18975
|
-
|
|
18976
18592
|
case false:
|
|
18977
18593
|
this.updateChart([this.getColor('gray')]);
|
|
18978
18594
|
break;
|
|
18979
18595
|
}
|
|
18980
18596
|
},
|
|
18981
|
-
|
|
18982
18597
|
/**
|
|
18983
18598
|
* Updates the spark line chart component colors
|
|
18984
18599
|
* @return Void
|
|
@@ -18988,7 +18603,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18988
18603
|
colors: colors
|
|
18989
18604
|
});
|
|
18990
18605
|
}
|
|
18991
|
-
|
|
18992
18606
|
}
|
|
18993
18607
|
});
|
|
18994
18608
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSparkLine.vue?vue&type=script&lang=js&
|
|
@@ -19003,8 +18617,8 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
19003
18617
|
|
|
19004
18618
|
var ToggleMetricSparkLine_component = normalizeComponent(
|
|
19005
18619
|
metrics_ToggleMetricSparkLinevue_type_script_lang_js_,
|
|
19006
|
-
|
|
19007
|
-
|
|
18620
|
+
ToggleMetricSparkLinevue_type_template_id_3daa6edc_render,
|
|
18621
|
+
ToggleMetricSparkLinevue_type_template_id_3daa6edc_staticRenderFns,
|
|
19008
18622
|
false,
|
|
19009
18623
|
null,
|
|
19010
18624
|
null,
|
|
@@ -19013,11 +18627,10 @@ var ToggleMetricSparkLine_component = normalizeComponent(
|
|
|
19013
18627
|
)
|
|
19014
18628
|
|
|
19015
18629
|
/* harmony default export */ var ToggleMetricSparkLine = (ToggleMetricSparkLine_component.exports);
|
|
19016
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18630
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricBarChart.vue?vue&type=template&id=0137f388&
|
|
19017
18631
|
var ToggleMetricBarChartvue_type_template_id_0137f388_render = function render() {
|
|
19018
18632
|
var _vm = this,
|
|
19019
|
-
|
|
19020
|
-
|
|
18633
|
+
_c = _vm._self._c;
|
|
19021
18634
|
return _c('div', [_c('h3', {
|
|
19022
18635
|
staticClass: "toggle-metric metric-label"
|
|
19023
18636
|
}, [_vm._v(_vm._s(_vm.label))]), _vm._v(" " + _vm._s(_vm.checkWindowSize) + " "), _c('apexchart', {
|
|
@@ -19029,7 +18642,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_render = function render()
|
|
|
19029
18642
|
}
|
|
19030
18643
|
})], 1);
|
|
19031
18644
|
};
|
|
19032
|
-
|
|
19033
18645
|
var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
19034
18646
|
|
|
19035
18647
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricBarChart.vue?vue&type=template&id=0137f388&
|
|
@@ -19045,7 +18657,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19045
18657
|
colors: {
|
|
19046
18658
|
type: [Array]
|
|
19047
18659
|
},
|
|
19048
|
-
|
|
19049
18660
|
/*
|
|
19050
18661
|
* Component's height
|
|
19051
18662
|
*/
|
|
@@ -19053,7 +18664,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19053
18664
|
type: String,
|
|
19054
18665
|
default: "100%"
|
|
19055
18666
|
},
|
|
19056
|
-
|
|
19057
18667
|
/*
|
|
19058
18668
|
* Component's values
|
|
19059
18669
|
*/
|
|
@@ -19061,7 +18671,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19061
18671
|
type: [Array],
|
|
19062
18672
|
required: true
|
|
19063
18673
|
},
|
|
19064
|
-
|
|
19065
18674
|
/*
|
|
19066
18675
|
* Component's labels
|
|
19067
18676
|
*/
|
|
@@ -19069,7 +18678,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19069
18678
|
type: String,
|
|
19070
18679
|
required: true
|
|
19071
18680
|
},
|
|
19072
|
-
|
|
19073
18681
|
/*
|
|
19074
18682
|
* Component's categories
|
|
19075
18683
|
*/
|
|
@@ -19151,7 +18759,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19151
18759
|
}
|
|
19152
18760
|
};
|
|
19153
18761
|
}
|
|
19154
|
-
|
|
19155
18762
|
}
|
|
19156
18763
|
});
|
|
19157
18764
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricBarChart.vue?vue&type=script&lang=js&
|
|
@@ -19176,11 +18783,10 @@ var ToggleMetricBarChart_component = normalizeComponent(
|
|
|
19176
18783
|
)
|
|
19177
18784
|
|
|
19178
18785
|
/* harmony default export */ var ToggleMetricBarChart = (ToggleMetricBarChart_component.exports);
|
|
19179
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18786
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricPieChart.vue?vue&type=template&id=5a723d6a&
|
|
19180
18787
|
var ToggleMetricPieChartvue_type_template_id_5a723d6a_render = function render() {
|
|
19181
18788
|
var _vm = this,
|
|
19182
|
-
|
|
19183
|
-
|
|
18789
|
+
_c = _vm._self._c;
|
|
19184
18790
|
return _c('div', [_c('h3', {
|
|
19185
18791
|
staticClass: "toggle-metric metric-label"
|
|
19186
18792
|
}, [_vm._v(_vm._s(_vm.label))]), _c('apexchart', {
|
|
@@ -19192,7 +18798,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_render = function render()
|
|
|
19192
18798
|
}
|
|
19193
18799
|
})], 1);
|
|
19194
18800
|
};
|
|
19195
|
-
|
|
19196
18801
|
var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
19197
18802
|
|
|
19198
18803
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricPieChart.vue?vue&type=template&id=5a723d6a&
|
|
@@ -19208,7 +18813,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19208
18813
|
colors: {
|
|
19209
18814
|
type: [String]
|
|
19210
18815
|
},
|
|
19211
|
-
|
|
19212
18816
|
/**
|
|
19213
18817
|
* Component's values
|
|
19214
18818
|
*/
|
|
@@ -19216,7 +18820,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19216
18820
|
type: Array,
|
|
19217
18821
|
required: true
|
|
19218
18822
|
},
|
|
19219
|
-
|
|
19220
18823
|
/*
|
|
19221
18824
|
* Component's height
|
|
19222
18825
|
*/
|
|
@@ -19224,7 +18827,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19224
18827
|
type: String,
|
|
19225
18828
|
default: ""
|
|
19226
18829
|
},
|
|
19227
|
-
|
|
19228
18830
|
/**
|
|
19229
18831
|
* Component's main label
|
|
19230
18832
|
*/
|
|
@@ -19232,7 +18834,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19232
18834
|
type: String,
|
|
19233
18835
|
required: true
|
|
19234
18836
|
},
|
|
19235
|
-
|
|
19236
18837
|
/**
|
|
19237
18838
|
* Component's label for each value
|
|
19238
18839
|
*/
|
|
@@ -19287,7 +18888,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19287
18888
|
}
|
|
19288
18889
|
};
|
|
19289
18890
|
}
|
|
19290
|
-
|
|
19291
18891
|
}
|
|
19292
18892
|
});
|
|
19293
18893
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricPieChart.vue?vue&type=script&lang=js&
|
|
@@ -19312,11 +18912,10 @@ var ToggleMetricPieChart_component = normalizeComponent(
|
|
|
19312
18912
|
)
|
|
19313
18913
|
|
|
19314
18914
|
/* harmony default export */ var ToggleMetricPieChart = (ToggleMetricPieChart_component.exports);
|
|
19315
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18915
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"e907765e-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/metrics/ToggleMetricFunnelChart.vue?vue&type=template&id=f3f5710a&
|
|
19316
18916
|
var ToggleMetricFunnelChartvue_type_template_id_f3f5710a_render = function render() {
|
|
19317
18917
|
var _vm = this,
|
|
19318
|
-
|
|
19319
|
-
|
|
18918
|
+
_c = _vm._self._c;
|
|
19320
18919
|
return _c('div', {
|
|
19321
18920
|
staticClass: "toggle-metric-funnel-container"
|
|
19322
18921
|
}, [_c('div', {
|
|
@@ -19347,7 +18946,6 @@ var ToggleMetricFunnelChartvue_type_template_id_f3f5710a_render = function rende
|
|
|
19347
18946
|
staticClass: "funnel-single-metric-container"
|
|
19348
18947
|
}, [_vm._t("funnel4")], 2)])]);
|
|
19349
18948
|
};
|
|
19350
|
-
|
|
19351
18949
|
var ToggleMetricFunnelChartvue_type_template_id_f3f5710a_staticRenderFns = [];
|
|
19352
18950
|
|
|
19353
18951
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricFunnelChart.vue?vue&type=template&id=f3f5710a&
|
|
@@ -19510,7 +19108,6 @@ Object.defineProperty(external_commonjs_vue_commonjs2_vue_root_Vue_default.a.pro
|
|
|
19510
19108
|
get() {
|
|
19511
19109
|
return toggle_event_bus;
|
|
19512
19110
|
}
|
|
19513
|
-
|
|
19514
19111
|
});
|
|
19515
19112
|
/* harmony default export */ var src_0 = (Components);
|
|
19516
19113
|
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
@@ -19575,7 +19172,7 @@ module.exports = isSameDay
|
|
|
19575
19172
|
/***/ "fdbf":
|
|
19576
19173
|
/***/ (function(module, exports, __webpack_require__) {
|
|
19577
19174
|
|
|
19578
|
-
/* eslint-disable es
|
|
19175
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
19579
19176
|
var NATIVE_SYMBOL = __webpack_require__("04f8");
|
|
19580
19177
|
|
|
19581
19178
|
module.exports = NATIVE_SYMBOL
|