adata-ui 0.1.79 → 0.1.80

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.
@@ -194,36 +194,6 @@ module.exports = function (fn, that) {
194
194
  };
195
195
 
196
196
 
197
- /***/ }),
198
-
199
- /***/ "057f":
200
- /***/ (function(module, exports, __webpack_require__) {
201
-
202
- /* eslint-disable es/no-object-getownpropertynames -- safe */
203
- var classof = __webpack_require__("c6b6");
204
- var toIndexedObject = __webpack_require__("fc6a");
205
- var $getOwnPropertyNames = __webpack_require__("241c").f;
206
- var arraySlice = __webpack_require__("4dae");
207
-
208
- var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames
209
- ? Object.getOwnPropertyNames(window) : [];
210
-
211
- var getWindowNames = function (it) {
212
- try {
213
- return $getOwnPropertyNames(it);
214
- } catch (error) {
215
- return arraySlice(windowNames);
216
- }
217
- };
218
-
219
- // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
220
- module.exports.f = function getOwnPropertyNames(it) {
221
- return windowNames && classof(it) == 'Window'
222
- ? getWindowNames(it)
223
- : $getOwnPropertyNames(toIndexedObject(it));
224
- };
225
-
226
-
227
197
  /***/ }),
228
198
 
229
199
  /***/ "06cf":
@@ -1418,44 +1388,6 @@ module.exports = function (argument) {
1418
1388
  };
1419
1389
 
1420
1390
 
1421
- /***/ }),
1422
-
1423
- /***/ "3ca3":
1424
- /***/ (function(module, exports, __webpack_require__) {
1425
-
1426
- "use strict";
1427
-
1428
- var charAt = __webpack_require__("6547").charAt;
1429
- var toString = __webpack_require__("577e");
1430
- var InternalStateModule = __webpack_require__("69f3");
1431
- var defineIterator = __webpack_require__("7dd0");
1432
-
1433
- var STRING_ITERATOR = 'String Iterator';
1434
- var setInternalState = InternalStateModule.set;
1435
- var getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);
1436
-
1437
- // `String.prototype[@@iterator]` method
1438
- // https://tc39.es/ecma262/#sec-string.prototype-@@iterator
1439
- defineIterator(String, 'String', function (iterated) {
1440
- setInternalState(this, {
1441
- type: STRING_ITERATOR,
1442
- string: toString(iterated),
1443
- index: 0
1444
- });
1445
- // `%StringIteratorPrototype%.next` method
1446
- // https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next
1447
- }, function next() {
1448
- var state = getInternalState(this);
1449
- var string = state.string;
1450
- var index = state.index;
1451
- var point;
1452
- if (index >= string.length) return { value: undefined, done: true };
1453
- point = charAt(string, index);
1454
- state.index += point.length;
1455
- return { value: point, done: false };
1456
- });
1457
-
1458
-
1459
1391
  /***/ }),
1460
1392
 
1461
1393
  /***/ "3f8c":
@@ -1497,16 +1429,6 @@ module.exports = !fails(function () {
1497
1429
 
1498
1430
  // extracted by mini-css-extract-plugin
1499
1431
 
1500
- /***/ }),
1501
-
1502
- /***/ "428f":
1503
- /***/ (function(module, exports, __webpack_require__) {
1504
-
1505
- var global = __webpack_require__("da84");
1506
-
1507
- module.exports = global;
1508
-
1509
-
1510
1432
  /***/ }),
1511
1433
 
1512
1434
  /***/ "44ad":
@@ -1953,61 +1875,6 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
1953
1875
  });
1954
1876
 
1955
1877
 
1956
- /***/ }),
1957
-
1958
- /***/ "4df4":
1959
- /***/ (function(module, exports, __webpack_require__) {
1960
-
1961
- "use strict";
1962
-
1963
- var global = __webpack_require__("da84");
1964
- var bind = __webpack_require__("0366");
1965
- var call = __webpack_require__("c65b");
1966
- var toObject = __webpack_require__("7b0b");
1967
- var callWithSafeIterationClosing = __webpack_require__("9bdd");
1968
- var isArrayIteratorMethod = __webpack_require__("e95a");
1969
- var isConstructor = __webpack_require__("68ee");
1970
- var lengthOfArrayLike = __webpack_require__("07fa");
1971
- var createProperty = __webpack_require__("8418");
1972
- var getIterator = __webpack_require__("9a1f");
1973
- var getIteratorMethod = __webpack_require__("35a1");
1974
-
1975
- var Array = global.Array;
1976
-
1977
- // `Array.from` method implementation
1978
- // https://tc39.es/ecma262/#sec-array.from
1979
- module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {
1980
- var O = toObject(arrayLike);
1981
- var IS_CONSTRUCTOR = isConstructor(this);
1982
- var argumentsLength = arguments.length;
1983
- var mapfn = argumentsLength > 1 ? arguments[1] : undefined;
1984
- var mapping = mapfn !== undefined;
1985
- if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined);
1986
- var iteratorMethod = getIteratorMethod(O);
1987
- var index = 0;
1988
- var length, result, step, iterator, next, value;
1989
- // if the target is not iterable or it's an array with the default iterator - use a simple case
1990
- if (iteratorMethod && !(this == Array && isArrayIteratorMethod(iteratorMethod))) {
1991
- iterator = getIterator(O, iteratorMethod);
1992
- next = iterator.next;
1993
- result = IS_CONSTRUCTOR ? new this() : [];
1994
- for (;!(step = call(next, iterator)).done; index++) {
1995
- value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value;
1996
- createProperty(result, index, value);
1997
- }
1998
- } else {
1999
- length = lengthOfArrayLike(O);
2000
- result = IS_CONSTRUCTOR ? new this(length) : Array(length);
2001
- for (;length > index; index++) {
2002
- value = mapping ? mapfn(O[index], index) : O[index];
2003
- createProperty(result, index, value);
2004
- }
2005
- }
2006
- result.length = index;
2007
- return result;
2008
- };
2009
-
2010
-
2011
1878
  /***/ }),
2012
1879
 
2013
1880
  /***/ "5087":
@@ -2610,6 +2477,13 @@ module.exports = {
2610
2477
  };
2611
2478
 
2612
2479
 
2480
+ /***/ }),
2481
+
2482
+ /***/ "6eb5":
2483
+ /***/ (function(module, exports, __webpack_require__) {
2484
+
2485
+ // extracted by mini-css-extract-plugin
2486
+
2613
2487
  /***/ }),
2614
2488
 
2615
2489
  /***/ "6eeb":
@@ -2715,24 +2589,6 @@ exports.f = Object.getOwnPropertySymbols;
2715
2589
  /* unused harmony reexport * */
2716
2590
 
2717
2591
 
2718
- /***/ }),
2719
-
2720
- /***/ "746f":
2721
- /***/ (function(module, exports, __webpack_require__) {
2722
-
2723
- var path = __webpack_require__("428f");
2724
- var hasOwn = __webpack_require__("1a2d");
2725
- var wrappedWellKnownSymbolModule = __webpack_require__("e538");
2726
- var defineProperty = __webpack_require__("9bf2").f;
2727
-
2728
- module.exports = function (NAME) {
2729
- var Symbol = path.Symbol || (path.Symbol = {});
2730
- if (!hasOwn(Symbol, NAME)) defineProperty(Symbol, NAME, {
2731
- value: wrappedWellKnownSymbolModule.f(NAME)
2732
- });
2733
- };
2734
-
2735
-
2736
2592
  /***/ }),
2737
2593
 
2738
2594
  /***/ "7839":
@@ -2910,113 +2766,6 @@ $({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
2910
2766
  addToUnscopables(FIND);
2911
2767
 
2912
2768
 
2913
- /***/ }),
2914
-
2915
- /***/ "7dd0":
2916
- /***/ (function(module, exports, __webpack_require__) {
2917
-
2918
- "use strict";
2919
-
2920
- var $ = __webpack_require__("23e7");
2921
- var call = __webpack_require__("c65b");
2922
- var IS_PURE = __webpack_require__("c430");
2923
- var FunctionName = __webpack_require__("5e77");
2924
- var isCallable = __webpack_require__("1626");
2925
- var createIteratorConstructor = __webpack_require__("9ed3");
2926
- var getPrototypeOf = __webpack_require__("e163");
2927
- var setPrototypeOf = __webpack_require__("d2bb");
2928
- var setToStringTag = __webpack_require__("d44e");
2929
- var createNonEnumerableProperty = __webpack_require__("9112");
2930
- var redefine = __webpack_require__("6eeb");
2931
- var wellKnownSymbol = __webpack_require__("b622");
2932
- var Iterators = __webpack_require__("3f8c");
2933
- var IteratorsCore = __webpack_require__("ae93");
2934
-
2935
- var PROPER_FUNCTION_NAME = FunctionName.PROPER;
2936
- var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
2937
- var IteratorPrototype = IteratorsCore.IteratorPrototype;
2938
- var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
2939
- var ITERATOR = wellKnownSymbol('iterator');
2940
- var KEYS = 'keys';
2941
- var VALUES = 'values';
2942
- var ENTRIES = 'entries';
2943
-
2944
- var returnThis = function () { return this; };
2945
-
2946
- module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
2947
- createIteratorConstructor(IteratorConstructor, NAME, next);
2948
-
2949
- var getIterationMethod = function (KIND) {
2950
- if (KIND === DEFAULT && defaultIterator) return defaultIterator;
2951
- if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];
2952
- switch (KIND) {
2953
- case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
2954
- case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
2955
- case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
2956
- } return function () { return new IteratorConstructor(this); };
2957
- };
2958
-
2959
- var TO_STRING_TAG = NAME + ' Iterator';
2960
- var INCORRECT_VALUES_NAME = false;
2961
- var IterablePrototype = Iterable.prototype;
2962
- var nativeIterator = IterablePrototype[ITERATOR]
2963
- || IterablePrototype['@@iterator']
2964
- || DEFAULT && IterablePrototype[DEFAULT];
2965
- var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
2966
- var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
2967
- var CurrentIteratorPrototype, methods, KEY;
2968
-
2969
- // fix native
2970
- if (anyNativeIterator) {
2971
- CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
2972
- if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
2973
- if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
2974
- if (setPrototypeOf) {
2975
- setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);
2976
- } else if (!isCallable(CurrentIteratorPrototype[ITERATOR])) {
2977
- redefine(CurrentIteratorPrototype, ITERATOR, returnThis);
2978
- }
2979
- }
2980
- // Set @@toStringTag to native iterators
2981
- setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);
2982
- if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;
2983
- }
2984
- }
2985
-
2986
- // fix Array.prototype.{ values, @@iterator }.name in V8 / FF
2987
- if (PROPER_FUNCTION_NAME && DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
2988
- if (!IS_PURE && CONFIGURABLE_FUNCTION_NAME) {
2989
- createNonEnumerableProperty(IterablePrototype, 'name', VALUES);
2990
- } else {
2991
- INCORRECT_VALUES_NAME = true;
2992
- defaultIterator = function values() { return call(nativeIterator, this); };
2993
- }
2994
- }
2995
-
2996
- // export additional methods
2997
- if (DEFAULT) {
2998
- methods = {
2999
- values: getIterationMethod(VALUES),
3000
- keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
3001
- entries: getIterationMethod(ENTRIES)
3002
- };
3003
- if (FORCED) for (KEY in methods) {
3004
- if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
3005
- redefine(IterablePrototype, KEY, methods[KEY]);
3006
- }
3007
- } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
3008
- }
3009
-
3010
- // define iterator
3011
- if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {
3012
- redefine(IterablePrototype, ITERATOR, defaultIterator, { name: DEFAULT });
3013
- }
3014
- Iterators[NAME] = defaultIterator;
3015
-
3016
- return methods;
3017
- };
3018
-
3019
-
3020
2769
  /***/ }),
3021
2770
 
3022
2771
  /***/ "7ddc":
@@ -4338,24 +4087,6 @@ module.exports = function (argument, usingIterator) {
4338
4087
  /* unused harmony reexport * */
4339
4088
 
4340
4089
 
4341
- /***/ }),
4342
-
4343
- /***/ "9bdd":
4344
- /***/ (function(module, exports, __webpack_require__) {
4345
-
4346
- var anObject = __webpack_require__("825a");
4347
- var iteratorClose = __webpack_require__("2a62");
4348
-
4349
- // call something on iterator step with safe closing on error
4350
- module.exports = function (iterator, fn, value, ENTRIES) {
4351
- try {
4352
- return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);
4353
- } catch (error) {
4354
- iteratorClose(iterator, 'throw', error);
4355
- }
4356
- };
4357
-
4358
-
4359
4090
  /***/ }),
4360
4091
 
4361
4092
  /***/ "9bf2":
@@ -4407,30 +4138,6 @@ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P
4407
4138
  };
4408
4139
 
4409
4140
 
4410
- /***/ }),
4411
-
4412
- /***/ "9ed3":
4413
- /***/ (function(module, exports, __webpack_require__) {
4414
-
4415
- "use strict";
4416
-
4417
- var IteratorPrototype = __webpack_require__("ae93").IteratorPrototype;
4418
- var create = __webpack_require__("7c73");
4419
- var createPropertyDescriptor = __webpack_require__("5c6c");
4420
- var setToStringTag = __webpack_require__("d44e");
4421
- var Iterators = __webpack_require__("3f8c");
4422
-
4423
- var returnThis = function () { return this; };
4424
-
4425
- module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
4426
- var TO_STRING_TAG = NAME + ' Iterator';
4427
- IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
4428
- setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
4429
- Iterators[TO_STRING_TAG] = returnThis;
4430
- return IteratorConstructor;
4431
- };
4432
-
4433
-
4434
4141
  /***/ }),
4435
4142
 
4436
4143
  /***/ "9f7f":
@@ -6007,412 +5714,58 @@ module.exports = /web0s(?!.*chrome)/i.test(userAgent);
6007
5714
 
6008
5715
  /***/ }),
6009
5716
 
