moodle_local_treestudyplan/amd/build/vue-easy-dnd/vue-class-component.min.js.map
2024-06-03 23:24:16 +02:00

1 line
13 KiB
Plaintext

{"version":3,"file":"vue-class-component.min.js","sources":["../../src/vue-easy-dnd/vue-class-component.js"],"sourcesContent":["/* eslint-disable */\n/* eslint no-unused-vars: \"off\" */\n/**\n * vue-class-component v7.2.6\n * (c) 2015-present Evan You\n * @license MIT\n */\nimport Vue from '../vue/vue';\n\n// The rational behind the verbose Reflect-feature check below is the fact that there are polyfills\n// which add an implementation for Reflect.defineMetadata but not for Reflect.getOwnMetadataKeys.\n// Without this check consumers will encounter hard to track down runtime errors.\nfunction reflectionIsSupported() {\n return typeof Reflect !== 'undefined' && Reflect.defineMetadata && Reflect.getOwnMetadataKeys;\n}\nfunction copyReflectionMetadata(to, from) {\n forwardMetadata(to, from);\n Object.getOwnPropertyNames(from.prototype).forEach(key => {\n forwardMetadata(to.prototype, from.prototype, key);\n });\n Object.getOwnPropertyNames(from).forEach(key => {\n forwardMetadata(to, from, key);\n });\n}\n\nfunction forwardMetadata(to, from, propertyKey) {\n var metaKeys = propertyKey ? Reflect.getOwnMetadataKeys(from, propertyKey) : Reflect.getOwnMetadataKeys(from);\n metaKeys.forEach(metaKey => {\n var metadata = propertyKey ? Reflect.getOwnMetadata(metaKey, from, propertyKey) : Reflect.getOwnMetadata(metaKey, from);\n\n if (propertyKey) {\n Reflect.defineMetadata(metaKey, metadata, to, propertyKey);\n } else {\n Reflect.defineMetadata(metaKey, metadata, to);\n }\n });\n}\n\nvar fakeArray = {\n __proto__: []\n};\nvar hasProto = fakeArray instanceof Array;\nfunction createDecorator(factory) {\n return (target, key, index) => {\n var Ctor = typeof target === 'function' ? target : target.constructor;\n\n if (!Ctor.__decorators__) {\n Ctor.__decorators__ = [];\n }\n\n if (typeof index !== 'number') {\n index = undefined;\n }\n\n Ctor.__decorators__.push(options => factory(options, key, index));\n };\n}\nfunction mixins() {\n for (var _len = arguments.length, Ctors = new Array(_len), _key = 0; _key < _len; _key++) {\n Ctors[_key] = arguments[_key];\n }\n\n return Vue.extend({\n mixins: Ctors\n });\n}\nfunction isPrimitive(value) {\n var type = typeof value;\n return value == null || type !== 'object' && type !== 'function';\n}\nfunction warn(message) {\n if (typeof console !== 'undefined') {\n console.warn('[vue-class-component] ' + message);\n }\n}\n\nfunction collectDataFromConstructor(vm, Component) {\n // override _init to prevent to init as Vue instance\n var originalInit = Component.prototype._init;\n\n Component.prototype._init = function () {\n // proxy to actual vm\n var keys = Object.getOwnPropertyNames(vm); // 2.2.0 compat (props are no longer exposed as self properties)\n\n if (vm.$options.props) {\n for (var key in vm.$options.props) {\n if (!vm.hasOwnProperty(key)) {\n keys.push(key);\n }\n }\n }\n\n keys.forEach(key => {\n Object.defineProperty(this, key, {\n get: () => vm[key],\n set: value => {\n vm[key] = value;\n },\n configurable: true\n });\n });\n }; // should be acquired class property values\n\n\n var data = new Component(); // restore original _init to avoid memory leak (#209)\n\n Component.prototype._init = originalInit; // create plain data object\n\n var plainData = {};\n Object.keys(data).forEach(key => {\n if (data[key] !== undefined) {\n plainData[key] = data[key];\n }\n });\n\n {\n if (!(Component.prototype instanceof Vue) && Object.keys(plainData).length > 0) {\n warn('Component class must inherit Vue or its descendant class ' + 'when class property is used.');\n }\n }\n\n return plainData;\n}\n\nvar $internalHooks = ['data', 'beforeCreate', 'created', 'beforeMount', 'mounted', 'beforeDestroy', 'destroyed', 'beforeUpdate', 'updated', 'activated', 'deactivated', 'render', 'errorCaptured', 'serverPrefetch' // 2.6\n];\nfunction componentFactory(Component) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n options.name = options.name || Component._componentTag || Component.name; // prototype props.\n\n var proto = Component.prototype;\n Object.getOwnPropertyNames(proto).forEach(function (key) {\n if (key === 'constructor') {\n return;\n } // hooks\n\n\n if ($internalHooks.indexOf(key) > -1) {\n options[key] = proto[key];\n return;\n }\n\n var descriptor = Object.getOwnPropertyDescriptor(proto, key);\n\n if (descriptor.value !== void 0) {\n // methods\n if (typeof descriptor.value === 'function') {\n (options.methods || (options.methods = {}))[key] = descriptor.value;\n } else {\n // typescript decorated data\n (options.mixins || (options.mixins = [])).push({\n data() {\n return {\n [key]: descriptor.value\n };\n }\n\n });\n }\n } else if (descriptor.get || descriptor.set) {\n // computed properties\n (options.computed || (options.computed = {}))[key] = {\n get: descriptor.get,\n set: descriptor.set\n };\n }\n });\n (options.mixins || (options.mixins = [])).push({\n data() {\n return collectDataFromConstructor(this, Component);\n }\n\n }); // decorate options\n\n var decorators = Component.__decorators__;\n\n if (decorators) {\n decorators.forEach(fn => fn(options));\n delete Component.__decorators__;\n } // find super\n\n\n var superProto = Object.getPrototypeOf(Component.prototype);\n var Super = superProto instanceof Vue ? superProto.constructor : Vue;\n var Extended = Super.extend(options);\n forwardStaticMembers(Extended, Component, Super);\n\n if (reflectionIsSupported()) {\n copyReflectionMetadata(Extended, Component);\n }\n\n return Extended;\n}\nvar reservedPropertyNames = [// Unique id\n'cid', // Super Vue constructor\n'super', // Component options that will be used by the component\n'options', 'superOptions', 'extendOptions', 'sealedOptions', // Private assets\n'component', 'directive', 'filter'];\nvar shouldIgnore = {\n prototype: true,\n arguments: true,\n callee: true,\n caller: true\n};\n\nfunction forwardStaticMembers(Extended, Original, Super) {\n // We have to use getOwnPropertyNames since Babel registers methods as non-enumerable\n Object.getOwnPropertyNames(Original).forEach(key => {\n // Skip the properties that should not be overwritten\n if (shouldIgnore[key]) {\n return;\n } // Some browsers does not allow reconfigure built-in properties\n\n\n var extendedDescriptor = Object.getOwnPropertyDescriptor(Extended, key);\n\n if (extendedDescriptor && !extendedDescriptor.configurable) {\n return;\n }\n\n var descriptor = Object.getOwnPropertyDescriptor(Original, key); // If the user agent does not support `__proto__` or its family (IE <= 10),\n // the sub class properties may be inherited properties from the super class in TypeScript.\n // We need to exclude such properties to prevent to overwrite\n // the component options object which stored on the extended constructor (See #192).\n // If the value is a referenced value (object or function),\n // we can check equality of them and exclude it if they have the same reference.\n // If it is a primitive value, it will be forwarded for safety.\n\n if (!hasProto) {\n // Only `cid` is explicitly exluded from property forwarding\n // because we cannot detect whether it is a inherited property or not\n // on the no `__proto__` environment even though the property is reserved.\n if (key === 'cid') {\n return;\n }\n\n var superDescriptor = Object.getOwnPropertyDescriptor(Super, key);\n\n if (!isPrimitive(descriptor.value) && superDescriptor && superDescriptor.value === descriptor.value) {\n return;\n }\n } // Warn if the users manually declare reserved properties\n\n\n if ( reservedPropertyNames.indexOf(key) >= 0) {\n warn(\"Static property name '\".concat(key, \"' declared on class '\").concat(Original.name, \"' \") + 'conflicts with reserved property name of Vue internal. ' + 'It may cause unexpected behavior of the component. Consider renaming the property.');\n }\n\n Object.defineProperty(Extended, key, descriptor);\n });\n}\n\nfunction Component(options) {\n if (typeof options === 'function') {\n return componentFactory(options);\n }\n\n return function (Component) {\n return componentFactory(Component, options);\n };\n}\n\nComponent.registerHooks = function registerHooks(keys) {\n $internalHooks.push(...keys);\n};\n\nexport { Component, createDecorator, mixins };\n"],"names":["forwardMetadata","to","from","propertyKey","Reflect","getOwnMetadataKeys","forEach","metaKey","metadata","getOwnMetadata","defineMetadata","factory","target","key","index","Ctor","constructor","__decorators__","undefined","push","options","_len","arguments","length","Ctors","Array","_key","Vue","extend","mixins","hasProto","__proto__","warn","message","console","$internalHooks","componentFactory","Component","name","_componentTag","proto","prototype","Object","getOwnPropertyNames","indexOf","descriptor","getOwnPropertyDescriptor","value","methods","data","get","set","computed","vm","originalInit","_init","keys","$options","props","hasOwnProperty","defineProperty","this","configurable","plainData","collectDataFromConstructor","decorators","fn","superProto","getPrototypeOf","Super","Extended","Original","shouldIgnore","extendedDescriptor","type","superDescriptor","reservedPropertyNames","concat","forwardStaticMembers","callee","caller","registerHooks"],"mappings":";;;;;eAyBSA,gBAAgBC,GAAIC,KAAMC,cAClBA,YAAcC,QAAQC,mBAAmBH,KAAMC,aAAeC,QAAQC,mBAAmBH,OAC/FI,SAAQC,cACXC,SAAWL,YAAcC,QAAQK,eAAeF,QAASL,KAAMC,aAAeC,QAAQK,eAAeF,QAASL,MAE9GC,YACFC,QAAQM,eAAeH,QAASC,SAAUP,GAAIE,aAE9CC,QAAQM,eAAeH,QAASC,SAAUP,8HASvBU,eAChB,CAACC,OAAQC,IAAKC,aACfC,KAAyB,mBAAXH,OAAwBA,OAASA,OAAOI,YAErDD,KAAKE,iBACRF,KAAKE,eAAiB,IAGH,iBAAVH,QACTA,WAAQI,GAGVH,KAAKE,eAAeE,MAAKC,SAAWT,QAAQS,QAASP,IAAKC,0CAIvD,IAAIO,KAAOC,UAAUC,OAAQC,MAAQ,IAAIC,MAAMJ,MAAOK,KAAO,EAAGA,KAAOL,KAAMK,OAChFF,MAAME,MAAQJ,UAAUI,aAGnBC,aAAIC,OAAO,CAChBC,OAAQL,+DAtBRM,SAHY,CACdC,UAAW,cAEuBN,eA6B3BO,KAAKC,SACW,oBAAZC,SACTA,QAAQF,KAAK,yBAA2BC,aAoDxCE,eAAiB,CAAC,OAAQ,eAAgB,UAAW,cAAe,UAAW,gBAAiB,YAAa,eAAgB,UAAW,YAAa,cAAe,SAAU,gBAAiB,2BAE1LC,iBAAiBC,eACpBjB,QAAUE,UAAUC,OAAS,QAAsBL,IAAjBI,UAAU,GAAmBA,UAAU,GAAK,GAClFF,QAAQkB,KAAOlB,QAAQkB,MAAQD,UAAUE,eAAiBF,UAAUC,SAEhEE,MAAQH,UAAUI,UACtBC,OAAOC,oBAAoBH,OAAOlC,SAAQ,SAAUO,QACtC,gBAARA,OAKAsB,eAAeS,QAAQ/B,MAAQ,EACjCO,QAAQP,KAAO2B,MAAM3B,cAInBgC,WAAaH,OAAOI,yBAAyBN,MAAO3B,UAE/B,IAArBgC,WAAWE,MAEmB,mBAArBF,WAAWE,OACnB3B,QAAQ4B,UAAY5B,QAAQ4B,QAAU,KAAKnC,KAAOgC,WAAWE,OAG7D3B,QAAQS,SAAWT,QAAQS,OAAS,KAAKV,KAAK,CAC7C8B,KAAI,KACK,EACJpC,KAAMgC,WAAWE,WAMjBF,WAAWK,KAAOL,WAAWM,QAErC/B,QAAQgC,WAAahC,QAAQgC,SAAW,KAAKvC,KAAO,CACnDqC,IAAKL,WAAWK,IAChBC,IAAKN,WAAWM,WAIrB/B,QAAQS,SAAWT,QAAQS,OAAS,KAAKV,KAAK,CAC7C8B,uBA5FgCI,GAAIhB,eAElCiB,aAAejB,UAAUI,UAAUc,MAEvClB,UAAUI,UAAUc,MAAQ,eAEtBC,KAAOd,OAAOC,oBAAoBU,OAElCA,GAAGI,SAASC,UACT,IAAI7C,OAAOwC,GAAGI,SAASC,MACrBL,GAAGM,eAAe9C,MACrB2C,KAAKrC,KAAKN,KAKhB2C,KAAKlD,SAAQO,MACX6B,OAAOkB,eAAeC,KAAMhD,IAAK,CAC/BqC,IAAK,IAAMG,GAAGxC,KACdsC,IAAKJ,QACHM,GAAGxC,KAAOkC,KAAV,EAEFe,cAAc,YAMhBb,KAAO,IAAIZ,UAEfA,UAAUI,UAAUc,MAAQD,iBAExBS,UAAY,UAChBrB,OAAOc,KAAKP,MAAM3C,SAAQO,WACNK,IAAd+B,KAAKpC,OACPkD,UAAUlD,KAAOoC,KAAKpC,WAKlBwB,UAAUI,qBAAqBd,eAAQe,OAAOc,KAAKO,WAAWxC,OAAS,GAC3ES,KAAK,yFAIF+B,UAgDIC,CAA2BH,KAAMxB,kBAKxC4B,WAAa5B,UAAUpB,eAEvBgD,aACFA,WAAW3D,SAAQ4D,IAAMA,GAAG9C,kBACrBiB,UAAUpB,oBAnKWhB,GAAIC,KAuK9BiE,WAAazB,OAAO0B,eAAe/B,UAAUI,WAC7C4B,MAAQF,sBAAsBxC,aAAMwC,WAAWnD,YAAcW,aAC7D2C,SAAWD,MAAMzC,OAAOR,yBAqBAkD,SAAUC,SAAUF,OAEhD3B,OAAOC,oBAAoB4B,UAAUjE,SAAQO,UAEvC2D,aAAa3D,UAKb4D,mBAAqB/B,OAAOI,yBAAyBwB,SAAUzD,SAE/D4D,oBAAuBA,mBAAmBX,kBAtJ7Bf,MACf2B,KAyJE7B,WAAaH,OAAOI,yBAAyByB,SAAU1D,SAQtDiB,SAAU,IAID,QAARjB,eAIA8D,gBAAkBjC,OAAOI,yBAAyBuB,MAAOxD,QA1K9CkC,MA4KEF,WAAWE,MA3K5B2B,YAAc3B,MACF,MAATA,QAA0B,WAAT2B,MAA8B,aAATA,OA0KHC,iBAAmBA,gBAAgB5B,QAAUF,WAAWE,aAM3F6B,sBAAsBhC,QAAQ/B,MAAQ,GACzCmB,KAAK,yBAAyB6C,OAAOhE,IAAK,yBAAyBgE,OAAON,SAASjC,KAAM,MAApF,6IAGPI,OAAOkB,eAAeU,SAAUzD,IAAKgC,iBA/DvCiC,CAAqBR,SAAUjC,UAAWgC,OA5KhB,oBAAZjE,SAA2BA,QAAQM,gBAAkBN,QAAQC,qBAG3EL,gBAD8BC,GA6KLqE,SA7KSpE,KA6KCmC,WA3KnCK,OAAOC,oBAAoBzC,KAAKuC,WAAWnC,SAAQO,MACjDb,gBAAgBC,GAAGwC,UAAWvC,KAAKuC,UAAW5B,IAA9C,IAEF6B,OAAOC,oBAAoBzC,MAAMI,SAAQO,MACvCb,gBAAgBC,GAAIC,KAAMW,IAA1B,KA0KKyD,aAELM,sBAAwB,CAC5B,MACA,QACA,UAAW,eAAgB,gBAAiB,gBAC5C,YAAa,YAAa,UACtBJ,aAAe,CACjB/B,WAAW,EACXnB,WAAW,EACXyD,QAAQ,EACRC,QAAQ,YAkDD3C,UAAUjB,eACM,mBAAZA,QACFgB,iBAAiBhB,SAGnB,SAAUiB,kBACRD,iBAAiBC,UAAWjB,UAIvCiB,UAAU4C,cAAgB,SAAuBzB,MAC/CrB,eAAehB,QAAQqC"}