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.
@@ -203,36 +203,6 @@ module.exports = function (fn, that) {
203
203
  };
204
204
 
205
205
 
206
- /***/ }),
207
-
208
- /***/ "057f":
209
- /***/ (function(module, exports, __webpack_require__) {
210
-
211
- /* eslint-disable es/no-object-getownpropertynames -- safe */
212
- var classof = __webpack_require__("c6b6");
213
- var toIndexedObject = __webpack_require__("fc6a");
214
- var $getOwnPropertyNames = __webpack_require__("241c").f;
215
- var arraySlice = __webpack_require__("4dae");
216
-
217
- var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames
218
- ? Object.getOwnPropertyNames(window) : [];
219
-
220
- var getWindowNames = function (it) {
221
- try {
222
- return $getOwnPropertyNames(it);
223
- } catch (error) {
224
- return arraySlice(windowNames);
225
- }
226
- };
227
-
228
- // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
229
- module.exports.f = function getOwnPropertyNames(it) {
230
- return windowNames && classof(it) == 'Window'
231
- ? getWindowNames(it)
232
- : $getOwnPropertyNames(toIndexedObject(it));
233
- };
234
-
235
-
236
206
  /***/ }),
237
207
 
238
208
  /***/ "06cf":
@@ -1427,44 +1397,6 @@ module.exports = function (argument) {
1427
1397
  };
1428
1398
 
1429
1399
 
1430
- /***/ }),
1431
-
1432
- /***/ "3ca3":
1433
- /***/ (function(module, exports, __webpack_require__) {
1434
-
1435
- "use strict";
1436
-
1437
- var charAt = __webpack_require__("6547").charAt;
1438
- var toString = __webpack_require__("577e");
1439
- var InternalStateModule = __webpack_require__("69f3");
1440
- var defineIterator = __webpack_require__("7dd0");
1441
-
1442
- var STRING_ITERATOR = 'String Iterator';
1443
- var setInternalState = InternalStateModule.set;
1444
- var getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);
1445
-
1446
- // `String.prototype[@@iterator]` method
1447
- // https://tc39.es/ecma262/#sec-string.prototype-@@iterator
1448
- defineIterator(String, 'String', function (iterated) {
1449
- setInternalState(this, {
1450
- type: STRING_ITERATOR,
1451
- string: toString(iterated),
1452
- index: 0
1453
- });
1454
- // `%StringIteratorPrototype%.next` method
1455
- // https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next
1456
- }, function next() {
1457
- var state = getInternalState(this);
1458
- var string = state.string;
1459
- var index = state.index;
1460
- var point;
1461
- if (index >= string.length) return { value: undefined, done: true };
1462
- point = charAt(string, index);
1463
- state.index += point.length;
1464
- return { value: point, done: false };
1465
- });
1466
-
1467
-
1468
1400
  /***/ }),
1469
1401
 
1470
1402
  /***/ "3f8c":
@@ -1506,16 +1438,6 @@ module.exports = !fails(function () {
1506
1438
 
1507
1439
  // extracted by mini-css-extract-plugin
1508
1440
 
1509
- /***/ }),
1510
-
1511
- /***/ "428f":
1512
- /***/ (function(module, exports, __webpack_require__) {
1513
-
1514
- var global = __webpack_require__("da84");
1515
-
1516
- module.exports = global;
1517
-
1518
-
1519
1441
  /***/ }),
1520
1442
 
1521
1443
  /***/ "44ad":
@@ -1962,61 +1884,6 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
1962
1884
  });
1963
1885
 
1964
1886
 
1965
- /***/ }),
1966
-
1967
- /***/ "4df4":
1968
- /***/ (function(module, exports, __webpack_require__) {
1969
-
1970
- "use strict";
1971
-
1972
- var global = __webpack_require__("da84");
1973
- var bind = __webpack_require__("0366");
1974
- var call = __webpack_require__("c65b");
1975
- var toObject = __webpack_require__("7b0b");
1976
- var callWithSafeIterationClosing = __webpack_require__("9bdd");
1977
- var isArrayIteratorMethod = __webpack_require__("e95a");
1978
- var isConstructor = __webpack_require__("68ee");
1979
- var lengthOfArrayLike = __webpack_require__("07fa");
1980
- var createProperty = __webpack_require__("8418");
1981
- var getIterator = __webpack_require__("9a1f");
1982
- var getIteratorMethod = __webpack_require__("35a1");
1983
-
1984
- var Array = global.Array;
1985
-
1986
- // `Array.from` method implementation
1987
- // https://tc39.es/ecma262/#sec-array.from
1988
- module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {
1989
- var O = toObject(arrayLike);
1990
- var IS_CONSTRUCTOR = isConstructor(this);
1991
- var argumentsLength = arguments.length;
1992
- var mapfn = argumentsLength > 1 ? arguments[1] : undefined;
1993
- var mapping = mapfn !== undefined;
1994
- if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined);
1995
- var iteratorMethod = getIteratorMethod(O);
1996
- var index = 0;
1997
- var length, result, step, iterator, next, value;
1998
- // if the target is not iterable or it's an array with the default iterator - use a simple case
1999
- if (iteratorMethod && !(this == Array && isArrayIteratorMethod(iteratorMethod))) {
2000
- iterator = getIterator(O, iteratorMethod);
2001
- next = iterator.next;
2002
- result = IS_CONSTRUCTOR ? new this() : [];
2003
- for (;!(step = call(next, iterator)).done; index++) {
2004
- value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value;
2005
- createProperty(result, index, value);
2006
- }
2007
- } else {
2008
- length = lengthOfArrayLike(O);
2009
- result = IS_CONSTRUCTOR ? new this(length) : Array(length);
2010
- for (;length > index; index++) {
2011
- value = mapping ? mapfn(O[index], index) : O[index];
2012
- createProperty(result, index, value);
2013
- }
2014
- }
2015
- result.length = index;
2016
- return result;
2017
- };
2018
-
2019
-
2020
1887
  /***/ }),
2021
1888
 
2022
1889
  /***/ "5087":
@@ -2619,6 +2486,13 @@ module.exports = {
2619
2486
  };
2620
2487
 
2621
2488
 
2489
+ /***/ }),
2490
+
2491
+ /***/ "6eb5":
2492
+ /***/ (function(module, exports, __webpack_require__) {
2493
+
2494
+ // extracted by mini-css-extract-plugin
2495
+
2622
2496
  /***/ }),
2623
2497
 
2624
2498
  /***/ "6eeb":
@@ -2724,24 +2598,6 @@ exports.f = Object.getOwnPropertySymbols;
2724
2598
  /* unused harmony reexport * */
2725
2599
 
2726
2600
 
2727
- /***/ }),
2728
-
2729
- /***/ "746f":
2730
- /***/ (function(module, exports, __webpack_require__) {
2731
-
2732
- var path = __webpack_require__("428f");
2733
- var hasOwn = __webpack_require__("1a2d");
2734
- var wrappedWellKnownSymbolModule = __webpack_require__("e538");
2735
- var defineProperty = __webpack_require__("9bf2").f;
2736
-
2737
- module.exports = function (NAME) {
2738
- var Symbol = path.Symbol || (path.Symbol = {});
2739
- if (!hasOwn(Symbol, NAME)) defineProperty(Symbol, NAME, {
2740
- value: wrappedWellKnownSymbolModule.f(NAME)
2741
- });
2742
- };
2743
-
2744
-
2745
2601
  /***/ }),
2746
2602
 
2747
2603
  /***/ "7839":
@@ -2919,113 +2775,6 @@ $({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
2919
2775
  addToUnscopables(FIND);
2920
2776
 
2921
2777
 
2922
- /***/ }),
2923
-
2924
- /***/ "7dd0":
2925
- /***/ (function(module, exports, __webpack_require__) {
2926
-
2927
- "use strict";
2928
-
2929
- var $ = __webpack_require__("23e7");
2930
- var call = __webpack_require__("c65b");
2931
- var IS_PURE = __webpack_require__("c430");
2932
- var FunctionName = __webpack_require__("5e77");
2933
- var isCallable = __webpack_require__("1626");
2934
- var createIteratorConstructor = __webpack_require__("9ed3");
2935
- var getPrototypeOf = __webpack_require__("e163");
2936
- var setPrototypeOf = __webpack_require__("d2bb");
2937
- var setToStringTag = __webpack_require__("d44e");
2938
- var createNonEnumerableProperty = __webpack_require__("9112");
2939
- var redefine = __webpack_require__("6eeb");
2940
- var wellKnownSymbol = __webpack_require__("b622");
2941
- var Iterators = __webpack_require__("3f8c");
2942
- var IteratorsCore = __webpack_require__("ae93");
2943
-
2944
- var PROPER_FUNCTION_NAME = FunctionName.PROPER;
2945
- var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
2946
- var IteratorPrototype = IteratorsCore.IteratorPrototype;
2947
- var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
2948
- var ITERATOR = wellKnownSymbol('iterator');
2949
- var KEYS = 'keys';
2950
- var VALUES = 'values';
2951
- var ENTRIES = 'entries';
2952
-
2953
- var returnThis = function () { return this; };
2954
-
2955
- module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
2956
- createIteratorConstructor(IteratorConstructor, NAME, next);
2957
-
2958
- var getIterationMethod = function (KIND) {
2959
- if (KIND === DEFAULT && defaultIterator) return defaultIterator;
2960
- if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];
2961
- switch (KIND) {
2962
- case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
2963
- case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
2964
- case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
2965
- } return function () { return new IteratorConstructor(this); };
2966
- };
2967
-
2968
- var TO_STRING_TAG = NAME + ' Iterator';
2969
- var INCORRECT_VALUES_NAME = false;
2970
- var IterablePrototype = Iterable.prototype;
2971
- var nativeIterator = IterablePrototype[ITERATOR]
2972
- || IterablePrototype['@@iterator']
2973
- || DEFAULT && IterablePrototype[DEFAULT];
2974
- var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
2975
- var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
2976
- var CurrentIteratorPrototype, methods, KEY;
2977
-
2978
- // fix native
2979
- if (anyNativeIterator) {
2980
- CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
2981
- if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
2982
- if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
2983
- if (setPrototypeOf) {
2984
- setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);
2985
- } else if (!isCallable(CurrentIteratorPrototype[ITERATOR])) {
2986
- redefine(CurrentIteratorPrototype, ITERATOR, returnThis);
2987
- }
2988
- }
2989
- // Set @@toStringTag to native iterators
2990
- setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);
2991
- if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;
2992
- }
2993
- }
2994
-
2995
- // fix Array.prototype.{ values, @@iterator }.name in V8 / FF
2996
- if (PROPER_FUNCTION_NAME && DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
2997
- if (!IS_PURE && CONFIGURABLE_FUNCTION_NAME) {
2998
- createNonEnumerableProperty(IterablePrototype, 'name', VALUES);
2999
- } else {
3000
- INCORRECT_VALUES_NAME = true;
3001
- defaultIterator = function values() { return call(nativeIterator, this); };
3002
- }
3003
- }
3004
-
3005
- // export additional methods
3006
- if (DEFAULT) {
3007
- methods = {
3008
- values: getIterationMethod(VALUES),
3009
- keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
3010
- entries: getIterationMethod(ENTRIES)
3011
- };
3012
- if (FORCED) for (KEY in methods) {
3013
- if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
3014
- redefine(IterablePrototype, KEY, methods[KEY]);
3015
- }
3016
- } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
3017
- }
3018
-
3019
- // define iterator
3020
- if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {
3021
- redefine(IterablePrototype, ITERATOR, defaultIterator, { name: DEFAULT });
3022
- }
3023
- Iterators[NAME] = defaultIterator;
3024
-
3025
- return methods;
3026
- };
3027
-
3028
-
3029
2778
  /***/ }),
3030
2779
 
3031
2780
  /***/ "7ddc":
@@ -4347,24 +4096,6 @@ module.exports = function (argument, usingIterator) {
4347
4096
  /* unused harmony reexport * */
4348
4097
 
4349
4098
 
4350
- /***/ }),
4351
-
4352
- /***/ "9bdd":
4353
- /***/ (function(module, exports, __webpack_require__) {
4354
-
4355
- var anObject = __webpack_require__("825a");
4356
- var iteratorClose = __webpack_require__("2a62");
4357
-
4358
- // call something on iterator step with safe closing on error
4359
- module.exports = function (iterator, fn, value, ENTRIES) {
4360
- try {
4361
- return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);
4362
- } catch (error) {
4363
- iteratorClose(iterator, 'throw', error);
4364
- }
4365
- };
4366
-
4367
-
4368
4099
  /***/ }),
