adata-ui 0.1.79 → 0.1.82

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