adata-ui 0.1.77 → 0.1.80

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