4369
4100
 
4370
4101
  /***/ "9bf2":
@@ -4416,30 +4147,6 @@ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P
4416
4147
  };
4417
4148
 
4418
4149
 
4419
- /***/ }),
4420
-
4421
- /***/ "9ed3":
4422
- /***/ (function(module, exports, __webpack_require__) {
4423
-
4424
- "use strict";
4425
-
4426
- var IteratorPrototype = __webpack_require__("ae93").IteratorPrototype;
4427
- var create = __webpack_require__("7c73");
4428
- var createPropertyDescriptor = __webpack_require__("5c6c");
4429
- var setToStringTag = __webpack_require__("d44e");
4430
- var Iterators = __webpack_require__("3f8c");
4431
-
4432
- var returnThis = function () { return this; };
4433
-
4434
- module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
4435
- var TO_STRING_TAG = NAME + ' Iterator';
4436
- IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
4437
- setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
4438
- Iterators[TO_STRING_TAG] = returnThis;
4439
- return IteratorConstructor;
4440
- };
4441
-
4442
-
4443
4150
  /***/ }),
4444
4151
 
4445
4152
  /***/ "9f7f":
@@ -6016,412 +5723,58 @@ module.exports = /web0s(?!.*chrome)/i.test(userAgent);
6016
5723
 
6017
5724
  /***/ }),
6018
5725
 
