|
- (function webpackUniversalModuleDefinition(root, factory) {
- if(typeof exports === 'object' && typeof module === 'object')
- module.exports = factory(require("sortablejs"));
- else if(typeof define === 'function' && define.amd)
- define(["sortablejs"], factory);
- else if(typeof exports === 'object')
- exports["vuedraggable"] = factory(require("sortablejs"));
- else
- root["vuedraggable"] = factory(root["Sortable"]);
- })((typeof self !== 'undefined' ? self : this), function(__WEBPACK_EXTERNAL_MODULE_a352__) {
- return /******/ (function(modules) { // webpackBootstrap
- /******/ // The module cache
- /******/ var installedModules = {};
- /******/
- /******/ // The require function
- /******/ function __webpack_require__(moduleId) {
- /******/
- /******/ // Check if module is in cache
- /******/ if(installedModules[moduleId]) {
- /******/ return installedModules[moduleId].exports;
- /******/ }
- /******/ // Create a new module (and put it into the cache)
- /******/ var module = installedModules[moduleId] = {
- /******/ i: moduleId,
- /******/ l: false,
- /******/ exports: {}
- /******/ };
- /******/
- /******/ // Execute the module function
- /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
- /******/
- /******/ // Flag the module as loaded
- /******/ module.l = true;
- /******/
- /******/ // Return the exports of the module
- /******/ return module.exports;
- /******/ }
- /******/
- /******/
- /******/ // expose the modules object (__webpack_modules__)
- /******/ __webpack_require__.m = modules;
- /******/
- /******/ // expose the module cache
- /******/ __webpack_require__.c = installedModules;
- /******/
- /******/ // define getter function for harmony exports
- /******/ __webpack_require__.d = function(exports, name, getter) {
- /******/ if(!__webpack_require__.o(exports, name)) {
- /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
- /******/ }
- /******/ };
- /******/
- /******/ // define __esModule on exports
- /******/ __webpack_require__.r = function(exports) {
- /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
- /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
- /******/ }
- /******/ Object.defineProperty(exports, '__esModule', { value: true });
- /******/ };
- /******/
- /******/ // create a fake namespace object
- /******/ // mode & 1: value is a module id, require it
- /******/ // mode & 2: merge all properties of value into the ns
- /******/ // mode & 4: return value when already ns object
- /******/ // mode & 8|1: behave like require
- /******/ __webpack_require__.t = function(value, mode) {
- /******/ if(mode & 1) value = __webpack_require__(value);
- /******/ if(mode & 8) return value;
- /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
- /******/ var ns = Object.create(null);
- /******/ __webpack_require__.r(ns);
- /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
- /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
- /******/ return ns;
- /******/ };
- /******/
- /******/ // getDefaultExport function for compatibility with non-harmony modules
- /******/ __webpack_require__.n = function(module) {
- /******/ var getter = module && module.__esModule ?
- /******/ function getDefault() { return module['default']; } :
- /******/ function getModuleExports() { return module; };
- /******/ __webpack_require__.d(getter, 'a', getter);
- /******/ return getter;
- /******/ };
- /******/
- /******/ // Object.prototype.hasOwnProperty.call
- /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
- /******/
- /******/ // __webpack_public_path__
- /******/ __webpack_require__.p = "";
- /******/
- /******/
- /******/ // Load entry module and return exports
- /******/ return __webpack_require__(__webpack_require__.s = "fb15");
- /******/ })
- /************************************************************************/
- /******/ ({
-
- /***/ "02f4":
- /***/ (function(module, exports, __webpack_require__) {
-
- var toInteger = __webpack_require__("4588");
- var defined = __webpack_require__("be13");
- // true -> String#at
- // false -> String#codePointAt
- module.exports = function (TO_STRING) {
- return function (that, pos) {
- var s = String(defined(that));
- var i = toInteger(pos);
- var l = s.length;
- var a, b;
- if (i < 0 || i >= l) return TO_STRING ? '' : undefined;
- a = s.charCodeAt(i);
- return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff
- ? TO_STRING ? s.charAt(i) : a
- : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;
- };
- };
-
-
- /***/ }),
-
- /***/ "0390":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
- var at = __webpack_require__("02f4")(true);
-
- // `AdvanceStringIndex` abstract operation
- // https://tc39.github.io/ecma262/#sec-advancestringindex
- module.exports = function (S, index, unicode) {
- return index + (unicode ? at(S, index).length : 1);
- };
-
-
- /***/ }),
-
- /***/ "07e3":
- /***/ (function(module, exports) {
-
- var hasOwnProperty = {}.hasOwnProperty;
- module.exports = function (it, key) {
- return hasOwnProperty.call(it, key);
- };
-
-
- /***/ }),
-
- /***/ "0bfb":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
- // 21.2.5.3 get RegExp.prototype.flags
- var anObject = __webpack_require__("cb7c");
- module.exports = function () {
- var that = anObject(this);
- var result = '';
- if (that.global) result += 'g';
- if (that.ignoreCase) result += 'i';
- if (that.multiline) result += 'm';
- if (that.unicode) result += 'u';
- if (that.sticky) result += 'y';
- return result;
- };
-
-
- /***/ }),
-
- /***/ "0fc9":
- /***/ (function(module, exports, __webpack_require__) {
-
- var toInteger = __webpack_require__("3a38");
- var max = Math.max;
- var min = Math.min;
- module.exports = function (index, length) {
- index = toInteger(index);
- return index < 0 ? max(index + length, 0) : min(index, length);
- };
-
-
- /***/ }),
-
- /***/ "1654":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
- var $at = __webpack_require__("71c1")(true);
-
- // 21.1.3.27 String.prototype[@@iterator]()
- __webpack_require__("30f1")(String, 'String', function (iterated) {
- this._t = String(iterated); // target
- this._i = 0; // next index
- // 21.1.5.2.1 %StringIteratorPrototype%.next()
- }, function () {
- var O = this._t;
- var index = this._i;
- var point;
- if (index >= O.length) return { value: undefined, done: true };
- point = $at(O, index);
- this._i += point.length;
- return { value: point, done: false };
- });
-
-
- /***/ }),
-
- /***/ "1691":
- /***/ (function(module, exports) {
-
- // IE 8- don't enum bug keys
- module.exports = (
- 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'
- ).split(',');
-
-
- /***/ }),
-
- /***/ "1af6":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 22.1.2.2 / 15.4.3.2 Array.isArray(arg)
- var $export = __webpack_require__("63b6");
-
- $export($export.S, 'Array', { isArray: __webpack_require__("9003") });
-
-
- /***/ }),
-
- /***/ "1bc3":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 7.1.1 ToPrimitive(input [, PreferredType])
- var isObject = __webpack_require__("f772");
- // instead of the ES6 spec version, we didn't implement @@toPrimitive case
- // and the second argument - flag - preferred type is a string
- module.exports = function (it, S) {
- if (!isObject(it)) return it;
- var fn, val;
- if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
- if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;
- if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
- throw TypeError("Can't convert object to primitive value");
- };
-
-
- /***/ }),
-
- /***/ "1ec9":
- /***/ (function(module, exports, __webpack_require__) {
-
- var isObject = __webpack_require__("f772");
- var document = __webpack_require__("e53d").document;
- // typeof document.createElement is 'object' in old IE
- var is = isObject(document) && isObject(document.createElement);
- module.exports = function (it) {
- return is ? document.createElement(it) : {};
- };
-
-
- /***/ }),
-
- /***/ "20fd":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
- var $defineProperty = __webpack_require__("d9f6");
- var createDesc = __webpack_require__("aebd");
-
- module.exports = function (object, index, value) {
- if (index in object) $defineProperty.f(object, index, createDesc(0, value));
- else object[index] = value;
- };
-
-
- /***/ }),
-
- /***/ "214f":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
- __webpack_require__("b0c5");
- var redefine = __webpack_require__("2aba");
- var hide = __webpack_require__("32e9");
- var fails = __webpack_require__("79e5");
- var defined = __webpack_require__("be13");
- var wks = __webpack_require__("2b4c");
- var regexpExec = __webpack_require__("520a");
-
- var SPECIES = wks('species');
-
- var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
- // #replace needs built-in support for named groups.
- // #match works fine because it just return the exec results, even if it has
- // a "grops" property.
- var re = /./;
- re.exec = function () {
- var result = [];
- result.groups = { a: '7' };
- return result;
- };
- return ''.replace(re, '$<a>') !== '7';
- });
-
- var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = (function () {
- // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
- var re = /(?:)/;
- var originalExec = re.exec;
- re.exec = function () { return originalExec.apply(this, arguments); };
- var result = 'ab'.split(re);
- return result.length === 2 && result[0] === 'a' && result[1] === 'b';
- })();
-
- module.exports = function (KEY, length, exec) {
- var SYMBOL = wks(KEY);
-
- var DELEGATES_TO_SYMBOL = !fails(function () {
- // String methods call symbol-named RegEp methods
- var O = {};
- O[SYMBOL] = function () { return 7; };
- return ''[KEY](O) != 7;
- });
-
- var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL ? !fails(function () {
- // Symbol-named RegExp methods call .exec
- var execCalled = false;
- var re = /a/;
- re.exec = function () { execCalled = true; return null; };
- if (KEY === 'split') {
- // RegExp[@@split] doesn't call the regex's exec method, but first creates
- // a new one. We need to return the patched regex when creating the new one.
- re.constructor = {};
- re.constructor[SPECIES] = function () { return re; };
- }
- re[SYMBOL]('');
- return !execCalled;
- }) : undefined;
-
- if (
- !DELEGATES_TO_SYMBOL ||
- !DELEGATES_TO_EXEC ||
- (KEY === 'replace' && !REPLACE_SUPPORTS_NAMED_GROUPS) ||
- (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)
- ) {
- var nativeRegExpMethod = /./[SYMBOL];
- var fns = exec(
- defined,
- SYMBOL,
- ''[KEY],
- function maybeCallNative(nativeMethod, regexp, str, arg2, forceStringMethod) {
- if (regexp.exec === regexpExec) {
- if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
- // The native String method already delegates to @@method (this
- // polyfilled function), leasing to infinite recursion.
- // We avoid it by directly calling the native @@method method.
- return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
- }
- return { done: true, value: nativeMethod.call(str, regexp, arg2) };
- }
- return { done: false };
- }
- );
- var strfn = fns[0];
- var rxfn = fns[1];
-
- redefine(String.prototype, KEY, strfn);
- hide(RegExp.prototype, SYMBOL, length == 2
- // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)
- // 21.2.5.11 RegExp.prototype[@@split](string, limit)
- ? function (string, arg) { return rxfn.call(string, this, arg); }
- // 21.2.5.6 RegExp.prototype[@@match](string)
- // 21.2.5.9 RegExp.prototype[@@search](string)
- : function (string) { return rxfn.call(string, this); }
- );
- }
- };
-
-
- /***/ }),
-
- /***/ "230e":
- /***/ (function(module, exports, __webpack_require__) {
-
- var isObject = __webpack_require__("d3f4");
- var document = __webpack_require__("7726").document;
- // typeof document.createElement is 'object' in old IE
- var is = isObject(document) && isObject(document.createElement);
- module.exports = function (it) {
- return is ? document.createElement(it) : {};
- };
-
-
- /***/ }),
-
- /***/ "23c6":
- /***/ (function(module, exports, __webpack_require__) {
-
- // getting tag from 19.1.3.6 Object.prototype.toString()
- var cof = __webpack_require__("2d95");
- var TAG = __webpack_require__("2b4c")('toStringTag');
- // ES3 wrong here
- var ARG = cof(function () { return arguments; }()) == 'Arguments';
-
- // fallback for IE11 Script Access Denied error
- var tryGet = function (it, key) {
- try {
- return it[key];
- } catch (e) { /* empty */ }
- };
-
- module.exports = function (it) {
- var O, T, B;
- return it === undefined ? 'Undefined' : it === null ? 'Null'
- // @@toStringTag case
- : typeof (T = tryGet(O = Object(it), TAG)) == 'string' ? T
- // builtinTag case
- : ARG ? cof(O)
- // ES3 arguments fallback
- : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;
- };
-
-
- /***/ }),
-
- /***/ "241e":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 7.1.13 ToObject(argument)
- var defined = __webpack_require__("25eb");
- module.exports = function (it) {
- return Object(defined(it));
- };
-
-
- /***/ }),
-
- /***/ "25eb":
- /***/ (function(module, exports) {
-
- // 7.2.1 RequireObjectCoercible(argument)
- module.exports = function (it) {
- if (it == undefined) throw TypeError("Can't call method on " + it);
- return it;
- };
-
-
- /***/ }),
-
- /***/ "294c":
- /***/ (function(module, exports) {
-
- module.exports = function (exec) {
- try {
- return !!exec();
- } catch (e) {
- return true;
- }
- };
-
-
- /***/ }),
-
- /***/ "2aba":
- /***/ (function(module, exports, __webpack_require__) {
-
- var global = __webpack_require__("7726");
- var hide = __webpack_require__("32e9");
- var has = __webpack_require__("69a8");
- var SRC = __webpack_require__("ca5a")('src');
- var $toString = __webpack_require__("fa5b");
- var TO_STRING = 'toString';
- var TPL = ('' + $toString).split(TO_STRING);
-
- __webpack_require__("8378").inspectSource = function (it) {
- return $toString.call(it);
- };
-
- (module.exports = function (O, key, val, safe) {
- var isFunction = typeof val == 'function';
- if (isFunction) has(val, 'name') || hide(val, 'name', key);
- if (O[key] === val) return;
- if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));
- if (O === global) {
- O[key] = val;
- } else if (!safe) {
- delete O[key];
- hide(O, key, val);
- } else if (O[key]) {
- O[key] = val;
- } else {
- hide(O, key, val);
- }
- // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
- })(Function.prototype, TO_STRING, function toString() {
- return typeof this == 'function' && this[SRC] || $toString.call(this);
- });
-
-
- /***/ }),
-
- /***/ "2b4c":
- /***/ (function(module, exports, __webpack_require__) {
-
- var store = __webpack_require__("5537")('wks');
- var uid = __webpack_require__("ca5a");
- var Symbol = __webpack_require__("7726").Symbol;
- var USE_SYMBOL = typeof Symbol == 'function';
-
- var $exports = module.exports = function (name) {
- return store[name] || (store[name] =
- USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));
- };
-
- $exports.store = store;
-
-
- /***/ }),
-
- /***/ "2d00":
- /***/ (function(module, exports) {
-
- module.exports = false;
-
-
- /***/ }),
-
- /***/ "2d95":
- /***/ (function(module, exports) {
-
- var toString = {}.toString;
-
- module.exports = function (it) {
- return toString.call(it).slice(8, -1);
- };
-
-
- /***/ }),
-
- /***/ "2fdb":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
- // 21.1.3.7 String.prototype.includes(searchString, position = 0)
-
- var $export = __webpack_require__("5ca1");
- var context = __webpack_require__("d2c8");
- var INCLUDES = 'includes';
-
- $export($export.P + $export.F * __webpack_require__("5147")(INCLUDES), 'String', {
- includes: function includes(searchString /* , position = 0 */) {
- return !!~context(this, searchString, INCLUDES)
- .indexOf(searchString, arguments.length > 1 ? arguments[1] : undefined);
- }
- });
-
-
- /***/ }),
-
- /***/ "30f1":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
- var LIBRARY = __webpack_require__("b8e3");
- var $export = __webpack_require__("63b6");
- var redefine = __webpack_require__("9138");
- var hide = __webpack_require__("35e8");
- var Iterators = __webpack_require__("481b");
- var $iterCreate = __webpack_require__("8f60");
- var setToStringTag = __webpack_require__("45f2");
- var getPrototypeOf = __webpack_require__("53e2");
- var ITERATOR = __webpack_require__("5168")('iterator');
- var BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`
- var FF_ITERATOR = '@@iterator';
- var KEYS = 'keys';
- var VALUES = 'values';
-
- var returnThis = function () { return this; };
-
- module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {
- $iterCreate(Constructor, NAME, next);
- var getMethod = function (kind) {
- if (!BUGGY && kind in proto) return proto[kind];
- switch (kind) {
- case KEYS: return function keys() { return new Constructor(this, kind); };
- case VALUES: return function values() { return new Constructor(this, kind); };
- } return function entries() { return new Constructor(this, kind); };
- };
- var TAG = NAME + ' Iterator';
- var DEF_VALUES = DEFAULT == VALUES;
- var VALUES_BUG = false;
- var proto = Base.prototype;
- var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];
- var $default = $native || getMethod(DEFAULT);
- var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;
- var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;
- var methods, key, IteratorPrototype;
- // Fix native
- if ($anyNative) {
- IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));
- if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {
- // Set @@toStringTag to native iterators
- setToStringTag(IteratorPrototype, TAG, true);
- // fix for some old engines
- if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);
- }
- }
- // fix Array#{values, @@iterator}.name in V8 / FF
- if (DEF_VALUES && $native && $native.name !== VALUES) {
- VALUES_BUG = true;
- $default = function values() { return $native.call(this); };
- }
- // Define iterator
- if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {
- hide(proto, ITERATOR, $default);
- }
- // Plug for library
- Iterators[NAME] = $default;
- Iterators[TAG] = returnThis;
- if (DEFAULT) {
- methods = {
- values: DEF_VALUES ? $default : getMethod(VALUES),
- keys: IS_SET ? $default : getMethod(KEYS),
- entries: $entries
- };
- if (FORCED) for (key in methods) {
- if (!(key in proto)) redefine(proto, key, methods[key]);
- } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);
- }
- return methods;
- };
-
-
- /***/ }),
-
- /***/ "32a6":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 19.1.2.14 Object.keys(O)
- var toObject = __webpack_require__("241e");
- var $keys = __webpack_require__("c3a1");
-
- __webpack_require__("ce7e")('keys', function () {
- return function keys(it) {
- return $keys(toObject(it));
- };
- });
-
-
- /***/ }),
-
- /***/ "32e9":
- /***/ (function(module, exports, __webpack_require__) {
-
- var dP = __webpack_require__("86cc");
- var createDesc = __webpack_require__("4630");
- module.exports = __webpack_require__("9e1e") ? function (object, key, value) {
- return dP.f(object, key, createDesc(1, value));
- } : function (object, key, value) {
- object[key] = value;
- return object;
- };
-
-
- /***/ }),
-
- /***/ "32fc":
- /***/ (function(module, exports, __webpack_require__) {
-
- var document = __webpack_require__("e53d").document;
- module.exports = document && document.documentElement;
-
-
- /***/ }),
-
- /***/ "335c":
- /***/ (function(module, exports, __webpack_require__) {
-
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
- var cof = __webpack_require__("6b4c");
- // eslint-disable-next-line no-prototype-builtins
- module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
- return cof(it) == 'String' ? it.split('') : Object(it);
- };
-
-
- /***/ }),
-
- /***/ "355d":
- /***/ (function(module, exports) {
-
- exports.f = {}.propertyIsEnumerable;
-
-
- /***/ }),
-
- /***/ "35e8":
- /***/ (function(module, exports, __webpack_require__) {
-
- var dP = __webpack_require__("d9f6");
- var createDesc = __webpack_require__("aebd");
- module.exports = __webpack_require__("8e60") ? function (object, key, value) {
- return dP.f(object, key, createDesc(1, value));
- } : function (object, key, value) {
- object[key] = value;
- return object;
- };
-
-
- /***/ }),
-
- /***/ "36c3":
- /***/ (function(module, exports, __webpack_require__) {
-
- // to indexed object, toObject with fallback for non-array-like ES3 strings
- var IObject = __webpack_require__("335c");
- var defined = __webpack_require__("25eb");
- module.exports = function (it) {
- return IObject(defined(it));
- };
-
-
- /***/ }),
-
- /***/ "3702":
- /***/ (function(module, exports, __webpack_require__) {
-
- // check on default Array iterator
- var Iterators = __webpack_require__("481b");
- var ITERATOR = __webpack_require__("5168")('iterator');
- var ArrayProto = Array.prototype;
-
- module.exports = function (it) {
- return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
- };
-
-
- /***/ }),
-
- /***/ "3a38":
- /***/ (function(module, exports) {
-
- // 7.1.4 ToInteger
- var ceil = Math.ceil;
- var floor = Math.floor;
- module.exports = function (it) {
- return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
- };
-
-
- /***/ }),
-
- /***/ "40c3":
- /***/ (function(module, exports, __webpack_require__) {
-
- // getting tag from 19.1.3.6 Object.prototype.toString()
- var cof = __webpack_require__("6b4c");
- var TAG = __webpack_require__("5168")('toStringTag');
- // ES3 wrong here
- var ARG = cof(function () { return arguments; }()) == 'Arguments';
-
- // fallback for IE11 Script Access Denied error
- var tryGet = function (it, key) {
- try {
- return it[key];
- } catch (e) { /* empty */ }
- };
-
- module.exports = function (it) {
- var O, T, B;
- return it === undefined ? 'Undefined' : it === null ? 'Null'
- // @@toStringTag case
- : typeof (T = tryGet(O = Object(it), TAG)) == 'string' ? T
- // builtinTag case
- : ARG ? cof(O)
- // ES3 arguments fallback
- : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;
- };
-
-
- /***/ }),
-
- /***/ "4588":
- /***/ (function(module, exports) {
-
- // 7.1.4 ToInteger
- var ceil = Math.ceil;
- var floor = Math.floor;
- module.exports = function (it) {
- return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
- };
-
-
- /***/ }),
-
- /***/ "45f2":
- /***/ (function(module, exports, __webpack_require__) {
-
- var def = __webpack_require__("d9f6").f;
- var has = __webpack_require__("07e3");
- var TAG = __webpack_require__("5168")('toStringTag');
-
- module.exports = function (it, tag, stat) {
- if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });
- };
-
-
- /***/ }),
-
- /***/ "4630":
- /***/ (function(module, exports) {
-
- module.exports = function (bitmap, value) {
- return {
- enumerable: !(bitmap & 1),
- configurable: !(bitmap & 2),
- writable: !(bitmap & 4),
- value: value
- };
- };
-
-
- /***/ }),
-
- /***/ "469f":
- /***/ (function(module, exports, __webpack_require__) {
-
- __webpack_require__("6c1c");
- __webpack_require__("1654");
- module.exports = __webpack_require__("7d7b");
-
-
- /***/ }),
-
- /***/ "481b":
- /***/ (function(module, exports) {
-
- module.exports = {};
-
-
- /***/ }),
-
- /***/ "4aa6":
- /***/ (function(module, exports, __webpack_require__) {
-
- module.exports = __webpack_require__("dc62");
-
- /***/ }),
-
- /***/ "4bf8":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 7.1.13 ToObject(argument)
- var defined = __webpack_require__("be13");
- module.exports = function (it) {
- return Object(defined(it));
- };
-
-
- /***/ }),
-
- /***/ "4ee1":
- /***/ (function(module, exports, __webpack_require__) {
-
- var ITERATOR = __webpack_require__("5168")('iterator');
- var SAFE_CLOSING = false;
-
- try {
- var riter = [7][ITERATOR]();
- riter['return'] = function () { SAFE_CLOSING = true; };
- // eslint-disable-next-line no-throw-literal
- Array.from(riter, function () { throw 2; });
- } catch (e) { /* empty */ }
-
- module.exports = function (exec, skipClosing) {
- if (!skipClosing && !SAFE_CLOSING) return false;
- var safe = false;
- try {
- var arr = [7];
- var iter = arr[ITERATOR]();
- iter.next = function () { return { done: safe = true }; };
- arr[ITERATOR] = function () { return iter; };
- exec(arr);
- } catch (e) { /* empty */ }
- return safe;
- };
-
-
- /***/ }),
-
- /***/ "50ed":
- /***/ (function(module, exports) {
-
- module.exports = function (done, value) {
- return { value: value, done: !!done };
- };
-
-
- /***/ }),
-
- /***/ "5147":
- /***/ (function(module, exports, __webpack_require__) {
-
- var MATCH = __webpack_require__("2b4c")('match');
- module.exports = function (KEY) {
- var re = /./;
- try {
- '/./'[KEY](re);
- } catch (e) {
- try {
- re[MATCH] = false;
- return !'/./'[KEY](re);
- } catch (f) { /* empty */ }
- } return true;
- };
-
-
- /***/ }),
-
- /***/ "5168":
- /***/ (function(module, exports, __webpack_require__) {
-
- var store = __webpack_require__("dbdb")('wks');
- var uid = __webpack_require__("62a0");
- var Symbol = __webpack_require__("e53d").Symbol;
- var USE_SYMBOL = typeof Symbol == 'function';
-
- var $exports = module.exports = function (name) {
- return store[name] || (store[name] =
- USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));
- };
-
- $exports.store = store;
-
-
- /***/ }),
-
- /***/ "5176":
- /***/ (function(module, exports, __webpack_require__) {
-
- module.exports = __webpack_require__("51b6");
-
- /***/ }),
-
- /***/ "51b6":
- /***/ (function(module, exports, __webpack_require__) {
-
- __webpack_require__("a3c3");
- module.exports = __webpack_require__("584a").Object.assign;
-
-
- /***/ }),
-
- /***/ "520a":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- var regexpFlags = __webpack_require__("0bfb");
-
- var nativeExec = RegExp.prototype.exec;
- // This always refers to the native implementation, because the
- // String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,
- // which loads this file before patching the method.
- var nativeReplace = String.prototype.replace;
-
- var patchedExec = nativeExec;
-
- var LAST_INDEX = 'lastIndex';
-
- var UPDATES_LAST_INDEX_WRONG = (function () {
- var re1 = /a/,
- re2 = /b*/g;
- nativeExec.call(re1, 'a');
- nativeExec.call(re2, 'a');
- return re1[LAST_INDEX] !== 0 || re2[LAST_INDEX] !== 0;
- })();
-
- // nonparticipating capturing group, copied from es5-shim's String#split patch.
- var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
-
- var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED;
-
- if (PATCH) {
- patchedExec = function exec(str) {
- var re = this;
- var lastIndex, reCopy, match, i;
-
- if (NPCG_INCLUDED) {
- reCopy = new RegExp('^' + re.source + '$(?!\\s)', regexpFlags.call(re));
- }
- if (UPDATES_LAST_INDEX_WRONG) lastIndex = re[LAST_INDEX];
-
- match = nativeExec.call(re, str);
-
- if (UPDATES_LAST_INDEX_WRONG && match) {
- re[LAST_INDEX] = re.global ? match.index + match[0].length : lastIndex;
- }
- if (NPCG_INCLUDED && match && match.length > 1) {
- // Fix browsers whose `exec` methods don't consistently return `undefined`
- // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
- // eslint-disable-next-line no-loop-func
- nativeReplace.call(match[0], reCopy, function () {
- for (i = 1; i < arguments.length - 2; i++) {
- if (arguments[i] === undefined) match[i] = undefined;
- }
- });
- }
-
- return match;
- };
- }
-
- module.exports = patchedExec;
-
-
- /***/ }),
-
- /***/ "53e2":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)
- var has = __webpack_require__("07e3");
- var toObject = __webpack_require__("241e");
- var IE_PROTO = __webpack_require__("5559")('IE_PROTO');
- var ObjectProto = Object.prototype;
-
- module.exports = Object.getPrototypeOf || function (O) {
- O = toObject(O);
- if (has(O, IE_PROTO)) return O[IE_PROTO];
- if (typeof O.constructor == 'function' && O instanceof O.constructor) {
- return O.constructor.prototype;
- } return O instanceof Object ? ObjectProto : null;
- };
-
-
- /***/ }),
-
- /***/ "549b":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
- var ctx = __webpack_require__("d864");
- var $export = __webpack_require__("63b6");
- var toObject = __webpack_require__("241e");
- var call = __webpack_require__("b0dc");
- var isArrayIter = __webpack_require__("3702");
- var toLength = __webpack_require__("b447");
- var createProperty = __webpack_require__("20fd");
- var getIterFn = __webpack_require__("7cd6");
-
- $export($export.S + $export.F * !__webpack_require__("4ee1")(function (iter) { Array.from(iter); }), 'Array', {
- // 22.1.2.1 Array.from(arrayLike, mapfn = undefined, thisArg = undefined)
- from: function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {
- var O = toObject(arrayLike);
- var C = typeof this == 'function' ? this : Array;
- var aLen = arguments.length;
- var mapfn = aLen > 1 ? arguments[1] : undefined;
- var mapping = mapfn !== undefined;
- var index = 0;
- var iterFn = getIterFn(O);
- var length, result, step, iterator;
- if (mapping) mapfn = ctx(mapfn, aLen > 2 ? arguments[2] : undefined, 2);
- // if object isn't iterable or it's array with default iterator - use simple case
- if (iterFn != undefined && !(C == Array && isArrayIter(iterFn))) {
- for (iterator = iterFn.call(O), result = new C(); !(step = iterator.next()).done; index++) {
- createProperty(result, index, mapping ? call(iterator, mapfn, [step.value, index], true) : step.value);
- }
- } else {
- length = toLength(O.length);
- for (result = new C(length); length > index; index++) {
- createProperty(result, index, mapping ? mapfn(O[index], index) : O[index]);
- }
- }
- result.length = index;
- return result;
- }
- });
-
-
- /***/ }),
-
- /***/ "54a1":
- /***/ (function(module, exports, __webpack_require__) {
-
- __webpack_require__("6c1c");
- __webpack_require__("1654");
- module.exports = __webpack_require__("95d5");
-
-
- /***/ }),
-
- /***/ "5537":
- /***/ (function(module, exports, __webpack_require__) {
-
- var core = __webpack_require__("8378");
- var global = __webpack_require__("7726");
- var SHARED = '__core-js_shared__';
- var store = global[SHARED] || (global[SHARED] = {});
-
- (module.exports = function (key, value) {
- return store[key] || (store[key] = value !== undefined ? value : {});
- })('versions', []).push({
- version: core.version,
- mode: __webpack_require__("2d00") ? 'pure' : 'global',
- copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
- });
-
-
- /***/ }),
-
- /***/ "5559":
- /***/ (function(module, exports, __webpack_require__) {
-
- var shared = __webpack_require__("dbdb")('keys');
- var uid = __webpack_require__("62a0");
- module.exports = function (key) {
- return shared[key] || (shared[key] = uid(key));
- };
-
-
- /***/ }),
-
- /***/ "584a":
- /***/ (function(module, exports) {
-
- var core = module.exports = { version: '2.6.5' };
- if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef
-
-
- /***/ }),
-
- /***/ "5b4e":
- /***/ (function(module, exports, __webpack_require__) {
-
- // false -> Array#indexOf
- // true -> Array#includes
- var toIObject = __webpack_require__("36c3");
- var toLength = __webpack_require__("b447");
- var toAbsoluteIndex = __webpack_require__("0fc9");
- module.exports = function (IS_INCLUDES) {
- return function ($this, el, fromIndex) {
- var O = toIObject($this);
- var length = toLength(O.length);
- var index = toAbsoluteIndex(fromIndex, length);
- var value;
- // Array#includes uses SameValueZero equality algorithm
- // eslint-disable-next-line no-self-compare
- if (IS_INCLUDES && el != el) while (length > index) {
- value = O[index++];
- // eslint-disable-next-line no-self-compare
- if (value != value) return true;
- // Array#indexOf ignores holes, Array#includes - not
- } else for (;length > index; index++) if (IS_INCLUDES || index in O) {
- if (O[index] === el) return IS_INCLUDES || index || 0;
- } return !IS_INCLUDES && -1;
- };
- };
-
-
- /***/ }),
-
- /***/ "5ca1":
- /***/ (function(module, exports, __webpack_require__) {
-
- var global = __webpack_require__("7726");
- var core = __webpack_require__("8378");
- var hide = __webpack_require__("32e9");
- var redefine = __webpack_require__("2aba");
- var ctx = __webpack_require__("9b43");
- var PROTOTYPE = 'prototype';
-
- var $export = function (type, name, source) {
- var IS_FORCED = type & $export.F;
- var IS_GLOBAL = type & $export.G;
- var IS_STATIC = type & $export.S;
- var IS_PROTO = type & $export.P;
- var IS_BIND = type & $export.B;
- var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];
- var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});
- var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});
- var key, own, out, exp;
- if (IS_GLOBAL) source = name;
- for (key in source) {
- // contains in native
- own = !IS_FORCED && target && target[key] !== undefined;
- // export native or passed
- out = (own ? target : source)[key];
- // bind timers to global for call from export context
- exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;
- // extend global
- if (target) redefine(target, key, out, type & $export.U);
- // export
- if (exports[key] != out) hide(exports, key, exp);
- if (IS_PROTO && expProto[key] != out) expProto[key] = out;
- }
- };
- global.core = core;
- // type bitmap
- $export.F = 1; // forced
- $export.G = 2; // global
- $export.S = 4; // static
- $export.P = 8; // proto
- $export.B = 16; // bind
- $export.W = 32; // wrap
- $export.U = 64; // safe
- $export.R = 128; // real proto method for `library`
- module.exports = $export;
-
-
- /***/ }),
-
- /***/ "5d73":
- /***/ (function(module, exports, __webpack_require__) {
-
- module.exports = __webpack_require__("469f");
-
- /***/ }),
-
- /***/ "5f1b":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- var classof = __webpack_require__("23c6");
- var builtinExec = RegExp.prototype.exec;
-
- // `RegExpExec` abstract operation
- // https://tc39.github.io/ecma262/#sec-regexpexec
- module.exports = function (R, S) {
- var exec = R.exec;
- if (typeof exec === 'function') {
- var result = exec.call(R, S);
- if (typeof result !== 'object') {
- throw new TypeError('RegExp exec method returned something other than an Object or null');
- }
- return result;
- }
- if (classof(R) !== 'RegExp') {
- throw new TypeError('RegExp#exec called on incompatible receiver');
- }
- return builtinExec.call(R, S);
- };
-
-
- /***/ }),
-
- /***/ "626a":
- /***/ (function(module, exports, __webpack_require__) {
-
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
- var cof = __webpack_require__("2d95");
- // eslint-disable-next-line no-prototype-builtins
- module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
- return cof(it) == 'String' ? it.split('') : Object(it);
- };
-
-
- /***/ }),
-
- /***/ "62a0":
- /***/ (function(module, exports) {
-
- var id = 0;
- var px = Math.random();
- module.exports = function (key) {
- return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
- };
-
-
- /***/ }),
-
- /***/ "63b6":
- /***/ (function(module, exports, __webpack_require__) {
-
- var global = __webpack_require__("e53d");
- var core = __webpack_require__("584a");
- var ctx = __webpack_require__("d864");
- var hide = __webpack_require__("35e8");
- var has = __webpack_require__("07e3");
- var PROTOTYPE = 'prototype';
-
- var $export = function (type, name, source) {
- var IS_FORCED = type & $export.F;
- var IS_GLOBAL = type & $export.G;
- var IS_STATIC = type & $export.S;
- var IS_PROTO = type & $export.P;
- var IS_BIND = type & $export.B;
- var IS_WRAP = type & $export.W;
- var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});
- var expProto = exports[PROTOTYPE];
- var target = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE];
- var key, own, out;
- if (IS_GLOBAL) source = name;
- for (key in source) {
- // contains in native
- own = !IS_FORCED && target && target[key] !== undefined;
- if (own && has(exports, key)) continue;
- // export native or passed
- out = own ? target[key] : source[key];
- // prevent global pollution for namespaces
- exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key]
- // bind timers to global for call from export context
- : IS_BIND && own ? ctx(out, global)
- // wrap global constructors for prevent change them in library
- : IS_WRAP && target[key] == out ? (function (C) {
- var F = function (a, b, c) {
- if (this instanceof C) {
- switch (arguments.length) {
- case 0: return new C();
- case 1: return new C(a);
- case 2: return new C(a, b);
- } return new C(a, b, c);
- } return C.apply(this, arguments);
- };
- F[PROTOTYPE] = C[PROTOTYPE];
- return F;
- // make static versions for prototype methods
- })(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;
- // export proto methods to core.%CONSTRUCTOR%.methods.%NAME%
- if (IS_PROTO) {
- (exports.virtual || (exports.virtual = {}))[key] = out;
- // export proto methods to core.%CONSTRUCTOR%.prototype.%NAME%
- if (type & $export.R && expProto && !expProto[key]) hide(expProto, key, out);
- }
- }
- };
- // type bitmap
- $export.F = 1; // forced
- $export.G = 2; // global
- $export.S = 4; // static
- $export.P = 8; // proto
- $export.B = 16; // bind
- $export.W = 32; // wrap
- $export.U = 64; // safe
- $export.R = 128; // real proto method for `library`
- module.exports = $export;
-
-
- /***/ }),
-
- /***/ "6762":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
- // https://github.com/tc39/Array.prototype.includes
- var $export = __webpack_require__("5ca1");
- var $includes = __webpack_require__("c366")(true);
-
- $export($export.P, 'Array', {
- includes: function includes(el /* , fromIndex = 0 */) {
- return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
- }
- });
-
- __webpack_require__("9c6c")('includes');
-
-
- /***/ }),
-
- /***/ "6821":
- /***/ (function(module, exports, __webpack_require__) {
-
- // to indexed object, toObject with fallback for non-array-like ES3 strings
- var IObject = __webpack_require__("626a");
- var defined = __webpack_require__("be13");
- module.exports = function (it) {
- return IObject(defined(it));
- };
-
-
- /***/ }),
-
- /***/ "69a8":
- /***/ (function(module, exports) {
-
- var hasOwnProperty = {}.hasOwnProperty;
- module.exports = function (it, key) {
- return hasOwnProperty.call(it, key);
- };
-
-
- /***/ }),
-
- /***/ "6a99":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 7.1.1 ToPrimitive(input [, PreferredType])
- var isObject = __webpack_require__("d3f4");
- // instead of the ES6 spec version, we didn't implement @@toPrimitive case
- // and the second argument - flag - preferred type is a string
- module.exports = function (it, S) {
- if (!isObject(it)) return it;
- var fn, val;
- if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
- if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;
- if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
- throw TypeError("Can't convert object to primitive value");
- };
-
-
- /***/ }),
-
- /***/ "6b4c":
- /***/ (function(module, exports) {
-
- var toString = {}.toString;
-
- module.exports = function (it) {
- return toString.call(it).slice(8, -1);
- };
-
-
- /***/ }),
-
- /***/ "6c1c":
- /***/ (function(module, exports, __webpack_require__) {
-
- __webpack_require__("c367");
- var global = __webpack_require__("e53d");
- var hide = __webpack_require__("35e8");
- var Iterators = __webpack_require__("481b");
- var TO_STRING_TAG = __webpack_require__("5168")('toStringTag');
-
- var DOMIterables = ('CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,' +
- 'DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,' +
- 'MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,' +
- 'SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,' +
- 'TextTrackList,TouchList').split(',');
-
- for (var i = 0; i < DOMIterables.length; i++) {
- var NAME = DOMIterables[i];
- var Collection = global[NAME];
- var proto = Collection && Collection.prototype;
- if (proto && !proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);
- Iterators[NAME] = Iterators.Array;
- }
-
-
- /***/ }),
-
- /***/ "71c1":
- /***/ (function(module, exports, __webpack_require__) {
-
- var toInteger = __webpack_require__("3a38");
- var defined = __webpack_require__("25eb");
- // true -> String#at
- // false -> String#codePointAt
- module.exports = function (TO_STRING) {
- return function (that, pos) {
- var s = String(defined(that));
- var i = toInteger(pos);
- var l = s.length;
- var a, b;
- if (i < 0 || i >= l) return TO_STRING ? '' : undefined;
- a = s.charCodeAt(i);
- return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff
- ? TO_STRING ? s.charAt(i) : a
- : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;
- };
- };
-
-
- /***/ }),
-
- /***/ "7726":
- /***/ (function(module, exports) {
-
- // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
- var global = module.exports = typeof window != 'undefined' && window.Math == Math
- ? window : typeof self != 'undefined' && self.Math == Math ? self
- // eslint-disable-next-line no-new-func
- : Function('return this')();
- if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef
-
-
- /***/ }),
-
- /***/ "774e":
- /***/ (function(module, exports, __webpack_require__) {
-
- module.exports = __webpack_require__("d2d5");
-
- /***/ }),
-
- /***/ "77f1":
- /***/ (function(module, exports, __webpack_require__) {
-
- var toInteger = __webpack_require__("4588");
- var max = Math.max;
- var min = Math.min;
- module.exports = function (index, length) {
- index = toInteger(index);
- return index < 0 ? max(index + length, 0) : min(index, length);
- };
-
-
- /***/ }),
-
- /***/ "794b":
- /***/ (function(module, exports, __webpack_require__) {
-
- module.exports = !__webpack_require__("8e60") && !__webpack_require__("294c")(function () {
- return Object.defineProperty(__webpack_require__("1ec9")('div'), 'a', { get: function () { return 7; } }).a != 7;
- });
-
-
- /***/ }),
-
- /***/ "79aa":
- /***/ (function(module, exports) {
-
- module.exports = function (it) {
- if (typeof it != 'function') throw TypeError(it + ' is not a function!');
- return it;
- };
-
-
- /***/ }),
-
- /***/ "79e5":
- /***/ (function(module, exports) {
-
- module.exports = function (exec) {
- try {
- return !!exec();
- } catch (e) {
- return true;
- }
- };
-
-
- /***/ }),
-
- /***/ "7cd6":
- /***/ (function(module, exports, __webpack_require__) {
-
- var classof = __webpack_require__("40c3");
- var ITERATOR = __webpack_require__("5168")('iterator');
- var Iterators = __webpack_require__("481b");
- module.exports = __webpack_require__("584a").getIteratorMethod = function (it) {
- if (it != undefined) return it[ITERATOR]
- || it['@@iterator']
- || Iterators[classof(it)];
- };
-
-
- /***/ }),
-
- /***/ "7d7b":
- /***/ (function(module, exports, __webpack_require__) {
-
- var anObject = __webpack_require__("e4ae");
- var get = __webpack_require__("7cd6");
- module.exports = __webpack_require__("584a").getIterator = function (it) {
- var iterFn = get(it);
- if (typeof iterFn != 'function') throw TypeError(it + ' is not iterable!');
- return anObject(iterFn.call(it));
- };
-
-
- /***/ }),
-
- /***/ "7e90":
- /***/ (function(module, exports, __webpack_require__) {
-
- var dP = __webpack_require__("d9f6");
- var anObject = __webpack_require__("e4ae");
- var getKeys = __webpack_require__("c3a1");
-
- module.exports = __webpack_require__("8e60") ? Object.defineProperties : function defineProperties(O, Properties) {
- anObject(O);
- var keys = getKeys(Properties);
- var length = keys.length;
- var i = 0;
- var P;
- while (length > i) dP.f(O, P = keys[i++], Properties[P]);
- return O;
- };
-
-
- /***/ }),
-
- /***/ "8378":
- /***/ (function(module, exports) {
-
- var core = module.exports = { version: '2.6.5' };
- if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef
-
-
- /***/ }),
-
- /***/ "8436":
- /***/ (function(module, exports) {
-
- module.exports = function () { /* empty */ };
-
-
- /***/ }),
-
- /***/ "86cc":
- /***/ (function(module, exports, __webpack_require__) {
-
- var anObject = __webpack_require__("cb7c");
- var IE8_DOM_DEFINE = __webpack_require__("c69a");
- var toPrimitive = __webpack_require__("6a99");
- var dP = Object.defineProperty;
-
- exports.f = __webpack_require__("9e1e") ? Object.defineProperty : function defineProperty(O, P, Attributes) {
- anObject(O);
- P = toPrimitive(P, true);
- anObject(Attributes);
- if (IE8_DOM_DEFINE) try {
- return dP(O, P, Attributes);
- } catch (e) { /* empty */ }
- if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
- if ('value' in Attributes) O[P] = Attributes.value;
- return O;
- };
-
-
- /***/ }),
-
- /***/ "8aae":
- /***/ (function(module, exports, __webpack_require__) {
-
- __webpack_require__("32a6");
- module.exports = __webpack_require__("584a").Object.keys;
-
-
- /***/ }),
-
- /***/ "8e60":
- /***/ (function(module, exports, __webpack_require__) {
-
- // Thank's IE8 for his funny defineProperty
- module.exports = !__webpack_require__("294c")(function () {
- return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
- });
-
-
- /***/ }),
-
- /***/ "8f60":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
- var create = __webpack_require__("a159");
- var descriptor = __webpack_require__("aebd");
- var setToStringTag = __webpack_require__("45f2");
- var IteratorPrototype = {};
-
- // 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
- __webpack_require__("35e8")(IteratorPrototype, __webpack_require__("5168")('iterator'), function () { return this; });
-
- module.exports = function (Constructor, NAME, next) {
- Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });
- setToStringTag(Constructor, NAME + ' Iterator');
- };
-
-
- /***/ }),
-
- /***/ "9003":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 7.2.2 IsArray(argument)
- var cof = __webpack_require__("6b4c");
- module.exports = Array.isArray || function isArray(arg) {
- return cof(arg) == 'Array';
- };
-
-
- /***/ }),
-
- /***/ "9138":
- /***/ (function(module, exports, __webpack_require__) {
-
- module.exports = __webpack_require__("35e8");
-
-
- /***/ }),
-
- /***/ "9306":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
- // 19.1.2.1 Object.assign(target, source, ...)
- var getKeys = __webpack_require__("c3a1");
- var gOPS = __webpack_require__("9aa9");
- var pIE = __webpack_require__("355d");
- var toObject = __webpack_require__("241e");
- var IObject = __webpack_require__("335c");
- var $assign = Object.assign;
-
- // should work with symbols and should have deterministic property order (V8 bug)
- module.exports = !$assign || __webpack_require__("294c")(function () {
- var A = {};
- var B = {};
- // eslint-disable-next-line no-undef
- var S = Symbol();
- var K = 'abcdefghijklmnopqrst';
- A[S] = 7;
- K.split('').forEach(function (k) { B[k] = k; });
- return $assign({}, A)[S] != 7 || Object.keys($assign({}, B)).join('') != K;
- }) ? function assign(target, source) { // eslint-disable-line no-unused-vars
- var T = toObject(target);
- var aLen = arguments.length;
- var index = 1;
- var getSymbols = gOPS.f;
- var isEnum = pIE.f;
- while (aLen > index) {
- var S = IObject(arguments[index++]);
- var keys = getSymbols ? getKeys(S).concat(getSymbols(S)) : getKeys(S);
- var length = keys.length;
- var j = 0;
- var key;
- while (length > j) if (isEnum.call(S, key = keys[j++])) T[key] = S[key];
- } return T;
- } : $assign;
-
-
- /***/ }),
-
- /***/ "9427":
- /***/ (function(module, exports, __webpack_require__) {
-
- var $export = __webpack_require__("63b6");
- // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
- $export($export.S, 'Object', { create: __webpack_require__("a159") });
-
-
- /***/ }),
-
- /***/ "95d5":
- /***/ (function(module, exports, __webpack_require__) {
-
- var classof = __webpack_require__("40c3");
- var ITERATOR = __webpack_require__("5168")('iterator');
- var Iterators = __webpack_require__("481b");
- module.exports = __webpack_require__("584a").isIterable = function (it) {
- var O = Object(it);
- return O[ITERATOR] !== undefined
- || '@@iterator' in O
- // eslint-disable-next-line no-prototype-builtins
- || Iterators.hasOwnProperty(classof(O));
- };
-
-
- /***/ }),
-
- /***/ "9aa9":
- /***/ (function(module, exports) {
-
- exports.f = Object.getOwnPropertySymbols;
-
-
- /***/ }),
-
- /***/ "9b43":
- /***/ (function(module, exports, __webpack_require__) {
-
- // optional / simple context binding
- var aFunction = __webpack_require__("d8e8");
- module.exports = function (fn, that, length) {
- aFunction(fn);
- if (that === undefined) return fn;
- switch (length) {
- case 1: return function (a) {
- return fn.call(that, a);
- };
- case 2: return function (a, b) {
- return fn.call(that, a, b);
- };
- case 3: return function (a, b, c) {
- return fn.call(that, a, b, c);
- };
- }
- return function (/* ...args */) {
- return fn.apply(that, arguments);
- };
- };
-
-
- /***/ }),
-
- /***/ "9c6c":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 22.1.3.31 Array.prototype[@@unscopables]
- var UNSCOPABLES = __webpack_require__("2b4c")('unscopables');
- var ArrayProto = Array.prototype;
- if (ArrayProto[UNSCOPABLES] == undefined) __webpack_require__("32e9")(ArrayProto, UNSCOPABLES, {});
- module.exports = function (key) {
- ArrayProto[UNSCOPABLES][key] = true;
- };
-
-
- /***/ }),
-
- /***/ "9def":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 7.1.15 ToLength
- var toInteger = __webpack_require__("4588");
- var min = Math.min;
- module.exports = function (it) {
- return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
- };
-
-
- /***/ }),
-
- /***/ "9e1e":
- /***/ (function(module, exports, __webpack_require__) {
-
- // Thank's IE8 for his funny defineProperty
- module.exports = !__webpack_require__("79e5")(function () {
- return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
- });
-
-
- /***/ }),
-
- /***/ "a159":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
- var anObject = __webpack_require__("e4ae");
- var dPs = __webpack_require__("7e90");
- var enumBugKeys = __webpack_require__("1691");
- var IE_PROTO = __webpack_require__("5559")('IE_PROTO');
- var Empty = function () { /* empty */ };
- var PROTOTYPE = 'prototype';
-
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
- var createDict = function () {
- // Thrash, waste and sodomy: IE GC bug
- var iframe = __webpack_require__("1ec9")('iframe');
- var i = enumBugKeys.length;
- var lt = '<';
- var gt = '>';
- var iframeDocument;
- iframe.style.display = 'none';
- __webpack_require__("32fc").appendChild(iframe);
- iframe.src = 'javascript:'; // eslint-disable-line no-script-url
- // createDict = iframe.contentWindow.Object;
- // html.removeChild(iframe);
- iframeDocument = iframe.contentWindow.document;
- iframeDocument.open();
- iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);
- iframeDocument.close();
- createDict = iframeDocument.F;
- while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];
- return createDict();
- };
-
- module.exports = Object.create || function create(O, Properties) {
- var result;
- if (O !== null) {
- Empty[PROTOTYPE] = anObject(O);
- result = new Empty();
- Empty[PROTOTYPE] = null;
- // add "__proto__" for Object.getPrototypeOf polyfill
- result[IE_PROTO] = O;
- } else result = createDict();
- return Properties === undefined ? result : dPs(result, Properties);
- };
-
-
- /***/ }),
-
- /***/ "a352":
- /***/ (function(module, exports) {
-
- module.exports = __WEBPACK_EXTERNAL_MODULE_a352__;
-
- /***/ }),
-
- /***/ "a3c3":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 19.1.3.1 Object.assign(target, source)
- var $export = __webpack_require__("63b6");
-
- $export($export.S + $export.F, 'Object', { assign: __webpack_require__("9306") });
-
-
- /***/ }),
-
- /***/ "a481":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
-
- var anObject = __webpack_require__("cb7c");
- var toObject = __webpack_require__("4bf8");
- var toLength = __webpack_require__("9def");
- var toInteger = __webpack_require__("4588");
- var advanceStringIndex = __webpack_require__("0390");
- var regExpExec = __webpack_require__("5f1b");
- var max = Math.max;
- var min = Math.min;
- var floor = Math.floor;
- var SUBSTITUTION_SYMBOLS = /\$([$&`']|\d\d?|<[^>]*>)/g;
- var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&`']|\d\d?)/g;
-
- var maybeToString = function (it) {
- return it === undefined ? it : String(it);
- };
-
- // @@replace logic
- __webpack_require__("214f")('replace', 2, function (defined, REPLACE, $replace, maybeCallNative) {
- return [
- // `String.prototype.replace` method
- // https://tc39.github.io/ecma262/#sec-string.prototype.replace
- function replace(searchValue, replaceValue) {
- var O = defined(this);
- var fn = searchValue == undefined ? undefined : searchValue[REPLACE];
- return fn !== undefined
- ? fn.call(searchValue, O, replaceValue)
- : $replace.call(String(O), searchValue, replaceValue);
- },
- // `RegExp.prototype[@@replace]` method
- // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace
- function (regexp, replaceValue) {
- var res = maybeCallNative($replace, regexp, this, replaceValue);
- if (res.done) return res.value;
-
- var rx = anObject(regexp);
- var S = String(this);
- var functionalReplace = typeof replaceValue === 'function';
- if (!functionalReplace) replaceValue = String(replaceValue);
- var global = rx.global;
- if (global) {
- var fullUnicode = rx.unicode;
- rx.lastIndex = 0;
- }
- var results = [];
- while (true) {
- var result = regExpExec(rx, S);
- if (result === null) break;
- results.push(result);
- if (!global) break;
- var matchStr = String(result[0]);
- if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
- }
- var accumulatedResult = '';
- var nextSourcePosition = 0;
- for (var i = 0; i < results.length; i++) {
- result = results[i];
- var matched = String(result[0]);
- var position = max(min(toInteger(result.index), S.length), 0);
- var captures = [];
- // NOTE: This is equivalent to
- // captures = result.slice(1).map(maybeToString)
- // but for some reason `nativeSlice.call(result, 1, result.length)` (called in
- // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
- // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
- for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));
- var namedCaptures = result.groups;
- if (functionalReplace) {
- var replacerArgs = [matched].concat(captures, position, S);
- if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);
- var replacement = String(replaceValue.apply(undefined, replacerArgs));
- } else {
- replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
- }
- if (position >= nextSourcePosition) {
- accumulatedResult += S.slice(nextSourcePosition, position) + replacement;
- nextSourcePosition = position + matched.length;
- }
- }
- return accumulatedResult + S.slice(nextSourcePosition);
- }
- ];
-
- // https://tc39.github.io/ecma262/#sec-getsubstitution
- function getSubstitution(matched, str, position, captures, namedCaptures, replacement) {
- var tailPos = position + matched.length;
- var m = captures.length;
- var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
- if (namedCaptures !== undefined) {
- namedCaptures = toObject(namedCaptures);
- symbols = SUBSTITUTION_SYMBOLS;
- }
- return $replace.call(replacement, symbols, function (match, ch) {
- var capture;
- switch (ch.charAt(0)) {
- case '$': return '$';
- case '&': return matched;
- case '`': return str.slice(0, position);
- case "'": return str.slice(tailPos);
- case '<':
- capture = namedCaptures[ch.slice(1, -1)];
- break;
- default: // \d\d?
- var n = +ch;
- if (n === 0) return match;
- if (n > m) {
- var f = floor(n / 10);
- if (f === 0) return match;
- if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);
- return match;
- }
- capture = captures[n - 1];
- }
- return capture === undefined ? '' : capture;
- });
- }
- });
-
-
- /***/ }),
-
- /***/ "a4bb":
- /***/ (function(module, exports, __webpack_require__) {
-
- module.exports = __webpack_require__("8aae");
-
- /***/ }),
-
- /***/ "a745":
- /***/ (function(module, exports, __webpack_require__) {
-
- module.exports = __webpack_require__("f410");
-
- /***/ }),
-
- /***/ "aae3":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 7.2.8 IsRegExp(argument)
- var isObject = __webpack_require__("d3f4");
- var cof = __webpack_require__("2d95");
- var MATCH = __webpack_require__("2b4c")('match');
- module.exports = function (it) {
- var isRegExp;
- return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp');
- };
-
-
- /***/ }),
-
- /***/ "aebd":
- /***/ (function(module, exports) {
-
- module.exports = function (bitmap, value) {
- return {
- enumerable: !(bitmap & 1),
- configurable: !(bitmap & 2),
- writable: !(bitmap & 4),
- value: value
- };
- };
-
-
- /***/ }),
-
- /***/ "b0c5":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
- var regexpExec = __webpack_require__("520a");
- __webpack_require__("5ca1")({
- target: 'RegExp',
- proto: true,
- forced: regexpExec !== /./.exec
- }, {
- exec: regexpExec
- });
-
-
- /***/ }),
-
- /***/ "b0dc":
- /***/ (function(module, exports, __webpack_require__) {
-
- // call something on iterator step with safe closing on error
- var anObject = __webpack_require__("e4ae");
- module.exports = function (iterator, fn, value, entries) {
- try {
- return entries ? fn(anObject(value)[0], value[1]) : fn(value);
- // 7.4.6 IteratorClose(iterator, completion)
- } catch (e) {
- var ret = iterator['return'];
- if (ret !== undefined) anObject(ret.call(iterator));
- throw e;
- }
- };
-
-
- /***/ }),
-
- /***/ "b447":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 7.1.15 ToLength
- var toInteger = __webpack_require__("3a38");
- var min = Math.min;
- module.exports = function (it) {
- return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
- };
-
-
- /***/ }),
-
- /***/ "b8e3":
- /***/ (function(module, exports) {
-
- module.exports = true;
-
-
- /***/ }),
-
- /***/ "be13":
- /***/ (function(module, exports) {
-
- // 7.2.1 RequireObjectCoercible(argument)
- module.exports = function (it) {
- if (it == undefined) throw TypeError("Can't call method on " + it);
- return it;
- };
-
-
- /***/ }),
-
- /***/ "c366":
- /***/ (function(module, exports, __webpack_require__) {
-
- // false -> Array#indexOf
- // true -> Array#includes
- var toIObject = __webpack_require__("6821");
- var toLength = __webpack_require__("9def");
- var toAbsoluteIndex = __webpack_require__("77f1");
- module.exports = function (IS_INCLUDES) {
- return function ($this, el, fromIndex) {
- var O = toIObject($this);
- var length = toLength(O.length);
- var index = toAbsoluteIndex(fromIndex, length);
- var value;
- // Array#includes uses SameValueZero equality algorithm
- // eslint-disable-next-line no-self-compare
- if (IS_INCLUDES && el != el) while (length > index) {
- value = O[index++];
- // eslint-disable-next-line no-self-compare
- if (value != value) return true;
- // Array#indexOf ignores holes, Array#includes - not
- } else for (;length > index; index++) if (IS_INCLUDES || index in O) {
- if (O[index] === el) return IS_INCLUDES || index || 0;
- } return !IS_INCLUDES && -1;
- };
- };
-
-
- /***/ }),
-
- /***/ "c367":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
-
- var addToUnscopables = __webpack_require__("8436");
- var step = __webpack_require__("50ed");
- var Iterators = __webpack_require__("481b");
- var toIObject = __webpack_require__("36c3");
-
- // 22.1.3.4 Array.prototype.entries()
- // 22.1.3.13 Array.prototype.keys()
- // 22.1.3.29 Array.prototype.values()
- // 22.1.3.30 Array.prototype[@@iterator]()
- module.exports = __webpack_require__("30f1")(Array, 'Array', function (iterated, kind) {
- this._t = toIObject(iterated); // target
- this._i = 0; // next index
- this._k = kind; // kind
- // 22.1.5.2.1 %ArrayIteratorPrototype%.next()
- }, function () {
- var O = this._t;
- var kind = this._k;
- var index = this._i++;
- if (!O || index >= O.length) {
- this._t = undefined;
- return step(1);
- }
- if (kind == 'keys') return step(0, index);
- if (kind == 'values') return step(0, O[index]);
- return step(0, [index, O[index]]);
- }, 'values');
-
- // argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)
- Iterators.Arguments = Iterators.Array;
-
- addToUnscopables('keys');
- addToUnscopables('values');
- addToUnscopables('entries');
-
-
- /***/ }),
-
- /***/ "c3a1":
- /***/ (function(module, exports, __webpack_require__) {
-
- // 19.1.2.14 / 15.2.3.14 Object.keys(O)
- var $keys = __webpack_require__("e6f3");
- var enumBugKeys = __webpack_require__("1691");
-
- module.exports = Object.keys || function keys(O) {
- return $keys(O, enumBugKeys);
- };
-
-
- /***/ }),
-
- /***/ "c649":
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- /* WEBPACK VAR INJECTION */(function(global) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return insertNodeAt; });
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return camelize; });
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return console; });
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return removeNode; });
- /* harmony import */ var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a481");
- /* harmony import */ var core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es6_regexp_replace__WEBPACK_IMPORTED_MODULE_0__);
- /* harmony import */ var F_source_Vue_Draggable_node_modules_babel_runtime_corejs2_core_js_object_create__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("4aa6");
- /* harmony import */ var F_source_Vue_Draggable_node_modules_babel_runtime_corejs2_core_js_object_create__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(F_source_Vue_Draggable_node_modules_babel_runtime_corejs2_core_js_object_create__WEBPACK_IMPORTED_MODULE_1__);
-
-
-
- function getConsole() {
- if (typeof window !== "undefined") {
- return window.console;
- }
-
- return global.console;
- }
-
- var console = getConsole();
-
- function cached(fn) {
- var cache = F_source_Vue_Draggable_node_modules_babel_runtime_corejs2_core_js_object_create__WEBPACK_IMPORTED_MODULE_1___default()(null);
-
- return function cachedFn(str) {
- var hit = cache[str];
- return hit || (cache[str] = fn(str));
- };
- }
-
- var regex = /-(\w)/g;
- var camelize = cached(function (str) {
- return str.replace(regex, function (_, c) {
- return c ? c.toUpperCase() : "";
- });
- });
-
- function removeNode(node) {
- if (node.parentElement !== null) {
- node.parentElement.removeChild(node);
- }
- }
-
- function insertNodeAt(fatherNode, node, position) {
- var refNode = position === 0 ? fatherNode.children[0] : fatherNode.children[position - 1].nextSibling;
- fatherNode.insertBefore(node, refNode);
- }
-
-
- /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("c8ba")))
-
- /***/ }),
-
- /***/ "c69a":
- /***/ (function(module, exports, __webpack_require__) {
-
- module.exports = !__webpack_require__("9e1e") && !__webpack_require__("79e5")(function () {
- return Object.defineProperty(__webpack_require__("230e")('div'), 'a', { get: function () { return 7; } }).a != 7;
- });
-
-
- /***/ }),
-
- /***/ "c8ba":
- /***/ (function(module, exports) {
-
- var g;
-
- // This works in non-strict mode
- g = (function() {
- return this;
- })();
-
- try {
- // This works if eval is allowed (see CSP)
- g = g || new Function("return this")();
- } catch (e) {
- // This works if the window reference is available
- if (typeof window === "object") g = window;
- }
-
- // g can still be undefined, but nothing to do about it...
- // We return undefined, instead of nothing here, so it's
- // easier to handle this case. if(!global) { ...}
-
- module.exports = g;
-
-
- /***/ }),
-
- /***/ "c8bb":
- /***/ (function(module, exports, __webpack_require__) {
-
- module.exports = __webpack_require__("54a1");
-
- /***/ }),
-
- /***/ "ca5a":
- /***/ (function(module, exports) {
-
- var id = 0;
- var px = Math.random();
- module.exports = function (key) {
- return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
- };
-
-
- /***/ }),
-
- /***/ "cb7c":
- /***/ (function(module, exports, __webpack_require__) {
-
- var isObject = __webpack_require__("d3f4");
- module.exports = function (it) {
- if (!isObject(it)) throw TypeError(it + ' is not an object!');
- return it;
- };
-
-
- /***/ }),
-
- /***/ "ce7e":
- /***/ (function(module, exports, __webpack_require__) {
-
- // most Object methods by ES6 should accept primitives
- var $export = __webpack_require__("63b6");
- var core = __webpack_require__("584a");
- var fails = __webpack_require__("294c");
- module.exports = function (KEY, exec) {
- var fn = (core.Object || {})[KEY] || Object[KEY];
- var exp = {};
- exp[KEY] = exec(fn);
- $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp);
- };
-
-
- /***/ }),
-
- /***/ "d2c8":
- /***/ (function(module, exports, __webpack_require__) {
-
- // helper for String#{startsWith, endsWith, includes}
- var isRegExp = __webpack_require__("aae3");
- var defined = __webpack_require__("be13");
-
- module.exports = function (that, searchString, NAME) {
- if (isRegExp(searchString)) throw TypeError('String#' + NAME + " doesn't accept regex!");
- return String(defined(that));
- };
-
-
- /***/ }),
-
- /***/ "d2d5":
- /***/ (function(module, exports, __webpack_require__) {
-
- __webpack_require__("1654");
- __webpack_require__("549b");
- module.exports = __webpack_require__("584a").Array.from;
-
-
- /***/ }),
-
- /***/ "d3f4":
- /***/ (function(module, exports) {
-
- module.exports = function (it) {
- return typeof it === 'object' ? it !== null : typeof it === 'function';
- };
-
-
- /***/ }),
-
- /***/ "d864":
- /***/ (function(module, exports, __webpack_require__) {
-
- // optional / simple context binding
- var aFunction = __webpack_require__("79aa");
- module.exports = function (fn, that, length) {
- aFunction(fn);
- if (that === undefined) return fn;
- switch (length) {
- case 1: return function (a) {
- return fn.call(that, a);
- };
- case 2: return function (a, b) {
- return fn.call(that, a, b);
- };
- case 3: return function (a, b, c) {
- return fn.call(that, a, b, c);
- };
- }
- return function (/* ...args */) {
- return fn.apply(that, arguments);
- };
- };
-
-
- /***/ }),
-
- /***/ "d8e8":
- /***/ (function(module, exports) {
-
- module.exports = function (it) {
- if (typeof it != 'function') throw TypeError(it + ' is not a function!');
- return it;
- };
-
-
- /***/ }),
-
- /***/ "d9f6":
- /***/ (function(module, exports, __webpack_require__) {
-
- var anObject = __webpack_require__("e4ae");
- var IE8_DOM_DEFINE = __webpack_require__("794b");
- var toPrimitive = __webpack_require__("1bc3");
- var dP = Object.defineProperty;
-
- exports.f = __webpack_require__("8e60") ? Object.defineProperty : function defineProperty(O, P, Attributes) {
- anObject(O);
- P = toPrimitive(P, true);
- anObject(Attributes);
- if (IE8_DOM_DEFINE) try {
- return dP(O, P, Attributes);
- } catch (e) { /* empty */ }
- if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');
- if ('value' in Attributes) O[P] = Attributes.value;
- return O;
- };
-
-
- /***/ }),
-
- /***/ "dbdb":
- /***/ (function(module, exports, __webpack_require__) {
-
- var core = __webpack_require__("584a");
- var global = __webpack_require__("e53d");
- var SHARED = '__core-js_shared__';
- var store = global[SHARED] || (global[SHARED] = {});
-
- (module.exports = function (key, value) {
- return store[key] || (store[key] = value !== undefined ? value : {});
- })('versions', []).push({
- version: core.version,
- mode: __webpack_require__("b8e3") ? 'pure' : 'global',
- copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
- });
-
-
- /***/ }),
-
- /***/ "dc62":
- /***/ (function(module, exports, __webpack_require__) {
-
- __webpack_require__("9427");
- var $Object = __webpack_require__("584a").Object;
- module.exports = function create(P, D) {
- return $Object.create(P, D);
- };
-
-
- /***/ }),
-
- /***/ "e4ae":
- /***/ (function(module, exports, __webpack_require__) {
-
- var isObject = __webpack_require__("f772");
- module.exports = function (it) {
- if (!isObject(it)) throw TypeError(it + ' is not an object!');
- return it;
- };
-
-
- /***/ }),
-
- /***/ "e53d":
- /***/ (function(module, exports) {
-
- // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
- var global = module.exports = typeof window != 'undefined' && window.Math == Math
- ? window : typeof self != 'undefined' && self.Math == Math ? self
- // eslint-disable-next-line no-new-func
- : Function('return this')();
- if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef
-
-
- /***/ }),
-
- /***/ "e6f3":
- /***/ (function(module, exports, __webpack_require__) {
-
- var has = __webpack_require__("07e3");
- var toIObject = __webpack_require__("36c3");
- var arrayIndexOf = __webpack_require__("5b4e")(false);
- var IE_PROTO = __webpack_require__("5559")('IE_PROTO');
-
- module.exports = function (object, names) {
- var O = toIObject(object);
- var i = 0;
- var result = [];
- var key;
- for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);
- // Don't enum bug & hidden keys
- while (names.length > i) if (has(O, key = names[i++])) {
- ~arrayIndexOf(result, key) || result.push(key);
- }
- return result;
- };
-
-
- /***/ }),
-
- /***/ "f410":
- /***/ (function(module, exports, __webpack_require__) {
-
- __webpack_require__("1af6");
- module.exports = __webpack_require__("584a").Array.isArray;
-
-
- /***/ }),
-
- /***/ "f559":
- /***/ (function(module, exports, __webpack_require__) {
-
- "use strict";
- // 21.1.3.18 String.prototype.startsWith(searchString [, position ])
-
- var $export = __webpack_require__("5ca1");
- var toLength = __webpack_require__("9def");
- var context = __webpack_require__("d2c8");
- var STARTS_WITH = 'startsWith';
- var $startsWith = ''[STARTS_WITH];
-
- $export($export.P + $export.F * __webpack_require__("5147")(STARTS_WITH), 'String', {
- startsWith: function startsWith(searchString /* , position = 0 */) {
- var that = context(this, searchString, STARTS_WITH);
- var index = toLength(Math.min(arguments.length > 1 ? arguments[1] : undefined, that.length));
- var search = String(searchString);
- return $startsWith
- ? $startsWith.call(that, search, index)
- : that.slice(index, index + search.length) === search;
- }
- });
-
-
- /***/ }),
-
- /***/ "f772":
- /***/ (function(module, exports) {
-
- module.exports = function (it) {
- return typeof it === 'object' ? it !== null : typeof it === 'function';
- };
-
-
- /***/ }),
-
- /***/ "fa5b":
- /***/ (function(module, exports, __webpack_require__) {
-
- module.exports = __webpack_require__("5537")('native-function-to-string', Function.toString);
-
-
- /***/ }),
-
- /***/ "fb15":
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- __webpack_require__.r(__webpack_exports__);
-
- // CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
- // This file is imported into lib/wc client bundles.
-
- if (typeof window !== 'undefined') {
- var setPublicPath_i
- if ((setPublicPath_i = window.document.currentScript) && (setPublicPath_i = setPublicPath_i.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))) {
- __webpack_require__.p = setPublicPath_i[1] // eslint-disable-line
- }
- }
-
- // Indicate to webpack that this file can be concatenated
- /* harmony default export */ var setPublicPath = (null);
-
- // EXTERNAL MODULE: ./node_modules/@babel/runtime-corejs2/core-js/object/assign.js
- var object_assign = __webpack_require__("5176");
- var assign_default = /*#__PURE__*/__webpack_require__.n(object_assign);
-
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es6.string.starts-with.js
- var es6_string_starts_with = __webpack_require__("f559");
-
- // EXTERNAL MODULE: ./node_modules/@babel/runtime-corejs2/core-js/object/keys.js
- var keys = __webpack_require__("a4bb");
- var keys_default = /*#__PURE__*/__webpack_require__.n(keys);
-
- // EXTERNAL MODULE: ./node_modules/@babel/runtime-corejs2/core-js/array/is-array.js
- var is_array = __webpack_require__("a745");
- var is_array_default = /*#__PURE__*/__webpack_require__.n(is_array);
-
- // CONCATENATED MODULE: ./node_modules/@babel/runtime-corejs2/helpers/esm/arrayWithHoles.js
-
- function _arrayWithHoles(arr) {
- if (is_array_default()(arr)) return arr;
- }
- // EXTERNAL MODULE: ./node_modules/@babel/runtime-corejs2/core-js/get-iterator.js
- var get_iterator = __webpack_require__("5d73");
- var get_iterator_default = /*#__PURE__*/__webpack_require__.n(get_iterator);
-
- // CONCATENATED MODULE: ./node_modules/@babel/runtime-corejs2/helpers/esm/iterableToArrayLimit.js
-
- function _iterableToArrayLimit(arr, i) {
- var _arr = [];
- var _n = true;
- var _d = false;
- var _e = undefined;
-
- try {
- for (var _i = get_iterator_default()(arr), _s; !(_n = (_s = _i.next()).done); _n = true) {
- _arr.push(_s.value);
-
- if (i && _arr.length === i) break;
- }
- } catch (err) {
- _d = true;
- _e = err;
- } finally {
- try {
- if (!_n && _i["return"] != null) _i["return"]();
- } finally {
- if (_d) throw _e;
- }
- }
-
- return _arr;
- }
- // CONCATENATED MODULE: ./node_modules/@babel/runtime-corejs2/helpers/esm/nonIterableRest.js
- function _nonIterableRest() {
- throw new TypeError("Invalid attempt to destructure non-iterable instance");
- }
- // CONCATENATED MODULE: ./node_modules/@babel/runtime-corejs2/helpers/esm/slicedToArray.js
-
-
-
- function _slicedToArray(arr, i) {
- return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest();
- }
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es7.array.includes.js
- var es7_array_includes = __webpack_require__("6762");
-
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es6.string.includes.js
- var es6_string_includes = __webpack_require__("2fdb");
-
- // CONCATENATED MODULE: ./node_modules/@babel/runtime-corejs2/helpers/esm/arrayWithoutHoles.js
-
- function _arrayWithoutHoles(arr) {
- if (is_array_default()(arr)) {
- for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) {
- arr2[i] = arr[i];
- }
-
- return arr2;
- }
- }
- // EXTERNAL MODULE: ./node_modules/@babel/runtime-corejs2/core-js/array/from.js
- var from = __webpack_require__("774e");
- var from_default = /*#__PURE__*/__webpack_require__.n(from);
-
- // EXTERNAL MODULE: ./node_modules/@babel/runtime-corejs2/core-js/is-iterable.js
- var is_iterable = __webpack_require__("c8bb");
- var is_iterable_default = /*#__PURE__*/__webpack_require__.n(is_iterable);
-
- // CONCATENATED MODULE: ./node_modules/@babel/runtime-corejs2/helpers/esm/iterableToArray.js
-
-
- function _iterableToArray(iter) {
- if (is_iterable_default()(Object(iter)) || Object.prototype.toString.call(iter) === "[object Arguments]") return from_default()(iter);
- }
- // CONCATENATED MODULE: ./node_modules/@babel/runtime-corejs2/helpers/esm/nonIterableSpread.js
- function _nonIterableSpread() {
- throw new TypeError("Invalid attempt to spread non-iterable instance");
- }
- // CONCATENATED MODULE: ./node_modules/@babel/runtime-corejs2/helpers/esm/toConsumableArray.js
-
-
-
- function _toConsumableArray(arr) {
- return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread();
- }
- // EXTERNAL MODULE: external {"commonjs":"sortablejs","commonjs2":"sortablejs","amd":"sortablejs","root":"Sortable"}
- var external_commonjs_sortablejs_commonjs2_sortablejs_amd_sortablejs_root_Sortable_ = __webpack_require__("a352");
- var external_commonjs_sortablejs_commonjs2_sortablejs_amd_sortablejs_root_Sortable_default = /*#__PURE__*/__webpack_require__.n(external_commonjs_sortablejs_commonjs2_sortablejs_amd_sortablejs_root_Sortable_);
-
- // EXTERNAL MODULE: ./src/util/helper.js
- var helper = __webpack_require__("c649");
-
- // CONCATENATED MODULE: ./src/vuedraggable.js
-
-
-
-
-
-
-
-
-
-
- function buildAttribute(object, propName, value) {
- if (value === undefined) {
- return object;
- }
-
- object = object || {};
- object[propName] = value;
- return object;
- }
-
- function computeVmIndex(vnodes, element) {
- return vnodes.map(function (elt) {
- return elt.elm;
- }).indexOf(element);
- }
-
- function _computeIndexes(slots, children, isTransition, footerOffset) {
- if (!slots) {
- return [];
- }
-
- var elmFromNodes = slots.map(function (elt) {
- return elt.elm;
- });
- var footerIndex = children.length - footerOffset;
-
- var rawIndexes = _toConsumableArray(children).map(function (elt, idx) {
- return idx >= footerIndex ? elmFromNodes.length : elmFromNodes.indexOf(elt);
- });
-
- return isTransition ? rawIndexes.filter(function (ind) {
- return ind !== -1;
- }) : rawIndexes;
- }
-
- function emit(evtName, evtData) {
- var _this = this;
-
- this.$nextTick(function () {
- return _this.$emit(evtName.toLowerCase(), evtData);
- });
- }
-
- function delegateAndEmit(evtName) {
- var _this2 = this;
-
- return function (evtData) {
- if (_this2.realList !== null) {
- _this2["onDrag" + evtName](evtData);
- }
-
- emit.call(_this2, evtName, evtData);
- };
- }
-
- function isTransitionName(name) {
- return ["transition-group", "TransitionGroup"].includes(name);
- }
-
- function vuedraggable_isTransition(slots) {
- if (!slots || slots.length !== 1) {
- return false;
- }
-
- var _slots = _slicedToArray(slots, 1),
- componentOptions = _slots[0].componentOptions;
-
- if (!componentOptions) {
- return false;
- }
-
- return isTransitionName(componentOptions.tag);
- }
-
- function getSlot(slot, scopedSlot, key) {
- return slot[key] || (scopedSlot[key] ? scopedSlot[key]() : undefined);
- }
-
- function computeChildrenAndOffsets(children, slot, scopedSlot) {
- var headerOffset = 0;
- var footerOffset = 0;
- var header = getSlot(slot, scopedSlot, "header");
-
- if (header) {
- headerOffset = header.length;
- children = children ? [].concat(_toConsumableArray(header), _toConsumableArray(children)) : _toConsumableArray(header);
- }
-
- var footer = getSlot(slot, scopedSlot, "footer");
-
- if (footer) {
- footerOffset = footer.length;
- children = children ? [].concat(_toConsumableArray(children), _toConsumableArray(footer)) : _toConsumableArray(footer);
- }
-
- return {
- children: children,
- headerOffset: headerOffset,
- footerOffset: footerOffset
- };
- }
-
- function getComponentAttributes($attrs, componentData) {
- var attributes = null;
-
- var update = function update(name, value) {
- attributes = buildAttribute(attributes, name, value);
- };
-
- var attrs = keys_default()($attrs).filter(function (key) {
- return key === "id" || key.startsWith("data-");
- }).reduce(function (res, key) {
- res[key] = $attrs[key];
- return res;
- }, {});
-
- update("attrs", attrs);
-
- if (!componentData) {
- return attributes;
- }
-
- var on = componentData.on,
- props = componentData.props,
- componentDataAttrs = componentData.attrs;
- update("on", on);
- update("props", props);
-
- assign_default()(attributes.attrs, componentDataAttrs);
-
- return attributes;
- }
-
- var eventsListened = ["Start", "Add", "Remove", "Update", "End"];
- var eventsToEmit = ["Choose", "Unchoose", "Sort", "Filter", "Clone"];
- var readonlyProperties = ["Move"].concat(eventsListened, eventsToEmit).map(function (evt) {
- return "on" + evt;
- });
- var draggingElement = null;
- var vuedraggable_props = {
- options: Object,
- list: {
- type: Array,
- required: false,
- default: null
- },
- value: {
- type: Array,
- required: false,
- default: null
- },
- noTransitionOnDrag: {
- type: Boolean,
- default: false
- },
- clone: {
- type: Function,
- default: function _default(original) {
- return original;
- }
- },
- element: {
- type: String,
- default: "div"
- },
- tag: {
- type: String,
- default: null
- },
- move: {
- type: Function,
- default: null
- },
- componentData: {
- type: Object,
- required: false,
- default: null
- }
- };
- var draggableComponent = {
- name: "draggable",
- inheritAttrs: false,
- props: vuedraggable_props,
- data: function data() {
- return {
- transitionMode: false,
- noneFunctionalComponentMode: false
- };
- },
- render: function render(h) {
- var slots = this.$slots.default;
- this.transitionMode = vuedraggable_isTransition(slots);
-
- var _computeChildrenAndOf = computeChildrenAndOffsets(slots, this.$slots, this.$scopedSlots),
- children = _computeChildrenAndOf.children,
- headerOffset = _computeChildrenAndOf.headerOffset,
- footerOffset = _computeChildrenAndOf.footerOffset;
-
- this.headerOffset = headerOffset;
- this.footerOffset = footerOffset;
- var attributes = getComponentAttributes(this.$attrs, this.componentData);
- return h(this.getTag(), attributes, children);
- },
- created: function created() {
- if (this.list !== null && this.value !== null) {
- helper["b" /* console */].error("Value and list props are mutually exclusive! Please set one or another.");
- }
-
- if (this.element !== "div") {
- helper["b" /* console */].warn("Element props is deprecated please use tag props instead. See https://github.com/SortableJS/Vue.Draggable/blob/master/documentation/migrate.md#element-props");
- }
-
- if (this.options !== undefined) {
- helper["b" /* console */].warn("Options props is deprecated, add sortable options directly as vue.draggable item, or use v-bind. See https://github.com/SortableJS/Vue.Draggable/blob/master/documentation/migrate.md#options-props");
- }
- },
- mounted: function mounted() {
- var _this3 = this;
-
- this.noneFunctionalComponentMode = this.getTag().toLowerCase() !== this.$el.nodeName.toLowerCase() && !this.getIsFunctional();
-
- if (this.noneFunctionalComponentMode && this.transitionMode) {
- throw new Error("Transition-group inside component is not supported. Please alter tag value or remove transition-group. Current tag value: ".concat(this.getTag()));
- }
-
- var optionsAdded = {};
- eventsListened.forEach(function (elt) {
- optionsAdded["on" + elt] = delegateAndEmit.call(_this3, elt);
- });
- eventsToEmit.forEach(function (elt) {
- optionsAdded["on" + elt] = emit.bind(_this3, elt);
- });
-
- var attributes = keys_default()(this.$attrs).reduce(function (res, key) {
- res[Object(helper["a" /* camelize */])(key)] = _this3.$attrs[key];
- return res;
- }, {});
-
- var options = assign_default()({}, this.options, attributes, optionsAdded, {
- onMove: function onMove(evt, originalEvent) {
- return _this3.onDragMove(evt, originalEvent);
- }
- });
-
- !("draggable" in options) && (options.draggable = ">*");
- this._sortable = new external_commonjs_sortablejs_commonjs2_sortablejs_amd_sortablejs_root_Sortable_default.a(this.rootContainer, options);
- this.computeIndexes();
- },
- beforeDestroy: function beforeDestroy() {
- if (this._sortable !== undefined) this._sortable.destroy();
- },
- computed: {
- rootContainer: function rootContainer() {
- return this.transitionMode ? this.$el.children[0] : this.$el;
- },
- realList: function realList() {
- return this.list ? this.list : this.value;
- }
- },
- watch: {
- options: {
- handler: function handler(newOptionValue) {
- this.updateOptions(newOptionValue);
- },
- deep: true
- },
- $attrs: {
- handler: function handler(newOptionValue) {
- this.updateOptions(newOptionValue);
- },
- deep: true
- },
- realList: function realList() {
- this.computeIndexes();
- }
- },
- methods: {
- getIsFunctional: function getIsFunctional() {
- var fnOptions = this._vnode.fnOptions;
- return fnOptions && fnOptions.functional;
- },
- getTag: function getTag() {
- return this.tag || this.element;
- },
- updateOptions: function updateOptions(newOptionValue) {
- for (var property in newOptionValue) {
- var value = Object(helper["a" /* camelize */])(property);
-
- if (readonlyProperties.indexOf(value) === -1) {
- this._sortable.option(value, newOptionValue[property]);
- }
- }
- },
- getChildrenNodes: function getChildrenNodes() {
- if (this.noneFunctionalComponentMode) {
- return this.$children[0].$slots.default;
- }
-
- var rawNodes = this.$slots.default;
- return this.transitionMode ? rawNodes[0].child.$slots.default : rawNodes;
- },
- computeIndexes: function computeIndexes() {
- var _this4 = this;
-
- this.$nextTick(function () {
- _this4.visibleIndexes = _computeIndexes(_this4.getChildrenNodes(), _this4.rootContainer.children, _this4.transitionMode, _this4.footerOffset);
- });
- },
- getUnderlyingVm: function getUnderlyingVm(htmlElt) {
- var index = computeVmIndex(this.getChildrenNodes() || [], htmlElt);
-
- if (index === -1) {
- //Edge case during move callback: related element might be
- //an element different from collection
- return null;
- }
-
- var element = this.realList[index];
- return {
- index: index,
- element: element
- };
- },
- getUnderlyingPotencialDraggableComponent: function getUnderlyingPotencialDraggableComponent(_ref) {
- var vue = _ref.__vue__;
-
- if (!vue || !vue.$options || !isTransitionName(vue.$options._componentTag)) {
- if (!("realList" in vue) && vue.$children.length === 1 && "realList" in vue.$children[0]) return vue.$children[0];
- return vue;
- }
-
- return vue.$parent;
- },
- emitChanges: function emitChanges(evt) {
- var _this5 = this;
-
- this.$nextTick(function () {
- _this5.$emit("change", evt);
- });
- },
- alterList: function alterList(onList) {
- if (this.list) {
- onList(this.list);
- return;
- }
-
- var newList = _toConsumableArray(this.value);
-
- onList(newList);
- this.$emit("input", newList);
- },
- spliceList: function spliceList() {
- var _arguments = arguments;
-
- var spliceList = function spliceList(list) {
- return list.splice.apply(list, _toConsumableArray(_arguments));
- };
-
- this.alterList(spliceList);
- },
- updatePosition: function updatePosition(oldIndex, newIndex) {
- var updatePosition = function updatePosition(list) {
- return list.splice(newIndex, 0, list.splice(oldIndex, 1)[0]);
- };
-
- this.alterList(updatePosition);
- },
- getRelatedContextFromMoveEvent: function getRelatedContextFromMoveEvent(_ref2) {
- var to = _ref2.to,
- related = _ref2.related;
- var component = this.getUnderlyingPotencialDraggableComponent(to);
-
- if (!component) {
- return {
- component: component
- };
- }
-
- var list = component.realList;
- var context = {
- list: list,
- component: component
- };
-
- if (to !== related && list && component.getUnderlyingVm) {
- var destination = component.getUnderlyingVm(related);
-
- if (destination) {
- return assign_default()(destination, context);
- }
- }
-
- return context;
- },
- getVmIndex: function getVmIndex(domIndex) {
- var indexes = this.visibleIndexes;
- var numberIndexes = indexes.length;
- return domIndex > numberIndexes - 1 ? numberIndexes : indexes[domIndex];
- },
- getComponent: function getComponent() {
- return this.$slots.default[0].componentInstance;
- },
- resetTransitionData: function resetTransitionData(index) {
- if (!this.noTransitionOnDrag || !this.transitionMode) {
- return;
- }
-
- var nodes = this.getChildrenNodes();
- nodes[index].data = null;
- var transitionContainer = this.getComponent();
- transitionContainer.children = [];
- transitionContainer.kept = undefined;
- },
- onDragStart: function onDragStart(evt) {
- this.context = this.getUnderlyingVm(evt.item);
- evt.item._underlying_vm_ = this.clone(this.context.element);
- draggingElement = evt.item;
- },
- onDragAdd: function onDragAdd(evt) {
- var element = evt.item._underlying_vm_;
-
- if (element === undefined) {
- return;
- }
-
- Object(helper["d" /* removeNode */])(evt.item);
- var newIndex = this.getVmIndex(evt.newIndex);
- this.spliceList(newIndex, 0, element);
- this.computeIndexes();
- var added = {
- element: element,
- newIndex: newIndex
- };
- this.emitChanges({
- added: added
- });
- },
- onDragRemove: function onDragRemove(evt) {
- Object(helper["c" /* insertNodeAt */])(this.rootContainer, evt.item, evt.oldIndex);
-
- if (evt.pullMode === "clone") {
- Object(helper["d" /* removeNode */])(evt.clone);
- return;
- }
-
- var oldIndex = this.context.index;
- this.spliceList(oldIndex, 1);
- var removed = {
- element: this.context.element,
- oldIndex: oldIndex
- };
- this.resetTransitionData(oldIndex);
- this.emitChanges({
- removed: removed
- });
- },
- onDragUpdate: function onDragUpdate(evt) {
- Object(helper["d" /* removeNode */])(evt.item);
- Object(helper["c" /* insertNodeAt */])(evt.from, evt.item, evt.oldIndex);
- var oldIndex = this.context.index;
- var newIndex = this.getVmIndex(evt.newIndex);
- this.updatePosition(oldIndex, newIndex);
- var moved = {
- element: this.context.element,
- oldIndex: oldIndex,
- newIndex: newIndex
- };
- this.emitChanges({
- moved: moved
- });
- },
- updateProperty: function updateProperty(evt, propertyName) {
- evt.hasOwnProperty(propertyName) && (evt[propertyName] += this.headerOffset);
- },
- computeFutureIndex: function computeFutureIndex(relatedContext, evt) {
- if (!relatedContext.element) {
- return 0;
- }
-
- var domChildren = _toConsumableArray(evt.to.children).filter(function (el) {
- return el.style["display"] !== "none";
- });
-
- var currentDOMIndex = domChildren.indexOf(evt.related);
- var currentIndex = relatedContext.component.getVmIndex(currentDOMIndex);
- var draggedInList = domChildren.indexOf(draggingElement) !== -1;
- return draggedInList || !evt.willInsertAfter ? currentIndex : currentIndex + 1;
- },
- onDragMove: function onDragMove(evt, originalEvent) {
- var onMove = this.move;
-
- if (!onMove || !this.realList) {
- return true;
- }
-
- var relatedContext = this.getRelatedContextFromMoveEvent(evt);
- var draggedContext = this.context;
- var futureIndex = this.computeFutureIndex(relatedContext, evt);
-
- assign_default()(draggedContext, {
- futureIndex: futureIndex
- });
-
- var sendEvt = assign_default()({}, evt, {
- relatedContext: relatedContext,
- draggedContext: draggedContext
- });
-
- return onMove(sendEvt, originalEvent);
- },
- onDragEnd: function onDragEnd() {
- this.computeIndexes();
- draggingElement = null;
- }
- }
- };
-
- if (typeof window !== "undefined" && "Vue" in window) {
- window.Vue.component("draggable", draggableComponent);
- }
-
- /* harmony default export */ var vuedraggable = (draggableComponent);
- // CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
-
-
- /* harmony default export */ var entry_lib = __webpack_exports__["default"] = (vuedraggable);
-
-
-
- /***/ })
-
- /******/ })["default"];
- });
- //# sourceMappingURL=vuedraggable.umd.js.map
|