6010
- /***/ "a4d3":
5717
+ /***/ "a640":
6011
5718
  /***/ (function(module, exports, __webpack_require__) {
6012
5719
 
6013
5720
  "use strict";
6014
5721
 
6015
- var $ = __webpack_require__("23e7");
6016
- var global = __webpack_require__("da84");
6017
- var getBuiltIn = __webpack_require__("d066");
6018
- var apply = __webpack_require__("2ba4");
6019
- var call = __webpack_require__("c65b");
6020
- var uncurryThis = __webpack_require__("e330");
6021
- var IS_PURE = __webpack_require__("c430");
6022
- var DESCRIPTORS = __webpack_require__("83ab");
6023
- var NATIVE_SYMBOL = __webpack_require__("4930");
6024
5722
  var fails = __webpack_require__("d039");
6025
- var hasOwn = __webpack_require__("1a2d");
6026
- var isArray = __webpack_require__("e8b5");
6027
- var isCallable = __webpack_require__("1626");
6028
- var isObject = __webpack_require__("861d");
6029
- var isPrototypeOf = __webpack_require__("3a9b");
6030
- var isSymbol = __webpack_require__("d9b5");
6031
- var anObject = __webpack_require__("825a");
6032
- var toObject = __webpack_require__("7b0b");
6033
- var toIndexedObject = __webpack_require__("fc6a");
6034
- var toPropertyKey = __webpack_require__("a04b");
6035
- var $toString = __webpack_require__("577e");
6036
- var createPropertyDescriptor = __webpack_require__("5c6c");
6037
- var nativeObjectCreate = __webpack_require__("7c73");
6038
- var objectKeys = __webpack_require__("df75");
6039
- var getOwnPropertyNamesModule = __webpack_require__("241c");
6040
- var getOwnPropertyNamesExternal = __webpack_require__("057f");
6041
- var getOwnPropertySymbolsModule = __webpack_require__("7418");
6042
- var getOwnPropertyDescriptorModule = __webpack_require__("06cf");
6043
- var definePropertyModule = __webpack_require__("9bf2");
6044
- var definePropertiesModule = __webpack_require__("37e8");
6045
- var propertyIsEnumerableModule = __webpack_require__("d1e7");
6046
- var arraySlice = __webpack_require__("f36a");
6047
- var redefine = __webpack_require__("6eeb");
6048
- var shared = __webpack_require__("5692");
6049
- var sharedKey = __webpack_require__("f772");
6050
- var hiddenKeys = __webpack_require__("d012");
6051
- var uid = __webpack_require__("90e3");
6052
- var wellKnownSymbol = __webpack_require__("b622");
6053
- var wrappedWellKnownSymbolModule = __webpack_require__("e538");
6054
- var defineWellKnownSymbol = __webpack_require__("746f");
6055
- var setToStringTag = __webpack_require__("d44e");
6056
- var InternalStateModule = __webpack_require__("69f3");
6057
- var $forEach = __webpack_require__("b727").forEach;
6058
-
6059
- var HIDDEN = sharedKey('hidden');
6060
- var SYMBOL = 'Symbol';
6061
- var PROTOTYPE = 'prototype';
6062
- var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
6063
-
6064
- var setInternalState = InternalStateModule.set;
6065
- var getInternalState = InternalStateModule.getterFor(SYMBOL);
6066
-
6067
- var ObjectPrototype = Object[PROTOTYPE];
6068
- var $Symbol = global.Symbol;
6069
- var SymbolPrototype = $Symbol && $Symbol[PROTOTYPE];
6070
- var TypeError = global.TypeError;
6071
- var QObject = global.QObject;
6072
- var $stringify = getBuiltIn('JSON', 'stringify');
6073
- var nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
6074
- var nativeDefineProperty = definePropertyModule.f;
6075
- var nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f;
6076
- var nativePropertyIsEnumerable = propertyIsEnumerableModule.f;
6077
- var push = uncurryThis([].push);
6078
-
6079
- var AllSymbols = shared('symbols');
6080
- var ObjectPrototypeSymbols = shared('op-symbols');
6081
- var StringToSymbolRegistry = shared('string-to-symbol-registry');
6082
- var SymbolToStringRegistry = shared('symbol-to-string-registry');
6083
- var WellKnownSymbolsStore = shared('wks');
6084
5723
 
6085
- // Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173
6086
- var USE_SETTER = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;
6087
-
6088
- // fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687
6089
- var setSymbolDescriptor = DESCRIPTORS && fails(function () {
6090
- return nativeObjectCreate(nativeDefineProperty({}, 'a', {
6091
- get: function () { return nativeDefineProperty(this, 'a', { value: 7 }).a; }
6092
- })).a != 7;
6093
- }) ? function (O, P, Attributes) {
6094
- var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor(ObjectPrototype, P);
6095
- if (ObjectPrototypeDescriptor) delete ObjectPrototype[P];
6096
- nativeDefineProperty(O, P, Attributes);
6097
- if (ObjectPrototypeDescriptor && O !== ObjectPrototype) {
6098
- nativeDefineProperty(ObjectPrototype, P, ObjectPrototypeDescriptor);
6099
- }
6100
- } : nativeDefineProperty;
6101
-
6102
- var wrap = function (tag, description) {
6103
- var symbol = AllSymbols[tag] = nativeObjectCreate(SymbolPrototype);
6104
- setInternalState(symbol, {
6105
- type: SYMBOL,
6106
- tag: tag,
6107
- description: description
5724
+ module.exports = function (METHOD_NAME, argument) {
5725
+ var method = [][METHOD_NAME];
5726
+ return !!method && fails(function () {
5727
+ // eslint-disable-next-line no-useless-call,no-throw-literal -- required for testing
5728
+ method.call(null, argument || function () { throw 1; }, 1);
6108
5729
  });
6109
- if (!DESCRIPTORS) symbol.description = description;
6110
- return symbol;
6111
5730
  };
6112
5731
 
6113
- var $defineProperty = function defineProperty(O, P, Attributes) {
6114
- if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes);
6115
- anObject(O);
6116
- var key = toPropertyKey(P);
6117
- anObject(Attributes);
6118
- if (hasOwn(AllSymbols, key)) {
6119
- if (!Attributes.enumerable) {
6120
- if (!hasOwn(O, HIDDEN)) nativeDefineProperty(O, HIDDEN, createPropertyDescriptor(1, {}));
6121
- O[HIDDEN][key] = true;
6122
- } else {
6123
- if (hasOwn(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false;
6124
- Attributes = nativeObjectCreate(Attributes, { enumerable: createPropertyDescriptor(0, false) });
6125
- } return setSymbolDescriptor(O, key, Attributes);
6126
- } return nativeDefineProperty(O, key, Attributes);
6127
- };
6128
5732
 
6129
- var $defineProperties = function defineProperties(O, Properties) {
6130
- anObject(O);
6131
- var properties = toIndexedObject(Properties);
6132
- var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties));
6133
- $forEach(keys, function (key) {
6134
- if (!DESCRIPTORS || call($propertyIsEnumerable, properties, key)) $defineProperty(O, key, properties[key]);
6135
- });
6136
- return O;
6137
- };
5733
+ /***/ }),
6138
5734
 
6139
- var $create = function create(O, Properties) {
6140
- return Properties === undefined ? nativeObjectCreate(O) : $defineProperties(nativeObjectCreate(O), Properties);
6141
- };
5735
+ /***/ "a9e3":
5736
+ /***/ (function(module, exports, __webpack_require__) {
6142
5737
 
6143
- var $propertyIsEnumerable = function propertyIsEnumerable(V) {
6144
- var P = toPropertyKey(V);
6145
- var enumerable = call(nativePropertyIsEnumerable, this, P);
6146
- if (this === ObjectPrototype && hasOwn(AllSymbols, P) && !hasOwn(ObjectPrototypeSymbols, P)) return false;
6147
- return enumerable || !hasOwn(this, P) || !hasOwn(AllSymbols, P) || hasOwn(this, HIDDEN) && this[HIDDEN][P]
6148
- ? enumerable : true;
6149
- };
5738
+ "use strict";
6150
5739
 
6151
- var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) {
6152
- var it = toIndexedObject(O);
6153
- var key = toPropertyKey(P);
6154
- if (it === ObjectPrototype && hasOwn(AllSymbols, key) && !hasOwn(ObjectPrototypeSymbols, key)) return;
6155
- var descriptor = nativeGetOwnPropertyDescriptor(it, key);
6156
- if (descriptor && hasOwn(AllSymbols, key) && !(hasOwn(it, HIDDEN) && it[HIDDEN][key])) {
6157
- descriptor.enumerable = true;
6158
- }
6159
- return descriptor;
6160
- };
5740
+ var DESCRIPTORS = __webpack_require__("83ab");
5741
+ var global = __webpack_require__("da84");
5742
+ var uncurryThis = __webpack_require__("e330");
5743
+ var isForced = __webpack_require__("94ca");
5744
+ var redefine = __webpack_require__("6eeb");
5745
+ var hasOwn = __webpack_require__("1a2d");
5746
+ var inheritIfRequired = __webpack_require__("7156");
5747
+ var isPrototypeOf = __webpack_require__("3a9b");
5748
+ var isSymbol = __webpack_require__("d9b5");
5749
+ var toPrimitive = __webpack_require__("c04e");
5750
+ var fails = __webpack_require__("d039");
5751
+ var getOwnPropertyNames = __webpack_require__("241c").f;
5752
+ var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
5753
+ var defineProperty = __webpack_require__("9bf2").f;
5754
+ var thisNumberValue = __webpack_require__("408a");
5755
+ var trim = __webpack_require__("58a8").trim;
6161
5756
 
6162
- var $getOwnPropertyNames = function getOwnPropertyNames(O) {
6163
- var names = nativeGetOwnPropertyNames(toIndexedObject(O));
6164
- var result = [];
6165
- $forEach(names, function (key) {
6166
- if (!hasOwn(AllSymbols, key) && !hasOwn(hiddenKeys, key)) push(result, key);
6167
- });
6168
- return result;
6169
- };
6170
-
6171
- var $getOwnPropertySymbols = function getOwnPropertySymbols(O) {
6172
- var IS_OBJECT_PROTOTYPE = O === ObjectPrototype;
6173
- var names = nativeGetOwnPropertyNames(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O));
6174
- var result = [];
6175
- $forEach(names, function (key) {
6176
- if (hasOwn(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || hasOwn(ObjectPrototype, key))) {
6177
- push(result, AllSymbols[key]);
6178
- }
6179
- });
6180
- return result;
6181
- };
6182
-
6183
- // `Symbol` constructor
6184
- // https://tc39.es/ecma262/#sec-symbol-constructor
6185
- if (!NATIVE_SYMBOL) {
6186
- $Symbol = function Symbol() {
6187
- if (isPrototypeOf(SymbolPrototype, this)) throw TypeError('Symbol is not a constructor');
6188
- var description = !arguments.length || arguments[0] === undefined ? undefined : $toString(arguments[0]);
6189
- var tag = uid(description);
6190
- var setter = function (value) {
6191
- if (this === ObjectPrototype) call(setter, ObjectPrototypeSymbols, value);
6192
- if (hasOwn(this, HIDDEN) && hasOwn(this[HIDDEN], tag)) this[HIDDEN][tag] = false;
6193
- setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value));
6194
- };
6195
- if (DESCRIPTORS && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, { configurable: true, set: setter });
6196
- return wrap(tag, description);
6197
- };
6198
-
6199
- SymbolPrototype = $Symbol[PROTOTYPE];
6200
-
6201
- redefine(SymbolPrototype, 'toString', function toString() {
6202
- return getInternalState(this).tag;
6203
- });
6204
-
6205
- redefine($Symbol, 'withoutSetter', function (description) {
6206
- return wrap(uid(description), description);
6207
- });
6208
-
6209
- propertyIsEnumerableModule.f = $propertyIsEnumerable;
6210
- definePropertyModule.f = $defineProperty;
6211
- definePropertiesModule.f = $defineProperties;
6212
- getOwnPropertyDescriptorModule.f = $getOwnPropertyDescriptor;
6213
- getOwnPropertyNamesModule.f = getOwnPropertyNamesExternal.f = $getOwnPropertyNames;
6214
- getOwnPropertySymbolsModule.f = $getOwnPropertySymbols;
6215
-
6216
- wrappedWellKnownSymbolModule.f = function (name) {
6217
- return wrap(wellKnownSymbol(name), name);
6218
- };
6219
-
6220
- if (DESCRIPTORS) {
6221
- // https://github.com/tc39/proposal-Symbol-description
6222
- nativeDefineProperty(SymbolPrototype, 'description', {
6223
- configurable: true,
6224
- get: function description() {
6225
- return getInternalState(this).description;
6226
- }
6227
- });
6228
- if (!IS_PURE) {
6229
- redefine(ObjectPrototype, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true });
6230
- }
6231
- }
6232
- }
6233
-
6234
- $({ global: true, wrap: true, forced: !NATIVE_SYMBOL, sham: !NATIVE_SYMBOL }, {
6235
- Symbol: $Symbol
6236
- });
6237
-
6238
- $forEach(objectKeys(WellKnownSymbolsStore), function (name) {
6239
- defineWellKnownSymbol(name);
6240
- });
6241
-
6242
- $({ target: SYMBOL, stat: true, forced: !NATIVE_SYMBOL }, {
6243
- // `Symbol.for` method
6244
- // https://tc39.es/ecma262/#sec-symbol.for
6245
- 'for': function (key) {
6246
- var string = $toString(key);
6247
- if (hasOwn(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string];
6248
- var symbol = $Symbol(string);
6249
- StringToSymbolRegistry[string] = symbol;
6250
- SymbolToStringRegistry[symbol] = string;
6251
- return symbol;
6252
- },
6253
- // `Symbol.keyFor` method
6254
- // https://tc39.es/ecma262/#sec-symbol.keyfor
6255
- keyFor: function keyFor(sym) {
6256
- if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol');
6257
- if (hasOwn(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym];
6258
- },
6259
- useSetter: function () { USE_SETTER = true; },
6260
- useSimple: function () { USE_SETTER = false; }
6261
- });
6262
-
6263
- $({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL, sham: !DESCRIPTORS }, {
6264
- // `Object.create` method
6265
- // https://tc39.es/ecma262/#sec-object.create
6266
- create: $create,
6267
- // `Object.defineProperty` method
6268
- // https://tc39.es/ecma262/#sec-object.defineproperty
6269
- defineProperty: $defineProperty,
6270
- // `Object.defineProperties` method
6271
- // https://tc39.es/ecma262/#sec-object.defineproperties
6272
- defineProperties: $defineProperties,
6273
- // `Object.getOwnPropertyDescriptor` method
6274
- // https://tc39.es/ecma262/#sec-object.getownpropertydescriptors
6275
- getOwnPropertyDescriptor: $getOwnPropertyDescriptor
6276
- });
6277
-
6278
- $({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL }, {
6279
- // `Object.getOwnPropertyNames` method
6280
- // https://tc39.es/ecma262/#sec-object.getownpropertynames
6281
- getOwnPropertyNames: $getOwnPropertyNames,
6282
- // `Object.getOwnPropertySymbols` method
6283
- // https://tc39.es/ecma262/#sec-object.getownpropertysymbols
6284
- getOwnPropertySymbols: $getOwnPropertySymbols
6285
- });
6286
-
6287
- // Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives
6288
- // https://bugs.chromium.org/p/v8/issues/detail?id=3443
6289
- $({ target: 'Object', stat: true, forced: fails(function () { getOwnPropertySymbolsModule.f(1); }) }, {
6290
- getOwnPropertySymbols: function getOwnPropertySymbols(it) {
6291
- return getOwnPropertySymbolsModule.f(toObject(it));
6292
- }
6293
- });
6294
-
6295
- // `JSON.stringify` method behavior with symbols
6296
- // https://tc39.es/ecma262/#sec-json.stringify
6297
- if ($stringify) {
6298
- var FORCED_JSON_STRINGIFY = !NATIVE_SYMBOL || fails(function () {
6299
- var symbol = $Symbol();
6300
- // MS Edge converts symbol values to JSON as {}
6301
- return $stringify([symbol]) != '[null]'
6302
- // WebKit converts symbol values to JSON as null
6303
- || $stringify({ a: symbol }) != '{}'
6304
- // V8 throws on boxed symbols
6305
- || $stringify(Object(symbol)) != '{}';
6306
- });
6307
-
6308
- $({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, {
6309
- // eslint-disable-next-line no-unused-vars -- required for `.length`
6310
- stringify: function stringify(it, replacer, space) {
6311
- var args = arraySlice(arguments);
6312
- var $replacer = replacer;
6313
- if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined
6314
- if (!isArray(replacer)) replacer = function (key, value) {
6315
- if (isCallable($replacer)) value = call($replacer, this, key, value);
6316
- if (!isSymbol(value)) return value;
6317
- };
6318
- args[1] = replacer;
6319
- return apply($stringify, null, args);
6320
- }
6321
- });
6322
- }
6323
-
6324
- // `Symbol.prototype[@@toPrimitive]` method
6325
- // https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive
6326
- if (!SymbolPrototype[TO_PRIMITIVE]) {
6327
- var valueOf = SymbolPrototype.valueOf;
6328
- // eslint-disable-next-line no-unused-vars -- required for .length
6329
- redefine(SymbolPrototype, TO_PRIMITIVE, function (hint) {
6330
- // TODO: improve hint logic
6331
- return call(valueOf, this);
6332
- });
6333
- }
6334
- // `Symbol.prototype[@@toStringTag]` property
6335
- // https://tc39.es/ecma262/#sec-symbol.prototype-@@tostringtag
6336
- setToStringTag($Symbol, SYMBOL);
6337
-
6338
- hiddenKeys[HIDDEN] = true;
6339
-
6340
-
6341
- /***/ }),
6342
-
6343
- /***/ "a630":
6344
- /***/ (function(module, exports, __webpack_require__) {
6345
-
6346
- var $ = __webpack_require__("23e7");
6347
- var from = __webpack_require__("4df4");
6348
- var checkCorrectnessOfIteration = __webpack_require__("1c7e");
6349
-
6350
- var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
6351
- // eslint-disable-next-line es/no-array-from -- required for testing
6352
- Array.from(iterable);
6353
- });
6354
-
6355
- // `Array.from` method
6356
- // https://tc39.es/ecma262/#sec-array.from
6357
- $({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
6358
- from: from
6359
- });
6360
-
6361
-
6362
- /***/ }),
6363
-
6364
- /***/ "a640":
6365
- /***/ (function(module, exports, __webpack_require__) {
6366
-
6367
- "use strict";
6368
-
6369
- var fails = __webpack_require__("d039");
6370
-
6371
- module.exports = function (METHOD_NAME, argument) {
6372
- var method = [][METHOD_NAME];
6373
- return !!method && fails(function () {
6374
- // eslint-disable-next-line no-useless-call,no-throw-literal -- required for testing
6375
- method.call(null, argument || function () { throw 1; }, 1);
6376
- });
6377
- };
6378
-
6379
-
6380
- /***/ }),
6381
-
6382
- /***/ "a9e3":
6383
- /***/ (function(module, exports, __webpack_require__) {
6384
-
6385
- "use strict";
6386
-
6387
- var DESCRIPTORS = __webpack_require__("83ab");
6388
- var global = __webpack_require__("da84");
6389
- var uncurryThis = __webpack_require__("e330");
6390
- var isForced = __webpack_require__("94ca");
6391
- var redefine = __webpack_require__("6eeb");
6392
- var hasOwn = __webpack_require__("1a2d");
6393
- var inheritIfRequired = __webpack_require__("7156");
6394
- var isPrototypeOf = __webpack_require__("3a9b");
6395
- var isSymbol = __webpack_require__("d9b5");
6396
- var toPrimitive = __webpack_require__("c04e");
6397
- var fails = __webpack_require__("d039");
6398
- var getOwnPropertyNames = __webpack_require__("241c").f;
6399
- var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
6400
- var defineProperty = __webpack_require__("9bf2").f;
6401
- var thisNumberValue = __webpack_require__("408a");
6402
- var trim = __webpack_require__("58a8").trim;
6403
-
6404
- var NUMBER = 'Number';
6405
- var NativeNumber = global[NUMBER];
6406
- var NumberPrototype = NativeNumber.prototype;
6407
- var TypeError = global.TypeError;
6408
- var arraySlice = uncurryThis(''.slice);
6409
- var charCodeAt = uncurryThis(''.charCodeAt);
6410
-
6411
- // `ToNumeric` abstract operation
6412
- // https://tc39.es/ecma262/#sec-tonumeric
6413
- var toNumeric = function (value) {
6414
- var primValue = toPrimitive(value, 'number');
6415
- return typeof primValue == 'bigint' ? primValue : toNumber(primValue);
5757
+ var NUMBER = 'Number';
5758
+ var NativeNumber = global[NUMBER];
5759
+ var NumberPrototype = NativeNumber.prototype;
5760
+ var TypeError = global.TypeError;
5761
+ var arraySlice = uncurryThis(''.slice);
5762
+ var charCodeAt = uncurryThis(''.charCodeAt);
5763
+
5764
+ // `ToNumeric` abstract operation
5765
+ // https://tc39.es/ecma262/#sec-tonumeric
5766
+ var toNumeric = function (value) {
5767
+ var primValue = toPrimitive(value, 'number');
5768
+ return typeof primValue == 'bigint' ? primValue : toNumber(primValue);
6416
5769
  };
6417
5770
 
6418
5771
  // `ToNumber` abstract operation
@@ -6495,23 +5848,6 @@ module.exports = function (METHOD_NAME) {
6495
5848
  };
6496
5849
 
6497
5850
 
6498
- /***/ }),
6499
-
6500
- /***/ "ab36":
6501
- /***/ (function(module, exports, __webpack_require__) {
6502
-
6503
- var isObject = __webpack_require__("861d");
6504
- var createNonEnumerableProperty = __webpack_require__("9112");
6505
-
6506
- // `InstallErrorCause` abstract operation
6507
- // https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
6508
- module.exports = function (O, options) {
6509
- if (isObject(options) && 'cause' in options) {
6510
- createNonEnumerableProperty(O, 'cause', options.cause);
6511
- }
6512
- };
6513
-
6514
-
6515
5851
  /***/ }),
6516
5852
 
6517
5853
  /***/ "ac1f":
@@ -6553,62 +5889,6 @@ module.exports = function () {
6553
5889
  };
6554
5890
 
6555
5891
 
6556
- /***/ }),
6557
-
6558
- /***/ "ae93":
6559
- /***/ (function(module, exports, __webpack_require__) {
6560
-
6561
- "use strict";
6562
-
6563
- var fails = __webpack_require__("d039");
6564
- var isCallable = __webpack_require__("1626");
6565
- var create = __webpack_require__("7c73");
6566
- var getPrototypeOf = __webpack_require__("e163");
6567
- var redefine = __webpack_require__("6eeb");
6568
- var wellKnownSymbol = __webpack_require__("b622");
6569
- var IS_PURE = __webpack_require__("c430");
6570
-
6571
- var ITERATOR = wellKnownSymbol('iterator');
6572
- var BUGGY_SAFARI_ITERATORS = false;
6573
-
6574
- // `%IteratorPrototype%` object
6575
- // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
6576
- var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
6577
-
6578
- /* eslint-disable es/no-array-prototype-keys -- safe */
6579
- if ([].keys) {
6580
- arrayIterator = [].keys();
6581
- // Safari 8 has buggy iterators w/o `next`
6582
- if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
6583
- else {
6584
- PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
6585
- if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
6586
- }
6587
- }
6588
-
6589
- var NEW_ITERATOR_PROTOTYPE = IteratorPrototype == undefined || fails(function () {
6590
- var test = {};
6591
- // FF44- legacy iterators case
6592
- return IteratorPrototype[ITERATOR].call(test) !== test;
6593
- });
6594
-
6595
- if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
6596
- else if (IS_PURE) IteratorPrototype = create(IteratorPrototype);
6597
-
6598
- // `%IteratorPrototype%[@@iterator]()` method
6599
- // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
6600
- if (!isCallable(IteratorPrototype[ITERATOR])) {
6601
- redefine(IteratorPrototype, ITERATOR, function () {
6602
- return this;
6603
- });
6604
- }
6605
-
6606
- module.exports = {
6607
- IteratorPrototype: IteratorPrototype,
6608
- BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
6609
- };
6610
-
6611
-
6612
5892
  /***/ }),
6613
5893
 
6614
5894
  /***/ "aed9":
@@ -6645,38 +5925,6 @@ module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {
6645
5925
  };
6646
5926
 
6647
5927
 
6648
- /***/ }),
6649
-
6650
- /***/ "b0c0":
6651
- /***/ (function(module, exports, __webpack_require__) {
6652
-
6653
- var DESCRIPTORS = __webpack_require__("83ab");
6654
- var FUNCTION_NAME_EXISTS = __webpack_require__("5e77").EXISTS;
6655
- var uncurryThis = __webpack_require__("e330");
6656
- var defineProperty = __webpack_require__("9bf2").f;
6657
-
6658
- var FunctionPrototype = Function.prototype;
6659
- var functionToString = uncurryThis(FunctionPrototype.toString);
6660
- var nameRE = /function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/;
6661
- var regExpExec = uncurryThis(nameRE.exec);
6662
- var NAME = 'name';
6663
-
6664
- // Function instances `.name` property
6665
- // https://tc39.es/ecma262/#sec-function-instances-name
6666
- if (DESCRIPTORS && !FUNCTION_NAME_EXISTS) {
6667
- defineProperty(FunctionPrototype, NAME, {
6668
- configurable: true,
6669
- get: function () {
6670
- try {
6671
- return regExpExec(nameRE, functionToString(this))[1];
6672
- } catch (error) {
6673
- return '';
6674
- }
6675
- }
6676
- });
6677
- }
6678
-
6679
-
6680
5928
  /***/ }),
6681
5929
 
6682
5930
  /***/ "b575":
@@ -6901,23 +6149,6 @@ module.exports = {
6901
6149
  };
6902
6150
 
6903
6151
 
6904
- /***/ }),
6905
-
6906
- /***/ "b980":
6907
- /***/ (function(module, exports, __webpack_require__) {
6908
-
6909
- var fails = __webpack_require__("d039");
6910
- var createPropertyDescriptor = __webpack_require__("5c6c");
6911
-
6912
- module.exports = !fails(function () {
6913
- var error = Error('a');
6914
- if (!('stack' in error)) return true;
6915
- // eslint-disable-next-line es/no-object-defineproperty -- safe
6916
- Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
6917
- return error.stack !== 7;
6918
- });
6919
-
6920
-
6921
6152
  /***/ }),
6922
6153
 
6923
6154
  /***/ "ba0e":
@@ -7098,26 +6329,6 @@ $({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
7098
6329
  addToUnscopables(FIND_INDEX);
7099
6330
 
7100
6331
 
7101
- /***/ }),
7102
-
7103
- /***/ "c770":
7104
- /***/ (function(module, exports, __webpack_require__) {
7105
-
7106
- var uncurryThis = __webpack_require__("e330");
7107
-
7108
- var replace = uncurryThis(''.replace);
7109
-
7110
- var TEST = (function (arg) { return String(Error(arg).stack); })('zxcasd');
7111
- var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
7112
- var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);
7113
-
7114
- module.exports = function (stack, dropEntries) {
7115
- if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string') {
7116
- while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, '');
7117
- } return stack;
7118
- };
7119
-
7120
-
7121
6332
  /***/ }),
7122
6333
 
7123
6334
  /***/ "c8ba":
@@ -7311,18 +6522,6 @@ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
7311
6522
  } : $propertyIsEnumerable;
7312
6523
 
7313
6524
 
7314
- /***/ }),
7315
-
7316
- /***/ "d28b":
7317
- /***/ (function(module, exports, __webpack_require__) {
7318
-
7319
- var defineWellKnownSymbol = __webpack_require__("746f");
7320
-
7321
- // `Symbol.iterator` well-known symbol
7322
- // https://tc39.es/ecma262/#sec-symbol.iterator
7323
- defineWellKnownSymbol('iterator');
7324
-
7325
-
7326
6525
  /***/ }),
7327
6526
 
7328
6527
  /***/ "d2bb":
@@ -7540,69 +6739,6 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
7540
6739
  };
7541
6740
 
7542
6741
 
7543
- /***/ }),
7544
-
7545
- /***/ "d9e2":
7546
- /***/ (function(module, exports, __webpack_require__) {
7547
-
7548
- /* eslint-disable no-unused-vars -- required for functions `.length` */
7549
- var $ = __webpack_require__("23e7");
7550
- var global = __webpack_require__("da84");
7551
- var apply = __webpack_require__("2ba4");
7552
- var wrapErrorConstructorWithCause = __webpack_require__("e5cb");
7553
-
7554
- var WEB_ASSEMBLY = 'WebAssembly';
7555
- var WebAssembly = global[WEB_ASSEMBLY];
7556
-
7557
- var FORCED = Error('e', { cause: 7 }).cause !== 7;
7558
-
7559
- var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
7560
- var O = {};
7561
- O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
7562
- $({ global: true, forced: FORCED }, O);
7563
- };
7564
-
7565
- var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
7566
- if (WebAssembly && WebAssembly[ERROR_NAME]) {
7567
- var O = {};
7568
- O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
7569
- $({ target: WEB_ASSEMBLY, stat: true, forced: FORCED }, O);
7570
- }
7571
- };
7572
-
7573
- // https://github.com/tc39/proposal-error-cause
7574
- exportGlobalErrorCauseWrapper('Error', function (init) {
7575
- return function Error(message) { return apply(init, this, arguments); };
7576
- });
7577
- exportGlobalErrorCauseWrapper('EvalError', function (init) {
7578
- return function EvalError(message) { return apply(init, this, arguments); };
7579
- });
7580
- exportGlobalErrorCauseWrapper('RangeError', function (init) {
7581
- return function RangeError(message) { return apply(init, this, arguments); };
7582
- });
7583
- exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
7584
- return function ReferenceError(message) { return apply(init, this, arguments); };
7585
- });
7586
- exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
7587
- return function SyntaxError(message) { return apply(init, this, arguments); };
7588
- });
7589
- exportGlobalErrorCauseWrapper('TypeError', function (init) {
7590
- return function TypeError(message) { return apply(init, this, arguments); };
7591
- });
7592
- exportGlobalErrorCauseWrapper('URIError', function (init) {
7593
- return function URIError(message) { return apply(init, this, arguments); };
7594
- });
7595
- exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
7596
- return function CompileError(message) { return apply(init, this, arguments); };
7597
- });
7598
- exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
7599
- return function LinkError(message) { return apply(init, this, arguments); };
7600
- });
7601
- exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
7602
- return function RuntimeError(message) { return apply(init, this, arguments); };
7603
- });
7604
-
7605
-
7606
6742
  /***/ }),
7607
6743
 
7608
6744
  /***/ "da84":
@@ -7660,242 +6796,18 @@ module.exports = function (V, P) {
7660
6796
 
7661
6797
  /***/ }),
7662
6798
 
7663
- /***/ "ddb0":
6799
+ /***/ "df75":
7664
6800
  /***/ (function(module, exports, __webpack_require__) {
7665
6801
 
7666
- var global = __webpack_require__("da84");
7667
- var DOMIterables = __webpack_require__("fdbc");
7668
- var DOMTokenListPrototype = __webpack_require__("785a");
7669
- var ArrayIteratorMethods = __webpack_require__("e260");
7670
- var createNonEnumerableProperty = __webpack_require__("9112");
7671
- var wellKnownSymbol = __webpack_require__("b622");
6802
+ var internalObjectKeys = __webpack_require__("ca84");
6803
+ var enumBugKeys = __webpack_require__("7839");
7672
6804
 
7673
- var ITERATOR = wellKnownSymbol('iterator');
7674
- var TO_STRING_TAG = wellKnownSymbol('toStringTag');
7675
- var ArrayValues = ArrayIteratorMethods.values;
7676
-
7677
- var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
7678
- if (CollectionPrototype) {
7679
- // some Chrome versions have non-configurable methods on DOMTokenList
7680
- if (CollectionPrototype[ITERATOR] !== ArrayValues) try {
7681
- createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);
7682
- } catch (error) {
7683
- CollectionPrototype[ITERATOR] = ArrayValues;
7684
- }
7685
- if (!CollectionPrototype[TO_STRING_TAG]) {
7686
- createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);
7687
- }
7688
- if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
7689
- // some Chrome versions have non-configurable methods on DOMTokenList
7690
- if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
7691
- createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);
7692
- } catch (error) {
7693
- CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];
7694
- }
7695
- }
7696
- }
7697
- };
7698
-
7699
- for (var COLLECTION_NAME in DOMIterables) {
7700
- handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype, COLLECTION_NAME);
7701
- }
7702
-
7703
- handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
7704
-
7705
-
7706
- /***/ }),
7707
-
7708
- /***/ "df75":
7709
- /***/ (function(module, exports, __webpack_require__) {
7710
-
7711
- var internalObjectKeys = __webpack_require__("ca84");
7712
- var enumBugKeys = __webpack_require__("7839");
7713
-
7714
- // `Object.keys` method
7715
- // https://tc39.es/ecma262/#sec-object.keys
7716
- // eslint-disable-next-line es/no-object-keys -- safe
7717
- module.exports = Object.keys || function keys(O) {
7718
- return internalObjectKeys(O, enumBugKeys);
7719
- };
7720
-
7721
-
7722
- /***/ }),
7723
-
7724
- /***/ "e01a":
7725
- /***/ (function(module, exports, __webpack_require__) {
7726
-
7727
- "use strict";
7728
- // `Symbol.prototype.description` getter
7729
- // https://tc39.es/ecma262/#sec-symbol.prototype.description
7730
-
7731
- var $ = __webpack_require__("23e7");
7732
- var DESCRIPTORS = __webpack_require__("83ab");
7733
- var global = __webpack_require__("da84");
7734
- var uncurryThis = __webpack_require__("e330");
7735
- var hasOwn = __webpack_require__("1a2d");
7736
- var isCallable = __webpack_require__("1626");
7737
- var isPrototypeOf = __webpack_require__("3a9b");
7738
- var toString = __webpack_require__("577e");
7739
- var defineProperty = __webpack_require__("9bf2").f;
7740
- var copyConstructorProperties = __webpack_require__("e893");
7741
-
7742
- var NativeSymbol = global.Symbol;
7743
- var SymbolPrototype = NativeSymbol && NativeSymbol.prototype;
7744
-
7745
- if (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototype) ||
7746
- // Safari 12 bug
7747
- NativeSymbol().description !== undefined
7748
- )) {
7749
- var EmptyStringDescriptionStore = {};
7750
- // wrap Symbol constructor for correct work with undefined description
7751
- var SymbolWrapper = function Symbol() {
7752
- var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString(arguments[0]);
7753
- var result = isPrototypeOf(SymbolPrototype, this)
7754
- ? new NativeSymbol(description)
7755
- // in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
7756
- : description === undefined ? NativeSymbol() : NativeSymbol(description);
7757
- if (description === '') EmptyStringDescriptionStore[result] = true;
7758
- return result;
7759
- };
7760
-
7761
- copyConstructorProperties(SymbolWrapper, NativeSymbol);
7762
- SymbolWrapper.prototype = SymbolPrototype;
7763
- SymbolPrototype.constructor = SymbolWrapper;
7764
-
7765
- var NATIVE_SYMBOL = String(NativeSymbol('test')) == 'Symbol(test)';
7766
- var symbolToString = uncurryThis(SymbolPrototype.toString);
7767
- var symbolValueOf = uncurryThis(SymbolPrototype.valueOf);
7768
- var regexp = /^Symbol\((.*)\)[^)]+$/;
7769
- var replace = uncurryThis(''.replace);
7770
- var stringSlice = uncurryThis(''.slice);
7771
-
7772
- defineProperty(SymbolPrototype, 'description', {
7773
- configurable: true,
7774
- get: function description() {
7775
- var symbol = symbolValueOf(this);
7776
- var string = symbolToString(symbol);
7777
- if (hasOwn(EmptyStringDescriptionStore, symbol)) return '';
7778
- var desc = NATIVE_SYMBOL ? stringSlice(string, 7, -1) : replace(string, regexp, '$1');
7779
- return desc === '' ? undefined : desc;
7780
- }
7781
- });
7782
-
7783
- $({ global: true, forced: true }, {
7784
- Symbol: SymbolWrapper
7785
- });
7786
- }
7787
-
7788
-
7789
- /***/ }),
7790
-
7791
- /***/ "e163":
7792
- /***/ (function(module, exports, __webpack_require__) {
7793
-
7794
- var global = __webpack_require__("da84");
7795
- var hasOwn = __webpack_require__("1a2d");
7796
- var isCallable = __webpack_require__("1626");
7797
- var toObject = __webpack_require__("7b0b");
7798
- var sharedKey = __webpack_require__("f772");
7799
- var CORRECT_PROTOTYPE_GETTER = __webpack_require__("e177");
7800
-
7801
- var IE_PROTO = sharedKey('IE_PROTO');
7802
- var Object = global.Object;
7803
- var ObjectPrototype = Object.prototype;
7804
-
7805
- // `Object.getPrototypeOf` method
7806
- // https://tc39.es/ecma262/#sec-object.getprototypeof
7807
- module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {
7808
- var object = toObject(O);
7809
- if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
7810
- var constructor = object.constructor;
7811
- if (isCallable(constructor) && object instanceof constructor) {
7812
- return constructor.prototype;
7813
- } return object instanceof Object ? ObjectPrototype : null;
7814
- };
7815
-
7816
-
7817
- /***/ }),
7818
-
7819
- /***/ "e177":
7820
- /***/ (function(module, exports, __webpack_require__) {
7821
-
7822
- var fails = __webpack_require__("d039");
7823
-
7824
- module.exports = !fails(function () {
7825
- function F() { /* empty */ }
7826
- F.prototype.constructor = null;
7827
- // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
7828
- return Object.getPrototypeOf(new F()) !== F.prototype;
7829
- });
7830
-
7831
-
7832
- /***/ }),
7833
-
7834
- /***/ "e260":
7835
- /***/ (function(module, exports, __webpack_require__) {
7836
-
7837
- "use strict";
7838
-
7839
- var toIndexedObject = __webpack_require__("fc6a");
7840
- var addToUnscopables = __webpack_require__("44d2");
7841
- var Iterators = __webpack_require__("3f8c");
7842
- var InternalStateModule = __webpack_require__("69f3");
7843
- var defineProperty = __webpack_require__("9bf2").f;
7844
- var defineIterator = __webpack_require__("7dd0");
7845
- var IS_PURE = __webpack_require__("c430");
7846
- var DESCRIPTORS = __webpack_require__("83ab");
7847
-
7848
- var ARRAY_ITERATOR = 'Array Iterator';
7849
- var setInternalState = InternalStateModule.set;
7850
- var getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);
7851
-
7852
- // `Array.prototype.entries` method
7853
- // https://tc39.es/ecma262/#sec-array.prototype.entries
7854
- // `Array.prototype.keys` method
7855
- // https://tc39.es/ecma262/#sec-array.prototype.keys
7856
- // `Array.prototype.values` method
7857
- // https://tc39.es/ecma262/#sec-array.prototype.values
7858
- // `Array.prototype[@@iterator]` method
7859
- // https://tc39.es/ecma262/#sec-array.prototype-@@iterator
7860
- // `CreateArrayIterator` internal method
7861
- // https://tc39.es/ecma262/#sec-createarrayiterator
7862
- module.exports = defineIterator(Array, 'Array', function (iterated, kind) {
7863
- setInternalState(this, {
7864
- type: ARRAY_ITERATOR,
7865
- target: toIndexedObject(iterated), // target
7866
- index: 0, // next index
7867
- kind: kind // kind
7868
- });
7869
- // `%ArrayIteratorPrototype%.next` method
7870
- // https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next
7871
- }, function () {
7872
- var state = getInternalState(this);
7873
- var target = state.target;
7874
- var kind = state.kind;
7875
- var index = state.index++;
7876
- if (!target || index >= target.length) {
7877
- state.target = undefined;
7878
- return { value: undefined, done: true };
7879
- }
7880
- if (kind == 'keys') return { value: index, done: false };
7881
- if (kind == 'values') return { value: target[index], done: false };
7882
- return { value: [index, target[index]], done: false };
7883
- }, 'values');
7884
-
7885
- // argumentsList[@@iterator] is %ArrayProto_values%
7886
- // https://tc39.es/ecma262/#sec-createunmappedargumentsobject
7887
- // https://tc39.es/ecma262/#sec-createmappedargumentsobject
7888
- var values = Iterators.Arguments = Iterators.Array;
7889
-
7890
- // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
7891
- addToUnscopables('keys');
7892
- addToUnscopables('values');
7893
- addToUnscopables('entries');
7894
-
7895
- // V8 ~ Chrome 45- bug
7896
- if (!IS_PURE && DESCRIPTORS && values.name !== 'values') try {
7897
- defineProperty(values, 'name', { value: 'values' });
7898
- } catch (error) { /* empty */ }
6805
+ // `Object.keys` method
6806
+ // https://tc39.es/ecma262/#sec-object.keys
6807
+ // eslint-disable-next-line es/no-object-keys -- safe
6808
+ module.exports = Object.keys || function keys(O) {
6809
+ return internalObjectKeys(O, enumBugKeys);
6810
+ };
7899
6811
 
7900
6812
 
7901
6813
  /***/ }),