6019
- /***/ "a4d3":
5726
+ /***/ "a640":
6020
5727
  /***/ (function(module, exports, __webpack_require__) {
6021
5728
 
6022
5729
  "use strict";
6023
5730
 
6024
- var $ = __webpack_require__("23e7");
6025
- var global = __webpack_require__("da84");
6026
- var getBuiltIn = __webpack_require__("d066");
6027
- var apply = __webpack_require__("2ba4");
6028
- var call = __webpack_require__("c65b");
6029
- var uncurryThis = __webpack_require__("e330");
6030
- var IS_PURE = __webpack_require__("c430");
6031
- var DESCRIPTORS = __webpack_require__("83ab");
6032
- var NATIVE_SYMBOL = __webpack_require__("4930");
6033
5731
  var fails = __webpack_require__("d039");
6034
- var hasOwn = __webpack_require__("1a2d");
6035
- var isArray = __webpack_require__("e8b5");
6036
- var isCallable = __webpack_require__("1626");
6037
- var isObject = __webpack_require__("861d");
6038
- var isPrototypeOf = __webpack_require__("3a9b");
6039
- var isSymbol = __webpack_require__("d9b5");
6040
- var anObject = __webpack_require__("825a");
6041
- var toObject = __webpack_require__("7b0b");
6042
- var toIndexedObject = __webpack_require__("fc6a");
6043
- var toPropertyKey = __webpack_require__("a04b");
6044
- var $toString = __webpack_require__("577e");
6045
- var createPropertyDescriptor = __webpack_require__("5c6c");
6046
- var nativeObjectCreate = __webpack_require__("7c73");
6047
- var objectKeys = __webpack_require__("df75");
6048
- var getOwnPropertyNamesModule = __webpack_require__("241c");
6049
- var getOwnPropertyNamesExternal = __webpack_require__("057f");
6050
- var getOwnPropertySymbolsModule = __webpack_require__("7418");
6051
- var getOwnPropertyDescriptorModule = __webpack_require__("06cf");
6052
- var definePropertyModule = __webpack_require__("9bf2");
6053
- var definePropertiesModule = __webpack_require__("37e8");
6054
- var propertyIsEnumerableModule = __webpack_require__("d1e7");
6055
- var arraySlice = __webpack_require__("f36a");
6056
- var redefine = __webpack_require__("6eeb");
6057
- var shared = __webpack_require__("5692");
6058
- var sharedKey = __webpack_require__("f772");
6059
- var hiddenKeys = __webpack_require__("d012");
6060
- var uid = __webpack_require__("90e3");
6061
- var wellKnownSymbol = __webpack_require__("b622");
6062
- var wrappedWellKnownSymbolModule = __webpack_require__("e538");
6063
- var defineWellKnownSymbol = __webpack_require__("746f");
6064
- var setToStringTag = __webpack_require__("d44e");
6065
- var InternalStateModule = __webpack_require__("69f3");
6066
- var $forEach = __webpack_require__("b727").forEach;
6067
-
6068
- var HIDDEN = sharedKey('hidden');
6069
- var SYMBOL = 'Symbol';
6070
- var PROTOTYPE = 'prototype';
6071
- var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
6072
-
6073
- var setInternalState = InternalStateModule.set;
6074
- var getInternalState = InternalStateModule.getterFor(SYMBOL);
6075
-
6076
- var ObjectPrototype = Object[PROTOTYPE];
6077
- var $Symbol = global.Symbol;
6078
- var SymbolPrototype = $Symbol && $Symbol[PROTOTYPE];
6079
- var TypeError = global.TypeError;
6080
- var QObject = global.QObject;
6081
- var $stringify = getBuiltIn('JSON', 'stringify');
6082
- var nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
6083
- var nativeDefineProperty = definePropertyModule.f;
6084
- var nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f;
6085
- var nativePropertyIsEnumerable = propertyIsEnumerableModule.f;
6086
- var push = uncurryThis([].push);
6087
-
6088
- var AllSymbols = shared('symbols');
6089
- var ObjectPrototypeSymbols = shared('op-symbols');
6090
- var StringToSymbolRegistry = shared('string-to-symbol-registry');
6091
- var SymbolToStringRegistry = shared('symbol-to-string-registry');
6092
- var WellKnownSymbolsStore = shared('wks');
6093
5732
 
6094
- // Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173
6095
- var USE_SETTER = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;
6096
-
6097
- // fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687
6098
- var setSymbolDescriptor = DESCRIPTORS && fails(function () {
6099
- return nativeObjectCreate(nativeDefineProperty({}, 'a', {
6100
- get: function () { return nativeDefineProperty(this, 'a', { value: 7 }).a; }
6101
- })).a != 7;
6102
- }) ? function (O, P, Attributes) {
6103
- var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor(ObjectPrototype, P);
6104
- if (ObjectPrototypeDescriptor) delete ObjectPrototype[P];
6105
- nativeDefineProperty(O, P, Attributes);
6106
- if (ObjectPrototypeDescriptor && O !== ObjectPrototype) {
6107
- nativeDefineProperty(ObjectPrototype, P, ObjectPrototypeDescriptor);
6108
- }
6109
- } : nativeDefineProperty;
6110
-
6111
- var wrap = function (tag, description) {
6112
- var symbol = AllSymbols[tag] = nativeObjectCreate(SymbolPrototype);
6113
- setInternalState(symbol, {
6114
- type: SYMBOL,
6115
- tag: tag,
6116
- description: description
5733
+ module.exports = function (METHOD_NAME, argument) {
5734
+ var method = [][METHOD_NAME];
5735
+ return !!method && fails(function () {
5736
+ // eslint-disable-next-line no-useless-call,no-throw-literal -- required for testing
5737
+ method.call(null, argument || function () { throw 1; }, 1);
6117
5738
  });
6118
- if (!DESCRIPTORS) symbol.description = description;
6119
- return symbol;
6120
5739
  };
6121
5740
 
6122
- var $defineProperty = function defineProperty(O, P, Attributes) {
6123
- if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes);
6124
- anObject(O);
6125
- var key = toPropertyKey(P);
6126
- anObject(Attributes);
6127
- if (hasOwn(AllSymbols, key)) {
6128
- if (!Attributes.enumerable) {
6129
- if (!hasOwn(O, HIDDEN)) nativeDefineProperty(O, HIDDEN, createPropertyDescriptor(1, {}));
6130
- O[HIDDEN][key] = true;
6131
- } else {
6132
- if (hasOwn(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false;
6133
- Attributes = nativeObjectCreate(Attributes, { enumerable: createPropertyDescriptor(0, false) });
6134
- } return setSymbolDescriptor(O, key, Attributes);
6135
- } return nativeDefineProperty(O, key, Attributes);
6136
- };
6137
5741
 
6138
- var $defineProperties = function defineProperties(O, Properties) {
6139
- anObject(O);
6140
- var properties = toIndexedObject(Properties);
6141
- var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties));
6142
- $forEach(keys, function (key) {
6143
- if (!DESCRIPTORS || call($propertyIsEnumerable, properties, key)) $defineProperty(O, key, properties[key]);
6144
- });
6145
- return O;
6146
- };
5742
+ /***/ }),
6147
5743
 
6148
- var $create = function create(O, Properties) {
6149
- return Properties === undefined ? nativeObjectCreate(O) : $defineProperties(nativeObjectCreate(O), Properties);
6150
- };
5744
+ /***/ "a9e3":
5745
+ /***/ (function(module, exports, __webpack_require__) {
6151
5746
 
6152
- var $propertyIsEnumerable = function propertyIsEnumerable(V) {
6153
- var P = toPropertyKey(V);
6154
- var enumerable = call(nativePropertyIsEnumerable, this, P);
6155
- if (this === ObjectPrototype && hasOwn(AllSymbols, P) && !hasOwn(ObjectPrototypeSymbols, P)) return false;
6156
- return enumerable || !hasOwn(this, P) || !hasOwn(AllSymbols, P) || hasOwn(this, HIDDEN) && this[HIDDEN][P]
6157
- ? enumerable : true;
6158
- };
5747
+ "use strict";
6159
5748
 
6160
- var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) {
6161
- var it = toIndexedObject(O);
6162
- var key = toPropertyKey(P);
6163
- if (it === ObjectPrototype && hasOwn(AllSymbols, key) && !hasOwn(ObjectPrototypeSymbols, key)) return;
6164
- var descriptor = nativeGetOwnPropertyDescriptor(it, key);
6165
- if (descriptor && hasOwn(AllSymbols, key) && !(hasOwn(it, HIDDEN) && it[HIDDEN][key])) {
6166
- descriptor.enumerable = true;
6167
- }
6168
- return descriptor;
6169
- };
5749
+ var DESCRIPTORS = __webpack_require__("83ab");
5750
+ var global = __webpack_require__("da84");
5751
+ var uncurryThis = __webpack_require__("e330");
5752
+ var isForced = __webpack_require__("94ca");
5753
+ var redefine = __webpack_require__("6eeb");
5754
+ var hasOwn = __webpack_require__("1a2d");
5755
+ var inheritIfRequired = __webpack_require__("7156");
5756
+ var isPrototypeOf = __webpack_require__("3a9b");
5757
+ var isSymbol = __webpack_require__("d9b5");
5758
+ var toPrimitive = __webpack_require__("c04e");
5759
+ var fails = __webpack_require__("d039");
5760
+ var getOwnPropertyNames = __webpack_require__("241c").f;
5761
+ var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
5762
+ var defineProperty = __webpack_require__("9bf2").f;
5763
+ var thisNumberValue = __webpack_require__("408a");
5764
+ var trim = __webpack_require__("58a8").trim;
6170
5765
 
6171
- var $getOwnPropertyNames = function getOwnPropertyNames(O) {
6172
- var names = nativeGetOwnPropertyNames(toIndexedObject(O));
6173
- var result = [];
6174
- $forEach(names, function (key) {
6175
- if (!hasOwn(AllSymbols, key) && !hasOwn(hiddenKeys, key)) push(result, key);
6176
- });
6177
- return result;
6178
- };
6179
-
6180
- var $getOwnPropertySymbols = function getOwnPropertySymbols(O) {
6181
- var IS_OBJECT_PROTOTYPE = O === ObjectPrototype;
6182
- var names = nativeGetOwnPropertyNames(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O));
6183
- var result = [];
6184
- $forEach(names, function (key) {
6185
- if (hasOwn(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || hasOwn(ObjectPrototype, key))) {
6186
- push(result, AllSymbols[key]);
6187
- }
6188
- });
6189
- return result;
6190
- };
6191
-
6192
- // `Symbol` constructor
6193
- // https://tc39.es/ecma262/#sec-symbol-constructor
6194
- if (!NATIVE_SYMBOL) {
6195
- $Symbol = function Symbol() {
6196
- if (isPrototypeOf(SymbolPrototype, this)) throw TypeError('Symbol is not a constructor');
6197
- var description = !arguments.length || arguments[0] === undefined ? undefined : $toString(arguments[0]);
6198
- var tag = uid(description);
6199
- var setter = function (value) {
6200
- if (this === ObjectPrototype) call(setter, ObjectPrototypeSymbols, value);
6201
- if (hasOwn(this, HIDDEN) && hasOwn(this[HIDDEN], tag)) this[HIDDEN][tag] = false;
6202
- setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value));
6203
- };
6204
- if (DESCRIPTORS && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, { configurable: true, set: setter });
6205
- return wrap(tag, description);
6206
- };
6207
-
6208
- SymbolPrototype = $Symbol[PROTOTYPE];
6209
-
6210
- redefine(SymbolPrototype, 'toString', function toString() {
6211
- return getInternalState(this).tag;
6212
- });
6213
-
6214
- redefine($Symbol, 'withoutSetter', function (description) {
6215
- return wrap(uid(description), description);
6216
- });
6217
-
6218
- propertyIsEnumerableModule.f = $propertyIsEnumerable;
6219
- definePropertyModule.f = $defineProperty;
6220
- definePropertiesModule.f = $defineProperties;
6221
- getOwnPropertyDescriptorModule.f = $getOwnPropertyDescriptor;
6222
- getOwnPropertyNamesModule.f = getOwnPropertyNamesExternal.f = $getOwnPropertyNames;
6223
- getOwnPropertySymbolsModule.f = $getOwnPropertySymbols;
6224
-
6225
- wrappedWellKnownSymbolModule.f = function (name) {
6226
- return wrap(wellKnownSymbol(name), name);
6227
- };
6228
-
6229
- if (DESCRIPTORS) {
6230
- // https://github.com/tc39/proposal-Symbol-description
6231
- nativeDefineProperty(SymbolPrototype, 'description', {
6232
- configurable: true,
6233
- get: function description() {
6234
- return getInternalState(this).description;
6235
- }
6236
- });
6237
- if (!IS_PURE) {
6238
- redefine(ObjectPrototype, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true });
6239
- }
6240
- }
6241
- }
6242
-
6243
- $({ global: true, wrap: true, forced: !NATIVE_SYMBOL, sham: !NATIVE_SYMBOL }, {
6244
- Symbol: $Symbol
6245
- });
6246
-
6247
- $forEach(objectKeys(WellKnownSymbolsStore), function (name) {
6248
- defineWellKnownSymbol(name);
6249
- });
6250
-
6251
- $({ target: SYMBOL, stat: true, forced: !NATIVE_SYMBOL }, {
6252
- // `Symbol.for` method
6253
- // https://tc39.es/ecma262/#sec-symbol.for
6254
- 'for': function (key) {
6255
- var string = $toString(key);
6256
- if (hasOwn(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string];
6257
- var symbol = $Symbol(string);
6258
- StringToSymbolRegistry[string] = symbol;
6259
- SymbolToStringRegistry[symbol] = string;
6260
- return symbol;
6261
- },
6262
- // `Symbol.keyFor` method
6263
- // https://tc39.es/ecma262/#sec-symbol.keyfor
6264
- keyFor: function keyFor(sym) {
6265
- if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol');
6266
- if (hasOwn(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym];
6267
- },
6268
- useSetter: function () { USE_SETTER = true; },
6269
- useSimple: function () { USE_SETTER = false; }
6270
- });
6271
-
6272
- $({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL, sham: !DESCRIPTORS }, {
6273
- // `Object.create` method
6274
- // https://tc39.es/ecma262/#sec-object.create
6275
- create: $create,
6276
- // `Object.defineProperty` method
6277
- // https://tc39.es/ecma262/#sec-object.defineproperty
6278
- defineProperty: $defineProperty,
6279
- // `Object.defineProperties` method
6280
- // https://tc39.es/ecma262/#sec-object.defineproperties
6281
- defineProperties: $defineProperties,
6282
- // `Object.getOwnPropertyDescriptor` method
6283
- // https://tc39.es/ecma262/#sec-object.getownpropertydescriptors
6284
- getOwnPropertyDescriptor: $getOwnPropertyDescriptor
6285
- });
6286
-
6287
- $({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL }, {
6288
- // `Object.getOwnPropertyNames` method
6289
- // https://tc39.es/ecma262/#sec-object.getownpropertynames
6290
- getOwnPropertyNames: $getOwnPropertyNames,
6291
- // `Object.getOwnPropertySymbols` method
6292
- // https://tc39.es/ecma262/#sec-object.getownpropertysymbols
6293
- getOwnPropertySymbols: $getOwnPropertySymbols
6294
- });
6295
-
6296
- // Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives
6297
- // https://bugs.chromium.org/p/v8/issues/detail?id=3443
6298
- $({ target: 'Object', stat: true, forced: fails(function () { getOwnPropertySymbolsModule.f(1); }) }, {
6299
- getOwnPropertySymbols: function getOwnPropertySymbols(it) {
6300
- return getOwnPropertySymbolsModule.f(toObject(it));
6301
- }
6302
- });
6303
-
6304
- // `JSON.stringify` method behavior with symbols
6305
- // https://tc39.es/ecma262/#sec-json.stringify
6306
- if ($stringify) {
6307
- var FORCED_JSON_STRINGIFY = !NATIVE_SYMBOL || fails(function () {
6308
- var symbol = $Symbol();
6309
- // MS Edge converts symbol values to JSON as {}
6310
- return $stringify([symbol]) != '[null]'
6311
- // WebKit converts symbol values to JSON as null
6312
- || $stringify({ a: symbol }) != '{}'
6313
- // V8 throws on boxed symbols
6314
- || $stringify(Object(symbol)) != '{}';
6315
- });
6316
-
6317
- $({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, {
6318
- // eslint-disable-next-line no-unused-vars -- required for `.length`
6319
- stringify: function stringify(it, replacer, space) {
6320
- var args = arraySlice(arguments);
6321
- var $replacer = replacer;
6322
- if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined
6323
- if (!isArray(replacer)) replacer = function (key, value) {
6324
- if (isCallable($replacer)) value = call($replacer, this, key, value);
6325
- if (!isSymbol(value)) return value;
6326
- };
6327
- args[1] = replacer;
6328
- return apply($stringify, null, args);
6329
- }
6330
- });
6331
- }
6332
-
6333
- // `Symbol.prototype[@@toPrimitive]` method
6334
- // https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive
6335
- if (!SymbolPrototype[TO_PRIMITIVE]) {
6336
- var valueOf = SymbolPrototype.valueOf;
6337
- // eslint-disable-next-line no-unused-vars -- required for .length
6338
- redefine(SymbolPrototype, TO_PRIMITIVE, function (hint) {
6339
- // TODO: improve hint logic
6340
- return call(valueOf, this);
6341
- });
6342
- }
6343
- // `Symbol.prototype[@@toStringTag]` property
6344
- // https://tc39.es/ecma262/#sec-symbol.prototype-@@tostringtag
6345
- setToStringTag($Symbol, SYMBOL);
6346
-
6347
- hiddenKeys[HIDDEN] = true;
6348
-
6349
-
6350
- /***/ }),
6351
-
6352
- /***/ "a630":
6353
- /***/ (function(module, exports, __webpack_require__) {
6354
-
6355
- var $ = __webpack_require__("23e7");
6356
- var from = __webpack_require__("4df4");
6357
- var checkCorrectnessOfIteration = __webpack_require__("1c7e");
6358
-
6359
- var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
6360
- // eslint-disable-next-line es/no-array-from -- required for testing
6361
- Array.from(iterable);
6362
- });
6363
-
6364
- // `Array.from` method
6365
- // https://tc39.es/ecma262/#sec-array.from
6366
- $({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
6367
- from: from
6368
- });
6369
-
6370
-
6371
- /***/ }),
6372
-
6373
- /***/ "a640":
6374
- /***/ (function(module, exports, __webpack_require__) {
6375
-
6376
- "use strict";
6377
-
6378
- var fails = __webpack_require__("d039");
6379
-
6380
- module.exports = function (METHOD_NAME, argument) {
6381
- var method = [][METHOD_NAME];
6382
- return !!method && fails(function () {
6383
- // eslint-disable-next-line no-useless-call,no-throw-literal -- required for testing
6384
- method.call(null, argument || function () { throw 1; }, 1);
6385
- });
6386
- };
6387
-
6388
-
6389
- /***/ }),
6390
-
6391
- /***/ "a9e3":
6392
- /***/ (function(module, exports, __webpack_require__) {
6393
-
6394
- "use strict";
6395
-
6396
- var DESCRIPTORS = __webpack_require__("83ab");
6397
- var global = __webpack_require__("da84");
6398
- var uncurryThis = __webpack_require__("e330");
6399
- var isForced = __webpack_require__("94ca");
6400
- var redefine = __webpack_require__("6eeb");
6401
- var hasOwn = __webpack_require__("1a2d");
6402
- var inheritIfRequired = __webpack_require__("7156");
6403
- var isPrototypeOf = __webpack_require__("3a9b");
6404
- var isSymbol = __webpack_require__("d9b5");
6405
- var toPrimitive = __webpack_require__("c04e");
6406
- var fails = __webpack_require__("d039");
6407
- var getOwnPropertyNames = __webpack_require__("241c").f;
6408
- var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
6409
- var defineProperty = __webpack_require__("9bf2").f;
6410
- var thisNumberValue = __webpack_require__("408a");
6411
- var trim = __webpack_require__("58a8").trim;
6412
-
6413
- var NUMBER = 'Number';
6414
- var NativeNumber = global[NUMBER];
6415
- var NumberPrototype = NativeNumber.prototype;
6416
- var TypeError = global.TypeError;
6417
- var arraySlice = uncurryThis(''.slice);
6418
- var charCodeAt = uncurryThis(''.charCodeAt);
6419
-
6420
- // `ToNumeric` abstract operation
6421
- // https://tc39.es/ecma262/#sec-tonumeric
6422
- var toNumeric = function (value) {
6423
- var primValue = toPrimitive(value, 'number');
6424
- return typeof primValue == 'bigint' ? primValue : toNumber(primValue);
5766
+ var NUMBER = 'Number';
5767
+ var NativeNumber = global[NUMBER];
5768
+ var NumberPrototype = NativeNumber.prototype;
5769
+ var TypeError = global.TypeError;
5770
+ var arraySlice = uncurryThis(''.slice);
5771
+ var charCodeAt = uncurryThis(''.charCodeAt);
5772
+
5773
+ // `ToNumeric` abstract operation
5774
+ // https://tc39.es/ecma262/#sec-tonumeric
5775
+ var toNumeric = function (value) {
5776
+ var primValue = toPrimitive(value, 'number');
5777
+ return typeof primValue == 'bigint' ? primValue : toNumber(primValue);
6425
5778
  };
6426
5779
 
6427
5780
  // `ToNumber` abstract operation
@@ -6504,23 +5857,6 @@ module.exports = function (METHOD_NAME) {
6504
5857
  };
6505
5858
 
6506
5859
 
6507
- /***/ }),
6508
-
6509
- /***/ "ab36":
6510
- /***/ (function(module, exports, __webpack_require__) {
6511
-
6512
- var isObject = __webpack_require__("861d");
6513
- var createNonEnumerableProperty = __webpack_require__("9112");
6514
-
6515
- // `InstallErrorCause` abstract operation
6516
- // https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
6517
- module.exports = function (O, options) {
6518
- if (isObject(options) && 'cause' in options) {
6519
- createNonEnumerableProperty(O, 'cause', options.cause);
6520
- }
6521
- };
6522
-
6523
-
6524
5860
  /***/ }),
6525
5861
 
6526
5862
  /***/ "ac1f":
@@ -6562,62 +5898,6 @@ module.exports = function () {
6562
5898
  };
6563
5899
 
6564
5900
 
6565
- /***/ }),
6566
-
6567
- /***/ "ae93":
6568
- /***/ (function(module, exports, __webpack_require__) {
6569
-
6570
- "use strict";
6571
-
6572
- var fails = __webpack_require__("d039");
6573
- var isCallable = __webpack_require__("1626");
6574
- var create = __webpack_require__("7c73");
6575
- var getPrototypeOf = __webpack_require__("e163");
6576
- var redefine = __webpack_require__("6eeb");
6577
- var wellKnownSymbol = __webpack_require__("b622");
6578
- var IS_PURE = __webpack_require__("c430");
6579
-
6580
- var ITERATOR = wellKnownSymbol('iterator');
6581
- var BUGGY_SAFARI_ITERATORS = false;
6582
-
6583
- // `%IteratorPrototype%` object
6584
- // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
6585
- var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
6586
-
6587
- /* eslint-disable es/no-array-prototype-keys -- safe */
6588
- if ([].keys) {
6589
- arrayIterator = [].keys();
6590
- // Safari 8 has buggy iterators w/o `next`
6591
- if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
6592
- else {
6593
- PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
6594
- if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
6595
- }
6596
- }
6597
-
6598
- var NEW_ITERATOR_PROTOTYPE = IteratorPrototype == undefined || fails(function () {
6599
- var test = {};
6600
- // FF44- legacy iterators case
6601
- return IteratorPrototype[ITERATOR].call(test) !== test;
6602
- });
6603
-
6604
- if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
6605
- else if (IS_PURE) IteratorPrototype = create(IteratorPrototype);
6606
-
6607
- // `%IteratorPrototype%[@@iterator]()` method
6608
- // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
6609
- if (!isCallable(IteratorPrototype[ITERATOR])) {
6610
- redefine(IteratorPrototype, ITERATOR, function () {
6611
- return this;
6612
- });
6613
- }
6614
-
6615
- module.exports = {
6616
- IteratorPrototype: IteratorPrototype,
6617
- BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
6618
- };
6619
-
6620
-
6621
5901
  /***/ }),
