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
|
@@ -99,11 +99,11 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
99
99
|
/***/ "04f8":
|
|
100
100
|
/***/ (function(module, exports, __webpack_require__) {
|
|
101
101
|
|
|
102
|
-
/* eslint-disable es
|
|
102
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
103
103
|
var V8_VERSION = __webpack_require__("2d00");
|
|
104
104
|
var fails = __webpack_require__("d039");
|
|
105
105
|
|
|
106
|
-
// eslint-disable-next-line es
|
|
106
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
107
107
|
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
108
108
|
var symbol = Symbol();
|
|
109
109
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
@@ -128,7 +128,7 @@ var toPropertyKey = __webpack_require__("a04b");
|
|
|
128
128
|
var hasOwn = __webpack_require__("1a2d");
|
|
129
129
|
var IE8_DOM_DEFINE = __webpack_require__("0cfb");
|
|
130
130
|
|
|
131
|
-
// eslint-disable-next-line es
|
|
131
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
132
132
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
133
133
|
|
|
134
134
|
// `Object.getOwnPropertyDescriptor` method
|
|
@@ -200,7 +200,7 @@ var createElement = __webpack_require__("cc12");
|
|
|
200
200
|
|
|
201
201
|
// Thanks to IE8 for its funny defineProperty
|
|
202
202
|
module.exports = !DESCRIPTORS && !fails(function () {
|
|
203
|
-
// eslint-disable-next-line es
|
|
203
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
204
204
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
205
205
|
get: function () { return 7; }
|
|
206
206
|
}).a != 7;
|
|
@@ -569,7 +569,7 @@ var InternalStateModule = __webpack_require__("69f3");
|
|
|
569
569
|
|
|
570
570
|
var enforceInternalState = InternalStateModule.enforce;
|
|
571
571
|
var getInternalState = InternalStateModule.get;
|
|
572
|
-
// eslint-disable-next-line es
|
|
572
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
573
573
|
var defineProperty = Object.defineProperty;
|
|
574
574
|
|
|
575
575
|
var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
|
|
@@ -610,14 +610,68 @@ Function.prototype.toString = makeBuiltIn(function toString() {
|
|
|
610
610
|
}, 'toString');
|
|
611
611
|
|
|
612
612
|
|
|
613
|
+
/***/ }),
|
|
614
|
+
|
|
615
|
+
/***/ "14d9":
|
|
616
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
617
|
+
|
|
618
|
+
"use strict";
|
|
619
|
+
|
|
620
|
+
var $ = __webpack_require__("23e7");
|
|
621
|
+
var toObject = __webpack_require__("7b0b");
|
|
622
|
+
var lengthOfArrayLike = __webpack_require__("07fa");
|
|
623
|
+
var setArrayLength = __webpack_require__("3a34");
|
|
624
|
+
var doesNotExceedSafeInteger = __webpack_require__("3511");
|
|
625
|
+
var fails = __webpack_require__("d039");
|
|
626
|
+
|
|
627
|
+
var INCORRECT_TO_LENGTH = fails(function () {
|
|
628
|
+
return [].push.call({ length: 0x100000000 }, 1) !== 4294967297;
|
|
629
|
+
});
|
|
630
|
+
|
|
631
|
+
// V8 and Safari <= 15.4, FF < 23 throws InternalError
|
|
632
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=12681
|
|
633
|
+
var SILENT_ON_NON_WRITABLE_LENGTH = !function () {
|
|
634
|
+
try {
|
|
635
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
636
|
+
Object.defineProperty([], 'length', { writable: false }).push();
|
|
637
|
+
} catch (error) {
|
|
638
|
+
return error instanceof TypeError;
|
|
639
|
+
}
|
|
640
|
+
}();
|
|
641
|
+
|
|
642
|
+
// `Array.prototype.push` method
|
|
643
|
+
// https://tc39.es/ecma262/#sec-array.prototype.push
|
|
644
|
+
$({ target: 'Array', proto: true, arity: 1, forced: INCORRECT_TO_LENGTH || SILENT_ON_NON_WRITABLE_LENGTH }, {
|
|
645
|
+
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
|
646
|
+
push: function push(item) {
|
|
647
|
+
var O = toObject(this);
|
|
648
|
+
var len = lengthOfArrayLike(O);
|
|
649
|
+
var argCount = arguments.length;
|
|
650
|
+
doesNotExceedSafeInteger(len + argCount);
|
|
651
|
+
for (var i = 0; i < argCount; i++) {
|
|
652
|
+
O[len] = arguments[i];
|
|
653
|
+
len++;
|
|
654
|
+
}
|
|
655
|
+
setArrayLength(O, len);
|
|
656
|
+
return len;
|
|
657
|
+
}
|
|
658
|
+
});
|
|
659
|
+
|
|
660
|
+
|
|
613
661
|
/***/ }),
|
|
614
662
|
|
|
615
663
|
/***/ "1626":
|
|
616
|
-
/***/ (function(module, exports) {
|
|
664
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
665
|
+
|
|
666
|
+
var $documentAll = __webpack_require__("8ea1");
|
|
667
|
+
|
|
668
|
+
var documentAll = $documentAll.all;
|
|
617
669
|
|
|
618
670
|
// `IsCallable` abstract operation
|
|
619
671
|
// https://tc39.es/ecma262/#sec-iscallable
|
|
620
|
-
module.exports = function (argument) {
|
|
672
|
+
module.exports = $documentAll.IS_HTMLDDA ? function (argument) {
|
|
673
|
+
return typeof argument == 'function' || argument === documentAll;
|
|
674
|
+
} : function (argument) {
|
|
621
675
|
return typeof argument == 'function';
|
|
622
676
|
};
|
|
623
677
|
|
|
@@ -634,22 +688,12 @@ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
|
|
|
634
688
|
|
|
635
689
|
// `HasOwnProperty` abstract operation
|
|
636
690
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
637
|
-
// eslint-disable-next-line es
|
|
691
|
+
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
638
692
|
module.exports = Object.hasOwn || function hasOwn(it, key) {
|
|
639
693
|
return hasOwnProperty(toObject(it), key);
|
|
640
694
|
};
|
|
641
695
|
|
|
642
696
|
|
|
643
|
-
/***/ }),
|
|
644
|
-
|
|
645
|
-
/***/ "1be4":
|
|
646
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
647
|
-
|
|
648
|
-
var getBuiltIn = __webpack_require__("d066");
|
|
649
|
-
|
|
650
|
-
module.exports = getBuiltIn('document', 'documentElement');
|
|
651
|
-
|
|
652
|
-
|
|
653
697
|
/***/ }),
|
|
654
698
|
|
|
655
699
|
/***/ "1d80":
|
|
@@ -782,7 +826,7 @@ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
|
|
782
826
|
|
|
783
827
|
// `Object.getOwnPropertyNames` method
|
|
784
828
|
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
785
|
-
// eslint-disable-next-line es
|
|
829
|
+
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
786
830
|
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
787
831
|
return internalObjectKeys(O, hiddenKeys);
|
|
788
832
|
};
|
|
@@ -998,28 +1042,15 @@ module.exports = getBuiltIn('navigator', 'userAgent') || '';
|
|
|
998
1042
|
|
|
999
1043
|
/***/ }),
|
|
1000
1044
|
|
|
1001
|
-
/***/ "
|
|
1002
|
-
/***/ (function(module, exports
|
|
1045
|
+
/***/ "3511":
|
|
1046
|
+
/***/ (function(module, exports) {
|
|
1003
1047
|
|
|
1004
|
-
var
|
|
1005
|
-
var
|
|
1006
|
-
var definePropertyModule = __webpack_require__("9bf2");
|
|
1007
|
-
var anObject = __webpack_require__("825a");
|
|
1008
|
-
var toIndexedObject = __webpack_require__("fc6a");
|
|
1009
|
-
var objectKeys = __webpack_require__("df75");
|
|
1048
|
+
var $TypeError = TypeError;
|
|
1049
|
+
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
|
|
1010
1050
|
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
1015
|
-
anObject(O);
|
|
1016
|
-
var props = toIndexedObject(Properties);
|
|
1017
|
-
var keys = objectKeys(Properties);
|
|
1018
|
-
var length = keys.length;
|
|
1019
|
-
var index = 0;
|
|
1020
|
-
var key;
|
|
1021
|
-
while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
|
|
1022
|
-
return O;
|
|
1051
|
+
module.exports = function (it) {
|
|
1052
|
+
if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
|
|
1053
|
+
return it;
|
|
1023
1054
|
};
|
|
1024
1055
|
|
|
1025
1056
|
|
|
@@ -1066,6 +1097,41 @@ function setMonth (dirtyDate, dirtyMonth) {
|
|
|
1066
1097
|
module.exports = setMonth
|
|
1067
1098
|
|
|
1068
1099
|
|
|
1100
|
+
/***/ }),
|
|
1101
|
+
|
|
1102
|
+
/***/ "3a34":
|
|
1103
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
1104
|
+
|
|
1105
|
+
"use strict";
|
|
1106
|
+
|
|
1107
|
+
var DESCRIPTORS = __webpack_require__("83ab");
|
|
1108
|
+
var isArray = __webpack_require__("e8b5");
|
|
1109
|
+
|
|
1110
|
+
var $TypeError = TypeError;
|
|
1111
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1112
|
+
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
1113
|
+
|
|
1114
|
+
// Safari < 13 does not throw an error in this case
|
|
1115
|
+
var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
|
|
1116
|
+
// makes no sense without proper strict mode support
|
|
1117
|
+
if (this !== undefined) return true;
|
|
1118
|
+
try {
|
|
1119
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1120
|
+
Object.defineProperty([], 'length', { writable: false }).length = 1;
|
|
1121
|
+
} catch (error) {
|
|
1122
|
+
return error instanceof TypeError;
|
|
1123
|
+
}
|
|
1124
|
+
}();
|
|
1125
|
+
|
|
1126
|
+
module.exports = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
|
|
1127
|
+
if (isArray(O) && !getOwnPropertyDescriptor(O, 'length').writable) {
|
|
1128
|
+
throw $TypeError('Cannot set read only .length');
|
|
1129
|
+
} return O.length = length;
|
|
1130
|
+
} : function (O, length) {
|
|
1131
|
+
return O.length = length;
|
|
1132
|
+
};
|
|
1133
|
+
|
|
1134
|
+
|
|
1069
1135
|
/***/ }),
|
|
1070
1136
|
|
|
1071
1137
|
/***/ "3a9b":
|
|
@@ -1106,7 +1172,7 @@ function(){function t(t){t.remember("_draggable",this),this.el=t}t.prototype.ini
|
|
|
1106
1172
|
var fails = __webpack_require__("d039");
|
|
1107
1173
|
|
|
1108
1174
|
module.exports = !fails(function () {
|
|
1109
|
-
// eslint-disable-next-line es
|
|
1175
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
1110
1176
|
var test = (function () { /* empty */ }).bind();
|
|
1111
1177
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
1112
1178
|
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
@@ -1174,33 +1240,6 @@ module.exports = fails(function () {
|
|
|
1174
1240
|
} : $Object;
|
|
1175
1241
|
|
|
1176
1242
|
|
|
1177
|
-
/***/ }),
|
|
1178
|
-
|
|
1179
|
-
/***/ "44d2":
|
|
1180
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
1181
|
-
|
|
1182
|
-
var wellKnownSymbol = __webpack_require__("b622");
|
|
1183
|
-
var create = __webpack_require__("7c73");
|
|
1184
|
-
var defineProperty = __webpack_require__("9bf2").f;
|
|
1185
|
-
|
|
1186
|
-
var UNSCOPABLES = wellKnownSymbol('unscopables');
|
|
1187
|
-
var ArrayPrototype = Array.prototype;
|
|
1188
|
-
|
|
1189
|
-
// Array.prototype[@@unscopables]
|
|
1190
|
-
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
1191
|
-
if (ArrayPrototype[UNSCOPABLES] == undefined) {
|
|
1192
|
-
defineProperty(ArrayPrototype, UNSCOPABLES, {
|
|
1193
|
-
configurable: true,
|
|
1194
|
-
value: create(null)
|
|
1195
|
-
});
|
|
1196
|
-
}
|
|
1197
|
-
|
|
1198
|
-
// add a key to Array.prototype[@@unscopables]
|
|
1199
|
-
module.exports = function (key) {
|
|
1200
|
-
ArrayPrototype[UNSCOPABLES][key] = true;
|
|
1201
|
-
};
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
1243
|
/***/ }),
|
|
1205
1244
|
|
|
1206
1245
|
/***/ "485a":
|
|
@@ -1370,10 +1409,10 @@ var store = __webpack_require__("c6cd");
|
|
|
1370
1409
|
(module.exports = function (key, value) {
|
|
1371
1410
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
1372
1411
|
})('versions', []).push({
|
|
1373
|
-
version: '3.25.
|
|
1412
|
+
version: '3.25.5',
|
|
1374
1413
|
mode: IS_PURE ? 'pure' : 'global',
|
|
1375
1414
|
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
1376
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.25.
|
|
1415
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.25.5/LICENSE',
|
|
1377
1416
|
source: 'https://github.com/zloirock/core-js'
|
|
1378
1417
|
});
|
|
1379
1418
|
|
|
@@ -1526,7 +1565,7 @@ var DESCRIPTORS = __webpack_require__("83ab");
|
|
|
1526
1565
|
var hasOwn = __webpack_require__("1a2d");
|
|
1527
1566
|
|
|
1528
1567
|
var FunctionPrototype = Function.prototype;
|
|
1529
|
-
// eslint-disable-next-line es
|
|
1568
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1530
1569
|
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
1531
1570
|
|
|
1532
1571
|
var EXISTS = hasOwn(FunctionPrototype, 'name');
|
|
@@ -1548,7 +1587,7 @@ module.exports = {
|
|
|
1548
1587
|
|
|
1549
1588
|
var global = __webpack_require__("da84");
|
|
1550
1589
|
|
|
1551
|
-
// eslint-disable-next-line es
|
|
1590
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1552
1591
|
var defineProperty = Object.defineProperty;
|
|
1553
1592
|
|
|
1554
1593
|
module.exports = function (key, value) {
|
|
@@ -1608,7 +1647,6 @@ module.exports = addMonths
|
|
|
1608
1647
|
|
|
1609
1648
|
var NATIVE_WEAK_MAP = __webpack_require__("cdce");
|
|
1610
1649
|
var global = __webpack_require__("da84");
|
|
1611
|
-
var uncurryThis = __webpack_require__("e330");
|
|
1612
1650
|
var isObject = __webpack_require__("861d");
|
|
1613
1651
|
var createNonEnumerableProperty = __webpack_require__("9112");
|
|
1614
1652
|
var hasOwn = __webpack_require__("1a2d");
|
|
@@ -1636,20 +1674,22 @@ var getterFor = function (TYPE) {
|
|
|
1636
1674
|
|
|
1637
1675
|
if (NATIVE_WEAK_MAP || shared.state) {
|
|
1638
1676
|
var store = shared.state || (shared.state = new WeakMap());
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1677
|
+
/* eslint-disable no-self-assign -- prototype methods protection */
|
|
1678
|
+
store.get = store.get;
|
|
1679
|
+
store.has = store.has;
|
|
1680
|
+
store.set = store.set;
|
|
1681
|
+
/* eslint-enable no-self-assign -- prototype methods protection */
|
|
1642
1682
|
set = function (it, metadata) {
|
|
1643
|
-
if (
|
|
1683
|
+
if (store.has(it)) throw TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
1644
1684
|
metadata.facade = it;
|
|
1645
|
-
|
|
1685
|
+
store.set(it, metadata);
|
|
1646
1686
|
return metadata;
|
|
1647
1687
|
};
|
|
1648
1688
|
get = function (it) {
|
|
1649
|
-
return
|
|
1689
|
+
return store.get(it) || {};
|
|
1650
1690
|
};
|
|
1651
1691
|
has = function (it) {
|
|
1652
|
-
return
|
|
1692
|
+
return store.has(it);
|
|
1653
1693
|
};
|
|
1654
1694
|
} else {
|
|
1655
1695
|
var STATE = sharedKey('state');
|
|
@@ -2092,7 +2132,7 @@ module.exports = getMonth
|
|
|
2092
2132
|
/***/ "7418":
|
|
2093
2133
|
/***/ (function(module, exports) {
|
|
2094
2134
|
|
|
2095
|
-
// eslint-disable-next-line es
|
|
2135
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
2096
2136
|
exports.f = Object.getOwnPropertySymbols;
|
|
2097
2137
|
|
|
2098
2138
|
|
|
@@ -2208,91 +2248,19 @@ module.exports = function (argument) {
|
|
|
2208
2248
|
|
|
2209
2249
|
/***/ }),
|
|
2210
2250
|
|
|
2211
|
-
/***/ "
|
|
2251
|
+
/***/ "7d7e":
|
|
2212
2252
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2213
2253
|
|
|
2214
|
-
|
|
2215
|
-
var anObject = __webpack_require__("825a");
|
|
2216
|
-
var definePropertiesModule = __webpack_require__("37e8");
|
|
2217
|
-
var enumBugKeys = __webpack_require__("7839");
|
|
2218
|
-
var hiddenKeys = __webpack_require__("d012");
|
|
2219
|
-
var html = __webpack_require__("1be4");
|
|
2220
|
-
var documentCreateElement = __webpack_require__("cc12");
|
|
2221
|
-
var sharedKey = __webpack_require__("f772");
|
|
2222
|
-
|
|
2223
|
-
var GT = '>';
|
|
2224
|
-
var LT = '<';
|
|
2225
|
-
var PROTOTYPE = 'prototype';
|
|
2226
|
-
var SCRIPT = 'script';
|
|
2227
|
-
var IE_PROTO = sharedKey('IE_PROTO');
|
|
2228
|
-
|
|
2229
|
-
var EmptyConstructor = function () { /* empty */ };
|
|
2230
|
-
|
|
2231
|
-
var scriptTag = function (content) {
|
|
2232
|
-
return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
|
|
2233
|
-
};
|
|
2234
|
-
|
|
2235
|
-
// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
|
|
2236
|
-
var NullProtoObjectViaActiveX = function (activeXDocument) {
|
|
2237
|
-
activeXDocument.write(scriptTag(''));
|
|
2238
|
-
activeXDocument.close();
|
|
2239
|
-
var temp = activeXDocument.parentWindow.Object;
|
|
2240
|
-
activeXDocument = null; // avoid memory leak
|
|
2241
|
-
return temp;
|
|
2242
|
-
};
|
|
2243
|
-
|
|
2244
|
-
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
|
2245
|
-
var NullProtoObjectViaIFrame = function () {
|
|
2246
|
-
// Thrash, waste and sodomy: IE GC bug
|
|
2247
|
-
var iframe = documentCreateElement('iframe');
|
|
2248
|
-
var JS = 'java' + SCRIPT + ':';
|
|
2249
|
-
var iframeDocument;
|
|
2250
|
-
iframe.style.display = 'none';
|
|
2251
|
-
html.appendChild(iframe);
|
|
2252
|
-
// https://github.com/zloirock/core-js/issues/475
|
|
2253
|
-
iframe.src = String(JS);
|
|
2254
|
-
iframeDocument = iframe.contentWindow.document;
|
|
2255
|
-
iframeDocument.open();
|
|
2256
|
-
iframeDocument.write(scriptTag('document.F=Object'));
|
|
2257
|
-
iframeDocument.close();
|
|
2258
|
-
return iframeDocument.F;
|
|
2259
|
-
};
|
|
2260
|
-
|
|
2261
|
-
// Check for document.domain and active x support
|
|
2262
|
-
// No need to use active x approach when document.domain is not set
|
|
2263
|
-
// see https://github.com/es-shims/es5-shim/issues/150
|
|
2264
|
-
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
|
|
2265
|
-
// avoid IE GC bug
|
|
2266
|
-
var activeXDocument;
|
|
2267
|
-
var NullProtoObject = function () {
|
|
2268
|
-
try {
|
|
2269
|
-
activeXDocument = new ActiveXObject('htmlfile');
|
|
2270
|
-
} catch (error) { /* ignore */ }
|
|
2271
|
-
NullProtoObject = typeof document != 'undefined'
|
|
2272
|
-
? document.domain && activeXDocument
|
|
2273
|
-
? NullProtoObjectViaActiveX(activeXDocument) // old IE
|
|
2274
|
-
: NullProtoObjectViaIFrame()
|
|
2275
|
-
: NullProtoObjectViaActiveX(activeXDocument); // WSH
|
|
2276
|
-
var length = enumBugKeys.length;
|
|
2277
|
-
while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
|
|
2278
|
-
return NullProtoObject();
|
|
2279
|
-
};
|
|
2254
|
+
var NATIVE_BIND = __webpack_require__("40d5");
|
|
2280
2255
|
|
|
2281
|
-
|
|
2256
|
+
var FunctionPrototype = Function.prototype;
|
|
2257
|
+
var call = FunctionPrototype.call;
|
|
2258
|
+
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
|
|
2282
2259
|
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
var result;
|
|
2288
|
-
if (O !== null) {
|
|
2289
|
-
EmptyConstructor[PROTOTYPE] = anObject(O);
|
|
2290
|
-
result = new EmptyConstructor();
|
|
2291
|
-
EmptyConstructor[PROTOTYPE] = null;
|
|
2292
|
-
// add "__proto__" for Object.getPrototypeOf polyfill
|
|
2293
|
-
result[IE_PROTO] = O;
|
|
2294
|
-
} else result = NullProtoObject();
|
|
2295
|
-
return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
|
|
2260
|
+
module.exports = function (fn) {
|
|
2261
|
+
return NATIVE_BIND ? uncurryThisWithBind(fn) : function () {
|
|
2262
|
+
return call.apply(fn, arguments);
|
|
2263
|
+
};
|
|
2296
2264
|
};
|
|
2297
2265
|
|
|
2298
2266
|
|
|
@@ -2414,7 +2382,7 @@ var fails = __webpack_require__("d039");
|
|
|
2414
2382
|
|
|
2415
2383
|
// Detect IE8's incomplete defineProperty implementation
|
|
2416
2384
|
module.exports = !fails(function () {
|
|
2417
|
-
// eslint-disable-next-line es
|
|
2385
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
2418
2386
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
|
2419
2387
|
});
|
|
2420
2388
|
|
|
@@ -2425,13 +2393,11 @@ module.exports = !fails(function () {
|
|
|
2425
2393
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2426
2394
|
|
|
2427
2395
|
var isCallable = __webpack_require__("1626");
|
|
2396
|
+
var $documentAll = __webpack_require__("8ea1");
|
|
2428
2397
|
|
|
2429
|
-
var documentAll =
|
|
2430
|
-
|
|
2431
|
-
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
2432
|
-
var SPECIAL_DOCUMENT_ALL = typeof documentAll == 'undefined' && documentAll !== undefined;
|
|
2398
|
+
var documentAll = $documentAll.all;
|
|
2433
2399
|
|
|
2434
|
-
module.exports =
|
|
2400
|
+
module.exports = $documentAll.IS_HTMLDDA ? function (it) {
|
|
2435
2401
|
return typeof it == 'object' ? it !== null : isCallable(it) || it === documentAll;
|
|
2436
2402
|
} : function (it) {
|
|
2437
2403
|
return typeof it == 'object' ? it !== null : isCallable(it);
|
|
@@ -2558,6 +2524,22 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__8bbf__;
|
|
|
2558
2524
|
|
|
2559
2525
|
!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}])});
|
|
2560
2526
|
|
|
2527
|
+
/***/ }),
|
|
2528
|
+
|
|
2529
|
+
/***/ "8ea1":
|
|
2530
|
+
/***/ (function(module, exports) {
|
|
2531
|
+
|
|
2532
|
+
var documentAll = typeof document == 'object' && document.all;
|
|
2533
|
+
|
|
2534
|
+
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
2535
|
+
var IS_HTMLDDA = typeof documentAll == 'undefined' && documentAll !== undefined;
|
|
2536
|
+
|
|
2537
|
+
module.exports = {
|
|
2538
|
+
all: documentAll,
|
|
2539
|
+
IS_HTMLDDA: IS_HTMLDDA
|
|
2540
|
+
};
|
|
2541
|
+
|
|
2542
|
+
|
|
2561
2543
|
/***/ }),
|
|
2562
2544
|
|
|
2563
2545
|
/***/ "8ff2":
|
|
@@ -2720,9 +2702,9 @@ var anObject = __webpack_require__("825a");
|
|
|
2720
2702
|
var toPropertyKey = __webpack_require__("a04b");
|
|
2721
2703
|
|
|
2722
2704
|
var $TypeError = TypeError;
|
|
2723
|
-
// eslint-disable-next-line es
|
|
2705
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
2724
2706
|
var $defineProperty = Object.defineProperty;
|
|
2725
|
-
// eslint-disable-next-line es
|
|
2707
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
2726
2708
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
2727
2709
|
var ENUMERABLE = 'enumerable';
|
|
2728
2710
|
var CONFIGURABLE = 'configurable';
|
|
@@ -2758,6 +2740,13 @@ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P
|
|
|
2758
2740
|
};
|
|
2759
2741
|
|
|
2760
2742
|
|
|
2743
|
+
/***/ }),
|
|
2744
|
+
|
|
2745
|
+
/***/ "a01d":
|
|
2746
|
+
/***/ (function(module) {
|
|
2747
|
+
|
|
2748
|
+
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\":\"\"}}");
|
|
2749
|
+
|
|
2761
2750
|
/***/ }),
|
|
2762
2751
|
|
|
2763
2752
|
/***/ "a04b":
|
|
@@ -6589,7 +6578,7 @@ var fails = __webpack_require__("d039");
|
|
|
6589
6578
|
// V8 ~ Chrome 36-
|
|
6590
6579
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
6591
6580
|
module.exports = DESCRIPTORS && fails(function () {
|
|
6592
|
-
// eslint-disable-next-line es
|
|
6581
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
6593
6582
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
6594
6583
|
value: 42,
|
|
6595
6584
|
writable: false
|
|
@@ -6607,7 +6596,7 @@ var floor = Math.floor;
|
|
|
6607
6596
|
|
|
6608
6597
|
// `Math.trunc` method
|
|
6609
6598
|
// https://tc39.es/ecma262/#sec-math.trunc
|
|
6610
|
-
// eslint-disable-next-line es
|
|
6599
|
+
// eslint-disable-next-line es/no-math-trunc -- safe
|
|
6611
6600
|
module.exports = Math.trunc || function trunc(x) {
|
|
6612
6601
|
var n = +x;
|
|
6613
6602
|
return (n > 0 ? floor : ceil)(n);
|
|
@@ -9213,10 +9202,10 @@ module.exports = NATIVE_BIND ? call.bind(call) : function () {
|
|
|
9213
9202
|
/***/ "c6b6":
|
|
9214
9203
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9215
9204
|
|
|
9216
|
-
var
|
|
9205
|
+
var uncurryThisRaw = __webpack_require__("7d7e");
|
|
9217
9206
|
|
|
9218
|
-
var toString =
|
|
9219
|
-
var stringSlice =
|
|
9207
|
+
var toString = uncurryThisRaw({}.toString);
|
|
9208
|
+
var stringSlice = uncurryThisRaw(''.slice);
|
|
9220
9209
|
|
|
9221
9210
|
module.exports = function (it) {
|
|
9222
9211
|
return stringSlice(toString(it), 8, -1);
|
|
@@ -9675,35 +9664,6 @@ module.exports = function (object, names) {
|
|
|
9675
9664
|
};
|
|
9676
9665
|
|
|
9677
9666
|
|
|
9678
|
-
/***/ }),
|
|
9679
|
-
|
|
9680
|
-
/***/ "caad":
|
|
9681
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
9682
|
-
|
|
9683
|
-
"use strict";
|
|
9684
|
-
|
|
9685
|
-
var $ = __webpack_require__("23e7");
|
|
9686
|
-
var $includes = __webpack_require__("4d64").includes;
|
|
9687
|
-
var fails = __webpack_require__("d039");
|
|
9688
|
-
var addToUnscopables = __webpack_require__("44d2");
|
|
9689
|
-
|
|
9690
|
-
// FF99+ bug
|
|
9691
|
-
var BROKEN_ON_SPARSE = fails(function () {
|
|
9692
|
-
return !Array(1).includes();
|
|
9693
|
-
});
|
|
9694
|
-
|
|
9695
|
-
// `Array.prototype.includes` method
|
|
9696
|
-
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
9697
|
-
$({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
|
|
9698
|
-
includes: function includes(el /* , fromIndex = 0 */) {
|
|
9699
|
-
return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
|
|
9700
|
-
}
|
|
9701
|
-
});
|
|
9702
|
-
|
|
9703
|
-
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
9704
|
-
addToUnscopables('includes');
|
|
9705
|
-
|
|
9706
|
-
|
|
9707
9667
|
/***/ }),
|
|
9708
9668
|
|
|
9709
9669
|
/***/ "cb2d":
|
|
@@ -9822,7 +9782,7 @@ module.exports = function (namespace, method) {
|
|
|
9822
9782
|
"use strict";
|
|
9823
9783
|
|
|
9824
9784
|
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
9825
|
-
// eslint-disable-next-line es
|
|
9785
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
9826
9786
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
9827
9787
|
|
|
9828
9788
|
// Nashorn ~ JDK8 bug
|
|
@@ -9915,7 +9875,7 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
|
|
|
9915
9875
|
|
|
9916
9876
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
9917
9877
|
module.exports =
|
|
9918
|
-
// eslint-disable-next-line es
|
|
9878
|
+
// eslint-disable-next-line es/no-global-this -- safe
|
|
9919
9879
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
9920
9880
|
check(typeof window == 'object' && window) ||
|
|
9921
9881
|
// eslint-disable-next-line no-restricted-globals -- safe
|
|
@@ -9950,22 +9910,6 @@ module.exports = function (V, P) {
|
|
|
9950
9910
|
};
|
|
9951
9911
|
|
|
9952
9912
|
|
|
9953
|
-
/***/ }),
|
|
9954
|
-
|
|
9955
|
-
/***/ "df75":
|
|
9956
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
9957
|
-
|
|
9958
|
-
var internalObjectKeys = __webpack_require__("ca84");
|
|
9959
|
-
var enumBugKeys = __webpack_require__("7839");
|
|
9960
|
-
|
|
9961
|
-
// `Object.keys` method
|
|
9962
|
-
// https://tc39.es/ecma262/#sec-object.keys
|
|
9963
|
-
// eslint-disable-next-line es-x/no-object-keys -- safe
|
|
9964
|
-
module.exports = Object.keys || function keys(O) {
|
|
9965
|
-
return internalObjectKeys(O, enumBugKeys);
|
|
9966
|
-
};
|
|
9967
|
-
|
|
9968
|
-
|
|
9969
9913
|
/***/ }),
|
|
9970
9914
|
|
|
9971
9915
|
/***/ "e1ca":
|
|
@@ -10033,19 +9977,14 @@ module.exports = subDays
|
|
|
10033
9977
|
/***/ "e330":
|
|
10034
9978
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10035
9979
|
|
|
10036
|
-
var
|
|
10037
|
-
|
|
10038
|
-
var FunctionPrototype = Function.prototype;
|
|
10039
|
-
var bind = FunctionPrototype.bind;
|
|
10040
|
-
var call = FunctionPrototype.call;
|
|
10041
|
-
var uncurryThis = NATIVE_BIND && bind.bind(call, call);
|
|
9980
|
+
var classofRaw = __webpack_require__("c6b6");
|
|
9981
|
+
var uncurryThisRaw = __webpack_require__("7d7e");
|
|
10042
9982
|
|
|
10043
|
-
module.exports =
|
|
10044
|
-
|
|
10045
|
-
|
|
10046
|
-
|
|
10047
|
-
|
|
10048
|
-
};
|
|
9983
|
+
module.exports = function (fn) {
|
|
9984
|
+
// Nashorn bug:
|
|
9985
|
+
// https://github.com/zloirock/core-js/issues/1128
|
|
9986
|
+
// https://github.com/zloirock/core-js/issues/1130
|
|
9987
|
+
if (classofRaw(fn) === 'Function') return uncurryThisRaw(fn);
|
|
10049
9988
|
};
|
|
10050
9989
|
|
|
10051
9990
|
|
|
@@ -10174,6 +10113,21 @@ module.exports = function (target, source, exceptions) {
|
|
|
10174
10113
|
};
|
|
10175
10114
|
|
|
10176
10115
|
|
|
10116
|
+
/***/ }),
|
|
10117
|
+
|
|
10118
|
+
/***/ "e8b5":
|
|
10119
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
10120
|
+
|
|
10121
|
+
var classof = __webpack_require__("c6b6");
|
|
10122
|
+
|
|
10123
|
+
// `IsArray` abstract operation
|
|
10124
|
+
// https://tc39.es/ecma262/#sec-isarray
|
|
10125
|
+
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
10126
|
+
module.exports = Array.isArray || function isArray(argument) {
|
|
10127
|
+
return classof(argument) == 'Array';
|
|
10128
|
+
};
|
|
10129
|
+
|
|
10130
|
+
|
|
10177
10131
|
/***/ }),
|
|
10178
10132
|
|
|
10179
10133
|
/***/ "eca2":
|
|
@@ -10252,11 +10206,10 @@ if (typeof window !== 'undefined') {
|
|
|
10252
10206
|
var external_commonjs_vue_commonjs2_vue_root_Vue_ = __webpack_require__("8bbf");
|
|
10253
10207
|
var external_commonjs_vue_commonjs2_vue_root_Vue_default = /*#__PURE__*/__webpack_require__.n(external_commonjs_vue_commonjs2_vue_root_Vue_);
|
|
10254
10208
|
|
|
10255
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10209
|
+
// 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&
|
|
10256
10210
|
var render = function render() {
|
|
10257
10211
|
var _vm = this,
|
|
10258
|
-
|
|
10259
|
-
|
|
10212
|
+
_c = _vm._self._c;
|
|
10260
10213
|
return _c('div', {
|
|
10261
10214
|
staticClass: "toggle-input-container",
|
|
10262
10215
|
class: {
|
|
@@ -10297,13 +10250,11 @@ var render = function render() {
|
|
|
10297
10250
|
on: {
|
|
10298
10251
|
"change": function ($event) {
|
|
10299
10252
|
var $$a = _vm.inputVal,
|
|
10300
|
-
|
|
10301
|
-
|
|
10302
|
-
|
|
10253
|
+
$$el = $event.target,
|
|
10254
|
+
$$c = $$el.checked ? true : false;
|
|
10303
10255
|
if (Array.isArray($$a)) {
|
|
10304
10256
|
var $$v = null,
|
|
10305
|
-
|
|
10306
|
-
|
|
10257
|
+
$$i = _vm._i($$a, $$v);
|
|
10307
10258
|
if ($$el.checked) {
|
|
10308
10259
|
$$i < 0 && (_vm.inputVal = $$a.concat([$$v]));
|
|
10309
10260
|
} else {
|
|
@@ -10374,99 +10325,111 @@ var render = function render() {
|
|
|
10374
10325
|
}
|
|
10375
10326
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
10376
10327
|
};
|
|
10377
|
-
|
|
10378
10328
|
var staticRenderFns = [];
|
|
10379
10329
|
|
|
10380
|
-
// CONCATENATED MODULE: ./src/components/forms/ToggleInputText.vue?vue&type=template&id=
|
|
10330
|
+
// CONCATENATED MODULE: ./src/components/forms/ToggleInputText.vue?vue&type=template&id=4d4c2c24&
|
|
10381
10331
|
|
|
10382
10332
|
// EXTERNAL MODULE: ./src/sass/includes/_as_variables.scss
|
|
10383
10333
|
var _as_variables = __webpack_require__("b659");
|
|
10384
10334
|
var _as_variables_default = /*#__PURE__*/__webpack_require__.n(_as_variables);
|
|
10385
10335
|
|
|
10336
|
+
// EXTERNAL MODULE: ./src/components/json/char_list.json
|
|
10337
|
+
var char_list = __webpack_require__("a01d");
|
|
10338
|
+
|
|
10386
10339
|
// CONCATENATED MODULE: ./src/components/mixins/mixins.js
|
|
10387
10340
|
|
|
10341
|
+
|
|
10388
10342
|
const mixins = {
|
|
10389
10343
|
data() {
|
|
10390
|
-
return {
|
|
10344
|
+
return {
|
|
10345
|
+
jsonCharCodes: char_list
|
|
10346
|
+
};
|
|
10391
10347
|
},
|
|
10392
|
-
|
|
10393
10348
|
methods: {
|
|
10394
10349
|
// When a container is clicked, the cosest internal input is focused.
|
|
10395
10350
|
focusClosestInput(event) {
|
|
10396
10351
|
if (event.target.querySelector('input, textarea') !== null) event.target.querySelector('input, textarea').focus();
|
|
10397
10352
|
},
|
|
10398
|
-
|
|
10399
10353
|
// Pass in a string date YYYY-MM-DD and returned as DD/MM/YYYY
|
|
10400
10354
|
dateRangeView(date) {
|
|
10401
10355
|
let formattedDate = '';
|
|
10402
|
-
|
|
10403
10356
|
if (date) {
|
|
10404
10357
|
let splitdate = date.split("-");
|
|
10405
10358
|
formattedDate = splitdate[2] + '/' + splitdate[1] + '/' + splitdate[0];
|
|
10406
10359
|
}
|
|
10407
|
-
|
|
10408
10360
|
return formattedDate;
|
|
10409
10361
|
},
|
|
10410
|
-
|
|
10411
10362
|
// Pass in a Javascript Date object and return as a string YYYY-MM-DD
|
|
10412
10363
|
formatDate(date) {
|
|
10413
10364
|
if (!date) return '';
|
|
10414
10365
|
let dd = date.getDate();
|
|
10415
10366
|
let mm = date.getMonth() + 1;
|
|
10416
|
-
let yyyy = date.getFullYear();
|
|
10367
|
+
let yyyy = date.getFullYear();
|
|
10417
10368
|
|
|
10369
|
+
// add zeros to single figures
|
|
10418
10370
|
if (dd < 10) dd = '0' + dd;
|
|
10419
10371
|
if (mm < 10) mm = '0' + mm;
|
|
10420
10372
|
return yyyy + '-' + mm + '-' + dd;
|
|
10421
10373
|
},
|
|
10422
|
-
|
|
10423
10374
|
/*
|
|
10424
10375
|
* Converts emojis to html entity
|
|
10425
10376
|
* @param str (the entire message)
|
|
10426
10377
|
* @return string of entire message including decoded emojis
|
|
10427
10378
|
*/
|
|
10428
10379
|
convertEmojis(str) {
|
|
10429
|
-
let result = '';
|
|
10430
|
-
|
|
10431
|
-
let decimal2Html = num => `&#${num};`; //converts a character into an HTML entity
|
|
10380
|
+
let result = '';
|
|
10432
10381
|
|
|
10382
|
+
//converts unicode decimal value into an HTML entity
|
|
10383
|
+
let decimal2Html = num => `&#${num};`;
|
|
10433
10384
|
|
|
10385
|
+
//converts a character into an HTML entity
|
|
10434
10386
|
const char2Html = char => {
|
|
10435
|
-
|
|
10387
|
+
// Check for special characters first
|
|
10388
|
+
let codepointVals = Object.values(this.jsonCharCodes).map(value => value.codepoints[0]);
|
|
10389
|
+
let codesArray = Object.entries(this.jsonCharCodes);
|
|
10390
|
+
if (codepointVals.includes(char.codePointAt())) {
|
|
10391
|
+
let namedChar = codesArray.filter(nestedArr => {
|
|
10392
|
+
return nestedArr[1].codepoints[0] == char.codePointAt();
|
|
10393
|
+
});
|
|
10394
|
+
// If it's a special character return now
|
|
10395
|
+
return `${namedChar[0][0]}`;
|
|
10396
|
+
}
|
|
10397
|
+
let item = `${char}`;
|
|
10436
10398
|
|
|
10399
|
+
//spread operator can detect emoji surrogate pairs
|
|
10437
10400
|
if ([...item].length > 1) {
|
|
10438
10401
|
//handle and convert utf surrogate pairs
|
|
10439
10402
|
let concat = '';
|
|
10440
|
-
let unicode = '';
|
|
10403
|
+
let unicode = '';
|
|
10441
10404
|
|
|
10405
|
+
//for each part of the pair
|
|
10442
10406
|
for (let i = 0; i < 2; i++) {
|
|
10443
10407
|
//get the character code value
|
|
10444
|
-
let dec = char[i].codePointAt();
|
|
10445
|
-
|
|
10446
|
-
let bin = dec.toString(2);
|
|
10447
|
-
|
|
10448
|
-
let last10 = bin.slice(-10);
|
|
10449
|
-
|
|
10450
|
-
concat = concat + last10;
|
|
10451
|
-
|
|
10408
|
+
let dec = char[i].codePointAt();
|
|
10409
|
+
//convert to binary
|
|
10410
|
+
let bin = dec.toString(2);
|
|
10411
|
+
//take the last 10 bits
|
|
10412
|
+
let last10 = bin.slice(-10);
|
|
10413
|
+
//concatenate into 20 bit binary
|
|
10414
|
+
concat = concat + last10;
|
|
10415
|
+
//add 0x10000 to get unicode value
|
|
10452
10416
|
unicode = parseInt(concat, 2) + 0x10000;
|
|
10453
|
-
}
|
|
10454
|
-
|
|
10417
|
+
}
|
|
10455
10418
|
|
|
10419
|
+
//html entity from unicode value
|
|
10456
10420
|
return decimal2Html(unicode);
|
|
10457
|
-
}
|
|
10458
|
-
|
|
10421
|
+
}
|
|
10459
10422
|
|
|
10423
|
+
//ASCII character or html entity from character code
|
|
10460
10424
|
return char.codePointAt() > 127 ? decimal2Html(char.codePointAt()) : char;
|
|
10461
|
-
};
|
|
10462
|
-
|
|
10425
|
+
};
|
|
10463
10426
|
|
|
10427
|
+
//check each character
|
|
10464
10428
|
[...str].forEach(char => {
|
|
10465
10429
|
result += char2Html(char);
|
|
10466
10430
|
});
|
|
10467
10431
|
return result;
|
|
10468
10432
|
}
|
|
10469
|
-
|
|
10470
10433
|
}
|
|
10471
10434
|
};
|
|
10472
10435
|
const charts = {
|
|
@@ -10489,9 +10452,7 @@ const charts = {
|
|
|
10489
10452
|
if (values.every(val => val === 0)) {
|
|
10490
10453
|
return false;
|
|
10491
10454
|
}
|
|
10492
|
-
|
|
10493
10455
|
let regressionCalc = this.calculateLinearRegression(values);
|
|
10494
|
-
|
|
10495
10456
|
if (regressionCalc >= trend_impact_base) {
|
|
10496
10457
|
return 1;
|
|
10497
10458
|
} else if (regressionCalc < -trend_impact_base) {
|
|
@@ -10500,7 +10461,6 @@ const charts = {
|
|
|
10500
10461
|
return 0;
|
|
10501
10462
|
}
|
|
10502
10463
|
},
|
|
10503
|
-
|
|
10504
10464
|
/*
|
|
10505
10465
|
* Calculates the linear regression for the trend impact
|
|
10506
10466
|
*
|
|
@@ -10525,38 +10485,29 @@ const charts = {
|
|
|
10525
10485
|
let denominator = nums.length * squared_index - summed_index ** 2;
|
|
10526
10486
|
if (denominator != 0) return numerator / denominator;else return 0;
|
|
10527
10487
|
},
|
|
10528
|
-
|
|
10529
10488
|
//return an array of default colors
|
|
10530
10489
|
getDefaultColors() {
|
|
10531
10490
|
return this.$data.defcolors;
|
|
10532
10491
|
},
|
|
10533
|
-
|
|
10534
10492
|
//return a specific color
|
|
10535
10493
|
getColor(color) {
|
|
10536
10494
|
switch (color) {
|
|
10537
10495
|
case 'black':
|
|
10538
10496
|
return _as_variables_default.a.toggleMetricLabelBlack;
|
|
10539
|
-
|
|
10540
10497
|
case 'gray':
|
|
10541
10498
|
return _as_variables_default.a.toggleMetricLabelGray;
|
|
10542
|
-
|
|
10543
10499
|
case 'green':
|
|
10544
10500
|
return _as_variables_default.a.toggleMetricChartGreen;
|
|
10545
|
-
|
|
10546
10501
|
case 'amber':
|
|
10547
10502
|
return _as_variables_default.a.toggleMetricChartAmber;
|
|
10548
|
-
|
|
10549
10503
|
case 'red':
|
|
10550
10504
|
return _as_variables_default.a.toggleMetricChartRed;
|
|
10551
|
-
|
|
10552
10505
|
case 'blue':
|
|
10553
10506
|
return _as_variables_default.a.toggleMetricChartBlue;
|
|
10554
|
-
|
|
10555
10507
|
case 'additional':
|
|
10556
10508
|
return _as_variables_default.a.toggleMetricChartAdditional;
|
|
10557
10509
|
}
|
|
10558
10510
|
}
|
|
10559
|
-
|
|
10560
10511
|
}
|
|
10561
10512
|
};
|
|
10562
10513
|
// 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&
|
|
@@ -10645,28 +10596,25 @@ const charts = {
|
|
|
10645
10596
|
* Concat message for count characters
|
|
10646
10597
|
* @return string
|
|
10647
10598
|
*/
|
|
10648
|
-
messageLength(
|
|
10649
|
-
let message =
|
|
10650
|
-
let mcount = 0;
|
|
10599
|
+
messageLength(msg, maxLength) {
|
|
10600
|
+
let message = msg;
|
|
10601
|
+
let mcount = 0;
|
|
10651
10602
|
|
|
10652
|
-
|
|
10653
|
-
|
|
10654
|
-
|
|
10603
|
+
// If the emoji flag is set, make sure the character count takes account of the decoded emoji characters (this will include £ signs)
|
|
10604
|
+
if (this.includeEmojiEntitiesInCharCount && msg) {
|
|
10605
|
+
message = this.convertEmojis(msg);
|
|
10606
|
+
mcount = message ? message.length : 0;
|
|
10655
10607
|
} else {
|
|
10656
10608
|
mcount = message ? message.length : 0;
|
|
10657
10609
|
}
|
|
10658
|
-
|
|
10659
|
-
return mcount + ' / ' + maxLenght;
|
|
10610
|
+
return mcount + ' / ' + maxLength;
|
|
10660
10611
|
},
|
|
10661
|
-
|
|
10662
10612
|
onFocus() {
|
|
10663
10613
|
this.$emit('onFocus');
|
|
10664
10614
|
},
|
|
10665
|
-
|
|
10666
10615
|
onBlur() {
|
|
10667
10616
|
this.$emit('onBlur');
|
|
10668
10617
|
}
|
|
10669
|
-
|
|
10670
10618
|
}
|
|
10671
10619
|
});
|
|
10672
10620
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputText.vue?vue&type=script&lang=js&
|
|
@@ -10789,11 +10737,10 @@ var component = normalizeComponent(
|
|
|
10789
10737
|
)
|
|
10790
10738
|
|
|
10791
10739
|
/* harmony default export */ var ToggleInputText = (component.exports);
|
|
10792
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10740
|
+
// 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&
|
|
10793
10741
|
var ToggleInputWebsitevue_type_template_id_7b07579a_render = function render() {
|
|
10794
10742
|
var _vm = this,
|
|
10795
|
-
|
|
10796
|
-
|
|
10743
|
+
_c = _vm._self._c;
|
|
10797
10744
|
return _c('div', {
|
|
10798
10745
|
staticClass: "toggle-input-container",
|
|
10799
10746
|
class: {
|
|
@@ -10861,13 +10808,11 @@ var ToggleInputWebsitevue_type_template_id_7b07579a_render = function render() {
|
|
|
10861
10808
|
"blur": _vm.setWebsite,
|
|
10862
10809
|
"change": function ($event) {
|
|
10863
10810
|
var $$a = _vm.website,
|
|
10864
|
-
|
|
10865
|
-
|
|
10866
|
-
|
|
10811
|
+
$$el = $event.target,
|
|
10812
|
+
$$c = $$el.checked ? true : false;
|
|
10867
10813
|
if (Array.isArray($$a)) {
|
|
10868
10814
|
var $$v = null,
|
|
10869
|
-
|
|
10870
|
-
|
|
10815
|
+
$$i = _vm._i($$a, $$v);
|
|
10871
10816
|
if ($$el.checked) {
|
|
10872
10817
|
$$i < 0 && (_vm.website = $$a.concat([$$v]));
|
|
10873
10818
|
} else {
|
|
@@ -10936,7 +10881,6 @@ var ToggleInputWebsitevue_type_template_id_7b07579a_render = function render() {
|
|
|
10936
10881
|
}
|
|
10937
10882
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
10938
10883
|
};
|
|
10939
|
-
|
|
10940
10884
|
var ToggleInputWebsitevue_type_template_id_7b07579a_staticRenderFns = [];
|
|
10941
10885
|
|
|
10942
10886
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputWebsite.vue?vue&type=template&id=7b07579a&
|
|
@@ -11029,20 +10973,16 @@ var ToggleInputWebsitevue_type_template_id_7b07579a_staticRenderFns = [];
|
|
|
11029
10973
|
let mcount = count ? count.length : 0;
|
|
11030
10974
|
return mcount + ' / ' + maxLenght;
|
|
11031
10975
|
},
|
|
11032
|
-
|
|
11033
10976
|
onFocus() {
|
|
11034
10977
|
this.$emit('onFocus');
|
|
11035
10978
|
},
|
|
11036
|
-
|
|
11037
10979
|
onBlur() {
|
|
11038
10980
|
this.$emit('onBlur');
|
|
11039
10981
|
},
|
|
11040
|
-
|
|
11041
10982
|
setWebsite() {
|
|
11042
10983
|
if (this.inputVal) {
|
|
11043
10984
|
this.website = this.website.replace(/(^\w+:|^)\/\//, '');
|
|
11044
10985
|
var arr = this.inputVal.split("/");
|
|
11045
|
-
|
|
11046
10986
|
if (arr[2] === 'http:' || arr[2] === 'https:') {
|
|
11047
10987
|
this.protocol = arr[2] + "//";
|
|
11048
10988
|
} else {
|
|
@@ -11053,7 +10993,6 @@ var ToggleInputWebsitevue_type_template_id_7b07579a_staticRenderFns = [];
|
|
|
11053
10993
|
this.website = '';
|
|
11054
10994
|
}
|
|
11055
10995
|
}
|
|
11056
|
-
|
|
11057
10996
|
}
|
|
11058
10997
|
});
|
|
11059
10998
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputWebsite.vue?vue&type=script&lang=js&
|
|
@@ -11078,11 +11017,10 @@ var ToggleInputWebsite_component = normalizeComponent(
|
|
|
11078
11017
|
)
|
|
11079
11018
|
|
|
11080
11019
|
/* harmony default export */ var ToggleInputWebsite = (ToggleInputWebsite_component.exports);
|
|
11081
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
11020
|
+
// 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&
|
|
11082
11021
|
var ToggleDatePickervue_type_template_id_44ffdc7f_render = function render() {
|
|
11083
11022
|
var _vm = this,
|
|
11084
|
-
|
|
11085
|
-
|
|
11023
|
+
_c = _vm._self._c;
|
|
11086
11024
|
return _c('div', {
|
|
11087
11025
|
staticClass: "toggle-date-container",
|
|
11088
11026
|
class: ['datepicker-trigger', {
|
|
@@ -11145,7 +11083,6 @@ var ToggleDatePickervue_type_template_id_44ffdc7f_render = function render() {
|
|
|
11145
11083
|
}
|
|
11146
11084
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
|
|
11147
11085
|
};
|
|
11148
|
-
|
|
11149
11086
|
var ToggleDatePickervue_type_template_id_44ffdc7f_staticRenderFns = [];
|
|
11150
11087
|
|
|
11151
11088
|
// CONCATENATED MODULE: ./src/components/forms/ToggleDatePicker.vue?vue&type=template&id=44ffdc7f&
|
|
@@ -12408,13 +12345,11 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12408
12345
|
let state = newVal ? 'open' : 'closed';
|
|
12409
12346
|
this.$emit('state', state);
|
|
12410
12347
|
}
|
|
12411
|
-
|
|
12412
12348
|
},
|
|
12413
12349
|
computed: {
|
|
12414
12350
|
date() {
|
|
12415
12351
|
return this.dateRangeView(this.displayValue);
|
|
12416
12352
|
},
|
|
12417
|
-
|
|
12418
12353
|
// plugin only accepts MM/DD/YYYY, so change this so that it excepts and outputs JS dates
|
|
12419
12354
|
displayValue: {
|
|
12420
12355
|
get: function () {
|
|
@@ -12424,7 +12359,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12424
12359
|
if (modifiedValue) {
|
|
12425
12360
|
modifiedValue = new Date(new Date(modifiedValue + ' 00:00:00').toISOString());
|
|
12426
12361
|
} else modifiedValue = false;
|
|
12427
|
-
|
|
12428
12362
|
this.$emit('input', modifiedValue);
|
|
12429
12363
|
}
|
|
12430
12364
|
}
|
|
@@ -12433,13 +12367,11 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12433
12367
|
clearDate() {
|
|
12434
12368
|
this.displayValue = '';
|
|
12435
12369
|
},
|
|
12436
|
-
|
|
12437
12370
|
toggleDatePickerState(state) {
|
|
12438
12371
|
this.$nextTick(() => {
|
|
12439
12372
|
if (typeof state === 'boolean') this.datePickerOpen = state;else this.datePickerOpen = !this.datePickerOpen;
|
|
12440
12373
|
});
|
|
12441
12374
|
}
|
|
12442
|
-
|
|
12443
12375
|
}
|
|
12444
12376
|
});
|
|
12445
12377
|
// CONCATENATED MODULE: ./src/components/forms/ToggleDatePicker.vue?vue&type=script&lang=js&
|
|
@@ -12464,11 +12396,10 @@ var ToggleDatePicker_component = normalizeComponent(
|
|
|
12464
12396
|
)
|
|
12465
12397
|
|
|
12466
12398
|
/* harmony default export */ var ToggleDatePicker = (ToggleDatePicker_component.exports);
|
|
12467
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12399
|
+
// 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&
|
|
12468
12400
|
var ToggleDateRangePickervue_type_template_id_5605f472_render = function render() {
|
|
12469
12401
|
var _vm = this,
|
|
12470
|
-
|
|
12471
|
-
|
|
12402
|
+
_c = _vm._self._c;
|
|
12472
12403
|
return _c('div', {
|
|
12473
12404
|
staticClass: "toggle-date-container",
|
|
12474
12405
|
class: ['datepicker-trigger', {
|
|
@@ -12540,7 +12471,6 @@ var ToggleDateRangePickervue_type_template_id_5605f472_render = function render(
|
|
|
12540
12471
|
}
|
|
12541
12472
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
|
|
12542
12473
|
};
|
|
12543
|
-
|
|
12544
12474
|
var ToggleDateRangePickervue_type_template_id_5605f472_staticRenderFns = [];
|
|
12545
12475
|
|
|
12546
12476
|
// CONCATENATED MODULE: ./src/components/forms/ToggleDateRangePicker.vue?vue&type=template&id=5605f472&
|
|
@@ -12622,23 +12552,18 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12622
12552
|
let state = newVal ? 'open' : 'closed';
|
|
12623
12553
|
this.$emit('state', state);
|
|
12624
12554
|
}
|
|
12625
|
-
|
|
12626
12555
|
},
|
|
12627
12556
|
computed: {
|
|
12628
12557
|
dateRange() {
|
|
12629
12558
|
let formattedDates = '';
|
|
12630
|
-
|
|
12631
12559
|
if (this.displayValue.start) {
|
|
12632
12560
|
formattedDates = this.dateRangeView(this.displayValue.start);
|
|
12633
12561
|
}
|
|
12634
|
-
|
|
12635
12562
|
if (this.displayValue.end) {
|
|
12636
12563
|
formattedDates += ' - ' + this.dateRangeView(this.displayValue.end);
|
|
12637
12564
|
}
|
|
12638
|
-
|
|
12639
12565
|
return formattedDates;
|
|
12640
12566
|
},
|
|
12641
|
-
|
|
12642
12567
|
displayValue: {
|
|
12643
12568
|
get: function () {
|
|
12644
12569
|
return {
|
|
@@ -12656,7 +12581,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12656
12581
|
end: this.selectedDateToEmit.end ? this.selectedDateToEmit.end : isoDate
|
|
12657
12582
|
};
|
|
12658
12583
|
}
|
|
12659
|
-
|
|
12660
12584
|
if (modifiedValue.end) {
|
|
12661
12585
|
//if modifiedValue.end is present, set selectedDateToEmit.end to it. If there is already a start date stored,
|
|
12662
12586
|
// set selectedDateToEmit.start to it, otherwise use the end date.
|
|
@@ -12665,9 +12589,8 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12665
12589
|
start: this.selectedDateToEmit.start ? this.selectedDateToEmit.start : isoDate,
|
|
12666
12590
|
end: isoDate
|
|
12667
12591
|
};
|
|
12668
|
-
}
|
|
12669
|
-
|
|
12670
|
-
|
|
12592
|
+
}
|
|
12593
|
+
// If the start date is more recent than the end date, set the end date to the start date.
|
|
12671
12594
|
if (new Date(this.selectedDateToEmit.start).getTime() > new Date(this.selectedDateToEmit.end).getTime()) this.selectedDateToEmit.end = this.selectedDateToEmit.start;
|
|
12672
12595
|
}
|
|
12673
12596
|
}
|
|
@@ -12679,14 +12602,12 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12679
12602
|
end: ''
|
|
12680
12603
|
};
|
|
12681
12604
|
},
|
|
12682
|
-
|
|
12683
12605
|
toggleDatePickerState(state, emit) {
|
|
12684
12606
|
this.$nextTick(() => {
|
|
12685
12607
|
this.displayValue = {
|
|
12686
12608
|
start: '',
|
|
12687
12609
|
end: ''
|
|
12688
12610
|
};
|
|
12689
|
-
|
|
12690
12611
|
if (typeof state === 'boolean') {
|
|
12691
12612
|
//if done is clicked, emit
|
|
12692
12613
|
if (emit) this.$emit('input', this.selectedDateToEmit);
|
|
@@ -12694,7 +12615,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vue_airbnb_style_date
|
|
|
12694
12615
|
} else this.datePickerOpen = !this.datePickerOpen;
|
|
12695
12616
|
});
|
|
12696
12617
|
}
|
|
12697
|
-
|
|
12698
12618
|
}
|
|
12699
12619
|
});
|
|
12700
12620
|
// CONCATENATED MODULE: ./src/components/forms/ToggleDateRangePicker.vue?vue&type=script&lang=js&
|
|
@@ -12719,11 +12639,10 @@ var ToggleDateRangePicker_component = normalizeComponent(
|
|
|
12719
12639
|
)
|
|
12720
12640
|
|
|
12721
12641
|
/* harmony default export */ var ToggleDateRangePicker = (ToggleDateRangePicker_component.exports);
|
|
12722
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12642
|
+
// 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&
|
|
12723
12643
|
var ToggleInputSelectvue_type_template_id_1fed8e17_render = function render() {
|
|
12724
12644
|
var _vm = this,
|
|
12725
|
-
|
|
12726
|
-
|
|
12645
|
+
_c = _vm._self._c;
|
|
12727
12646
|
return _c('div', {
|
|
12728
12647
|
staticClass: "toggle-input-container",
|
|
12729
12648
|
class: {
|
|
@@ -12782,7 +12701,6 @@ var ToggleInputSelectvue_type_template_id_1fed8e17_render = function render() {
|
|
|
12782
12701
|
}
|
|
12783
12702
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
12784
12703
|
};
|
|
12785
|
-
|
|
12786
12704
|
var ToggleInputSelectvue_type_template_id_1fed8e17_staticRenderFns = [];
|
|
12787
12705
|
|
|
12788
12706
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputSelect.vue?vue&type=template&id=1fed8e17&
|
|
@@ -12847,17 +12765,14 @@ var ToggleInputSelectvue_type_template_id_1fed8e17_staticRenderFns = [];
|
|
|
12847
12765
|
onFocus() {
|
|
12848
12766
|
this.$emit('onFocus');
|
|
12849
12767
|
},
|
|
12850
|
-
|
|
12851
12768
|
onBlur() {
|
|
12852
12769
|
this.$emit('onBlur');
|
|
12853
12770
|
}
|
|
12854
|
-
|
|
12855
12771
|
},
|
|
12856
12772
|
watch: {
|
|
12857
12773
|
options(options) {
|
|
12858
12774
|
if (options.filter(option => option.value == this.inputVal).length == 0) this.inputVal = "";
|
|
12859
12775
|
}
|
|
12860
|
-
|
|
12861
12776
|
}
|
|
12862
12777
|
});
|
|
12863
12778
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputSelect.vue?vue&type=script&lang=js&
|
|
@@ -12882,11 +12797,10 @@ var ToggleInputSelect_component = normalizeComponent(
|
|
|
12882
12797
|
)
|
|
12883
12798
|
|
|
12884
12799
|
/* harmony default export */ var ToggleInputSelect = (ToggleInputSelect_component.exports);
|
|
12885
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12800
|
+
// 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&
|
|
12886
12801
|
var ToggleInputPercentagevue_type_template_id_1c55c28c_render = function render() {
|
|
12887
12802
|
var _vm = this,
|
|
12888
|
-
|
|
12889
|
-
|
|
12803
|
+
_c = _vm._self._c;
|
|
12890
12804
|
return _c('div', {
|
|
12891
12805
|
staticClass: "toggle-input-container",
|
|
12892
12806
|
class: {
|
|
@@ -12936,7 +12850,6 @@ var ToggleInputPercentagevue_type_template_id_1c55c28c_render = function render(
|
|
|
12936
12850
|
}
|
|
12937
12851
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
12938
12852
|
};
|
|
12939
|
-
|
|
12940
12853
|
var ToggleInputPercentagevue_type_template_id_1c55c28c_staticRenderFns = [];
|
|
12941
12854
|
|
|
12942
12855
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputPercentage.vue?vue&type=template&id=1c55c28c&
|
|
@@ -12996,7 +12909,6 @@ var ToggleInputPercentagevue_type_template_id_1c55c28c_staticRenderFns = [];
|
|
|
12996
12909
|
this.inputVal = '100';
|
|
12997
12910
|
}
|
|
12998
12911
|
}
|
|
12999
|
-
|
|
13000
12912
|
},
|
|
13001
12913
|
computed: {
|
|
13002
12914
|
inputVal: {
|
|
@@ -13026,15 +12938,12 @@ var ToggleInputPercentagevue_type_template_id_1c55c28c_staticRenderFns = [];
|
|
|
13026
12938
|
let mcount = count ? count.length : 0;
|
|
13027
12939
|
return mcount + ' / ' + maxLenght;
|
|
13028
12940
|
},
|
|
13029
|
-
|
|
13030
12941
|
onFocus() {
|
|
13031
12942
|
this.$emit('onFocus');
|
|
13032
12943
|
},
|
|
13033
|
-
|
|
13034
12944
|
onBlur() {
|
|
13035
12945
|
this.$emit('onBlur');
|
|
13036
12946
|
}
|
|
13037
|
-
|
|
13038
12947
|
}
|
|
13039
12948
|
});
|
|
13040
12949
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputPercentage.vue?vue&type=script&lang=js&
|
|
@@ -13059,11 +12968,10 @@ var ToggleInputPercentage_component = normalizeComponent(
|
|
|
13059
12968
|
)
|
|
13060
12969
|
|
|
13061
12970
|
/* harmony default export */ var ToggleInputPercentage = (ToggleInputPercentage_component.exports);
|
|
13062
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12971
|
+
// 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&
|
|
13063
12972
|
var ToggleInputCurrencyvue_type_template_id_26af574e_render = function render() {
|
|
13064
12973
|
var _vm = this,
|
|
13065
|
-
|
|
13066
|
-
|
|
12974
|
+
_c = _vm._self._c;
|
|
13067
12975
|
return _c('div', {
|
|
13068
12976
|
staticClass: "toggle-input-container",
|
|
13069
12977
|
class: {
|
|
@@ -13113,7 +13021,6 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_render = function render()
|
|
|
13113
13021
|
}
|
|
13114
13022
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
13115
13023
|
};
|
|
13116
|
-
|
|
13117
13024
|
var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
|
|
13118
13025
|
|
|
13119
13026
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCurrency.vue?vue&type=template&id=26af574e&
|
|
@@ -13189,11 +13096,12 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
|
|
|
13189
13096
|
inputVal: {
|
|
13190
13097
|
get: function () {
|
|
13191
13098
|
if (this.isInputActive) {
|
|
13192
|
-
if ((this.value === '' || this.value === null) && this.allowBlank) return '';
|
|
13193
|
-
|
|
13099
|
+
if ((this.value === '' || this.value === null) && this.allowBlank) return '';
|
|
13100
|
+
// Cursor is inside the input field. unformat display value for user
|
|
13194
13101
|
return (this.value / this.currencyDenomination).toLocaleString(this.currencyLocale);
|
|
13195
13102
|
} else {
|
|
13196
|
-
if (this.value === '' || this.value == null) return '';
|
|
13103
|
+
if (this.value === '' || this.value == null) return '';
|
|
13104
|
+
// User is not modifying now. Format display value for user interface
|
|
13197
13105
|
|
|
13198
13106
|
return (this.value / this.currencyDenomination).toLocaleString(this.currencyLocale, {
|
|
13199
13107
|
style: 'currency',
|
|
@@ -13203,16 +13111,16 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
|
|
|
13203
13111
|
},
|
|
13204
13112
|
set: function (modifiedValue) {
|
|
13205
13113
|
// if the decimal seperator is a comma replace any inputted commas to periods
|
|
13206
|
-
let newValue = this.unformatString(modifiedValue);
|
|
13114
|
+
let newValue = this.unformatString(modifiedValue);
|
|
13115
|
+
|
|
13116
|
+
// Recalculate value after ignoring "$" and "," in user input
|
|
13207
13117
|
// let newValue = parseFloat(modifiedValue.replace(/[^\d.]/g, ""));
|
|
13208
13118
|
// Ensure that it is not NaN
|
|
13209
|
-
|
|
13210
13119
|
if (isNaN(newValue)) {
|
|
13211
13120
|
if (this.allowBlank) newValue = '';else newValue = 0;
|
|
13212
|
-
}
|
|
13121
|
+
}
|
|
13122
|
+
// Note: we cannot set this.value as it is a "prop". It needs to be passed to parent component
|
|
13213
13123
|
// $emit the event so that parent component gets it
|
|
13214
|
-
|
|
13215
|
-
|
|
13216
13124
|
if (newValue !== '') newValue = Math.round(newValue * this.currencyDenomination);
|
|
13217
13125
|
this.$emit('input', newValue);
|
|
13218
13126
|
}
|
|
@@ -13222,6 +13130,7 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
|
|
|
13222
13130
|
/**
|
|
13223
13131
|
* Unformats from locale currency to float
|
|
13224
13132
|
*/
|
|
13133
|
+
|
|
13225
13134
|
unformatString(string) {
|
|
13226
13135
|
var parts = 1234.5.toLocaleString(this.currencyLocale).match(/(\D+)/g);
|
|
13227
13136
|
var unformatted = string;
|
|
@@ -13229,7 +13138,6 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
|
|
|
13229
13138
|
unformatted = unformatted.split(parts[1]).join(".");
|
|
13230
13139
|
return parseFloat(unformatted);
|
|
13231
13140
|
},
|
|
13232
|
-
|
|
13233
13141
|
/*
|
|
13234
13142
|
* Concat message for count characters
|
|
13235
13143
|
* @return string
|
|
@@ -13238,15 +13146,12 @@ var ToggleInputCurrencyvue_type_template_id_26af574e_staticRenderFns = [];
|
|
|
13238
13146
|
let mcount = count ? count.length : 0;
|
|
13239
13147
|
return mcount + ' / ' + maxLenght;
|
|
13240
13148
|
},
|
|
13241
|
-
|
|
13242
13149
|
onFocus() {
|
|
13243
13150
|
this.$emit('onFocus');
|
|
13244
13151
|
},
|
|
13245
|
-
|
|
13246
13152
|
onBlur() {
|
|
13247
13153
|
this.$emit('onBlur');
|
|
13248
13154
|
}
|
|
13249
|
-
|
|
13250
13155
|
}
|
|
13251
13156
|
});
|
|
13252
13157
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCurrency.vue?vue&type=script&lang=js&
|
|
@@ -13271,11 +13176,10 @@ var ToggleInputCurrency_component = normalizeComponent(
|
|
|
13271
13176
|
)
|
|
13272
13177
|
|
|
13273
13178
|
/* harmony default export */ var ToggleInputCurrency = (ToggleInputCurrency_component.exports);
|
|
13274
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13179
|
+
// 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&
|
|
13275
13180
|
var ToggleInputRadioButtonsvue_type_template_id_2bb47213_render = function render() {
|
|
13276
13181
|
var _vm = this,
|
|
13277
|
-
|
|
13278
|
-
|
|
13182
|
+
_c = _vm._self._c;
|
|
13279
13183
|
return _c('div', {
|
|
13280
13184
|
ref: "toggle-input-container",
|
|
13281
13185
|
staticClass: "toggle-input-container margin-bottom-0",
|
|
@@ -13351,16 +13255,14 @@ var ToggleInputRadioButtonsvue_type_template_id_2bb47213_render = function rende
|
|
|
13351
13255
|
}
|
|
13352
13256
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
|
|
13353
13257
|
};
|
|
13354
|
-
|
|
13355
13258
|
var ToggleInputRadioButtonsvue_type_template_id_2bb47213_staticRenderFns = [];
|
|
13356
13259
|
|
|
13357
13260
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtons.vue?vue&type=template&id=2bb47213&
|
|
13358
13261
|
|
|
13359
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13262
|
+
// 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&
|
|
13360
13263
|
var ToggleInputCheckboxvue_type_template_id_e8a79348_render = function render() {
|
|
13361
13264
|
var _vm = this,
|
|
13362
|
-
|
|
13363
|
-
|
|
13265
|
+
_c = _vm._self._c;
|
|
13364
13266
|
return _c('label', {
|
|
13365
13267
|
staticClass: "toggle-input-checkbox"
|
|
13366
13268
|
}, [_c('input', {
|
|
@@ -13382,13 +13284,11 @@ var ToggleInputCheckboxvue_type_template_id_e8a79348_render = function render()
|
|
|
13382
13284
|
on: {
|
|
13383
13285
|
"change": function ($event) {
|
|
13384
13286
|
var $$a = _vm.inputVal,
|
|
13385
|
-
|
|
13386
|
-
|
|
13387
|
-
|
|
13287
|
+
$$el = $event.target,
|
|
13288
|
+
$$c = $$el.checked ? true : false;
|
|
13388
13289
|
if (Array.isArray($$a)) {
|
|
13389
13290
|
var $$v = _vm.option,
|
|
13390
|
-
|
|
13391
|
-
|
|
13291
|
+
$$i = _vm._i($$a, $$v);
|
|
13392
13292
|
if ($$el.checked) {
|
|
13393
13293
|
$$i < 0 && (_vm.inputVal = $$a.concat([$$v]));
|
|
13394
13294
|
} else {
|
|
@@ -13405,7 +13305,6 @@ var ToggleInputCheckboxvue_type_template_id_e8a79348_render = function render()
|
|
|
13405
13305
|
class: ['toggle-input-checkbox-label', _vm.label_style]
|
|
13406
13306
|
}, [_vm._v(_vm._s(_vm.label))])])]);
|
|
13407
13307
|
};
|
|
13408
|
-
|
|
13409
13308
|
var ToggleInputCheckboxvue_type_template_id_e8a79348_staticRenderFns = [];
|
|
13410
13309
|
|
|
13411
13310
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckbox.vue?vue&type=template&id=e8a79348&
|
|
@@ -13460,11 +13359,9 @@ var ToggleInputCheckboxvue_type_template_id_e8a79348_staticRenderFns = [];
|
|
|
13460
13359
|
onFocus() {
|
|
13461
13360
|
this.$emit('onFocus');
|
|
13462
13361
|
},
|
|
13463
|
-
|
|
13464
13362
|
onBlur() {
|
|
13465
13363
|
this.$emit('onBlur');
|
|
13466
13364
|
}
|
|
13467
|
-
|
|
13468
13365
|
}
|
|
13469
13366
|
});
|
|
13470
13367
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckbox.vue?vue&type=script&lang=js&
|
|
@@ -13551,7 +13448,6 @@ var ToggleInputCheckbox_component = normalizeComponent(
|
|
|
13551
13448
|
if (newVal != '') this.checkboxModel = true;
|
|
13552
13449
|
this.previousValue = newVal;
|
|
13553
13450
|
},
|
|
13554
|
-
|
|
13555
13451
|
checkboxModel(newVal) {
|
|
13556
13452
|
if (!newVal) this.inputVal = '';
|
|
13557
13453
|
/*else if(this.inputVal == ''){
|
|
@@ -13560,17 +13456,15 @@ var ToggleInputCheckbox_component = normalizeComponent(
|
|
|
13560
13456
|
});
|
|
13561
13457
|
}*/
|
|
13562
13458
|
}
|
|
13563
|
-
|
|
13564
13459
|
},
|
|
13460
|
+
|
|
13565
13461
|
methods: {
|
|
13566
13462
|
onFocus() {
|
|
13567
13463
|
this.$emit('onFocus');
|
|
13568
13464
|
},
|
|
13569
|
-
|
|
13570
13465
|
onBlur() {
|
|
13571
13466
|
this.$emit('onBlur');
|
|
13572
13467
|
}
|
|
13573
|
-
|
|
13574
13468
|
}
|
|
13575
13469
|
});
|
|
13576
13470
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtons.vue?vue&type=script&lang=js&
|
|
@@ -13595,11 +13489,10 @@ var ToggleInputRadioButtons_component = normalizeComponent(
|
|
|
13595
13489
|
)
|
|
13596
13490
|
|
|
13597
13491
|
/* harmony default export */ var ToggleInputRadioButtons = (ToggleInputRadioButtons_component.exports);
|
|
13598
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13492
|
+
// 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&
|
|
13599
13493
|
var ToggleInputTextAreavue_type_template_id_60540840_render = function render() {
|
|
13600
13494
|
var _vm = this,
|
|
13601
|
-
|
|
13602
|
-
|
|
13495
|
+
_c = _vm._self._c;
|
|
13603
13496
|
return _c('div', {
|
|
13604
13497
|
staticClass: "toggle-input-container",
|
|
13605
13498
|
class: {
|
|
@@ -13648,7 +13541,6 @@ var ToggleInputTextAreavue_type_template_id_60540840_render = function render()
|
|
|
13648
13541
|
}
|
|
13649
13542
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
13650
13543
|
};
|
|
13651
|
-
|
|
13652
13544
|
var ToggleInputTextAreavue_type_template_id_60540840_staticRenderFns = [];
|
|
13653
13545
|
|
|
13654
13546
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputTextArea.vue?vue&type=template&id=60540840&
|
|
@@ -13731,15 +13623,12 @@ var ToggleInputTextAreavue_type_template_id_60540840_staticRenderFns = [];
|
|
|
13731
13623
|
let mcount = count ? count.length : 0;
|
|
13732
13624
|
return mcount + ' / ' + maxLenght;
|
|
13733
13625
|
},
|
|
13734
|
-
|
|
13735
13626
|
onFocus() {
|
|
13736
13627
|
this.$emit('onFocus');
|
|
13737
13628
|
},
|
|
13738
|
-
|
|
13739
13629
|
onBlur() {
|
|
13740
13630
|
this.$emit('onBlur');
|
|
13741
13631
|
}
|
|
13742
|
-
|
|
13743
13632
|
}
|
|
13744
13633
|
});
|
|
13745
13634
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputTextArea.vue?vue&type=script&lang=js&
|
|
@@ -13764,11 +13653,10 @@ var ToggleInputTextArea_component = normalizeComponent(
|
|
|
13764
13653
|
)
|
|
13765
13654
|
|
|
13766
13655
|
/* harmony default export */ var ToggleInputTextArea = (ToggleInputTextArea_component.exports);
|
|
13767
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13656
|
+
// 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&
|
|
13768
13657
|
var ToggleInputCheckboxContainervue_type_template_id_37cf23ee_render = function render() {
|
|
13769
13658
|
var _vm = this,
|
|
13770
|
-
|
|
13771
|
-
|
|
13659
|
+
_c = _vm._self._c;
|
|
13772
13660
|
return _c('div', {
|
|
13773
13661
|
staticClass: "toggle-input-container margin-bottom-0",
|
|
13774
13662
|
class: {
|
|
@@ -13785,7 +13673,6 @@ var ToggleInputCheckboxContainervue_type_template_id_37cf23ee_render = function
|
|
|
13785
13673
|
staticClass: "toggle-input-label-error"
|
|
13786
13674
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
13787
13675
|
};
|
|
13788
|
-
|
|
13789
13676
|
var ToggleInputCheckboxContainervue_type_template_id_37cf23ee_staticRenderFns = [];
|
|
13790
13677
|
|
|
13791
13678
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckboxContainer.vue?vue&type=template&id=37cf23ee&
|
|
@@ -13814,11 +13701,9 @@ var ToggleInputCheckboxContainervue_type_template_id_37cf23ee_staticRenderFns =
|
|
|
13814
13701
|
onFocus() {
|
|
13815
13702
|
this.$emit('onFocus');
|
|
13816
13703
|
},
|
|
13817
|
-
|
|
13818
13704
|
onBlur() {
|
|
13819
13705
|
this.$emit('onBlur');
|
|
13820
13706
|
}
|
|
13821
|
-
|
|
13822
13707
|
}
|
|
13823
13708
|
});
|
|
13824
13709
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckboxContainer.vue?vue&type=script&lang=js&
|
|
@@ -13843,11 +13728,10 @@ var ToggleInputCheckboxContainer_component = normalizeComponent(
|
|
|
13843
13728
|
)
|
|
13844
13729
|
|
|
13845
13730
|
/* harmony default export */ var ToggleInputCheckboxContainer = (ToggleInputCheckboxContainer_component.exports);
|
|
13846
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13731
|
+
// 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&
|
|
13847
13732
|
var ToggleInternationalPhoneInputSelectvue_type_template_id_61f0b5fb_render = function render() {
|
|
13848
13733
|
var _vm = this,
|
|
13849
|
-
|
|
13850
|
-
|
|
13734
|
+
_c = _vm._self._c;
|
|
13851
13735
|
return _c('div', {
|
|
13852
13736
|
staticClass: "toggle-country-wrapper"
|
|
13853
13737
|
}, [_c('div', {
|
|
@@ -13922,7 +13806,6 @@ var ToggleInternationalPhoneInputSelectvue_type_template_id_61f0b5fb_render = fu
|
|
|
13922
13806
|
on: {
|
|
13923
13807
|
"input": function ($event) {
|
|
13924
13808
|
if ($event.target.composing) return;
|
|
13925
|
-
|
|
13926
13809
|
_vm.$set(_vm.inputVal, "lineNumber", $event.target.value);
|
|
13927
13810
|
}
|
|
13928
13811
|
}
|
|
@@ -13933,7 +13816,6 @@ var ToggleInternationalPhoneInputSelectvue_type_template_id_61f0b5fb_render = fu
|
|
|
13933
13816
|
}
|
|
13934
13817
|
}, [_vm._v(" " + _vm._s(_vm.componentError) + " ")]) : _vm._e()]);
|
|
13935
13818
|
};
|
|
13936
|
-
|
|
13937
13819
|
var ToggleInternationalPhoneInputSelectvue_type_template_id_61f0b5fb_staticRenderFns = [];
|
|
13938
13820
|
|
|
13939
13821
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInternationalPhoneInputSelect.vue?vue&type=template&id=61f0b5fb&
|
|
@@ -13951,7 +13833,6 @@ var index_es5_min = __webpack_require__("839e");
|
|
|
13951
13833
|
countrySelectormodel: ''
|
|
13952
13834
|
};
|
|
13953
13835
|
},
|
|
13954
|
-
|
|
13955
13836
|
props: {
|
|
13956
13837
|
value: {
|
|
13957
13838
|
type: Object,
|
|
@@ -14001,17 +13882,13 @@ var index_es5_min = __webpack_require__("839e");
|
|
|
14001
13882
|
countrySelectormodel(newVal) {
|
|
14002
13883
|
this.inputVal.areaCode = newVal.phone;
|
|
14003
13884
|
}
|
|
14004
|
-
|
|
14005
13885
|
},
|
|
14006
|
-
|
|
14007
13886
|
mounted() {
|
|
14008
13887
|
const {
|
|
14009
13888
|
countries
|
|
14010
13889
|
} = __webpack_require__("839e");
|
|
14011
|
-
|
|
14012
13890
|
this.setDefaultContry(countries);
|
|
14013
13891
|
},
|
|
14014
|
-
|
|
14015
13892
|
methods: {
|
|
14016
13893
|
// Sets the selected country on page load
|
|
14017
13894
|
setDefaultContry(countries) {
|
|
@@ -14019,33 +13896,32 @@ var index_es5_min = __webpack_require__("839e");
|
|
|
14019
13896
|
let co = Object.keys(countries).map(function (key) {
|
|
14020
13897
|
countries[key].code = key;
|
|
14021
13898
|
return countries[key];
|
|
14022
|
-
});
|
|
13899
|
+
});
|
|
14023
13900
|
|
|
13901
|
+
// sort the countires by name, alphabetically
|
|
14024
13902
|
this.countries = co.sort(function (a, b) {
|
|
14025
13903
|
if (a.name < b.name) return -1;
|
|
14026
13904
|
if (a.name > b.name) return 1;
|
|
14027
13905
|
return 0;
|
|
14028
|
-
});
|
|
13906
|
+
});
|
|
14029
13907
|
|
|
13908
|
+
// if a value hasn't been set, lets select UK as default
|
|
14030
13909
|
if (!this.value.areaCode) {
|
|
14031
13910
|
this.value.areaCode = '44';
|
|
14032
|
-
}
|
|
14033
|
-
// otherwise just select the first country found that's a match.
|
|
14034
|
-
|
|
13911
|
+
}
|
|
14035
13912
|
|
|
13913
|
+
// some provinces share phone country codes, including the UK, if it's a 44 number, let's select United Kingdom by default
|
|
13914
|
+
// otherwise just select the first country found that's a match.
|
|
14036
13915
|
let possibleCountries = this.countries.filter(country => country.phone == this.value.areaCode);
|
|
14037
13916
|
let gb = possibleCountries.filter(country => country.code == 'GB');
|
|
14038
13917
|
this.countrySelectormodel = gb.length ? gb[0] : possibleCountries.length ? possibleCountries[0] : '';
|
|
14039
13918
|
},
|
|
14040
|
-
|
|
14041
13919
|
onFocus() {
|
|
14042
13920
|
this.$emit('onFocus');
|
|
14043
13921
|
},
|
|
14044
|
-
|
|
14045
13922
|
onBlur() {
|
|
14046
13923
|
this.$emit('onBlur');
|
|
14047
13924
|
}
|
|
14048
|
-
|
|
14049
13925
|
}
|
|
14050
13926
|
});
|
|
14051
13927
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInternationalPhoneInputSelect.vue?vue&type=script&lang=js&
|
|
@@ -14070,11 +13946,10 @@ var ToggleInternationalPhoneInputSelect_component = normalizeComponent(
|
|
|
14070
13946
|
)
|
|
14071
13947
|
|
|
14072
13948
|
/* harmony default export */ var ToggleInternationalPhoneInputSelect = (ToggleInternationalPhoneInputSelect_component.exports);
|
|
14073
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13949
|
+
// 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&
|
|
14074
13950
|
var ToggleInputCrudFieldvue_type_template_id_5e1accbb_render = function render() {
|
|
14075
13951
|
var _vm = this,
|
|
14076
|
-
|
|
14077
|
-
|
|
13952
|
+
_c = _vm._self._c;
|
|
14078
13953
|
return _c('div', {
|
|
14079
13954
|
staticClass: "toggle-input-crud-container",
|
|
14080
13955
|
class: {
|
|
@@ -14112,16 +13987,14 @@ var ToggleInputCrudFieldvue_type_template_id_5e1accbb_render = function render()
|
|
|
14112
13987
|
staticClass: "toggle-input-label-error"
|
|
14113
13988
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
14114
13989
|
};
|
|
14115
|
-
|
|
14116
13990
|
var ToggleInputCrudFieldvue_type_template_id_5e1accbb_staticRenderFns = [];
|
|
14117
13991
|
|
|
14118
13992
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCrudField.vue?vue&type=template&id=5e1accbb&
|
|
14119
13993
|
|
|
14120
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13994
|
+
// 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&
|
|
14121
13995
|
var ToggleButtonvue_type_template_id_66f2c9bb_render = function render() {
|
|
14122
13996
|
var _vm = this,
|
|
14123
|
-
|
|
14124
|
-
|
|
13997
|
+
_c = _vm._self._c;
|
|
14125
13998
|
return _c('div', {
|
|
14126
13999
|
class: ['toggle-button-container', {
|
|
14127
14000
|
'toggle-button-container-mini': _vm.isMini
|
|
@@ -14156,16 +14029,11 @@ var ToggleButtonvue_type_template_id_66f2c9bb_render = function render() {
|
|
|
14156
14029
|
return [_vm._v(_vm._s(_vm.buttonText))];
|
|
14157
14030
|
})], 2)]);
|
|
14158
14031
|
};
|
|
14159
|
-
|
|
14160
14032
|
var ToggleButtonvue_type_template_id_66f2c9bb_staticRenderFns = [];
|
|
14161
14033
|
|
|
14162
14034
|
// CONCATENATED MODULE: ./src/components/buttons/ToggleButton.vue?vue&type=template&id=66f2c9bb&
|
|
14163
14035
|
|
|
14164
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.includes.js
|
|
14165
|
-
var es_array_includes = __webpack_require__("caad");
|
|
14166
|
-
|
|
14167
14036
|
// 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&
|
|
14168
|
-
|
|
14169
14037
|
/* harmony default export */ var ToggleButtonvue_type_script_lang_js_ = ({
|
|
14170
14038
|
name: 'ButtonPrimary',
|
|
14171
14039
|
props: {
|
|
@@ -14176,7 +14044,6 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14176
14044
|
type: String,
|
|
14177
14045
|
default: "button"
|
|
14178
14046
|
},
|
|
14179
|
-
|
|
14180
14047
|
/**
|
|
14181
14048
|
* The HTML button type i.e. `submit` or `button`
|
|
14182
14049
|
*/
|
|
@@ -14184,7 +14051,6 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14184
14051
|
type: String,
|
|
14185
14052
|
default: "text"
|
|
14186
14053
|
},
|
|
14187
|
-
|
|
14188
14054
|
/**
|
|
14189
14055
|
* If it's a link, then the URL of the link
|
|
14190
14056
|
*/
|
|
@@ -14192,14 +14058,12 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14192
14058
|
type: String,
|
|
14193
14059
|
default: ""
|
|
14194
14060
|
},
|
|
14195
|
-
|
|
14196
14061
|
/**
|
|
14197
14062
|
* Should the button be disabled?
|
|
14198
14063
|
*/
|
|
14199
14064
|
disabled: {
|
|
14200
14065
|
default: false
|
|
14201
14066
|
},
|
|
14202
|
-
|
|
14203
14067
|
/**
|
|
14204
14068
|
* Is the button in a loading state?
|
|
14205
14069
|
*/
|
|
@@ -14207,7 +14071,6 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14207
14071
|
type: Boolean,
|
|
14208
14072
|
default: false
|
|
14209
14073
|
},
|
|
14210
|
-
|
|
14211
14074
|
/**
|
|
14212
14075
|
* The button visual style out of: `neutral`, `confirm`, `abort`
|
|
14213
14076
|
*/
|
|
@@ -14220,7 +14083,6 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14220
14083
|
isMini() {
|
|
14221
14084
|
return this.buttonStyle.includes('mini');
|
|
14222
14085
|
}
|
|
14223
|
-
|
|
14224
14086
|
},
|
|
14225
14087
|
watch: {
|
|
14226
14088
|
disabled() {
|
|
@@ -14228,13 +14090,11 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14228
14090
|
this.disableLinks();
|
|
14229
14091
|
}
|
|
14230
14092
|
},
|
|
14231
|
-
|
|
14232
14093
|
loading() {
|
|
14233
14094
|
if (this.$slots.default !== undefined) {
|
|
14234
14095
|
this.disableLinks();
|
|
14235
14096
|
}
|
|
14236
14097
|
}
|
|
14237
|
-
|
|
14238
14098
|
},
|
|
14239
14099
|
methods: {
|
|
14240
14100
|
/**
|
|
@@ -14245,7 +14105,6 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14245
14105
|
slot.data.attrs.href = this.disabled ? null : slot.data.attrs.href;
|
|
14246
14106
|
});
|
|
14247
14107
|
},
|
|
14248
|
-
|
|
14249
14108
|
click() {
|
|
14250
14109
|
/**
|
|
14251
14110
|
* Emitted when the button is clicked.
|
|
@@ -14254,15 +14113,12 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
14254
14113
|
*/
|
|
14255
14114
|
this.$emit('click');
|
|
14256
14115
|
}
|
|
14257
|
-
|
|
14258
14116
|
},
|
|
14259
|
-
|
|
14260
14117
|
created() {
|
|
14261
14118
|
if (this.$slots.default !== undefined) {
|
|
14262
14119
|
this.disableLinks();
|
|
14263
14120
|
}
|
|
14264
14121
|
}
|
|
14265
|
-
|
|
14266
14122
|
});
|
|
14267
14123
|
// CONCATENATED MODULE: ./src/components/buttons/ToggleButton.vue?vue&type=script&lang=js&
|
|
14268
14124
|
/* harmony default export */ var buttons_ToggleButtonvue_type_script_lang_js_ = (ToggleButtonvue_type_script_lang_js_);
|
|
@@ -14325,7 +14181,6 @@ var ToggleButton_component = normalizeComponent(
|
|
|
14325
14181
|
let labelLength = this.label.split('').length;
|
|
14326
14182
|
return labelLength <= 15 ? this.label : this.label.slice(0, 15) + '...';
|
|
14327
14183
|
}
|
|
14328
|
-
|
|
14329
14184
|
},
|
|
14330
14185
|
methods: {
|
|
14331
14186
|
clickEmpty(e) {
|
|
@@ -14333,7 +14188,6 @@ var ToggleButton_component = normalizeComponent(
|
|
|
14333
14188
|
this.$emit('add');
|
|
14334
14189
|
}
|
|
14335
14190
|
}
|
|
14336
|
-
|
|
14337
14191
|
}
|
|
14338
14192
|
});
|
|
14339
14193
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCrudField.vue?vue&type=script&lang=js&
|
|
@@ -14358,11 +14212,10 @@ var ToggleInputCrudField_component = normalizeComponent(
|
|
|
14358
14212
|
)
|
|
14359
14213
|
|
|
14360
14214
|
/* harmony default export */ var ToggleInputCrudField = (ToggleInputCrudField_component.exports);
|
|
14361
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14215
|
+
// 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&
|
|
14362
14216
|
var ToggleInputGridvue_type_template_id_0cb87c32_render = function render() {
|
|
14363
14217
|
var _vm = this,
|
|
14364
|
-
|
|
14365
|
-
|
|
14218
|
+
_c = _vm._self._c;
|
|
14366
14219
|
return _c('div', {
|
|
14367
14220
|
staticClass: "toggle-grid-input-container"
|
|
14368
14221
|
}, [_vm._l(_vm.inputVal, function (row, rowindex) {
|
|
@@ -14489,16 +14342,17 @@ var ToggleInputGridvue_type_template_id_0cb87c32_render = function render() {
|
|
|
14489
14342
|
}
|
|
14490
14343
|
})], 1)], 1)], 2);
|
|
14491
14344
|
};
|
|
14492
|
-
|
|
14493
14345
|
var ToggleInputGridvue_type_template_id_0cb87c32_staticRenderFns = [];
|
|
14494
14346
|
|
|
14495
14347
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputGrid.vue?vue&type=template&id=0cb87c32&
|
|
14496
14348
|
|
|
14497
|
-
//
|
|
14349
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
|
|
14350
|
+
var es_array_push = __webpack_require__("14d9");
|
|
14351
|
+
|
|
14352
|
+
// 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&
|
|
14498
14353
|
var ToggleModalvue_type_template_id_35748012_render = function render() {
|
|
14499
14354
|
var _vm = this,
|
|
14500
|
-
|
|
14501
|
-
|
|
14355
|
+
_c = _vm._self._c;
|
|
14502
14356
|
return _c('transition', {
|
|
14503
14357
|
attrs: {
|
|
14504
14358
|
"name": "toggle-modal"
|
|
@@ -14524,7 +14378,6 @@ var ToggleModalvue_type_template_id_35748012_render = function render() {
|
|
|
14524
14378
|
}
|
|
14525
14379
|
}), _vm._t("default")], 2)])]) : _vm._e()]);
|
|
14526
14380
|
};
|
|
14527
|
-
|
|
14528
14381
|
var ToggleModalvue_type_template_id_35748012_staticRenderFns = [];
|
|
14529
14382
|
|
|
14530
14383
|
// CONCATENATED MODULE: ./src/components/modals/ToggleModal.vue?vue&type=template&id=35748012&
|
|
@@ -14552,26 +14405,21 @@ var ToggleModalvue_type_template_id_35748012_staticRenderFns = [];
|
|
|
14552
14405
|
this.$toggle_event.$on('modal_show', this.show);
|
|
14553
14406
|
this.$toggle_event.$on('modal_hide', this.hide);
|
|
14554
14407
|
},
|
|
14555
|
-
|
|
14556
14408
|
beforeDestroy() {
|
|
14557
14409
|
this.$toggle_event.$off('modal_show', this.show);
|
|
14558
14410
|
this.$toggle_event.$off('modal_hide', this.hide);
|
|
14559
14411
|
},
|
|
14560
|
-
|
|
14561
14412
|
computed: {},
|
|
14562
14413
|
methods: {
|
|
14563
14414
|
show(payload) {
|
|
14564
14415
|
if (payload == this.name) this.showModal = true;
|
|
14565
14416
|
},
|
|
14566
|
-
|
|
14567
14417
|
hide(payload) {
|
|
14568
14418
|
if (payload == this.name) this.showModal = false;
|
|
14569
14419
|
},
|
|
14570
|
-
|
|
14571
14420
|
backgroundClick(e) {
|
|
14572
14421
|
if (e.target.classList.contains('toggle-modal-close')) this.showModal = false;
|
|
14573
14422
|
}
|
|
14574
|
-
|
|
14575
14423
|
}
|
|
14576
14424
|
});
|
|
14577
14425
|
// CONCATENATED MODULE: ./src/components/modals/ToggleModal.vue?vue&type=script&lang=js&
|
|
@@ -14596,16 +14444,14 @@ var ToggleModal_component = normalizeComponent(
|
|
|
14596
14444
|
)
|
|
14597
14445
|
|
|
14598
14446
|
/* harmony default export */ var ToggleModal = (ToggleModal_component.exports);
|
|
14599
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14447
|
+
// 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&
|
|
14600
14448
|
var ToggleHeaderTextLargevue_type_template_id_47a1f9bc_render = function render() {
|
|
14601
14449
|
var _vm = this,
|
|
14602
|
-
|
|
14603
|
-
|
|
14450
|
+
_c = _vm._self._c;
|
|
14604
14451
|
return _c('h3', {
|
|
14605
14452
|
staticClass: "toggle-h2-header"
|
|
14606
14453
|
}, [_vm._t("default")], 2);
|
|
14607
14454
|
};
|
|
14608
|
-
|
|
14609
14455
|
var ToggleHeaderTextLargevue_type_template_id_47a1f9bc_staticRenderFns = [];
|
|
14610
14456
|
|
|
14611
14457
|
// CONCATENATED MODULE: ./src/components/text/ToggleHeaderTextLarge.vue?vue&type=template&id=47a1f9bc&
|
|
@@ -14634,6 +14480,7 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14634
14480
|
|
|
14635
14481
|
|
|
14636
14482
|
|
|
14483
|
+
|
|
14637
14484
|
/* harmony default export */ var ToggleInputGridvue_type_script_lang_js_ = ({
|
|
14638
14485
|
mixins: [mixins],
|
|
14639
14486
|
components: {
|
|
@@ -14694,7 +14541,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14694
14541
|
data: function () {
|
|
14695
14542
|
return {
|
|
14696
14543
|
draggingIndex: null,
|
|
14697
|
-
|
|
14698
14544
|
/*rowModel:[
|
|
14699
14545
|
{
|
|
14700
14546
|
layout:[12]
|
|
@@ -14740,24 +14586,23 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14740
14586
|
}
|
|
14741
14587
|
},
|
|
14742
14588
|
deep: true // watches changes within an array of objects
|
|
14743
|
-
|
|
14744
14589
|
}
|
|
14745
14590
|
},
|
|
14591
|
+
|
|
14746
14592
|
methods: {
|
|
14747
14593
|
allowDrop(ev) {
|
|
14748
14594
|
ev.preventDefault();
|
|
14749
14595
|
},
|
|
14750
|
-
|
|
14751
14596
|
/**
|
|
14752
14597
|
* Drag handler
|
|
14753
14598
|
* @param {Number} [row] [row dropped into]
|
|
14754
14599
|
* @param {Number} [column] [column dropped into]
|
|
14755
14600
|
* @return Void
|
|
14756
14601
|
*/
|
|
14602
|
+
|
|
14757
14603
|
drag(row, column) {
|
|
14758
14604
|
this.draggingIndex = [row, column];
|
|
14759
14605
|
},
|
|
14760
|
-
|
|
14761
14606
|
/**
|
|
14762
14607
|
* Updates the layout of the grid and content automatically to the most logical position
|
|
14763
14608
|
* Can be called without params, if no content is being added to the grid
|
|
@@ -14769,7 +14614,8 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14769
14614
|
updateGridLayout(row, column, dropped_content) {
|
|
14770
14615
|
// if row is undefined, we're not adding a new column
|
|
14771
14616
|
let built_content = this.buildContentArray(row, column, dropped_content);
|
|
14772
|
-
this.setGridContent(built_content.column_array);
|
|
14617
|
+
this.setGridContent(built_content.column_array);
|
|
14618
|
+
// this.removeEmptyRows();
|
|
14773
14619
|
},
|
|
14774
14620
|
|
|
14775
14621
|
/*
|
|
@@ -14781,7 +14627,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14781
14627
|
*/
|
|
14782
14628
|
getGridReferenceOfColumn(column_number) {
|
|
14783
14629
|
let column_count = 0;
|
|
14784
|
-
|
|
14785
14630
|
for (let rowindex = 0; rowindex < this.inputVal.length; rowindex++) {
|
|
14786
14631
|
for (let columnindex = 0; columnindex < this.inputVal[rowindex].content.length; columnindex++) {
|
|
14787
14632
|
if (column_number == column_count) return [rowindex, columnindex];
|
|
@@ -14789,7 +14634,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14789
14634
|
}
|
|
14790
14635
|
}
|
|
14791
14636
|
},
|
|
14792
|
-
|
|
14793
14637
|
/*
|
|
14794
14638
|
* Remove a row from the grid
|
|
14795
14639
|
*
|
|
@@ -14801,12 +14645,10 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14801
14645
|
this.$delete(this.inputVal, row_index);
|
|
14802
14646
|
this.$toggle_event.$emit('modal_hide', 'confirm_delete_row');
|
|
14803
14647
|
},
|
|
14804
|
-
|
|
14805
14648
|
deleteCurrentRow(rowindex) {
|
|
14806
14649
|
this.editingGridRow = rowindex;
|
|
14807
14650
|
this.$toggle_event.$emit('modal_show', 'confirm_delete_row');
|
|
14808
14651
|
},
|
|
14809
|
-
|
|
14810
14652
|
/*
|
|
14811
14653
|
* Adds the array of content to the grid layout
|
|
14812
14654
|
*
|
|
@@ -14814,38 +14656,35 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14814
14656
|
*
|
|
14815
14657
|
* @return Void
|
|
14816
14658
|
*/
|
|
14659
|
+
|
|
14817
14660
|
setGridContent(content) {
|
|
14818
14661
|
// set the new content to the grid layout
|
|
14819
14662
|
for (let rowindex = 0; rowindex < this.inputVal.length; rowindex++) {
|
|
14820
14663
|
let old_number_of_columns = this.inputVal[rowindex].content.length;
|
|
14821
14664
|
this.inputVal[rowindex].content.length = this.inputVal[rowindex].layout.length;
|
|
14822
|
-
|
|
14823
14665
|
for (let columnindex = 0; columnindex < this.inputVal[rowindex].content.length; columnindex++) {
|
|
14824
14666
|
old_number_of_columns--;
|
|
14825
14667
|
this.$set(this.inputVal[rowindex].content, columnindex, content.shift());
|
|
14826
|
-
}
|
|
14827
|
-
|
|
14668
|
+
}
|
|
14828
14669
|
|
|
14670
|
+
// If we're reducing the number of columns in a row, remove any of the extra blank columns that were in that row
|
|
14829
14671
|
while (old_number_of_columns > 0) {
|
|
14830
14672
|
old_number_of_columns--;
|
|
14831
|
-
|
|
14832
14673
|
if (!content[0]) {
|
|
14833
14674
|
content.shift();
|
|
14834
14675
|
}
|
|
14835
14676
|
}
|
|
14836
|
-
}
|
|
14837
|
-
|
|
14677
|
+
}
|
|
14838
14678
|
|
|
14679
|
+
// Add new rows for any fields that no longer fit in the grid
|
|
14839
14680
|
while (content.length) {
|
|
14840
14681
|
let value = content.shift();
|
|
14841
|
-
|
|
14842
14682
|
if (value) {
|
|
14843
14683
|
this.addRow();
|
|
14844
14684
|
this.$set(this.inputVal[this.inputVal.length - 1].content, 0, value);
|
|
14845
14685
|
}
|
|
14846
14686
|
}
|
|
14847
14687
|
},
|
|
14848
|
-
|
|
14849
14688
|
/*
|
|
14850
14689
|
* Build a row agnostic array of content
|
|
14851
14690
|
* Can be called without params, if no content is being added to the grid
|
|
@@ -14856,11 +14695,10 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14856
14695
|
*
|
|
14857
14696
|
* @return { {Array} [column_array] [Array of columns],{Number} [content_inserted_at] [Index of inserted content] }
|
|
14858
14697
|
*/
|
|
14698
|
+
|
|
14859
14699
|
buildContentArray(row, column, dropped_content) {
|
|
14860
14700
|
let column_array = []; // the array to return
|
|
14861
|
-
|
|
14862
14701
|
let content_inserted_at = false; // have we reached the index that the new content has been added to?
|
|
14863
|
-
|
|
14864
14702
|
let spaceMadeUp = false; // have we managed to make up space for the extra content?
|
|
14865
14703
|
|
|
14866
14704
|
for (let rowindex = 0; rowindex < this.inputVal.length; rowindex++) {
|
|
@@ -14868,11 +14706,10 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14868
14706
|
// if we're adding a new column at this grid co-ordinate, add it in here
|
|
14869
14707
|
if (rowindex == row && columnindex == column) {
|
|
14870
14708
|
column_array.push(dropped_content); // add in our extra index
|
|
14871
|
-
|
|
14872
14709
|
content_inserted_at = column_array.length - 1;
|
|
14873
|
-
}
|
|
14874
|
-
|
|
14710
|
+
}
|
|
14875
14711
|
|
|
14712
|
+
// 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
|
|
14876
14713
|
if (content_inserted_at !== false && !this.inputVal[rowindex].content[columnindex] && !spaceMadeUp) {
|
|
14877
14714
|
spaceMadeUp = true;
|
|
14878
14715
|
} else {
|
|
@@ -14881,13 +14718,11 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14881
14718
|
}
|
|
14882
14719
|
}
|
|
14883
14720
|
}
|
|
14884
|
-
|
|
14885
14721
|
return {
|
|
14886
14722
|
column_array: column_array,
|
|
14887
14723
|
content_inserted_at: content_inserted_at
|
|
14888
14724
|
};
|
|
14889
14725
|
},
|
|
14890
|
-
|
|
14891
14726
|
/**
|
|
14892
14727
|
* Checks if a given row index has content set
|
|
14893
14728
|
*
|
|
@@ -14896,12 +14731,9 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14896
14731
|
*/
|
|
14897
14732
|
rowHasContent(row_index) {
|
|
14898
14733
|
let row_content_found = false;
|
|
14899
|
-
|
|
14900
14734
|
for (let columnindex = 0; columnindex < this.inputVal[row_index].content.length; columnindex++) if (this.inputVal[row_index].content[columnindex]) row_content_found = true;
|
|
14901
|
-
|
|
14902
14735
|
return row_content_found;
|
|
14903
14736
|
},
|
|
14904
|
-
|
|
14905
14737
|
/**
|
|
14906
14738
|
* Removes excess row content. For example if a layout is [3,3,3] and content is
|
|
14907
14739
|
* [true,false,true,true] then it sets the content to [true, false, true]
|
|
@@ -14911,7 +14743,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14911
14743
|
removeExcessContent() {
|
|
14912
14744
|
for (let row_index = 0; row_index < this.inputVal.length; row_index++) this.inputVal[row_index].content.length = this.inputVal[row_index].layout.length;
|
|
14913
14745
|
},
|
|
14914
|
-
|
|
14915
14746
|
/**
|
|
14916
14747
|
* Removes empty rows from the grid
|
|
14917
14748
|
*
|
|
@@ -14919,22 +14750,20 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14919
14750
|
*/
|
|
14920
14751
|
removeEmptyRows() {
|
|
14921
14752
|
this.removeExcessContent();
|
|
14922
|
-
|
|
14923
14753
|
for (let rowindex = 0; rowindex < this.inputVal.length; rowindex++) if (!this.rowHasContent(rowindex)) this.inputVal.splice(rowindex, 1);
|
|
14924
14754
|
},
|
|
14925
|
-
|
|
14926
14755
|
/**
|
|
14927
14756
|
* Drop content handler
|
|
14928
14757
|
* @param {Number} [row] [row dropped into]
|
|
14929
14758
|
* @param {Number} [column] [column dropped into]
|
|
14930
14759
|
* @return Void
|
|
14931
14760
|
*/
|
|
14761
|
+
|
|
14932
14762
|
drop(row, column) {
|
|
14933
14763
|
let dropped_content = this.inputVal[this.draggingIndex[0]].content[this.draggingIndex[1]];
|
|
14934
14764
|
this.$set(this.inputVal[this.draggingIndex[0]].content, this.draggingIndex[1], null);
|
|
14935
14765
|
this.updateGridLayout(row, column, dropped_content);
|
|
14936
14766
|
},
|
|
14937
|
-
|
|
14938
14767
|
/**
|
|
14939
14768
|
* Add a blank row to the grid
|
|
14940
14769
|
*/
|
|
@@ -14944,7 +14773,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14944
14773
|
content: [null]
|
|
14945
14774
|
});
|
|
14946
14775
|
},
|
|
14947
|
-
|
|
14948
14776
|
/**
|
|
14949
14777
|
* Get a column percentage width
|
|
14950
14778
|
* @param {Nunber} [columns] [number of columns (out of 12) the column takes up]
|
|
@@ -14953,7 +14781,6 @@ var ToggleHeaderTextLarge_component = normalizeComponent(
|
|
|
14953
14781
|
getColumnWidth(columns) {
|
|
14954
14782
|
return 100 / (12 / columns);
|
|
14955
14783
|
}
|
|
14956
|
-
|
|
14957
14784
|
}
|
|
14958
14785
|
});
|
|
14959
14786
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputGrid.vue?vue&type=script&lang=js&
|
|
@@ -14978,11 +14805,10 @@ var ToggleInputGrid_component = normalizeComponent(
|
|
|
14978
14805
|
)
|
|
14979
14806
|
|
|
14980
14807
|
/* harmony default export */ var ToggleInputGrid = (ToggleInputGrid_component.exports);
|
|
14981
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14808
|
+
// 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&
|
|
14982
14809
|
var ToggleInputCheckboxInlinevue_type_template_id_65994c14_render = function render() {
|
|
14983
14810
|
var _vm = this,
|
|
14984
|
-
|
|
14985
|
-
|
|
14811
|
+
_c = _vm._self._c;
|
|
14986
14812
|
return _c('label', {
|
|
14987
14813
|
staticClass: "toggle-input-checkbox-inline"
|
|
14988
14814
|
}, [_c('input', {
|
|
@@ -15003,13 +14829,11 @@ var ToggleInputCheckboxInlinevue_type_template_id_65994c14_render = function ren
|
|
|
15003
14829
|
on: {
|
|
15004
14830
|
"change": function ($event) {
|
|
15005
14831
|
var $$a = _vm.inputVal,
|
|
15006
|
-
|
|
15007
|
-
|
|
15008
|
-
|
|
14832
|
+
$$el = $event.target,
|
|
14833
|
+
$$c = $$el.checked ? true : false;
|
|
15009
14834
|
if (Array.isArray($$a)) {
|
|
15010
14835
|
var $$v = null,
|
|
15011
|
-
|
|
15012
|
-
|
|
14836
|
+
$$i = _vm._i($$a, $$v);
|
|
15013
14837
|
if ($$el.checked) {
|
|
15014
14838
|
$$i < 0 && (_vm.inputVal = $$a.concat([$$v]));
|
|
15015
14839
|
} else {
|
|
@@ -15026,7 +14850,6 @@ var ToggleInputCheckboxInlinevue_type_template_id_65994c14_render = function ren
|
|
|
15026
14850
|
class: ['toggle-input-checkbox-label', _vm.label_style]
|
|
15027
14851
|
}, [_vm._v(_vm._s(_vm.label))])])]);
|
|
15028
14852
|
};
|
|
15029
|
-
|
|
15030
14853
|
var ToggleInputCheckboxInlinevue_type_template_id_65994c14_staticRenderFns = [];
|
|
15031
14854
|
|
|
15032
14855
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckboxInline.vue?vue&type=template&id=65994c14&
|
|
@@ -15078,11 +14901,9 @@ var ToggleInputCheckboxInlinevue_type_template_id_65994c14_staticRenderFns = [];
|
|
|
15078
14901
|
onFocus() {
|
|
15079
14902
|
this.$emit('onFocus');
|
|
15080
14903
|
},
|
|
15081
|
-
|
|
15082
14904
|
onBlur() {
|
|
15083
14905
|
this.$emit('onBlur');
|
|
15084
14906
|
}
|
|
15085
|
-
|
|
15086
14907
|
}
|
|
15087
14908
|
});
|
|
15088
14909
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputCheckboxInline.vue?vue&type=script&lang=js&
|
|
@@ -15107,11 +14928,10 @@ var ToggleInputCheckboxInline_component = normalizeComponent(
|
|
|
15107
14928
|
)
|
|
15108
14929
|
|
|
15109
14930
|
/* harmony default export */ var ToggleInputCheckboxInline = (ToggleInputCheckboxInline_component.exports);
|
|
15110
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15111
|
-
var
|
|
14931
|
+
// 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&
|
|
14932
|
+
var ToggleInputImagevue_type_template_id_610897a3_render = function render() {
|
|
15112
14933
|
var _vm = this,
|
|
15113
|
-
|
|
15114
|
-
|
|
14934
|
+
_c = _vm._self._c;
|
|
15115
14935
|
return _c('div', {
|
|
15116
14936
|
staticClass: "toggle-input-container",
|
|
15117
14937
|
class: {
|
|
@@ -15149,6 +14969,7 @@ var ToggleInputImagevue_type_template_id_6dd50c98_render = function render() {
|
|
|
15149
14969
|
}
|
|
15150
14970
|
}, [_c('div', {
|
|
15151
14971
|
staticClass: "toggle-item-img toggle-dark-grey toggle-center",
|
|
14972
|
+
class: _vm.moveIconClass,
|
|
15152
14973
|
style: {
|
|
15153
14974
|
background: `rgb(243, 237, 237) url(${image.url}) no-repeat center top`,
|
|
15154
14975
|
height: _vm.previewRatio == 'letterbox' ? _vm.thumbnailWidth / 2 + 'px' : _vm.thumbnailWidth + 'px',
|
|
@@ -15188,21 +15009,18 @@ var ToggleInputImagevue_type_template_id_6dd50c98_render = function render() {
|
|
|
15188
15009
|
staticClass: "toggle-input-label-error"
|
|
15189
15010
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
|
|
15190
15011
|
};
|
|
15012
|
+
var ToggleInputImagevue_type_template_id_610897a3_staticRenderFns = [];
|
|
15191
15013
|
|
|
15192
|
-
|
|
15193
|
-
|
|
15194
|
-
// CONCATENATED MODULE: ./src/components/forms/ToggleInputImage.vue?vue&type=template&id=6dd50c98&
|
|
15014
|
+
// CONCATENATED MODULE: ./src/components/forms/ToggleInputImage.vue?vue&type=template&id=610897a3&
|
|
15195
15015
|
|
|
15196
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15016
|
+
// 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&
|
|
15197
15017
|
var ToggleHelperTextSmallvue_type_template_id_d8210f4e_render = function render() {
|
|
15198
15018
|
var _vm = this,
|
|
15199
|
-
|
|
15200
|
-
|
|
15019
|
+
_c = _vm._self._c;
|
|
15201
15020
|
return _c('p', {
|
|
15202
15021
|
staticClass: "toggle-helper-text-small"
|
|
15203
15022
|
}, [_vm._t("default")], 2);
|
|
15204
15023
|
};
|
|
15205
|
-
|
|
15206
15024
|
var ToggleHelperTextSmallvue_type_template_id_d8210f4e_staticRenderFns = [];
|
|
15207
15025
|
|
|
15208
15026
|
// CONCATENATED MODULE: ./src/components/text/ToggleHelperTextSmall.vue?vue&type=template&id=d8210f4e&
|
|
@@ -15226,11 +15044,10 @@ var ToggleHelperTextSmall_component = normalizeComponent(
|
|
|
15226
15044
|
)
|
|
15227
15045
|
|
|
15228
15046
|
/* harmony default export */ var ToggleHelperTextSmall = (ToggleHelperTextSmall_component.exports);
|
|
15229
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15047
|
+
// 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&
|
|
15230
15048
|
var ToggleFillLoadervue_type_template_id_2fbb049c_render = function render() {
|
|
15231
15049
|
var _vm = this,
|
|
15232
|
-
|
|
15233
|
-
|
|
15050
|
+
_c = _vm._self._c;
|
|
15234
15051
|
return _c('div', {
|
|
15235
15052
|
staticClass: "toggle-fill-loader-container",
|
|
15236
15053
|
class: {
|
|
@@ -15238,11 +15055,9 @@ var ToggleFillLoadervue_type_template_id_2fbb049c_render = function render() {
|
|
|
15238
15055
|
}
|
|
15239
15056
|
}, [_vm._m(0)]);
|
|
15240
15057
|
};
|
|
15241
|
-
|
|
15242
15058
|
var ToggleFillLoadervue_type_template_id_2fbb049c_staticRenderFns = [function () {
|
|
15243
15059
|
var _vm = this,
|
|
15244
|
-
|
|
15245
|
-
|
|
15060
|
+
_c = _vm._self._c;
|
|
15246
15061
|
return _c('div', {
|
|
15247
15062
|
staticClass: "toggle-fill-loader-container-background"
|
|
15248
15063
|
}, [_c('div', {
|
|
@@ -15384,7 +15199,11 @@ var vue2Dropzone_min = __webpack_require__("1e3f");
|
|
|
15384
15199
|
group: "images"
|
|
15385
15200
|
};
|
|
15386
15201
|
},
|
|
15387
|
-
|
|
15202
|
+
moveIconClass() {
|
|
15203
|
+
return {
|
|
15204
|
+
'toggle-move-icon': this.images.length > 1
|
|
15205
|
+
};
|
|
15206
|
+
},
|
|
15388
15207
|
inputVal: {
|
|
15389
15208
|
get: function () {
|
|
15390
15209
|
return this.images;
|
|
@@ -15408,8 +15227,8 @@ var vue2Dropzone_min = __webpack_require__("1e3f");
|
|
|
15408
15227
|
|
|
15409
15228
|
var ToggleInputImage_component = normalizeComponent(
|
|
15410
15229
|
forms_ToggleInputImagevue_type_script_lang_js_,
|
|
15411
|
-
|
|
15412
|
-
|
|
15230
|
+
ToggleInputImagevue_type_template_id_610897a3_render,
|
|
15231
|
+
ToggleInputImagevue_type_template_id_610897a3_staticRenderFns,
|
|
15413
15232
|
false,
|
|
15414
15233
|
null,
|
|
15415
15234
|
null,
|
|
@@ -15418,11 +15237,10 @@ var ToggleInputImage_component = normalizeComponent(
|
|
|
15418
15237
|
)
|
|
15419
15238
|
|
|
15420
15239
|
/* harmony default export */ var ToggleInputImage = (ToggleInputImage_component.exports);
|
|
15421
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15240
|
+
// 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&
|
|
15422
15241
|
var ToggleInputFilevue_type_template_id_564702b5_render = function render() {
|
|
15423
15242
|
var _vm = this,
|
|
15424
|
-
|
|
15425
|
-
|
|
15243
|
+
_c = _vm._self._c;
|
|
15426
15244
|
return _c('div', {
|
|
15427
15245
|
staticClass: "toggle-input-container",
|
|
15428
15246
|
class: {
|
|
@@ -15467,7 +15285,6 @@ var ToggleInputFilevue_type_template_id_564702b5_render = function render() {
|
|
|
15467
15285
|
staticClass: "toggle-input-label-error"
|
|
15468
15286
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1);
|
|
15469
15287
|
};
|
|
15470
|
-
|
|
15471
15288
|
var ToggleInputFilevue_type_template_id_564702b5_staticRenderFns = [];
|
|
15472
15289
|
|
|
15473
15290
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputFile.vue?vue&type=template&id=564702b5&
|
|
@@ -15546,16 +15363,14 @@ var ToggleInputFile_component = normalizeComponent(
|
|
|
15546
15363
|
)
|
|
15547
15364
|
|
|
15548
15365
|
/* harmony default export */ var ToggleInputFile = (ToggleInputFile_component.exports);
|
|
15549
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15366
|
+
// 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&
|
|
15550
15367
|
var ToggleInputGroupvue_type_template_id_a6b9978e_render = function render() {
|
|
15551
15368
|
var _vm = this,
|
|
15552
|
-
|
|
15553
|
-
|
|
15369
|
+
_c = _vm._self._c;
|
|
15554
15370
|
return _c('div', [_vm.label ? _c('ToggleHeaderTextLarge', [_vm._v(_vm._s(_vm.label))]) : _vm._e(), _c('div', {
|
|
15555
15371
|
staticClass: "toggle-input-group"
|
|
15556
15372
|
}, [_vm._t("default")], 2)], 1);
|
|
15557
15373
|
};
|
|
15558
|
-
|
|
15559
15374
|
var ToggleInputGroupvue_type_template_id_a6b9978e_staticRenderFns = [];
|
|
15560
15375
|
|
|
15561
15376
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputGroup.vue?vue&type=template&id=a6b9978e&
|
|
@@ -15603,11 +15418,10 @@ var ToggleInputGroup_component = normalizeComponent(
|
|
|
15603
15418
|
)
|
|
15604
15419
|
|
|
15605
15420
|
/* harmony default export */ var ToggleInputGroup = (ToggleInputGroup_component.exports);
|
|
15606
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15421
|
+
// 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&
|
|
15607
15422
|
var ToggleInputNumbervue_type_template_id_ef0b99dc_render = function render() {
|
|
15608
15423
|
var _vm = this,
|
|
15609
|
-
|
|
15610
|
-
|
|
15424
|
+
_c = _vm._self._c;
|
|
15611
15425
|
return _c('div', {
|
|
15612
15426
|
staticClass: "toggle-input-container",
|
|
15613
15427
|
class: {
|
|
@@ -15658,7 +15472,6 @@ var ToggleInputNumbervue_type_template_id_ef0b99dc_render = function render() {
|
|
|
15658
15472
|
}
|
|
15659
15473
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
15660
15474
|
};
|
|
15661
|
-
|
|
15662
15475
|
var ToggleInputNumbervue_type_template_id_ef0b99dc_staticRenderFns = [];
|
|
15663
15476
|
|
|
15664
15477
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputNumber.vue?vue&type=template&id=ef0b99dc&
|
|
@@ -15744,7 +15557,8 @@ var ToggleInputNumbervue_type_template_id_ef0b99dc_staticRenderFns = [];
|
|
|
15744
15557
|
if (modifiedValue === '') {
|
|
15745
15558
|
this.$emit('input', modifiedValue);
|
|
15746
15559
|
} else {
|
|
15747
|
-
let newValue = parseFloat(modifiedValue);
|
|
15560
|
+
let newValue = parseFloat(modifiedValue);
|
|
15561
|
+
// Ensure that it is not NaN
|
|
15748
15562
|
|
|
15749
15563
|
if (isNaN(newValue)) newValue = 0;
|
|
15750
15564
|
this.$emit('input', newValue);
|
|
@@ -15761,15 +15575,12 @@ var ToggleInputNumbervue_type_template_id_ef0b99dc_staticRenderFns = [];
|
|
|
15761
15575
|
let mcount = count ? count.length : 0;
|
|
15762
15576
|
return mcount + ' / ' + maxLenght;
|
|
15763
15577
|
},
|
|
15764
|
-
|
|
15765
15578
|
onFocus() {
|
|
15766
15579
|
this.$emit('onFocus');
|
|
15767
15580
|
},
|
|
15768
|
-
|
|
15769
15581
|
onBlur() {
|
|
15770
15582
|
this.$emit('onBlur');
|
|
15771
15583
|
}
|
|
15772
|
-
|
|
15773
15584
|
}
|
|
15774
15585
|
});
|
|
15775
15586
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputNumber.vue?vue&type=script&lang=js&
|
|
@@ -15794,11 +15605,10 @@ var ToggleInputNumber_component = normalizeComponent(
|
|
|
15794
15605
|
)
|
|
15795
15606
|
|
|
15796
15607
|
/* harmony default export */ var ToggleInputNumber = (ToggleInputNumber_component.exports);
|
|
15797
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15608
|
+
// 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&
|
|
15798
15609
|
var ToggleColourPickervue_type_template_id_ce1c3b3a_render = function render() {
|
|
15799
15610
|
var _vm = this,
|
|
15800
|
-
|
|
15801
|
-
|
|
15611
|
+
_c = _vm._self._c;
|
|
15802
15612
|
return _c('div', {
|
|
15803
15613
|
staticClass: "toggle-input-container",
|
|
15804
15614
|
class: {
|
|
@@ -15854,7 +15664,6 @@ var ToggleColourPickervue_type_template_id_ce1c3b3a_render = function render() {
|
|
|
15854
15664
|
}
|
|
15855
15665
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 1)]);
|
|
15856
15666
|
};
|
|
15857
|
-
|
|
15858
15667
|
var ToggleColourPickervue_type_template_id_ce1c3b3a_staticRenderFns = [];
|
|
15859
15668
|
|
|
15860
15669
|
// CONCATENATED MODULE: ./src/components/forms/ToggleColourPicker.vue?vue&type=template&id=ce1c3b3a&
|
|
@@ -15937,7 +15746,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
|
|
|
15937
15746
|
this.$emit('input', val);
|
|
15938
15747
|
}
|
|
15939
15748
|
}
|
|
15940
|
-
|
|
15941
15749
|
},
|
|
15942
15750
|
mounted: function () {
|
|
15943
15751
|
this.setColor(this.value || '#000000');
|
|
@@ -15947,19 +15755,19 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
|
|
|
15947
15755
|
this.updateColors(color);
|
|
15948
15756
|
this.colorValue = color;
|
|
15949
15757
|
},
|
|
15950
|
-
|
|
15951
15758
|
setBorderColour(color, colorsRgba = '') {
|
|
15952
|
-
if (colorsRgba === '')
|
|
15759
|
+
if (colorsRgba === '')
|
|
15760
|
+
//if has only hex
|
|
15953
15761
|
{
|
|
15954
15762
|
let isWhite = color.charAt(1) === 'F' && color.charAt(2) != 'F' ? true : false;
|
|
15955
15763
|
this.borderColour = isWhite ? '#EAE8E8' : color;
|
|
15956
|
-
} else if (colorsRgba != '')
|
|
15764
|
+
} else if (colorsRgba != '')
|
|
15765
|
+
//if has rgba
|
|
15957
15766
|
{
|
|
15958
15767
|
let hasTransparency = parseFloat(colorsRgba.a) < 0.2 ? true : false;
|
|
15959
15768
|
this.borderColour = hasTransparency ? colorsRgba.hex : color;
|
|
15960
15769
|
}
|
|
15961
15770
|
},
|
|
15962
|
-
|
|
15963
15771
|
updateColors(color) {
|
|
15964
15772
|
if (color.slice(0, 1) == '#') {
|
|
15965
15773
|
this.colors = {
|
|
@@ -15968,7 +15776,7 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
|
|
|
15968
15776
|
this.setBorderColour(color);
|
|
15969
15777
|
} else if (color.slice(0, 4) == 'rgba') {
|
|
15970
15778
|
var rgba = color.replace(/^rgba?\(|\s+|\)$/g, '').split(','),
|
|
15971
|
-
|
|
15779
|
+
hex = '#' + ((1 << 24) + (parseInt(rgba[0]) << 16) + (parseInt(rgba[1]) << 8) + parseInt(rgba[2])).toString(16).slice(1);
|
|
15972
15780
|
this.colors = {
|
|
15973
15781
|
hex: hex,
|
|
15974
15782
|
a: rgba[3]
|
|
@@ -15976,44 +15784,35 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('chrome-picker'
|
|
|
15976
15784
|
this.setBorderColour(color, this.colors);
|
|
15977
15785
|
}
|
|
15978
15786
|
},
|
|
15979
|
-
|
|
15980
15787
|
updateFromInput() {
|
|
15981
15788
|
this.updateColors(this.colorValue);
|
|
15982
15789
|
},
|
|
15983
|
-
|
|
15984
15790
|
showPicker() {
|
|
15985
15791
|
this.displayPicker = true;
|
|
15986
15792
|
document.addEventListener('click', this.documentClick);
|
|
15987
15793
|
},
|
|
15988
|
-
|
|
15989
15794
|
hidePicker() {
|
|
15990
15795
|
this.displayPicker = false;
|
|
15991
15796
|
document.removeEventListener('click', this.documentClick);
|
|
15992
15797
|
},
|
|
15993
|
-
|
|
15994
15798
|
togglePicker() {
|
|
15995
15799
|
this.displayPicker ? this.hidePicker() : this.showPicker();
|
|
15996
15800
|
},
|
|
15997
|
-
|
|
15998
15801
|
documentClick(e) {
|
|
15999
15802
|
var el = this.$refs.colorpicker,
|
|
16000
|
-
|
|
16001
|
-
|
|
15803
|
+
target = e.target;
|
|
16002
15804
|
if (el !== target && !el.contains(target)) {
|
|
16003
15805
|
this.hidePicker();
|
|
16004
15806
|
}
|
|
16005
15807
|
},
|
|
16006
|
-
|
|
16007
15808
|
updateFromPicker(color) {
|
|
16008
15809
|
this.colors = color;
|
|
16009
|
-
|
|
16010
15810
|
if (color.rgba.a == 1) {
|
|
16011
15811
|
this.colorValue = color.hex;
|
|
16012
15812
|
} else {
|
|
16013
15813
|
this.colorValue = 'rgba(' + color.rgba.r + ', ' + color.rgba.g + ', ' + color.rgba.b + ', ' + color.rgba.a + ')';
|
|
16014
15814
|
}
|
|
16015
15815
|
}
|
|
16016
|
-
|
|
16017
15816
|
}
|
|
16018
15817
|
});
|
|
16019
15818
|
// CONCATENATED MODULE: ./src/components/forms/ToggleColourPicker.vue?vue&type=script&lang=js&
|
|
@@ -16038,11 +15837,10 @@ var ToggleColourPicker_component = normalizeComponent(
|
|
|
16038
15837
|
)
|
|
16039
15838
|
|
|
16040
15839
|
/* harmony default export */ var ToggleColourPicker = (ToggleColourPicker_component.exports);
|
|
16041
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15840
|
+
// 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&
|
|
16042
15841
|
var ToggleInputSearchvue_type_template_id_76f40c51_render = function render() {
|
|
16043
15842
|
var _vm = this,
|
|
16044
|
-
|
|
16045
|
-
|
|
15843
|
+
_c = _vm._self._c;
|
|
16046
15844
|
return _c('div', {
|
|
16047
15845
|
ref: "toggle-input-search",
|
|
16048
15846
|
staticClass: "toggle-input-container",
|
|
@@ -16083,13 +15881,11 @@ var ToggleInputSearchvue_type_template_id_76f40c51_render = function render() {
|
|
|
16083
15881
|
on: {
|
|
16084
15882
|
"change": function ($event) {
|
|
16085
15883
|
var $$a = _vm.searchModel,
|
|
16086
|
-
|
|
16087
|
-
|
|
16088
|
-
|
|
15884
|
+
$$el = $event.target,
|
|
15885
|
+
$$c = $$el.checked ? true : false;
|
|
16089
15886
|
if (Array.isArray($$a)) {
|
|
16090
15887
|
var $$v = null,
|
|
16091
|
-
|
|
16092
|
-
|
|
15888
|
+
$$i = _vm._i($$a, $$v);
|
|
16093
15889
|
if ($$el.checked) {
|
|
16094
15890
|
$$i < 0 && (_vm.searchModel = $$a.concat([$$v]));
|
|
16095
15891
|
} else {
|
|
@@ -16182,7 +15978,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_render = function render() {
|
|
|
16182
15978
|
}
|
|
16183
15979
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
16184
15980
|
};
|
|
16185
|
-
|
|
16186
15981
|
var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
16187
15982
|
|
|
16188
15983
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputSearch.vue?vue&type=template&id=76f40c51&
|
|
@@ -16190,7 +15985,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16190
15985
|
// 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&
|
|
16191
15986
|
|
|
16192
15987
|
|
|
16193
|
-
|
|
16194
15988
|
/* harmony default export */ var ToggleInputSearchvue_type_script_lang_js_ = ({
|
|
16195
15989
|
mixins: [mixins],
|
|
16196
15990
|
props: {
|
|
@@ -16252,11 +16046,9 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16252
16046
|
created: function () {
|
|
16253
16047
|
window.addEventListener('click', this.windowClick, true);
|
|
16254
16048
|
},
|
|
16255
|
-
|
|
16256
16049
|
beforeDestroy() {
|
|
16257
16050
|
window.removeEventListener('click', this.windowClick, true);
|
|
16258
16051
|
},
|
|
16259
|
-
|
|
16260
16052
|
components: {
|
|
16261
16053
|
ToggleButton: ToggleButton
|
|
16262
16054
|
},
|
|
@@ -16275,17 +16067,14 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16275
16067
|
return this.savedSearchModel = value;
|
|
16276
16068
|
}
|
|
16277
16069
|
},
|
|
16278
|
-
|
|
16279
16070
|
// should the add option show?
|
|
16280
16071
|
showAddButton() {
|
|
16281
16072
|
return (!this.filteredOptions.length || !this.exactMatch) && this.allowAddValue && this.searchModel;
|
|
16282
16073
|
},
|
|
16283
|
-
|
|
16284
16074
|
// should options dropdown show?
|
|
16285
16075
|
showOptions() {
|
|
16286
16076
|
return !this.disabled && this.inputFocussed && (this.searchModel && (this.value == null || this.searchModel != this.value.label) || !this.searchModel);
|
|
16287
16077
|
},
|
|
16288
|
-
|
|
16289
16078
|
/*
|
|
16290
16079
|
* does the search query exactly match an option?
|
|
16291
16080
|
* returns bool
|
|
@@ -16293,7 +16082,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16293
16082
|
exactMatch() {
|
|
16294
16083
|
return this.options.filter(option => option.label.toLowerCase() == this.searchModel.toLowerCase()).length != 0;
|
|
16295
16084
|
},
|
|
16296
|
-
|
|
16297
16085
|
/*
|
|
16298
16086
|
* Returns options that contain the search query
|
|
16299
16087
|
* returns array
|
|
@@ -16301,7 +16089,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16301
16089
|
filteredOptions() {
|
|
16302
16090
|
return this.options.filter(option => option.label.toLowerCase().includes(this.searchModel.toLowerCase()));
|
|
16303
16091
|
},
|
|
16304
|
-
|
|
16305
16092
|
// the input model
|
|
16306
16093
|
inputVal: {
|
|
16307
16094
|
get: function () {
|
|
@@ -16318,7 +16105,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16318
16105
|
this.searchModel = option.label;
|
|
16319
16106
|
this.inputVal = option;
|
|
16320
16107
|
},
|
|
16321
|
-
|
|
16322
16108
|
// add option to options list
|
|
16323
16109
|
addOption(option) {
|
|
16324
16110
|
this.searchModel = option;
|
|
@@ -16327,7 +16113,6 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16327
16113
|
label: option
|
|
16328
16114
|
};
|
|
16329
16115
|
},
|
|
16330
|
-
|
|
16331
16116
|
/*
|
|
16332
16117
|
* Concat message for count characters
|
|
16333
16118
|
* @return string
|
|
@@ -16336,17 +16121,14 @@ var ToggleInputSearchvue_type_template_id_76f40c51_staticRenderFns = [];
|
|
|
16336
16121
|
let mcount = count ? count.length : 0;
|
|
16337
16122
|
return mcount + ' / ' + maxLenght;
|
|
16338
16123
|
},
|
|
16339
|
-
|
|
16340
16124
|
windowClick(e) {
|
|
16341
16125
|
var element = this.$refs["toggle-input-search"];
|
|
16342
|
-
|
|
16343
16126
|
if (e.target !== element && !element.contains(e.target)) {
|
|
16344
16127
|
this.inputFocussed = false;
|
|
16345
16128
|
} else {
|
|
16346
16129
|
this.inputFocussed = true;
|
|
16347
16130
|
}
|
|
16348
16131
|
}
|
|
16349
|
-
|
|
16350
16132
|
}
|
|
16351
16133
|
});
|
|
16352
16134
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputSearch.vue?vue&type=script&lang=js&
|
|
@@ -16371,11 +16153,10 @@ var ToggleInputSearch_component = normalizeComponent(
|
|
|
16371
16153
|
)
|
|
16372
16154
|
|
|
16373
16155
|
/* harmony default export */ var ToggleInputSearch = (ToggleInputSearch_component.exports);
|
|
16374
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16156
|
+
// 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&
|
|
16375
16157
|
var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_render = function render() {
|
|
16376
16158
|
var _vm = this,
|
|
16377
|
-
|
|
16378
|
-
|
|
16159
|
+
_c = _vm._self._c;
|
|
16379
16160
|
return _c('div', {
|
|
16380
16161
|
staticClass: "toggle-input-container margin-bottom-0",
|
|
16381
16162
|
class: {
|
|
@@ -16399,7 +16180,6 @@ var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_render = function r
|
|
|
16399
16180
|
}
|
|
16400
16181
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()], 2)]);
|
|
16401
16182
|
};
|
|
16402
|
-
|
|
16403
16183
|
var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_staticRenderFns = [];
|
|
16404
16184
|
|
|
16405
16185
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtonGroup.vue?vue&type=template&id=35e8cd10&
|
|
@@ -16436,11 +16216,9 @@ var ToggleInputRadioButtonGroupvue_type_template_id_35e8cd10_staticRenderFns = [
|
|
|
16436
16216
|
onFocus() {
|
|
16437
16217
|
this.$emit('onFocus');
|
|
16438
16218
|
},
|
|
16439
|
-
|
|
16440
16219
|
onBlur() {
|
|
16441
16220
|
this.$emit('onBlur');
|
|
16442
16221
|
}
|
|
16443
|
-
|
|
16444
16222
|
}
|
|
16445
16223
|
});
|
|
16446
16224
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputRadioButtonGroup.vue?vue&type=script&lang=js&
|
|
@@ -16465,11 +16243,10 @@ var ToggleInputRadioButtonGroup_component = normalizeComponent(
|
|
|
16465
16243
|
)
|
|
16466
16244
|
|
|
16467
16245
|
/* harmony default export */ var ToggleInputRadioButtonGroup = (ToggleInputRadioButtonGroup_component.exports);
|
|
16468
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16246
|
+
// 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&
|
|
16469
16247
|
var ToggleTablevue_type_template_id_841ba81c_render = function render() {
|
|
16470
16248
|
var _vm = this,
|
|
16471
|
-
|
|
16472
|
-
|
|
16249
|
+
_c = _vm._self._c;
|
|
16473
16250
|
return _c('div', [_c('table', {
|
|
16474
16251
|
staticClass: "toggle-table"
|
|
16475
16252
|
}, [_c('thead', {
|
|
@@ -16580,16 +16357,14 @@ var ToggleTablevue_type_template_id_841ba81c_render = function render() {
|
|
|
16580
16357
|
}
|
|
16581
16358
|
}) : _vm._e()], 1);
|
|
16582
16359
|
};
|
|
16583
|
-
|
|
16584
16360
|
var ToggleTablevue_type_template_id_841ba81c_staticRenderFns = [];
|
|
16585
16361
|
|
|
16586
16362
|
// CONCATENATED MODULE: ./src/components/tables/ToggleTable.vue?vue&type=template&id=841ba81c&
|
|
16587
16363
|
|
|
16588
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16364
|
+
// 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&
|
|
16589
16365
|
var ToggleTableRowvue_type_template_id_bab4fd8c_render = function render() {
|
|
16590
16366
|
var _vm = this,
|
|
16591
|
-
|
|
16592
|
-
|
|
16367
|
+
_c = _vm._self._c;
|
|
16593
16368
|
return _c('tr', {
|
|
16594
16369
|
staticClass: "toggle-tablee-tr",
|
|
16595
16370
|
on: {
|
|
@@ -16599,7 +16374,6 @@ var ToggleTableRowvue_type_template_id_bab4fd8c_render = function render() {
|
|
|
16599
16374
|
}
|
|
16600
16375
|
}, [_vm._t("default")], 2);
|
|
16601
16376
|
};
|
|
16602
|
-
|
|
16603
16377
|
var ToggleTableRowvue_type_template_id_bab4fd8c_staticRenderFns = [];
|
|
16604
16378
|
|
|
16605
16379
|
// CONCATENATED MODULE: ./src/components/tables/ToggleTableRow.vue?vue&type=template&id=bab4fd8c&
|
|
@@ -16623,16 +16397,14 @@ var ToggleTableRow_component = normalizeComponent(
|
|
|
16623
16397
|
)
|
|
16624
16398
|
|
|
16625
16399
|
/* harmony default export */ var ToggleTableRow = (ToggleTableRow_component.exports);
|
|
16626
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16400
|
+
// 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&
|
|
16627
16401
|
var ToggleTableColumnvue_type_template_id_6de6ba9d_render = function render() {
|
|
16628
16402
|
var _vm = this,
|
|
16629
|
-
|
|
16630
|
-
|
|
16403
|
+
_c = _vm._self._c;
|
|
16631
16404
|
return _c('td', {
|
|
16632
16405
|
staticClass: "toggle-tablee-td"
|
|
16633
16406
|
}, [_vm._t("default")], 2);
|
|
16634
16407
|
};
|
|
16635
|
-
|
|
16636
16408
|
var ToggleTableColumnvue_type_template_id_6de6ba9d_staticRenderFns = [];
|
|
16637
16409
|
|
|
16638
16410
|
// CONCATENATED MODULE: ./src/components/tables/ToggleTableColumn.vue?vue&type=template&id=6de6ba9d&
|
|
@@ -16656,11 +16428,10 @@ var ToggleTableColumn_component = normalizeComponent(
|
|
|
16656
16428
|
)
|
|
16657
16429
|
|
|
16658
16430
|
/* harmony default export */ var ToggleTableColumn = (ToggleTableColumn_component.exports);
|
|
16659
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16431
|
+
// 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&
|
|
16660
16432
|
var TogglePaginationvue_type_template_id_36fed3cc_render = function render() {
|
|
16661
16433
|
var _vm = this,
|
|
16662
|
-
|
|
16663
|
-
|
|
16434
|
+
_c = _vm._self._c;
|
|
16664
16435
|
return _c('div', {
|
|
16665
16436
|
staticClass: "toggle-pagination"
|
|
16666
16437
|
}, [_c('ul', [_c('li', [_c('button', {
|
|
@@ -16698,7 +16469,6 @@ var TogglePaginationvue_type_template_id_36fed3cc_render = function render() {
|
|
|
16698
16469
|
}
|
|
16699
16470
|
}, [_vm._v(" Next ")])])], 2)]);
|
|
16700
16471
|
};
|
|
16701
|
-
|
|
16702
16472
|
var TogglePaginationvue_type_template_id_36fed3cc_staticRenderFns = [];
|
|
16703
16473
|
|
|
16704
16474
|
// CONCATENATED MODULE: ./src/components/tables/TogglePagination.vue?vue&type=template&id=36fed3cc&
|
|
@@ -16711,9 +16481,9 @@ var TogglePaginationvue_type_template_id_36fed3cc_staticRenderFns = [];
|
|
|
16711
16481
|
data: function () {
|
|
16712
16482
|
return {
|
|
16713
16483
|
maxPaginationPages: 6 // number of pagination numbers on a page
|
|
16714
|
-
|
|
16715
16484
|
};
|
|
16716
16485
|
},
|
|
16486
|
+
|
|
16717
16487
|
computed: {
|
|
16718
16488
|
pageNumber: {
|
|
16719
16489
|
get: function () {
|
|
@@ -16723,41 +16493,40 @@ var TogglePaginationvue_type_template_id_36fed3cc_staticRenderFns = [];
|
|
|
16723
16493
|
this.$emit('input', newVal);
|
|
16724
16494
|
}
|
|
16725
16495
|
},
|
|
16726
|
-
|
|
16727
16496
|
/* Page Count
|
|
16728
16497
|
* Calculate how many pages the orders object have.
|
|
16729
16498
|
* @return number of pages
|
|
16730
16499
|
*/
|
|
16731
16500
|
pageCount() {
|
|
16732
16501
|
let l = this.total,
|
|
16733
|
-
|
|
16502
|
+
s = this.per_page;
|
|
16734
16503
|
return Math.ceil(l / s) ? Math.ceil(l / s) : 0;
|
|
16735
16504
|
},
|
|
16736
|
-
|
|
16737
16505
|
/* returns the numbers shown in the validation
|
|
16738
16506
|
*/
|
|
16507
|
+
|
|
16739
16508
|
pagiPages() {
|
|
16740
16509
|
var startarray = [];
|
|
16741
|
-
var endarray = [];
|
|
16510
|
+
var endarray = [];
|
|
16742
16511
|
|
|
16512
|
+
// show all pages
|
|
16743
16513
|
if (this.pageCount <= this.maxPaginationPages) {
|
|
16744
16514
|
while (startarray.length < this.maxPaginationPages && startarray.length < this.pageCount) startarray.push(startarray.length + 1);
|
|
16745
16515
|
} else {
|
|
16746
16516
|
// if there are too many pages, we need to remove some options
|
|
16747
16517
|
// create the first pages
|
|
16748
|
-
while (startarray.length < this.maxPaginationPages / 2 - 1) startarray.push(startarray.length + 1);
|
|
16749
|
-
|
|
16750
|
-
|
|
16751
|
-
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
|
|
16518
|
+
while (startarray.length < this.maxPaginationPages / 2 - 1) startarray.push(startarray.length + 1);
|
|
16752
16519
|
|
|
16520
|
+
// create the last pages
|
|
16521
|
+
while (startarray.length + endarray.length + 1 <= this.maxPaginationPages) endarray.push(this.pageCount - this.maxPaginationPages + 1 + (startarray.length + endarray.length));
|
|
16753
16522
|
|
|
16523
|
+
// add the current page to the array, if it doesn't exist
|
|
16754
16524
|
if (!(startarray.includes(this.pageNumber) || endarray.includes(this.pageNumber))) startarray.push(this.pageNumber);
|
|
16755
|
-
}
|
|
16756
|
-
|
|
16525
|
+
}
|
|
16757
16526
|
|
|
16527
|
+
// merge the two arrays into one
|
|
16758
16528
|
return startarray.concat(endarray);
|
|
16759
16529
|
}
|
|
16760
|
-
|
|
16761
16530
|
}
|
|
16762
16531
|
});
|
|
16763
16532
|
// CONCATENATED MODULE: ./src/components/tables/TogglePagination.vue?vue&type=script&lang=js&
|
|
@@ -16830,7 +16599,6 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16830
16599
|
search_value: this.searchModels[field.key]
|
|
16831
16600
|
}));
|
|
16832
16601
|
},
|
|
16833
|
-
|
|
16834
16602
|
pagenumber: {
|
|
16835
16603
|
get: function () {
|
|
16836
16604
|
return this.page;
|
|
@@ -16839,31 +16607,24 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16839
16607
|
this.$emit('page_change', newVal);
|
|
16840
16608
|
}
|
|
16841
16609
|
},
|
|
16842
|
-
|
|
16843
16610
|
headers() {
|
|
16844
16611
|
if (!this.fields) {
|
|
16845
16612
|
return Object.keys(this.items[0]);
|
|
16846
16613
|
}
|
|
16847
|
-
|
|
16848
16614
|
return this.fields;
|
|
16849
16615
|
},
|
|
16850
|
-
|
|
16851
16616
|
searchActive() {
|
|
16852
16617
|
if (this.editingInput) {
|
|
16853
16618
|
return true;
|
|
16854
16619
|
}
|
|
16855
|
-
|
|
16856
16620
|
for (let col in this.searchModels) {
|
|
16857
16621
|
if (!this.searchModels[col]) return false;
|
|
16858
|
-
|
|
16859
16622
|
if (this.searchModels[col].start !== undefined) {
|
|
16860
16623
|
return true;
|
|
16861
16624
|
} else if (this.searchModels[col]) return true;
|
|
16862
16625
|
}
|
|
16863
|
-
|
|
16864
16626
|
return false;
|
|
16865
16627
|
}
|
|
16866
|
-
|
|
16867
16628
|
},
|
|
16868
16629
|
created: function () {
|
|
16869
16630
|
if (this.fields) {
|
|
@@ -16871,15 +16632,14 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16871
16632
|
let value = this.fields[i].type == 'date' ? this.setInitialDate(i) : this.fields[i].value;
|
|
16872
16633
|
let field_name = this.fields[i].key;
|
|
16873
16634
|
this.$set(this.searchModels, field_name, value);
|
|
16874
|
-
|
|
16875
16635
|
if (value) {
|
|
16876
16636
|
// if date has an initial value set, show it.
|
|
16877
16637
|
if (typeof value.start !== 'undefined') {
|
|
16878
16638
|
if (value.start.length) this.activateSearch(this.fields[i]);
|
|
16879
|
-
}
|
|
16639
|
+
}
|
|
16640
|
+
// show the other fields with initial values set.
|
|
16880
16641
|
else this.activateSearch(this.fields[i]);
|
|
16881
16642
|
}
|
|
16882
|
-
|
|
16883
16643
|
this.searchChange();
|
|
16884
16644
|
}
|
|
16885
16645
|
}
|
|
@@ -16900,15 +16660,12 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16900
16660
|
end: false
|
|
16901
16661
|
};
|
|
16902
16662
|
},
|
|
16903
|
-
|
|
16904
16663
|
tableSearchActive(field) {
|
|
16905
16664
|
if (field.type == 'date') {
|
|
16906
16665
|
return this.searchModels[field.key].start || this.searchModels[field.key].end || this.editingInput == field.key;
|
|
16907
16666
|
}
|
|
16908
|
-
|
|
16909
16667
|
return this.searchModels[field.key] || this.editingInput == field.key;
|
|
16910
16668
|
},
|
|
16911
|
-
|
|
16912
16669
|
closeSearch(field) {
|
|
16913
16670
|
this.editingInput = false;
|
|
16914
16671
|
this.searchModels[field.key] = field.type == 'date' ? {
|
|
@@ -16917,24 +16674,20 @@ var TogglePagination_component = normalizeComponent(
|
|
|
16917
16674
|
} : '';
|
|
16918
16675
|
this.searchChange();
|
|
16919
16676
|
},
|
|
16920
|
-
|
|
16921
16677
|
searchChange() {
|
|
16922
16678
|
this.$emit('search', this.fieldsWithSearch);
|
|
16923
16679
|
},
|
|
16924
|
-
|
|
16925
16680
|
/* activateSearch
|
|
16926
16681
|
* When a user clicks a searchable column name, show it as active, and focus the child input field (unless it's already active)
|
|
16927
16682
|
*/
|
|
16928
16683
|
activateSearch(field) {
|
|
16929
16684
|
if (!field.filterable) return;
|
|
16930
|
-
|
|
16931
16685
|
if (field.type === 'date') {
|
|
16932
16686
|
this.datePickerOpen = true;
|
|
16933
16687
|
}
|
|
16934
|
-
|
|
16935
|
-
|
|
16688
|
+
this.editingInput = field.key;
|
|
16689
|
+
//this.$nextTick(() => this.$refs[this.editingInput + '-input'].focus())
|
|
16936
16690
|
}
|
|
16937
|
-
|
|
16938
16691
|
}
|
|
16939
16692
|
});
|
|
16940
16693
|
// CONCATENATED MODULE: ./src/components/tables/ToggleTable.vue?vue&type=script&lang=js&
|
|
@@ -16959,16 +16712,14 @@ var ToggleTable_component = normalizeComponent(
|
|
|
16959
16712
|
)
|
|
16960
16713
|
|
|
16961
16714
|
/* harmony default export */ var ToggleTable = (ToggleTable_component.exports);
|
|
16962
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16715
|
+
// 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&
|
|
16963
16716
|
var ToggleBadgevue_type_template_id_7aacd399_render = function render() {
|
|
16964
16717
|
var _vm = this,
|
|
16965
|
-
|
|
16966
|
-
|
|
16718
|
+
_c = _vm._self._c;
|
|
16967
16719
|
return _c('span', {
|
|
16968
16720
|
class: ['toggle-badge', _vm.badgeStyle]
|
|
16969
16721
|
}, [_vm._t("default")], 2);
|
|
16970
16722
|
};
|
|
16971
|
-
|
|
16972
16723
|
var ToggleBadgevue_type_template_id_7aacd399_staticRenderFns = [];
|
|
16973
16724
|
|
|
16974
16725
|
// CONCATENATED MODULE: ./src/components/badges/ToggleBadge.vue?vue&type=template&id=7aacd399&
|
|
@@ -17010,11 +16761,10 @@ var ToggleBadge_component = normalizeComponent(
|
|
|
17010
16761
|
)
|
|
17011
16762
|
|
|
17012
16763
|
/* harmony default export */ var ToggleBadge = (ToggleBadge_component.exports);
|
|
17013
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16764
|
+
// 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&
|
|
17014
16765
|
var ToggleBreadCrumbvue_type_template_id_b829739a_render = function render() {
|
|
17015
16766
|
var _vm = this,
|
|
17016
|
-
|
|
17017
|
-
|
|
16767
|
+
_c = _vm._self._c;
|
|
17018
16768
|
return _vm.breadcrumb_computed ? _c('div', {
|
|
17019
16769
|
staticClass: "toggle-breadcrumb"
|
|
17020
16770
|
}, _vm._l(_vm.breadcrumb_computed, function (crumb, index) {
|
|
@@ -17041,7 +16791,6 @@ var ToggleBreadCrumbvue_type_template_id_b829739a_render = function render() {
|
|
|
17041
16791
|
}, [_vm._v(_vm._s(crumb.name))]) : _vm._e()], 1);
|
|
17042
16792
|
}), 0) : _vm._e();
|
|
17043
16793
|
};
|
|
17044
|
-
|
|
17045
16794
|
var ToggleBreadCrumbvue_type_template_id_b829739a_staticRenderFns = [];
|
|
17046
16795
|
|
|
17047
16796
|
// CONCATENATED MODULE: ./src/components/breadcrumb/ToggleBreadCrumb.vue?vue&type=template&id=b829739a&
|
|
@@ -17066,7 +16815,6 @@ var ToggleBreadCrumbvue_type_template_id_b829739a_staticRenderFns = [];
|
|
|
17066
16815
|
breadcrumb_computed() {
|
|
17067
16816
|
return this.isNuxt ? this.breadcrumb : this.$route.meta.breadcrumb;
|
|
17068
16817
|
}
|
|
17069
|
-
|
|
17070
16818
|
}
|
|
17071
16819
|
});
|
|
17072
16820
|
// CONCATENATED MODULE: ./src/components/breadcrumb/ToggleBreadCrumb.vue?vue&type=script&lang=js&
|
|
@@ -17091,11 +16839,10 @@ var ToggleBreadCrumb_component = normalizeComponent(
|
|
|
17091
16839
|
)
|
|
17092
16840
|
|
|
17093
16841
|
/* harmony default export */ var ToggleBreadCrumb = (ToggleBreadCrumb_component.exports);
|
|
17094
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16842
|
+
// 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&
|
|
17095
16843
|
var ToggleSideNavItemvue_type_template_id_35f39f46_render = function render() {
|
|
17096
16844
|
var _vm = this,
|
|
17097
|
-
|
|
17098
|
-
|
|
16845
|
+
_c = _vm._self._c;
|
|
17099
16846
|
return _c('li', {
|
|
17100
16847
|
class: ['toggle-sidenav-item', _vm.icon, {
|
|
17101
16848
|
'active': _vm.active,
|
|
@@ -17103,7 +16850,6 @@ var ToggleSideNavItemvue_type_template_id_35f39f46_render = function render() {
|
|
|
17103
16850
|
}]
|
|
17104
16851
|
}, [_vm._t("item"), _vm._t("sub-nav")], 2);
|
|
17105
16852
|
};
|
|
17106
|
-
|
|
17107
16853
|
var ToggleSideNavItemvue_type_template_id_35f39f46_staticRenderFns = [];
|
|
17108
16854
|
|
|
17109
16855
|
// CONCATENATED MODULE: ./src/components/navs/sidenav/ToggleSideNavItem.vue?vue&type=template&id=35f39f46&
|
|
@@ -17119,7 +16865,6 @@ var ToggleSideNavItemvue_type_template_id_35f39f46_staticRenderFns = [];
|
|
|
17119
16865
|
type: Boolean,
|
|
17120
16866
|
default: false
|
|
17121
16867
|
},
|
|
17122
|
-
|
|
17123
16868
|
/**
|
|
17124
16869
|
* Icon to use `toggle-graph-icon`, `toggle-orders-icon`, `toggle-card-icon`, `toggle-megaphone-icon`, `toggle-form-icon`
|
|
17125
16870
|
*/
|
|
@@ -17150,11 +16895,10 @@ var ToggleSideNavItem_component = normalizeComponent(
|
|
|
17150
16895
|
)
|
|
17151
16896
|
|
|
17152
16897
|
/* harmony default export */ var ToggleSideNavItem = (ToggleSideNavItem_component.exports);
|
|
17153
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16898
|
+
// 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&
|
|
17154
16899
|
var ToggleSideNavvue_type_template_id_63256d5d_render = function render() {
|
|
17155
16900
|
var _vm = this,
|
|
17156
|
-
|
|
17157
|
-
|
|
16901
|
+
_c = _vm._self._c;
|
|
17158
16902
|
return _c('nav', {
|
|
17159
16903
|
staticClass: "toggle-sidenav-container"
|
|
17160
16904
|
}, [_c('img', {
|
|
@@ -17169,7 +16913,6 @@ var ToggleSideNavvue_type_template_id_63256d5d_render = function render() {
|
|
|
17169
16913
|
staticClass: "toggle-sidenav-ul"
|
|
17170
16914
|
}, [_vm._t("default")], 2)], 1);
|
|
17171
16915
|
};
|
|
17172
|
-
|
|
17173
16916
|
var ToggleSideNavvue_type_template_id_63256d5d_staticRenderFns = [];
|
|
17174
16917
|
|
|
17175
16918
|
// CONCATENATED MODULE: ./src/components/navs/sidenav/ToggleSideNav.vue?vue&type=template&id=63256d5d&
|
|
@@ -17186,7 +16929,6 @@ var ToggleSideNavvue_type_template_id_63256d5d_staticRenderFns = [];
|
|
|
17186
16929
|
type: Object,
|
|
17187
16930
|
required: true
|
|
17188
16931
|
},
|
|
17189
|
-
|
|
17190
16932
|
/**
|
|
17191
16933
|
* The main title, displayed below logo
|
|
17192
16934
|
*/
|
|
@@ -17221,16 +16963,14 @@ var ToggleSideNav_component = normalizeComponent(
|
|
|
17221
16963
|
)
|
|
17222
16964
|
|
|
17223
16965
|
/* harmony default export */ var ToggleSideNav = (ToggleSideNav_component.exports);
|
|
17224
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
16966
|
+
// 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&
|
|
17225
16967
|
var ToggleSideSubNavvue_type_template_id_78a7c4f0_render = function render() {
|
|
17226
16968
|
var _vm = this,
|
|
17227
|
-
|
|
17228
|
-
|
|
16969
|
+
_c = _vm._self._c;
|
|
17229
16970
|
return _vm.expanded ? _c('ul', {
|
|
17230
16971
|
staticClass: "toggle-sidenav-sub-ul"
|
|
17231
16972
|
}, [_vm._t("default")], 2) : _vm._e();
|
|
17232
16973
|
};
|
|
17233
|
-
|
|
17234
16974
|
var ToggleSideSubNavvue_type_template_id_78a7c4f0_staticRenderFns = [];
|
|
17235
16975
|
|
|
17236
16976
|
// CONCATENATED MODULE: ./src/components/navs/sidenav/ToggleSideSubNav.vue?vue&type=template&id=78a7c4f0&
|
|
@@ -17270,11 +17010,10 @@ var ToggleSideSubNav_component = normalizeComponent(
|
|
|
17270
17010
|
)
|
|
17271
17011
|
|
|
17272
17012
|
/* harmony default export */ var ToggleSideSubNav = (ToggleSideSubNav_component.exports);
|
|
17273
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17013
|
+
// 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&
|
|
17274
17014
|
var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_render = function render() {
|
|
17275
17015
|
var _vm = this,
|
|
17276
|
-
|
|
17277
|
-
|
|
17016
|
+
_c = _vm._self._c;
|
|
17278
17017
|
return _c('nav', {
|
|
17279
17018
|
staticClass: "toggle-multi-tier-sidenav-container"
|
|
17280
17019
|
}, [_c('img', {
|
|
@@ -17324,7 +17063,6 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_render = function render
|
|
|
17324
17063
|
}
|
|
17325
17064
|
})], 1);
|
|
17326
17065
|
};
|
|
17327
|
-
|
|
17328
17066
|
var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
|
|
17329
17067
|
|
|
17330
17068
|
// CONCATENATED MODULE: ./src/components/navs/multitiersidenav/ToggleMultiTierSideNav.vue?vue&type=template&id=4850f9eb&
|
|
@@ -17334,16 +17072,13 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
|
|
|
17334
17072
|
|
|
17335
17073
|
/* harmony default export */ var ToggleMultiTierSideNavvue_type_script_lang_js_ = ({
|
|
17336
17074
|
name: 'ToggleMultiTierSideNav',
|
|
17337
|
-
|
|
17338
17075
|
data() {
|
|
17339
17076
|
return {
|
|
17340
17077
|
userMenuOpen: false
|
|
17341
17078
|
};
|
|
17342
17079
|
},
|
|
17343
|
-
|
|
17344
17080
|
props: {
|
|
17345
17081
|
value: {},
|
|
17346
|
-
|
|
17347
17082
|
/**
|
|
17348
17083
|
* For the logo that is displayed at the top of the nav
|
|
17349
17084
|
*/
|
|
@@ -17351,7 +17086,6 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
|
|
|
17351
17086
|
type: Object,
|
|
17352
17087
|
required: true
|
|
17353
17088
|
},
|
|
17354
|
-
|
|
17355
17089
|
/**
|
|
17356
17090
|
* The main title, displayed below logo
|
|
17357
17091
|
*/
|
|
@@ -17359,7 +17093,6 @@ var ToggleMultiTierSideNavvue_type_template_id_4850f9eb_staticRenderFns = [];
|
|
|
17359
17093
|
type: String,
|
|
17360
17094
|
default: 'Airship'
|
|
17361
17095
|
},
|
|
17362
|
-
|
|
17363
17096
|
/**
|
|
17364
17097
|
* Name of the user, displayed in the user menu
|
|
17365
17098
|
*/
|
|
@@ -17409,11 +17142,10 @@ var ToggleMultiTierSideNav_component = normalizeComponent(
|
|
|
17409
17142
|
)
|
|
17410
17143
|
|
|
17411
17144
|
/* harmony default export */ var ToggleMultiTierSideNav = (ToggleMultiTierSideNav_component.exports);
|
|
17412
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17145
|
+
// 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&
|
|
17413
17146
|
var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_render = function render() {
|
|
17414
17147
|
var _vm = this,
|
|
17415
|
-
|
|
17416
|
-
|
|
17148
|
+
_c = _vm._self._c;
|
|
17417
17149
|
return _c('li', {
|
|
17418
17150
|
class: ['toggle-multi-tier-sidenav-item', _vm.icon, {
|
|
17419
17151
|
'active': _vm.active,
|
|
@@ -17422,7 +17154,6 @@ var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_render = function re
|
|
|
17422
17154
|
}]
|
|
17423
17155
|
}, [_vm._t("item"), _vm._t("sub-nav")], 2);
|
|
17424
17156
|
};
|
|
17425
|
-
|
|
17426
17157
|
var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_staticRenderFns = [];
|
|
17427
17158
|
|
|
17428
17159
|
// CONCATENATED MODULE: ./src/components/navs/multitiersidenav/ToggleMultiTierSideNavItem.vue?vue&type=template&id=30f86f6f&
|
|
@@ -17438,14 +17169,12 @@ var ToggleMultiTierSideNavItemvue_type_template_id_30f86f6f_staticRenderFns = []
|
|
|
17438
17169
|
type: Boolean,
|
|
17439
17170
|
default: false
|
|
17440
17171
|
},
|
|
17441
|
-
|
|
17442
17172
|
/**
|
|
17443
17173
|
* Icon to use `toggle-graph-icon`, `toggle-orders-icon`, `toggle-card-icon`, `toggle-megaphone-icon`, `toggle-form-icon`
|
|
17444
17174
|
*/
|
|
17445
17175
|
icon: {
|
|
17446
17176
|
type: String
|
|
17447
17177
|
},
|
|
17448
|
-
|
|
17449
17178
|
/**
|
|
17450
17179
|
* Set whether the arrow displays, e.g only for items with sub navs
|
|
17451
17180
|
*/
|
|
@@ -17477,11 +17206,10 @@ var ToggleMultiTierSideNavItem_component = normalizeComponent(
|
|
|
17477
17206
|
)
|
|
17478
17207
|
|
|
17479
17208
|
/* harmony default export */ var ToggleMultiTierSideNavItem = (ToggleMultiTierSideNavItem_component.exports);
|
|
17480
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17209
|
+
// 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&
|
|
17481
17210
|
var ToggleMultiTierSideSubNavvue_type_template_id_1dfe3f51_render = function render() {
|
|
17482
17211
|
var _vm = this,
|
|
17483
|
-
|
|
17484
|
-
|
|
17212
|
+
_c = _vm._self._c;
|
|
17485
17213
|
return _c('Transition', {
|
|
17486
17214
|
attrs: {
|
|
17487
17215
|
"name": "drop-down"
|
|
@@ -17490,7 +17218,6 @@ var ToggleMultiTierSideSubNavvue_type_template_id_1dfe3f51_render = function ren
|
|
|
17490
17218
|
staticClass: "toggle-multi-tier-sidenav-sub-ul"
|
|
17491
17219
|
}, [_vm._t("default")], 2) : _vm._e()]);
|
|
17492
17220
|
};
|
|
17493
|
-
|
|
17494
17221
|
var ToggleMultiTierSideSubNavvue_type_template_id_1dfe3f51_staticRenderFns = [];
|
|
17495
17222
|
|
|
17496
17223
|
// CONCATENATED MODULE: ./src/components/navs/multitiersidenav/ToggleMultiTierSideSubNav.vue?vue&type=template&id=1dfe3f51&
|
|
@@ -17530,11 +17257,10 @@ var ToggleMultiTierSideSubNav_component = normalizeComponent(
|
|
|
17530
17257
|
)
|
|
17531
17258
|
|
|
17532
17259
|
/* harmony default export */ var ToggleMultiTierSideSubNav = (ToggleMultiTierSideSubNav_component.exports);
|
|
17533
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17534
|
-
var
|
|
17260
|
+
// 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&
|
|
17261
|
+
var ToggleTextClipboardCopyvue_type_template_id_3854b888_render = function render() {
|
|
17535
17262
|
var _vm = this,
|
|
17536
|
-
|
|
17537
|
-
|
|
17263
|
+
_c = _vm._self._c;
|
|
17538
17264
|
return _c('div', {
|
|
17539
17265
|
staticClass: "toggle-copy-text"
|
|
17540
17266
|
}, [_c('p', {
|
|
@@ -17552,10 +17278,9 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_render = function rende
|
|
|
17552
17278
|
staticClass: "product-link-icon"
|
|
17553
17279
|
})])]);
|
|
17554
17280
|
};
|
|
17281
|
+
var ToggleTextClipboardCopyvue_type_template_id_3854b888_staticRenderFns = [];
|
|
17555
17282
|
|
|
17556
|
-
|
|
17557
|
-
|
|
17558
|
-
// CONCATENATED MODULE: ./src/components/text/ToggleTextClipboardCopy.vue?vue&type=template&id=478c65bc&
|
|
17283
|
+
// CONCATENATED MODULE: ./src/components/text/ToggleTextClipboardCopy.vue?vue&type=template&id=3854b888&
|
|
17559
17284
|
|
|
17560
17285
|
// 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&
|
|
17561
17286
|
/* harmony default export */ var ToggleTextClipboardCopyvue_type_script_lang_js_ = ({
|
|
@@ -17565,14 +17290,12 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
|
|
|
17565
17290
|
type: String,
|
|
17566
17291
|
default: '15px'
|
|
17567
17292
|
},
|
|
17568
|
-
|
|
17569
17293
|
/**
|
|
17570
17294
|
* For the text you would like to display
|
|
17571
17295
|
*/
|
|
17572
17296
|
copy: {
|
|
17573
17297
|
type: String
|
|
17574
17298
|
},
|
|
17575
|
-
|
|
17576
17299
|
/**
|
|
17577
17300
|
* The string used in link
|
|
17578
17301
|
*/
|
|
@@ -17580,7 +17303,6 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
|
|
|
17580
17303
|
type: String,
|
|
17581
17304
|
required: true
|
|
17582
17305
|
},
|
|
17583
|
-
|
|
17584
17306
|
/**
|
|
17585
17307
|
* The url for the link
|
|
17586
17308
|
*/
|
|
@@ -17596,8 +17318,16 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
|
|
|
17596
17318
|
window.getSelection().removeAllRanges();
|
|
17597
17319
|
window.getSelection().addRange(range);
|
|
17598
17320
|
document.execCommand("copy");
|
|
17321
|
+
this.click();
|
|
17322
|
+
},
|
|
17323
|
+
click() {
|
|
17324
|
+
/**
|
|
17325
|
+
* Emitted when the button is clicked.
|
|
17326
|
+
* @event click
|
|
17327
|
+
* @type {Event}
|
|
17328
|
+
*/
|
|
17329
|
+
this.$emit('click');
|
|
17599
17330
|
}
|
|
17600
|
-
|
|
17601
17331
|
}
|
|
17602
17332
|
});
|
|
17603
17333
|
// CONCATENATED MODULE: ./src/components/text/ToggleTextClipboardCopy.vue?vue&type=script&lang=js&
|
|
@@ -17612,8 +17342,8 @@ var ToggleTextClipboardCopyvue_type_template_id_478c65bc_staticRenderFns = [];
|
|
|
17612
17342
|
|
|
17613
17343
|
var ToggleTextClipboardCopy_component = normalizeComponent(
|
|
17614
17344
|
text_ToggleTextClipboardCopyvue_type_script_lang_js_,
|
|
17615
|
-
|
|
17616
|
-
|
|
17345
|
+
ToggleTextClipboardCopyvue_type_template_id_3854b888_render,
|
|
17346
|
+
ToggleTextClipboardCopyvue_type_template_id_3854b888_staticRenderFns,
|
|
17617
17347
|
false,
|
|
17618
17348
|
null,
|
|
17619
17349
|
null,
|
|
@@ -17622,22 +17352,19 @@ var ToggleTextClipboardCopy_component = normalizeComponent(
|
|
|
17622
17352
|
)
|
|
17623
17353
|
|
|
17624
17354
|
/* harmony default export */ var ToggleTextClipboardCopy = (ToggleTextClipboardCopy_component.exports);
|
|
17625
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17355
|
+
// 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&
|
|
17626
17356
|
var ToggleLineBreakvue_type_template_id_5db9229a_render = function render() {
|
|
17627
17357
|
var _vm = this,
|
|
17628
|
-
|
|
17629
|
-
|
|
17358
|
+
_c = _vm._self._c;
|
|
17630
17359
|
return _c('hr', {
|
|
17631
17360
|
class: _vm.classes
|
|
17632
17361
|
});
|
|
17633
17362
|
};
|
|
17634
|
-
|
|
17635
17363
|
var ToggleLineBreakvue_type_template_id_5db9229a_staticRenderFns = [];
|
|
17636
17364
|
|
|
17637
17365
|
// CONCATENATED MODULE: ./src/components/elements/ToggleLineBreak.vue?vue&type=template&id=5db9229a&
|
|
17638
17366
|
|
|
17639
17367
|
// 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&
|
|
17640
|
-
|
|
17641
17368
|
/* harmony default export */ var ToggleLineBreakvue_type_script_lang_js_ = ({
|
|
17642
17369
|
name: "LineBreak",
|
|
17643
17370
|
props: {
|
|
@@ -17654,7 +17381,6 @@ var ToggleLineBreakvue_type_template_id_5db9229a_staticRenderFns = [];
|
|
|
17654
17381
|
'toggle-line-break-grey': this.colour == 'grey'
|
|
17655
17382
|
};
|
|
17656
17383
|
}
|
|
17657
|
-
|
|
17658
17384
|
}
|
|
17659
17385
|
});
|
|
17660
17386
|
// CONCATENATED MODULE: ./src/components/elements/ToggleLineBreak.vue?vue&type=script&lang=js&
|
|
@@ -17679,11 +17405,10 @@ var ToggleLineBreak_component = normalizeComponent(
|
|
|
17679
17405
|
)
|
|
17680
17406
|
|
|
17681
17407
|
/* harmony default export */ var ToggleLineBreak = (ToggleLineBreak_component.exports);
|
|
17682
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17408
|
+
// 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&
|
|
17683
17409
|
var ToggleSectionCollapsevue_type_template_id_28fe93af_render = function render() {
|
|
17684
17410
|
var _vm = this,
|
|
17685
|
-
|
|
17686
|
-
|
|
17411
|
+
_c = _vm._self._c;
|
|
17687
17412
|
return _c('div', {
|
|
17688
17413
|
staticClass: "toggle-section-collapse"
|
|
17689
17414
|
}, [_c('div', {
|
|
@@ -17717,7 +17442,6 @@ var ToggleSectionCollapsevue_type_template_id_28fe93af_render = function render(
|
|
|
17717
17442
|
staticClass: "toggle-section-collapse-linebreak"
|
|
17718
17443
|
})], 1);
|
|
17719
17444
|
};
|
|
17720
|
-
|
|
17721
17445
|
var ToggleSectionCollapsevue_type_template_id_28fe93af_staticRenderFns = [];
|
|
17722
17446
|
|
|
17723
17447
|
// CONCATENATED MODULE: ./src/components/elements/ToggleSectionCollapse.vue?vue&type=template&id=28fe93af&
|
|
@@ -17741,13 +17465,11 @@ var ToggleSectionCollapsevue_type_template_id_28fe93af_staticRenderFns = [];
|
|
|
17741
17465
|
updated: false
|
|
17742
17466
|
};
|
|
17743
17467
|
},
|
|
17744
|
-
|
|
17745
17468
|
mounted() {
|
|
17746
17469
|
if (this.startOpen) {
|
|
17747
17470
|
this.visible = true;
|
|
17748
17471
|
}
|
|
17749
17472
|
},
|
|
17750
|
-
|
|
17751
17473
|
beforeUpdate: function () {
|
|
17752
17474
|
this.updated = true;
|
|
17753
17475
|
}
|
|
@@ -17774,11 +17496,10 @@ var ToggleSectionCollapse_component = normalizeComponent(
|
|
|
17774
17496
|
)
|
|
17775
17497
|
|
|
17776
17498
|
/* harmony default export */ var ToggleSectionCollapse = (ToggleSectionCollapse_component.exports);
|
|
17777
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17499
|
+
// 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&
|
|
17778
17500
|
var ToggleNotificationsvue_type_template_id_5bd4c8f9_render = function render() {
|
|
17779
17501
|
var _vm = this,
|
|
17780
|
-
|
|
17781
|
-
|
|
17502
|
+
_c = _vm._self._c;
|
|
17782
17503
|
return _c('div', [_c('div', {
|
|
17783
17504
|
staticClass: "toggle-notifications-messagebox",
|
|
17784
17505
|
class: {
|
|
@@ -17789,7 +17510,6 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_render = function render()
|
|
|
17789
17510
|
staticClass: "message"
|
|
17790
17511
|
}, [_vm._v(_vm._s(_vm.message))])])]);
|
|
17791
17512
|
};
|
|
17792
|
-
|
|
17793
17513
|
var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
17794
17514
|
|
|
17795
17515
|
// CONCATENATED MODULE: ./src/components/notifications/ToggleNotifications.vue?vue&type=template&id=5bd4c8f9&
|
|
@@ -17808,36 +17528,32 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
|
17808
17528
|
showAlertsFor: 3000,
|
|
17809
17529
|
// how long should each error display for?
|
|
17810
17530
|
isError: false // is it an error? true for yes, false for now
|
|
17811
|
-
|
|
17812
17531
|
};
|
|
17813
17532
|
},
|
|
17533
|
+
|
|
17814
17534
|
computed: {
|
|
17815
|
-
active()
|
|
17535
|
+
active()
|
|
17536
|
+
// is the message showing?
|
|
17816
17537
|
{
|
|
17817
17538
|
return this.queuedMessages > 0;
|
|
17818
17539
|
},
|
|
17819
|
-
|
|
17820
|
-
|
|
17540
|
+
timeout()
|
|
17541
|
+
// timeouts ensure that when there are multiple errors, they are shown in order rather than all at once.
|
|
17821
17542
|
{
|
|
17822
17543
|
return this.queuedMessages * this.showAlertsFor;
|
|
17823
17544
|
}
|
|
17824
|
-
|
|
17825
17545
|
},
|
|
17826
17546
|
watch: {},
|
|
17827
17547
|
created: function () {
|
|
17828
17548
|
this.$toggle_event.$on('success_message', this.showBox);
|
|
17829
17549
|
this.$toggle_event.$on('error_message', this.showErrorBox);
|
|
17830
17550
|
},
|
|
17831
|
-
|
|
17832
17551
|
beforeDestroy() {
|
|
17833
17552
|
this.$toggle_event.$off('success_message', this.showBox);
|
|
17834
17553
|
this.$toggle_event.$off('error_message', this.showErrorBox);
|
|
17835
17554
|
},
|
|
17836
|
-
|
|
17837
17555
|
mounted: function () {},
|
|
17838
|
-
|
|
17839
17556
|
destroyed() {},
|
|
17840
|
-
|
|
17841
17557
|
methods: {
|
|
17842
17558
|
// trigger an error alert
|
|
17843
17559
|
showErrorBox(message) {
|
|
@@ -17851,7 +17567,6 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
|
17851
17567
|
this.hideBox();
|
|
17852
17568
|
}, this.timeout);
|
|
17853
17569
|
},
|
|
17854
|
-
|
|
17855
17570
|
// trigger a success alert
|
|
17856
17571
|
showBox(message) {
|
|
17857
17572
|
setTimeout(() => {
|
|
@@ -17864,11 +17579,9 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
|
17864
17579
|
this.hideBox();
|
|
17865
17580
|
}, this.timeout);
|
|
17866
17581
|
},
|
|
17867
|
-
|
|
17868
17582
|
// remove a queued message and remove the box if none remaining
|
|
17869
17583
|
hideBox() {
|
|
17870
17584
|
this.queuedMessages--;
|
|
17871
|
-
|
|
17872
17585
|
if (this.queuedMessages == 0) {
|
|
17873
17586
|
setTimeout(() => {
|
|
17874
17587
|
this.message = '';
|
|
@@ -17876,7 +17589,6 @@ var ToggleNotificationsvue_type_template_id_5bd4c8f9_staticRenderFns = [];
|
|
|
17876
17589
|
}, 1000); // wait for the box to transition out of the page before resetting the message
|
|
17877
17590
|
}
|
|
17878
17591
|
}
|
|
17879
|
-
|
|
17880
17592
|
}
|
|
17881
17593
|
});
|
|
17882
17594
|
// CONCATENATED MODULE: ./src/components/notifications/ToggleNotifications.vue?vue&type=script&lang=js&
|
|
@@ -17901,11 +17613,10 @@ var ToggleNotifications_component = normalizeComponent(
|
|
|
17901
17613
|
)
|
|
17902
17614
|
|
|
17903
17615
|
/* harmony default export */ var ToggleNotifications = (ToggleNotifications_component.exports);
|
|
17904
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17616
|
+
// 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&
|
|
17905
17617
|
var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_render = function render() {
|
|
17906
17618
|
var _vm = this,
|
|
17907
|
-
|
|
17908
|
-
|
|
17619
|
+
_c = _vm._self._c;
|
|
17909
17620
|
return _c('button', {
|
|
17910
17621
|
staticClass: "toggle-feature-button",
|
|
17911
17622
|
on: {
|
|
@@ -17928,7 +17639,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_render = functi
|
|
|
17928
17639
|
}
|
|
17929
17640
|
})], 1)]);
|
|
17930
17641
|
};
|
|
17931
|
-
|
|
17932
17642
|
var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns = [];
|
|
17933
17643
|
|
|
17934
17644
|
// CONCATENATED MODULE: ./src/components/buttons/ToggleFeatureButton.vue?vue&type=template&id=a49bdc38&scoped=true&
|
|
@@ -17948,7 +17658,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
|
|
|
17948
17658
|
type: String,
|
|
17949
17659
|
required: true
|
|
17950
17660
|
},
|
|
17951
|
-
|
|
17952
17661
|
/**
|
|
17953
17662
|
* Logo alt
|
|
17954
17663
|
*/
|
|
@@ -17956,7 +17665,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
|
|
|
17956
17665
|
type: String,
|
|
17957
17666
|
required: true
|
|
17958
17667
|
},
|
|
17959
|
-
|
|
17960
17668
|
/**
|
|
17961
17669
|
* The label for the button
|
|
17962
17670
|
*/
|
|
@@ -17964,7 +17672,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
|
|
|
17964
17672
|
type: String,
|
|
17965
17673
|
required: true
|
|
17966
17674
|
},
|
|
17967
|
-
|
|
17968
17675
|
/**
|
|
17969
17676
|
* Icon style (mini_delete etc)
|
|
17970
17677
|
*/
|
|
@@ -17982,7 +17689,6 @@ var ToggleFeatureButtonvue_type_template_id_a49bdc38_scoped_true_staticRenderFns
|
|
|
17982
17689
|
*/
|
|
17983
17690
|
this.$emit('click');
|
|
17984
17691
|
}
|
|
17985
|
-
|
|
17986
17692
|
}
|
|
17987
17693
|
});
|
|
17988
17694
|
// CONCATENATED MODULE: ./src/components/buttons/ToggleFeatureButton.vue?vue&type=script&lang=js&
|
|
@@ -18007,16 +17713,14 @@ var ToggleFeatureButton_component = normalizeComponent(
|
|
|
18007
17713
|
)
|
|
18008
17714
|
|
|
18009
17715
|
/* harmony default export */ var ToggleFeatureButton = (ToggleFeatureButton_component.exports);
|
|
18010
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17716
|
+
// 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&
|
|
18011
17717
|
var ToggleInfoTextvue_type_template_id_2abee308_render = function render() {
|
|
18012
17718
|
var _vm = this,
|
|
18013
|
-
|
|
18014
|
-
|
|
17719
|
+
_c = _vm._self._c;
|
|
18015
17720
|
return _c('p', {
|
|
18016
17721
|
staticClass: "toggle-info-text"
|
|
18017
17722
|
}, [_vm._t("default")], 2);
|
|
18018
17723
|
};
|
|
18019
|
-
|
|
18020
17724
|
var ToggleInfoTextvue_type_template_id_2abee308_staticRenderFns = [];
|
|
18021
17725
|
|
|
18022
17726
|
// CONCATENATED MODULE: ./src/components/text/ToggleInfoText.vue?vue&type=template&id=2abee308&
|
|
@@ -18040,11 +17744,10 @@ var ToggleInfoText_component = normalizeComponent(
|
|
|
18040
17744
|
)
|
|
18041
17745
|
|
|
18042
17746
|
/* harmony default export */ var ToggleInfoText = (ToggleInfoText_component.exports);
|
|
18043
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17747
|
+
// 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&
|
|
18044
17748
|
var ToggleFontPickervue_type_template_id_b38afddc_render = function render() {
|
|
18045
17749
|
var _vm = this,
|
|
18046
|
-
|
|
18047
|
-
|
|
17750
|
+
_c = _vm._self._c;
|
|
18048
17751
|
return _c('ToggleInputSelect', {
|
|
18049
17752
|
style: `font-family: ${_vm.inputVal};`,
|
|
18050
17753
|
attrs: {
|
|
@@ -18063,7 +17766,6 @@ var ToggleFontPickervue_type_template_id_b38afddc_render = function render() {
|
|
|
18063
17766
|
}
|
|
18064
17767
|
});
|
|
18065
17768
|
};
|
|
18066
|
-
|
|
18067
17769
|
var ToggleFontPickervue_type_template_id_b38afddc_staticRenderFns = [];
|
|
18068
17770
|
|
|
18069
17771
|
// CONCATENATED MODULE: ./src/components/forms/ToggleFontPicker.vue?vue&type=template&id=b38afddc&
|
|
@@ -18071,9 +17773,7 @@ var ToggleFontPickervue_type_template_id_b38afddc_staticRenderFns = [];
|
|
|
18071
17773
|
// 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&
|
|
18072
17774
|
|
|
18073
17775
|
|
|
18074
|
-
|
|
18075
17776
|
var WebFont = __webpack_require__("27d6");
|
|
18076
|
-
|
|
18077
17777
|
/* harmony default export */ var ToggleFontPickervue_type_script_lang_js_ = ({
|
|
18078
17778
|
mixins: [mixins],
|
|
18079
17779
|
components: {
|
|
@@ -18084,7 +17784,6 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18084
17784
|
value: {
|
|
18085
17785
|
type: String
|
|
18086
17786
|
},
|
|
18087
|
-
|
|
18088
17787
|
/**
|
|
18089
17788
|
* The name of the fontpicker component
|
|
18090
17789
|
*/
|
|
@@ -18092,7 +17791,6 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18092
17791
|
type: String,
|
|
18093
17792
|
default: "ToggleFontPicker"
|
|
18094
17793
|
},
|
|
18095
|
-
|
|
18096
17794
|
/**
|
|
18097
17795
|
* The label that will be displayed
|
|
18098
17796
|
*/
|
|
@@ -18101,7 +17799,6 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18101
17799
|
required: false,
|
|
18102
17800
|
default: "Font picker"
|
|
18103
17801
|
},
|
|
18104
|
-
|
|
18105
17802
|
/**
|
|
18106
17803
|
* Whether this is a required field or not
|
|
18107
17804
|
*/
|
|
@@ -18110,17 +17807,14 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18110
17807
|
default: false
|
|
18111
17808
|
}
|
|
18112
17809
|
},
|
|
18113
|
-
|
|
18114
17810
|
data() {
|
|
18115
17811
|
return {
|
|
18116
17812
|
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']
|
|
18117
17813
|
};
|
|
18118
17814
|
},
|
|
18119
|
-
|
|
18120
17815
|
created() {
|
|
18121
17816
|
this.getFonts();
|
|
18122
17817
|
},
|
|
18123
|
-
|
|
18124
17818
|
computed: {
|
|
18125
17819
|
fontOptions() {
|
|
18126
17820
|
// Format font list into value/label object for select input
|
|
@@ -18131,16 +17825,13 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18131
17825
|
};
|
|
18132
17826
|
});
|
|
18133
17827
|
},
|
|
18134
|
-
|
|
18135
17828
|
inputVal: {
|
|
18136
17829
|
get() {
|
|
18137
17830
|
return this.value;
|
|
18138
17831
|
},
|
|
18139
|
-
|
|
18140
17832
|
set(value) {
|
|
18141
17833
|
this.$emit('input', value);
|
|
18142
17834
|
}
|
|
18143
|
-
|
|
18144
17835
|
}
|
|
18145
17836
|
},
|
|
18146
17837
|
methods: {
|
|
@@ -18151,7 +17842,6 @@ var WebFont = __webpack_require__("27d6");
|
|
|
18151
17842
|
}
|
|
18152
17843
|
});
|
|
18153
17844
|
}
|
|
18154
|
-
|
|
18155
17845
|
}
|
|
18156
17846
|
});
|
|
18157
17847
|
// CONCATENATED MODULE: ./src/components/forms/ToggleFontPicker.vue?vue&type=script&lang=js&
|
|
@@ -18176,11 +17866,10 @@ var ToggleFontPicker_component = normalizeComponent(
|
|
|
18176
17866
|
)
|
|
18177
17867
|
|
|
18178
17868
|
/* harmony default export */ var ToggleFontPicker = (ToggleFontPicker_component.exports);
|
|
18179
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17869
|
+
// 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&
|
|
18180
17870
|
var ToggleInputNumberUnitvue_type_template_id_2553a8be_render = function render() {
|
|
18181
17871
|
var _vm = this,
|
|
18182
|
-
|
|
18183
|
-
|
|
17872
|
+
_c = _vm._self._c;
|
|
18184
17873
|
return _c('div', {
|
|
18185
17874
|
staticClass: "toggle-input-container",
|
|
18186
17875
|
class: {
|
|
@@ -18227,7 +17916,6 @@ var ToggleInputNumberUnitvue_type_template_id_2553a8be_render = function render(
|
|
|
18227
17916
|
}
|
|
18228
17917
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
18229
17918
|
};
|
|
18230
|
-
|
|
18231
17919
|
var ToggleInputNumberUnitvue_type_template_id_2553a8be_staticRenderFns = [];
|
|
18232
17920
|
|
|
18233
17921
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputNumberUnit.vue?vue&type=template&id=2553a8be&
|
|
@@ -18287,13 +17975,11 @@ var ToggleInputNumberUnitvue_type_template_id_2553a8be_staticRenderFns = [];
|
|
|
18287
17975
|
required: false
|
|
18288
17976
|
}
|
|
18289
17977
|
},
|
|
18290
|
-
|
|
18291
17978
|
data() {
|
|
18292
17979
|
return {
|
|
18293
17980
|
inputActive: false
|
|
18294
17981
|
};
|
|
18295
17982
|
},
|
|
18296
|
-
|
|
18297
17983
|
computed: {
|
|
18298
17984
|
inputVal: {
|
|
18299
17985
|
get() {
|
|
@@ -18305,73 +17991,58 @@ var ToggleInputNumberUnitvue_type_template_id_2553a8be_staticRenderFns = [];
|
|
|
18305
17991
|
return this.value;
|
|
18306
17992
|
}
|
|
18307
17993
|
},
|
|
18308
|
-
|
|
18309
17994
|
set(modifiedValue) {
|
|
18310
17995
|
this.$emit('input', modifiedValue);
|
|
18311
17996
|
}
|
|
18312
|
-
|
|
18313
17997
|
},
|
|
18314
|
-
|
|
18315
17998
|
appendStringLength() {
|
|
18316
17999
|
var _this$appendString$le;
|
|
18317
|
-
|
|
18318
18000
|
return (_this$appendString$le = this.appendString.length) !== null && _this$appendString$le !== void 0 ? _this$appendString$le : 0;
|
|
18319
18001
|
},
|
|
18320
|
-
|
|
18321
18002
|
prependStringLength() {
|
|
18322
18003
|
var _this$prependString$l;
|
|
18323
|
-
|
|
18324
18004
|
return (_this$prependString$l = this.prependString.length) !== null && _this$prependString$l !== void 0 ? _this$prependString$l : 0;
|
|
18325
18005
|
}
|
|
18326
|
-
|
|
18327
18006
|
},
|
|
18328
18007
|
methods: {
|
|
18329
18008
|
onKeyup() {
|
|
18330
18009
|
// Remove any non-numbers from the input value
|
|
18331
18010
|
this.$emit('input', this.value.replace(/[^0-9]/g, ''));
|
|
18332
18011
|
},
|
|
18333
|
-
|
|
18334
18012
|
onFocus() {
|
|
18335
|
-
this.inputActive = true;
|
|
18336
|
-
|
|
18013
|
+
this.inputActive = true;
|
|
18014
|
+
// When the user clicks in the box, remove the append and/or prepend values
|
|
18337
18015
|
if (this.value != 0 && this.value != '') {
|
|
18338
18016
|
let tempValue = this.value;
|
|
18339
|
-
|
|
18340
18017
|
if (this.appendString) {
|
|
18341
18018
|
// First take off the appended string
|
|
18342
18019
|
tempValue = this.value.slice(0, -this.appendStringLength);
|
|
18343
18020
|
}
|
|
18344
|
-
|
|
18345
18021
|
if (this.prependString) {
|
|
18346
18022
|
// Then take off the prepended string
|
|
18347
18023
|
tempValue = tempValue.slice(this.prependStringLength, this.value.length);
|
|
18348
18024
|
}
|
|
18349
|
-
|
|
18350
18025
|
this.$emit('input', tempValue);
|
|
18351
18026
|
}
|
|
18352
18027
|
},
|
|
18353
|
-
|
|
18354
18028
|
onBlur() {
|
|
18355
|
-
this.inputActive = false;
|
|
18029
|
+
this.inputActive = false;
|
|
18356
18030
|
|
|
18031
|
+
// Don't add the unit if the value is left empty
|
|
18357
18032
|
if (this.value != '') {
|
|
18358
18033
|
// When the user clicks out of the box, add the prepend and/or append values
|
|
18359
18034
|
let tempValue = this.value;
|
|
18360
|
-
|
|
18361
18035
|
if (this.appendString) {
|
|
18362
18036
|
// First add the append string
|
|
18363
18037
|
tempValue += this.appendString;
|
|
18364
18038
|
}
|
|
18365
|
-
|
|
18366
18039
|
if (this.prependString) {
|
|
18367
18040
|
// Then add the prepend string
|
|
18368
18041
|
tempValue = this.prependString + tempValue;
|
|
18369
18042
|
}
|
|
18370
|
-
|
|
18371
18043
|
this.$emit('input', tempValue);
|
|
18372
18044
|
}
|
|
18373
18045
|
}
|
|
18374
|
-
|
|
18375
18046
|
}
|
|
18376
18047
|
});
|
|
18377
18048
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputNumberUnit.vue?vue&type=script&lang=js&
|
|
@@ -18396,11 +18067,10 @@ var ToggleInputNumberUnit_component = normalizeComponent(
|
|
|
18396
18067
|
)
|
|
18397
18068
|
|
|
18398
18069
|
/* harmony default export */ var ToggleInputNumberUnit = (ToggleInputNumberUnit_component.exports);
|
|
18399
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18070
|
+
// 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&
|
|
18400
18071
|
var ToggleInputLabelLeftvue_type_template_id_3d8b699e_render = function render() {
|
|
18401
18072
|
var _vm = this,
|
|
18402
|
-
|
|
18403
|
-
|
|
18073
|
+
_c = _vm._self._c;
|
|
18404
18074
|
return _c('div', {
|
|
18405
18075
|
staticClass: "toggle-formbuilder-input-outer-container"
|
|
18406
18076
|
}, [_c('div', {
|
|
@@ -18421,7 +18091,6 @@ var ToggleInputLabelLeftvue_type_template_id_3d8b699e_render = function render()
|
|
|
18421
18091
|
staticClass: "info"
|
|
18422
18092
|
}, [_vm._v(_vm._s(_vm.infoText))]) : _vm._e()], 1)])]);
|
|
18423
18093
|
};
|
|
18424
|
-
|
|
18425
18094
|
var ToggleInputLabelLeftvue_type_template_id_3d8b699e_staticRenderFns = [];
|
|
18426
18095
|
|
|
18427
18096
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputLabelLeft.vue?vue&type=template&id=3d8b699e&
|
|
@@ -18477,11 +18146,10 @@ var ToggleInputLabelLeft_component = normalizeComponent(
|
|
|
18477
18146
|
)
|
|
18478
18147
|
|
|
18479
18148
|
/* harmony default export */ var ToggleInputLabelLeft = (ToggleInputLabelLeft_component.exports);
|
|
18480
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18149
|
+
// 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&
|
|
18481
18150
|
var ToggleInputMultiSelectvue_type_template_id_2266e218_render = function render() {
|
|
18482
18151
|
var _vm = this,
|
|
18483
|
-
|
|
18484
|
-
|
|
18152
|
+
_c = _vm._self._c;
|
|
18485
18153
|
return _c('div', {
|
|
18486
18154
|
staticClass: "toggle-input-container",
|
|
18487
18155
|
class: {
|
|
@@ -18520,7 +18188,6 @@ var ToggleInputMultiSelectvue_type_template_id_2266e218_render = function render
|
|
|
18520
18188
|
}
|
|
18521
18189
|
}, [_vm._v(" " + _vm._s(_vm.errorMessage) + " ")]) : _vm._e()]);
|
|
18522
18190
|
};
|
|
18523
|
-
|
|
18524
18191
|
var ToggleInputMultiSelectvue_type_template_id_2266e218_staticRenderFns = [];
|
|
18525
18192
|
|
|
18526
18193
|
// CONCATENATED MODULE: ./src/components/forms/ToggleInputMultiSelect.vue?vue&type=template&id=2266e218&
|
|
@@ -18574,11 +18241,9 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('multi-select',
|
|
|
18574
18241
|
get() {
|
|
18575
18242
|
return this.value;
|
|
18576
18243
|
},
|
|
18577
|
-
|
|
18578
18244
|
set(value) {
|
|
18579
18245
|
this.$emit('input', value);
|
|
18580
18246
|
}
|
|
18581
|
-
|
|
18582
18247
|
}
|
|
18583
18248
|
}
|
|
18584
18249
|
});
|
|
@@ -18604,18 +18269,16 @@ var ToggleInputMultiSelect_component = normalizeComponent(
|
|
|
18604
18269
|
)
|
|
18605
18270
|
|
|
18606
18271
|
/* harmony default export */ var ToggleInputMultiSelect = (ToggleInputMultiSelect_component.exports);
|
|
18607
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18272
|
+
// 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&
|
|
18608
18273
|
var ToggleMetricSingleMetricvue_type_template_id_327815ad_render = function render() {
|
|
18609
18274
|
var _vm = this,
|
|
18610
|
-
|
|
18611
|
-
|
|
18275
|
+
_c = _vm._self._c;
|
|
18612
18276
|
return _c('div', [_c('h3', {
|
|
18613
18277
|
staticClass: "toggle-metric metric-label"
|
|
18614
18278
|
}, [_vm._v(_vm._s(_vm.label))]), _c('h1', {
|
|
18615
18279
|
staticClass: "toggle-metric metric-value"
|
|
18616
18280
|
}, [_vm._v(_vm._s(_vm.metricValue))])]);
|
|
18617
18281
|
};
|
|
18618
|
-
|
|
18619
18282
|
var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
18620
18283
|
|
|
18621
18284
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSingleMetric.vue?vue&type=template&id=327815ad&
|
|
@@ -18632,7 +18295,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18632
18295
|
type: String,
|
|
18633
18296
|
default: "ToggleMetricSingleMetric"
|
|
18634
18297
|
},
|
|
18635
|
-
|
|
18636
18298
|
/**
|
|
18637
18299
|
* Type of the value, this will affect on the format shown
|
|
18638
18300
|
*/
|
|
@@ -18642,7 +18304,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18642
18304
|
return ['text', 'number', 'percentage', 'currency'].indexOf(value) !== -1;
|
|
18643
18305
|
}
|
|
18644
18306
|
},
|
|
18645
|
-
|
|
18646
18307
|
/**
|
|
18647
18308
|
* Component's value
|
|
18648
18309
|
*/
|
|
@@ -18650,7 +18311,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18650
18311
|
type: [String, Number],
|
|
18651
18312
|
required: true
|
|
18652
18313
|
},
|
|
18653
|
-
|
|
18654
18314
|
/**
|
|
18655
18315
|
* Component's label
|
|
18656
18316
|
*/
|
|
@@ -18658,7 +18318,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18658
18318
|
type: String,
|
|
18659
18319
|
default: ""
|
|
18660
18320
|
},
|
|
18661
|
-
|
|
18662
18321
|
/**
|
|
18663
18322
|
* Currency Code
|
|
18664
18323
|
*/
|
|
@@ -18666,7 +18325,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18666
18325
|
type: String,
|
|
18667
18326
|
default: 'GBP'
|
|
18668
18327
|
},
|
|
18669
|
-
|
|
18670
18328
|
/**
|
|
18671
18329
|
* Currency locale
|
|
18672
18330
|
*/
|
|
@@ -18674,7 +18332,6 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18674
18332
|
type: String,
|
|
18675
18333
|
default: 'en-GB'
|
|
18676
18334
|
},
|
|
18677
|
-
|
|
18678
18335
|
/**
|
|
18679
18336
|
* Currency denomination
|
|
18680
18337
|
*/
|
|
@@ -18692,22 +18349,18 @@ var ToggleMetricSingleMetricvue_type_template_id_327815ad_staticRenderFns = [];
|
|
|
18692
18349
|
if (this.value === null) {
|
|
18693
18350
|
return "-";
|
|
18694
18351
|
}
|
|
18695
|
-
|
|
18696
18352
|
switch (this.type) {
|
|
18697
18353
|
case 'currency':
|
|
18698
18354
|
return (this.value / this.currencyDenomination).toLocaleString(this.currencyLocale, {
|
|
18699
18355
|
style: 'currency',
|
|
18700
18356
|
currency: this.currencyCode
|
|
18701
18357
|
});
|
|
18702
|
-
|
|
18703
18358
|
case 'percentage':
|
|
18704
18359
|
return `${this.value} %`;
|
|
18705
|
-
|
|
18706
18360
|
default:
|
|
18707
18361
|
return this.value.toLocaleString();
|
|
18708
18362
|
}
|
|
18709
18363
|
}
|
|
18710
|
-
|
|
18711
18364
|
}
|
|
18712
18365
|
});
|
|
18713
18366
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSingleMetric.vue?vue&type=script&lang=js&
|
|
@@ -18732,11 +18385,10 @@ var ToggleMetricSingleMetric_component = normalizeComponent(
|
|
|
18732
18385
|
)
|
|
18733
18386
|
|
|
18734
18387
|
/* harmony default export */ var ToggleMetricSingleMetric = (ToggleMetricSingleMetric_component.exports);
|
|
18735
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18388
|
+
// 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&
|
|
18736
18389
|
var ToggleMetricSparkLinevue_type_template_id_3daa6edc_render = function render() {
|
|
18737
18390
|
var _vm = this,
|
|
18738
|
-
|
|
18739
|
-
|
|
18391
|
+
_c = _vm._self._c;
|
|
18740
18392
|
return _c('div', [_c('ToggleBadge', {
|
|
18741
18393
|
staticStyle: {
|
|
18742
18394
|
"margin-bottom": "10px"
|
|
@@ -18764,7 +18416,6 @@ var ToggleMetricSparkLinevue_type_template_id_3daa6edc_render = function render(
|
|
|
18764
18416
|
}
|
|
18765
18417
|
})], 1);
|
|
18766
18418
|
};
|
|
18767
|
-
|
|
18768
18419
|
var ToggleMetricSparkLinevue_type_template_id_3daa6edc_staticRenderFns = [];
|
|
18769
18420
|
|
|
18770
18421
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSparkLine.vue?vue&type=template&id=3daa6edc&
|
|
@@ -18791,7 +18442,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18791
18442
|
type: String,
|
|
18792
18443
|
default: "ToggleMetricSingleMetric"
|
|
18793
18444
|
},
|
|
18794
|
-
|
|
18795
18445
|
/**
|
|
18796
18446
|
* The line chart height
|
|
18797
18447
|
*/
|
|
@@ -18799,7 +18449,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18799
18449
|
type: String,
|
|
18800
18450
|
default: "25%"
|
|
18801
18451
|
},
|
|
18802
|
-
|
|
18803
18452
|
/**
|
|
18804
18453
|
* The line chart width
|
|
18805
18454
|
*/
|
|
@@ -18807,7 +18456,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18807
18456
|
type: String,
|
|
18808
18457
|
default: "25%"
|
|
18809
18458
|
},
|
|
18810
|
-
|
|
18811
18459
|
/**
|
|
18812
18460
|
* Type of the value, this will affect on the format shown for the single value
|
|
18813
18461
|
*/
|
|
@@ -18817,7 +18465,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18817
18465
|
return ['text', 'number', 'percentage', 'currency'].indexOf(value) !== -1;
|
|
18818
18466
|
}
|
|
18819
18467
|
},
|
|
18820
|
-
|
|
18821
18468
|
/**
|
|
18822
18469
|
* single metric component value
|
|
18823
18470
|
*/
|
|
@@ -18825,7 +18472,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18825
18472
|
type: [String, Number],
|
|
18826
18473
|
required: true
|
|
18827
18474
|
},
|
|
18828
|
-
|
|
18829
18475
|
/**
|
|
18830
18476
|
* spark line component value
|
|
18831
18477
|
*/
|
|
@@ -18833,7 +18479,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18833
18479
|
type: Array,
|
|
18834
18480
|
required: true
|
|
18835
18481
|
},
|
|
18836
|
-
|
|
18837
18482
|
/**
|
|
18838
18483
|
* Component's label
|
|
18839
18484
|
*/
|
|
@@ -18841,7 +18486,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18841
18486
|
type: String,
|
|
18842
18487
|
required: true
|
|
18843
18488
|
},
|
|
18844
|
-
|
|
18845
18489
|
/**
|
|
18846
18490
|
* Currency Code
|
|
18847
18491
|
*/
|
|
@@ -18849,7 +18493,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18849
18493
|
type: String,
|
|
18850
18494
|
default: 'GBP'
|
|
18851
18495
|
},
|
|
18852
|
-
|
|
18853
18496
|
/**
|
|
18854
18497
|
* Currency locale
|
|
18855
18498
|
*/
|
|
@@ -18857,7 +18500,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18857
18500
|
type: String,
|
|
18858
18501
|
default: 'en-GB'
|
|
18859
18502
|
},
|
|
18860
|
-
|
|
18861
18503
|
/**
|
|
18862
18504
|
* Currency denomination
|
|
18863
18505
|
*/
|
|
@@ -18865,7 +18507,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18865
18507
|
type: Number,
|
|
18866
18508
|
default: 1
|
|
18867
18509
|
},
|
|
18868
|
-
|
|
18869
18510
|
/**
|
|
18870
18511
|
* Percentage base used to calculate the trend impact
|
|
18871
18512
|
*/
|
|
@@ -18873,7 +18514,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18873
18514
|
type: Number,
|
|
18874
18515
|
default: 0.5
|
|
18875
18516
|
},
|
|
18876
|
-
|
|
18877
18517
|
/**
|
|
18878
18518
|
* This prop will inverse the trend impact
|
|
18879
18519
|
*/
|
|
@@ -18919,15 +18559,12 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18919
18559
|
}
|
|
18920
18560
|
};
|
|
18921
18561
|
},
|
|
18922
|
-
|
|
18923
18562
|
mounted() {
|
|
18924
18563
|
this.updateTrend();
|
|
18925
18564
|
},
|
|
18926
|
-
|
|
18927
18565
|
updated() {
|
|
18928
18566
|
this.updateTrend();
|
|
18929
18567
|
},
|
|
18930
|
-
|
|
18931
18568
|
computed: {
|
|
18932
18569
|
/**
|
|
18933
18570
|
* Defines the badge class from the trending impact
|
|
@@ -18936,7 +18573,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18936
18573
|
trendImpactClass() {
|
|
18937
18574
|
return this.getTrendImpact() === 1 ? 'confirm' : this.getTrendImpact() === -1 ? 'abort' : this.getTrendImpact() === 0 ? 'warning' : 'empty';
|
|
18938
18575
|
},
|
|
18939
|
-
|
|
18940
18576
|
/**
|
|
18941
18577
|
* Defines the badge title from the trending impact
|
|
18942
18578
|
* @return String
|
|
@@ -18944,7 +18580,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18944
18580
|
trendImpactLabel() {
|
|
18945
18581
|
return this.getTrendImpact() === 1 ? 'Trending up' : this.getTrendImpact() === -1 ? 'Going down' : this.getTrendImpact() === 0 ? 'Keeping steady' : 'No data';
|
|
18946
18582
|
}
|
|
18947
|
-
|
|
18948
18583
|
},
|
|
18949
18584
|
methods: {
|
|
18950
18585
|
/**
|
|
@@ -18954,6 +18589,7 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18954
18589
|
getTrendImpact() {
|
|
18955
18590
|
if (this.sparkLineVal[0].data.length > 0) {
|
|
18956
18591
|
// if the value is an object, map to array
|
|
18592
|
+
|
|
18957
18593
|
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;
|
|
18958
18594
|
let result = this.calcTrendImpact(trendImpactVals, this.trend_impact_base);
|
|
18959
18595
|
if (this.inverse_trend_impact === true && result != false) return result * -1;else return result;
|
|
@@ -18961,33 +18597,27 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18961
18597
|
return false;
|
|
18962
18598
|
}
|
|
18963
18599
|
},
|
|
18964
|
-
|
|
18965
18600
|
/**
|
|
18966
18601
|
* Gets trend impact and udpates the chart with respective color
|
|
18967
18602
|
* @return Void
|
|
18968
18603
|
*/
|
|
18969
18604
|
updateTrend() {
|
|
18970
18605
|
this.trendImpact = this.getTrendImpact();
|
|
18971
|
-
|
|
18972
18606
|
switch (this.trendImpact) {
|
|
18973
18607
|
case 1:
|
|
18974
18608
|
this.updateChart([this.getColor('green')]);
|
|
18975
18609
|
break;
|
|
18976
|
-
|
|
18977
18610
|
case 0:
|
|
18978
18611
|
this.updateChart([this.getColor('amber')]);
|
|
18979
18612
|
break;
|
|
18980
|
-
|
|
18981
18613
|
case -1:
|
|
18982
18614
|
this.updateChart([this.getColor('red')]);
|
|
18983
18615
|
break;
|
|
18984
|
-
|
|
18985
18616
|
case false:
|
|
18986
18617
|
this.updateChart([this.getColor('gray')]);
|
|
18987
18618
|
break;
|
|
18988
18619
|
}
|
|
18989
18620
|
},
|
|
18990
|
-
|
|
18991
18621
|
/**
|
|
18992
18622
|
* Updates the spark line chart component colors
|
|
18993
18623
|
* @return Void
|
|
@@ -18997,7 +18627,6 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component('apexchart', vu
|
|
|
18997
18627
|
colors: colors
|
|
18998
18628
|
});
|
|
18999
18629
|
}
|
|
19000
|
-
|
|
19001
18630
|
}
|
|
19002
18631
|
});
|
|
19003
18632
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricSparkLine.vue?vue&type=script&lang=js&
|
|
@@ -19022,11 +18651,10 @@ var ToggleMetricSparkLine_component = normalizeComponent(
|
|
|
19022
18651
|
)
|
|
19023
18652
|
|
|
19024
18653
|
/* harmony default export */ var ToggleMetricSparkLine = (ToggleMetricSparkLine_component.exports);
|
|
19025
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18654
|
+
// 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&
|
|
19026
18655
|
var ToggleMetricBarChartvue_type_template_id_0137f388_render = function render() {
|
|
19027
18656
|
var _vm = this,
|
|
19028
|
-
|
|
19029
|
-
|
|
18657
|
+
_c = _vm._self._c;
|
|
19030
18658
|
return _c('div', [_c('h3', {
|
|
19031
18659
|
staticClass: "toggle-metric metric-label"
|
|
19032
18660
|
}, [_vm._v(_vm._s(_vm.label))]), _vm._v(" " + _vm._s(_vm.checkWindowSize) + " "), _c('apexchart', {
|
|
@@ -19038,7 +18666,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_render = function render()
|
|
|
19038
18666
|
}
|
|
19039
18667
|
})], 1);
|
|
19040
18668
|
};
|
|
19041
|
-
|
|
19042
18669
|
var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
19043
18670
|
|
|
19044
18671
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricBarChart.vue?vue&type=template&id=0137f388&
|
|
@@ -19054,7 +18681,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19054
18681
|
colors: {
|
|
19055
18682
|
type: [Array]
|
|
19056
18683
|
},
|
|
19057
|
-
|
|
19058
18684
|
/*
|
|
19059
18685
|
* Component's height
|
|
19060
18686
|
*/
|
|
@@ -19062,7 +18688,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19062
18688
|
type: String,
|
|
19063
18689
|
default: "100%"
|
|
19064
18690
|
},
|
|
19065
|
-
|
|
19066
18691
|
/*
|
|
19067
18692
|
* Component's values
|
|
19068
18693
|
*/
|
|
@@ -19070,7 +18695,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19070
18695
|
type: [Array],
|
|
19071
18696
|
required: true
|
|
19072
18697
|
},
|
|
19073
|
-
|
|
19074
18698
|
/*
|
|
19075
18699
|
* Component's labels
|
|
19076
18700
|
*/
|
|
@@ -19078,7 +18702,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19078
18702
|
type: String,
|
|
19079
18703
|
required: true
|
|
19080
18704
|
},
|
|
19081
|
-
|
|
19082
18705
|
/*
|
|
19083
18706
|
* Component's categories
|
|
19084
18707
|
*/
|
|
@@ -19160,7 +18783,6 @@ var ToggleMetricBarChartvue_type_template_id_0137f388_staticRenderFns = [];
|
|
|
19160
18783
|
}
|
|
19161
18784
|
};
|
|
19162
18785
|
}
|
|
19163
|
-
|
|
19164
18786
|
}
|
|
19165
18787
|
});
|
|
19166
18788
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricBarChart.vue?vue&type=script&lang=js&
|
|
@@ -19185,11 +18807,10 @@ var ToggleMetricBarChart_component = normalizeComponent(
|
|
|
19185
18807
|
)
|
|
19186
18808
|
|
|
19187
18809
|
/* harmony default export */ var ToggleMetricBarChart = (ToggleMetricBarChart_component.exports);
|
|
19188
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18810
|
+
// 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&
|
|
19189
18811
|
var ToggleMetricPieChartvue_type_template_id_5a723d6a_render = function render() {
|
|
19190
18812
|
var _vm = this,
|
|
19191
|
-
|
|
19192
|
-
|
|
18813
|
+
_c = _vm._self._c;
|
|
19193
18814
|
return _c('div', [_c('h3', {
|
|
19194
18815
|
staticClass: "toggle-metric metric-label"
|
|
19195
18816
|
}, [_vm._v(_vm._s(_vm.label))]), _c('apexchart', {
|
|
@@ -19201,7 +18822,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_render = function render()
|
|
|
19201
18822
|
}
|
|
19202
18823
|
})], 1);
|
|
19203
18824
|
};
|
|
19204
|
-
|
|
19205
18825
|
var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
19206
18826
|
|
|
19207
18827
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricPieChart.vue?vue&type=template&id=5a723d6a&
|
|
@@ -19217,7 +18837,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19217
18837
|
colors: {
|
|
19218
18838
|
type: [String]
|
|
19219
18839
|
},
|
|
19220
|
-
|
|
19221
18840
|
/**
|
|
19222
18841
|
* Component's values
|
|
19223
18842
|
*/
|
|
@@ -19225,7 +18844,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19225
18844
|
type: Array,
|
|
19226
18845
|
required: true
|
|
19227
18846
|
},
|
|
19228
|
-
|
|
19229
18847
|
/*
|
|
19230
18848
|
* Component's height
|
|
19231
18849
|
*/
|
|
@@ -19233,7 +18851,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19233
18851
|
type: String,
|
|
19234
18852
|
default: ""
|
|
19235
18853
|
},
|
|
19236
|
-
|
|
19237
18854
|
/**
|
|
19238
18855
|
* Component's main label
|
|
19239
18856
|
*/
|
|
@@ -19241,7 +18858,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19241
18858
|
type: String,
|
|
19242
18859
|
required: true
|
|
19243
18860
|
},
|
|
19244
|
-
|
|
19245
18861
|
/**
|
|
19246
18862
|
* Component's label for each value
|
|
19247
18863
|
*/
|
|
@@ -19296,7 +18912,6 @@ var ToggleMetricPieChartvue_type_template_id_5a723d6a_staticRenderFns = [];
|
|
|
19296
18912
|
}
|
|
19297
18913
|
};
|
|
19298
18914
|
}
|
|
19299
|
-
|
|
19300
18915
|
}
|
|
19301
18916
|
});
|
|
19302
18917
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricPieChart.vue?vue&type=script&lang=js&
|
|
@@ -19321,11 +18936,10 @@ var ToggleMetricPieChart_component = normalizeComponent(
|
|
|
19321
18936
|
)
|
|
19322
18937
|
|
|
19323
18938
|
/* harmony default export */ var ToggleMetricPieChart = (ToggleMetricPieChart_component.exports);
|
|
19324
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
18939
|
+
// 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&
|
|
19325
18940
|
var ToggleMetricFunnelChartvue_type_template_id_f3f5710a_render = function render() {
|
|
19326
18941
|
var _vm = this,
|
|
19327
|
-
|
|
19328
|
-
|
|
18942
|
+
_c = _vm._self._c;
|
|
19329
18943
|
return _c('div', {
|
|
19330
18944
|
staticClass: "toggle-metric-funnel-container"
|
|
19331
18945
|
}, [_c('div', {
|
|
@@ -19356,7 +18970,6 @@ var ToggleMetricFunnelChartvue_type_template_id_f3f5710a_render = function rende
|
|
|
19356
18970
|
staticClass: "funnel-single-metric-container"
|
|
19357
18971
|
}, [_vm._t("funnel4")], 2)])]);
|
|
19358
18972
|
};
|
|
19359
|
-
|
|
19360
18973
|
var ToggleMetricFunnelChartvue_type_template_id_f3f5710a_staticRenderFns = [];
|
|
19361
18974
|
|
|
19362
18975
|
// CONCATENATED MODULE: ./src/components/metrics/ToggleMetricFunnelChart.vue?vue&type=template&id=f3f5710a&
|
|
@@ -19519,7 +19132,6 @@ Object.defineProperty(external_commonjs_vue_commonjs2_vue_root_Vue_default.a.pro
|
|
|
19519
19132
|
get() {
|
|
19520
19133
|
return toggle_event_bus;
|
|
19521
19134
|
}
|
|
19522
|
-
|
|
19523
19135
|
});
|
|
19524
19136
|
/* harmony default export */ var src_0 = (Components);
|
|
19525
19137
|
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
@@ -19584,7 +19196,7 @@ module.exports = isSameDay
|
|
|
19584
19196
|
/***/ "fdbf":
|
|
19585
19197
|
/***/ (function(module, exports, __webpack_require__) {
|
|
19586
19198
|
|
|
19587
|
-
/* eslint-disable es
|
|
19199
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
19588
19200
|
var NATIVE_SYMBOL = __webpack_require__("04f8");
|
|
19589
19201
|
|
|
19590
19202
|
module.exports = NATIVE_SYMBOL
|