@@ -7932,96 +6844,6 @@ module.exports = NATIVE_BIND ? function (fn) {
7932
6844
  };
7933
6845
 
7934
6846
 
7935
- /***/ }),
7936
-
7937
- /***/ "e391":
7938
- /***/ (function(module, exports, __webpack_require__) {
7939
-
7940
- var toString = __webpack_require__("577e");
7941
-
7942
- module.exports = function (argument, $default) {
7943
- return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
7944
- };
7945
-
7946
-
7947
- /***/ }),
7948
-
7949
- /***/ "e538":
7950
- /***/ (function(module, exports, __webpack_require__) {
7951
-
7952
- var wellKnownSymbol = __webpack_require__("b622");
7953
-
7954
- exports.f = wellKnownSymbol;
7955
-
7956
-
7957
- /***/ }),
7958
-
7959
- /***/ "e5cb":
7960
- /***/ (function(module, exports, __webpack_require__) {
7961
-
7962
- "use strict";
7963
-
7964
- var getBuiltIn = __webpack_require__("d066");
7965
- var hasOwn = __webpack_require__("1a2d");
7966
- var createNonEnumerableProperty = __webpack_require__("9112");
7967
- var isPrototypeOf = __webpack_require__("3a9b");
7968
- var setPrototypeOf = __webpack_require__("d2bb");
7969
- var copyConstructorProperties = __webpack_require__("e893");
7970
- var inheritIfRequired = __webpack_require__("7156");
7971
- var normalizeStringArgument = __webpack_require__("e391");
7972
- var installErrorCause = __webpack_require__("ab36");
7973
- var clearErrorStack = __webpack_require__("c770");
7974
- var ERROR_STACK_INSTALLABLE = __webpack_require__("b980");
7975
- var IS_PURE = __webpack_require__("c430");
7976
-
7977
- module.exports = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
7978
- var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
7979
- var path = FULL_NAME.split('.');
7980
- var ERROR_NAME = path[path.length - 1];
7981
- var OriginalError = getBuiltIn.apply(null, path);
7982
-
7983
- if (!OriginalError) return;
7984
-
7985
- var OriginalErrorPrototype = OriginalError.prototype;
7986
-
7987
- // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
7988
- if (!IS_PURE && hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
7989
-
7990
- if (!FORCED) return OriginalError;
7991
-
7992
- var BaseError = getBuiltIn('Error');
7993
-
7994
- var WrappedError = wrapper(function (a, b) {
7995
- var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
7996
- var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
7997
- if (message !== undefined) createNonEnumerableProperty(result, 'message', message);
7998
- if (ERROR_STACK_INSTALLABLE) createNonEnumerableProperty(result, 'stack', clearErrorStack(result.stack, 2));
7999
- if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
8000
- if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
8001
- return result;
8002
- });
8003
-
8004
- WrappedError.prototype = OriginalErrorPrototype;
8005
-
8006
- if (ERROR_NAME !== 'Error') {
8007
- if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError);
8008
- else copyConstructorProperties(WrappedError, BaseError, { name: true });
8009
- }
8010
-
8011
- copyConstructorProperties(WrappedError, OriginalError);
8012
-
8013
- if (!IS_PURE) try {
8014
- // Safari 13- bug: WebAssembly errors does not have a proper `.name`
8015
- if (OriginalErrorPrototype.name !== ERROR_NAME) {
8016
- createNonEnumerableProperty(OriginalErrorPrototype, 'name', ERROR_NAME);
8017
- }
8018
- OriginalErrorPrototype.constructor = WrappedError;
8019
- } catch (error) { /* empty */ }
8020
-
8021
- return WrappedError;
8022
- };
8023
-
8024
-
8025
6847
  /***/ }),
8026
6848
 
8027
6849
  /***/ "e667":
@@ -9581,8 +8403,8 @@ var Alert_component = normalizeComponent(
9581
8403
  )
9582
8404
 
9583
8405
  /* harmony default export */ var Alert = (Alert_component.exports);