6622
5902
 
6623
5903
  /***/ "aed9":
@@ -6654,38 +5934,6 @@ module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {
6654
5934
  };
6655
5935
 
6656
5936
 
6657
- /***/ }),
6658
-
6659
- /***/ "b0c0":
6660
- /***/ (function(module, exports, __webpack_require__) {
6661
-
6662
- var DESCRIPTORS = __webpack_require__("83ab");
6663
- var FUNCTION_NAME_EXISTS = __webpack_require__("5e77").EXISTS;
6664
- var uncurryThis = __webpack_require__("e330");
6665
- var defineProperty = __webpack_require__("9bf2").f;
6666
-
6667
- var FunctionPrototype = Function.prototype;
6668
- var functionToString = uncurryThis(FunctionPrototype.toString);
6669
- var nameRE = /function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/;
6670
- var regExpExec = uncurryThis(nameRE.exec);
6671
- var NAME = 'name';
6672
-
6673
- // Function instances `.name` property
6674
- // https://tc39.es/ecma262/#sec-function-instances-name
6675
- if (DESCRIPTORS && !FUNCTION_NAME_EXISTS) {
6676
- defineProperty(FunctionPrototype, NAME, {
6677
- configurable: true,
6678
- get: function () {
6679
- try {
6680
- return regExpExec(nameRE, functionToString(this))[1];
6681
- } catch (error) {
6682
- return '';
6683
- }
6684
- }
6685
- });
6686
- }
6687
-
6688
-
6689
5937
  /***/ }),
6690
5938
 
6691
5939
  /***/ "b575":
@@ -6910,23 +6158,6 @@ module.exports = {
6910
6158
  };
6911
6159
 
6912
6160
 
6913
- /***/ }),
6914
-
6915
- /***/ "b980":
6916
- /***/ (function(module, exports, __webpack_require__) {
6917
-
6918
- var fails = __webpack_require__("d039");
6919
- var createPropertyDescriptor = __webpack_require__("5c6c");
6920
-
6921
- module.exports = !fails(function () {
6922
- var error = Error('a');
6923
- if (!('stack' in error)) return true;
6924
- // eslint-disable-next-line es/no-object-defineproperty -- safe
6925
- Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
6926
- return error.stack !== 7;
6927
- });
6928
-
6929
-
6930
6161
  /***/ }),
6931
6162
 
6932
6163
  /***/ "ba0e":
@@ -7107,26 +6338,6 @@ $({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
7107
6338
  addToUnscopables(FIND_INDEX);
7108
6339
 
7109
6340
 
7110
- /***/ }),
7111
-
7112
- /***/ "c770":
7113
- /***/ (function(module, exports, __webpack_require__) {
7114
-
7115
- var uncurryThis = __webpack_require__("e330");
7116
-
7117
- var replace = uncurryThis(''.replace);
7118
-
7119
- var TEST = (function (arg) { return String(Error(arg).stack); })('zxcasd');
7120
- var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
7121
- var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);
7122
-
7123
- module.exports = function (stack, dropEntries) {
7124
- if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string') {
7125
- while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, '');
7126
- } return stack;
7127
- };
7128
-
7129
-
7130
6341
  /***/ }),
7131
6342
 
7132
6343
  /***/ "c8ba":
@@ -7320,18 +6531,6 @@ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
7320
6531
  } : $propertyIsEnumerable;
7321
6532
 
7322
6533
 
7323
- /***/ }),
7324
-
7325
- /***/ "d28b":
7326
- /***/ (function(module, exports, __webpack_require__) {
7327
-
7328
- var defineWellKnownSymbol = __webpack_require__("746f");
7329
-
7330
- // `Symbol.iterator` well-known symbol
7331
- // https://tc39.es/ecma262/#sec-symbol.iterator
7332
- defineWellKnownSymbol('iterator');
7333
-
7334
-
7335
6534
  /***/ }),
7336
6535
 
7337
6536
  /***/ "d2bb":
@@ -7549,69 +6748,6 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
7549
6748
  };
7550
6749
 
7551
6750
 
7552
- /***/ }),
7553
-
7554
- /***/ "d9e2":
7555
- /***/ (function(module, exports, __webpack_require__) {
7556
-
7557
- /* eslint-disable no-unused-vars -- required for functions `.length` */
7558
- var $ = __webpack_require__("23e7");
7559
- var global = __webpack_require__("da84");
7560
- var apply = __webpack_require__("2ba4");
7561
- var wrapErrorConstructorWithCause = __webpack_require__("e5cb");
7562
-
7563
- var WEB_ASSEMBLY = 'WebAssembly';
7564
- var WebAssembly = global[WEB_ASSEMBLY];
7565
-
7566
- var FORCED = Error('e', { cause: 7 }).cause !== 7;
7567
-
7568
- var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
7569
- var O = {};
7570
- O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
7571
- $({ global: true, forced: FORCED }, O);
7572
- };
7573
-
7574
- var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
7575
- if (WebAssembly && WebAssembly[ERROR_NAME]) {
7576
- var O = {};
7577
- O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
7578
- $({ target: WEB_ASSEMBLY, stat: true, forced: FORCED }, O);
7579
- }
7580
- };
7581
-
7582
- // https://github.com/tc39/proposal-error-cause
7583
- exportGlobalErrorCauseWrapper('Error', function (init) {
7584
- return function Error(message) { return apply(init, this, arguments); };
7585
- });
7586
- exportGlobalErrorCauseWrapper('EvalError', function (init) {
7587
- return function EvalError(message) { return apply(init, this, arguments); };
7588
- });
7589
- exportGlobalErrorCauseWrapper('RangeError', function (init) {
7590
- return function RangeError(message) { return apply(init, this, arguments); };
7591
- });
7592
- exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
7593
- return function ReferenceError(message) { return apply(init, this, arguments); };
7594
- });
7595
- exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
7596
- return function SyntaxError(message) { return apply(init, this, arguments); };
7597
- });
7598
- exportGlobalErrorCauseWrapper('TypeError', function (init) {
7599
- return function TypeError(message) { return apply(init, this, arguments); };
7600
- });
7601
- exportGlobalErrorCauseWrapper('URIError', function (init) {
7602
- return function URIError(message) { return apply(init, this, arguments); };
7603
- });
7604
- exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
7605
- return function CompileError(message) { return apply(init, this, arguments); };
7606
- });
7607
- exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
7608
- return function LinkError(message) { return apply(init, this, arguments); };
7609
- });
7610
- exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
7611
- return function RuntimeError(message) { return apply(init, this, arguments); };
7612
- });
7613
-
7614
-
7615
6751
  /***/ }),
7616
6752
 
7617
6753
  /***/ "da84":
@@ -7669,242 +6805,18 @@ module.exports = function (V, P) {
7669
6805
 
7670
6806
  /***/ }),
7671
6807
 
