@@ -1165,7 +1165,7 @@ var shared$1 = createCommonjsModule(function (module) {
1165
1165
(module.exports = function (key, value) {
1166
1166
return sharedStore$1[key] || (sharedStore$1[key] = value !== undefined ? value : {});
1167
1167
})('versions', []).push({
1168
- version: '3.3.4 ',
1168
+ version: '3.4.1 ',
1169
1169
mode: 'pure' ,
1170
1170
copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
1171
1171
});
@@ -16029,7 +16029,7 @@ var mixin_1 = mixin;
16029
16029
16030
16030
var coreuiUtilities = createCommonjsModule(function (module, exports) {
16031
16031
/*!
16032
- * CoreUI v3.0.0-beta.2 (https://coreui.io)
16032
+ * CoreUI v3.0.0-beta.3 (https://coreui.io)
16033
16033
* Copyright 2019 Łukasz Holeczek
16034
16034
* Licensed under MIT (https://coreui.io)
16035
16035
*/
@@ -16038,7 +16038,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
16038
16038
}(commonjsGlobal, (function (exports) {
16039
16039
/**
16040
16040
* --------------------------------------------------------------------------
16041
- * CoreUI Utilities (v3.0.0-beta.2 ): classes.js
16041
+ * CoreUI Utilities (v3.0.0-beta.3 ): classes.js
16042
16042
* Licensed under MIT (https://coreui.io/license)
16043
16043
* --------------------------------------------------------------------------
16044
16044
*/
@@ -16051,7 +16051,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
16051
16051
16052
16052
/**
16053
16053
* --------------------------------------------------------------------------
16054
- * CoreUI Utilities (v3.0.0-beta.2 ): deep-objects-merge.js
16054
+ * CoreUI Utilities (v3.0.0-beta.3 ): deep-objects-merge.js
16055
16055
* Licensed under MIT (https://coreui.io/license)
16056
16056
* --------------------------------------------------------------------------
16057
16057
*/
@@ -16072,7 +16072,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
16072
16072
16073
16073
/**
16074
16074
* --------------------------------------------------------------------------
16075
- * CoreUI Utilities (v3.0.0-beta.2 ): get-css-custom-properties.js
16075
+ * CoreUI Utilities (v3.0.0-beta.3 ): get-css-custom-properties.js
16076
16076
* Licensed under MIT (https://coreui.io/license)
16077
16077
* @returns {string} css custom property name
16078
16078
* --------------------------------------------------------------------------
@@ -16115,7 +16115,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
16115
16115
16116
16116
/**
16117
16117
* --------------------------------------------------------------------------
16118
- * CoreUI Utilities (v3.0.0-beta.2 ): get-style.js
16118
+ * CoreUI Utilities (v3.0.0-beta.3 ): get-style.js
16119
16119
* Licensed under MIT (https://coreui.io/license)
16120
16120
* --------------------------------------------------------------------------
16121
16121
*/
@@ -16148,7 +16148,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
16148
16148
16149
16149
/**
16150
16150
* --------------------------------------------------------------------------
16151
- * CoreUI Utilities (v3.0.0-beta.2 ): get-color.js
16151
+ * CoreUI Utilities (v3.0.0-beta.3 ): get-color.js
16152
16152
* Licensed under MIT (https://coreui.io/license)
16153
16153
* --------------------------------------------------------------------------
16154
16154
*/
@@ -16165,7 +16165,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
16165
16165
16166
16166
/**
16167
16167
* --------------------------------------------------------------------------
16168
- * CoreUI Utilities (v3.0.0-beta.2 ): hex-to-rgb.js
16168
+ * CoreUI Utilities (v3.0.0-beta.3 ): hex-to-rgb.js
16169
16169
* Licensed under MIT (https://coreui.io/license)
16170
16170
* --------------------------------------------------------------------------
16171
16171
*/
@@ -16201,7 +16201,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
16201
16201
16202
16202
/**
16203
16203
* --------------------------------------------------------------------------
16204
- * CoreUI Utilities (v3.0.0-beta.2 ): hex-to-rgba.js
16204
+ * CoreUI Utilities (v3.0.0-beta.3 ): hex-to-rgba.js
16205
16205
* Licensed under MIT (https://coreui.io/license)
16206
16206
* --------------------------------------------------------------------------
16207
16207
*/
@@ -16241,7 +16241,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
16241
16241
16242
16242
/**
16243
16243
* --------------------------------------------------------------------------
16244
- * CoreUI (v3.0.0-beta.2 ): rgb-to-hex.js
16244
+ * CoreUI (v3.0.0-beta.3 ): rgb-to-hex.js
16245
16245
* Licensed under MIT (https://coreui.io/license)
16246
16246
* --------------------------------------------------------------------------
16247
16247
*/
@@ -19156,8 +19156,11 @@ if (v8$1) {
19156
19156
match$1 = v8$1.split('.');
19157
19157
version$2 = match$1[0] + match$1[1];
19158
19158
} else if (userAgent$1) {
19159
- match$1 = userAgent$1.match(/Chrome\/(\d+)/);
19160
- if (match$1) version$2 = match$1[1];
19159
+ match$1 = userAgent$1.match(/Edge\/(\d+)/);
19160
+ if (!match$1 || match$1[1] >= 74) {
19161
+ match$1 = userAgent$1.match(/Chrome\/(\d+)/);
19162
+ if (match$1) version$2 = match$1[1];
19163
+ }
19161
19164
}
19162
19165
19163
19166
var v8Version$1 = version$2 && +version$2;
@@ -19182,7 +19185,10 @@ var IS_CONCAT_SPREADABLE$1 = wellKnownSymbol$1('isConcatSpreadable');
19182
19185
var MAX_SAFE_INTEGER$1 = 0x1FFFFFFFFFFFFF;
19183
19186
var MAXIMUM_ALLOWED_INDEX_EXCEEDED$1 = 'Maximum allowed index exceeded';
19184
19187
19185
- var IS_CONCAT_SPREADABLE_SUPPORT$1 = !fails$1(function () {
19188
+ // We can't use this feature detection in V8 since it causes
19189
+ // deoptimization and serious performance degradation
19190
+ // https://github.com/zloirock/core-js/issues/679
19191
+ var IS_CONCAT_SPREADABLE_SUPPORT$1 = v8Version$1 >= 51 || !fails$1(function () {
19186
19192
var array = [];
19187
19193
array[IS_CONCAT_SPREADABLE$1] = false;
19188
19194
return array.concat()[0] !== array;
@@ -19337,8 +19343,7 @@ var setInternalState$2 = internalState$1.set;
19337
19343
var getInternalState$2 = internalState$1.getterFor(SYMBOL);
19338
19344
var ObjectPrototype$2 = Object[PROTOTYPE$2];
19339
19345
var $Symbol = global_1$1.Symbol;
19340
- var JSON$1 = global_1$1.JSON;
19341
- var nativeJSONStringify = JSON$1 && JSON$1.stringify;
19346
+ var $stringify = getBuiltIn$1('JSON', 'stringify');
19342
19347
var nativeGetOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor$1.f;
19343
19348
var nativeDefineProperty$2 = objectDefineProperty$1.f;
19344
19349
var nativeGetOwnPropertyNames$1 = objectGetOwnPropertyNamesExternal.f;
@@ -19556,30 +19561,35 @@ _export$1({ target: 'Object', stat: true, forced: fails$1(function () { objectGe
19556
19561
19557
19562
// `JSON.stringify` method behavior with symbols
19558
19563
// https://tc39.github.io/ecma262/#sec-json.stringify
19559
- JSON$1 && _export$1({ target: 'JSON', stat: true, forced: !nativeSymbol$1 || fails$1(function () {
19560
- var symbol = $Symbol();
19561
- // MS Edge converts symbol values to JSON as {}
19562
- return nativeJSONStringify([symbol]) != '[null]'
19563
- // WebKit converts symbol values to JSON as null
19564
- || nativeJSONStringify({ a: symbol }) != '{}'
19565
- // V8 throws on boxed symbols
19566
- || nativeJSONStringify(Object(symbol)) != '{}';
19567
- }) }, {
19568
- stringify: function stringify(it) {
19569
- var args = [it];
19570
- var index = 1;
19571
- var replacer, $replacer;
19572
- while (arguments.length > index) args.push(arguments[index++]);
19573
- $replacer = replacer = args[1];
19574
- if (!isObject$1(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined
19575
- if (!isArray(replacer)) replacer = function (key, value) {
19576
- if (typeof $replacer == 'function') value = $replacer.call(this, key, value);
19577
- if (!isSymbol(value)) return value;
19578
- };
19579
- args[1] = replacer;
19580
- return nativeJSONStringify.apply(JSON$1, args);
19581
- }
19582
- });
19564
+ if ($stringify) {
19565
+ var FORCED_JSON_STRINGIFY = !nativeSymbol$1 || fails$1(function () {
19566
+ var symbol = $Symbol();
19567
+ // MS Edge converts symbol values to JSON as {}
19568
+ return $stringify([symbol]) != '[null]'
19569
+ // WebKit converts symbol values to JSON as null
19570
+ || $stringify({ a: symbol }) != '{}'
19571
+ // V8 throws on boxed symbols
19572
+ || $stringify(Object(symbol)) != '{}';
19573
+ });
19574
+
19575
+ _export$1({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, {
19576
+ // eslint-disable-next-line no-unused-vars
19577
+ stringify: function stringify(it, replacer, space) {
19578
+ var args = [it];
19579
+ var index = 1;
19580
+ var $replacer;
19581
+ while (arguments.length > index) args.push(arguments[index++]);
19582
+ $replacer = replacer;
19583
+ if (!isObject$1(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined
19584
+ if (!isArray(replacer)) replacer = function (key, value) {
19585
+ if (typeof $replacer == 'function') value = $replacer.call(this, key, value);
19586
+ if (!isSymbol(value)) return value;
19587
+ };
19588
+ args[1] = replacer;
19589
+ return $stringify.apply(null, args);
19590
+ }
19591
+ });
19592
+ }
19583
19593
19584
19594
// `Symbol.prototype[@@toPrimitive]` method
19585
19595
// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@toprimitive
@@ -25860,7 +25870,7 @@ var script$1f = {
25860
25870
}
25861
25871
};
25862
25872
25863
- var css$4 = "\n.transparent[data-v-6fbaf243 ] {\r\n opacity: 0.4;\n}\n.icon-transition[data-v-6fbaf243 ] {\r\n -webkit-transition: transform 0.3s;\r\n -webkit-transition: -webkit-transform 0.3s;\r\n transition: -webkit-transform 0.3s;\r\n transition: transform 0.3s;\r\n transition: transform 0.3s, -webkit-transform 0.3s;\n}\n.arrow-position[data-v-6fbaf243 ] {\r\n right: 0;\r\n top: 50%;\r\n -webkit-transform: translateY(-50%);\r\n transform: translateY(-50%);\n}\n.rotate-icon[data-v-6fbaf243 ] {\r\n -webkit-transform: translateY(-50%) rotate(-180deg);\r\n transform: translateY(-50%) rotate(-180deg);\n}\r\n";
25873
+ var css$4 = "\n.transparent[data-v-12527458 ] {\r\n opacity: 0.4;\n}\n.icon-transition[data-v-12527458 ] {\r\n -webkit-transition: transform 0.3s;\r\n -webkit-transition: -webkit-transform 0.3s;\r\n transition: -webkit-transform 0.3s;\r\n transition: transform 0.3s;\r\n transition: transform 0.3s, -webkit-transform 0.3s;\n}\n.arrow-position[data-v-12527458 ] {\r\n right: 0;\r\n top: 50%;\r\n -webkit-transform: translateY(-50%);\r\n transform: translateY(-50%);\n}\n.rotate-icon[data-v-12527458 ] {\r\n -webkit-transform: translateY(-50%) rotate(-180deg);\r\n transform: translateY(-50%) rotate(-180deg);\n}\r\n";
25864
25874
styleInject(css$4);
25865
25875
25866
25876
/* script */
@@ -26343,7 +26353,7 @@ __vue_render__$I._withStripped = true;
26343
26353
/* style */
26344
26354
const __vue_inject_styles__$1f = undefined;
26345
26355
/* scoped */
26346
- const __vue_scope_id__$1f = "data-v-6fbaf243 ";
26356
+ const __vue_scope_id__$1f = "data-v-12527458 ";
26347
26357
/* module identifier */
26348
26358
const __vue_module_identifier__$1f = undefined;
26349
26359
/* functional template */
@@ -26795,7 +26805,7 @@ var setInternalState$4 = internalState.set;
26795
26805
var getInternalState$4 = internalState.getterFor(SYMBOL$1);
26796
26806
var ObjectPrototype$4 = Object[PROTOTYPE$3];
26797
26807
var $Symbol$1 = global_1.Symbol;
26798
- var $stringify = getBuiltIn('JSON', 'stringify');
26808
+ var $stringify$1 = getBuiltIn('JSON', 'stringify');
26799
26809
var nativeGetOwnPropertyDescriptor$3 = objectGetOwnPropertyDescriptor.f;
26800
26810
var nativeDefineProperty$3 = objectDefineProperty.f;
26801
26811
var nativeGetOwnPropertyNames$3 = objectGetOwnPropertyNamesExternal$1.f;
@@ -27016,18 +27026,18 @@ _export({ target: 'Object', stat: true, forced: fails(function () { objectGetOwn
27016
27026
27017
27027
// `JSON.stringify` method behavior with symbols
27018
27028
// https://tc39.github.io/ecma262/#sec-json.stringify
27019
- if ($stringify) {
27020
- var FORCED_JSON_STRINGIFY = !nativeSymbol || fails(function () {
27029
+ if ($stringify$1 ) {
27030
+ var FORCED_JSON_STRINGIFY$1 = !nativeSymbol || fails(function () {
27021
27031
var symbol = $Symbol$1();
27022
27032
// MS Edge converts symbol values to JSON as {}
27023
- return $stringify([symbol]) != '[null]'
27033
+ return $stringify$1 ([symbol]) != '[null]'
27024
27034
// WebKit converts symbol values to JSON as null
27025
- || $stringify({ a: symbol }) != '{}'
27035
+ || $stringify$1 ({ a: symbol }) != '{}'
27026
27036
// V8 throws on boxed symbols
27027
- || $stringify(Object(symbol)) != '{}';
27037
+ || $stringify$1 (Object(symbol)) != '{}';
27028
27038
});
27029
27039
27030
- _export({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, {
27040
+ _export({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY$1 }, {
27031
27041
// eslint-disable-next-line no-unused-vars
27032
27042
stringify: function stringify(it, replacer, space) {
27033
27043
var args = [it];
@@ -27041,7 +27051,7 @@ if ($stringify) {
27041
27051
if (!isSymbol$1(value)) return value;
27042
27052
};
27043
27053
args[1] = replacer;
27044
- return $stringify.apply(null, args);
27054
+ return $stringify$1 .apply(null, args);
27045
27055
}
27046
27056
});
27047
27057
}
0 commit comments