9584
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"23ef8cfe-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Header/Header.vue?vue&type=template&id=d0150058&
9585
- var Headervue_type_template_id_d0150058_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('header',{class:{ sticky: _vm.isSticky }},[_c('InfoHeader',{attrs:{"weather":_vm.weather,"currencies":_vm.currencies,"system-message":_vm.systemMessage,"requestCount":_vm.requestCount,"daysRemaining":_vm.daysRemaining,"is-open-notification":_vm.isOpenNotification,"is-authenticated":_vm.isAuthenticated},on:{"closeNotification":_vm.closeNotification}}),_c('div',{staticClass:"header",class:{ bordered: _vm.isBordered }},[_c('div',{staticClass:"container"},[_c('div',{staticClass:"header__left"},[_c('a',{staticClass:"logo",attrs:{"href":_vm.main[_vm.mode]}},[_c('svg',{staticClass:"adata-logo",attrs:{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 166 48"}},[_c('path',{attrs:{"d":"M62.926 38.22v-28h10.316c10.342 0 15.511 4.55 15.508 13.652 0 4.36-1.41 7.843-4.232 10.448-2.822 2.605-6.58 3.907-11.276 3.904l-10.316-.004zm6.56-22.868v17.752h3.248c2.839 0 5.069-.82 6.69-2.46 1.622-1.64 2.43-3.873 2.424-6.7 0-2.667-.8-4.767-2.403-6.3-1.602-1.533-3.853-2.297-6.752-2.292h-3.206zM118.5 38.22h-7.131l-2.079-6.228H98.958l-2.079 6.228h-7.093l10.598-28h7.775l10.341 28zm-10.723-11.072l-3.127-9.416a11.94 11.94 0 01-.486-2.516h-.162c-.07.83-.24 1.649-.508 2.44l-3.168 9.492h7.451zm31.833-11.796h-8.316V38.22h-6.557V15.352h-8.274v-5.136h23.147v5.136zM166 38.22h-7.143l-2.079-6.228h-10.349l-2.05 6.228h-7.106l10.598-28h7.776l10.353 28zm-10.719-11.072l-3.127-9.416a11.94 11.94 0 01-.486-2.516h-.163c-.069.83-.239 1.649-.507 2.44l-3.168 9.492h7.451zM24.553 15.252h-.163c-.069.83-.24 1.649-.507 2.44L20.715 27.2h7.45l-3.126-9.412a12.02 12.02 0 01-.486-2.536z"}}),_c('path',{attrs:{"d":"M44.905 0H4.99a5.091 5.091 0 00-3.528 1.406A4.71 4.71 0 000 4.8v38.4a4.71 4.71 0 001.461 3.394A5.091 5.091 0 004.99 48h39.916a5.091 5.091 0 003.528-1.406 4.71 4.71 0 001.462-3.394V4.8a4.71 4.71 0 00-1.462-3.394A5.091 5.091 0 0044.905 0zM31.737 38.26l-2.079-6.232H19.305l-2.05 6.232h-7.097l10.598-28h7.776l10.353 28h-7.148z"}})])]),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.headerItems.length > 0),expression:"headerItems.length > 0"}],staticClass:"menu"},_vm._l((_vm.headerItems),function(item,index){return _c('a',{key:index,staticClass:"menu__wrapper menu__items",class:{ active: item.key === _vm.activeTabKey },attrs:{"href":item[_vm.mode]}},[_vm._v(" "+_vm._s(item.name)+" ")])}),0)]),_c('div',{directives:[{name:"show",rawName:"v-show",value:(!_vm.noAuth),expression:"!noAuth"}],staticClass:"header__right"},[_vm._t("chooseCountry"),_c('Profile',{attrs:{"profileDropDown":_vm.profileDropDown,"mode":_vm.mode,"isAuthenticated":_vm.isAuthenticated,"email":_vm.email,"loginUrl":_vm.loginUrl,"activeTabKey":_vm.activeTabKey},on:{"showBalanceModal":function (val) {
8406
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"23ef8cfe-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Header/Header.vue?vue&type=template&id=b2e7b93e&
8407
+ var Headervue_type_template_id_b2e7b93e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('header',{class:{ sticky: _vm.isSticky }},[_c('InfoHeader',{attrs:{"weather":_vm.weather,"currencies":_vm.currencies,"system-message":_vm.systemMessage,"requestCount":_vm.requestCount,"daysRemaining":_vm.daysRemaining,"is-open-notification":_vm.isOpenNotification,"is-authenticated":_vm.isAuthenticated},on:{"closeNotification":_vm.closeNotification}}),_c('div',{staticClass:"header",class:{ bordered: _vm.isBordered }},[_c('div',{staticClass:"container"},[_c('div',{staticClass:"header__left"},[_c('a',{staticClass:"logo",attrs:{"href":_vm.main[_vm.mode]}},[_c('svg',{staticClass:"adata-logo",attrs:{"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 166 48"}},[_c('path',{attrs:{"d":"M62.926 38.22v-28h10.316c10.342 0 15.511 4.55 15.508 13.652 0 4.36-1.41 7.843-4.232 10.448-2.822 2.605-6.58 3.907-11.276 3.904l-10.316-.004zm6.56-22.868v17.752h3.248c2.839 0 5.069-.82 6.69-2.46 1.622-1.64 2.43-3.873 2.424-6.7 0-2.667-.8-4.767-2.403-6.3-1.602-1.533-3.853-2.297-6.752-2.292h-3.206zM118.5 38.22h-7.131l-2.079-6.228H98.958l-2.079 6.228h-7.093l10.598-28h7.775l10.341 28zm-10.723-11.072l-3.127-9.416a11.94 11.94 0 01-.486-2.516h-.162c-.07.83-.24 1.649-.508 2.44l-3.168 9.492h7.451zm31.833-11.796h-8.316V38.22h-6.557V15.352h-8.274v-5.136h23.147v5.136zM166 38.22h-7.143l-2.079-6.228h-10.349l-2.05 6.228h-7.106l10.598-28h7.776l10.353 28zm-10.719-11.072l-3.127-9.416a11.94 11.94 0 01-.486-2.516h-.163c-.069.83-.239 1.649-.507 2.44l-3.168 9.492h7.451zM24.553 15.252h-.163c-.069.83-.24 1.649-.507 2.44L20.715 27.2h7.45l-3.126-9.412a12.02 12.02 0 01-.486-2.536z"}}),_c('path',{attrs:{"d":"M44.905 0H4.99a5.091 5.091 0 00-3.528 1.406A4.71 4.71 0 000 4.8v38.4a4.71 4.71 0 001.461 3.394A5.091 5.091 0 004.99 48h39.916a5.091 5.091 0 003.528-1.406 4.71 4.71 0 001.462-3.394V4.8a4.71 4.71 0 00-1.462-3.394A5.091 5.091 0 0044.905 0zM31.737 38.26l-2.079-6.232H19.305l-2.05 6.232h-7.097l10.598-28h7.776l10.353 28h-7.148z"}})])]),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.headerItems.length > 0),expression:"headerItems.length > 0"}],staticClass:"menu"},_vm._l((_vm.headerItems),function(item,index){return _c('a',{key:index,staticClass:"menu__wrapper menu__items",class:{ active: item.key === _vm.activeTabKey },attrs:{"href":item[_vm.mode]}},[_vm._v(" "+_vm._s(item.name)+" ")])}),0)]),_c('div',{directives:[{name:"show",rawName:"v-show",value:(!_vm.noAuth),expression:"!noAuth"}],staticClass:"header__right"},[_vm._t("chooseCountry"),_c('Profile',{attrs:{"mode":_vm.mode,"activeTabKey":_vm.activeTabKey,"isAuthenticated":_vm.isAuthenticated,"email":_vm.email,"loginUrl":_vm.loginUrl,"rate":_vm.rateCodes[_vm.rate],"balance":this.thousandSeparator(_vm.balance)},on:{"showBalanceModal":function (val) {
9586
8408
  _vm.$emit('showBalanceModal', val);
9587
8409
  },"setShowModal":function (val) {
9588
8410
  _vm.$emit('setShowModal', val);
@@ -9590,11 +8412,13 @@ var Headervue_type_template_id_d0150058_render = function () {var _vm=this;var _
9590
8412
  _vm.$emit('setIsReplenishModal', val);
9591
8413
  }}}),_c('div',{staticClass:"menu_mobile--switcher",on:{"click":_vm.changeValue}},[_c('svg',{attrs:{"width":"24","height":"24","fill":"none","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M2 4h20v2H2V4zm0 14h20v2H2v-2zm0-7h20v2H2v-2z","fill":"#2C3E50"}})])])],2)]),_c('MobileToggle',{scopedSlots:_vm._u([{key:"default",fn:function(ref){
9592
8414
  var animationClass = ref.animationClass;
9593
- return [_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.headerItems.length > 0 && _vm.isOpen),expression:"headerItems.length > 0 && isOpen"}],staticClass:"menu_mobile",class:animationClass},[_c('div',{staticClass:"menu-wrapper"},[_c('div',{staticClass:"mobile-table-head",on:{"click":function($event){$event.stopPropagation();return _vm.changeValue.apply(null, arguments)}}},[_c('svg',{attrs:{"width":"18","height":"18","fill":"none","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M4.414 18.142L18.556 4l1.415 1.414L5.828 19.556l-1.414-1.414z","fill":"#2C3E50"}}),_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M5.414 4l14.142 14.142-1.414 1.414L4 5.414 5.414 4z","fill":"#2C3E50"}})])]),_c('div',{staticClass:"menu__link"},_vm._l((_vm.headerItems),function(item,index){return _c('a',{key:index,staticClass:"menu_mobile-wrapper",class:{ 'active-burger-tab': item.key === _vm.activeTabKey },attrs:{"href":item[_vm.mode]}},[_vm._v(" "+_vm._s(item.name)+" ")])}),0),_c('div',{staticClass:"menu-mobile__info"},[_c('div',{staticClass:"menu-mobile__info-header"},[_c('span',[_vm._v("Валюта")]),_c('span',[_vm._v("Покупка")]),_c('span',[_vm._v("Продажа")])]),_c('div',{staticClass:"menu-mobile__info-body"},_vm._l((_vm.currencies),function(currency,index){return _c('div',{key:index,staticClass:"menu-mobile__info-row"},[_c('div',{staticClass:"menu-mobile__info-column"},[(currency.currency === 'USD')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('g',{attrs:{"clip-path":"url(#clip0_179_1917)"}},[_c('path',{attrs:{"d":"M26.4 0.5H-4V16.5H26.4V0.5Z","fill":"white"}}),_c('path',{attrs:{"d":"M26.4 0.5H-4V1.732H26.4V0.5Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 2.95996H-4V4.19196H26.4V2.95996Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 5.42407H-4V6.65607H26.4V5.42407Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 7.88403H-4V9.11603H26.4V7.88403Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 10.3479H-4V11.5799H26.4V10.3479Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 12.8081H-4V14.0401H26.4V12.8081Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 15.2681H-4V16.5001H26.4V15.2681Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M8.16 0.5H-4V9.116H8.16V0.5Z","fill":"#3C3B6E"}}),_c('path',{attrs:{"d":"M0.603882 1.20011L0.891882 1.40811L0.783882 1.75211L1.07188 1.54011L1.35988 1.75211L1.25188 1.40811L1.53988 1.20011H1.18388L1.07188 0.860107L0.959882 1.20011H0.603882Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.61987 1.20011L2.90787 1.40811L2.79987 1.75211L3.08787 1.54011L3.37587 1.75211L3.26787 1.40811L3.55587 1.20011H3.19987L3.08787 0.860107L2.97587 1.20011H2.61987Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.63599 1.20011L4.92399 1.40811L4.81599 1.75211L5.10399 1.54011L5.39199 1.75211L5.28399 1.40811L5.57199 1.20011H5.21599L5.10399 0.860107L4.99199 1.20011H4.63599Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.65198 1.20011L6.93998 1.40811L6.83198 1.75211L7.11998 1.54011L7.40798 1.75211L7.29998 1.40811L7.58798 1.20011H7.23198L7.11998 0.860107L7.00798 1.20011H6.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M-0.403931 2.06412L-0.115931 2.27212L-0.223931 2.61612L0.0640694 2.40412L0.352069 2.61612L0.244069 2.27212L0.532069 2.06412H0.176069L0.0640694 1.72412L-0.0479305 2.06412H-0.403931Z","fill":"white"}}),_c('path',{attrs:{"d":"M1.61206 2.06412L1.90006 2.27212L1.79206 2.61612L2.08006 2.40412L2.36806 2.61612L2.26006 2.27212L2.54806 2.06412H2.19206L2.08006 1.72412L1.96806 2.06412H1.61206Z","fill":"white"}}),_c('path',{attrs:{"d":"M3.62817 2.06412L3.91617 2.27212L3.80817 2.61612L4.09617 2.40412L4.38417 2.61612L4.27617 2.27212L4.56417 2.06412H4.20817L4.09617 1.72412L3.98417 2.06412H3.62817Z","fill":"white"}}),_c('path',{attrs:{"d":"M5.64417 2.06412L5.93216 2.27212L5.82416 2.61612L6.11216 2.40412L6.40016 2.61612L6.29216 2.27212L6.58016 2.06412H6.22416L6.11216 1.72412L6.00016 2.06412H5.64417Z","fill":"white"}}),_c('path',{attrs:{"d":"M0.603882 2.92789L0.891882 3.13589L0.783882 3.47989L1.07188 3.26789L1.35988 3.47989L1.25188 3.13589L1.53988 2.92789H1.18388L1.07188 2.58789L0.959882 2.92789H0.603882Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.61987 2.92789L2.90787 3.13589L2.79987 3.47989L3.08787 3.26789L3.37587 3.47989L3.26787 3.13589L3.55587 2.92789H3.19987L3.08787 2.58789L2.97587 2.92789H2.61987Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.63599 2.92789L4.92399 3.13589L4.81599 3.47989L5.10399 3.26789L5.39199 3.47989L5.28399 3.13589L5.57199 2.92789H5.21599L5.10399 2.58789L4.99199 2.92789H4.63599Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.65198 2.92789L6.93998 3.13589L6.83198 3.47989L7.11998 3.26789L7.40798 3.47989L7.29998 3.13589L7.58798 2.92789H7.23198L7.11998 2.58789L7.00798 2.92789H6.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M-0.380127 3.7959L-0.0881271 4.0039L-0.200127 4.3439L0.0878731 4.1359L0.379873 4.3439L0.267873 4.0039L0.555873 3.7959H0.199873L0.0878731 3.4519L-0.0201271 3.7959H-0.380127Z","fill":"white"}}),_c('path',{attrs:{"d":"M1.63599 3.7959L1.92399 4.0039L1.81599 4.3439L2.10399 4.1359L2.39599 4.3439L2.28399 4.0039L2.57199 3.7959H2.21599L2.10399 3.4519L1.99599 3.7959H1.63599Z","fill":"white"}}),_c('path',{attrs:{"d":"M3.65198 3.7959L3.94398 4.0039L3.83198 4.3439L4.11998 4.1359L4.41198 4.3439L4.29998 4.0039L4.58798 3.7959H4.23198L4.11998 3.4519L4.01198 3.7959H3.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M5.66797 3.7959L5.95597 4.0039L5.84797 4.3439L6.13597 4.1359L6.42797 4.3439L6.31597 4.0039L6.60397 3.7959H6.24797L6.13597 3.4519L6.02797 3.7959H5.66797Z","fill":"white"}}),_c('path',{attrs:{"d":"M0.635986 4.65201L0.923986 4.86001L0.811986 5.20401L1.10399 4.99201L1.39199 5.20401L1.27999 4.86001L1.57199 4.65201H1.21199L1.10399 4.31201L0.991986 4.65201H0.635986Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.65198 4.65201L2.93998 4.86001L2.82798 5.20401L3.11998 4.99201L3.40798 5.20401L3.29598 4.86001L3.58798 4.65201H3.22798L3.11998 4.31201L3.00798 4.65201H2.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.66406 4.65201L4.95606 4.86001L4.84406 5.20401L5.13606 4.99201L5.42406 5.20401L5.31206 4.86001L5.60406 4.65201H5.24406L5.13606 4.31201L5.02406 4.65201H4.66406Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.40002 4.84L6.69202 5.048L6.58002 5.392L6.87202 5.18L7.16002 5.392L7.04802 5.048L7.34002 4.84H6.98002L6.87202 4.5L6.76002 4.84H6.40002Z","fill":"white"}}),_c('path',{attrs:{"d":"M0.651978 6.35196L0.943977 6.55996L0.831978 6.90396L1.11998 6.69196L1.41198 6.90396L1.29998 6.55996L1.58798 6.35196H1.23198L1.11998 6.01196L1.01198 6.35196H0.651978Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.66797 6.35196L2.95997 6.55996L2.84797 6.90396L3.13597 6.69196L3.42797 6.90396L3.31597 6.55996L3.60797 6.35196H3.24797L3.13597 6.01196L3.02797 6.35196H2.66797Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.68396 6.35196L4.97596 6.55996L4.86396 6.90396L5.15196 6.69196L5.44396 6.90396L5.33196 6.55996L5.61996 6.35196H5.26396L5.15196 6.01196L5.04396 6.35196H4.68396Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.69995 6.35196L6.99195 6.55996L6.87995 6.90396L7.16795 6.69196L7.45995 6.90396L7.34795 6.55996L7.63595 6.35196H7.27995L7.16795 6.01196L7.05995 6.35196H6.69995Z","fill":"white"}}),_c('path',{attrs:{"d":"M0.628174 8.07193L0.916174 8.28393L0.808174 8.62393L1.09617 8.41193L1.38817 8.62393L1.27617 8.28393L1.56417 8.07193H1.20817L1.09617 7.73193L0.988174 8.07193H0.628174Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.64417 8.07193L2.93616 8.28393L2.82416 8.62393L3.11216 8.41193L3.40416 8.62393L3.29216 8.28393L3.58016 8.07193H3.22416L3.11216 7.73193L3.00416 8.07193H2.64417Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.66016 8.07193L4.95216 8.28393L4.84016 8.62393L5.12816 8.41193L5.42016 8.62393L5.30816 8.28393L5.59616 8.07193H5.24016L5.12816 7.73193L5.02016 8.07193H4.66016Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.67615 8.07193L6.96415 8.28393L6.85615 8.62393L7.14415 8.41193L7.43615 8.62393L7.32415 8.28393L7.61215 8.07193H7.25615L7.14415 7.73193L7.03615 8.07193H6.67615Z","fill":"white"}}),_c('path',{attrs:{"d":"M-0.376221 5.4921L-0.0842209 5.7041L-0.196221 6.0441L0.095779 5.8321L0.383779 6.0441L0.275779 5.7041L0.563779 5.4921H0.203779L0.095779 5.1521L-0.0162209 5.4921H-0.376221Z","fill":"white"}}),_c('path',{attrs:{"d":"M1.64417 5.4921L1.93217 5.7041L1.82017 6.0441L2.11217 5.8321L2.40017 6.0441L2.28817 5.7041L2.58017 5.4921H2.22017L2.11217 5.1521L2.00017 5.4921H1.64417Z","fill":"white"}}),_c('path',{attrs:{"d":"M3.65588 5.4921L3.94788 5.7041L3.83588 6.0441L4.12788 5.8321L4.41588 6.0441L4.30788 5.7041L4.59588 5.4921H4.23588L4.12788 5.1521L4.01588 5.4921H3.65588Z","fill":"white"}}),_c('path',{attrs:{"d":"M5.67188 5.4921L5.96387 5.7041L5.85187 6.0441L6.14387 5.8321L6.43187 6.0441L6.31987 5.7041L6.61187 5.4921H6.25187L6.14387 5.1521L6.03187 5.4921H5.67188Z","fill":"white"}}),_c('path',{attrs:{"d":"M-0.380127 7.21207L-0.0881271 7.42007L-0.200127 7.76007L0.0878731 7.55207L0.379873 7.76007L0.267873 7.42007L0.555873 7.21207H0.199873L0.0878731 6.87207L-0.0201271 7.21207H-0.380127Z","fill":"white"}}),_c('path',{attrs:{"d":"M1.63599 7.21207L1.92399 7.42007L1.81599 7.76007L2.10399 7.55207L2.39599 7.76007L2.28399 7.42007L2.57199 7.21207H2.21599L2.10399 6.87207L1.99599 7.21207H1.63599Z","fill":"white"}}),_c('path',{attrs:{"d":"M3.65198 7.21207L3.94398 7.42007L3.83198 7.76007L4.11998 7.55207L4.41198 7.76007L4.29998 7.42007L4.58798 7.21207H4.23198L4.11998 6.87207L4.01198 7.21207H3.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M5.66797 7.21207L5.95597 7.42007L5.84797 7.76007L6.13597 7.55207L6.42797 7.76007L6.31597 7.42007L6.60397 7.21207H6.24797L6.13597 6.87207L6.02797 7.21207H5.66797Z","fill":"white"}})]),_c('defs',[_c('clipPath',{attrs:{"id":"clip0_179_1917"}},[_c('path',{attrs:{"d":"M0 2.5C0 1.39543 0.895431 0.5 2 0.5H14C15.1046 0.5 16 1.39543 16 2.5V14.5C16 15.6046 15.1046 16.5 14 16.5H2C0.895431 16.5 0 15.6046 0 14.5V2.5Z","fill":"white"}})])])]):_vm._e(),(currency.currency === 'EUR')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M0 2.5C0 1.39543 0.895431 0.5 2 0.5H14C15.1046 0.5 16 1.39543 16 2.5V14.5C16 15.6046 15.1046 16.5 14 16.5H2C0.895431 16.5 0 15.6046 0 14.5V2.5Z","fill":"#314199"}}),_c('path',{attrs:{"d":"M7.99479 12.5967L8.18355 13.1573L8.75857 13.1568L8.35044 13.4667L8.46265 14.0686L7.99479 13.7271L7.52542 14.0594L7.639 13.4667L7.23511 13.1549H7.80958L7.99479 12.5967Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M7.99479 2.85718L8.18355 3.41796L8.75857 3.41727L8.35044 3.72735L8.46265 4.32913L7.99479 3.98765L7.52542 4.31994L7.639 3.72735L7.23511 3.41535H7.80958L7.99479 2.85718Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M10.333 3.48364L10.5218 4.04428L11.097 4.04373L10.6888 4.35368L10.8009 4.95546L10.333 4.61411L9.86366 4.94641L9.97739 4.35368L9.57349 4.04181H10.148L10.333 3.48364Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M5.54397 3.48364L5.73273 4.04428L6.3079 4.04373L5.89976 4.35368L6.01184 4.95546L5.54397 4.61411L5.0746 4.94641L5.18832 4.35368L4.78442 4.04181H5.35877L5.54397 3.48364Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M10.333 11.9387L10.5218 12.4995L11.097 12.4989L10.6888 12.8089L10.8009 13.4107L10.333 13.0693L9.86366 13.4016L9.97739 12.8089L9.57349 12.4969H10.148L10.333 11.9387Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M5.54397 11.9387L5.73273 12.4995L6.3079 12.4989L5.89976 12.8089L6.01184 13.4107L5.54397 13.0693L5.0746 13.4016L5.18832 12.8089L4.78442 12.4969H5.35877L5.54397 11.9387Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M3.75309 5.32153L3.94185 5.88231L4.51688 5.88162L4.10888 6.1917L4.22082 6.79349L3.75309 6.45214L3.28372 6.7843L3.39731 6.1917L2.99341 5.8797H3.56789L3.75309 5.32153Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M12.1823 5.32153L12.3711 5.88231L12.9462 5.88162L12.5381 6.1917L12.6502 6.79349L12.1823 6.45214L11.7129 6.7843L11.8265 6.1917L11.4226 5.8797H11.9971L12.1823 5.32153Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M3.75309 10.1826L3.94185 10.7434L4.51688 10.7427L4.10888 11.0528L4.22082 11.6546L3.75309 11.3131L3.28372 11.6454L3.39731 11.0528L2.99341 10.7408H3.56789L3.75309 10.1826Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M12.1823 10.1826L12.3711 10.7434L12.9462 10.7427L12.5381 11.0528L12.6502 11.6546L12.1823 11.3131L11.7129 11.6454L11.8265 11.0528L11.4226 10.7408H11.9971L12.1823 10.1826Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M3.19682 7.73389L3.38558 8.29466L3.96074 8.29398L3.55261 8.60406L3.66469 9.20584L3.19682 8.86436L2.72745 9.19665L2.84103 8.60406L2.43713 8.29206H3.01161L3.19682 7.73389Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M12.799 7.73389L12.9877 8.29466L13.5629 8.29398L13.1548 8.60406L13.2668 9.20584L12.799 8.86436L12.3296 9.19665L12.4433 8.60406L12.0394 8.29206H12.6138L12.799 7.73389Z","fill":"#F8EC26"}})]):_vm._e(),(currency.currency === 'RUB')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('g',{attrs:{"clip-path":"url(#clip0_179_2012)"}},[_c('path',{attrs:{"d":"M0 0.5C0 -0.60457 0.895431 -1.5 2 -1.5H18C19.1046 -1.5 20 -0.604569 20 0.5V5.5H0V0.5Z","fill":"#F0F0F0"}}),_c('rect',{attrs:{"y":"5.5","width":"20","height":"7","fill":"#0039A6"}}),_c('path',{attrs:{"d":"M0 11.5H20V16.5C20 17.6046 19.1046 18.5 18 18.5H2C0.895431 18.5 0 17.6046 0 16.5V11.5Z","fill":"#D52B1E"}})]),_c('defs',[_c('clipPath',{attrs:{"id":"clip0_179_2012"}},[_c('rect',{attrs:{"y":"0.5","width":"16","height":"16","rx":"2","fill":"white"}})])])]):_vm._e(),(currency.currency === 'CNY')?_c('svg',{attrs:{"width":"16","height":"16","viewBox":"0 0 16 16","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M0 2C0 0.895431 0.895431 0 2 0H14C15.1046 0 16 0.895431 16 2V14C16 15.1046 15.1046 16 14 16H2C0.895431 16 0 15.1046 0 14V2Z","fill":"#DE2910"}}),_c('path',{attrs:{"d":"M4.00115 1.60043L5.41155 5.94203L1.71875 3.25883H6.28355L2.59075 5.94203L4.00115 1.60043Z","fill":"#FFDE00"}}),_c('path',{attrs:{"d":"M7.3125 2.01103L8.3117 0.863831L8.1781 2.37983L7.3957 1.07503L8.7957 1.67023L7.3125 2.01103Z","fill":"#FFDE00"}}),_c('path',{attrs:{"d":"M8.80803 3.31335L10.1744 2.64375L9.46323 3.98855L9.24803 2.48215L10.3072 3.57415L8.80803 3.31335Z","fill":"#FFDE00"}}),_c('path',{attrs:{"d":"M8.82968 5.38077L10.3497 5.32637L9.15208 6.26477L9.56968 4.80157L10.0913 6.23037L8.82968 5.38077Z","fill":"#FFDE00"}}),_c('path',{attrs:{"d":"M7.3758 6.6997L8.7998 7.2365L7.3326 7.6397L8.283 6.4509L8.2118 7.9709L7.3758 6.6997Z","fill":"#FFDE00"}})]):_vm._e(),_c('span',[_vm._v(_vm._s(currency.currency))])]),_c('div',{staticClass:"menu-mobile__info-column"},[_c('span',[_vm._v(_vm._s(currency.buy))]),(currency.buy_state === 'DOWN')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M8 12.5249L12.3301 4.52507H3.66987L8 12.5249Z","fill":"#FF2E43"}})]):_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M8 4.47461L12.3301 12.4702H3.66987L8 4.47461Z","fill":"#00B92D"}})])]),_c('div',{staticClass:"menu-mobile__info-column"},[_c('span',[_vm._v(_vm._s(currency.sell))]),(currency.sell_state === 'DOWN')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M8 12.5249L12.3301 4.52507H3.66987L8 12.5249Z","fill":"#FF2E43"}})]):_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M8 4.47461L12.3301 12.4702H3.66987L8 4.47461Z","fill":"#00B92D"}})])])])}),0),_c('div',{staticClass:"menu-mobile__info-footer"},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.requestCount === 0 || _vm.requestCount),expression:"requestCount === 0 || requestCount"}],staticClass:"menu-mobile__info-footer-item"},[_c('span',{staticClass:"menu-mobile__info-footer-title"},[_vm._v("Суточный лимит запросов:")]),_c('span',{staticClass:"menu-mobile__info-footer-circle"},[_vm._v(_vm._s(_vm.requestCount))])]),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.daysRemaining === 0 || _vm.daysRemaining),expression:"daysRemaining === 0 || daysRemaining"}],staticClass:"menu-mobile__info-footer-item"},[_c('span',{staticClass:"menu-mobile__info-footer-title"},[_vm._v("Остаток дней:")]),_c('span',{staticClass:"menu-mobile__info-footer-circle"},[_vm._v(_vm._s(_vm.daysRemaining))])])])])])])]}}])})],1)],1)}
9594
- var Headervue_type_template_id_d0150058_staticRenderFns = []
8415
+ return [_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.headerItems.length > 0 && _vm.isOpen),expression:"headerItems.length > 0 && isOpen"}],staticClass:"menu_mobile",class:animationClass},[_c('div',{staticClass:"empty-space",on:{"click":_vm.changeValue}}),_c('div',{staticClass:"menu-wrapper"},[_c('div',{staticClass:"menu-wrapper__top"},[_c('div',{staticClass:"mobile-table-head"},[(!_vm.isAuthenticated)?_c('button',{staticClass:"sign",on:{"click":function($event){$event.preventDefault();return _vm.goAuth.apply(null, arguments)}}},[_c('svg',{attrs:{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M13.5 15L16.5 11.9189L13.6154 9","stroke":"#007AFF","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}}),_c('path',{attrs:{"d":"M9 7.125V4.5H19.5V19.5H9V17.4375","stroke":"#007AFF","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}}),_c('path',{attrs:{"d":"M16 12H4","stroke":"#007AFF","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}})]),_c('span',[_vm._v("Войти")])]):_c('div',{staticClass:"menu-wrapper__top-left"},[_c('div',{staticClass:"svg-wrapper"},[_c('svg',{attrs:{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M8 9C8 6.79086 9.79086 5 12 5C14.2091 5 16 6.79086 16 9C16 11.2091 14.2091 13 12 13C9.79086 13 8 11.2091 8 9ZM14.8148 13.133C16.134 12.2329 17 10.7176 17 9C17 6.23858 14.7614 4 12 4C9.23858 4 7 6.23858 7 9C7 10.7176 7.86603 12.2329 9.18525 13.133C6.22569 13.741 4 16.3606 4 19.5H5C5 16.4624 7.46243 14 10.5 14H12H13.5C16.5376 14 19 16.4624 19 19.5H20C20 16.3606 17.7743 13.741 14.8148 13.133Z","fill":"#2C3E50"}})])]),_c('div',{staticClass:"text-wrapper"},[_c('p',[_vm._v(_vm._s(_vm.email))]),_c('p',[_vm._v("Тариф "+_vm._s(_vm.rateCodes[_vm.rate]))])])]),(!_vm.isAuthenticated)?_c('div',{staticClass:"menu-wrapper__top-right",on:{"click":function($event){$event.stopPropagation();return _vm.changeValue.apply(null, arguments)}}},[_c('svg',{attrs:{"width":"18","height":"18","fill":"none","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M4.414 18.142L18.556 4l1.415 1.414L5.828 19.556l-1.414-1.414z","fill":"#2C3E50"}}),_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M5.414 4l14.142 14.142-1.414 1.414L4 5.414 5.414 4z","fill":"#2C3E50"}})])]):_c('div',{staticClass:"menu-wrapper__top-right",on:{"click":function($event){$event.stopPropagation();$event.preventDefault();_vm.isActiveMenu = true}}},[_c('svg',{attrs:{"width":"8","height":"16","viewBox":"0 0 8 16","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M1 15.5L7 8L1 0.500001","stroke":"#2C3E50","stroke-linecap":"round","stroke-linejoin":"round"}})])])]),_c('div',{staticClass:"menu__link"},_vm._l((_vm.headerItems),function(item,index){return _c('a',{key:index,staticClass:"menu_mobile-wrapper",class:{ 'active-burger-tab': item.key === _vm.activeTabKey },attrs:{"href":item[_vm.mode]}},[_vm._v(" "+_vm._s(item.name)+" ")])}),0)]),_c('div',{staticClass:"menu-wrapper__bottom"},[_c('div',{staticClass:"menu-wrapper__bottom-header"},[_c('span',[_vm._v("Валюта")]),_c('span',[_vm._v("Покупка")]),_c('span',[_vm._v("Продажа")])]),_c('div',{staticClass:"menu-wrapper__bottom-body"},_vm._l((_vm.currencies),function(currency,index){return _c('div',{key:index,staticClass:"menu-wrapper__bottom-row"},[_c('div',{staticClass:"menu-wrapper__bottom-column"},[(currency.currency === 'USD')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('g',{attrs:{"clip-path":"url(#clip0_179_1917)"}},[_c('path',{attrs:{"d":"M26.4 0.5H-4V16.5H26.4V0.5Z","fill":"white"}}),_c('path',{attrs:{"d":"M26.4 0.5H-4V1.732H26.4V0.5Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 2.95996H-4V4.19196H26.4V2.95996Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 5.42407H-4V6.65607H26.4V5.42407Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 7.88403H-4V9.11603H26.4V7.88403Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 10.3479H-4V11.5799H26.4V10.3479Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 12.8081H-4V14.0401H26.4V12.8081Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 15.2681H-4V16.5001H26.4V15.2681Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M8.16 0.5H-4V9.116H8.16V0.5Z","fill":"#3C3B6E"}}),_c('path',{attrs:{"d":"M0.603882 1.20011L0.891882 1.40811L0.783882 1.75211L1.07188 1.54011L1.35988 1.75211L1.25188 1.40811L1.53988 1.20011H1.18388L1.07188 0.860107L0.959882 1.20011H0.603882Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.61987 1.20011L2.90787 1.40811L2.79987 1.75211L3.08787 1.54011L3.37587 1.75211L3.26787 1.40811L3.55587 1.20011H3.19987L3.08787 0.860107L2.97587 1.20011H2.61987Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.63599 1.20011L4.92399 1.40811L4.81599 1.75211L5.10399 1.54011L5.39199 1.75211L5.28399 1.40811L5.57199 1.20011H5.21599L5.10399 0.860107L4.99199 1.20011H4.63599Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.65198 1.20011L6.93998 1.40811L6.83198 1.75211L7.11998 1.54011L7.40798 1.75211L7.29998 1.40811L7.58798 1.20011H7.23198L7.11998 0.860107L7.00798 1.20011H6.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M-0.403931 2.06412L-0.115931 2.27212L-0.223931 2.61612L0.0640694 2.40412L0.352069 2.61612L0.244069 2.27212L0.532069 2.06412H0.176069L0.0640694 1.72412L-0.0479305 2.06412H-0.403931Z","fill":"white"}}),_c('path',{attrs:{"d":"M1.61206 2.06412L1.90006 2.27212L1.79206 2.61612L2.08006 2.40412L2.36806 2.61612L2.26006 2.27212L2.54806 2.06412H2.19206L2.08006 1.72412L1.96806 2.06412H1.61206Z","fill":"white"}}),_c('path',{attrs:{"d":"M3.62817 2.06412L3.91617 2.27212L3.80817 2.61612L4.09617 2.40412L4.38417 2.61612L4.27617 2.27212L4.56417 2.06412H4.20817L4.09617 1.72412L3.98417 2.06412H3.62817Z","fill":"white"}}),_c('path',{attrs:{"d":"M5.64417 2.06412L5.93216 2.27212L5.82416 2.61612L6.11216 2.40412L6.40016 2.61612L6.29216 2.27212L6.58016 2.06412H6.22416L6.11216 1.72412L6.00016 2.06412H5.64417Z","fill":"white"}}),_c('path',{attrs:{"d":"M0.603882 2.92789L0.891882 3.13589L0.783882 3.47989L1.07188 3.26789L1.35988 3.47989L1.25188 3.13589L1.53988 2.92789H1.18388L1.07188 2.58789L0.959882 2.92789H0.603882Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.61987 2.92789L2.90787 3.13589L2.79987 3.47989L3.08787 3.26789L3.37587 3.47989L3.26787 3.13589L3.55587 2.92789H3.19987L3.08787 2.58789L2.97587 2.92789H2.61987Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.63599 2.92789L4.92399 3.13589L4.81599 3.47989L5.10399 3.26789L5.39199 3.47989L5.28399 3.13589L5.57199 2.92789H5.21599L5.10399 2.58789L4.99199 2.92789H4.63599Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.65198 2.92789L6.93998 3.13589L6.83198 3.47989L7.11998 3.26789L7.40798 3.47989L7.29998 3.13589L7.58798 2.92789H7.23198L7.11998 2.58789L7.00798 2.92789H6.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M-0.380127 3.7959L-0.0881271 4.0039L-0.200127 4.3439L0.0878731 4.1359L0.379873 4.3439L0.267873 4.0039L0.555873 3.7959H0.199873L0.0878731 3.4519L-0.0201271 3.7959H-0.380127Z","fill":"white"}}),_c('path',{attrs:{"d":"M1.63599 3.7959L1.92399 4.0039L1.81599 4.3439L2.10399 4.1359L2.39599 4.3439L2.28399 4.0039L2.57199 3.7959H2.21599L2.10399 3.4519L1.99599 3.7959H1.63599Z","fill":"white"}}),_c('path',{attrs:{"d":"M3.65198 3.7959L3.94398 4.0039L3.83198 4.3439L4.11998 4.1359L4.41198 4.3439L4.29998 4.0039L4.58798 3.7959H4.23198L4.11998 3.4519L4.01198 3.7959H3.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M5.66797 3.7959L5.95597 4.0039L5.84797 4.3439L6.13597 4.1359L6.42797 4.3439L6.31597 4.0039L6.60397 3.7959H6.24797L6.13597 3.4519L6.02797 3.7959H5.66797Z","fill":"white"}}),_c('path',{attrs:{"d":"M0.635986 4.65201L0.923986 4.86001L0.811986 5.20401L1.10399 4.99201L1.39199 5.20401L1.27999 4.86001L1.57199 4.65201H1.21199L1.10399 4.31201L0.991986 4.65201H0.635986Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.65198 4.65201L2.93998 4.86001L2.82798 5.20401L3.11998 4.99201L3.40798 5.20401L3.29598 4.86001L3.58798 4.65201H3.22798L3.11998 4.31201L3.00798 4.65201H2.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.66406 4.65201L4.95606 4.86001L4.84406 5.20401L5.13606 4.99201L5.42406 5.20401L5.31206 4.86001L5.60406 4.65201H5.24406L5.13606 4.31201L5.02406 4.65201H4.66406Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.40002 4.84L6.69202 5.048L6.58002 5.392L6.87202 5.18L7.16002 5.392L7.04802 5.048L7.34002 4.84H6.98002L6.87202 4.5L6.76002 4.84H6.40002Z","fill":"white"}}),_c('path',{attrs:{"d":"M0.651978 6.35196L0.943977 6.55996L0.831978 6.90396L1.11998 6.69196L1.41198 6.90396L1.29998 6.55996L1.58798 6.35196H1.23198L1.11998 6.01196L1.01198 6.35196H0.651978Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.66797 6.35196L2.95997 6.55996L2.84797 6.90396L3.13597 6.69196L3.42797 6.90396L3.31597 6.55996L3.60797 6.35196H3.24797L3.13597 6.01196L3.02797 6.35196H2.66797Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.68396 6.35196L4.97596 6.55996L4.86396 6.90396L5.15196 6.69196L5.44396 6.90396L5.33196 6.55996L5.61996 6.35196H5.26396L5.15196 6.01196L5.04396 6.35196H4.68396Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.69995 6.35196L6.99195 6.55996L6.87995 6.90396L7.16795 6.69196L7.45995 6.90396L7.34795 6.55996L7.63595 6.35196H7.27995L7.16795 6.01196L7.05995 6.35196H6.69995Z","fill":"white"}}),_c('path',{attrs:{"d":"M0.628174 8.07193L0.916174 8.28393L0.808174 8.62393L1.09617 8.41193L1.38817 8.62393L1.27617 8.28393L1.56417 8.07193H1.20817L1.09617 7.73193L0.988174 8.07193H0.628174Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.64417 8.07193L2.93616 8.28393L2.82416 8.62393L3.11216 8.41193L3.40416 8.62393L3.29216 8.28393L3.58016 8.07193H3.22416L3.11216 7.73193L3.00416 8.07193H2.64417Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.66016 8.07193L4.95216 8.28393L4.84016 8.62393L5.12816 8.41193L5.42016 8.62393L5.30816 8.28393L5.59616 8.07193H5.24016L5.12816 7.73193L5.02016 8.07193H4.66016Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.67615 8.07193L6.96415 8.28393L6.85615 8.62393L7.14415 8.41193L7.43615 8.62393L7.32415 8.28393L7.61215 8.07193H7.25615L7.14415 7.73193L7.03615 8.07193H6.67615Z","fill":"white"}}),_c('path',{attrs:{"d":"M-0.376221 5.4921L-0.0842209 5.7041L-0.196221 6.0441L0.095779 5.8321L0.383779 6.0441L0.275779 5.7041L0.563779 5.4921H0.203779L0.095779 5.1521L-0.0162209 5.4921H-0.376221Z","fill":"white"}}),_c('path',{attrs:{"d":"M1.64417 5.4921L1.93217 5.7041L1.82017 6.0441L2.11217 5.8321L2.40017 6.0441L2.28817 5.7041L2.58017 5.4921H2.22017L2.11217 5.1521L2.00017 5.4921H1.64417Z","fill":"white"}}),_c('path',{attrs:{"d":"M3.65588 5.4921L3.94788 5.7041L3.83588 6.0441L4.12788 5.8321L4.41588 6.0441L4.30788 5.7041L4.59588 5.4921H4.23588L4.12788 5.1521L4.01588 5.4921H3.65588Z","fill":"white"}}),_c('path',{attrs:{"d":"M5.67188 5.4921L5.96387 5.7041L5.85187 6.0441L6.14387 5.8321L6.43187 6.0441L6.31987 5.7041L6.61187 5.4921H6.25187L6.14387 5.1521L6.03187 5.4921H5.67188Z","fill":"white"}}),_c('path',{attrs:{"d":"M-0.380127 7.21207L-0.0881271 7.42007L-0.200127 7.76007L0.0878731 7.55207L0.379873 7.76007L0.267873 7.42007L0.555873 7.21207H0.199873L0.0878731 6.87207L-0.0201271 7.21207H-0.380127Z","fill":"white"}}),_c('path',{attrs:{"d":"M1.63599 7.21207L1.92399 7.42007L1.81599 7.76007L2.10399 7.55207L2.39599 7.76007L2.28399 7.42007L2.57199 7.21207H2.21599L2.10399 6.87207L1.99599 7.21207H1.63599Z","fill":"white"}}),_c('path',{attrs:{"d":"M3.65198 7.21207L3.94398 7.42007L3.83198 7.76007L4.11998 7.55207L4.41198 7.76007L4.29998 7.42007L4.58798 7.21207H4.23198L4.11998 6.87207L4.01198 7.21207H3.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M5.66797 7.21207L5.95597 7.42007L5.84797 7.76007L6.13597 7.55207L6.42797 7.76007L6.31597 7.42007L6.60397 7.21207H6.24797L6.13597 6.87207L6.02797 7.21207H5.66797Z","fill":"white"}})]),_c('defs',[_c('clipPath',{attrs:{"id":"clip0_179_1917"}},[_c('path',{attrs:{"d":"M0 2.5C0 1.39543 0.895431 0.5 2 0.5H14C15.1046 0.5 16 1.39543 16 2.5V14.5C16 15.6046 15.1046 16.5 14 16.5H2C0.895431 16.5 0 15.6046 0 14.5V2.5Z","fill":"white"}})])])]):_vm._e(),(currency.currency === 'EUR')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M0 2.5C0 1.39543 0.895431 0.5 2 0.5H14C15.1046 0.5 16 1.39543 16 2.5V14.5C16 15.6046 15.1046 16.5 14 16.5H2C0.895431 16.5 0 15.6046 0 14.5V2.5Z","fill":"#314199"}}),_c('path',{attrs:{"d":"M7.99479 12.5967L8.18355 13.1573L8.75857 13.1568L8.35044 13.4667L8.46265 14.0686L7.99479 13.7271L7.52542 14.0594L7.639 13.4667L7.23511 13.1549H7.80958L7.99479 12.5967Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M7.99479 2.85718L8.18355 3.41796L8.75857 3.41727L8.35044 3.72735L8.46265 4.32913L7.99479 3.98765L7.52542 4.31994L7.639 3.72735L7.23511 3.41535H7.80958L7.99479 2.85718Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M10.333 3.48364L10.5218 4.04428L11.097 4.04373L10.6888 4.35368L10.8009 4.95546L10.333 4.61411L9.86366 4.94641L9.97739 4.35368L9.57349 4.04181H10.148L10.333 3.48364Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M5.54397 3.48364L5.73273 4.04428L6.3079 4.04373L5.89976 4.35368L6.01184 4.95546L5.54397 4.61411L5.0746 4.94641L5.18832 4.35368L4.78442 4.04181H5.35877L5.54397 3.48364Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M10.333 11.9387L10.5218 12.4995L11.097 12.4989L10.6888 12.8089L10.8009 13.4107L10.333 13.0693L9.86366 13.4016L9.97739 12.8089L9.57349 12.4969H10.148L10.333 11.9387Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M5.54397 11.9387L5.73273 12.4995L6.3079 12.4989L5.89976 12.8089L6.01184 13.4107L5.54397 13.0693L5.0746 13.4016L5.18832 12.8089L4.78442 12.4969H5.35877L5.54397 11.9387Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M3.75309 5.32153L3.94185 5.88231L4.51688 5.88162L4.10888 6.1917L4.22082 6.79349L3.75309 6.45214L3.28372 6.7843L3.39731 6.1917L2.99341 5.8797H3.56789L3.75309 5.32153Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M12.1823 5.32153L12.3711 5.88231L12.9462 5.88162L12.5381 6.1917L12.6502 6.79349L12.1823 6.45214L11.7129 6.7843L11.8265 6.1917L11.4226 5.8797H11.9971L12.1823 5.32153Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M3.75309 10.1826L3.94185 10.7434L4.51688 10.7427L4.10888 11.0528L4.22082 11.6546L3.75309 11.3131L3.28372 11.6454L3.39731 11.0528L2.99341 10.7408H3.56789L3.75309 10.1826Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M12.1823 10.1826L12.3711 10.7434L12.9462 10.7427L12.5381 11.0528L12.6502 11.6546L12.1823 11.3131L11.7129 11.6454L11.8265 11.0528L11.4226 10.7408H11.9971L12.1823 10.1826Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M3.19682 7.73389L3.38558 8.29466L3.96074 8.29398L3.55261 8.60406L3.66469 9.20584L3.19682 8.86436L2.72745 9.19665L2.84103 8.60406L2.43713 8.29206H3.01161L3.19682 7.73389Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M12.799 7.73389L12.9877 8.29466L13.5629 8.29398L13.1548 8.60406L13.2668 9.20584L12.799 8.86436L12.3296 9.19665L12.4433 8.60406L12.0394 8.29206H12.6138L12.799 7.73389Z","fill":"#F8EC26"}})]):_vm._e(),(currency.currency === 'RUB')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('g',{attrs:{"clip-path":"url(#clip0_179_2012)"}},[_c('path',{attrs:{"d":"M0 0.5C0 -0.60457 0.895431 -1.5 2 -1.5H18C19.1046 -1.5 20 -0.604569 20 0.5V5.5H0V0.5Z","fill":"#F0F0F0"}}),_c('rect',{attrs:{"y":"5.5","width":"20","height":"7","fill":"#0039A6"}}),_c('path',{attrs:{"d":"M0 11.5H20V16.5C20 17.6046 19.1046 18.5 18 18.5H2C0.895431 18.5 0 17.6046 0 16.5V11.5Z","fill":"#D52B1E"}})]),_c('defs',[_c('clipPath',{attrs:{"id":"clip0_179_2012"}},[_c('rect',{attrs:{"y":"0.5","width":"16","height":"16","rx":"2","fill":"white"}})])])]):_vm._e(),(currency.currency === 'CNY')?_c('svg',{attrs:{"width":"16","height":"16","viewBox":"0 0 16 16","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M0 2C0 0.895431 0.895431 0 2 0H14C15.1046 0 16 0.895431 16 2V14C16 15.1046 15.1046 16 14 16H2C0.895431 16 0 15.1046 0 14V2Z","fill":"#DE2910"}}),_c('path',{attrs:{"d":"M4.00115 1.60043L5.41155 5.94203L1.71875 3.25883H6.28355L2.59075 5.94203L4.00115 1.60043Z","fill":"#FFDE00"}}),_c('path',{attrs:{"d":"M7.3125 2.01103L8.3117 0.863831L8.1781 2.37983L7.3957 1.07503L8.7957 1.67023L7.3125 2.01103Z","fill":"#FFDE00"}}),_c('path',{attrs:{"d":"M8.80803 3.31335L10.1744 2.64375L9.46323 3.98855L9.24803 2.48215L10.3072 3.57415L8.80803 3.31335Z","fill":"#FFDE00"}}),_c('path',{attrs:{"d":"M8.82968 5.38077L10.3497 5.32637L9.15208 6.26477L9.56968 4.80157L10.0913 6.23037L8.82968 5.38077Z","fill":"#FFDE00"}}),_c('path',{attrs:{"d":"M7.3758 6.6997L8.7998 7.2365L7.3326 7.6397L8.283 6.4509L8.2118 7.9709L7.3758 6.6997Z","fill":"#FFDE00"}})]):_vm._e(),_c('span',[_vm._v(_vm._s(currency.currency))])]),_c('div',{staticClass:"menu-wrapper__bottom-column"},[_c('span',[_vm._v(_vm._s(currency.buy))]),(currency.buy_state === 'DOWN')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M8 12.5249L12.3301 4.52507H3.66987L8 12.5249Z","fill":"#FF2E43"}})]):_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M8 4.47461L12.3301 12.4702H3.66987L8 4.47461Z","fill":"#00B92D"}})])]),_c('div',{staticClass:"menu-wrapper__bottom-column"},[_c('span',[_vm._v(_vm._s(currency.sell))]),(currency.sell_state === 'DOWN')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M8 12.5249L12.3301 4.52507H3.66987L8 12.5249Z","fill":"#FF2E43"}})]):_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M8 4.47461L12.3301 12.4702H3.66987L8 4.47461Z","fill":"#00B92D"}})])])])}),0),_c('div',{staticClass:"menu_mobile-footer"},[_c('button',{staticClass:"sign",on:{"click":function($event){return _vm.$emit('logout')}}},[_c('svg',{attrs:{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M16.5 15L19.5 12L16.5 9","stroke":"white","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}}),_c('path',{attrs:{"d":"M15 16.875L15 19.5L4.5 19.5L4.5 4.5L15 4.5L15 6.5625","stroke":"white","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}}),_c('path',{attrs:{"d":"M19 12H8","stroke":"white","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}})]),_c('span',[_vm._v("Выход")])])])])])])]}}])}),_c('MobileToggle',{scopedSlots:_vm._u([{key:"default",fn:function(ref){
8416
+ var animationClass = ref.animationClass;
8417
+ return [_c('ProfileMobile',{directives:[{name:"show",rawName:"v-show",value:(_vm.isActiveMenu),expression:"isActiveMenu"}],class:animationClass,attrs:{"rate":_vm.rateCodes[_vm.rate],"email":_vm.email,"mode":_vm.mode,"balance":_vm.thousandSeparator(_vm.balance),"activeTabKey":_vm.activeTabKey,"daysLeft":_vm.daysRemaining},on:{"changeValue":_vm.changeValue,"close":function($event){_vm.isActiveMenu = false},"logout":function($event){return _vm.$emit('logout')}}})]}}])})],1)],1)}
8418
+ var Headervue_type_template_id_b2e7b93e_staticRenderFns = []
9595
8419
 
9596
8420
 
9597
- // CONCATENATED MODULE: ./src/components/Header/Header.vue?vue&type=template&id=d0150058&
8421
+ // CONCATENATED MODULE: ./src/components/Header/Header.vue?vue&type=template&id=b2e7b93e&
9598
8422
 
9599
8423
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.promise.js
9600
8424
  var es_promise = __webpack_require__("e6cf");
@@ -9641,29 +8465,36 @@ function _asyncToGenerator(fn) {
9641
8465
  // EXTERNAL MODULE: ./node_modules/regenerator-runtime/runtime.js
9642
8466
  var runtime = __webpack_require__("96cf");
9643
8467
 
8468
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.to-string.js
8469
+ var es_regexp_to_string = __webpack_require__("25f0");
8470
+
9644
8471
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.json.stringify.js
9645
8472
  var es_json_stringify = __webpack_require__("e9c4");
9646
8473
 
9647
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.name.js
9648
- var es_function_name = __webpack_require__("b0c0");
9649
-
9650
8474
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.replace.js
9651
8475
  var es_string_replace = __webpack_require__("5319");
9652
8476
 
9653
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.to-string.js
9654
- var es_regexp_to_string = __webpack_require__("25f0");
8477
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"23ef8cfe-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Header/ProfileMobile.vue?vue&type=template&id=05876c4f&scoped=true&
8478
+ var ProfileMobilevue_type_template_id_05876c4f_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"menu_mobile"},[_c('div',{staticClass:"empty-space",on:{"click":function($event){return _vm.$emit('changeValue')}}}),_c('div',{staticClass:"menu-wrapper"},[_c('div',{staticClass:"mobile-table-head"},[_c('div',{staticClass:"mobile-table-head-left",on:{"click":function($event){$event.stopPropagation();return _vm.$emit('close')}}},[_c('svg',{attrs:{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M9.9996 8.00317L5.9996 12.0097L9.99958 16.0032","stroke":"#007AFF","stroke-width":"1.2","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}}),_c('path',{attrs:{"d":"M6 12L18 12","stroke":"#007AFF","stroke-width":"1.2","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}})]),_c('span',[_vm._v(_vm._s(_vm.email))])])]),_c('div',{staticClass:"mobile-table-body"},[_c('p',[_vm._v("Тариф "+_vm._s(_vm.rate))]),_c('p',[_vm._v("Суточный лимит запросов: "),_c('span',[_vm._v(_vm._s(+_vm.limitRemaining))])]),_c('p',[_vm._v("Остаток дней по тарифу: "),_c('span',[_vm._v(_vm._s(_vm.daysLeft))])]),_c('a',{staticClass:"button",attrs:{"href":_vm.profileDropDown[0][_vm.mode] || '/'}},[_vm._v("Увеличить лимит запросов")])]),_c('div',{staticClass:"mobile-table-item"},[_c('p',{staticClass:"mobile-table-item__title"},[_vm._v(" Платежи ")]),_c('div',{staticClass:"mobile-table-item__text"},[_c('p',[_vm._v("Текущий баланс: "),_c('span',[_vm._v(_vm._s(_vm.balance + " ₸"))])]),_c('a',{staticClass:"button",attrs:{"href":_vm.profileDropDown[1][_vm.mode],"onclick":"return false"},on:{"click":function($event){return _vm.showModal(_vm.profileDropDown[1][_vm.mode])}}},[_vm._v(" Пополнить ")])]),_c('a',{staticClass:"p",attrs:{"href":_vm.profileDropDown[2][_vm.mode]}},[_vm._v("История платежей")])]),_c('div',{staticClass:"mobile-table-item"},[_c('p',{staticClass:"mobile-table-item__title"},[_vm._v(" Профиль пользователя ")]),_vm._l((_vm.profileDropDown.filter(function (el) { return el.children; })),function(item,id){return _c('div',{key:'child' + id,staticClass:"mobile-table-item__text wrapped"},[_c('div',{staticClass:"wrapped__text",class:{'active': item.opened},on:{"click":function($event){return _vm.openOneCloseOthers(id)}}},[_c('p',[_vm._v(_vm._s(item.name))]),_c('div',{staticClass:"svg-wrapper",class:{'rotated': item.opened}},[_c('svg',{attrs:{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M4.5 9L12 15L19.5 9","stroke":"#2C3E50","stroke-linecap":"round","stroke-linejoin":"round"}})])])]),_c('SlideToggle',{scopedSlots:_vm._u([{key:"default",fn:function(ref){
8479
+ var animationClass = ref.animationClass;
8480
+ return [_c('div',{directives:[{name:"show",rawName:"v-show",value:(item.opened),expression:"item.opened"}],staticClass:"mobile-table-item__children"},_vm._l((item.children),function(elem,id){return _c('a',{key:'elem' + id,attrs:{"href":elem[_vm.mode]}},[_vm._v(_vm._s(elem.name))])}),0)]}}],null,true)})],1)})],2),_c('div',{staticClass:"mobile-table-item"},[_c('p',{staticClass:"mobile-table-item__title"},[_vm._v(" Общие настройки ")]),_c('a',{staticClass:"p",attrs:{"href":_vm.profileDropDown[3][_vm.mode]}},[_vm._v("Личная информация")])]),_c('div',{staticClass:"menu_mobile-footer"},[_c('button',{staticClass:"sign",on:{"click":function($event){return _vm.$emit('logout')}}},[_c('svg',{attrs:{"width":"24","height":"24","viewBox":"0 0 24 24","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M16.5 15L19.5 12L16.5 9","stroke":"white","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}}),_c('path',{attrs:{"d":"M15 16.875L15 19.5L4.5 19.5L4.5 4.5L15 4.5L15 6.5625","stroke":"white","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}}),_c('path',{attrs:{"d":"M19 12H8","stroke":"white","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}})]),_c('span',[_vm._v("Выход")])])])])])}
8481
+ var ProfileMobilevue_type_template_id_05876c4f_scoped_true_staticRenderFns = []
8482
+
8483
+
8484
+ // CONCATENATED MODULE: ./src/components/Header/ProfileMobile.vue?vue&type=template&id=05876c4f&scoped=true&
8485
+
8486
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.find.js
8487
+ var es_array_find = __webpack_require__("7db0");
8488
+
8489
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
8490
+ var es_string_includes = __webpack_require__("2532");
8491
+
8492
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.filter.js
8493
+ var es_array_filter = __webpack_require__("4de4");
9655
8494
 
9656
8495
  // CONCATENATED MODULE: ./src/configs/profileDropDown.js
9657
8496
  var profileDropDown = [{
9658
8497
  id: 1,
9659
- name: "Общие настройки",
9660
- dev: "https://adtdev.kz/profile?tab=general",
9661
- staging: "https://adada.kz/profile?tab=general",
9662
- prod: "https://adata.kz/profile?tab=general",
9663
- disabled: false,
9664
- withoutArray: true
9665
- }, {
9666
- id: 2,
9667
8498
  name: "Увеличить лимит запросов",
9668
8499
  dev: "https://adtdev.kz/profile?tab=tariffs",
9669
8500
  staging: "https://adada.kz/profile?tab=tariffs",
@@ -9671,8 +8502,8 @@ var profileDropDown = [{
9671
8502
  disabled: false,
9672
8503
  withoutArray: true
9673
8504
  }, {
9674
- id: 3,
9675
- name: "Текущий баланс: 0 ₸",
8505
+ id: 2,
8506
+ name: "Текущий баланс: ",
9676
8507
  dev: "https://adtdev.kz/profile?tab=tariffs",
9677
8508
  staging: "https://adada.kz/profile?tab=tariffs",
9678
8509
  prod: "https://adata.kz/profile?tab=tariffs",
@@ -9680,17 +8511,26 @@ var profileDropDown = [{
9680
8511
  disabled: true,
9681
8512
  withoutArray: true
9682
8513
  }, {
9683
- id: 4,
8514
+ id: 3,
9684
8515
  name: "Историй платежей",
9685
8516
  dev: "https://adtdev.kz/profile?tab=payments",
9686
8517
  staging: "https://adada.kz/profile?tab=payments",
9687
8518
  prod: "https://adata.kz/profile?tab=payments",
9688
8519
  disabled: false,
9689
8520
  withoutArray: true
8521
+ }, {
8522
+ id: 4,
8523
+ name: "Общие настройки",
8524
+ dev: "https://adtdev.kz/profile?tab=general",
8525
+ staging: "https://adada.kz/profile?tab=general",
8526
+ prod: "https://adata.kz/profile?tab=general",
8527
+ disabled: false,
8528
+ withoutArray: true
9690
8529
  }, {
9691
8530
  id: 5,
9692
8531
  name: "Контрагенты",
9693
8532
  opened: false,
8533
+ key: 'counterparty',
9694
8534
  children: [{
9695
8535
  id: 8,
9696
8536
  name: "Избранные",
@@ -9715,6 +8555,7 @@ var profileDropDown = [{
9715
8555
  id: 6,
9716
8556
  name: "Работа",
9717
8557
  opened: false,
8558
+ key: 'work',
9718
8559
  children: [{
9719
8560
  id: 10,
9720
8561
  name: "Профиль",
@@ -9744,6 +8585,7 @@ var profileDropDown = [{
9744
8585
  id: 7,
9745
8586
  name: "Тендеры",
9746
8587
  opened: false,
8588
+ key: 'tenders',
9747
8589
  children: [{
9748
8590
  id: 17,
9749
8591
  name: "Шаблоны поиска",
@@ -9777,131 +8619,6 @@ var profileDropDown = [{
9777
8619
  // key: 'marketing'
9778
8620
  // }
9779
8621
  ];
9780
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"23ef8cfe-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Header/Profile.vue?vue&type=template&id=67e27faa&
9781
- var Profilevue_type_template_id_67e27faa_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"profile",class:{ active: _vm.active }},[_c('div',{directives:[{name:"click-outside",rawName:"v-click-outside",value:(
9782
- function () {
9783
- _vm.active = false;
9784
- }
9785
- ),expression:"\n () => {\n active = false;\n }\n "}]},[_c('div',{staticClass:"profile__inner"},[_c('div',{staticClass:"profile__item",on:{"click":function($event){_vm.active = !_vm.active}}},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.isAuthenticated),expression:"isAuthenticated"}],staticClass:"profile__item-link"},[_c('span',{staticClass:"desktop"},[_vm._v(_vm._s(_vm.email))]),_c('svg',{staticClass:"desktop arrow-svg",class:{ rotate: _vm.active },attrs:{"width":"18","height":"18","fill":"#25476AFF","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 16 16"}},[_c('path',{attrs:{"fill":"none","d":"M0 0h16v16H0z"}}),_c('path',{attrs:{"fill":"none","d":"M3 6.5L8 10l5-3.5","stroke":"#2C3E50","stroke-linecap":"round","stroke-linejoin":"round"}})])]),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.isAuthenticated),expression:"isAuthenticated"}],staticClass:"profile__item-link"},[_c('svg',{staticClass:"user",attrs:{"width":"18","height":"18","fill":"#25476AFF","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.5 8a3.5 3.5 0 11-7 0 3.5 3.5 0 017 0zm-1.023 4.344a5 5 0 10-4.954 0C5.757 13.417 3 16.874 3 20.974V21h1.543v-.026c0-4.106 3.339-7.435 7.457-7.435 4.119 0 7.457 3.329 7.457 7.435V21H21v-.026c0-4.1-2.757-7.557-6.523-8.63z","fill":"#2C3E50"}})])]),_c('button',{directives:[{name:"show",rawName:"v-show",value:(!_vm.isAuthenticated),expression:"!isAuthenticated"}],staticClass:"sign",on:{"click":function($event){$event.preventDefault();return _vm.goAuth.apply(null, arguments)}}},[_c('svg',{staticClass:"desktop",attrs:{"width":"18","height":"18","fill":"#25476AFF","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 16 16"}},[_c('path',{attrs:{"fill":"#fff","d":"M0 0h16v16H0z","stroke":"none"}}),_c('path',{attrs:{"d":"M8 10l2-2.054L8.077 6","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}}),_c('path',{attrs:{"d":"M6 4.1V2h8v12H6v-1.65M9 8H2","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}})]),_c('svg',{staticClass:"user",attrs:{"width":"18","height":"18","fill":"#25476AFF","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M13 7.94L17.06 12 13 16.06 11.94 15l3-3-3-3L13 7.94z","fill":"#2C3E50"}}),_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M8.25 2.25h13.5v19.5H8.25v-4.5h1.5v3h10.5V3.75H9.75v3h-1.5v-4.5z","fill":"#2C3E50"}}),_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M2.25 11.25h13.5v1.5H2.25v-1.5z","fill":"#2C3E50"}})]),_c('span',{staticClass:"sign_text"},[_vm._v("Вход")])])])]),_c('SlideToggle',{scopedSlots:_vm._u([{key:"default",fn:function(ref){
9786
- var animationClass = ref.animationClass;
9787
- return [(_vm.isAuthenticated)?_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.active),expression:"active"}],staticClass:"profile-menu",class:animationClass},[_c('div',{staticClass:"profile-menu__inner"},[(_vm.listDropDown.length)?_c('div',{staticClass:"profile-menu__items"},_vm._l((_vm.listDropDown),function(elem,index){return _c('div',{key:index},[(elem[_vm.mode])?_c('a',{staticClass:"gray-text",class:elem.link
9788
- ? 'profile-menu__balance-link'
9789
- : 'profile-menu__links',attrs:{"href":elem[_vm.mode],"onclick":"`return false`"},on:{"click":function($event){return _vm.preventLink(elem.disabled, $event)}}},[_c('div',[_vm._v(" "+_vm._s(elem.name)+" ")]),(elem.link)?_c('span',{staticClass:"profile-menu__balance",on:{"click":function($event){return _vm.showModal(elem[_vm.mode], elem.name)}}},[_vm._v(" "+_vm._s(elem.link)+" ")]):_vm._e()]):_vm._e(),(elem.children)?_c('div',{staticClass:"gray-text profile-menu__item",on:{"click":function($event){return _vm.rotateItem(index)}}},[_c('div',{staticClass:"profile-menu__item__children"},[_vm._v(" "+_vm._s(elem.name)+" "),(elem.children.length > 0)?_c('span',[_c('svg',{class:{ rotated: elem.opened },attrs:{"width":"12","height":"8","viewBox":"0 0 12 8","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M1 1.5L6 6.5L11 1.5","stroke":"#69797D","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}})])]):_vm._e()]),_c('SlideToggle',{class:animationClass,scopedSlots:_vm._u([{key:"default",fn:function(ref){
9790
- var animationClass = ref.animationClass;
9791
- return [(elem.opened)?_c('div',[_vm._l((elem.children),function(child,idx){return [(child[_vm.mode])?_c('div',{key:idx + 'link',staticClass:"profile-menu__item__child",on:{"click":function($event){return _vm.handleClick(child[_vm.mode], child.name)}}},[_c('span',[_c('svg',{attrs:{"width":"4","height":"4","viewBox":"0 0 4 4","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('circle',{attrs:{"cx":"2","cy":"2","r":"2","fill":"#2C3E50"}})]),_vm._v(" "+_vm._s(child.name)+" ")])]):_vm._e()]})],2):_vm._e()]}}],null,true)})],1):_vm._e()])}),0):_vm._e(),_c('div',{staticClass:"exit",on:{"click":_vm.logout}},[_c('svg',{attrs:{"width":"18","height":"18","fill":"#25476AFF","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 16 16"}},[_c('path',{attrs:{"d":"M11 10l2-2.054L11.077 6M10 11.9V14H2V2h8v1.65M12 8H5","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}})]),_vm._v(" Выход ")])])]):_vm._e()]}}])}),_c('MobileToggle',{scopedSlots:_vm._u([{key:"default",fn:function(ref){
9792
- var animationClass = ref.animationClass;
9793
- return [_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.isAuthenticated && _vm.active),expression:"isAuthenticated && active"}],staticClass:"mobile-table",class:animationClass},[_c('div',{staticClass:"mobile-table-head"},[_c('p',[_vm._v("Профиль пользователя")]),_c('svg',{attrs:{"fill":"none","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24","id":"close_hamburger"},on:{"click":function($event){$event.stopPropagation();_vm.active = !_vm.active}}},[_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M4.414 18.142L18.556 4l1.415 1.414L5.828 19.556l-1.414-1.414z","fill":"#2C3E50"}}),_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M5.414 4l14.142 14.142-1.414 1.414L4 5.414 5.414 4z","fill":"#2C3E50"}})])]),_c('div',{staticClass:"profile-menu-mobile"},[_c('div',{staticClass:"profile-menu-mobile__inner"},[(_vm.listDropDown.length > 0)?_c('div',{staticClass:"profile-menu-mobile__items"},_vm._l((_vm.listDropDown),function(elem,index){return _c('div',{key:index,staticClass:"bb"},[(elem[_vm.mode])?_c('div',{class:elem.link
9794
- ? 'profile-menu-mobile__balance-link'
9795
- : 'profile-menu-mobile__links',on:{"click":function($event){return _vm.handleClick(elem[_vm.mode], elem.name)}}},[(!elem.link)?_c('div',{staticClass:"button-inner"},[_c('div',[_vm._v(_vm._s(elem.name))]),_c('svg',{directives:[{name:"show",rawName:"v-show",value:(!elem.withoutArray),expression:"!elem.withoutArray"}],attrs:{"width":"18","height":"18","fill":"none","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 10 18"}},[_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M2.108.59L9.318 9l-7.21 8.41L.59 16.108 6.683 9 .59 1.892 2.108.59z","fill":"#2C3E50"}})])]):_vm._e(),(elem.link)?_c('div',{staticClass:"profile-menu-mobile__balance-items"},[_c('div',{staticClass:"profile-menu-mobile__balance-items__upper-text"},[_vm._v(" "+_vm._s(elem.name.substr(0, 15))+" ")]),_c('div',{staticClass:"profile-menu-mobile__balance__bot-text"},[_vm._v(" "+_vm._s(elem.name.substr(15))+" ")])]):_vm._e(),(elem.link)?_c('span',{staticClass:"profile-menu-mobile__balance",on:{"click":function($event){return _vm.$emit('showBalanceModal', true)}}},[_vm._v(" "+_vm._s(elem.link)+" ")]):_vm._e()]):_vm._e(),(elem.children)?_c('div',{staticClass:"profile-menu-mobile__links",on:{"click":function($event){return _vm.rotateItem(index)}}},[_c('div',{staticClass:"button-inner"},[_c('div',[_vm._v(_vm._s(elem.name))]),_c('svg',{attrs:{"width":"18","height":"18","fill":"none","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 10 18"}},[_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M2.108.59L9.318 9l-7.21 8.41L.59 16.108 6.683 9 .59 1.892 2.108.59z","fill":"#2C3E50"}})])])]):_vm._e()])}),0):_vm._e()]),_c('div',{staticClass:"exit-mob",on:{"click":_vm.logout}},[_c('svg',{staticClass:"arrow-svg",attrs:{"width":"18","height":"18","fill":"#25476AFF","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M17.7501 7.93933L21.8108 12L17.7501 16.0607L16.6895 15L19.6895 12L16.6895 8.99999L17.7501 7.93933Z","fill":"#2C3E50"}}),_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.5 2.25H2V21.75H15.5V17.25H14V20.25H3.5V3.75H14V6.75H15.5V2.25Z","fill":"#2C3E50"}}),_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M7 11.25L20.5 11.25L20.5 12.75L7 12.75L7 11.25Z","fill":"#2C3E50"}})]),_vm._v(" Выход ")])])])]}}])}),_c('MobileToggle',{scopedSlots:_vm._u([{key:"default",fn:function(ref){
9796
- var animationClass = ref.animationClass;
9797
- return [_c('div',{directives:[{name:"show",rawName:"v-show",value:(
9798
- _vm.someMobileOpened.length > 0 &&
9799
- _vm.chosenElem &&
9800
- _vm.chosenElem.children.length > 0
9801
- ),expression:"\n someMobileOpened.length > 0 &&\n chosenElem &&\n chosenElem.children.length > 0\n "}],staticClass:"mobile-table",class:animationClass},[_c('div',{staticClass:"mobile-table-head mobile-table-head-chosen"},[_c('div',{on:{"click":function($event){_vm.chosenElem.opened = false}}},[_c('svg',{staticClass:"rotated",attrs:{"width":"18","height":"18","fill":"none","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 10 18"}},[_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M2.108.59L9.318 9l-7.21 8.41L.59 16.108 6.683 9 .59 1.892 2.108.59z","fill":"#2C3E50"}})])]),_c('p',[_vm._v(_vm._s(_vm.chosenElem.name))])]),_c('div',{staticClass:"profile-menu-mobile"},[_c('div',{staticClass:"profile-menu-mobile__inner"},[(_vm.chosenElem.children.length > 0)?_c('div',{staticClass:"profile-menu-mobile__items"},_vm._l((_vm.chosenElem.children),function(elem,index){return _c('div',{key:index,staticClass:"bb"},[(elem[_vm.mode])?_c('div',{class:elem.link
9802
- ? 'profile-menu-mobile__balance-link'
9803
- : 'profile-menu-mobile__links',on:{"click":function($event){return _vm.handleClick(elem[_vm.mode], elem.name)}}},[_c('div',{staticClass:"button-inner"},[_c('div',[_vm._v(_vm._s(elem.name))])])]):_vm._e()])}),0):_vm._e()]),_c('div',{staticClass:"exit-mob",on:{"click":_vm.logout}},[_c('svg',{staticClass:"arrow-svg",attrs:{"width":"18","height":"18","fill":"#25476AFF","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M17.7501 7.93933L21.8108 12L17.7501 16.0607L16.6895 15L19.6895 12L16.6895 8.99999L17.7501 7.93933Z","fill":"#2C3E50"}}),_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M15.5 2.25H2V21.75H15.5V17.25H14V20.25H3.5V3.75H14V6.75H15.5V2.25Z","fill":"#2C3E50"}}),_c('path',{attrs:{"fill-rule":"evenodd","clip-rule":"evenodd","d":"M7 11.25L20.5 11.25L20.5 12.75L7 12.75L7 11.25Z","fill":"#2C3E50"}})]),_vm._v(" Выход ")])])])]}}])})],1)])}
9804
- var Profilevue_type_template_id_67e27faa_staticRenderFns = []
9805
-
9806
-
9807
- // CONCATENATED MODULE: ./src/components/Header/Profile.vue?vue&type=template&id=67e27faa&
9808
-
9809
- // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js
9810
- function _arrayLikeToArray(arr, len) {
9811
- if (len == null || len > arr.length) len = arr.length;
9812
-
9813
- for (var i = 0, arr2 = new Array(len); i < len; i++) {
9814
- arr2[i] = arr[i];
9815
- }
9816
-
9817
- return arr2;
9818
- }
9819
- // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js
9820
-
9821
- function _arrayWithoutHoles(arr) {
9822
- if (Array.isArray(arr)) return _arrayLikeToArray(arr);
9823
- }
9824
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.js
9825
- var es_symbol = __webpack_require__("a4d3");
9826
-
9827
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.description.js
9828
- var es_symbol_description = __webpack_require__("e01a");
9829
-
9830
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.iterator.js
9831
- var es_symbol_iterator = __webpack_require__("d28b");
9832
-
9833
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.iterator.js
9834
- var es_array_iterator = __webpack_require__("e260");
9835
-
9836
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.iterator.js
9837
- var es_string_iterator = __webpack_require__("3ca3");
9838
-
9839
- // EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom-collections.iterator.js
9840
- var web_dom_collections_iterator = __webpack_require__("ddb0");
9841
-
9842
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.from.js
9843
- var es_array_from = __webpack_require__("a630");
9844
-
9845
- // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/iterableToArray.js
9846
-
9847
-
9848
-
9849
-
9850
-
9851
-
9852
-
9853
-
9854
- function _iterableToArray(iter) {
9855
- if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
9856
- }
9857
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.slice.js
9858
- var es_array_slice = __webpack_require__("fb6a");
9859
-
9860
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.test.js
9861
- var es_regexp_test = __webpack_require__("00b4");
9862
-
9863
- // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js
9864
-
9865
-
9866
-
9867
-
9868
-
9869
-
9870
-
9871
-
9872
- function _unsupportedIterableToArray(o, minLen) {
9873
- if (!o) return;
9874
- if (typeof o === "string") return _arrayLikeToArray(o, minLen);
9875
- var n = Object.prototype.toString.call(o).slice(8, -1);
9876
- if (n === "Object" && o.constructor) n = o.constructor.name;
9877
- if (n === "Map" || n === "Set") return Array.from(o);
9878
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
9879
- }
9880
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.error.cause.js
9881
- var es_error_cause = __webpack_require__("d9e2");
9882
-
9883
- // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js
9884
-
9885
- function _nonIterableSpread() {
9886
- throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
9887
- }
9888
- // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js
9889
-
9890
-
9891
-
9892
-
9893
- function _toConsumableArray(arr) {
9894
- return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
9895
- }
9896
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.find.js
9897
- var es_array_find = __webpack_require__("7db0");
9898
-
9899
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.filter.js
9900
- var es_array_filter = __webpack_require__("4de4");
9901
-
9902
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
9903
- var es_string_includes = __webpack_require__("2532");
9904
-
9905
8622
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"23ef8cfe-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/transitions/SlideToggle.vue?vue&type=template&id=6ddd4cf0&
9906
8623
  var SlideTogglevue_type_template_id_6ddd4cf0_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('transition',{on:{"before-enter":_vm.beforeEnter,"enter":_vm.enter,"after-enter":_vm.afterEnter,"before-leave":_vm.beforeLeave,"leave":_vm.leave,"after-leave":_vm.afterLeave}},[_vm._t("default",null,{"animationClass":'slideToggleAnimation',"compareNotificationClass":'compareNotification',"fastAnimation":'fastAnimation'})],2)}
9907
8624
  var SlideTogglevue_type_template_id_6ddd4cf0_staticRenderFns = []
@@ -9976,337 +8693,16 @@ var SlideToggle_component = normalizeComponent(
9976
8693
  )
9977
8694
 
9978
8695
  /* harmony default export */ var SlideToggle = (SlideToggle_component.exports);
9979
- // EXTERNAL MODULE: ./node_modules/v-click-outside/dist/v-click-outside.umd.js
9980
- var v_click_outside_umd = __webpack_require__("c28b");
9981
- var v_click_outside_umd_default = /*#__PURE__*/__webpack_require__.n(v_click_outside_umd);
8696
+ // 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/Header/ProfileMobile.vue?vue&type=script&lang=js&
8697
+
8698
+
8699
+
8700
+
8701
+
8702
+
8703
+
8704
+
9982
8705
 
9983
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"23ef8cfe-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/transitions/VerticalMobileToggle.vue?vue&type=template&id=0eccf0ba&
9984
- var VerticalMobileTogglevue_type_template_id_0eccf0ba_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('transition',{on:{"before-enter":_vm.beforeEnter,"after-enter":_vm.afterEnter,"before-leave":_vm.beforeLeave,"leave":_vm.leave,"after-leave":_vm.afterLeave}},[_vm._t("default",null,{"animationClass":'slideToggleAnimation',"compareNotificationClass":'compareNotification'})],2)}
9985
- var VerticalMobileTogglevue_type_template_id_0eccf0ba_staticRenderFns = []
9986
-
9987
-
9988
- // CONCATENATED MODULE: ./src/components/transitions/VerticalMobileToggle.vue?vue&type=template&id=0eccf0ba&
9989
-
9990
- // 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/transitions/VerticalMobileToggle.vue?vue&type=script&lang=js&
9991
-
9992
-
9993
-
9994
- //
9995
- //
9996
- //
9997
- //
9998
- //
9999
- //
10000
- //
10001
- //
10002
- //
10003
- //
10004
- //
10005
- /* harmony default export */ var VerticalMobileTogglevue_type_script_lang_js_ = ({
10006
- props: {
10007
- zIndex: {
10008
- type: Number,
10009
- default: 0
10010
- },
10011
- top: {
10012
- type: String,
10013
- default: "0%"
10014
- },
10015
- overflow: {
10016
- type: String,
10017
- default: "initial"
10018
- }
10019
- },
10020
- methods: {
10021
- beforeEnter: function beforeEnter(el) {
10022
- el.style.width = "0";
10023
- el.style.overflowX = "hidden";
10024
- el.style.overflowY = "hidden";
10025
- el.style.position = "fixed";
10026
- el.style.top = "0";
10027
- el.style.right = "0";
10028
- el.style.background = "#fff";
10029
- },
10030
- afterEnter: function afterEnter(el) {
10031
- el.style.height = "100vh";
10032
- el.style.width = "100vw";
10033
- el.style.overflowX = "hidden";
10034
- el.style.overflowY = "auto";
10035
- el.style.position = "fixed";
10036
- el.style.top = this.top;
10037
- el.style.right = "0";
10038
- el.style.background = "#fff";
10039
- el.style.zIndex = (90 + this.zIndex).toString();
10040
- },
10041
- beforeLeave: function beforeLeave(el) {
10042
- el.style.overflow = "hidden";
10043
- el.style.width = el.scrollHeight + "px";
10044
- el.scrollHeight;
10045
- },
10046
- leave: function leave(el) {
10047
- el.style.width = "0";
10048
- },
10049
- afterLeave: function afterLeave(el) {
10050
- el.style.position = "fixed";
10051
- el.style.top = "0";
10052
- el.style.right = "0";
10053
- el.style.width = "auto";
10054
- el.style.overflow = "initial";
10055
- }
10056
- }
10057
- });
10058
- // CONCATENATED MODULE: ./src/components/transitions/VerticalMobileToggle.vue?vue&type=script&lang=js&
10059
- /* harmony default export */ var transitions_VerticalMobileTogglevue_type_script_lang_js_ = (VerticalMobileTogglevue_type_script_lang_js_);
10060
- // EXTERNAL MODULE: ./src/components/transitions/VerticalMobileToggle.vue?vue&type=style&index=0&lang=css&
10061
- var VerticalMobileTogglevue_type_style_index_0_lang_css_ = __webpack_require__("da9d");
10062
-
10063
- // CONCATENATED MODULE: ./src/components/transitions/VerticalMobileToggle.vue
10064
-
10065
-
10066
-
10067
-
10068
-
10069
-
10070
- /* normalize component */
10071
-
10072
- var VerticalMobileToggle_component = normalizeComponent(
10073
- transitions_VerticalMobileTogglevue_type_script_lang_js_,
10074
- VerticalMobileTogglevue_type_template_id_0eccf0ba_render,
10075
- VerticalMobileTogglevue_type_template_id_0eccf0ba_staticRenderFns,
10076
- false,
10077
- null,
10078
- null,
10079
- null
10080
-
10081
- )
10082
-
10083
- /* harmony default export */ var VerticalMobileToggle = (VerticalMobileToggle_component.exports);
10084
- // 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/Header/Profile.vue?vue&type=script&lang=js&
10085
-
10086
-
10087
-
10088
-
10089
-
10090
-
10091
-
10092
-
10093
-
10094
-
10095
-
10096
- //
10097
- //
10098
- //
10099
- //
10100
- //
10101
- //
10102
- //
10103
- //
10104
- //
10105
- //
10106
- //
10107
- //
10108
- //
10109
- //
10110
- //
10111
- //
10112
- //
10113
- //
10114
- //
10115
- //
10116
- //
10117
- //
10118
- //
10119
- //
10120
- //
10121
- //
10122
- //
10123
- //
10124
- //
10125
- //
10126
- //
10127
- //
10128
- //
10129
- //
10130
- //
10131
- //
10132
- //
10133
- //
10134
- //
10135
- //
10136
- //
10137
- //
10138
- //
10139
- //
10140
- //
10141
- //
10142
- //
10143
- //
10144
- //
10145
- //
10146
- //
10147
- //
10148
- //
10149
- //
10150
- //
10151
- //
10152
- //
10153
- //
10154
- //
10155
- //
10156
- //
10157
- //
10158
- //
10159
- //
10160
- //
10161
- //
10162
- //
10163
- //
10164
- //
10165
- //
10166
- //
10167
- //
10168
- //
10169
- //
10170
- //
10171
- //
10172
- //
10173
- //
10174
- //
10175
- //
10176
- //
10177
- //
10178
- //
10179
- //
10180
- //
10181
- //
10182
- //
10183
- //
10184
- //
10185
- //
10186
- //
10187
- //
10188
- //
10189
- //
10190
- //
10191
- //
10192
- //
10193
- //
10194
- //
10195
- //
10196
- //
10197
- //
10198
- //
10199
- //
10200
- //
10201
- //
10202
- //
10203
- //
10204
- //
10205
- //
10206
- //
10207
- //
10208
- //
10209
- //
10210
- //
10211
- //
10212
- //
10213
- //
10214
- //
10215
- //
10216
- //
10217
- //
10218
- //
10219
- //
10220
- //
10221
- //
10222
- //
10223
- //
10224
- //
10225
- //
10226
- //
10227
- //
10228
- //
10229
- //
10230
- //
10231
- //
10232
- //
10233
- //
10234
- //
10235
- //
10236
- //
10237
- //
10238
- //
10239
- //
10240
- //
10241
- //
10242
- //
10243
- //
10244
- //
10245
- //
10246
- //
10247
- //
10248
- //
10249
- //
10250
- //
10251
- //
10252
- //
10253
- //
10254
- //
10255
- //
10256
- //
10257
- //
10258
- //
10259
- //
10260
- //
10261
- //
10262
- //
10263
- //
10264
- //
10265
- //
10266
- //
10267
- //
10268
- //
10269
- //
10270
- //
10271
- //
10272
- //
10273
- //
10274
- //
10275
- //
10276
- //
10277
- //
10278
- //
10279
- //
10280
- //
10281
- //
10282
- //
10283
- //
10284
- //
10285
- //
10286
- //
10287
- //
10288
- //
10289
- //
10290
- //
10291
- //
10292
- //
10293
- //
10294
- //
10295
- //
10296
- //
10297
- //
10298
- //
10299
- //
10300
- //
10301
- //
10302
- //
10303
- //
10304
- //
10305
- //
10306
- //
10307
- //
10308
- //
10309
- //
10310
8706
  //
10311
8707
  //
10312
8708
  //
@@ -10389,6 +8785,156 @@ var VerticalMobileToggle_component = normalizeComponent(
10389
8785
  //
10390
8786
  //
10391
8787
  //
8788
+
8789
+
8790
+ /* harmony default export */ var ProfileMobilevue_type_script_lang_js_ = ({
8791
+ name: "ProfileMobile",
8792
+ props: {
8793
+ email: {
8794
+ type: String,
8795
+ required: true
8796
+ },
8797
+ balance: {
8798
+ type: [Number, String],
8799
+ default: ""
8800
+ },
8801
+ rate: {
8802
+ type: String,
8803
+ default: 'Базовый'
8804
+ },
8805
+ limitRemaining: {
8806
+ type: Number,
8807
+ default: 0
8808
+ },
8809
+ daysLeft: {
8810
+ type: String,
8811
+ defailt: ""
8812
+ },
8813
+ mode: {
8814
+ type: String,
8815
+ required: true
8816
+ },
8817
+ activeTabKey: {
8818
+ type: String,
8819
+ default: ""
8820
+ }
8821
+ },
8822
+ components: {
8823
+ SlideToggle: SlideToggle
8824
+ },
8825
+ data: function data() {
8826
+ return {
8827
+ profileDropDown: profileDropDown
8828
+ };
8829
+ },
8830
+ mounted: function mounted() {
8831
+ var _this = this;
8832
+
8833
+ var item = this.activeTabKey ? this.profileDropDown.find(function (el) {
8834
+ return el.key && el.key.includes(_this.activeTabKey);
8835
+ }) : null;
8836
+ if (item) this.$set(item, 'opened', true);
8837
+ },
8838
+ methods: {
8839
+ openOneCloseOthers: function openOneCloseOthers(id) {
8840
+ var _this2 = this;
8841
+
8842
+ var array = this.profileDropDown.filter(function (el) {
8843
+ return el.children;
8844
+ });
8845
+ array.forEach(function (el, idx) {
8846
+ if (id === idx) _this2.$set(el, 'opened', !el.opened);else _this2.$set(el, 'opened', false);
8847
+ });
8848
+ },
8849
+ showModal: function showModal(url) {
8850
+ var _this3 = this;
8851
+
8852
+ return _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
8853
+ return regeneratorRuntime.wrap(function _callee$(_context) {
8854
+ while (1) {
8855
+ switch (_context.prev = _context.next) {
8856
+ case 0:
8857
+ if (!window.location.href.includes(url)) {
8858
+ _context.next = 5;
8859
+ break;
8860
+ }
8861
+
8862
+ _this3.$emit("setIsReplenishModal", true);
8863
+
8864
+ _this3.setShowModal(true);
8865
+
8866
+ _context.next = 7;
8867
+ break;
8868
+
8869
+ case 5:
8870
+ _context.next = 7;
8871
+ return window.open(url + "&modal=show", "_blank");
8872
+
8873
+ case 7:
8874
+ case "end":
8875
+ return _context.stop();
8876
+ }
8877
+ }
8878
+ }, _callee);
8879
+ }))();
8880
+ }
8881
+ }
8882
+ });
8883
+ // CONCATENATED MODULE: ./src/components/Header/ProfileMobile.vue?vue&type=script&lang=js&
8884
+ /* harmony default export */ var Header_ProfileMobilevue_type_script_lang_js_ = (ProfileMobilevue_type_script_lang_js_);
8885
+ // EXTERNAL MODULE: ./src/components/Header/ProfileMobile.vue?vue&type=style&index=0&id=05876c4f&lang=scss&scoped=true&
8886
+ var ProfileMobilevue_type_style_index_0_id_05876c4f_lang_scss_scoped_true_ = __webpack_require__("fce9");
8887
+
8888
+ // CONCATENATED MODULE: ./src/components/Header/ProfileMobile.vue
8889
+
8890
+
8891
+
8892
+
8893
+
8894
+
8895
+ /* normalize component */
8896
+
8897
+ var ProfileMobile_component = normalizeComponent(
8898
+ Header_ProfileMobilevue_type_script_lang_js_,
8899
+ ProfileMobilevue_type_template_id_05876c4f_scoped_true_render,
8900
+ ProfileMobilevue_type_template_id_05876c4f_scoped_true_staticRenderFns,
8901
+ false,
8902
+ null,
8903
+ "05876c4f",
8904
+ null
8905
+
8906
+ )
8907
+
8908
+ /* harmony default export */ var ProfileMobile = (ProfileMobile_component.exports);
8909
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"23ef8cfe-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Header/Profile.vue?vue&type=template&id=2281a97e&
8910
+ var Profilevue_type_template_id_2281a97e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"profile",class:{ active: _vm.active }},[_c('div',{directives:[{name:"click-outside",rawName:"v-click-outside",value:(function () { _vm.active = false; }),expression:"() => { active = false; }"}]},[_c('div',{staticClass:"profile__inner"},[_c('div',{staticClass:"profile__item",on:{"click":function($event){_vm.active = !_vm.active}}},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.isAuthenticated),expression:"isAuthenticated"}],staticClass:"profile__item-link"},[_c('span',{staticClass:"desktop"},[_vm._v(_vm._s(_vm.email))]),_c('svg',{staticClass:"desktop arrow-svg",class:{ rotate: _vm.active },attrs:{"width":"18","height":"18","fill":"#25476AFF","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 16 16"}},[_c('path',{attrs:{"fill":"none","d":"M0 0h16v16H0z"}}),_c('path',{attrs:{"fill":"none","d":"M3 6.5L8 10l5-3.5","stroke":"#2C3E50","stroke-linecap":"round","stroke-linejoin":"round"}})])]),_c('button',{directives:[{name:"show",rawName:"v-show",value:(!_vm.isAuthenticated),expression:"!isAuthenticated"}],staticClass:"sign",on:{"click":function($event){$event.preventDefault();return _vm.goAuth.apply(null, arguments)}}},[_c('svg',{staticClass:"desktop",attrs:{"width":"18","height":"18","fill":"#25476AFF","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 16 16"}},[_c('path',{attrs:{"fill":"#fff","d":"M0 0h16v16H0z","stroke":"none"}}),_c('path',{attrs:{"d":"M8 10l2-2.054L8.077 6","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}}),_c('path',{attrs:{"d":"M6 4.1V2h8v12H6v-1.65M9 8H2","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}})]),_c('span',{staticClass:"sign_text"},[_vm._v("Вход")])])])]),_c('SlideToggle',{scopedSlots:_vm._u([{key:"default",fn:function(ref){
8911
+ var animationClass = ref.animationClass;
8912
+ return [(_vm.isAuthenticated)?_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.active),expression:"active"}],staticClass:"profile-menu",class:animationClass},[_c('div',{staticClass:"profile-menu__inner"},[_c('div',{staticClass:"profile-menu__items"},_vm._l((_vm.profileDropDown),function(elem,index){return _c('div',{key:index},[(elem[_vm.mode])?_c('a',{staticClass:"gray-text",class:elem.link
8913
+ ? 'profile-menu__balance-link'
8914
+ : 'profile-menu__links',attrs:{"href":elem[_vm.mode],"onclick":"`return false`"},on:{"click":function($event){return _vm.preventLink(elem.disabled, $event)}}},[_c('div',{class:{'rate-item': index === 0}},[_c('span',{directives:[{name:"show",rawName:"v-show",value:(index === 0),expression:"index === 0"}],staticClass:"rate"},[_vm._v(" Тариф "+_vm._s(_vm.rate)+" "),_c('svg',{attrs:{"width":"14","height":"10","viewBox":"0 0 14 10","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M1 5.44444L4.69231 9L13 1","stroke":"#007AFF","stroke-width":"2","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}})])]),_vm._v(" "+_vm._s(elem.name)+" "),_c('span',{directives:[{name:"show",rawName:"v-show",value:(index === 1),expression:"index === 1"}],staticClass:"balance"},[_vm._v(_vm._s(_vm.balance || 0)+" ₸")])]),_c('span',{directives:[{name:"show",rawName:"v-show",value:(elem.link),expression:"elem.link"}],staticClass:"profile-menu__balance",on:{"click":function($event){return _vm.showModal(elem[_vm.mode], elem.name)}}},[_vm._v(" "+_vm._s(elem.link)+" ")])]):_vm._e(),(elem.children)?_c('div',{staticClass:"gray-text profile-menu__item",on:{"click":function($event){return _vm.rotateItem(index)}}},[_c('div',{staticClass:"profile-menu__item__children",class:{ active: elem.opened }},[_vm._v(" "+_vm._s(elem.name)+" "),(elem.children.length > 0)?_c('span',[_c('svg',{class:{ rotated: elem.opened },attrs:{"width":"12","height":"8","viewBox":"0 0 12 8","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M1 1.5L6 6.5L11 1.5","stroke":"#69797D","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}})])]):_vm._e()]),_c('SlideToggle',{class:animationClass,scopedSlots:_vm._u([{key:"default",fn:function(ref){
8915
+ var animationClass = ref.animationClass;
8916
+ return [(elem.opened)?_c('div',[_vm._l((elem.children),function(child,idx){return [(child[_vm.mode])?_c('div',{key:idx + 'link',staticClass:"profile-menu__item__child",on:{"click":function($event){return _vm.handleClick(child[_vm.mode], child.name)}}},[_c('span',[_vm._v(" "+_vm._s(child.name)+" ")])]):_vm._e()]})],2):_vm._e()]}}],null,true)})],1):_vm._e()])}),0),_c('div',{staticClass:"exit",on:{"click":_vm.logout}},[_c('svg',{attrs:{"width":"18","height":"18","fill":"#25476AFF","xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 16 16"}},[_c('path',{attrs:{"d":"M11 10l2-2.054L11.077 6M10 11.9V14H2V2h8v1.65M12 8H5","stroke-miterlimit":"10","stroke-linecap":"round","stroke-linejoin":"round"}})]),_vm._v(" Выход ")])])]):_vm._e()]}}])})],1)])}
8917
+ var Profilevue_type_template_id_2281a97e_staticRenderFns = []
8918
+
8919
+
8920
+ // CONCATENATED MODULE: ./src/components/Header/Profile.vue?vue&type=template&id=2281a97e&
8921
+
8922
+ // EXTERNAL MODULE: ./node_modules/v-click-outside/dist/v-click-outside.umd.js
8923
+ var v_click_outside_umd = __webpack_require__("c28b");
8924
+ var v_click_outside_umd_default = /*#__PURE__*/__webpack_require__.n(v_click_outside_umd);
8925
+
8926
+ // 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/Header/Profile.vue?vue&type=script&lang=js&
8927
+
8928
+
8929
+
8930
+
8931
+
8932
+
8933
+
8934
+
8935
+
8936
+
8937
+
10392
8938
  //
10393
8939
  //
10394
8940
  //
@@ -10572,10 +9118,6 @@ var VerticalMobileToggle_component = normalizeComponent(
10572
9118
  return ["prod", "dev", "staging"].indexOf(value) !== -1;
10573
9119
  }
10574
9120
  },
10575
- profileDropDown: {
10576
- type: Array,
10577
- required: true
10578
- },
10579
9121
  isAuthenticated: {
10580
9122
  type: Boolean,
10581
9123
  default: false
@@ -10593,45 +9135,43 @@ var VerticalMobileToggle_component = normalizeComponent(
10593
9135
  type: String,
10594
9136
  default: "",
10595
9137
  required: true
9138
+ },
9139
+ rate: {
9140
+ type: String,
9141
+ default: ""
9142
+ },
9143
+ balance: {
9144
+ type: [Number, String],
9145
+ default: 0
10596
9146
  }
10597
9147
  },
10598
9148
  components: {
10599
- SlideToggle: SlideToggle,
10600
- MobileToggle: VerticalMobileToggle
9149
+ SlideToggle: SlideToggle
10601
9150
  },
10602
9151
  data: function data() {
10603
9152
  return {
9153
+ profileDropDown: profileDropDown,
10604
9154
  active: false,
10605
- listDropDown: [],
10606
9155
  chosenElem: {
10607
9156
  children: []
10608
9157
  }
10609
9158
  };
10610
9159
  },
10611
9160
  mounted: function mounted() {
10612
- if (this.profileDropDown && this.profileDropDown.length > 0) {
10613
- this.listDropDown = _toConsumableArray(this.profileDropDown);
10614
- }
9161
+ var _this = this;
10615
9162
 
10616
- if (this.activeTabKey === "counterparty" && window && window.innerWidth > 850) {
10617
- this.chosenElem = this.listDropDown.find(function (el) {
10618
- return el.name === "Контрагенты";
10619
- });
10620
- } else if (this.activeTabKey === "tenders" && window && window.innerWidth > 850) {
10621
- this.chosenElem = this.listDropDown.find(function (el) {
10622
- return el.name === "Тендеры";
10623
- });
10624
- } else if (this.activeTabKey === "work" && window && window.innerWidth > 850) {
10625
- this.chosenElem = this.listDropDown.find(function (el) {
10626
- return el.name === "Работа";
10627
- });
10628
- }
9163
+ var item = this.activeTabKey ? this.profileDropDown.find(function (el) {
9164
+ return el.key && el.key.includes(_this.activeTabKey);
9165
+ }) : null;
10629
9166
 
10630
- this.chosenElem.opened = true;
9167
+ if (item && window && window.innerWidth > 850) {
9168
+ this.chosenElem = item;
9169
+ this.chosenElem.opened = true;
9170
+ }
10631
9171
  },
10632
9172
  computed: {
10633
9173
  someMobileOpened: function someMobileOpened() {
10634
- return this.listDropDown.filter(function (el) {
9174
+ return this.profileDropDown.filter(function (el) {
10635
9175
  return el.opened && el.children.length > 0;
10636
9176
  });
10637
9177
  }
@@ -10649,7 +9189,7 @@ var VerticalMobileToggle_component = normalizeComponent(
10649
9189
  }
10650
9190
  },
10651
9191
  showModal: function showModal(url, name) {
10652
- var _this = this;
9192
+ var _this2 = this;
10653
9193
 
10654
9194
  return _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
10655
9195
  return regeneratorRuntime.wrap(function _callee$(_context) {
@@ -10666,9 +9206,9 @@ var VerticalMobileToggle_component = normalizeComponent(
10666
9206
  break;
10667
9207
  }
10668
9208
 
10669
- _this.$emit("setIsReplenishModal", true);
9209
+ _this2.$emit("setIsReplenishModal", true);
10670
9210
 
10671
- _this.setShowModal(true);
9211
+ _this2.setShowModal(true);
10672
9212
 
10673
9213
  _context.next = 8;
10674
9214
  break;
@@ -10687,13 +9227,21 @@ var VerticalMobileToggle_component = normalizeComponent(
10687
9227
  },
10688
9228
  handleClick: function handleClick(url, name) {
10689
9229
  if (!name.includes("Текущий")) {
10690
- window.open(url, "_self"); // this.active = false;
10691
- // if (this.chosenElem) this.chosenElem.opened = false;
9230
+ window.open(url, "_self");
10692
9231
  }
10693
9232
  },
10694
9233
  rotateItem: function rotateItem(index) {
10695
- this.chosenElem = this.listDropDown[index];
10696
- this.$set(this.listDropDown[index], "opened", !this.listDropDown[index].opened);
9234
+ var _this3 = this;
9235
+
9236
+ this.chosenElem = this.profileDropDown[index];
9237
+ var array = this.profileDropDown;
9238
+ array.forEach(function (el, idx) {
9239
+ if (index === idx) {
9240
+ console.log(!el.opened);
9241
+
9242
+ _this3.$set(el, 'opened', !el.opened);
9243
+ } else _this3.$set(el, 'opened', false);
9244
+ });
10697
9245
  },
10698
9246
  goAuth: function goAuth() {
10699
9247
  var fullPath = encodeURIComponent(window.location.toString());
@@ -10709,7 +9257,108 @@ var VerticalMobileToggle_component = normalizeComponent(
10709
9257
  // EXTERNAL MODULE: ./src/components/Header/Profile.vue?vue&type=style&index=0&lang=scss&
10710
9258
  var Profilevue_type_style_index_0_lang_scss_ = __webpack_require__("ee80");
10711
9259
 
10712
- // CONCATENATED MODULE: ./src/components/Header/Profile.vue
9260
+ // CONCATENATED MODULE: ./src/components/Header/Profile.vue
9261
+
9262
+
9263
+
9264
+
9265
+
9266
+
9267
+ /* normalize component */
9268
+
9269
+ var Profile_component = normalizeComponent(
9270
+ Header_Profilevue_type_script_lang_js_,
9271
+ Profilevue_type_template_id_2281a97e_render,
9272
+ Profilevue_type_template_id_2281a97e_staticRenderFns,
9273
+ false,
9274
+ null,
9275
+ null,
9276
+ null
9277
+
9278
+ )
9279
+
9280
+ /* harmony default export */ var Profile = (Profile_component.exports);
9281
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"23ef8cfe-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/transitions/VerticalMobileToggle.vue?vue&type=template&id=0eccf0ba&
9282
+ var VerticalMobileTogglevue_type_template_id_0eccf0ba_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('transition',{on:{"before-enter":_vm.beforeEnter,"after-enter":_vm.afterEnter,"before-leave":_vm.beforeLeave,"leave":_vm.leave,"after-leave":_vm.afterLeave}},[_vm._t("default",null,{"animationClass":'slideToggleAnimation',"compareNotificationClass":'compareNotification'})],2)}
9283
+ var VerticalMobileTogglevue_type_template_id_0eccf0ba_staticRenderFns = []
9284
+
9285
+
9286
+ // CONCATENATED MODULE: ./src/components/transitions/VerticalMobileToggle.vue?vue&type=template&id=0eccf0ba&
9287
+
9288
+ // 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/transitions/VerticalMobileToggle.vue?vue&type=script&lang=js&
9289
+
9290
+
9291
+
9292
+ //
9293
+ //
9294
+ //
9295
+ //
9296
+ //
9297
+ //
9298
+ //
9299
+ //
9300
+ //
9301
+ //
9302
+ //
9303
+ /* harmony default export */ var VerticalMobileTogglevue_type_script_lang_js_ = ({
9304
+ props: {
9305
+ zIndex: {
9306
+ type: Number,
9307
+ default: 0
9308
+ },
9309
+ top: {
9310
+ type: String,
9311
+ default: "0%"
9312
+ },
9313
+ overflow: {
9314
+ type: String,
9315
+ default: "initial"
9316
+ }
9317
+ },
9318
+ methods: {
9319
+ beforeEnter: function beforeEnter(el) {
9320
+ el.style.width = "0";
9321
+ el.style.overflowX = "hidden";
9322
+ el.style.overflowY = "hidden";
9323
+ el.style.position = "fixed";
9324
+ el.style.top = "0";
9325
+ el.style.right = "0";
9326
+ el.style.background = "#fff";
9327
+ },
9328
+ afterEnter: function afterEnter(el) {
9329
+ el.style.height = "100vh";
9330
+ el.style.width = "100vw";
9331
+ el.style.overflowX = "hidden";
9332
+ el.style.overflowY = "auto";
9333
+ el.style.position = "fixed";
9334
+ el.style.top = this.top;
9335
+ el.style.right = "0";
9336
+ el.style.background = "#fff";
9337
+ el.style.zIndex = (90 + this.zIndex).toString();
9338
+ },
9339
+ beforeLeave: function beforeLeave(el) {
9340
+ el.style.overflow = "hidden";
9341
+ el.style.width = el.scrollHeight + "px";
9342
+ el.scrollHeight;
9343
+ },
9344
+ leave: function leave(el) {
9345
+ el.style.width = "0";
9346
+ },
9347
+ afterLeave: function afterLeave(el) {
9348
+ el.style.position = "fixed";
9349
+ el.style.top = "0";
9350
+ el.style.right = "0";
9351
+ el.style.width = "auto";
9352
+ el.style.overflow = "initial";
9353
+ }
9354
+ }
9355
+ });
9356
+ // CONCATENATED MODULE: ./src/components/transitions/VerticalMobileToggle.vue?vue&type=script&lang=js&
9357
+ /* harmony default export */ var transitions_VerticalMobileTogglevue_type_script_lang_js_ = (VerticalMobileTogglevue_type_script_lang_js_);
9358
+ // EXTERNAL MODULE: ./src/components/transitions/VerticalMobileToggle.vue?vue&type=style&index=0&lang=css&
9359
+ var VerticalMobileTogglevue_type_style_index_0_lang_css_ = __webpack_require__("da9d");
9360
+
9361
+ // CONCATENATED MODULE: ./src/components/transitions/VerticalMobileToggle.vue
10713
9362
 
10714
9363
 
10715
9364
 
@@ -10718,10 +9367,10 @@ var Profilevue_type_style_index_0_lang_scss_ = __webpack_require__("ee80");
10718
9367
 
10719
9368
  /* normalize component */
10720
9369
 
10721
- var Profile_component = normalizeComponent(
10722
- Header_Profilevue_type_script_lang_js_,
10723
- Profilevue_type_template_id_67e27faa_render,
10724
- Profilevue_type_template_id_67e27faa_staticRenderFns,
9370
+ var VerticalMobileToggle_component = normalizeComponent(
9371
+ transitions_VerticalMobileTogglevue_type_script_lang_js_,
9372
+ VerticalMobileTogglevue_type_template_id_0eccf0ba_render,
9373
+ VerticalMobileTogglevue_type_template_id_0eccf0ba_staticRenderFns,
10725
9374
  false,
10726
9375
  null,
10727
9376
  null,
@@ -10729,7 +9378,7 @@ var Profile_component = normalizeComponent(
10729
9378
 
10730
9379
  )
10731
9380
 
10732
- /* harmony default export */ var Profile = (Profile_component.exports);
9381
+ /* harmony default export */ var VerticalMobileToggle = (VerticalMobileToggle_component.exports);
10733
9382
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"23ef8cfe-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Header/InfoHeader.vue?vue&type=template&id=1640a06a&scoped=true&
10734
9383
  var InfoHeadervue_type_template_id_1640a06a_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"info"},[_c('transition',{attrs:{"name":"fade"}},[(_vm.isOpenNotification)?_c('div',{staticClass:"info-notification"},[_c('div',{staticClass:"container"},[_c('div',{staticClass:"info-notification__wrapper"},[_c('div',{staticClass:"info-notification__content"},[_c('svg',{staticClass:"info-notification__info",attrs:{"id":"note-svg","width":"16","height":"16","viewBox":"0 0 16 16","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('circle',{attrs:{"cx":"8","cy":"8","r":"6","stroke":"white"}}),_c('path',{attrs:{"d":"M9.6613 11.1367L9.54952 11.5936C9.21418 11.726 8.94631 11.8267 8.74685 11.896C8.54716 11.9654 8.31514 12 8.05079 12C7.64483 12 7.32906 11.9006 7.10386 11.703C6.87865 11.5047 6.76601 11.2534 6.76601 10.9485C6.76601 10.8305 6.77418 10.7091 6.79117 10.5854C6.80831 10.4616 6.83556 10.3222 6.87284 10.1663L7.29192 8.68297C7.32921 8.54094 7.3609 8.40636 7.38628 8.27909C7.41202 8.15261 7.42442 8.03624 7.42442 7.93149C7.42442 7.74206 7.3852 7.60956 7.30712 7.53507C7.22904 7.46079 7.08005 7.42307 6.85886 7.42307C6.75052 7.42307 6.63917 7.44042 6.52567 7.47398C6.41167 7.50768 6.31423 7.54023 6.23242 7.57049L6.34449 7.11319C6.61902 7.00141 6.88144 6.90569 7.13246 6.82625C7.38348 6.74659 7.62066 6.70672 7.84501 6.70672C8.24818 6.70672 8.55928 6.80416 8.77775 6.99904C8.99622 7.19406 9.10542 7.44688 9.10542 7.75841C9.10542 7.82287 9.09825 7.93644 9.08283 8.09877C9.06777 8.26145 9.03974 8.41051 8.99887 8.5461L8.58158 10.0235C8.54738 10.1421 8.51662 10.2778 8.48988 10.4304C8.46227 10.5821 8.44908 10.6979 8.44908 10.7757C8.44908 10.9718 8.49282 11.1058 8.5805 11.177C8.66884 11.2482 8.82098 11.2836 9.03709 11.2836C9.13854 11.2836 9.25398 11.2656 9.38225 11.2302C9.51016 11.1949 9.60344 11.1638 9.6613 11.1367ZM9.76713 4.93424C9.76713 5.19164 9.67012 5.41147 9.47517 5.59223C9.28072 5.77363 9.04641 5.8644 8.7723 5.8644C8.49733 5.8644 8.26245 5.77363 8.06577 5.59223C7.86946 5.4114 7.77109 5.19164 7.77109 4.93424C7.77109 4.67734 7.86946 4.45716 8.06577 4.27411C8.26209 4.09134 8.4974 4 8.7723 4C9.04634 4 9.28072 4.09156 9.47517 4.27411C9.67026 4.45716 9.76713 4.67742 9.76713 4.93424Z","fill":"white"}})]),_c('span',[_vm._v(_vm._s(_vm.systemMessage))])]),_c('div',{staticClass:"info-notification__close",on:{"click":_vm.closeNotification}},[_c('svg',{attrs:{"id":"close-notification","width":"16","height":"16","viewBox":"0 0 16 16","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M2.99902 2.99951L12.9997 13.0002","stroke":"white","stroke-linecap":"round"}}),_c('path',{attrs:{"d":"M13 2.99951L2.99934 13.0002","stroke":"white","stroke-linecap":"round"}})])])])])]):_vm._e()]),(!_vm.isOpenNotification)?_c('div',{staticClass:"info-header"},[_c('div',{staticClass:"container"},[_c('div',{staticClass:"info-header__list"},[_c('div',{staticClass:"info-header__item"},[(_vm.currencies)?_vm._l((_vm.currencies),function(currency,index){return _c('div',{key:index,staticClass:"info-header__item-elem"},[(currency.currency === 'USD')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('g',{attrs:{"clip-path":"url(#clip0_179_1917)"}},[_c('path',{attrs:{"d":"M26.4 0.5H-4V16.5H26.4V0.5Z","fill":"white"}}),_c('path',{attrs:{"d":"M26.4 0.5H-4V1.732H26.4V0.5Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 2.95996H-4V4.19196H26.4V2.95996Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 5.42407H-4V6.65607H26.4V5.42407Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 7.88403H-4V9.11603H26.4V7.88403Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 10.3479H-4V11.5799H26.4V10.3479Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 12.8081H-4V14.0401H26.4V12.8081Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M26.4 15.2681H-4V16.5001H26.4V15.2681Z","fill":"#B22234"}}),_c('path',{attrs:{"d":"M8.16 0.5H-4V9.116H8.16V0.5Z","fill":"#3C3B6E"}}),_c('path',{attrs:{"d":"M0.603882 1.20011L0.891882 1.40811L0.783882 1.75211L1.07188 1.54011L1.35988 1.75211L1.25188 1.40811L1.53988 1.20011H1.18388L1.07188 0.860107L0.959882 1.20011H0.603882Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.61987 1.20011L2.90787 1.40811L2.79987 1.75211L3.08787 1.54011L3.37587 1.75211L3.26787 1.40811L3.55587 1.20011H3.19987L3.08787 0.860107L2.97587 1.20011H2.61987Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.63599 1.20011L4.92399 1.40811L4.81599 1.75211L5.10399 1.54011L5.39199 1.75211L5.28399 1.40811L5.57199 1.20011H5.21599L5.10399 0.860107L4.99199 1.20011H4.63599Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.65198 1.20011L6.93998 1.40811L6.83198 1.75211L7.11998 1.54011L7.40798 1.75211L7.29998 1.40811L7.58798 1.20011H7.23198L7.11998 0.860107L7.00798 1.20011H6.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M-0.403931 2.06412L-0.115931 2.27212L-0.223931 2.61612L0.0640694 2.40412L0.352069 2.61612L0.244069 2.27212L0.532069 2.06412H0.176069L0.0640694 1.72412L-0.0479305 2.06412H-0.403931Z","fill":"white"}}),_c('path',{attrs:{"d":"M1.61206 2.06412L1.90006 2.27212L1.79206 2.61612L2.08006 2.40412L2.36806 2.61612L2.26006 2.27212L2.54806 2.06412H2.19206L2.08006 1.72412L1.96806 2.06412H1.61206Z","fill":"white"}}),_c('path',{attrs:{"d":"M3.62817 2.06412L3.91617 2.27212L3.80817 2.61612L4.09617 2.40412L4.38417 2.61612L4.27617 2.27212L4.56417 2.06412H4.20817L4.09617 1.72412L3.98417 2.06412H3.62817Z","fill":"white"}}),_c('path',{attrs:{"d":"M5.64417 2.06412L5.93216 2.27212L5.82416 2.61612L6.11216 2.40412L6.40016 2.61612L6.29216 2.27212L6.58016 2.06412H6.22416L6.11216 1.72412L6.00016 2.06412H5.64417Z","fill":"white"}}),_c('path',{attrs:{"d":"M0.603882 2.92789L0.891882 3.13589L0.783882 3.47989L1.07188 3.26789L1.35988 3.47989L1.25188 3.13589L1.53988 2.92789H1.18388L1.07188 2.58789L0.959882 2.92789H0.603882Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.61987 2.92789L2.90787 3.13589L2.79987 3.47989L3.08787 3.26789L3.37587 3.47989L3.26787 3.13589L3.55587 2.92789H3.19987L3.08787 2.58789L2.97587 2.92789H2.61987Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.63599 2.92789L4.92399 3.13589L4.81599 3.47989L5.10399 3.26789L5.39199 3.47989L5.28399 3.13589L5.57199 2.92789H5.21599L5.10399 2.58789L4.99199 2.92789H4.63599Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.65198 2.92789L6.93998 3.13589L6.83198 3.47989L7.11998 3.26789L7.40798 3.47989L7.29998 3.13589L7.58798 2.92789H7.23198L7.11998 2.58789L7.00798 2.92789H6.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M-0.380127 3.7959L-0.0881271 4.0039L-0.200127 4.3439L0.0878731 4.1359L0.379873 4.3439L0.267873 4.0039L0.555873 3.7959H0.199873L0.0878731 3.4519L-0.0201271 3.7959H-0.380127Z","fill":"white"}}),_c('path',{attrs:{"d":"M1.63599 3.7959L1.92399 4.0039L1.81599 4.3439L2.10399 4.1359L2.39599 4.3439L2.28399 4.0039L2.57199 3.7959H2.21599L2.10399 3.4519L1.99599 3.7959H1.63599Z","fill":"white"}}),_c('path',{attrs:{"d":"M3.65198 3.7959L3.94398 4.0039L3.83198 4.3439L4.11998 4.1359L4.41198 4.3439L4.29998 4.0039L4.58798 3.7959H4.23198L4.11998 3.4519L4.01198 3.7959H3.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M5.66797 3.7959L5.95597 4.0039L5.84797 4.3439L6.13597 4.1359L6.42797 4.3439L6.31597 4.0039L6.60397 3.7959H6.24797L6.13597 3.4519L6.02797 3.7959H5.66797Z","fill":"white"}}),_c('path',{attrs:{"d":"M0.635986 4.65201L0.923986 4.86001L0.811986 5.20401L1.10399 4.99201L1.39199 5.20401L1.27999 4.86001L1.57199 4.65201H1.21199L1.10399 4.31201L0.991986 4.65201H0.635986Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.65198 4.65201L2.93998 4.86001L2.82798 5.20401L3.11998 4.99201L3.40798 5.20401L3.29598 4.86001L3.58798 4.65201H3.22798L3.11998 4.31201L3.00798 4.65201H2.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.66406 4.65201L4.95606 4.86001L4.84406 5.20401L5.13606 4.99201L5.42406 5.20401L5.31206 4.86001L5.60406 4.65201H5.24406L5.13606 4.31201L5.02406 4.65201H4.66406Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.40002 4.84L6.69202 5.048L6.58002 5.392L6.87202 5.18L7.16002 5.392L7.04802 5.048L7.34002 4.84H6.98002L6.87202 4.5L6.76002 4.84H6.40002Z","fill":"white"}}),_c('path',{attrs:{"d":"M0.651978 6.35196L0.943977 6.55996L0.831978 6.90396L1.11998 6.69196L1.41198 6.90396L1.29998 6.55996L1.58798 6.35196H1.23198L1.11998 6.01196L1.01198 6.35196H0.651978Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.66797 6.35196L2.95997 6.55996L2.84797 6.90396L3.13597 6.69196L3.42797 6.90396L3.31597 6.55996L3.60797 6.35196H3.24797L3.13597 6.01196L3.02797 6.35196H2.66797Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.68396 6.35196L4.97596 6.55996L4.86396 6.90396L5.15196 6.69196L5.44396 6.90396L5.33196 6.55996L5.61996 6.35196H5.26396L5.15196 6.01196L5.04396 6.35196H4.68396Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.69995 6.35196L6.99195 6.55996L6.87995 6.90396L7.16795 6.69196L7.45995 6.90396L7.34795 6.55996L7.63595 6.35196H7.27995L7.16795 6.01196L7.05995 6.35196H6.69995Z","fill":"white"}}),_c('path',{attrs:{"d":"M0.628174 8.07193L0.916174 8.28393L0.808174 8.62393L1.09617 8.41193L1.38817 8.62393L1.27617 8.28393L1.56417 8.07193H1.20817L1.09617 7.73193L0.988174 8.07193H0.628174Z","fill":"white"}}),_c('path',{attrs:{"d":"M2.64417 8.07193L2.93616 8.28393L2.82416 8.62393L3.11216 8.41193L3.40416 8.62393L3.29216 8.28393L3.58016 8.07193H3.22416L3.11216 7.73193L3.00416 8.07193H2.64417Z","fill":"white"}}),_c('path',{attrs:{"d":"M4.66016 8.07193L4.95216 8.28393L4.84016 8.62393L5.12816 8.41193L5.42016 8.62393L5.30816 8.28393L5.59616 8.07193H5.24016L5.12816 7.73193L5.02016 8.07193H4.66016Z","fill":"white"}}),_c('path',{attrs:{"d":"M6.67615 8.07193L6.96415 8.28393L6.85615 8.62393L7.14415 8.41193L7.43615 8.62393L7.32415 8.28393L7.61215 8.07193H7.25615L7.14415 7.73193L7.03615 8.07193H6.67615Z","fill":"white"}}),_c('path',{attrs:{"d":"M-0.376221 5.4921L-0.0842209 5.7041L-0.196221 6.0441L0.095779 5.8321L0.383779 6.0441L0.275779 5.7041L0.563779 5.4921H0.203779L0.095779 5.1521L-0.0162209 5.4921H-0.376221Z","fill":"white"}}),_c('path',{attrs:{"d":"M1.64417 5.4921L1.93217 5.7041L1.82017 6.0441L2.11217 5.8321L2.40017 6.0441L2.28817 5.7041L2.58017 5.4921H2.22017L2.11217 5.1521L2.00017 5.4921H1.64417Z","fill":"white"}}),_c('path',{attrs:{"d":"M3.65588 5.4921L3.94788 5.7041L3.83588 6.0441L4.12788 5.8321L4.41588 6.0441L4.30788 5.7041L4.59588 5.4921H4.23588L4.12788 5.1521L4.01588 5.4921H3.65588Z","fill":"white"}}),_c('path',{attrs:{"d":"M5.67188 5.4921L5.96387 5.7041L5.85187 6.0441L6.14387 5.8321L6.43187 6.0441L6.31987 5.7041L6.61187 5.4921H6.25187L6.14387 5.1521L6.03187 5.4921H5.67188Z","fill":"white"}}),_c('path',{attrs:{"d":"M-0.380127 7.21207L-0.0881271 7.42007L-0.200127 7.76007L0.0878731 7.55207L0.379873 7.76007L0.267873 7.42007L0.555873 7.21207H0.199873L0.0878731 6.87207L-0.0201271 7.21207H-0.380127Z","fill":"white"}}),_c('path',{attrs:{"d":"M1.63599 7.21207L1.92399 7.42007L1.81599 7.76007L2.10399 7.55207L2.39599 7.76007L2.28399 7.42007L2.57199 7.21207H2.21599L2.10399 6.87207L1.99599 7.21207H1.63599Z","fill":"white"}}),_c('path',{attrs:{"d":"M3.65198 7.21207L3.94398 7.42007L3.83198 7.76007L4.11998 7.55207L4.41198 7.76007L4.29998 7.42007L4.58798 7.21207H4.23198L4.11998 6.87207L4.01198 7.21207H3.65198Z","fill":"white"}}),_c('path',{attrs:{"d":"M5.66797 7.21207L5.95597 7.42007L5.84797 7.76007L6.13597 7.55207L6.42797 7.76007L6.31597 7.42007L6.60397 7.21207H6.24797L6.13597 6.87207L6.02797 7.21207H5.66797Z","fill":"white"}})]),_c('defs',[_c('clipPath',{attrs:{"id":"clip0_179_1917"}},[_c('path',{attrs:{"d":"M0 2.5C0 1.39543 0.895431 0.5 2 0.5H14C15.1046 0.5 16 1.39543 16 2.5V14.5C16 15.6046 15.1046 16.5 14 16.5H2C0.895431 16.5 0 15.6046 0 14.5V2.5Z","fill":"white"}})])])]):_vm._e(),(currency.currency === 'EUR')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M0 2.5C0 1.39543 0.895431 0.5 2 0.5H14C15.1046 0.5 16 1.39543 16 2.5V14.5C16 15.6046 15.1046 16.5 14 16.5H2C0.895431 16.5 0 15.6046 0 14.5V2.5Z","fill":"#314199"}}),_c('path',{attrs:{"d":"M7.99479 12.5967L8.18355 13.1573L8.75857 13.1568L8.35044 13.4667L8.46265 14.0686L7.99479 13.7271L7.52542 14.0594L7.639 13.4667L7.23511 13.1549H7.80958L7.99479 12.5967Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M7.99479 2.85718L8.18355 3.41796L8.75857 3.41727L8.35044 3.72735L8.46265 4.32913L7.99479 3.98765L7.52542 4.31994L7.639 3.72735L7.23511 3.41535H7.80958L7.99479 2.85718Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M10.333 3.48364L10.5218 4.04428L11.097 4.04373L10.6888 4.35368L10.8009 4.95546L10.333 4.61411L9.86366 4.94641L9.97739 4.35368L9.57349 4.04181H10.148L10.333 3.48364Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M5.54397 3.48364L5.73273 4.04428L6.3079 4.04373L5.89976 4.35368L6.01184 4.95546L5.54397 4.61411L5.0746 4.94641L5.18832 4.35368L4.78442 4.04181H5.35877L5.54397 3.48364Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M10.333 11.9387L10.5218 12.4995L11.097 12.4989L10.6888 12.8089L10.8009 13.4107L10.333 13.0693L9.86366 13.4016L9.97739 12.8089L9.57349 12.4969H10.148L10.333 11.9387Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M5.54397 11.9387L5.73273 12.4995L6.3079 12.4989L5.89976 12.8089L6.01184 13.4107L5.54397 13.0693L5.0746 13.4016L5.18832 12.8089L4.78442 12.4969H5.35877L5.54397 11.9387Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M3.75309 5.32153L3.94185 5.88231L4.51688 5.88162L4.10888 6.1917L4.22082 6.79349L3.75309 6.45214L3.28372 6.7843L3.39731 6.1917L2.99341 5.8797H3.56789L3.75309 5.32153Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M12.1823 5.32153L12.3711 5.88231L12.9462 5.88162L12.5381 6.1917L12.6502 6.79349L12.1823 6.45214L11.7129 6.7843L11.8265 6.1917L11.4226 5.8797H11.9971L12.1823 5.32153Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M3.75309 10.1826L3.94185 10.7434L4.51688 10.7427L4.10888 11.0528L4.22082 11.6546L3.75309 11.3131L3.28372 11.6454L3.39731 11.0528L2.99341 10.7408H3.56789L3.75309 10.1826Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M12.1823 10.1826L12.3711 10.7434L12.9462 10.7427L12.5381 11.0528L12.6502 11.6546L12.1823 11.3131L11.7129 11.6454L11.8265 11.0528L11.4226 10.7408H11.9971L12.1823 10.1826Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M3.19682 7.73389L3.38558 8.29466L3.96074 8.29398L3.55261 8.60406L3.66469 9.20584L3.19682 8.86436L2.72745 9.19665L2.84103 8.60406L2.43713 8.29206H3.01161L3.19682 7.73389Z","fill":"#F8EC26"}}),_c('path',{attrs:{"d":"M12.799 7.73389L12.9877 8.29466L13.5629 8.29398L13.1548 8.60406L13.2668 9.20584L12.799 8.86436L12.3296 9.19665L12.4433 8.60406L12.0394 8.29206H12.6138L12.799 7.73389Z","fill":"#F8EC26"}})]):_vm._e(),(currency.currency === 'RUB')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('g',{attrs:{"clip-path":"url(#clip0_179_2012)"}},[_c('path',{attrs:{"d":"M0 0.5C0 -0.60457 0.895431 -1.5 2 -1.5H18C19.1046 -1.5 20 -0.604569 20 0.5V5.5H0V0.5Z","fill":"#F0F0F0"}}),_c('rect',{attrs:{"y":"5.5","width":"20","height":"7","fill":"#0039A6"}}),_c('path',{attrs:{"d":"M0 11.5H20V16.5C20 17.6046 19.1046 18.5 18 18.5H2C0.895431 18.5 0 17.6046 0 16.5V11.5Z","fill":"#D52B1E"}})]),_c('defs',[_c('clipPath',{attrs:{"id":"clip0_179_2012"}},[_c('rect',{attrs:{"y":"0.5","width":"16","height":"16","rx":"2","fill":"white"}})])])]):_vm._e(),(currency.currency === 'CNY')?_c('svg',{attrs:{"width":"16","height":"16","viewBox":"0 0 16 16","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M0 2C0 0.895431 0.895431 0 2 0H14C15.1046 0 16 0.895431 16 2V14C16 15.1046 15.1046 16 14 16H2C0.895431 16 0 15.1046 0 14V2Z","fill":"#DE2910"}}),_c('path',{attrs:{"d":"M4.00115 1.60043L5.41155 5.94203L1.71875 3.25883H6.28355L2.59075 5.94203L4.00115 1.60043Z","fill":"#FFDE00"}}),_c('path',{attrs:{"d":"M7.3125 2.01103L8.3117 0.863831L8.1781 2.37983L7.3957 1.07503L8.7957 1.67023L7.3125 2.01103Z","fill":"#FFDE00"}}),_c('path',{attrs:{"d":"M8.80803 3.31335L10.1744 2.64375L9.46323 3.98855L9.24803 2.48215L10.3072 3.57415L8.80803 3.31335Z","fill":"#FFDE00"}}),_c('path',{attrs:{"d":"M8.82968 5.38077L10.3497 5.32637L9.15208 6.26477L9.56968 4.80157L10.0913 6.23037L8.82968 5.38077Z","fill":"#FFDE00"}}),_c('path',{attrs:{"d":"M7.3758 6.6997L8.7998 7.2365L7.3326 7.6397L8.283 6.4509L8.2118 7.9709L7.3758 6.6997Z","fill":"#FFDE00"}})]):_vm._e(),_c('div',{staticClass:"info-header__inner-item"},[_c('span',{staticClass:"info-header__result"},[_vm._v(_vm._s(currency.sell))]),(currency.sell_state === 'DOWN')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M8 12.5249L12.3301 4.52507H3.66987L8 12.5249Z","fill":"#FF2E43"}})]):_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M8 4.47461L12.3301 12.4702H3.66987L8 4.47461Z","fill":"#00B92D"}})])]),_c('div',{staticClass:"info-header__inner-item"},[_c('span',{staticClass:"info-header__result"},[_vm._v(_vm._s(currency.buy))]),(currency.buy_state === 'DOWN')?_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M8 12.5249L12.3301 4.52507H3.66987L8 12.5249Z","fill":"#FF2E43"}})]):_c('svg',{attrs:{"width":"16","height":"17","viewBox":"0 0 16 17","fill":"none","xmlns":"http://www.w3.org/2000/svg"}},[_c('path',{attrs:{"d":"M8 4.47461L12.3301 12.4702H3.66987L8 4.47461Z","fill":"#00B92D"}})])])])}):_vm._e()],2),(_vm.isAuthenticated)?_c('div',{staticClass:"info-header__item"},[_c('div',{staticClass:"info-header__item-elem"},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.requestCount === 0 || _vm.requestCount),expression:"requestCount === 0 || requestCount"}],staticClass:"info-header__inner-item"},[_c('span',{staticClass:"info-header__title"},[_vm._v("Суточный лимит запросов")]),_c('span',{staticClass:"info-header__result info-header__result_circled"},[_vm._v(_vm._s(_vm.requestCount))])]),_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.daysRemaining === 0 || _vm.daysRemaining),expression:"daysRemaining === 0 || daysRemaining"}],staticClass:"info-header__inner-item"},[_c('span',{staticClass:"info-header__title"},[_vm._v("остаток дней")]),_c('span',{staticClass:"info-header__result info-header__result_circled"},[_vm._v(_vm._s(_vm.daysRemaining))])])])]):_vm._e()])])]):_vm._e()],1)}
10735
9384
  var InfoHeadervue_type_template_id_1640a06a_scoped_true_staticRenderFns = []
@@ -11241,6 +9890,189 @@ var InfoHeader_component = normalizeComponent(
11241
9890
  //
11242
9891
  //
11243
9892
  //
9893
+ //
9894
+ //
9895
+ //
9896
+ //
9897
+ //
9898
+ //
9899
+ //
9900
+ //
9901
+ //
9902
+ //
9903
+ //
9904
+ //
9905
+ //
9906
+ //
9907
+ //
9908
+ //
9909
+ //
9910
+ //
9911
+ //
9912
+ //
9913
+ //
9914
+ //
9915
+ //
9916
+ //
9917
+ //
9918
+ //
9919
+ //
9920
+ //
9921
+ //
9922
+ //
9923
+ //
9924
+ //
9925
+ //
9926
+ //
9927
+ //
9928
+ //
9929
+ //
9930
+ //
9931
+ //
9932
+ //
9933
+ //
9934
+ //
9935
+ //
9936
+ //
9937
+ //
9938
+ //
9939
+ //
9940
+ //
9941
+ //
9942
+ //
9943
+ //
9944
+ //
9945
+ //
9946
+ //
9947
+ //
9948
+ //
9949
+ //
9950
+ //
9951
+ //
9952
+ //
9953
+ //
9954
+ //
9955
+ //
9956
+ //
9957
+ //
9958
+ //
9959
+ //
9960
+ //
9961
+ //
9962
+ //
9963
+ //
9964
+ //
9965
+ //
9966
+ //
9967
+ //
9968
+ //
9969
+ //
9970
+ //
9971
+ //
9972
+ //
9973
+ //
9974
+ //
9975
+ //
9976
+ //
9977
+ //
9978
+ //
9979
+ //
9980
+ //
9981
+ //
9982
+ //
9983
+ //
9984
+ //
9985
+ //
9986
+ //
9987
+ //
9988
+ //
9989
+ //
9990
+ //
9991
+ //
9992
+ //
9993
+ //
9994
+ //
9995
+ //
9996
+ //
9997
+ //
9998
+ //
9999
+ //
10000
+ //
10001
+ //
10002
+ //
10003
+ //
10004
+ //
10005
+ //
10006
+ //
10007
+ //
10008
+ //
10009
+ //
10010
+ //
10011
+ //
10012
+ //
10013
+ //
10014
+ //
10015
+ //
10016
+ //
10017
+ //
10018
+ //
10019
+ //
10020
+ //
10021
+ //
10022
+ //
10023
+ //
10024
+ //
10025
+ //
10026
+ //
10027
+ //
10028
+ //
10029
+ //
10030
+ //
10031
+ //
10032
+ //
10033
+ //
10034
+ //
10035
+ //
10036
+ //
10037
+ //
10038
+ //
10039
+ //
10040
+ //
10041
+ //
10042
+ //
10043
+ //
10044
+ //
10045
+ //
10046
+ //
10047
+ //
10048
+ //
10049
+ //
10050
+ //
10051
+ //
10052
+ //
10053
+ //
10054
+ //
10055
+ //
10056
+ //
10057
+ //
10058
+ //
10059
+ //
10060
+ //
10061
+ //
10062
+ //
10063
+ //
10064
+ //
10065
+ //
10066
+ //
10067
+ //
10068
+ //
10069
+ //
10070
+ //
10071
+ //
10072
+ //
10073
+ //
10074
+ //
10075
+ //
11244
10076
 
11245
10077
 
11246
10078
 
@@ -11249,9 +10081,16 @@ var InfoHeader_component = normalizeComponent(
11249
10081
  components: {
11250
10082
  InfoHeader: InfoHeader,
11251
10083
  Profile: Profile,
11252
- MobileToggle: VerticalMobileToggle
10084
+ MobileToggle: VerticalMobileToggle,
10085
+ ProfileMobile: ProfileMobile
11253
10086
  },
11254
10087
  props: {
10088
+ rate: {
10089
+ type: String,
10090
+ validator: function validator(value) {
10091
+ return ['basic', 'basic_plus', 'adata_pro', 'adata', 'vip'].indexOf(value) !== -1;
10092
+ }
10093
+ },
11255
10094
  mode: {
11256
10095
  type: String,
11257
10096
  required: true,
@@ -11304,7 +10143,14 @@ var InfoHeader_component = normalizeComponent(
11304
10143
  },
11305
10144
  data: function data() {
11306
10145
  return {
11307
- profileDropDown: profileDropDown,
10146
+ isActiveMenu: false,
10147
+ rateCodes: {
10148
+ basic: 'Базовый',
10149
+ basic_plus: 'Базовый+',
10150
+ adata: 'Adata',
10151
+ adata_pro: 'Adata Pro',
10152
+ vip: 'VIP'
10153
+ },
11308
10154
  main: {
11309
10155
  dev: "https://adtdev.kz",
11310
10156
  prod: "https://adata.kz",
@@ -11358,15 +10204,16 @@ var InfoHeader_component = normalizeComponent(
11358
10204
  this.fetchCurrencies();
11359
10205
  },
11360
10206
  mounted: function mounted() {
11361
- this.setBalance(this.balance);
11362
10207
  this.notificationShow();
11363
10208
  },
11364
- watch: {
11365
- balance: function balance(newBalance) {
11366
- this.setBalance(newBalance);
11367
- }
11368
- },
11369
10209
  methods: {
10210
+ goAuth: function goAuth() {
10211
+ var fullPath = encodeURIComponent(window.location.toString());
10212
+
10213
+ if (window) {
10214
+ window.location.href = "".concat(this.loginUrl, "?url=").concat(fullPath);
10215
+ }
10216
+ },
11370
10217
  fetchNotification: function fetchNotification() {
11371
10218
  var _this = this;
11372
10219
 
@@ -11514,14 +10361,10 @@ var InfoHeader_component = normalizeComponent(
11514
10361
  this.isOpenNotification = !option;
11515
10362
  },
11516
10363
  changeValue: function changeValue() {
10364
+ this.isActiveMenu = false;
11517
10365
  this.isOpen = !this.isOpen;
11518
10366
  this.$emit("menuOpen", this.isOpen);
11519
10367
  },
11520
- setBalance: function setBalance(balance) {
11521
- if (balance !== 0) {
11522
- this.profileDropDown[2].name = "Текущий баланс: " + this.thousandSeparator(balance) + " ₸";
11523
- }
11524
- },
11525
10368
  thousandSeparator: function thousandSeparator(val) {
11526
10369
  return val ? val.toString().replace(/\B(?=(\d{3})+(?!\d))/g, " ") : "";
11527
10370
  },
@@ -11558,8 +10401,8 @@ var Headervue_type_style_index_0_lang_scss_ = __webpack_require__("52f3");
11558
10401
 
11559
10402
  var Header_component = normalizeComponent(
11560
10403
  Header_Headervue_type_script_lang_js_,
11561
- Headervue_type_template_id_d0150058_render,
11562
- Headervue_type_template_id_d0150058_staticRenderFns,
10404
+ Headervue_type_template_id_b2e7b93e_render,
10405
+ Headervue_type_template_id_b2e7b93e_staticRenderFns,
11563
10406
  false,
11564
10407
  null,
11565
10408
  null,
@@ -11975,6 +10818,9 @@ var es_regexp_dot_all = __webpack_require__("c607");
11975
10818
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.sticky.js
11976
10819
  var es_regexp_sticky = __webpack_require__("2c3e");
11977
10820
 
10821
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.test.js
10822
+ var es_regexp_test = __webpack_require__("00b4");
10823
+
11978
10824
  // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"23ef8cfe-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/Loader/Loader.vue?vue&type=template&id=25a1e885&scoped=true&
11979
10825
  var Loadervue_type_template_id_25a1e885_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"loader",class:{
11980
10826
  'loader--global': _vm.global,
@@ -12497,64 +11343,6 @@ Object.keys(Components).forEach(function (name) {
12497
11343
 
12498
11344
 
12499
11345
 
12500
- /***/ }),
12501
-
12502
- /***/ "fb6a":
12503
- /***/ (function(module, exports, __webpack_require__) {
12504
-
12505
- "use strict";
12506
-
12507
- var $ = __webpack_require__("23e7");
12508
- var global = __webpack_require__("da84");
12509
- var isArray = __webpack_require__("e8b5");
12510
- var isConstructor = __webpack_require__("68ee");
12511
- var isObject = __webpack_require__("861d");
12512
- var toAbsoluteIndex = __webpack_require__("23cb");
12513
- var lengthOfArrayLike = __webpack_require__("07fa");
12514
- var toIndexedObject = __webpack_require__("fc6a");
12515
- var createProperty = __webpack_require__("8418");
12516
- var wellKnownSymbol = __webpack_require__("b622");
12517
- var arrayMethodHasSpeciesSupport = __webpack_require__("1dde");
12518
- var un$Slice = __webpack_require__("f36a");
12519
-
12520
- var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');
12521
-
12522
- var SPECIES = wellKnownSymbol('species');
12523
- var Array = global.Array;
12524
- var max = Math.max;
12525
-
12526
- // `Array.prototype.slice` method
12527
- // https://tc39.es/ecma262/#sec-array.prototype.slice
12528
- // fallback for not array-like ES3 strings and DOM objects
12529
- $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
12530
- slice: function slice(start, end) {
12531
- var O = toIndexedObject(this);
12532
- var length = lengthOfArrayLike(O);
12533
- var k = toAbsoluteIndex(start, length);
12534
- var fin = toAbsoluteIndex(end === undefined ? length : end, length);
12535
- // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible
12536
- var Constructor, result, n;
12537
- if (isArray(O)) {
12538
- Constructor = O.constructor;
12539
- // cross-realm fallback
12540
- if (isConstructor(Constructor) && (Constructor === Array || isArray(Constructor.prototype))) {
12541
- Constructor = undefined;
12542
- } else if (isObject(Constructor)) {
12543
- Constructor = Constructor[SPECIES];
12544
- if (Constructor === null) Constructor = undefined;
12545
- }
12546
- if (Constructor === Array || Constructor === undefined) {
12547
- return un$Slice(O, k, fin);
12548
- }
12549
- }
12550
- result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0));
12551
- for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);
12552
- result.length = n;
12553
- return result;
12554
- }
12555
- });
12556
-
12557
-
12558
11346
  /***/ }),
12559
11347
 
12560
11348
  /***/ "fc6a":
@@ -12586,6 +11374,17 @@ module.exports = fails(function () {
12586
11374
  });
12587
11375
 
12588
11376
 
11377
+ /***/ }),
11378
+
11379
+ /***/ "fce9":
11380
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
11381
+
11382
+ "use strict";
11383
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_ProfileMobile_vue_vue_type_style_index_0_id_05876c4f_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("6eb5");
11384
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_ProfileMobile_vue_vue_type_style_index_0_id_05876c4f_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_9_oneOf_1_0_node_modules_vue_cli_service_node_modules_css_loader_dist_cjs_js_ref_9_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_9_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_9_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_ProfileMobile_vue_vue_type_style_index_0_id_05876c4f_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__);
11385
+ /* unused harmony reexport * */
11386
+
11387
+
12589
11388
  /***/ }),
12590
11389
 
12591
11390
  /***/ "fdbc":