7672
- /***/ "ddb0":
6808
+ /***/ "df75":
7673
6809
  /***/ (function(module, exports, __webpack_require__) {
7674
6810
 
7675
- var global = __webpack_require__("da84");
7676
- var DOMIterables = __webpack_require__("fdbc");
7677
- var DOMTokenListPrototype = __webpack_require__("785a");
7678
- var ArrayIteratorMethods = __webpack_require__("e260");
7679
- var createNonEnumerableProperty = __webpack_require__("9112");
7680
- var wellKnownSymbol = __webpack_require__("b622");
6811
+ var internalObjectKeys = __webpack_require__("ca84");
6812
+ var enumBugKeys = __webpack_require__("7839");
7681
6813
 
7682
- var ITERATOR = wellKnownSymbol('iterator');
7683
- var TO_STRING_TAG = wellKnownSymbol('toStringTag');
7684
- var ArrayValues = ArrayIteratorMethods.values;
7685
-
7686
- var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
7687
- if (CollectionPrototype) {
7688
- // some Chrome versions have non-configurable methods on DOMTokenList
7689
- if (CollectionPrototype[ITERATOR] !== ArrayValues) try {
7690
- createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);
7691
- } catch (error) {
7692
- CollectionPrototype[ITERATOR] = ArrayValues;
7693
- }
7694
- if (!CollectionPrototype[TO_STRING_TAG]) {
7695
- createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);
7696
- }
7697
- if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
7698
- // some Chrome versions have non-configurable methods on DOMTokenList
7699
- if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
7700
- createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);
7701
- } catch (error) {
7702
- CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];
7703
- }
7704
- }
7705
- }
7706
- };
7707
-
7708
- for (var COLLECTION_NAME in DOMIterables) {
7709
- handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype, COLLECTION_NAME);
7710
- }
7711
-
7712
- handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
7713
-
7714
-
7715
- /***/ }),
7716
-
7717
- /***/ "df75":
7718
- /***/ (function(module, exports, __webpack_require__) {
7719
-
7720
- var internalObjectKeys = __webpack_require__("ca84");
7721
- var enumBugKeys = __webpack_require__("7839");
7722
-
7723
- // `Object.keys` method
7724
- // https://tc39.es/ecma262/#sec-object.keys
7725
- // eslint-disable-next-line es/no-object-keys -- safe
7726
- module.exports = Object.keys || function keys(O) {
7727
- return internalObjectKeys(O, enumBugKeys);
7728
- };
7729
-
7730
-
7731
- /***/ }),
7732
-
7733
- /***/ "e01a":
7734
- /***/ (function(module, exports, __webpack_require__) {
7735
-
7736
- "use strict";
7737
- // `Symbol.prototype.description` getter
7738
- // https://tc39.es/ecma262/#sec-symbol.prototype.description
7739
-
7740
- var $ = __webpack_require__("23e7");
7741
- var DESCRIPTORS = __webpack_require__("83ab");
7742
- var global = __webpack_require__("da84");
7743
- var uncurryThis = __webpack_require__("e330");
7744
- var hasOwn = __webpack_require__("1a2d");
7745
- var isCallable = __webpack_require__("1626");
7746
- var isPrototypeOf = __webpack_require__("3a9b");
7747
- var toString = __webpack_require__("577e");
7748
- var defineProperty = __webpack_require__("9bf2").f;
7749
- var copyConstructorProperties = __webpack_require__("e893");
7750
-
7751
- var NativeSymbol = global.Symbol;
7752
- var SymbolPrototype = NativeSymbol && NativeSymbol.prototype;
7753
-
7754
- if (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototype) ||
7755
- // Safari 12 bug
7756
- NativeSymbol().description !== undefined
7757
- )) {
7758
- var EmptyStringDescriptionStore = {};
7759
- // wrap Symbol constructor for correct work with undefined description
7760
- var SymbolWrapper = function Symbol() {
7761
- var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString(arguments[0]);
7762
- var result = isPrototypeOf(SymbolPrototype, this)
7763
- ? new NativeSymbol(description)
7764
- // in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
7765
- : description === undefined ? NativeSymbol() : NativeSymbol(description);
7766
- if (description === '') EmptyStringDescriptionStore[result] = true;
7767
- return result;
7768
- };
7769
-
7770
- copyConstructorProperties(SymbolWrapper, NativeSymbol);
7771
- SymbolWrapper.prototype = SymbolPrototype;
7772
- SymbolPrototype.constructor = SymbolWrapper;
7773
-
7774
- var NATIVE_SYMBOL = String(NativeSymbol('test')) == 'Symbol(test)';
7775
- var symbolToString = uncurryThis(SymbolPrototype.toString);
7776
- var symbolValueOf = uncurryThis(SymbolPrototype.valueOf);
7777
- var regexp = /^Symbol\((.*)\)[^)]+$/;
7778
- var replace = uncurryThis(''.replace);
7779
- var stringSlice = uncurryThis(''.slice);
7780
-
7781
- defineProperty(SymbolPrototype, 'description', {
7782
- configurable: true,
7783
- get: function description() {
7784
- var symbol = symbolValueOf(this);
7785
- var string = symbolToString(symbol);
7786
- if (hasOwn(EmptyStringDescriptionStore, symbol)) return '';
7787
- var desc = NATIVE_SYMBOL ? stringSlice(string, 7, -1) : replace(string, regexp, '$1');
7788
- return desc === '' ? undefined : desc;
7789
- }
7790
- });
7791
-
7792
- $({ global: true, forced: true }, {
7793
- Symbol: SymbolWrapper
7794
- });
7795
- }
7796
-
7797
-
7798
- /***/ }),
7799
-
7800
- /***/ "e163":
7801
- /***/ (function(module, exports, __webpack_require__) {
7802
-
7803
- var global = __webpack_require__("da84");
7804
- var hasOwn = __webpack_require__("1a2d");
7805
- var isCallable = __webpack_require__("1626");
7806
- var toObject = __webpack_require__("7b0b");
7807
- var sharedKey = __webpack_require__("f772");
7808
- var CORRECT_PROTOTYPE_GETTER = __webpack_require__("e177");
7809
-
7810
- var IE_PROTO = sharedKey('IE_PROTO');
7811
- var Object = global.Object;
7812
- var ObjectPrototype = Object.prototype;
7813
-
7814
- // `Object.getPrototypeOf` method
7815
- // https://tc39.es/ecma262/#sec-object.getprototypeof
7816
- module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {
7817
- var object = toObject(O);
7818
- if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
7819
- var constructor = object.constructor;
7820
- if (isCallable(constructor) && object instanceof constructor) {
7821
- return constructor.prototype;
7822
- } return object instanceof Object ? ObjectPrototype : null;
7823
- };
7824
-
7825
-
7826
- /***/ }),
7827
-
7828
- /***/ "e177":
7829
- /***/ (function(module, exports, __webpack_require__) {
7830
-
7831
- var fails = __webpack_require__("d039");
7832
-
7833
- module.exports = !fails(function () {
7834
- function F() { /* empty */ }
7835
- F.prototype.constructor = null;
7836
- // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
7837
- return Object.getPrototypeOf(new F()) !== F.prototype;
7838
- });
7839
-
7840
-
7841
- /***/ }),
7842
-
7843
- /***/ "e260":
7844
- /***/ (function(module, exports, __webpack_require__) {
7845
-
7846
- "use strict";
7847
-
7848
- var toIndexedObject = __webpack_require__("fc6a");
7849
- var addToUnscopables = __webpack_require__("44d2");
7850
- var Iterators = __webpack_require__("3f8c");
7851
- var InternalStateModule = __webpack_require__("69f3");
7852
- var defineProperty = __webpack_require__("9bf2").f;
7853
- var defineIterator = __webpack_require__("7dd0");
7854
- var IS_PURE = __webpack_require__("c430");
7855
- var DESCRIPTORS = __webpack_require__("83ab");
7856
-
7857
- var ARRAY_ITERATOR = 'Array Iterator';
7858
- var setInternalState = InternalStateModule.set;
7859
- var getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);
7860
-
7861
- // `Array.prototype.entries` method
7862
- // https://tc39.es/ecma262/#sec-array.prototype.entries
7863
- // `Array.prototype.keys` method
7864
- // https://tc39.es/ecma262/#sec-array.prototype.keys
7865
- // `Array.prototype.values` method
7866
- // https://tc39.es/ecma262/#sec-array.prototype.values
7867
- // `Array.prototype[@@iterator]` method
7868
- // https://tc39.es/ecma262/#sec-array.prototype-@@iterator
7869
- // `CreateArrayIterator` internal method
7870
- // https://tc39.es/ecma262/#sec-createarrayiterator
7871
- module.exports = defineIterator(Array, 'Array', function (iterated, kind) {
7872
- setInternalState(this, {
7873
- type: ARRAY_ITERATOR,
7874
- target: toIndexedObject(iterated), // target
7875
- index: 0, // next index
7876
- kind: kind // kind
7877
- });
7878
- // `%ArrayIteratorPrototype%.next` method
7879
- // https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next
7880
- }, function () {
7881
- var state = getInternalState(this);
7882
- var target = state.target;
7883
- var kind = state.kind;
7884
- var index = state.index++;
7885
- if (!target || index >= target.length) {
7886
- state.target = undefined;
7887
- return { value: undefined, done: true };
7888
- }
7889
- if (kind == 'keys') return { value: index, done: false };
7890
- if (kind == 'values') return { value: target[index], done: false };
7891
- return { value: [index, target[index]], done: false };
7892
- }, 'values');
7893
-
7894
- // argumentsList[@@iterator] is %ArrayProto_values%
7895
- // https://tc39.es/ecma262/#sec-createunmappedargumentsobject
7896
- // https://tc39.es/ecma262/#sec-createmappedargumentsobject
7897
- var values = Iterators.Arguments = Iterators.Array;
7898
-
7899
- // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
7900
- addToUnscopables('keys');
7901
- addToUnscopables('values');
7902
- addToUnscopables('entries');
7903
-
7904
- // V8 ~ Chrome 45- bug
7905
- if (!IS_PURE && DESCRIPTORS && values.name !== 'values') try {
7906
- defineProperty(values, 'name', { value: 'values' });
7907
- } catch (error) { /* empty */ }
6814
+ // `Object.keys` method
6815
+ // https://tc39.es/ecma262/#sec-object.keys
6816
+ // eslint-disable-next-line es/no-object-keys -- safe
6817
+ module.exports = Object.keys || function keys(O) {
6818
+ return internalObjectKeys(O, enumBugKeys);
6819
+ };
7908
6820
 
7909
6821
 
7910
6822
  /***/ }),
@@ -7941,96 +6853,6 @@ module.exports = NATIVE_BIND ? function (fn) {
7941
6853
  };
7942
6854
 
7943
6855
 
7944
- /***/ }),
7945
-
7946
- /***/ "e391":
7947
- /***/ (function(module, exports, __webpack_require__) {
7948
-
7949
- var toString = __webpack_require__("577e");
7950
-
7951
- module.exports = function (argument, $default) {
7952
- return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
7953
- };
7954
-
7955
-
7956
- /***/ }),
7957
-
7958
- /***/ "e538":
7959
- /***/ (function(module, exports, __webpack_require__) {
7960
-
7961
- var wellKnownSymbol = __webpack_require__("b622");
7962
-
7963
- exports.f = wellKnownSymbol;
7964
-
7965
-
7966
- /***/ }),
7967
-
7968
- /***/ "e5cb":
7969
- /***/ (function(module, exports, __webpack_require__) {
7970
-
7971
- "use strict";
7972
-
7973
- var getBuiltIn = __webpack_require__("d066");
7974
- var hasOwn = __webpack_require__("1a2d");
7975
- var createNonEnumerableProperty = __webpack_require__("9112");
7976
- var isPrototypeOf = __webpack_require__("3a9b");
7977
- var setPrototypeOf = __webpack_require__("d2bb");
7978
- var copyConstructorProperties = __webpack_require__("e893");
7979
- var inheritIfRequired = __webpack_require__("7156");
7980
- var normalizeStringArgument = __webpack_require__("e391");
7981
- var installErrorCause = __webpack_require__("ab36");
7982
- var clearErrorStack = __webpack_require__("c770");
7983
- var ERROR_STACK_INSTALLABLE = __webpack_require__("b980");
7984
- var IS_PURE = __webpack_require__("c430");
7985
-
7986
- module.exports = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
7987
- var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
7988
- var path = FULL_NAME.split('.');
7989
- var ERROR_NAME = path[path.length - 1];
7990
- var OriginalError = getBuiltIn.apply(null, path);
7991
-
7992
- if (!OriginalError) return;
7993
-
7994
- var OriginalErrorPrototype = OriginalError.prototype;
7995
-
7996
- // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
7997
- if (!IS_PURE && hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
7998
-
7999
- if (!FORCED) return OriginalError;
8000
-
8001
- var BaseError = getBuiltIn('Error');
8002
-
8003
- var WrappedError = wrapper(function (a, b) {
8004
- var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
8005
- var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
8006
- if (message !== undefined) createNonEnumerableProperty(result, 'message', message);
8007
- if (ERROR_STACK_INSTALLABLE) createNonEnumerableProperty(result, 'stack', clearErrorStack(result.stack, 2));
8008
- if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
8009
- if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
8010
- return result;
8011
- });
8012
-
8013
- WrappedError.prototype = OriginalErrorPrototype;
8014
-
8015
- if (ERROR_NAME !== 'Error') {
8016
- if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError);
8017
- else copyConstructorProperties(WrappedError, BaseError, { name: true });
8018
- }
8019
-
8020
- copyConstructorProperties(WrappedError, OriginalError);
8021
-
8022
- if (!IS_PURE) try {
8023
- // Safari 13- bug: WebAssembly errors does not have a proper `.name`
8024
- if (OriginalErrorPrototype.name !== ERROR_NAME) {
8025
- createNonEnumerableProperty(OriginalErrorPrototype, 'name', ERROR_NAME);
8026
- }
8027
- OriginalErrorPrototype.constructor = WrappedError;
8028
- } catch (error) { /* empty */ }
8029
-
8030
- return WrappedError;
8031
- };
8032
-
8033
-
8034
6856
  /***/ }),
8035
6857
 
8036
6858
  /***/ "e667":
@@ -9590,8 +8412,8 @@ var Alert_component = normalizeComponent(
9590
8412
  )
9591
8413
 
9592
8414
  /* harmony default export */ var Alert = (Alert_component.exports);
9593
- // 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&
9594
- 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) {
8415
+ // 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&
8416
+ 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) {
9595
8417
  _vm.$emit('showBalanceModal', val);
9596
8418
  },"setShowModal":function (val) {
9597
8419
  _vm.$emit('setShowModal', val);
@@ -9599,11 +8421,13 @@ var Headervue_type_template_id_d0150058_render = function () {var _vm=this;var _
9599
8421
  _vm.$emit('setIsReplenishModal', val);
9600
8422
  }}}),_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){
9601
8423
  var animationClass = ref.animationClass;
9602
- 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)}
9603
- var Headervue_type_template_id_d0150058_staticRenderFns = []
8424
+ 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){
8425
+ var animationClass = ref.animationClass;
8426
+ 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)}
8427
+ var Headervue_type_template_id_b2e7b93e_staticRenderFns = []
9604
8428
 
9605
8429
 
9606
- // CONCATENATED MODULE: ./src/components/Header/Header.vue?vue&type=template&id=d0150058&
8430
+ // CONCATENATED MODULE: ./src/components/Header/Header.vue?vue&type=template&id=b2e7b93e&
9607
8431
 
9608
8432
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.promise.js
9609
8433
  var es_promise = __webpack_require__("e6cf");
