@@ -1165,7 +1165,7 @@ var shared$1 = createCommonjsModule(function (module) {
11651165(module.exports = function (key, value) {
11661166 return sharedStore$1[key] || (sharedStore$1[key] = value !== undefined ? value : {});
11671167})('versions', []).push({
1168- version: '3.3.4 ',
1168+ version: '3.4.1 ',
11691169 mode: 'pure' ,
11701170 copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
11711171});
@@ -16029,7 +16029,7 @@ var mixin_1 = mixin;
1602916029
1603016030var coreuiUtilities = createCommonjsModule(function (module, exports) {
1603116031/*!
16032- * CoreUI v3.0.0-beta.2 (https://coreui.io)
16032+ * CoreUI v3.0.0-beta.3 (https://coreui.io)
1603316033 * Copyright 2019 Łukasz Holeczek
1603416034 * Licensed under MIT (https://coreui.io)
1603516035 */
@@ -16038,7 +16038,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
1603816038}(commonjsGlobal, (function (exports) {
1603916039 /**
1604016040 * --------------------------------------------------------------------------
16041- * CoreUI Utilities (v3.0.0-beta.2 ): classes.js
16041+ * CoreUI Utilities (v3.0.0-beta.3 ): classes.js
1604216042 * Licensed under MIT (https://coreui.io/license)
1604316043 * --------------------------------------------------------------------------
1604416044 */
@@ -16051,7 +16051,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
1605116051
1605216052 /**
1605316053 * --------------------------------------------------------------------------
16054- * CoreUI Utilities (v3.0.0-beta.2 ): deep-objects-merge.js
16054+ * CoreUI Utilities (v3.0.0-beta.3 ): deep-objects-merge.js
1605516055 * Licensed under MIT (https://coreui.io/license)
1605616056 * --------------------------------------------------------------------------
1605716057 */
@@ -16072,7 +16072,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
1607216072
1607316073 /**
1607416074 * --------------------------------------------------------------------------
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
1607616076 * Licensed under MIT (https://coreui.io/license)
1607716077 * @returns {string} css custom property name
1607816078 * --------------------------------------------------------------------------
@@ -16115,7 +16115,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
1611516115
1611616116 /**
1611716117 * --------------------------------------------------------------------------
16118- * CoreUI Utilities (v3.0.0-beta.2 ): get-style.js
16118+ * CoreUI Utilities (v3.0.0-beta.3 ): get-style.js
1611916119 * Licensed under MIT (https://coreui.io/license)
1612016120 * --------------------------------------------------------------------------
1612116121 */
@@ -16148,7 +16148,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
1614816148
1614916149 /**
1615016150 * --------------------------------------------------------------------------
16151- * CoreUI Utilities (v3.0.0-beta.2 ): get-color.js
16151+ * CoreUI Utilities (v3.0.0-beta.3 ): get-color.js
1615216152 * Licensed under MIT (https://coreui.io/license)
1615316153 * --------------------------------------------------------------------------
1615416154 */
@@ -16165,7 +16165,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
1616516165
1616616166 /**
1616716167 * --------------------------------------------------------------------------
16168- * CoreUI Utilities (v3.0.0-beta.2 ): hex-to-rgb.js
16168+ * CoreUI Utilities (v3.0.0-beta.3 ): hex-to-rgb.js
1616916169 * Licensed under MIT (https://coreui.io/license)
1617016170 * --------------------------------------------------------------------------
1617116171 */
@@ -16201,7 +16201,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
1620116201
1620216202 /**
1620316203 * --------------------------------------------------------------------------
16204- * CoreUI Utilities (v3.0.0-beta.2 ): hex-to-rgba.js
16204+ * CoreUI Utilities (v3.0.0-beta.3 ): hex-to-rgba.js
1620516205 * Licensed under MIT (https://coreui.io/license)
1620616206 * --------------------------------------------------------------------------
1620716207 */
@@ -16241,7 +16241,7 @@ var coreuiUtilities = createCommonjsModule(function (module, exports) {
1624116241
1624216242 /**
1624316243 * --------------------------------------------------------------------------
16244- * CoreUI (v3.0.0-beta.2 ): rgb-to-hex.js
16244+ * CoreUI (v3.0.0-beta.3 ): rgb-to-hex.js
1624516245 * Licensed under MIT (https://coreui.io/license)
1624616246 * --------------------------------------------------------------------------
1624716247 */
@@ -19156,8 +19156,11 @@ if (v8$1) {
1915619156 match$1 = v8$1.split('.');
1915719157 version$2 = match$1[0] + match$1[1];
1915819158} 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+ }
1916119164}
1916219165
1916319166var v8Version$1 = version$2 && +version$2;
@@ -19182,7 +19185,10 @@ var IS_CONCAT_SPREADABLE$1 = wellKnownSymbol$1('isConcatSpreadable');
1918219185var MAX_SAFE_INTEGER$1 = 0x1FFFFFFFFFFFFF;
1918319186var MAXIMUM_ALLOWED_INDEX_EXCEEDED$1 = 'Maximum allowed index exceeded';
1918419187
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 () {
1918619192 var array = [];
1918719193 array[IS_CONCAT_SPREADABLE$1] = false;
1918819194 return array.concat()[0] !== array;
@@ -19337,8 +19343,7 @@ var setInternalState$2 = internalState$1.set;
1933719343var getInternalState$2 = internalState$1.getterFor(SYMBOL);
1933819344var ObjectPrototype$2 = Object[PROTOTYPE$2];
1933919345var $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');
1934219347var nativeGetOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor$1.f;
1934319348var nativeDefineProperty$2 = objectDefineProperty$1.f;
1934419349var nativeGetOwnPropertyNames$1 = objectGetOwnPropertyNamesExternal.f;
@@ -19556,30 +19561,35 @@ _export$1({ target: 'Object', stat: true, forced: fails$1(function () { objectGe
1955619561
1955719562// `JSON.stringify` method behavior with symbols
1955819563// 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+ }
1958319593
1958419594// `Symbol.prototype[@@toPrimitive]` method
1958519595// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@toprimitive
@@ -25860,7 +25870,7 @@ var script$1f = {
2586025870 }
2586125871};
2586225872
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";
2586425874styleInject(css$4);
2586525875
2586625876/* script */
@@ -26343,7 +26353,7 @@ __vue_render__$I._withStripped = true;
2634326353 /* style */
2634426354 const __vue_inject_styles__$1f = undefined;
2634526355 /* scoped */
26346- const __vue_scope_id__$1f = "data-v-6fbaf243 ";
26356+ const __vue_scope_id__$1f = "data-v-12527458 ";
2634726357 /* module identifier */
2634826358 const __vue_module_identifier__$1f = undefined;
2634926359 /* functional template */
@@ -26795,7 +26805,7 @@ var setInternalState$4 = internalState.set;
2679526805var getInternalState$4 = internalState.getterFor(SYMBOL$1);
2679626806var ObjectPrototype$4 = Object[PROTOTYPE$3];
2679726807var $Symbol$1 = global_1.Symbol;
26798- var $stringify = getBuiltIn('JSON', 'stringify');
26808+ var $stringify$1 = getBuiltIn('JSON', 'stringify');
2679926809var nativeGetOwnPropertyDescriptor$3 = objectGetOwnPropertyDescriptor.f;
2680026810var nativeDefineProperty$3 = objectDefineProperty.f;
2680126811var nativeGetOwnPropertyNames$3 = objectGetOwnPropertyNamesExternal$1.f;
@@ -27016,18 +27026,18 @@ _export({ target: 'Object', stat: true, forced: fails(function () { objectGetOwn
2701627026
2701727027// `JSON.stringify` method behavior with symbols
2701827028// 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 () {
2702127031 var symbol = $Symbol$1();
2702227032 // MS Edge converts symbol values to JSON as {}
27023- return $stringify([symbol]) != '[null]'
27033+ return $stringify$1 ([symbol]) != '[null]'
2702427034 // WebKit converts symbol values to JSON as null
27025- || $stringify({ a: symbol }) != '{}'
27035+ || $stringify$1 ({ a: symbol }) != '{}'
2702627036 // V8 throws on boxed symbols
27027- || $stringify(Object(symbol)) != '{}';
27037+ || $stringify$1 (Object(symbol)) != '{}';
2702827038 });
2702927039
27030- _export({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, {
27040+ _export({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY$1 }, {
2703127041 // eslint-disable-next-line no-unused-vars
2703227042 stringify: function stringify(it, replacer, space) {
2703327043 var args = [it];
@@ -27041,7 +27051,7 @@ if ($stringify) {
2704127051 if (!isSymbol$1(value)) return value;
2704227052 };
2704327053 args[1] = replacer;
27044- return $stringify.apply(null, args);
27054+ return $stringify$1 .apply(null, args);
2704527055 }
2704627056 });
2704727057}
0 commit comments