toggle-components-library 1.25.1 → 1.25.3
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 +457 -845
- 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 +457 -845
- 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/ToggleInputImage.vue +10 -6
- package/src/components/forms/ToggleInputText.vue +6 -6
- package/src/components/json/char_list.json +2233 -0
- package/src/components/mixins/mixins.js +18 -1
- package/src/components/text/ToggleTextClipboardCopy.vue +10 -1
- package/src/sass/includes/_as_inputs.scss +8 -8
- package/src/sass/includes/_as_text.scss +1 -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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"041c37bc-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":"
|
|
15102
|
-
var
|
|
14922
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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=610897a3&
|
|
14923
|
+
var ToggleInputImagevue_type_template_id_610897a3_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: {
|
|
@@ -15140,6 +14960,7 @@ var ToggleInputImagevue_type_template_id_6dd50c98_render = function render() {
|
|
|
15140
14960
|
}
|
|
15141
14961
|
}, [_c('div', {
|
|
15142
14962
|
staticClass: "toggle-item-img toggle-dark-grey toggle-center",
|
|
14963
|
+
class: _vm.moveIconClass,
|
|
15143
14964
|
style: {
|
|
15144
14965
|
background: `rgb(243, 237, 237) url(${image.url}) no-repeat center top`,
|
|
15145
14966
|
height: _vm.previewRatio == 'letterbox' ? _vm.thumbnailWidth / 2 + 'px' : _vm.thumbnailWidth + 'px',
|
|
@@ -15179,21 +15000,18 @@ var ToggleInputImagevue_type_template_id_6dd50c98_render = function render() {
|
|
|
15179
15000
|
staticClass: "toggle-input-label-error"
|
|
15180
15001
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
|
|
15181
15002
|
};
|
|
15003
|
+
var ToggleInputImagevue_type_template_id_610897a3_staticRenderFns = [];
|
|
15182
15004
|
|
|
15183
|
-
|
|
15184
|
-
|
|
15185
|
-
// CONCATENATED MODULE: ./src/components/forms/ToggleInputImage.vue?vue&type=template&id=6dd50c98&
|
|
15005
|
+
// CONCATENATED MODULE: ./src/components/forms/ToggleInputImage.vue?vue&type=template&id=610897a3&
|
|
15186
15006
|
|
|
15187
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15007
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
15008
|
var ToggleHelperTextSmallvue_type_template_id_d8210f4e_render = function render() {
|
|
15189
15009
|
var _vm = this,
|
|
15190
|
-
|
|
15191
|
-
|
|
15010
|
+
_c = _vm._self._c;
|
|
15192
15011
|
return _c('p', {
|
|
15193
15012
|
staticClass: "toggle-helper-text-small"
|
|
15194
15013
|
}, [_vm._t("default")], 2);
|
|
15195
15014
|
};
|
|
15196
|
-
|
|
15197
15015
|
var ToggleHelperTextSmallvue_type_template_id_d8210f4e_staticRenderFns = [];
|
|
15198
15016
|
|
|
15199
15017
|
// CONCATENATED MODULE: ./src/components/text/ToggleHelperTextSmall.vue?vue&type=template&id=d8210f4e&
|
|
@@ -15217,11 +15035,10 @@ var ToggleHelperTextSmall_component = normalizeComponent(
|
|
|
15217
15035
|
)
|
|
15218
15036
|
|
|
15219
15037
|
/* 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":"
|
|
15038
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
15039
|
var ToggleFillLoadervue_type_template_id_2fbb049c_render = function render() {
|
|
15222
15040
|
var _vm = this,
|
|
15223
|
-
|
|
15224
|
-
|
|
15041
|
+
_c = _vm._self._c;
|
|
15225
15042
|
return _c('div', {
|
|
15226
15043
|
staticClass: "toggle-fill-loader-container",
|
|
15227
15044
|
class: {
|
|
@@ -15229,11 +15046,9 @@ var ToggleFillLoadervue_type_template_id_2fbb049c_render = function render() {
|
|
|
15229
15046
|
}
|
|
15230
15047
|
}, [_vm._m(0)]);
|
|
15231
15048
|
};
|
|
15232
|
-
|
|
15233
15049
|
var ToggleFillLoadervue_type_template_id_2fbb049c_staticRenderFns = [function () {
|
|
15234
15050
|
var _vm = this,
|
|
15235
|
-
|
|
15236
|
-
|
|
15051
|
+
_c = _vm._self._c;
|
|
15237
15052
|
return _c('div', {
|
|
15238
15053
|
staticClass: "toggle-fill-loader-container-background"
|
|
15239
15054
|
}, [_c('div', {
|
|
@@ -15375,7 +15190,11 @@ var vue2Dropzone_min = __webpack_require__("1e3f");
|
|
|
15375
15190
|
group: "images"
|
|
15376
15191
|
};
|
|
15377
15192
|
},
|
|
15378
|
-
|
|
15193
|
+
moveIconClass() {
|
|
15194
|
+
return {
|
|
15195
|
+
'toggle-move-icon': this.images.length > 1
|
|
15196
|
+
};
|
|
15197
|
+
},
|
|
15379
15198
|
inputVal: {
|
|
15380
15199
|
get: function () {
|
|
15381
15200
|
return this.images;
|
|
@@ -15399,8 +15218,8 @@ var vue2Dropzone_min = __webpack_require__("1e3f");
|
|
|
15399
15218
|
|
|
15400
15219
|
var ToggleInputImage_component = normalizeComponent(
|
|
15401
15220
|
forms_ToggleInputImagevue_type_script_lang_js_,
|
|
15402
|
-
|
|
15403
|
-
|
|
15221
|
+
ToggleInputImagevue_type_template_id_610897a3_render,
|
|
15222
|
+
ToggleInputImagevue_type_template_id_610897a3_staticRenderFns,
|
|
15404
15223
|
false,
|
|
15405
15224
|
null,
|
|
15406
15225
|
null,
|
|
@@ -15409,11 +15228,10 @@ var ToggleInputImage_component = normalizeComponent(
|
|
|
15409
15228
|
)
|
|
15410
15229
|
|
|
15411
15230
|
/* 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":"
|
|
15231
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
15232
|
var ToggleInputFilevue_type_template_id_564702b5_render = function render() {
|
|
15414
15233
|
var _vm = this,
|
|
15415
|
-
|
|
15416
|
-
|
|
15234
|
+
_c = _vm._self._c;
|
|
15417
15235
|
return _c('div', {
|
|
15418
15236
|
staticClass: "toggle-input-container",
|
|
15419
15237
|
class: {
|
|
@@ -15458,7 +15276,6 @@ var ToggleInputFilevue_type_template_id_564702b5_render = function render() {
|
|
|
15458
15276
|
staticClass: "toggle-input-label-error"
|
|
15459
15277
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
|
|
15460
15278
|
};
|
|
15461
|
-
|
|
15462
15279
|
var ToggleInputFilevue_type_template_id_564702b5_staticRenderFns = [];
|
|
15463
15280
|
|
|
15464
15281
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputFile.vue?vue&type=template&id=564702b5&
|
|
@@ -15537,16 +15354,14 @@ var ToggleInputFile_component = normalizeComponent(
|
|
|
15537
15354
|
)
|
|
15538
15355
|
|
|
15539
15356
|
/* 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":"
|
|
15357
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
15358
|
var ToggleInputGroupvue_type_template_id_a6b9978e_render = function render() {
|
|
15542
15359
|
var _vm = this,
|
|
15543
|
-
|
|
15544
|
-
|
|
15360
|
+
_c = _vm._self._c;
|
|
15545
15361
|
return _c('div', [_vm.label ? _c('ToggleHeaderTextLarge', [_vm._v(_vm._s(_vm.label))]) : _vm._e(), _c('div', {
|
|
15546
15362
|
staticClass: "toggle-input-group"
|
|
15547
15363
|
}, [_vm._t("default")], 2)], 1);
|
|
15548
15364
|
};
|
|
15549
|
-
|
|
15550
15365
|
var ToggleInputGroupvue_type_template_id_a6b9978e_staticRenderFns = [];
|
|
15551
15366
|
|
|
15552
15367
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputGroup.vue?vue&type=template&id=a6b9978e&
|
|
@@ -15594,11 +15409,10 @@ var ToggleInputGroup_component = normalizeComponent(
|
|
|
15594
15409
|
)
|
|
15595
15410
|
|
|
15596
15411
|
/* 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":"
|
|
15412
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
15413
|
var ToggleInputNumbervue_type_template_id_ef0b99dc_render = function render() {
|
|
15599
15414
|
var _vm = this,
|
|
15600
|
-
|
|
15601
|
-
|
|
15415
|
+
_c = _vm._self._c;
|
|
15602
15416
|
return _c('div', {
|
|
15603
15417
|
staticClass: "toggle-input-container",
|
|
15604
15418
|
class: {
|
|
@@ -15649,7 +15463,6 @@ var ToggleInputNumbervue_type_template_id_ef0b99dc_render = function render() {
|
|
|
15649
15463
|
}
|
|
15650
15464
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
15651
15465
|
};
|
|
15652
|
-
|
|
15653
15466
|
var ToggleInputNumbervue_type_template_id_ef0b99dc_staticRenderFns = [];
|
|
15654
15467
|
|
|
15655
15468
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputNumber.vue?vue&type=template&id=ef0b99dc&
|
|
@@ -15735,7 +15548,8 @@ var ToggleInputNumbervue_type_template_id_ef0b99dc_staticRenderFns = [];
|
|
|
15735
15548
|
if (modifiedValue === '') {
|
|
15736
15549
|
this.$emit('input', modifiedValue);
|
|
15737
15550
|
} else {
|
|
15738
|
-
let newValue = parseFloat(modifiedValue);
|
|
15551
|
+
let newValue = parseFloat(modifiedValue);
|
|
15552
|
+
// Ensure that it is not NaN
|
|
15739
15553
|
|
|
15740
15554
|
if (isNaN(newValue)) newValue = 0;
|
|
15741
15555
|
this.$emit('input', newValue);
|
|
@@ -15752,15 +15566,12 @@ var ToggleInputNumbervue_type_template_id_ef0b99dc_staticRenderFns = [];
|
|
|
15752
15566
|
let mcount = count ? count.length : 0;
|
|
15753
15567
|
return mcount + ' / ' + maxLenght;
|
|
15754
15568
|
},
|
|
15755
|
-
|
|
15756
15569
|
onFocus() {
|
|
15757
15570
|
this.$emit('onFocus');
|
|
15758
15571
|
},
|
|
15759
|
-
|
|
15760
15572
|
onBlur() {
|
|
15761
15573
|
this.$emit('onBlur');
|
|
15762
15574
|
}
|
|
15763
|
-
|
|
15764
15575
|
}
|
|
15765
15576
|
});
|
|
15766
15577
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputNumber.vue?vue&type=script&lang=js&
|
|
@@ -15785,11 +15596,10 @@ var ToggleInputNumber_component = normalizeComponent(
|
|
|
15785
15596
|
)
|
|
15786
15597
|
|
|
15787
15598
|
/* 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":"
|
|
15599
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
15600
|
var ToggleColourPickervue_type_template_id_ce1c3b3a_render = function render() {
|
|
15790
15601
|
var _vm = this,
|
|
15791
|
-
|
|
15792
|
-
|
|
15602
|
+
_c = _vm._self._c;
|
|
15793
15603
|
return _c('div', {
|
|
15794
15604
|
staticClass: "toggle-input-container",
|
|
15795
15605
|
class: {
|
|
@@ -15845,7 +15655,6 @@ var ToggleColourPickervue_type_template_id_ce1c3b3a_render = function render() {
|
|
|
15845
15655
|
}
|
|
15846
15656
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1)]);
|
|
15847
15657
|
};
|
|
15848
|
-
|
|
15849
15658
|
var ToggleColourPickervue_type_template_id_ce1c3b3a_staticRenderFns = [];
|
|
15850
15659
|
|
|
15851
15660
|
// CONCATENATED MODULE: ./src/components/forms/ToggleColourPicker.vue?vue&type=template&id=ce1c3b3a&
|
|
@@ -15928,7 +15737,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
|
|
|
15928
15737
|
this.$emit('input', val);
|
|
15929
15738
|
}
|
|
15930
15739
|
}
|
|
15931
|
-
|
|
15932
15740
|
},
|
|
15933
15741
|
mounted: function () {
|
|
15934
15742
|
this.setColor(this.value || '#000000');
|
|
@@ -15938,19 +15746,19 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
|
|
|
15938
15746
|
this.updateColors(color);
|
|
15939
15747
|
this.colorValue = color;
|
|
15940
15748
|
},
|
|
15941
|
-
|
|
15942
15749
|
setBorderColour(color, colorsRgba = '') {
|
|
15943
|
-
if (colorsRgba === '')
|
|
15750
|
+
if (colorsRgba === '')
|
|
15751
|
+
//if has only hex
|
|
15944
15752
|
{
|
|
15945
15753
|
let isWhite = color.charAt(1) === 'F' && color.charAt(2) != 'F' ? true : false;
|
|
15946
15754
|
this.borderColour = isWhite ? '#EAE8E8' : color;
|
|
15947
|
-
} else if (colorsRgba != '')
|
|
15755
|
+
} else if (colorsRgba != '')
|
|
15756
|
+
//if has rgba
|
|
15948
15757
|
{
|
|
15949
15758
|
let hasTransparency = parseFloat(colorsRgba.a) < 0.2 ? true : false;
|
|
15950
15759
|
this.borderColour = hasTransparency ? colorsRgba.hex : color;
|
|
15951
15760
|
}
|
|
15952
15761
|
},
|
|
15953
|
-
|
|
15954
15762
|
updateColors(color) {
|
|
15955
15763
|
if (color.slice(0, 1) == '#') {
|
|
15956
15764
|
this.colors = {
|
|
@@ -15959,7 +15767,7 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
|
|
|
15959
15767
|
this.setBorderColour(color);
|
|
15960
15768
|
} else if (color.slice(0, 4) == 'rgba') {
|
|
15961
15769
|
var rgba = color.replace(/^rgba?\(|\s+|\)$/g, '').split(','),
|
|
15962
|
-
|
|
15770
|
+
hex = '#' + ((1 << 24) + (parseInt(rgba[0]) << 16) + (parseInt(rgba[1]) << 8) + parseInt(rgba[2])).toString(16).slice(1);
|
|
15963
15771
|
this.colors = {
|
|
15964
15772
|
hex: hex,
|
|
15965
15773
|
a: rgba[3]
|
|
@@ -15967,44 +15775,35 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
|
|
|
15967
15775
|
this.setBorderColour(color, this.colors);
|
|
15968
15776
|
}
|
|
15969
15777
|
},
|
|
15970
|
-
|
|
15971
15778
|
updateFromInput() {
|
|
15972
15779
|
this.updateColors(this.colorValue);
|
|
15973
15780
|
},
|
|
15974
|
-
|
|
15975
15781
|
showPicker() {
|
|
15976
15782
|
this.displayPicker = true;
|
|
15977
15783
|
document.addEventListener('click', this.documentClick);
|
|
15978
15784
|
},
|
|
15979
|
-
|
|
15980
15785
|
hidePicker() {
|
|
15981
15786
|
this.displayPicker = false;
|
|
15982
15787
|
document.removeEventListener('click', this.documentClick);
|
|
15983
15788
|
},
|
|
15984
|
-
|
|
15985
15789
|
togglePicker() {
|
|
15986
15790
|
this.displayPicker ? this.hidePicker() : this.showPicker();
|
|
15987
15791
|
},
|
|
15988
|
-
|
|
15989
15792
|
documentClick(e) {
|
|
15990
15793
|
var el = this.$refs.colorpicker,
|
|
15991
|
-
|
|
15992
|
-
|
|
15794
|
+
target = e.target;
|
|
15993
15795
|
if (el !== target && !el.contains(target)) {
|
|
15994
15796
|
this.hidePicker();
|
|
15995
15797
|
}
|
|
15996
15798
|
},
|
|
15997
|
-
|
|
15998
15799
|
updateFromPicker(color) {
|
|
15999
15800
|
this.colors = color;
|
|
16000
|
-
|
|
16001
15801
|
if (color.rgba.a == 1) {
|
|
16002
15802
|
this.colorValue = color.hex;
|
|
16003
15803
|
} else {
|
|
16004
15804
|
this.colorValue = 'rgba(' + color.rgba.r + ', ' + color.rgba.g + ', ' + color.rgba.b + ', ' + color.rgba.a + ')';
|
|
16005
15805
|
}
|
|
16006
15806
|
}
|
|
16007
|
-
|
|
16008
15807
|
}
|
|
16009
15808
|
});
|
|
16010
15809
|
// CONCATENATED MODULE: ./src/components/forms/ToggleColourPicker.vue?vue&type=script&lang=js&
|
|
@@ -16029,11 +15828,10 @@ var ToggleColourPicker_component = normalizeComponent(
|
|
|
16029
15828
|
)
|
|
16030
15829
|
|
|
16031
15830
|
/* 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":"
|
|
15831
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
15832
|
var ToggleInputSearchvue_type_template_id_76f40c51_render = function render() {
|
|
16034
15833
|
var _vm = this,
|
|
16035
|
-
|
|
16036
|
-
|
|
15834
|
+
_c = _vm._self._c;
|
|
16037
15835
|
return _c('div', {
|
|
16038
15836
|
ref: "toggle-input-search",
|
|
16039
15837
|
staticClass: "toggle-input-container",
|
|
@@ -16074,13 +15872,11 @@ var ToggleInputSearchvue_type_template_id_76f40c51_render = function render() {
|
|
|
16074
15872
|
on: {
|
|
16075
15873
|
"change": function ($event) {
|
|
16076
15874
|
var $$a = _vm.searchModel,
|
|
16077
|
-
|
|
16078
|
-
|
|
16079
|
-
|
|
15875
|
+
$$el = $event.target,
|
|
15876
|
+
$$c = $$el.checked ? true : false;
|
|
16080
15877
|
if (Array.isArray($$a)) {
|
|
16081
15878
|
var $$v = null,
|
|
16082
|
-
|
|
16083
|
-
|
|
15879
|
+
$$i = _vm._i($$a, $$v);
|
|
16084
15880
|
if ($$el.checked) {
|
|
16085
15881
|
$$i < 0 && (_vm.searchModel = $$a.concat([$$v]));
|
|
16086
15882
|
} else {
|
|
@@ -16173,7 +15969,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_render = function render() {
|
|
|
16173
15969
|
}
|
|
16174
15970
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
16175
15971
|
};
|
|
16176
|
-
|
|
16177
15972
|
var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
16178
15973
|
|
|
16179
15974
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputSearch.vue?vue&type=template&id=76f40c51&
|
|
@@ -16181,7 +15976,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16181
15976
|
// 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
15977
|
|
|
16183
15978
|
|
|
16184
|
-
|
|
16185
15979
|
/* harmony default export */ var ToggleInputSearchvue_type_script_lang_js_ = ({
|
|
16186
15980
|
mixins: [mixins],
|
|
16187
15981
|
props: {
|
|
@@ -16243,11 +16037,9 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16243
16037
|
created: function () {
|
|
16244
16038
|
window.addEventListener('click', this.windowClick, true);
|
|
16245
16039
|
},
|
|
16246
|
-
|
|
16247
16040
|
beforeDestroy() {
|
|
16248
16041
|
window.removeEventListener('click', this.windowClick, true);
|
|
16249
16042
|
},
|
|
16250
|
-
|
|
16251
16043
|
components: {
|
|
16252
16044
|
ToggleButton: ToggleButton
|
|
16253
16045
|
},
|
|
@@ -16266,17 +16058,14 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16266
16058
|
return this.savedSearchModel = value;
|
|
16267
16059
|
}
|
|
16268
16060
|
},
|
|
16269
|
-
|
|
16270
16061
|
// should the add option show?
|
|
16271
16062
|
showAddButton() {
|
|
16272
16063
|
return (!this.filteredOptions.length || !this.exactMatch) && this.allowAddValue && this.searchModel;
|
|
16273
16064
|
},
|
|
16274
|
-
|
|
16275
16065
|
// should options dropdown show?
|
|
16276
16066
|
showOptions() {
|
|
16277
16067
|
return !this.disabled && this.inputFocussed && (this.searchModel && (this.value == null || this.searchModel != this.value.label) || !this.searchModel);
|
|
16278
16068
|
},
|
|
16279
|
-
|
|
16280
16069
|
/*
|
|
16281
16070
|
* does the search query exactly match an option?
|
|
16282
16071
|
* returns bool
|
|
@@ -16284,7 +16073,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16284
16073
|
exactMatch() {
|
|
16285
16074
|
return this.options.filter(option => option.label.toLowerCase() == this.searchModel.toLowerCase()).length != 0;
|
|
16286
16075
|
},
|
|
16287
|
-
|
|
16288
16076
|
/*
|
|
16289
16077
|
* Returns options that contain the search query
|
|
16290
16078
|
* returns array
|
|
@@ -16292,7 +16080,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16292
16080
|
filteredOptions() {
|
|
16293
16081
|
return this.options.filter(option => option.label.toLowerCase().includes(this.searchModel.toLowerCase()));
|
|
16294
16082
|
},
|
|
16295
|
-
|
|
16296
16083
|
// the input model
|
|
16297
16084
|
inputVal: {
|
|
16298
16085
|
get: function () {
|
|
@@ -16309,7 +16096,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16309
16096
|
this.searchModel = option.label;
|
|
16310
16097
|
this.inputVal = option;
|
|
16311
16098
|
},
|
|
16312
|
-
|
|
16313
16099
|
// add option to options list
|
|
16314
16100
|
addOption(option) {
|
|
16315
16101
|
this.searchModel = option;
|
|
@@ -16318,7 +16104,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16318
16104
|
label: option
|
|
16319
16105
|
};
|
|
16320
16106
|
},
|
|
16321
|
-
|
|
16322
16107
|
/*
|
|
16323
16108
|
* Concat message for count characters
|
|
16324
16109
|
* @return string
|
|
@@ -16327,17 +16112,14 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16327
16112
|
let mcount = count ? count.length : 0;
|
|
16328
16113
|
return mcount + ' / ' + maxLenght;
|
|
16329
16114
|
},
|
|
16330
|
-
|
|
16331
16115
|
windowClick(e) {
|
|
16332
16116
|
var element = this.$refs["toggle-input-search"];
|
|
16333
|
-
|
|
16334
16117
|
if (e.target !== element && !element.contains(e.target)) {
|
|
16335
16118
|
this.inputFocussed = false;
|
|
16336
16119
|
} else {
|
|
16337
16120
|
this.inputFocussed = true;
|
|
16338
16121
|
}
|
|
16339
16122
|
}
|
|
16340
|
-
|
|
16341
16123
|
}
|
|
16342
16124
|
});
|
|
16343
16125
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputSearch.vue?vue&type=script&lang=js&
|
|
@@ -16362,11 +16144,10 @@ var ToggleInputSearch_component = normalizeComponent(
|
|
|
16362
16144
|
)
|
|
16363
16145
|
|
|
16364
16146
|
/* 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":"
|
|
16147
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
16148
|
var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_render = function render() {
|
|
16367
16149
|
var _vm = this,
|
|
16368
|
-
|
|
16369
|
-
|
|
16150
|
+
_c = _vm._self._c;
|
|
16370
16151
|
return _c('div', {
|
|
16371
16152
|
staticClass: "toggle-input-container margin-bottom-0",
|
|
16372
16153
|
class: {
|
|
@@ -16390,7 +16171,6 @@ var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_render = function r
|
|
|
16390
16171
|
}
|
|
16391
16172
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 2)]);
|
|
16392
16173
|
};
|
|
16393
|
-
|
|
16394
16174
|
var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_staticRenderFns = [];
|
|
16395
16175
|
|
|
16396
16176
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtonGroup.vue?vue&type=template&id=35e8cd10&
|
|
@@ -16427,11 +16207,9 @@ var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_staticRenderFns = [
|
|
|
16427
16207
|
onFocus() {
|
|
16428
16208
|
this.$emit('onFocus');
|
|
16429
16209
|
},
|
|
16430
|
-
|
|
16431
16210
|
onBlur() {
|
|
16432
16211
|
this.$emit('onBlur');
|
|
16433
16212
|
}
|
|
16434
|
-
|
|
16435
16213
|
}
|
|
16436
16214
|
});
|
|
16437
16215
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtonGroup.vue?vue&type=script&lang=js&
|
|
@@ -16456,11 +16234,10 @@ var ToggleInputRadioButtonGroup_component = normalizeComponent(
|
|
|
16456
16234
|
)
|
|
16457
16235
|
|
|
16458
16236
|
/* 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":"
|
|
16237
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
16238
|
var ToggleTablevue_type_template_id_841ba81c_render = function render() {
|
|
16461
16239
|
var _vm = this,
|
|
16462
|
-
|
|
16463
|
-
|
|
16240
|
+
_c = _vm._self._c;
|
|
16464
16241
|
return _c('div', [_c('table', {
|
|
16465
16242
|
staticClass: "toggle-table"
|
|
16466
16243
|
}, [_c('thead', {
|
|
@@ -16571,16 +16348,14 @@ var ToggleTablevue_type_template_id_841ba81c_render = function render() {
|
|
|
16571
16348
|
}
|
|
16572
16349
|
}) : _vm._e()], 1);
|
|
16573
16350
|
};
|
|
16574
|
-
|
|
16575
16351
|
var ToggleTablevue_type_template_id_841ba81c_staticRenderFns = [];
|
|
16576
16352
|
|
|
16577
16353
|
// CONCATENATED MODULE: ./src/components/tables/ToggleTable.vue?vue&type=template&id=841ba81c&
|
|
16578
16354
|
|
|
16579
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16355
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
16356
|
var ToggleTableRowvue_type_template_id_bab4fd8c_render = function render() {
|
|
16581
16357
|
var _vm = this,
|
|
16582
|
-
|
|
16583
|
-
|
|
16358
|
+
_c = _vm._self._c;
|
|
16584
16359
|
return _c('tr', {
|
|
16585
16360
|
staticClass: "toggle-tablee-tr",
|
|
16586
16361
|
on: {
|
|
@@ -16590,7 +16365,6 @@ var ToggleTableRowvue_type_template_id_bab4fd8c_render = function render() {
|
|
|
16590
16365
|
}
|
|
16591
16366
|
}, [_vm._t("default")], 2);
|
|
16592
16367
|
};
|
|
16593
|
-
|
|
16594
16368
|
var ToggleTableRowvue_type_template_id_bab4fd8c_staticRenderFns = [];
|
|
16595
16369
|
|
|
16596
16370
|
// CONCATENATED MODULE: ./src/components/tables/ToggleTableRow.vue?vue&type=template&id=bab4fd8c&
|
|
@@ -16614,16 +16388,14 @@ var ToggleTableRow_component = normalizeComponent(
|
|
|
16614
16388
|
)
|
|
16615
16389
|
|
|
16616
16390
|
/* 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":"
|
|
16391
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
16392
|
var ToggleTableColumnvue_type_template_id_6de6ba9d_render = function render() {
|
|
16619
16393
|
var _vm = this,
|
|
16620
|
-
|
|
16621
|
-
|
|
16394
|
+
_c = _vm._self._c;
|
|
16622
16395
|
return _c('td', {
|
|
16623
16396
|
staticClass: "toggle-tablee-td"
|
|
16624
16397
|
}, [_vm._t("default")], 2);
|
|
16625
16398
|
};
|
|
16626
|
-
|
|
16627
16399
|
var ToggleTableColumnvue_type_template_id_6de6ba9d_staticRenderFns = [];
|
|
16628
16400
|
|
|
16629
16401
|
// CONCATENATED MODULE: ./src/components/tables/ToggleTableColumn.vue?vue&type=template&id=6de6ba9d&
|
|
@@ -16647,11 +16419,10 @@ var ToggleTableColumn_component = normalizeComponent(
|
|
|
16647
16419
|
)
|
|
16648
16420
|
|
|
16649
16421
|
/* 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":"
|
|
16422
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
16423
|
var TogglePaginationvue_type_template_id_36fed3cc_render = function render() {
|
|
16652
16424
|
var _vm = this,
|
|
16653
|
-
|
|
16654
|
-
|
|
16425
|
+
_c = _vm._self._c;
|
|
16655
16426
|
return _c('div', {
|
|
16656
16427
|
staticClass: "toggle-pagination"
|
|
16657
16428
|
}, [_c('ul', [_c('li', [_c('button', {
|
|
@@ -16689,7 +16460,6 @@ var TogglePaginationvue_type_template_id_36fed3cc_render = function render() {
|
|
|
16689
16460
|
}
|
|
16690
16461
|
}, [_vm._v(" Next ")])])], 2)]);
|
|
16691
16462
|
};
|
|
16692
|
-
|
|
16693
16463
|
var TogglePaginationvue_type_template_id_36fed3cc_staticRenderFns = [];
|
|
16694
16464
|
|
|
16695
16465
|
// CONCATENATED MODULE: ./src/components/tables/TogglePagination.vue?vue&type=template&id=36fed3cc&
|
|
@@ -16702,9 +16472,9 @@ var TogglePaginationvue_type_template_id_36fed3cc_staticRenderFns = [];
|
|
|
16702
16472
|
data: function () {
|
|
16703
16473
|
return {
|
|
16704
16474
|
maxPaginationPages: 6 // number of pagination numbers on a page
|
|
16705
|
-
|
|
16706
16475
|
};
|
|
16707
16476
|
},
|
|
16477
|
+
|
|
16708
16478
|
computed: {
|
|
16709
16479
|
pageNumber: {
|
|
16710
16480
|
get: function () {
|
|
@@ -16714,41 +16484,40 @@ var TogglePaginationvue_type_template_id_36fed3cc_staticRenderFns = [];
|
|
|
16714
16484
|
this.$emit('input', newVal);
|
|
16715
16485
|
}
|
|
16716
16486
|
},
|
|
16717
|
-
|
|
16718
16487
|
/* Page Count
|
|
16719
16488
|
* Calculate how many pages the orders object have.
|
|
16720
16489
|
* @return number of pages
|
|
16721
16490
|
*/
|
|
16722
16491
|
pageCount() {
|
|
16723
16492
|
let l = this.total,
|
|
16724
|
-
|
|
16493
|
+
s = this.per_page;
|
|
16725
16494
|
return Math.ceil(l / s) ? Math.ceil(l / s) : 0;
|
|
16726
16495
|
},
|
|
16727
|
-
|
|
16728
16496
|
/* returns the numbers shown in the validation
|
|
16729
16497
|
*/
|
|
16498
|
+
|
|
16730
16499
|
pagiPages() {
|
|
16731
16500
|
var startarray = [];
|
|
16732
|
-
var endarray = [];
|
|
16501
|
+
var endarray = [];
|
|
16733
16502
|
|
|
16503
|
+
// show all pages
|
|
16734
16504
|
if (this.pageCount <= this.maxPaginationPages) {
|
|
16735
16505
|
while (startarray.length < this.maxPaginationPages && startarray.length < this.pageCount) startarray.push(startarray.length + 1);
|
|
16736
16506
|
} else {
|
|
16737
16507
|
// if there are too many pages, we need to remove some options
|
|
16738
16508
|
// 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
|
|
16509
|
+
while (startarray.length < this.maxPaginationPages / 2 - 1) startarray.push(startarray.length + 1);
|
|
16743
16510
|
|
|
16511
|
+
// create the last pages
|
|
16512
|
+
while (startarray.length + endarray.length + 1 <= this.maxPaginationPages) endarray.push(this.pageCount - this.maxPaginationPages + 1 + (startarray.length + endarray.length));
|
|
16744
16513
|
|
|
16514
|
+
// add the current page to the array, if it doesn't exist
|
|
16745
16515
|
if (!(startarray.includes(this.pageNumber) || endarray.includes(this.pageNumber))) startarray.push(this.pageNumber);
|
|
16746
|
-
}
|
|
16747
|
-
|
|
16516
|
+
}
|
|
16748
16517
|
|
|
16518
|
+
// merge the two arrays into one
|
|
16749
16519
|
return startarray.concat(endarray);
|
|
16750
16520
|
}
|
|
16751
|
-
|
|
16752
16521
|
}
|
|
16753
16522
|
});
|
|
16754
16523
|
// CONCATENATED MODULE: ./src/components/tables/TogglePagination.vue?vue&type=script&lang=js&
|
|
@@ -16821,7 +16590,6 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16821
16590
|
search_value: this.searchModels[field.key]
|
|
16822
16591
|
}));
|
|
16823
16592
|
},
|
|
16824
|
-
|
|
16825
16593
|
pagenumber: {
|
|
16826
16594
|
get: function () {
|
|
16827
16595
|
return this.page;
|
|
@@ -16830,31 +16598,24 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16830
16598
|
this.$emit('page_change', newVal);
|
|
16831
16599
|
}
|
|
16832
16600
|
},
|
|
16833
|
-
|
|
16834
16601
|
headers() {
|
|
16835
16602
|
if (!this.fields) {
|
|
16836
16603
|
return Object.keys(this.items[0]);
|
|
16837
16604
|
}
|
|
16838
|
-
|
|
16839
16605
|
return this.fields;
|
|
16840
16606
|
},
|
|
16841
|
-
|
|
16842
16607
|
searchActive() {
|
|
16843
16608
|
if (this.editingInput) {
|
|
16844
16609
|
return true;
|
|
16845
16610
|
}
|
|
16846
|
-
|
|
16847
16611
|
for (let col in this.searchModels) {
|
|
16848
16612
|
if (!this.searchModels[col]) return false;
|
|
16849
|
-
|
|
16850
16613
|
if (this.searchModels[col].start !== undefined) {
|
|
16851
16614
|
return true;
|
|
16852
16615
|
} else if (this.searchModels[col]) return true;
|
|
16853
16616
|
}
|
|
16854
|
-
|
|
16855
16617
|
return false;
|
|
16856
16618
|
}
|
|
16857
|
-
|
|
16858
16619
|
},
|
|
16859
16620
|
created: function () {
|
|
16860
16621
|
if (this.fields) {
|
|
@@ -16862,15 +16623,14 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16862
16623
|
let value = this.fields[i].type == 'date' ? this.setInitialDate(i) : this.fields[i].value;
|
|
16863
16624
|
let field_name = this.fields[i].key;
|
|
16864
16625
|
this.$set(this.searchModels, field_name, value);
|
|
16865
|
-
|
|
16866
16626
|
if (value) {
|
|
16867
16627
|
// if date has an initial value set, show it.
|
|
16868
16628
|
if (typeof value.start !== 'undefined') {
|
|
16869
16629
|
if (value.start.length) this.activateSearch(this.fields[i]);
|
|
16870
|
-
}
|
|
16630
|
+
}
|
|
16631
|
+
// show the other fields with initial values set.
|
|
16871
16632
|
else this.activateSearch(this.fields[i]);
|
|
16872
16633
|
}
|
|
16873
|
-
|
|
16874
16634
|
this.searchChange();
|
|
16875
16635
|
}
|
|
16876
16636
|
}
|
|
@@ -16891,15 +16651,12 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16891
16651
|
end: false
|
|
16892
16652
|
};
|
|
16893
16653
|
},
|
|
16894
|
-
|
|
16895
16654
|
tableSearchActive(field) {
|
|
16896
16655
|
if (field.type == 'date') {
|
|
16897
16656
|
return this.searchModels[field.key].start || this.searchModels[field.key].end || this.editingInput == field.key;
|
|
16898
16657
|
}
|
|
16899
|
-
|
|
16900
16658
|
return this.searchModels[field.key] || this.editingInput == field.key;
|
|
16901
16659
|
},
|
|
16902
|
-
|
|
16903
16660
|
closeSearch(field) {
|
|
16904
16661
|
this.editingInput = false;
|
|
16905
16662
|
this.searchModels[field.key] = field.type == 'date' ? {
|
|
@@ -16908,24 +16665,20 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16908
16665
|
} : '';
|
|
16909
16666
|
this.searchChange();
|
|
16910
16667
|
},
|
|
16911
|
-
|
|
16912
16668
|
searchChange() {
|
|
16913
16669
|
this.$emit('search', this.fieldsWithSearch);
|
|
16914
16670
|
},
|
|
16915
|
-
|
|
16916
16671
|
/* activateSearch
|
|
16917
16672
|
* When a user clicks a searchable column name, show it as active, and focus the child input field (unless it's already active)
|
|
16918
16673
|
*/
|
|
16919
16674
|
activateSearch(field) {
|
|
16920
16675
|
if (!field.filterable) return;
|
|
16921
|
-
|
|
16922
16676
|
if (field.type === 'date') {
|
|
16923
16677
|
this.datePickerOpen = true;
|
|
16924
16678
|
}
|
|
16925
|
-
|
|
16926
|
-
|
|
16679
|
+
this.editingInput = field.key;
|
|
16680
|
+
//this.$nextTick(() => this.$refs[this.editingInput + '-input'].focus())
|
|
16927
16681
|
}
|
|
16928
|
-
|
|
16929
16682
|
}
|
|
16930
16683
|
});
|
|
16931
16684
|
// CONCATENATED MODULE: ./src/components/tables/ToggleTable.vue?vue&type=script&lang=js&
|
|
@@ -16950,16 +16703,14 @@ var ToggleTable_component = normalizeComponent(
|
|
|
16950
16703
|
)
|
|
16951
16704
|
|
|
16952
16705
|
/* 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":"
|
|
16706
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
16707
|
var ToggleBadgevue_type_template_id_7aacd399_render = function render() {
|
|
16955
16708
|
var _vm = this,
|
|
16956
|
-
|
|
16957
|
-
|
|
16709
|
+
_c = _vm._self._c;
|
|
16958
16710
|
return _c('span', {
|
|
16959
16711
|
class: ['toggle-badge', _vm.badgeStyle]
|
|
16960
16712
|
}, [_vm._t("default")], 2);
|
|
16961
16713
|
};
|
|
16962
|
-
|
|
16963
16714
|
var ToggleBadgevue_type_template_id_7aacd399_staticRenderFns = [];
|
|
16964
16715
|
|
|
16965
16716
|
// CONCATENATED MODULE: ./src/components/badges/ToggleBadge.vue?vue&type=template&id=7aacd399&
|
|
@@ -17001,11 +16752,10 @@ var ToggleBadge_component = normalizeComponent(
|
|
|
17001
16752
|
)
|
|
17002
16753
|
|
|
17003
16754
|
/* 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":"
|
|
16755
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
16756
|
var ToggleBreadCrumbvue_type_template_id_b829739a_render = function render() {
|
|
17006
16757
|
var _vm = this,
|
|
17007
|
-
|
|
17008
|
-
|
|
16758
|
+
_c = _vm._self._c;
|
|
17009
16759
|
return _vm.breadcrumb_computed ? _c('div', {
|
|
17010
16760
|
staticClass: "toggle-breadcrumb"
|
|
17011
16761
|
}, _vm._l(_vm.breadcrumb_computed, function (crumb, index) {
|
|
@@ -17032,7 +16782,6 @@ var ToggleBreadCrumbvue_type_template_id_b829739a_render = function render() {
|
|
|
17032
16782
|
}, [_vm._v(_vm._s(crumb.name))]) : _vm._e()], 1);
|
|
17033
16783
|
}), 0) : _vm._e();
|
|
17034
16784
|
};
|
|
17035
|
-
|
|
17036
16785
|
var ToggleBreadCrumbvue_type_template_id_b829739a_staticRenderFns = [];
|
|
17037
16786
|
|
|
17038
16787
|
// CONCATENATED MODULE: ./src/components/breadcrumb/ToggleBreadCrumb.vue?vue&type=template&id=b829739a&
|
|
@@ -17057,7 +16806,6 @@ var ToggleBreadCrumbvue_type_template_id_b829739a_staticRenderFns = [];
|
|
|
17057
16806
|
breadcrumb_computed() {
|
|
17058
16807
|
return this.isNuxt ? this.breadcrumb : this.$route.meta.breadcrumb;
|
|
17059
16808
|
}
|
|
17060
|
-
|
|
17061
16809
|
}
|
|
17062
16810
|
});
|
|
17063
16811
|
// CONCATENATED MODULE: ./src/components/breadcrumb/ToggleBreadCrumb.vue?vue&type=script&lang=js&
|
|
@@ -17082,11 +16830,10 @@ var ToggleBreadCrumb_component = normalizeComponent(
|
|
|
17082
16830
|
)
|
|
17083
16831
|
|
|
17084
16832
|
/* 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":"
|
|
16833
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
16834
|
var ToggleSideNavItemvue_type_template_id_35f39f46_render = function render() {
|
|
17087
16835
|
var _vm = this,
|
|
17088
|
-
|
|
17089
|
-
|
|
16836
|
+
_c = _vm._self._c;
|
|
17090
16837
|
return _c('li', {
|
|
17091
16838
|
class: ['toggle-sidenav-item', _vm.icon, {
|
|
17092
16839
|
'active': _vm.active,
|
|
@@ -17094,7 +16841,6 @@ var ToggleSideNavItemvue_type_template_id_35f39f46_render = function render() {
|
|
|
17094
16841
|
}]
|
|
17095
16842
|
}, [_vm._t("item"), _vm._t("sub-nav")], 2);
|
|
17096
16843
|
};
|
|
17097
|
-
|
|
17098
16844
|
var ToggleSideNavItemvue_type_template_id_35f39f46_staticRenderFns = [];
|
|
17099
16845
|
|
|
17100
16846
|
// CONCATENATED MODULE: ./src/components/navs/sidenav/ToggleSideNavItem.vue?vue&type=template&id=35f39f46&
|
|
@@ -17110,7 +16856,6 @@ var ToggleSideNavItemvue_type_template_id_35f39f46_staticRenderFns = [];
|
|
|
17110
16856
|
type: Boolean,
|
|
17111
16857
|
default: false
|
|
17112
16858
|
},
|
|
17113
|
-
|
|
17114
16859
|
/**
|
|
17115
16860
|
* Icon to use `toggle-graph-icon`, `toggle-orders-icon`, `toggle-card-icon`, `toggle-megaphone-icon`, `toggle-form-icon`
|
|
17116
16861
|
*/
|
|
@@ -17141,11 +16886,10 @@ var ToggleSideNavItem_component = normalizeComponent(
|
|
|
17141
16886
|
)
|
|
17142
16887
|
|
|
17143
16888
|
/* 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":"
|
|
16889
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
16890
|
var ToggleSideNavvue_type_template_id_63256d5d_render = function render() {
|
|
17146
16891
|
var _vm = this,
|
|
17147
|
-
|
|
17148
|
-
|
|
16892
|
+
_c = _vm._self._c;
|
|
17149
16893
|
return _c('nav', {
|
|
17150
16894
|
staticClass: "toggle-sidenav-container"
|
|
17151
16895
|
}, [_c('img', {
|
|
@@ -17160,7 +16904,6 @@ var ToggleSideNavvue_type_template_id_63256d5d_render = function render() {
|
|
|
17160
16904
|
staticClass: "toggle-sidenav-ul"
|
|
17161
16905
|
}, [_vm._t("default")], 2)], 1);
|
|
17162
16906
|
};
|
|
17163
|
-
|
|
17164
16907
|
var ToggleSideNavvue_type_template_id_63256d5d_staticRenderFns = [];
|
|
17165
16908
|
|
|
17166
16909
|
// CONCATENATED MODULE: ./src/components/navs/sidenav/ToggleSideNav.vue?vue&type=template&id=63256d5d&
|
|
@@ -17177,7 +16920,6 @@ var ToggleSideNavvue_type_template_id_63256d5d_staticRenderFns = [];
|
|
|
17177
16920
|
type: Object,
|
|
17178
16921
|
required: true
|
|
17179
16922
|
},
|
|
17180
|
-
|
|
17181
16923
|
/**
|
|
17182
16924
|
* The main title, displayed below logo
|
|
17183
16925
|
*/
|
|
@@ -17212,16 +16954,14 @@ var ToggleSideNav_component = normalizeComponent(
|
|
|
17212
16954
|
)
|
|
17213
16955
|
|
|
17214
16956
|
/* 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":"
|
|
16957
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
16958
|
var ToggleSideSubNavvue_type_template_id_78a7c4f0_render = function render() {
|
|
17217
16959
|
var _vm = this,
|
|
17218
|
-
|
|
17219
|
-
|
|
16960
|
+
_c = _vm._self._c;
|
|
17220
16961
|
return _vm.expanded ? _c('ul', {
|
|
17221
16962
|
staticClass: "toggle-sidenav-sub-ul"
|
|
17222
16963
|
}, [_vm._t("default")], 2) : _vm._e();
|
|
17223
16964
|
};
|
|
17224
|
-
|
|
17225
16965
|
var ToggleSideSubNavvue_type_template_id_78a7c4f0_staticRenderFns = [];
|
|
17226
16966
|
|
|
17227
16967
|
// CONCATENATED MODULE: ./src/components/navs/sidenav/ToggleSideSubNav.vue?vue&type=template&id=78a7c4f0&
|
|
@@ -17261,11 +17001,10 @@ var ToggleSideSubNav_component = normalizeComponent(
|
|
|
17261
17001
|
)
|
|
17262
17002
|
|
|
17263
17003
|
/* 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":"
|
|
17004
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
17005
|
var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_render = function render() {
|
|
17266
17006
|
var _vm = this,
|
|
17267
|
-
|
|
17268
|
-
|
|
17007
|
+
_c = _vm._self._c;
|
|
17269
17008
|
return _c('nav', {
|
|
17270
17009
|
staticClass: "toggle-multi-tier-sidenav-container"
|
|
17271
17010
|
}, [_c('img', {
|
|
@@ -17315,7 +17054,6 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_render = function render
|
|
|
17315
17054
|
}
|
|
17316
17055
|
})], 1);
|
|
17317
17056
|
};
|
|
17318
|
-
|
|
17319
17057
|
var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
|
|
17320
17058
|
|
|
17321
17059
|
// CONCATENATED MODULE: ./src/components/navs/multitiersidenav/ToggleMultiTierSideNav.vue?vue&type=template&id=4850f9eb&
|
|
@@ -17325,16 +17063,13 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
|
|
|
17325
17063
|
|
|
17326
17064
|
/* harmony default export */ var ToggleMultiTierSideNavvue_type_script_lang_js_ = ({
|
|
17327
17065
|
name: 'ToggleMultiTierSideNav',
|
|
17328
|
-
|
|
17329
17066
|
data() {
|
|
17330
17067
|
return {
|
|
17331
17068
|
userMenuOpen: false
|
|
17332
17069
|
};
|
|
17333
17070
|
},
|
|
17334
|
-
|
|
17335
17071
|
props: {
|
|
17336
17072
|
value: {},
|
|
17337
|
-
|
|
17338
17073
|
/**
|
|
17339
17074
|
* For the logo that is displayed at the top of the nav
|
|
17340
17075
|
*/
|
|
@@ -17342,7 +17077,6 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
|
|
|
17342
17077
|
type: Object,
|
|
17343
17078
|
required: true
|
|
17344
17079
|
},
|
|
17345
|
-
|
|
17346
17080
|
/**
|
|
17347
17081
|
* The main title, displayed below logo
|
|
17348
17082
|
*/
|
|
@@ -17350,7 +17084,6 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
|
|
|
17350
17084
|
type: String,
|
|
17351
17085
|
default: 'Airship'
|
|
17352
17086
|
},
|
|
17353
|
-
|
|
17354
17087
|
/**
|
|
17355
17088
|
* Name of the user, displayed in the user menu
|
|
17356
17089
|
*/
|
|
@@ -17400,11 +17133,10 @@ var ToggleMultiTierSideNav_component = normalizeComponent(
|
|
|
17400
17133
|
)
|
|
17401
17134
|
|
|
17402
17135
|
/* 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":"
|
|
17136
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
17137
|
var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_render = function render() {
|
|
17405
17138
|
var _vm = this,
|
|
17406
|
-
|
|
17407
|
-
|
|
17139
|
+
_c = _vm._self._c;
|
|
17408
17140
|
return _c('li', {
|
|
17409
17141
|
class: ['toggle-multi-tier-sidenav-item', _vm.icon, {
|
|
17410
17142
|
'active': _vm.active,
|
|
@@ -17413,7 +17145,6 @@ var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_render = function re
|
|
|
17413
17145
|
}]
|
|
17414
17146
|
}, [_vm._t("item"), _vm._t("sub-nav")], 2);
|
|
17415
17147
|
};
|
|
17416
|
-
|
|
17417
17148
|
var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_staticRenderFns = [];
|
|
17418
17149
|
|
|
17419
17150
|
// CONCATENATED MODULE: ./src/components/navs/multitiersidenav/ToggleMultiTierSideNavItem.vue?vue&type=template&id=30f86f6f&
|
|
@@ -17429,14 +17160,12 @@ var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_staticRenderFns = []
|
|
|
17429
17160
|
type: Boolean,
|
|
17430
17161
|
default: false
|
|
17431
17162
|
},
|
|
17432
|
-
|
|
17433
17163
|
/**
|
|
17434
17164
|
* Icon to use `toggle-graph-icon`, `toggle-orders-icon`, `toggle-card-icon`, `toggle-megaphone-icon`, `toggle-form-icon`
|
|
17435
17165
|
*/
|
|
17436
17166
|
icon: {
|
|
17437
17167
|
type: String
|
|
17438
17168
|
},
|
|
17439
|
-
|
|
17440
17169
|
/**
|
|
17441
17170
|
* Set whether the arrow displays, e.g only for items with sub navs
|
|
17442
17171
|
*/
|
|
@@ -17468,11 +17197,10 @@ var ToggleMultiTierSideNavItem_component = normalizeComponent(
|
|
|
17468
17197
|
)
|
|
17469
17198
|
|
|
17470
17199
|
/* 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":"
|
|
17200
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
17201
|
var ToggleMultiTierSideSubNavvue_type_template_id_1dfe3f51_render = function render() {
|
|
17473
17202
|
var _vm = this,
|
|
17474
|
-
|
|
17475
|
-
|
|
17203
|
+
_c = _vm._self._c;
|
|
17476
17204
|
return _c('Transition', {
|
|
17477
17205
|
attrs: {
|
|
17478
17206
|
"name": "drop-down"
|
|
@@ -17481,7 +17209,6 @@ var ToggleMultiTierSideSubNavvue_type_template_id_1dfe3f51_render = function ren
|
|
|
17481
17209
|
staticClass: "toggle-multi-tier-sidenav-sub-ul"
|
|
17482
17210
|
}, [_vm._t("default")], 2) : _vm._e()]);
|
|
17483
17211
|
};
|
|
17484
|
-
|
|
17485
17212
|
var ToggleMultiTierSideSubNavvue_type_template_id_1dfe3f51_staticRenderFns = [];
|
|
17486
17213
|
|
|
17487
17214
|
// CONCATENATED MODULE: ./src/components/navs/multitiersidenav/ToggleMultiTierSideSubNav.vue?vue&type=template&id=1dfe3f51&
|
|
@@ -17521,11 +17248,10 @@ var ToggleMultiTierSideSubNav_component = normalizeComponent(
|
|
|
17521
17248
|
)
|
|
17522
17249
|
|
|
17523
17250
|
/* 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":"
|
|
17525
|
-
var
|
|
17251
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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=3854b888&
|
|
17252
|
+
var ToggleTextClipboardCopyvue_type_template_id_3854b888_render = function render() {
|
|
17526
17253
|
var _vm = this,
|
|
17527
|
-
|
|
17528
|
-
|
|
17254
|
+
_c = _vm._self._c;
|
|
17529
17255
|
return _c('div', {
|
|
17530
17256
|
staticClass: "toggle-copy-text"
|
|
17531
17257
|
}, [_c('p', {
|
|
@@ -17543,10 +17269,9 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_render = function rende
|
|
|
17543
17269
|
staticClass: "product-link-icon"
|
|
17544
17270
|
})])]);
|
|
17545
17271
|
};
|
|
17272
|
+
var ToggleTextClipboardCopyvue_type_template_id_3854b888_staticRenderFns = [];
|
|
17546
17273
|
|
|
17547
|
-
|
|
17548
|
-
|
|
17549
|
-
// CONCATENATED MODULE: ./src/components/text/ToggleTextClipboardCopy.vue?vue&type=template&id=478c65bc&
|
|
17274
|
+
// CONCATENATED MODULE: ./src/components/text/ToggleTextClipboardCopy.vue?vue&type=template&id=3854b888&
|
|
17550
17275
|
|
|
17551
17276
|
// 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/text/ToggleTextClipboardCopy.vue?vue&type=script&lang=js&
|
|
17552
17277
|
/* harmony default export */ var ToggleTextClipboardCopyvue_type_script_lang_js_ = ({
|
|
@@ -17556,14 +17281,12 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
|
|
|
17556
17281
|
type: String,
|
|
17557
17282
|
default: '15px'
|
|
17558
17283
|
},
|
|
17559
|
-
|
|
17560
17284
|
/**
|
|
17561
17285
|
* For the text you would like to display
|
|
17562
17286
|
*/
|
|
17563
17287
|
copy: {
|
|
17564
17288
|
type: String
|
|
17565
17289
|
},
|
|
17566
|
-
|
|
17567
17290
|
/**
|
|
17568
17291
|
* The string used in link
|
|
17569
17292
|
*/
|
|
@@ -17571,7 +17294,6 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
|
|
|
17571
17294
|
type: String,
|
|
17572
17295
|
required: true
|
|
17573
17296
|
},
|
|
17574
|
-
|
|
17575
17297
|
/**
|
|
17576
17298
|
* The url for the link
|
|
17577
17299
|
*/
|
|
@@ -17587,8 +17309,16 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
|
|
|
17587
17309
|
window.getSelection().removeAllRanges();
|
|
17588
17310
|
window.getSelection().addRange(range);
|
|
17589
17311
|
document.execCommand("copy");
|
|
17312
|
+
this.click();
|
|
17313
|
+
},
|
|
17314
|
+
click() {
|
|
17315
|
+
/**
|
|
17316
|
+
* Emitted when the button is clicked.
|
|
17317
|
+
* @event click
|
|
17318
|
+
* @type {Event}
|
|
17319
|
+
*/
|
|
17320
|
+
this.$emit('click');
|
|
17590
17321
|
}
|
|
17591
|
-
|
|
17592
17322
|
}
|
|
17593
17323
|
});
|
|
17594
17324
|
// CONCATENATED MODULE: ./src/components/text/ToggleTextClipboardCopy.vue?vue&type=script&lang=js&
|
|
@@ -17603,8 +17333,8 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
|
|
|
17603
17333
|
|
|
17604
17334
|
var ToggleTextClipboardCopy_component = normalizeComponent(
|
|
17605
17335
|
text_ToggleTextClipboardCopyvue_type_script_lang_js_,
|
|
17606
|
-
|
|
17607
|
-
|
|
17336
|
+
ToggleTextClipboardCopyvue_type_template_id_3854b888_render,
|
|
17337
|
+
ToggleTextClipboardCopyvue_type_template_id_3854b888_staticRenderFns,
|
|
17608
17338
|
false,
|
|
17609
17339
|
null,
|
|
17610
17340
|
null,
|
|
@@ -17613,22 +17343,19 @@ var ToggleTextClipboardCopy_component = normalizeComponent(
|
|
|
17613
17343
|
)
|
|
17614
17344
|
|
|
17615
17345
|
/* 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":"
|
|
17346
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
17347
|
var ToggleLineBreakvue_type_template_id_5db9229a_render = function render() {
|
|
17618
17348
|
var _vm = this,
|
|
17619
|
-
|
|
17620
|
-
|
|
17349
|
+
_c = _vm._self._c;
|
|
17621
17350
|
return _c('hr', {
|
|
17622
17351
|
class: _vm.classes
|
|
17623
17352
|
});
|
|
17624
17353
|
};
|
|
17625
|
-
|
|
17626
17354
|
var ToggleLineBreakvue_type_template_id_5db9229a_staticRenderFns = [];
|
|
17627
17355
|
|
|
17628
17356
|
// CONCATENATED MODULE: ./src/components/elements/ToggleLineBreak.vue?vue&type=template&id=5db9229a&
|
|
17629
17357
|
|
|
17630
17358
|
// 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
17359
|
/* harmony default export */ var ToggleLineBreakvue_type_script_lang_js_ = ({
|
|
17633
17360
|
name: "LineBreak",
|
|
17634
17361
|
props: {
|
|
@@ -17645,7 +17372,6 @@ var ToggleLineBreakvue_type_template_id_5db9229a_staticRenderFns = [];
|
|
|
17645
17372
|
'toggle-line-break-grey': this.colour == 'grey'
|
|
17646
17373
|
};
|
|
17647
17374
|
}
|
|
17648
|
-
|
|
17649
17375
|
}
|
|
17650
17376
|
});
|
|
17651
17377
|
// CONCATENATED MODULE: ./src/components/elements/ToggleLineBreak.vue?vue&type=script&lang=js&
|
|
@@ -17670,11 +17396,10 @@ var ToggleLineBreak_component = normalizeComponent(
|
|
|
17670
17396
|
)
|
|
17671
17397
|
|
|
17672
17398
|
/* 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":"
|
|
17399
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
17400
|
var ToggleSectionCollapsevue_type_template_id_28fe93af_render = function render() {
|
|
17675
17401
|
var _vm = this,
|
|
17676
|
-
|
|
17677
|
-
|
|
17402
|
+
_c = _vm._self._c;
|
|
17678
17403
|
return _c('div', {
|
|
17679
17404
|
staticClass: "toggle-section-collapse"
|
|
17680
17405
|
}, [_c('div', {
|
|
@@ -17708,7 +17433,6 @@ var ToggleSectionCollapsevue_type_template_id_28fe93af_render = function render(
|
|
|
17708
17433
|
staticClass: "toggle-section-collapse-linebreak"
|
|
17709
17434
|
})], 1);
|
|
17710
17435
|
};
|
|
17711
|
-
|
|
17712
17436
|
var ToggleSectionCollapsevue_type_template_id_28fe93af_staticRenderFns = [];
|
|
17713
17437
|
|
|
17714
17438
|
// CONCATENATED MODULE: ./src/components/elements/ToggleSectionCollapse.vue?vue&type=template&id=28fe93af&
|
|
@@ -17732,13 +17456,11 @@ var ToggleSectionCollapsevue_type_template_id_28fe93af_staticRenderFns = [];
|
|
|
17732
17456
|
updated: false
|
|
17733
17457
|
};
|
|
17734
17458
|
},
|
|
17735
|
-
|
|
17736
17459
|
mounted() {
|
|
17737
17460
|
if (this.startOpen) {
|
|
17738
17461
|
this.visible = true;
|
|
17739
17462
|
}
|
|
17740
17463
|
},
|
|
17741
|
-
|
|
17742
17464
|
beforeUpdate: function () {
|
|
17743
17465
|
this.updated = true;
|
|
17744
17466
|
}
|
|
@@ -17765,11 +17487,10 @@ var ToggleSectionCollapse_component = normalizeComponent(
|
|
|
17765
17487
|
)
|
|
17766
17488
|
|
|
17767
17489
|
/* 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":"
|
|
17490
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
17491
|
var ToggleNotificationsvue_type_template_id_5bd4c8f9_render = function render() {
|
|
17770
17492
|
var _vm = this,
|
|
17771
|
-
|
|
17772
|
-
|
|
17493
|
+
_c = _vm._self._c;
|
|
17773
17494
|
return _c('div', [_c('div', {
|
|
17774
17495
|
staticClass: "toggle-notifications-messagebox",
|
|
17775
17496
|
class: {
|
|
@@ -17780,7 +17501,6 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_render = function render()
|
|
|
17780
17501
|
staticClass: "message"
|
|
17781
17502
|
}, [_vm._v(_vm._s(_vm.message))])])]);
|
|
17782
17503
|
};
|
|
17783
|
-
|
|
17784
17504
|
var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
17785
17505
|
|
|
17786
17506
|
// CONCATENATED MODULE: ./src/components/notifications/ToggleNotifications.vue?vue&type=template&id=5bd4c8f9&
|
|
@@ -17799,36 +17519,32 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
|
17799
17519
|
showAlertsFor: 3000,
|
|
17800
17520
|
// how long should each error display for?
|
|
17801
17521
|
isError: false // is it an error? true for yes, false for now
|
|
17802
|
-
|
|
17803
17522
|
};
|
|
17804
17523
|
},
|
|
17524
|
+
|
|
17805
17525
|
computed: {
|
|
17806
|
-
active()
|
|
17526
|
+
active()
|
|
17527
|
+
// is the message showing?
|
|
17807
17528
|
{
|
|
17808
17529
|
return this.queuedMessages > 0;
|
|
17809
17530
|
},
|
|
17810
|
-
|
|
17811
|
-
|
|
17531
|
+
timeout()
|
|
17532
|
+
// timeouts ensure that when there are multiple errors, they are shown in order rather than all at once.
|
|
17812
17533
|
{
|
|
17813
17534
|
return this.queuedMessages * this.showAlertsFor;
|
|
17814
17535
|
}
|
|
17815
|
-
|
|
17816
17536
|
},
|
|
17817
17537
|
watch: {},
|
|
17818
17538
|
created: function () {
|
|
17819
17539
|
this.$toggle_event.$on('success_message', this.showBox);
|
|
17820
17540
|
this.$toggle_event.$on('error_message', this.showErrorBox);
|
|
17821
17541
|
},
|
|
17822
|
-
|
|
17823
17542
|
beforeDestroy() {
|
|
17824
17543
|
this.$toggle_event.$off('success_message', this.showBox);
|
|
17825
17544
|
this.$toggle_event.$off('error_message', this.showErrorBox);
|
|
17826
17545
|
},
|
|
17827
|
-
|
|
17828
17546
|
mounted: function () {},
|
|
17829
|
-
|
|
17830
17547
|
destroyed() {},
|
|
17831
|
-
|
|
17832
17548
|
methods: {
|
|
17833
17549
|
// trigger an error alert
|
|
17834
17550
|
showErrorBox(message) {
|
|
@@ -17842,7 +17558,6 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
|
17842
17558
|
this.hideBox();
|
|
17843
17559
|
}, this.timeout);
|
|
17844
17560
|
},
|
|
17845
|
-
|
|
17846
17561
|
// trigger a success alert
|
|
17847
17562
|
showBox(message) {
|
|
17848
17563
|
setTimeout(() => {
|
|
@@ -17855,11 +17570,9 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
|
17855
17570
|
this.hideBox();
|
|
17856
17571
|
}, this.timeout);
|
|
17857
17572
|
},
|
|
17858
|
-
|
|
17859
17573
|
// remove a queued message and remove the box if none remaining
|
|
17860
17574
|
hideBox() {
|
|
17861
17575
|
this.queuedMessages--;
|
|
17862
|
-
|
|
17863
17576
|
if (this.queuedMessages == 0) {
|
|
17864
17577
|
setTimeout(() => {
|
|
17865
17578
|
this.message = '';
|
|
@@ -17867,7 +17580,6 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
|
17867
17580
|
}, 1000); // wait for the box to transition out of the page before resetting the message
|
|
17868
17581
|
}
|
|
17869
17582
|
}
|
|
17870
|
-
|
|
17871
17583
|
}
|
|
17872
17584
|
});
|
|
17873
17585
|
// CONCATENATED MODULE: ./src/components/notifications/ToggleNotifications.vue?vue&type=script&lang=js&
|
|
@@ -17892,11 +17604,10 @@ var ToggleNotifications_component = normalizeComponent(
|
|
|
17892
17604
|
)
|
|
17893
17605
|
|
|
17894
17606
|
/* 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":"
|
|
17607
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
17608
|
var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_render = function render() {
|
|
17897
17609
|
var _vm = this,
|
|
17898
|
-
|
|
17899
|
-
|
|
17610
|
+
_c = _vm._self._c;
|
|
17900
17611
|
return _c('button', {
|
|
17901
17612
|
staticClass: "toggle-feature-button",
|
|
17902
17613
|
on: {
|
|
@@ -17919,7 +17630,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_render = functi
|
|
|
17919
17630
|
}
|
|
17920
17631
|
})], 1)]);
|
|
17921
17632
|
};
|
|
17922
|
-
|
|
17923
17633
|
var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns = [];
|
|
17924
17634
|
|
|
17925
17635
|
// CONCATENATED MODULE: ./src/components/buttons/ToggleFeatureButton.vue?vue&type=template&id=a49bdc38&scoped=true&
|
|
@@ -17939,7 +17649,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
|
|
|
17939
17649
|
type: String,
|
|
17940
17650
|
required: true
|
|
17941
17651
|
},
|
|
17942
|
-
|
|
17943
17652
|
/**
|
|
17944
17653
|
* Logo alt
|
|
17945
17654
|
*/
|
|
@@ -17947,7 +17656,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
|
|
|
17947
17656
|
type: String,
|
|
17948
17657
|
required: true
|
|
17949
17658
|
},
|
|
17950
|
-
|
|
17951
17659
|
/**
|
|
17952
17660
|
* The label for the button
|
|
17953
17661
|
*/
|
|
@@ -17955,7 +17663,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
|
|
|
17955
17663
|
type: String,
|
|
17956
17664
|
required: true
|
|
17957
17665
|
},
|
|
17958
|
-
|
|
17959
17666
|
/**
|
|
17960
17667
|
* Icon style (mini_delete etc)
|
|
17961
17668
|
*/
|
|
@@ -17973,7 +17680,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
|
|
|
17973
17680
|
*/
|
|
17974
17681
|
this.$emit('click');
|
|
17975
17682
|
}
|
|
17976
|
-
|
|
17977
17683
|
}
|
|
17978
17684
|
});
|
|
17979
17685
|
// CONCATENATED MODULE: ./src/components/buttons/ToggleFeatureButton.vue?vue&type=script&lang=js&
|
|
@@ -17998,16 +17704,14 @@ var ToggleFeatureButton_component = normalizeComponent(
|
|
|
17998
17704
|
)
|
|
17999
17705
|
|
|
18000
17706
|
/* 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":"
|
|
17707
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
17708
|
var ToggleInfoTextvue_type_template_id_2abee308_render = function render() {
|
|
18003
17709
|
var _vm = this,
|
|
18004
|
-
|
|
18005
|
-
|
|
17710
|
+
_c = _vm._self._c;
|
|
18006
17711
|
return _c('p', {
|
|
18007
17712
|
staticClass: "toggle-info-text"
|
|
18008
17713
|
}, [_vm._t("default")], 2);
|
|
18009
17714
|
};
|
|
18010
|
-
|
|
18011
17715
|
var ToggleInfoTextvue_type_template_id_2abee308_staticRenderFns = [];
|
|
18012
17716
|
|
|
18013
17717
|
// CONCATENATED MODULE: ./src/components/text/ToggleInfoText.vue?vue&type=template&id=2abee308&
|
|
@@ -18031,11 +17735,10 @@ var ToggleInfoText_component = normalizeComponent(
|
|
|
18031
17735
|
)
|
|
18032
17736
|
|
|
18033
17737
|
/* 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":"
|
|
17738
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
17739
|
var ToggleFontPickervue_type_template_id_b38afddc_render = function render() {
|
|
18036
17740
|
var _vm = this,
|
|
18037
|
-
|
|
18038
|
-
|
|
17741
|
+
_c = _vm._self._c;
|
|
18039
17742
|
return _c('ToggleInputSelect', {
|
|
18040
17743
|
style: `font-family: ${_vm.inputVal};`,
|
|
18041
17744
|
attrs: {
|
|
@@ -18054,7 +17757,6 @@ var ToggleFontPickervue_type_template_id_b38afddc_render = function render() {
|
|
|
18054
17757
|
}
|
|
18055
17758
|
});
|
|
18056
17759
|
};
|
|
18057
|
-
|
|
18058
17760
|
var ToggleFontPickervue_type_template_id_b38afddc_staticRenderFns = [];
|
|
18059
17761
|
|
|
18060
17762
|
// CONCATENATED MODULE: ./src/components/forms/ToggleFontPicker.vue?vue&type=template&id=b38afddc&
|
|
@@ -18062,9 +17764,7 @@ var ToggleFontPickervue_type_template_id_b38afddc_staticRenderFns = [];
|
|
|
18062
17764
|
// 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
17765
|
|
|
18064
17766
|
|
|
18065
|
-
|
|
18066
17767
|
var WebFont = __webpack_require__("27d6");
|
|
18067
|
-
|
|
18068
17768
|
/* harmony default export */ var ToggleFontPickervue_type_script_lang_js_ = ({
|
|
18069
17769
|
mixins: [mixins],
|
|
18070
17770
|
components: {
|
|
@@ -18075,7 +17775,6 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18075
17775
|
value: {
|
|
18076
17776
|
type: String
|
|
18077
17777
|
},
|
|
18078
|
-
|
|
18079
17778
|
/**
|
|
18080
17779
|
* The name of the fontpicker component
|
|
18081
17780
|
*/
|
|
@@ -18083,7 +17782,6 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18083
17782
|
type: String,
|
|
18084
17783
|
default: "ToggleFontPicker"
|
|
18085
17784
|
},
|
|
18086
|
-
|
|
18087
17785
|
/**
|
|
18088
17786
|
* The label that will be displayed
|
|
18089
17787
|
*/
|
|
@@ -18092,7 +17790,6 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18092
17790
|
required: false,
|
|
18093
17791
|
default: "Font picker"
|
|
18094
17792
|
},
|
|
18095
|
-
|
|
18096
17793
|
/**
|
|
18097
17794
|
* Whether this is a required field or not
|
|
18098
17795
|
*/
|
|
@@ -18101,17 +17798,14 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18101
17798
|
default: false
|
|
18102
17799
|
}
|
|
18103
17800
|
},
|
|
18104
|
-
|
|
18105
17801
|
data() {
|
|
18106
17802
|
return {
|
|
18107
17803
|
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
17804
|
};
|
|
18109
17805
|
},
|
|
18110
|
-
|
|
18111
17806
|
created() {
|
|
18112
17807
|
this.getFonts();
|
|
18113
17808
|
},
|
|
18114
|
-
|
|
18115
17809
|
computed: {
|
|
18116
17810
|
fontOptions() {
|
|
18117
17811
|
// Format font list into value/label object for select input
|
|
@@ -18122,16 +17816,13 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18122
17816
|
};
|
|
18123
17817
|
});
|
|
18124
17818
|
},
|
|
18125
|
-
|
|
18126
17819
|
inputVal: {
|
|
18127
17820
|
get() {
|
|
18128
17821
|
return this.value;
|
|
18129
17822
|
},
|
|
18130
|
-
|
|
18131
17823
|
set(value) {
|
|
18132
17824
|
this.$emit('input', value);
|
|
18133
17825
|
}
|
|
18134
|
-
|
|
18135
17826
|
}
|
|
18136
17827
|
},
|
|
18137
17828
|
methods: {
|
|
@@ -18142,7 +17833,6 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18142
17833
|
}
|
|
18143
17834
|
});
|
|
18144
17835
|
}
|
|
18145
|
-
|
|
18146
17836
|
}
|
|
18147
17837
|
});
|
|
18148
17838
|
// CONCATENATED MODULE: ./src/components/forms/ToggleFontPicker.vue?vue&type=script&lang=js&
|
|
@@ -18167,11 +17857,10 @@ var ToggleFontPicker_component = normalizeComponent(
|
|
|
18167
17857
|
)
|
|
18168
17858
|
|
|
18169
17859
|
/* 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":"
|
|
17860
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
17861
|
var ToggleInputNumberUnitvue_type_template_id_2553a8be_render = function render() {
|
|
18172
17862
|
var _vm = this,
|
|
18173
|
-
|
|
18174
|
-
|
|
17863
|
+
_c = _vm._self._c;
|
|
18175
17864
|
return _c('div', {
|
|
18176
17865
|
staticClass: "toggle-input-container",
|
|
18177
17866
|
class: {
|
|
@@ -18218,7 +17907,6 @@ var ToggleInputNumberUnitvue_type_template_id_2553a8be_render = function render(
|
|
|
18218
17907
|
}
|
|
18219
17908
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
18220
17909
|
};
|
|
18221
|
-
|
|
18222
17910
|
var ToggleInputNumberUnitvue_type_template_id_2553a8be_staticRenderFns = [];
|
|
18223
17911
|
|
|
18224
17912
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputNumberUnit.vue?vue&type=template&id=2553a8be&
|
|
@@ -18278,13 +17966,11 @@ var ToggleInputNumberUnitvue_type_template_id_2553a8be_staticRenderFns = [];
|
|
|
18278
17966
|
required: false
|
|
18279
17967
|
}
|
|
18280
17968
|
},
|
|
18281
|
-
|
|
18282
17969
|
data() {
|
|
18283
17970
|
return {
|
|
18284
17971
|
inputActive: false
|
|
18285
17972
|
};
|
|
18286
17973
|
},
|
|
18287
|
-
|
|
18288
17974
|
computed: {
|
|
18289
17975
|
inputVal: {
|
|
18290
17976
|
get() {
|
|
@@ -18296,73 +17982,58 @@ var ToggleInputNumberUnitvue_type_template_id_2553a8be_staticRenderFns = [];
|
|
|
18296
17982
|
return this.value;
|
|
18297
17983
|
}
|
|
18298
17984
|
},
|
|
18299
|
-
|
|
18300
17985
|
set(modifiedValue) {
|
|
18301
17986
|
this.$emit('input', modifiedValue);
|
|
18302
17987
|
}
|
|
18303
|
-
|
|
18304
17988
|
},
|
|
18305
|
-
|
|
18306
17989
|
appendStringLength() {
|
|
18307
17990
|
var _this$appendString$le;
|
|
18308
|
-
|
|
18309
17991
|
return (_this$appendString$le = this.appendString.length) !== null && _this$appendString$le !== void 0 ? _this$appendString$le : 0;
|
|
18310
17992
|
},
|
|
18311
|
-
|
|
18312
17993
|
prependStringLength() {
|
|
18313
17994
|
var _this$prependString$l;
|
|
18314
|
-
|
|
18315
17995
|
return (_this$prependString$l = this.prependString.length) !== null && _this$prependString$l !== void 0 ? _this$prependString$l : 0;
|
|
18316
17996
|
}
|
|
18317
|
-
|
|
18318
17997
|
},
|
|
18319
17998
|
methods: {
|
|
18320
17999
|
onKeyup() {
|
|
18321
18000
|
// Remove any non-numbers from the input value
|
|
18322
18001
|
this.$emit('input', this.value.replace(/[^0-9]/g, ''));
|
|
18323
18002
|
},
|
|
18324
|
-
|
|
18325
18003
|
onFocus() {
|
|
18326
|
-
this.inputActive = true;
|
|
18327
|
-
|
|
18004
|
+
this.inputActive = true;
|
|
18005
|
+
// When the user clicks in the box, remove the append and/or prepend values
|
|
18328
18006
|
if (this.value != 0 && this.value != '') {
|
|
18329
18007
|
let tempValue = this.value;
|
|
18330
|
-
|
|
18331
18008
|
if (this.appendString) {
|
|
18332
18009
|
// First take off the appended string
|
|
18333
18010
|
tempValue = this.value.slice(0, -this.appendStringLength);
|
|
18334
18011
|
}
|
|
18335
|
-
|
|
18336
18012
|
if (this.prependString) {
|
|
18337
18013
|
// Then take off the prepended string
|
|
18338
18014
|
tempValue = tempValue.slice(this.prependStringLength, this.value.length);
|
|
18339
18015
|
}
|
|
18340
|
-
|
|
18341
18016
|
this.$emit('input', tempValue);
|
|
18342
18017
|
}
|
|
18343
18018
|
},
|
|
18344
|
-
|
|
18345
18019
|
onBlur() {
|
|
18346
|
-
this.inputActive = false;
|
|
18020
|
+
this.inputActive = false;
|
|
18347
18021
|
|
|
18022
|
+
// Don't add the unit if the value is left empty
|
|
18348
18023
|
if (this.value != '') {
|
|
18349
18024
|
// When the user clicks out of the box, add the prepend and/or append values
|
|
18350
18025
|
let tempValue = this.value;
|
|
18351
|
-
|
|
18352
18026
|
if (this.appendString) {
|
|
18353
18027
|
// First add the append string
|
|
18354
18028
|
tempValue += this.appendString;
|
|
18355
18029
|
}
|
|
18356
|
-
|
|
18357
18030
|
if (this.prependString) {
|
|
18358
18031
|
// Then add the prepend string
|
|
18359
18032
|
tempValue = this.prependString + tempValue;
|
|
18360
18033
|
}
|
|
18361
|
-
|
|
18362
18034
|
this.$emit('input', tempValue);
|
|
18363
18035
|
}
|
|
18364
18036
|
}
|
|
18365
|
-
|
|
18366
18037
|
}
|
|
18367
18038
|
});
|
|
18368
18039
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputNumberUnit.vue?vue&type=script&lang=js&
|
|
@@ -18387,11 +18058,10 @@ var ToggleInputNumberUnit_component = normalizeComponent(
|
|
|
18387
18058
|
)
|
|
18388
18059
|
|
|
18389
18060
|
/* 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":"
|
|
18061
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
18062
|
var ToggleInputLabelLeftvue_type_template_id_3d8b699e_render = function render() {
|
|
18392
18063
|
var _vm = this,
|
|
18393
|
-
|
|
18394
|
-
|
|
18064
|
+
_c = _vm._self._c;
|
|
18395
18065
|
return _c('div', {
|
|
18396
18066
|
staticClass: "toggle-formbuilder-input-outer-container"
|
|
18397
18067
|
}, [_c('div', {
|
|
@@ -18412,7 +18082,6 @@ var ToggleInputLabelLeftvue_type_template_id_3d8b699e_render = function render()
|
|
|
18412
18082
|
staticClass: "info"
|
|
18413
18083
|
}, [_vm._v(_vm._s(_vm.infoText))]) : _vm._e()], 1)])]);
|
|
18414
18084
|
};
|
|
18415
|
-
|
|
18416
18085
|
var ToggleInputLabelLeftvue_type_template_id_3d8b699e_staticRenderFns = [];
|
|
18417
18086
|
|
|
18418
18087
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputLabelLeft.vue?vue&type=template&id=3d8b699e&
|
|
@@ -18468,11 +18137,10 @@ var ToggleInputLabelLeft_component = normalizeComponent(
|
|
|
18468
18137
|
)
|
|
18469
18138
|
|
|
18470
18139
|
/* 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":"
|
|
18140
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
18141
|
var ToggleInputMultiSelectvue_type_template_id_2266e218_render = function render() {
|
|
18473
18142
|
var _vm = this,
|
|
18474
|
-
|
|
18475
|
-
|
|
18143
|
+
_c = _vm._self._c;
|
|
18476
18144
|
return _c('div', {
|
|
18477
18145
|
staticClass: "toggle-input-container",
|
|
18478
18146
|
class: {
|
|
@@ -18511,7 +18179,6 @@ var ToggleInputMultiSelectvue_type_template_id_2266e218_render = function render
|
|
|
18511
18179
|
}
|
|
18512
18180
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
18513
18181
|
};
|
|
18514
|
-
|
|
18515
18182
|
var ToggleInputMultiSelectvue_type_template_id_2266e218_staticRenderFns = [];
|
|
18516
18183
|
|
|
18517
18184
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputMultiSelect.vue?vue&type=template&id=2266e218&
|
|
@@ -18565,11 +18232,9 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('multi-select',
|
|
|
18565
18232
|
get() {
|
|
18566
18233
|
return this.value;
|
|
18567
18234
|
},
|
|
18568
|
-
|
|
18569
18235
|
set(value) {
|
|
18570
18236
|
this.$emit('input', value);
|
|
18571
18237
|
}
|
|
18572
|
-
|
|
18573
18238
|
}
|
|
18574
18239
|
}
|
|
18575
18240
|
});
|
|
@@ -18595,18 +18260,16 @@ var ToggleInputMultiSelect_component = normalizeComponent(
|
|
|
18595
18260
|
)
|
|
18596
18261
|
|
|
18597
18262
|
/* 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":"
|
|
18263
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
18264
|
var ToggleMetricSingleMetricvue_type_template_id_327815ad_render = function render() {
|
|
18600
18265
|
var _vm = this,
|
|
18601
|
-
|
|
18602
|
-
|
|
18266
|
+
_c = _vm._self._c;
|
|
18603
18267
|
return _c('div', [_c('h3', {
|
|
18604
18268
|
staticClass: "toggle-metric metric-label"
|
|
18605
18269
|
}, [_vm._v(_vm._s(_vm.label))]), _c('h1', {
|
|
18606
18270
|
staticClass: "toggle-metric metric-value"
|
|
18607
18271
|
}, [_vm._v(_vm._s(_vm.metricValue))])]);
|
|
18608
18272
|
};
|
|
18609
|
-
|
|
18610
18273
|
var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
18611
18274
|
|
|
18612
18275
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSingleMetric.vue?vue&type=template&id=327815ad&
|
|
@@ -18623,7 +18286,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18623
18286
|
type: String,
|
|
18624
18287
|
default: "ToggleMetricSingleMetric"
|
|
18625
18288
|
},
|
|
18626
|
-
|
|
18627
18289
|
/**
|
|
18628
18290
|
* Type of the value, this will affect on the format shown
|
|
18629
18291
|
*/
|
|
@@ -18633,7 +18295,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18633
18295
|
return ['text', 'number', 'percentage', 'currency'].indexOf(value) !== -1;
|
|
18634
18296
|
}
|
|
18635
18297
|
},
|
|
18636
|
-
|
|
18637
18298
|
/**
|
|
18638
18299
|
* Component's value
|
|
18639
18300
|
*/
|
|
@@ -18641,7 +18302,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18641
18302
|
type: [String, Number],
|
|
18642
18303
|
required: true
|
|
18643
18304
|
},
|
|
18644
|
-
|
|
18645
18305
|
/**
|
|
18646
18306
|
* Component's label
|
|
18647
18307
|
*/
|
|
@@ -18649,7 +18309,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18649
18309
|
type: String,
|
|
18650
18310
|
default: ""
|
|
18651
18311
|
},
|
|
18652
|
-
|
|
18653
18312
|
/**
|
|
18654
18313
|
* Currency Code
|
|
18655
18314
|
*/
|
|
@@ -18657,7 +18316,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18657
18316
|
type: String,
|
|
18658
18317
|
default: 'GBP'
|
|
18659
18318
|
},
|
|
18660
|
-
|
|
18661
18319
|
/**
|
|
18662
18320
|
* Currency locale
|
|
18663
18321
|
*/
|
|
@@ -18665,7 +18323,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18665
18323
|
type: String,
|
|
18666
18324
|
default: 'en-GB'
|
|
18667
18325
|
},
|
|
18668
|
-
|
|
18669
18326
|
/**
|
|
18670
18327
|
* Currency denomination
|
|
18671
18328
|
*/
|
|
@@ -18683,22 +18340,18 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18683
18340
|
if (this.value === null) {
|
|
18684
18341
|
return "-";
|
|
18685
18342
|
}
|
|
18686
|
-
|
|
18687
18343
|
switch (this.type) {
|
|
18688
18344
|
case 'currency':
|
|
18689
18345
|
return (this.value / this.currencyDenomination).toLocaleString(this.currencyLocale, {
|
|
18690
18346
|
style: 'currency',
|
|
18691
18347
|
currency: this.currencyCode
|
|
18692
18348
|
});
|
|
18693
|
-
|
|
18694
18349
|
case 'percentage':
|
|
18695
18350
|
return `${this.value} %`;
|
|
18696
|
-
|
|
18697
18351
|
default:
|
|
18698
18352
|
return this.value.toLocaleString();
|
|
18699
18353
|
}
|
|
18700
18354
|
}
|
|
18701
|
-
|
|
18702
18355
|
}
|
|
18703
18356
|
});
|
|
18704
18357
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSingleMetric.vue?vue&type=script&lang=js&
|
|
@@ -18723,11 +18376,10 @@ var ToggleMetricSingleMetric_component = normalizeComponent(
|
|
|
18723
18376
|
)
|
|
18724
18377
|
|
|
18725
18378
|
/* 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":"
|
|
18379
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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&
|
|
18727
18380
|
var ToggleMetricSparkLinevue_type_template_id_3daa6edc_render = function render() {
|
|
18728
18381
|
var _vm = this,
|
|
18729
|
-
|
|
18730
|
-
|
|
18382
|
+
_c = _vm._self._c;
|
|
18731
18383
|
return _c('div', [_c('ToggleBadge', {
|
|
18732
18384
|
staticStyle: {
|
|
18733
18385
|
"margin-bottom": "10px"
|
|
@@ -18755,7 +18407,6 @@ var ToggleMetricSparkLinevue_type_template_id_3daa6edc_render = function render(
|
|
|
18755
18407
|
}
|
|
18756
18408
|
})], 1);
|
|
18757
18409
|
};
|
|
18758
|
-
|
|
18759
18410
|
var ToggleMetricSparkLinevue_type_template_id_3daa6edc_staticRenderFns = [];
|
|
18760
18411
|
|
|
18761
18412
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSparkLine.vue?vue&type=template&id=3daa6edc&
|
|
@@ -18782,7 +18433,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18782
18433
|
type: String,
|
|
18783
18434
|
default: "ToggleMetricSingleMetric"
|
|
18784
18435
|
},
|
|
18785
|
-
|
|
18786
18436
|
/**
|
|
18787
18437
|
* The line chart height
|
|
18788
18438
|
*/
|
|
@@ -18790,7 +18440,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18790
18440
|
type: String,
|
|
18791
18441
|
default: "25%"
|
|
18792
18442
|
},
|
|
18793
|
-
|
|
18794
18443
|
/**
|
|
18795
18444
|
* The line chart width
|
|
18796
18445
|
*/
|
|
@@ -18798,7 +18447,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18798
18447
|
type: String,
|
|
18799
18448
|
default: "25%"
|
|
18800
18449
|
},
|
|
18801
|
-
|
|
18802
18450
|
/**
|
|
18803
18451
|
* Type of the value, this will affect on the format shown for the single value
|
|
18804
18452
|
*/
|
|
@@ -18808,7 +18456,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18808
18456
|
return ['text', 'number', 'percentage', 'currency'].indexOf(value) !== -1;
|
|
18809
18457
|
}
|
|
18810
18458
|
},
|
|
18811
|
-
|
|
18812
18459
|
/**
|
|
18813
18460
|
* single metric component value
|
|
18814
18461
|
*/
|
|
@@ -18816,7 +18463,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18816
18463
|
type: [String, Number],
|
|
18817
18464
|
required: true
|
|
18818
18465
|
},
|
|
18819
|
-
|
|
18820
18466
|
/**
|
|
18821
18467
|
* spark line component value
|
|
18822
18468
|
*/
|
|
@@ -18824,7 +18470,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18824
18470
|
type: Array,
|
|
18825
18471
|
required: true
|
|
18826
18472
|
},
|
|
18827
|
-
|
|
18828
18473
|
/**
|
|
18829
18474
|
* Component's label
|
|
18830
18475
|
*/
|
|
@@ -18832,7 +18477,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18832
18477
|
type: String,
|
|
18833
18478
|
required: true
|
|
18834
18479
|
},
|
|
18835
|
-
|
|
18836
18480
|
/**
|
|
18837
18481
|
* Currency Code
|
|
18838
18482
|
*/
|
|
@@ -18840,7 +18484,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18840
18484
|
type: String,
|
|
18841
18485
|
default: 'GBP'
|
|
18842
18486
|
},
|
|
18843
|
-
|
|
18844
18487
|
/**
|
|
18845
18488
|
* Currency locale
|
|
18846
18489
|
*/
|
|
@@ -18848,7 +18491,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18848
18491
|
type: String,
|
|
18849
18492
|
default: 'en-GB'
|
|
18850
18493
|
},
|
|
18851
|
-
|
|
18852
18494
|
/**
|
|
18853
18495
|
* Currency denomination
|
|
18854
18496
|
*/
|
|
@@ -18856,7 +18498,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18856
18498
|
type: Number,
|
|
18857
18499
|
default: 1
|
|
18858
18500
|
},
|
|
18859
|
-
|
|
18860
18501
|
/**
|
|
18861
18502
|
* Percentage base used to calculate the trend impact
|
|
18862
18503
|
*/
|
|
@@ -18864,7 +18505,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18864
18505
|
type: Number,
|
|
18865
18506
|
default: 0.5
|
|
18866
18507
|
},
|
|
18867
|
-
|
|
18868
18508
|
/**
|
|
18869
18509
|
* This prop will inverse the trend impact
|
|
18870
18510
|
*/
|
|
@@ -18910,15 +18550,12 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18910
18550
|
}
|
|
18911
18551
|
};
|
|
18912
18552
|
},
|
|
18913
|
-
|
|
18914
18553
|
mounted() {
|
|
18915
18554
|
this.updateTrend();
|
|
18916
18555
|
},
|
|
18917
|
-
|
|
18918
18556
|
updated() {
|
|
18919
18557
|
this.updateTrend();
|
|
18920
18558
|
},
|
|
18921
|
-
|
|
18922
18559
|
computed: {
|
|
18923
18560
|
/**
|
|
18924
18561
|
* Defines the badge class from the trending impact
|
|
@@ -18927,7 +18564,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18927
18564
|
trendImpactClass() {
|
|
18928
18565
|
return this.getTrendImpact() === 1 ? 'confirm' : this.getTrendImpact() === -1 ? 'abort' : this.getTrendImpact() === 0 ? 'warning' : 'empty';
|
|
18929
18566
|
},
|
|
18930
|
-
|
|
18931
18567
|
/**
|
|
18932
18568
|
* Defines the badge title from the trending impact
|
|
18933
18569
|
* @return String
|
|
@@ -18935,7 +18571,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18935
18571
|
trendImpactLabel() {
|
|
18936
18572
|
return this.getTrendImpact() === 1 ? 'Trending up' : this.getTrendImpact() === -1 ? 'Going down' : this.getTrendImpact() === 0 ? 'Keeping steady' : 'No data';
|
|
18937
18573
|
}
|
|
18938
|
-
|
|
18939
18574
|
},
|
|
18940
18575
|
methods: {
|
|
18941
18576
|
/**
|
|
@@ -18945,6 +18580,7 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18945
18580
|
getTrendImpact() {
|
|
18946
18581
|
if (this.sparkLineVal[0].data.length > 0) {
|
|
18947
18582
|
// if the value is an object, map to array
|
|
18583
|
+
|
|
18948
18584
|
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
18585
|
let result = this.calcTrendImpact(trendImpactVals, this.trend_impact_base);
|
|
18950
18586
|
if (this.inverse_trend_impact === true && result != false) return result * -1;else return result;
|
|
@@ -18952,33 +18588,27 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18952
18588
|
return false;
|
|
18953
18589
|
}
|
|
18954
18590
|
},
|
|
18955
|
-
|
|
18956
18591
|
/**
|
|
18957
18592
|
* Gets trend impact and udpates the chart with respective color
|
|
18958
18593
|
* @return Void
|
|
18959
18594
|
*/
|
|
18960
18595
|
updateTrend() {
|
|
18961
18596
|
this.trendImpact = this.getTrendImpact();
|
|
18962
|
-
|
|
18963
18597
|
switch (this.trendImpact) {
|
|
18964
18598
|
case 1:
|
|
18965
18599
|
this.updateChart([this.getColor('green')]);
|
|
18966
18600
|
break;
|
|
18967
|
-
|
|
18968
18601
|
case 0:
|
|
18969
18602
|
this.updateChart([this.getColor('amber')]);
|
|
18970
18603
|
break;
|
|
18971
|
-
|
|
18972
18604
|
case -1:
|
|
18973
18605
|
this.updateChart([this.getColor('red')]);
|
|
18974
18606
|
break;
|
|
18975
|
-
|
|
18976
18607
|
case false:
|
|
18977
18608
|
this.updateChart([this.getColor('gray')]);
|
|
18978
18609
|
break;
|
|
18979
18610
|
}
|
|
18980
18611
|
},
|
|
18981
|
-
|
|
18982
18612
|
/**
|
|
18983
18613
|
* Updates the spark line chart component colors
|
|
18984
18614
|
* @return Void
|
|
@@ -18988,7 +18618,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18988
18618
|
colors: colors
|
|
18989
18619
|
});
|
|
18990
18620
|
}
|
|
18991
|
-
|
|
18992
18621
|
}
|
|
18993
18622
|
});
|
|
18994
18623
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSparkLine.vue?vue&type=script&lang=js&
|
|
@@ -19013,11 +18642,10 @@ var ToggleMetricSparkLine_component = normalizeComponent(
|
|
|
19013
18642
|
)
|
|
19014
18643
|
|
|
19015
18644
|
/* 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":"
|
|
18645
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
18646
|
var ToggleMetricBarChartvue_type_template_id_0137f388_render = function render() {
|
|
19018
18647
|
var _vm = this,
|
|
19019
|
-
|
|
19020
|
-
|
|
18648
|
+
_c = _vm._self._c;
|
|
19021
18649
|
return _c('div', [_c('h3', {
|
|
19022
18650
|
staticClass: "toggle-metric metric-label"
|
|
19023
18651
|
}, [_vm._v(_vm._s(_vm.label))]), _vm._v(" " + _vm._s(_vm.checkWindowSize) + " "), _c('apexchart', {
|
|
@@ -19029,7 +18657,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_render = function render()
|
|
|
19029
18657
|
}
|
|
19030
18658
|
})], 1);
|
|
19031
18659
|
};
|
|
19032
|
-
|
|
19033
18660
|
var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
19034
18661
|
|
|
19035
18662
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricBarChart.vue?vue&type=template&id=0137f388&
|
|
@@ -19045,7 +18672,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19045
18672
|
colors: {
|
|
19046
18673
|
type: [Array]
|
|
19047
18674
|
},
|
|
19048
|
-
|
|
19049
18675
|
/*
|
|
19050
18676
|
* Component's height
|
|
19051
18677
|
*/
|
|
@@ -19053,7 +18679,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19053
18679
|
type: String,
|
|
19054
18680
|
default: "100%"
|
|
19055
18681
|
},
|
|
19056
|
-
|
|
19057
18682
|
/*
|
|
19058
18683
|
* Component's values
|
|
19059
18684
|
*/
|
|
@@ -19061,7 +18686,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19061
18686
|
type: [Array],
|
|
19062
18687
|
required: true
|
|
19063
18688
|
},
|
|
19064
|
-
|
|
19065
18689
|
/*
|
|
19066
18690
|
* Component's labels
|
|
19067
18691
|
*/
|
|
@@ -19069,7 +18693,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19069
18693
|
type: String,
|
|
19070
18694
|
required: true
|
|
19071
18695
|
},
|
|
19072
|
-
|
|
19073
18696
|
/*
|
|
19074
18697
|
* Component's categories
|
|
19075
18698
|
*/
|
|
@@ -19151,7 +18774,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19151
18774
|
}
|
|
19152
18775
|
};
|
|
19153
18776
|
}
|
|
19154
|
-
|
|
19155
18777
|
}
|
|
19156
18778
|
});
|
|
19157
18779
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricBarChart.vue?vue&type=script&lang=js&
|
|
@@ -19176,11 +18798,10 @@ var ToggleMetricBarChart_component = normalizeComponent(
|
|
|
19176
18798
|
)
|
|
19177
18799
|
|
|
19178
18800
|
/* 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":"
|
|
18801
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
18802
|
var ToggleMetricPieChartvue_type_template_id_5a723d6a_render = function render() {
|
|
19181
18803
|
var _vm = this,
|
|
19182
|
-
|
|
19183
|
-
|
|
18804
|
+
_c = _vm._self._c;
|
|
19184
18805
|
return _c('div', [_c('h3', {
|
|
19185
18806
|
staticClass: "toggle-metric metric-label"
|
|
19186
18807
|
}, [_vm._v(_vm._s(_vm.label))]), _c('apexchart', {
|
|
@@ -19192,7 +18813,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_render = function render()
|
|
|
19192
18813
|
}
|
|
19193
18814
|
})], 1);
|
|
19194
18815
|
};
|
|
19195
|
-
|
|
19196
18816
|
var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
19197
18817
|
|
|
19198
18818
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricPieChart.vue?vue&type=template&id=5a723d6a&
|
|
@@ -19208,7 +18828,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19208
18828
|
colors: {
|
|
19209
18829
|
type: [String]
|
|
19210
18830
|
},
|
|
19211
|
-
|
|
19212
18831
|
/**
|
|
19213
18832
|
* Component's values
|
|
19214
18833
|
*/
|
|
@@ -19216,7 +18835,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19216
18835
|
type: Array,
|
|
19217
18836
|
required: true
|
|
19218
18837
|
},
|
|
19219
|
-
|
|
19220
18838
|
/*
|
|
19221
18839
|
* Component's height
|
|
19222
18840
|
*/
|
|
@@ -19224,7 +18842,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19224
18842
|
type: String,
|
|
19225
18843
|
default: ""
|
|
19226
18844
|
},
|
|
19227
|
-
|
|
19228
18845
|
/**
|
|
19229
18846
|
* Component's main label
|
|
19230
18847
|
*/
|
|
@@ -19232,7 +18849,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19232
18849
|
type: String,
|
|
19233
18850
|
required: true
|
|
19234
18851
|
},
|
|
19235
|
-
|
|
19236
18852
|
/**
|
|
19237
18853
|
* Component's label for each value
|
|
19238
18854
|
*/
|
|
@@ -19287,7 +18903,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19287
18903
|
}
|
|
19288
18904
|
};
|
|
19289
18905
|
}
|
|
19290
|
-
|
|
19291
18906
|
}
|
|
19292
18907
|
});
|
|
19293
18908
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricPieChart.vue?vue&type=script&lang=js&
|
|
@@ -19312,11 +18927,10 @@ var ToggleMetricPieChart_component = normalizeComponent(
|
|
|
19312
18927
|
)
|
|
19313
18928
|
|
|
19314
18929
|
/* 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":"
|
|
18930
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"041c37bc-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
18931
|
var ToggleMetricFunnelChartvue_type_template_id_f3f5710a_render = function render() {
|
|
19317
18932
|
var _vm = this,
|
|
19318
|
-
|
|
19319
|
-
|
|
18933
|
+
_c = _vm._self._c;
|
|
19320
18934
|
return _c('div', {
|
|
19321
18935
|
staticClass: "toggle-metric-funnel-container"
|
|
19322
18936
|
}, [_c('div', {
|
|
@@ -19347,7 +18961,6 @@ var ToggleMetricFunnelChartvue_type_template_id_f3f5710a_render = function rende
|
|
|
19347
18961
|
staticClass: "funnel-single-metric-container"
|
|
19348
18962
|
}, [_vm._t("funnel4")], 2)])]);
|
|
19349
18963
|
};
|
|
19350
|
-
|
|
19351
18964
|
var ToggleMetricFunnelChartvue_type_template_id_f3f5710a_staticRenderFns = [];
|
|
19352
18965
|
|
|
19353
18966
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricFunnelChart.vue?vue&type=template&id=f3f5710a&
|
|
@@ -19510,7 +19123,6 @@ Object.defineProperty(external_commonjs_vue_commonjs2_vue_root_Vue_default.a.pro
|
|
|
19510
19123
|
get() {
|
|
19511
19124
|
return toggle_event_bus;
|
|
19512
19125
|
}
|
|
19513
|
-
|
|
19514
19126
|
});
|
|
19515
19127
|
/* harmony default export */ var src_0 = (Components);
|
|
19516
19128
|
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
@@ -19575,7 +19187,7 @@ module.exports = isSameDay
|
|
|
19575
19187
|
/***/ "fdbf":
|
|
19576
19188
|
/***/ (function(module, exports, __webpack_require__) {
|
|
19577
19189
|
|
|
19578
|
-
/* eslint-disable es
|
|
19190
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
19579
19191
|
var NATIVE_SYMBOL = __webpack_require__("04f8");
|
|
19580
19192
|
|
|
19581
19193
|
module.exports = NATIVE_SYMBOL
|