@@ -9650,29 +8474,36 @@ function _asyncToGenerator(fn) {
9650
8474
  // EXTERNAL MODULE: ./node_modules/regenerator-runtime/runtime.js
9651
8475
  var runtime = __webpack_require__("96cf");
9652
8476
 
8477
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.to-string.js
8478
+ var es_regexp_to_string = __webpack_require__("25f0");
8479
+
9653
8480
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.json.stringify.js
9654
8481
  var es_json_stringify = __webpack_require__("e9c4");
9655
8482
 
9656
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.function.name.js
9657
- var es_function_name = __webpack_require__("b0c0");
9658
-
9659
8483
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.replace.js
9660
8484
  var es_string_replace = __webpack_require__("5319");
9661
8485
 
9662
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.to-string.js
9663
- var es_regexp_to_string = __webpack_require__("25f0");
8486
+ // 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&
8487
+ 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){
8488
+ var animationClass = ref.animationClass;
8489
+ 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("Выход")])])])])])}
8490
+ var ProfileMobilevue_type_template_id_05876c4f_scoped_true_staticRenderFns = []
8491
+
8492
+
8493
+ // CONCATENATED MODULE: ./src/components/Header/ProfileMobile.vue?vue&type=template&id=05876c4f&scoped=true&
8494
+
8495
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.find.js
8496
+ var es_array_find = __webpack_require__("7db0");
8497
+
8498
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
8499
+ var es_string_includes = __webpack_require__("2532");
8500
+
8501
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.filter.js
8502
+ var es_array_filter = __webpack_require__("4de4");
9664
8503
 
9665
8504
  // CONCATENATED MODULE: ./src/configs/profileDropDown.js
9666
8505
  var profileDropDown = [{
9667
8506
  id: 1,
9668
- name: "Общие настройки",
9669
- dev: "https://adtdev.kz/profile?tab=general",
9670
- staging: "https://adada.kz/profile?tab=general",
9671
- prod: "https://adata.kz/profile?tab=general",
9672
- disabled: false,
9673
- withoutArray: true
9674
- }, {
9675
- id: 2,
9676
8507
  name: "Увеличить лимит запросов",
9677
8508
  dev: "https://adtdev.kz/profile?tab=tariffs",
9678
8509
  staging: "https://adada.kz/profile?tab=tariffs",
@@ -9680,8 +8511,8 @@ var profileDropDown = [{
9680
8511
  disabled: false,
9681
8512
  withoutArray: true
9682
8513
  }, {
9683
- id: 3,
9684
- name: "Текущий баланс: 0 ₸",
8514
+ id: 2,
8515
+ name: "Текущий баланс: ",
9685
8516
  dev: "https://adtdev.kz/profile?tab=tariffs",
9686
8517
  staging: "https://adada.kz/profile?tab=tariffs",
9687
8518
  prod: "https://adata.kz/profile?tab=tariffs",
@@ -9689,17 +8520,26 @@ var profileDropDown = [{
9689
8520
  disabled: true,
9690
8521
  withoutArray: true
9691
8522
  }, {
9692
- id: 4,
8523
+ id: 3,
9693
8524
  name: "Историй платежей",
9694
8525
  dev: "https://adtdev.kz/profile?tab=payments",
9695
8526
  staging: "https://adada.kz/profile?tab=payments",
9696
8527
  prod: "https://adata.kz/profile?tab=payments",
9697
8528
  disabled: false,
9698
8529
  withoutArray: true
8530
+ }, {
8531
+ id: 4,
8532
+ name: "Общие настройки",
8533
+ dev: "https://adtdev.kz/profile?tab=general",
8534
+ staging: "https://adada.kz/profile?tab=general",
8535
+ prod: "https://adata.kz/profile?tab=general",
8536
+ disabled: false,
8537
+ withoutArray: true
9699
8538
  }, {
9700
8539
  id: 5,
9701
8540
  name: "Контрагенты",
9702
8541
  opened: false,
8542
+ key: 'counterparty',
9703
8543
  children: [{
9704
8544
  id: 8,
9705
8545
  name: "Избранные",
@@ -9724,6 +8564,7 @@ var profileDropDown = [{
9724
8564
  id: 6,
9725
8565
  name: "Работа",
9726
8566
  opened: false,
8567
+ key: 'work',
9727
8568
  children: [{
9728
8569
  id: 10,
9729
8570
  name: "Профиль",
@@ -9753,6 +8594,7 @@ var profileDropDown = [{
9753
8594
  id: 7,
9754
8595
  name: "Тендеры",
9755
8596
  opened: false,
8597
+ key: 'tenders',
9756
8598
  children: [{
9757
8599
  id: 17,
9758
8600
  name: "Шаблоны поиска",
@@ -9786,131 +8628,6 @@ var profileDropDown = [{
9786
8628
  // key: 'marketing'
9787
8629
  // }
9788
8630
  ];
9789
- // 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&
9790
- 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:(
9791
- function () {
9792
- _vm.active = false;
9793
- }
9794
- ),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){
9795
- var animationClass = ref.animationClass;
9796
- 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
9797
- ? 'profile-menu__balance-link'
9798
- : '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){
9799
- var animationClass = ref.animationClass;
9800
- 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){
9801
- var animationClass = ref.animationClass;
9802
- 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
9803
- ? 'profile-menu-mobile__balance-link'
9804
- : '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){
9805
- var animationClass = ref.animationClass;
9806
- return [_c('div',{directives:[{name:"show",rawName:"v-show",value:(
9807
- _vm.someMobileOpened.length > 0 &&
9808
- _vm.chosenElem &&
9809
- _vm.chosenElem.children.length > 0
9810
- ),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
9811
- ? 'profile-menu-mobile__balance-link'
9812
- : '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)])}
9813
- var Profilevue_type_template_id_67e27faa_staticRenderFns = []
9814
-
9815
-
9816
- // CONCATENATED MODULE: ./src/components/Header/Profile.vue?vue&type=template&id=67e27faa&
9817
-
9818
- // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js
9819
- function _arrayLikeToArray(arr, len) {
9820
- if (len == null || len > arr.length) len = arr.length;
9821
-
9822
- for (var i = 0, arr2 = new Array(len); i < len; i++) {
9823
- arr2[i] = arr[i];
9824
- }
9825
-
9826
- return arr2;
9827
- }
9828
- // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js
9829
-
9830
- function _arrayWithoutHoles(arr) {
9831
- if (Array.isArray(arr)) return _arrayLikeToArray(arr);
9832
- }
9833
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.js
9834
- var es_symbol = __webpack_require__("a4d3");
9835
-
9836
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.description.js
9837
- var es_symbol_description = __webpack_require__("e01a");
9838
-
9839
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.iterator.js
9840
- var es_symbol_iterator = __webpack_require__("d28b");
9841
-
9842
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.iterator.js
9843
- var es_array_iterator = __webpack_require__("e260");
9844
-
9845
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.iterator.js
9846
- var es_string_iterator = __webpack_require__("3ca3");
9847
-
9848
- // EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom-collections.iterator.js
9849
- var web_dom_collections_iterator = __webpack_require__("ddb0");
9850
-
9851
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.from.js
9852
- var es_array_from = __webpack_require__("a630");
9853
-
9854
- // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/iterableToArray.js
9855
-
9856
-
9857
-
9858
-
9859
-
9860
-
9861
-
9862
-
9863
- function _iterableToArray(iter) {
9864
- if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
9865
- }
9866
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.slice.js
9867
- var es_array_slice = __webpack_require__("fb6a");
9868
-
9869
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.test.js
9870
- var es_regexp_test = __webpack_require__("00b4");
9871
-
9872
- // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js
9873
-
9874
-
9875
-
9876
-
9877
-
9878
-
9879
-
9880
-
9881
- function _unsupportedIterableToArray(o, minLen) {
9882
- if (!o) return;
9883
- if (typeof o === "string") return _arrayLikeToArray(o, minLen);
9884
- var n = Object.prototype.toString.call(o).slice(8, -1);
9885
- if (n === "Object" && o.constructor) n = o.constructor.name;
9886
- if (n === "Map" || n === "Set") return Array.from(o);
9887
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
9888
- }
9889
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.error.cause.js
9890
- var es_error_cause = __webpack_require__("d9e2");
9891
-
9892
- // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js
9893
-
9894
- function _nonIterableSpread() {
9895
- throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
9896
- }
9897
- // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js
9898
-
9899
-
9900
-
9901
-
9902
- function _toConsumableArray(arr) {
9903
- return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
9904
- }
9905
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.find.js
9906
- var es_array_find = __webpack_require__("7db0");
9907
-
9908
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.filter.js
9909
- var es_array_filter = __webpack_require__("4de4");
9910
-
9911
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
9912
- var es_string_includes = __webpack_require__("2532");
9913
-
9914
8631
  // 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&
9915
8632
  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)}
9916
8633
  var SlideTogglevue_type_template_id_6ddd4cf0_staticRenderFns = []
@@ -9985,337 +8702,16 @@ var SlideToggle_component = normalizeComponent(
9985
8702
  )
9986
8703
 
9987
8704
  /* harmony default export */ var SlideToggle = (SlideToggle_component.exports);
9988
- // EXTERNAL MODULE: ./node_modules/v-click-outside/dist/v-click-outside.umd.js
9989
- var v_click_outside_umd = __webpack_require__("c28b");
9990
- var v_click_outside_umd_default = /*#__PURE__*/__webpack_require__.n(v_click_outside_umd);
8705
+ // 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&
8706
+
8707
+
8708
+
8709
+
8710
+
8711
+
8712
+
8713
+
9991
8714
 
9992
- // 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&
9993
- 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)}
9994
- var VerticalMobileTogglevue_type_template_id_0eccf0ba_staticRenderFns = []
9995
-
9996
-
9997
- // CONCATENATED MODULE: ./src/components/transitions/VerticalMobileToggle.vue?vue&type=template&id=0eccf0ba&
9998
-
9999
- // 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&
10000
-
10001
-
10002
-
10003
- //
10004
- //
10005
- //
10006
- //
10007
- //
10008
- //
10009
- //
10010
- //
10011
- //
10012
- //
10013
- //
10014
- /* harmony default export */ var VerticalMobileTogglevue_type_script_lang_js_ = ({
10015
- props: {
10016
- zIndex: {
10017
- type: Number,
10018
- default: 0
10019
- },
10020
- top: {
10021
- type: String,
10022
- default: "0%"
10023
- },
10024
- overflow: {
10025
- type: String,
10026
- default: "initial"
10027
- }
10028
- },
10029
- methods: {
10030
- beforeEnter: function beforeEnter(el) {
10031
- el.style.width = "0";
10032
- el.style.overflowX = "hidden";
10033
- el.style.overflowY = "hidden";
10034
- el.style.position = "fixed";
10035
- el.style.top = "0";
10036
- el.style.right = "0";
10037
- el.style.background = "#fff";
10038
- },
10039
- afterEnter: function afterEnter(el) {
10040
- el.style.height = "100vh";
10041
- el.style.width = "100vw";
10042
- el.style.overflowX = "hidden";
10043
- el.style.overflowY = "auto";
10044
- el.style.position = "fixed";
10045
- el.style.top = this.top;
10046
- el.style.right = "0";
10047
- el.style.background = "#fff";
10048
- el.style.zIndex = (90 + this.zIndex).toString();
10049
- },
10050
- beforeLeave: function beforeLeave(el) {
10051
- el.style.overflow = "hidden";
10052
- el.style.width = el.scrollHeight + "px";
10053
- el.scrollHeight;
10054
- },
10055
- leave: function leave(el) {
10056
- el.style.width = "0";
10057
- },
10058
- afterLeave: function afterLeave(el) {
10059
- el.style.position = "fixed";
10060
- el.style.top = "0";
10061
- el.style.right = "0";
10062
- el.style.width = "auto";
10063
- el.style.overflow = "initial";
10064
- }
10065
- }
10066
- });
10067
- // CONCATENATED MODULE: ./src/components/transitions/VerticalMobileToggle.vue?vue&type=script&lang=js&
10068
- /* harmony default export */ var transitions_VerticalMobileTogglevue_type_script_lang_js_ = (VerticalMobileTogglevue_type_script_lang_js_);
10069
- // EXTERNAL MODULE: ./src/components/transitions/VerticalMobileToggle.vue?vue&type=style&index=0&lang=css&
10070
- var VerticalMobileTogglevue_type_style_index_0_lang_css_ = __webpack_require__("da9d");
10071
-
10072
- // CONCATENATED MODULE: ./src/components/transitions/VerticalMobileToggle.vue
10073
-
10074
-
10075
-
10076
-
10077
-
10078
-
10079
- /* normalize component */
10080
-
10081
- var VerticalMobileToggle_component = normalizeComponent(
10082
- transitions_VerticalMobileTogglevue_type_script_lang_js_,
10083
- VerticalMobileTogglevue_type_template_id_0eccf0ba_render,
10084
- VerticalMobileTogglevue_type_template_id_0eccf0ba_staticRenderFns,
10085
- false,
10086
- null,
10087
- null,
10088
- null
10089
-
10090
- )
10091
-
10092
- /* harmony default export */ var VerticalMobileToggle = (VerticalMobileToggle_component.exports);
10093
- // 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&
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
- //
10311
- //
10312
- //
10313
- //
10314
- //
10315
- //
10316
- //
10317
- //
10318
- //
10319
8715
  //
10320
8716
  //
10321
8717
  //
@@ -10398,6 +8794,156 @@ var VerticalMobileToggle_component = normalizeComponent(
10398
8794
  //
10399
8795
  //
10400
8796
  //
8797
+
8798
+
8799
+ /* harmony default export */ var ProfileMobilevue_type_script_lang_js_ = ({
8800
+ name: "ProfileMobile",
8801
+ props: {
8802
+ email: {
8803
+ type: String,
8804
+ required: true
8805
+ },
8806
+ balance: {
8807
+ type: [Number, String],
8808
+ default: ""
8809
+ },
8810
+ rate: {
8811
+ type: String,
8812
+ default: 'Базовый'
8813
+ },
8814
+ limitRemaining: {
8815
+ type: Number,
8816
+ default: 0
8817
+ },
8818
+ daysLeft: {
8819
+ type: String,
8820
+ defailt: ""
8821
+ },
8822
+ mode: {
8823
+ type: String,
8824
+ required: true
8825
+ },
8826
+ activeTabKey: {
8827
+ type: String,
8828
+ default: ""
8829
+ }
8830
+ },
8831
+ components: {
8832
+ SlideToggle: SlideToggle
8833
+ },
8834
+ data: function data() {
8835
+ return {
8836
+ profileDropDown: profileDropDown
8837
+ };
8838
+ },
8839
+ mounted: function mounted() {
8840
+ var _this = this;
8841
+
8842
+ var item = this.activeTabKey ? this.profileDropDown.find(function (el) {
8843
+ return el.key && el.key.includes(_this.activeTabKey);
8844
+ }) : null;
8845
+ if (item) this.$set(item, 'opened', true);
8846
+ },
8847
+ methods: {
8848
+ openOneCloseOthers: function openOneCloseOthers(id) {
8849
+ var _this2 = this;
8850
+
8851
+ var array = this.profileDropDown.filter(function (el) {
8852
+ return el.children;
8853
+ });
8854
+ array.forEach(function (el, idx) {
8855
+ if (id === idx) _this2.$set(el, 'opened', !el.opened);else _this2.$set(el, 'opened', false);
8856
+ });
8857
+ },
8858
+ showModal: function showModal(url) {
8859
+ var _this3 = this;
8860
+
8861
+ return _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
8862
+ return regeneratorRuntime.wrap(function _callee$(_context) {
8863
+ while (1) {
8864
+ switch (_context.prev = _context.next) {
8865
+ case 0:
8866
+ if (!window.location.href.includes(url)) {
8867
+ _context.next = 5;
8868
+ break;
8869
+ }
8870
+
8871
+ _this3.$emit("setIsReplenishModal", true);
8872
+
8873
+ _this3.setShowModal(true);
8874
+
8875
+ _context.next = 7;
8876
+ break;
8877
+
8878
+ case 5:
8879
+ _context.next = 7;
8880
+ return window.open(url + "&modal=show", "_blank");
8881
+
8882
+ case 7:
8883
+ case "end":
8884
+ return _context.stop();
8885
+ }
8886
+ }
8887
+ }, _callee);
8888
+ }))();
8889
+ }
8890
+ }
8891
+ });
8892
+ // CONCATENATED MODULE: ./src/components/Header/ProfileMobile.vue?vue&type=script&lang=js&
8893
+ /* harmony default export */ var Header_ProfileMobilevue_type_script_lang_js_ = (ProfileMobilevue_type_script_lang_js_);
8894
+ // EXTERNAL MODULE: ./src/components/Header/ProfileMobile.vue?vue&type=style&index=0&id=05876c4f&lang=scss&scoped=true&
8895
+ var ProfileMobilevue_type_style_index_0_id_05876c4f_lang_scss_scoped_true_ = __webpack_require__("fce9");
8896
+
8897
+ // CONCATENATED MODULE: ./src/components/Header/ProfileMobile.vue
8898
+
8899
+
8900
+
8901
+
8902
+
8903
+
8904
+ /* normalize component */
8905
+
8906
+ var ProfileMobile_component = normalizeComponent(
8907
+ Header_ProfileMobilevue_type_script_lang_js_,
8908
+ ProfileMobilevue_type_template_id_05876c4f_scoped_true_render,
8909
+ ProfileMobilevue_type_template_id_05876c4f_scoped_true_staticRenderFns,
8910
+ false,
8911
+ null,
8912
+ "05876c4f",
8913
+ null
8914
+
8915
+ )
8916
+
8917
+ /* harmony default export */ var ProfileMobile = (ProfileMobile_component.exports);
8918
+ // 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&
8919
+ 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){
8920
+ var animationClass = ref.animationClass;
8921
+ 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
8922
+ ? 'profile-menu__balance-link'
8923
+ : '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){
8924
+ var animationClass = ref.animationClass;
8925
+ 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)])}
8926
+ var Profilevue_type_template_id_2281a97e_staticRenderFns = []
8927
+
8928
+
8929
+ // CONCATENATED MODULE: ./src/components/Header/Profile.vue?vue&type=template&id=2281a97e&
8930
+
8931
+ // EXTERNAL MODULE: ./node_modules/v-click-outside/dist/v-click-outside.umd.js
8932
+ var v_click_outside_umd = __webpack_require__("c28b");
8933
+ var v_click_outside_umd_default = /*#__PURE__*/__webpack_require__.n(v_click_outside_umd);
8934
+
8935
+ // 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&
8936
+
8937
+
8938
+
8939
+
8940
+
8941
+
8942
+
8943
+
8944
+
8945
+
8946
+
10401
8947
  //
10402
8948
  //
10403
8949
  //
@@ -10581,10 +9127,6 @@ var VerticalMobileToggle_component = normalizeComponent(
10581
9127
  return ["prod", "dev", "staging"].indexOf(value) !== -1;
10582
9128
  }
10583
9129
  },
10584
- profileDropDown: {
10585
- type: Array,
10586
- required: true
10587
- },
10588
9130
  isAuthenticated: {
10589
9131
  type: Boolean,
10590
9132
  default: false
@@ -10602,45 +9144,43 @@ var VerticalMobileToggle_component = normalizeComponent(
10602
9144
  type: String,
10603
9145
  default: "",
10604
9146
  required: true
9147
+ },
9148
+ rate: {
9149
+ type: String,
9150
+ default: ""
9151
+ },
9152
+ balance: {
9153
+ type: [Number, String],
9154
+ default: 0
10605
9155
  }
10606
9156
  },
10607
9157
  components: {
10608
- SlideToggle: SlideToggle,
10609
- MobileToggle: VerticalMobileToggle
9158
+ SlideToggle: SlideToggle
10610
9159
  },
10611
9160
  data: function data() {
10612
9161
  return {
9162
+ profileDropDown: profileDropDown,
10613
9163
  active: false,
10614
- listDropDown: [],
10615
9164
  chosenElem: {
10616
9165
  children: []
10617
9166
  }
10618
9167
  };
10619
9168
  },
10620
9169
  mounted: function mounted() {
10621
- if (this.profileDropDown && this.profileDropDown.length > 0) {
10622
- this.listDropDown = _toConsumableArray(this.profileDropDown);
10623
- }
9170
+ var _this = this;
10624
9171
 
10625
- if (this.activeTabKey === "counterparty" && window && window.innerWidth > 850) {
10626
- this.chosenElem = this.listDropDown.find(function (el) {
10627
- return el.name === "Контрагенты";
10628
- });
10629
- } else if (this.activeTabKey === "tenders" && window && window.innerWidth > 850) {
10630
- this.chosenElem = this.listDropDown.find(function (el) {
10631
- return el.name === "Тендеры";
10632
- });
10633
- } else if (this.activeTabKey === "work" && window && window.innerWidth > 850) {
10634
- this.chosenElem = this.listDropDown.find(function (el) {
10635
- return el.name === "Работа";
10636
- });
10637
- }
9172
+ var item = this.activeTabKey ? this.profileDropDown.find(function (el) {
9173
+ return el.key && el.key.includes(_this.activeTabKey);
9174
+ }) : null;
10638
9175
 
10639
- this.chosenElem.opened = true;
9176
+ if (item && window && window.innerWidth > 850) {
9177
+ this.chosenElem = item;
9178
+ this.chosenElem.opened = true;
9179
+ }
10640
9180
  },
10641
9181
  computed: {
10642
9182
  someMobileOpened: function someMobileOpened() {
10643
- return this.listDropDown.filter(function (el) {
9183
+ return this.profileDropDown.filter(function (el) {
10644
9184
  return el.opened && el.children.length > 0;
10645
9185
  });
10646
9186
  }
@@ -10658,7 +9198,7 @@ var VerticalMobileToggle_component = normalizeComponent(
10658
9198
  }
10659
9199
  },
10660
9200
  showModal: function showModal(url, name) {
10661
- var _this = this;
9201
+ var _this2 = this;
10662
9202
 
10663
9203
  return _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
10664
9204
  return regeneratorRuntime.wrap(function _callee$(_context) {
@@ -10675,9 +9215,9 @@ var VerticalMobileToggle_component = normalizeComponent(
10675
9215
  break;
10676
9216
  }
10677
9217
 
10678
- _this.$emit("setIsReplenishModal", true);
9218
+ _this2.$emit("setIsReplenishModal", true);
10679
9219
 
10680
- _this.setShowModal(true);
9220
+ _this2.setShowModal(true);
10681
9221
 
10682
9222
  _context.next = 8;
10683
9223
  break;
@@ -10696,13 +9236,21 @@ var VerticalMobileToggle_component = normalizeComponent(
10696
9236
  },
10697
9237
  handleClick: function handleClick(url, name) {
10698
9238
  if (!name.includes("Текущий")) {
10699
- window.open(url, "_self"); // this.active = false;
10700
- // if (this.chosenElem) this.chosenElem.opened = false;
9239
+ window.open(url, "_self");
10701
9240
  }
10702
9241
  },
10703
9242
  rotateItem: function rotateItem(index) {
10704
- this.chosenElem = this.listDropDown[index];
10705
- this.$set(this.listDropDown[index], "opened", !this.listDropDown[index].opened);
9243
+ var _this3 = this;
9244
+
9245
+ this.chosenElem = this.profileDropDown[index];
9246
+ var array = this.profileDropDown;
9247
+ array.forEach(function (el, idx) {
9248
+ if (index === idx) {
9249
+ console.log(!el.opened);
9250
+
9251
+ _this3.$set(el, 'opened', !el.opened);
9252
+ } else _this3.$set(el, 'opened', false);
9253
+ });
10706
9254
  },
10707
9255
  goAuth: function goAuth() {
10708
9256
  var fullPath = encodeURIComponent(window.location.toString());
@@ -10718,7 +9266,108 @@ var VerticalMobileToggle_component = normalizeComponent(
10718
9266
  // EXTERNAL MODULE: ./src/components/Header/Profile.vue?vue&type=style&index=0&lang=scss&
10719
9267
  var Profilevue_type_style_index_0_lang_scss_ = __webpack_require__("ee80");
10720
9268
 
10721
- // CONCATENATED MODULE: ./src/components/Header/Profile.vue
9269
+ // CONCATENATED MODULE: ./src/components/Header/Profile.vue
9270
+
9271
+
9272
+
9273
+
9274
+
9275
+
9276
+ /* normalize component */
9277
+
9278
+ var Profile_component = normalizeComponent(
9279
+ Header_Profilevue_type_script_lang_js_,
9280
+ Profilevue_type_template_id_2281a97e_render,
9281
+ Profilevue_type_template_id_2281a97e_staticRenderFns,
9282
+ false,
9283
+ null,
9284
+ null,
9285
+ null
9286
+
9287
+ )
9288
+
9289
+ /* harmony default export */ var Profile = (Profile_component.exports);
9290
+ // 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&
9291
+ 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)}
9292
+ var VerticalMobileTogglevue_type_template_id_0eccf0ba_staticRenderFns = []
9293
+
9294
+
9295
+ // CONCATENATED MODULE: ./src/components/transitions/VerticalMobileToggle.vue?vue&type=template&id=0eccf0ba&
9296
+
9297
+ // 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&
9298
+
9299
+
9300
+
9301
+ //
9302
+ //
9303
+ //
9304
+ //
9305
+ //
9306
+ //
9307
+ //
9308
+ //
9309
+ //
9310
+ //
9311
+ //
9312
+ /* harmony default export */ var VerticalMobileTogglevue_type_script_lang_js_ = ({
9313
+ props: {
9314
+ zIndex: {
9315
+ type: Number,
9316
+ default: 0
9317
+ },
9318
+ top: {
9319
+ type: String,
9320
+ default: "0%"
9321
+ },
9322
+ overflow: {
9323
+ type: String,
9324
+ default: "initial"
9325
+ }
9326
+ },
9327
+ methods: {
9328
+ beforeEnter: function beforeEnter(el) {
9329
+ el.style.width = "0";
9330
+ el.style.overflowX = "hidden";
9331
+ el.style.overflowY = "hidden";
9332
+ el.style.position = "fixed";
9333
+ el.style.top = "0";
9334
+ el.style.right = "0";
9335
+ el.style.background = "#fff";
9336
+ },
9337
+ afterEnter: function afterEnter(el) {
9338
+ el.style.height = "100vh";
9339
+ el.style.width = "100vw";
9340
+ el.style.overflowX = "hidden";
9341
+ el.style.overflowY = "auto";
9342
+ el.style.position = "fixed";
9343
+ el.style.top = this.top;
9344
+ el.style.right = "0";
9345
+ el.style.background = "#fff";
9346
+ el.style.zIndex = (90 + this.zIndex).toString();
9347
+ },
9348
+ beforeLeave: function beforeLeave(el) {
9349
+ el.style.overflow = "hidden";
9350
+ el.style.width = el.scrollHeight + "px";
9351
+ el.scrollHeight;
9352
+ },
9353
+ leave: function leave(el) {
9354
+ el.style.width = "0";
9355
+ },
9356
+ afterLeave: function afterLeave(el) {
9357
+ el.style.position = "fixed";
9358
+ el.style.top = "0";
9359
+ el.style.right = "0";
9360
+ el.style.width = "auto";
9361
+ el.style.overflow = "initial";
9362
+ }
9363
+ }
9364
+ });
9365
+ // CONCATENATED MODULE: ./src/components/transitions/VerticalMobileToggle.vue?vue&type=script&lang=js&
9366
+ /* harmony default export */ var transitions_VerticalMobileTogglevue_type_script_lang_js_ = (VerticalMobileTogglevue_type_script_lang_js_);
9367
+ // EXTERNAL MODULE: ./src/components/transitions/VerticalMobileToggle.vue?vue&type=style&index=0&lang=css&
9368
+ var VerticalMobileTogglevue_type_style_index_0_lang_css_ = __webpack_require__("da9d");
9369
+
9370
+ // CONCATENATED MODULE: ./src/components/transitions/VerticalMobileToggle.vue
10722
9371
 
10723
9372
 
10724
9373
 
@@ -10727,10 +9376,10 @@ var Profilevue_type_style_index_0_lang_scss_ = __webpack_require__("ee80");
10727
9376
 
10728
9377
  /* normalize component */
10729
9378
 
10730
- var Profile_component = normalizeComponent(
10731
- Header_Profilevue_type_script_lang_js_,
10732
- Profilevue_type_template_id_67e27faa_render,
10733
- Profilevue_type_template_id_67e27faa_staticRenderFns,
9379
+ var VerticalMobileToggle_component = normalizeComponent(
9380
+ transitions_VerticalMobileTogglevue_type_script_lang_js_,
9381
+ VerticalMobileTogglevue_type_template_id_0eccf0ba_render,
9382
+ VerticalMobileTogglevue_type_template_id_0eccf0ba_staticRenderFns,
10734
9383
  false,
10735
9384
  null,
10736
9385
  null,
@@ -10738,7 +9387,7 @@ var Profile_component = normalizeComponent(
10738
9387
 
10739
9388
  )
10740
9389
 
10741
- /* harmony default export */ var Profile = (Profile_component.exports);
9390
+ /* harmony default export */ var VerticalMobileToggle = (VerticalMobileToggle_component.exports);
10742
9391
  // 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&
10743
9392
  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)}
10744
9393
  var InfoHeadervue_type_template_id_1640a06a_scoped_true_staticRenderFns = []
@@ -11250,6 +9899,189 @@ var InfoHeader_component = normalizeComponent(
11250
9899
  //
11251
9900
  //
11252
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
+ //
10076
+ //
10077
+ //
10078
+ //
10079
+ //
10080
+ //
10081
+ //
10082
+ //
10083
+ //
10084
+ //
11253
10085
 
11254
10086
 
11255
10087
 
@@ -11258,9 +10090,16 @@ var InfoHeader_component = normalizeComponent(
11258
10090
  components: {
11259
10091
  InfoHeader: InfoHeader,
11260
10092
  Profile: Profile,
11261
- MobileToggle: VerticalMobileToggle
10093
+ MobileToggle: VerticalMobileToggle,
10094
+ ProfileMobile: ProfileMobile
11262
10095
  },
11263
10096
  props: {
10097
+ rate: {
10098
+ type: String,
10099
+ validator: function validator(value) {
10100
+ return ['basic', 'basic_plus', 'adata_pro', 'adata', 'vip'].indexOf(value) !== -1;
10101
+ }
10102
+ },
11264
10103
  mode: {
11265
10104
  type: String,
11266
10105
  required: true,
@@ -11313,7 +10152,14 @@ var InfoHeader_component = normalizeComponent(
11313
10152
  },
11314
10153
  data: function data() {
11315
10154
  return {
11316
- profileDropDown: profileDropDown,
10155
+ isActiveMenu: false,
10156
+ rateCodes: {
10157
+ basic: 'Базовый',
10158
+ basic_plus: 'Базовый+',
10159
+ adata: 'Adata',
10160
+ adata_pro: 'Adata Pro',
10161
+ vip: 'VIP'
10162
+ },
11317
10163
  main: {
11318
10164
  dev: "https://adtdev.kz",
11319
10165
  prod: "https://adata.kz",
@@ -11367,15 +10213,16 @@ var InfoHeader_component = normalizeComponent(
11367
10213
  this.fetchCurrencies();
11368
10214
  },
11369
10215
  mounted: function mounted() {
11370
- this.setBalance(this.balance);
11371
10216
  this.notificationShow();
11372
10217
  },
11373
- watch: {
11374
- balance: function balance(newBalance) {
11375
- this.setBalance(newBalance);
11376
- }
11377
- },
11378
10218
  methods: {
10219
+ goAuth: function goAuth() {
10220
+ var fullPath = encodeURIComponent(window.location.toString());
10221
+
10222
+ if (window) {
10223
+ window.location.href = "".concat(this.loginUrl, "?url=").concat(fullPath);
10224
+ }
10225
+ },
11379
10226
  fetchNotification: function fetchNotification() {
11380
10227
  var _this = this;
11381
10228
 
@@ -11523,14 +10370,10 @@ var InfoHeader_component = normalizeComponent(
11523
10370
  this.isOpenNotification = !option;
11524
10371
  },
11525
10372
  changeValue: function changeValue() {
10373
+ this.isActiveMenu = false;
11526
10374
  this.isOpen = !this.isOpen;
11527
10375
  this.$emit("menuOpen", this.isOpen);
11528
10376
  },
11529
- setBalance: function setBalance(balance) {
11530
- if (balance !== 0) {
11531
- this.profileDropDown[2].name = "Текущий баланс: " + this.thousandSeparator(balance) + " ₸";
11532
- }
11533
- },
11534
10377
  thousandSeparator: function thousandSeparator(val) {
11535
10378
  return val ? val.toString().replace(/\B(?=(\d{3})+(?!\d))/g, " ") : "";
11536
10379
  },
@@ -11567,8 +10410,8 @@ var Headervue_type_style_index_0_lang_scss_ = __webpack_require__("52f3");
11567
10410
 
11568
10411
  var Header_component = normalizeComponent(
11569
10412
  Header_Headervue_type_script_lang_js_,
11570
- Headervue_type_template_id_d0150058_render,
11571
- Headervue_type_template_id_d0150058_staticRenderFns,
10413
+ Headervue_type_template_id_b2e7b93e_render,
10414
+ Headervue_type_template_id_b2e7b93e_staticRenderFns,
11572
10415
  false,
11573
10416
  null,
11574
10417
  null,
@@ -11984,6 +10827,9 @@ var es_regexp_dot_all = __webpack_require__("c607");
11984
10827
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.sticky.js
11985
10828
  var es_regexp_sticky = __webpack_require__("2c3e");
11986
10829
 
10830
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.test.js
10831
+ var es_regexp_test = __webpack_require__("00b4");
10832
+
11987
10833
  // 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&
11988
10834
  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:{
11989
10835
  'loader--global': _vm.global,
@@ -12506,64 +11352,6 @@ Object.keys(Components).forEach(function (name) {
12506
11352
 
12507
11353
 
12508
11354
 
12509
- /***/ }),
12510
-
12511
- /***/ "fb6a":
12512
- /***/ (function(module, exports, __webpack_require__) {
12513
-
12514
- "use strict";
12515
-
12516
- var $ = __webpack_require__("23e7");
12517
- var global = __webpack_require__("da84");
12518
- var isArray = __webpack_require__("e8b5");
12519
- var isConstructor = __webpack_require__("68ee");
12520
- var isObject = __webpack_require__("861d");
12521
- var toAbsoluteIndex = __webpack_require__("23cb");
12522
- var lengthOfArrayLike = __webpack_require__("07fa");
12523
- var toIndexedObject = __webpack_require__("fc6a");
12524
- var createProperty = __webpack_require__("8418");
12525
- var wellKnownSymbol = __webpack_require__("b622");
12526
- var arrayMethodHasSpeciesSupport = __webpack_require__("1dde");
12527
- var un$Slice = __webpack_require__("f36a");
12528
-
12529
- var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');
12530
-
12531
- var SPECIES = wellKnownSymbol('species');
12532
- var Array = global.Array;
12533
- var max = Math.max;
12534
-
12535
- // `Array.prototype.slice` method
12536
- // https://tc39.es/ecma262/#sec-array.prototype.slice
12537
- // fallback for not array-like ES3 strings and DOM objects
12538
- $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
12539
- slice: function slice(start, end) {
12540
- var O = toIndexedObject(this);
12541
- var length = lengthOfArrayLike(O);
12542
- var k = toAbsoluteIndex(start, length);
12543
- var fin = toAbsoluteIndex(end === undefined ? length : end, length);
12544
- // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible
12545
- var Constructor, result, n;
12546
- if (isArray(O)) {
12547
- Constructor = O.constructor;
12548
- // cross-realm fallback
12549
- if (isConstructor(Constructor) && (Constructor === Array || isArray(Constructor.prototype))) {
12550
- Constructor = undefined;
12551
- } else if (isObject(Constructor)) {
12552
- Constructor = Constructor[SPECIES];
12553
- if (Constructor === null) Constructor = undefined;
12554
- }
12555
- if (Constructor === Array || Constructor === undefined) {
12556
- return un$Slice(O, k, fin);
12557
- }
12558
- }
12559
- result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0));
12560
- for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);
12561
- result.length = n;
12562
- return result;
12563
- }
12564
- });
12565
-
12566
-
12567
11355
  /***/ }),
12568
11356
 
12569
11357
  /***/ "fc6a":
@@ -12595,6 +11383,17 @@ module.exports = fails(function () {
12595
11383
  });
12596
11384
 
12597
11385
 
11386
+ /***/ }),
11387
+
11388
+ /***/ "fce9":
11389
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
11390
+
11391
+ "use strict";
11392
+ /* 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");
11393
+ /* 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__);
11394
+ /* unused harmony reexport * */
11395
+
11396
+
12598
11397
  /***/ }),
12599
11398
 
12600
11399
  /***/ "fdbc":