diff --git a/dist/stats.json b/dist/stats.json index 839037c5..3a74bd9e 100644 --- a/dist/stats.json +++ b/dist/stats.json @@ -1 +1 @@ -{"errors":[],"warnings":[],"version":"2.7.0","hash":"8823f21534363cc0f1eb","publicPath":"/","assetsByChunkName":{"main":"vuetable-2-full.js"},"assets":[{"name":"vuetable-2-full.js","size":141449,"chunks":[0],"chunkNames":["main"],"emitted":true},{"name":"stats.json","size":0,"chunks":[],"chunkNames":[]}],"entrypoints":{"main":{"chunks":[0],"assets":["vuetable-2-full.js"]}},"chunks":[{"id":0,"rendered":true,"initial":true,"entry":true,"extraAsync":false,"size":130989,"names":["main"],"files":["vuetable-2-full.js"],"hash":"358899387899a6f7574b","parents":[],"origins":[{"moduleId":40,"module":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","moduleName":"./src/index.js","loc":"","name":"main","reasons":[]}]}],"modules":[{"id":0,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/utils.js","name":"./~/axios/lib/utils.js","index":11,"index2":7,"size":7456,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","issuerId":17,"issuerName":"./~/axios/lib/axios.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":3,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/defaults.js","module":"./~/axios/lib/defaults.js","moduleName":"./~/axios/lib/defaults.js","type":"cjs require","userRequest":"./utils","loc":"3:12-30"},{"moduleId":5,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","module":"./~/axios/lib/adapters/xhr.js","moduleName":"./~/axios/lib/adapters/xhr.js","type":"cjs require","userRequest":"./../utils","loc":"3:12-33"},{"moduleId":17,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","module":"./~/axios/lib/axios.js","moduleName":"./~/axios/lib/axios.js","type":"cjs require","userRequest":"./utils","loc":"3:12-30"},{"moduleId":19,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/Axios.js","module":"./~/axios/lib/core/Axios.js","moduleName":"./~/axios/lib/core/Axios.js","type":"cjs require","userRequest":"./../utils","loc":"4:12-33"},{"moduleId":20,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/InterceptorManager.js","module":"./~/axios/lib/core/InterceptorManager.js","moduleName":"./~/axios/lib/core/InterceptorManager.js","type":"cjs require","userRequest":"./../utils","loc":"3:12-33"},{"moduleId":21,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/dispatchRequest.js","module":"./~/axios/lib/core/dispatchRequest.js","moduleName":"./~/axios/lib/core/dispatchRequest.js","type":"cjs require","userRequest":"./../utils","loc":"3:12-33"},{"moduleId":24,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/transformData.js","module":"./~/axios/lib/core/transformData.js","moduleName":"./~/axios/lib/core/transformData.js","type":"cjs require","userRequest":"./../utils","loc":"3:12-33"},{"moduleId":26,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/buildURL.js","module":"./~/axios/lib/helpers/buildURL.js","moduleName":"./~/axios/lib/helpers/buildURL.js","type":"cjs require","userRequest":"./../utils","loc":"3:12-33"},{"moduleId":28,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/cookies.js","module":"./~/axios/lib/helpers/cookies.js","moduleName":"./~/axios/lib/helpers/cookies.js","type":"cjs require","userRequest":"./../utils","loc":"3:12-33"},{"moduleId":30,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/isURLSameOrigin.js","module":"./~/axios/lib/helpers/isURLSameOrigin.js","moduleName":"./~/axios/lib/helpers/isURLSameOrigin.js","type":"cjs require","userRequest":"./../utils","loc":"3:12-33"},{"moduleId":31,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/normalizeHeaderName.js","module":"./~/axios/lib/helpers/normalizeHeaderName.js","moduleName":"./~/axios/lib/helpers/normalizeHeaderName.js","type":"cjs require","userRequest":"../utils","loc":"3:12-31"},{"moduleId":32,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/parseHeaders.js","module":"./~/axios/lib/helpers/parseHeaders.js","moduleName":"./~/axios/lib/helpers/parseHeaders.js","type":"cjs require","userRequest":"./../utils","loc":"3:12-33"}],"usedExports":true,"providedExports":null,"depth":5,"source":"'use strict';\n\nvar bind = require('./helpers/bind');\n\n/*global toString:true*/\n\n// utils is a library of generic helper functions non-specific to axios\n\nvar toString = Object.prototype.toString;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Array, otherwise false\n */\nfunction isArray(val) {\n return toString.call(val) === '[object Array]';\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nfunction isArrayBuffer(val) {\n return toString.call(val) === '[object ArrayBuffer]';\n}\n\n/**\n * Determine if a value is a FormData\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nfunction isFormData(val) {\n return (typeof FormData !== 'undefined') && (val instanceof FormData);\n}\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n var result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (val.buffer instanceof ArrayBuffer);\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a String, otherwise false\n */\nfunction isString(val) {\n return typeof val === 'string';\n}\n\n/**\n * Determine if a value is a Number\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Number, otherwise false\n */\nfunction isNumber(val) {\n return typeof val === 'number';\n}\n\n/**\n * Determine if a value is undefined\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nfunction isUndefined(val) {\n return typeof val === 'undefined';\n}\n\n/**\n * Determine if a value is an Object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Object, otherwise false\n */\nfunction isObject(val) {\n return val !== null && typeof val === 'object';\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Date, otherwise false\n */\nfunction isDate(val) {\n return toString.call(val) === '[object Date]';\n}\n\n/**\n * Determine if a value is a File\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\nfunction isFile(val) {\n return toString.call(val) === '[object File]';\n}\n\n/**\n * Determine if a value is a Blob\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nfunction isBlob(val) {\n return toString.call(val) === '[object Blob]';\n}\n\n/**\n * Determine if a value is a Function\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nfunction isFunction(val) {\n return toString.call(val) === '[object Function]';\n}\n\n/**\n * Determine if a value is a Stream\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nfunction isStream(val) {\n return isObject(val) && isFunction(val.pipe);\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nfunction isURLSearchParams(val) {\n return typeof URLSearchParams !== 'undefined' && val instanceof URLSearchParams;\n}\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n * @returns {String} The String freed of excess whitespace\n */\nfunction trim(str) {\n return str.replace(/^\\s*/, '').replace(/\\s*$/, '');\n}\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * typeof document.createElement -> undefined\n */\nfunction isStandardBrowserEnv() {\n return (\n typeof window !== 'undefined' &&\n typeof document !== 'undefined' &&\n typeof document.createElement === 'function'\n );\n}\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n */\nfunction forEach(obj, fn) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object' && !isArray(obj)) {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (var i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n fn.call(null, obj[key], key, obj);\n }\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n var result = {};\n function assignValue(val, key) {\n if (typeof result[key] === 'object' && typeof val === 'object') {\n result[key] = merge(result[key], val);\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n * @return {Object} The resulting value of object a\n */\nfunction extend(a, b, thisArg) {\n forEach(b, function assignValue(val, key) {\n if (thisArg && typeof val === 'function') {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n });\n return a;\n}\n\nmodule.exports = {\n isArray: isArray,\n isArrayBuffer: isArrayBuffer,\n isFormData: isFormData,\n isArrayBufferView: isArrayBufferView,\n isString: isString,\n isNumber: isNumber,\n isObject: isObject,\n isUndefined: isUndefined,\n isDate: isDate,\n isFile: isFile,\n isBlob: isBlob,\n isFunction: isFunction,\n isStream: isStream,\n isURLSearchParams: isURLSearchParams,\n isStandardBrowserEnv: isStandardBrowserEnv,\n forEach: forEach,\n merge: merge,\n extend: extend,\n trim: trim\n};\n"},{"id":1,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/component-normalizer.js","name":"./~/vue-loader/lib/component-normalizer.js","index":7,"index2":5,"size":2549,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue","issuerId":12,"issuerName":"./src/components/Vuetable.vue","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":2,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationMixin.vue","module":"./src/components/VuetablePaginationMixin.vue","moduleName":"./src/components/VuetablePaginationMixin.vue","type":"cjs require","userRequest":"!../../node_modules/vue-loader/lib/component-normalizer","loc":"2:16-82"},{"moduleId":4,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationInfoMixin.vue","module":"./src/components/VuetablePaginationInfoMixin.vue","moduleName":"./src/components/VuetablePaginationInfoMixin.vue","type":"cjs require","userRequest":"!../../node_modules/vue-loader/lib/component-normalizer","loc":"2:16-82"},{"moduleId":12,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue","module":"./src/components/Vuetable.vue","moduleName":"./src/components/Vuetable.vue","type":"cjs require","userRequest":"!../../node_modules/vue-loader/lib/component-normalizer","loc":"6:16-82"},{"moduleId":13,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePagination.vue","module":"./src/components/VuetablePagination.vue","moduleName":"./src/components/VuetablePagination.vue","type":"cjs require","userRequest":"!../../node_modules/vue-loader/lib/component-normalizer","loc":"2:16-82"},{"moduleId":14,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationDropdown.vue","module":"./src/components/VuetablePaginationDropdown.vue","moduleName":"./src/components/VuetablePaginationDropdown.vue","type":"cjs require","userRequest":"!../../node_modules/vue-loader/lib/component-normalizer","loc":"2:16-82"},{"moduleId":15,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationInfo.vue","module":"./src/components/VuetablePaginationInfo.vue","moduleName":"./src/components/VuetablePaginationInfo.vue","type":"cjs require","userRequest":"!../../node_modules/vue-loader/lib/component-normalizer","loc":"2:16-82"}],"usedExports":true,"providedExports":null,"depth":2,"source":"/* globals __VUE_SSR_CONTEXT__ */\n\n// this module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle\n\nmodule.exports = function normalizeComponent (\n rawScriptExports,\n compiledTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier /* server only */\n) {\n var esModule\n var scriptExports = rawScriptExports = rawScriptExports || {}\n\n // ES6 modules interop\n var type = typeof rawScriptExports.default\n if (type === 'object' || type === 'function') {\n esModule = rawScriptExports\n scriptExports = rawScriptExports.default\n }\n\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (compiledTemplate) {\n options.render = compiledTemplate.render\n options.staticRenderFns = compiledTemplate.staticRenderFns\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = injectStyles\n }\n\n if (hook) {\n var functional = options.functional\n var existing = functional\n ? options.render\n : options.beforeCreate\n if (!functional) {\n // inject component registration as beforeCreate hook\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n } else {\n // register for functioal component in vue file\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return existing(h, context)\n }\n }\n }\n\n return {\n esModule: esModule,\n exports: scriptExports,\n options: options\n }\n}\n"},{"id":2,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationMixin.vue","name":"./src/components/VuetablePaginationMixin.vue","index":38,"index2":36,"size":1145,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","issuerId":40,"issuerName":"./src/index.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":35,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=script&index=0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePagination.vue","module":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/VuetablePagination.vue","moduleName":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/VuetablePagination.vue","type":"harmony import","userRequest":"./VuetablePaginationMixin.vue","loc":"3:0-60"},{"moduleId":36,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=script&index=0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationDropdown.vue","module":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/VuetablePaginationDropdown.vue","moduleName":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/VuetablePaginationDropdown.vue","type":"harmony import","userRequest":"./VuetablePaginationMixin.vue","loc":"3:0-60"},{"moduleId":40,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","module":"./src/index.js","moduleName":"./src/index.js","type":"harmony import","userRequest":"./components/VuetablePaginationMixin.vue","loc":"5:0-79"}],"usedExports":["default"],"providedExports":null,"depth":1,"source":"var disposed = false\nvar Component = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")(\n /* script */\n require(\"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./VuetablePaginationMixin.vue\"),\n /* template */\n null,\n /* styles */\n null,\n /* scopeId */\n null,\n /* moduleIdentifier (server only) */\n null\n)\nComponent.options.__file = \"/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationMixin.vue\"\nif (Component.esModule && Object.keys(Component.esModule).some(function (key) {return key !== \"default\" && key.substr(0, 2) !== \"__\"})) {console.error(\"named exports are not supported in *.vue files.\")}\n\n/* hot reload */\nif (module.hot) {(function () {\n var hotAPI = require(\"vue-loader/node_modules/vue-hot-reload-api\")\n hotAPI.install(require(\"vue\"), false)\n if (!hotAPI.compatible) return\n module.hot.accept()\n if (!module.hot.data) {\n hotAPI.createRecord(\"data-v-32ce7b55\", Component.options)\n } else {\n hotAPI.reload(\"data-v-32ce7b55\", Component.options)\n }\n module.hot.dispose(function (data) {\n disposed = true\n })\n})()}\n\nmodule.exports = Component.exports\n"},{"id":3,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/defaults.js","name":"./~/axios/lib/defaults.js","index":14,"index2":19,"size":2376,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","issuerId":17,"issuerName":"./~/axios/lib/axios.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":17,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","module":"./~/axios/lib/axios.js","moduleName":"./~/axios/lib/axios.js","type":"cjs require","userRequest":"./defaults","loc":"6:15-36"},{"moduleId":19,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/Axios.js","module":"./~/axios/lib/core/Axios.js","moduleName":"./~/axios/lib/core/Axios.js","type":"cjs require","userRequest":"./../defaults","loc":"3:15-39"},{"moduleId":21,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/dispatchRequest.js","module":"./~/axios/lib/core/dispatchRequest.js","moduleName":"./~/axios/lib/core/dispatchRequest.js","type":"cjs require","userRequest":"../defaults","loc":"6:15-37"}],"usedExports":true,"providedExports":null,"depth":5,"source":"'use strict';\n\nvar utils = require('./utils');\nvar normalizeHeaderName = require('./helpers/normalizeHeaderName');\n\nvar PROTECTION_PREFIX = /^\\)\\]\\}',?\\n/;\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\n\nfunction getDefaultAdapter() {\n var adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = require('./adapters/xhr');\n } else if (typeof process !== 'undefined') {\n // For node use HTTP adapter\n adapter = require('./adapters/http');\n }\n return adapter;\n}\n\nvar defaults = {\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Content-Type');\n if (utils.isFormData(data) ||\n utils.isArrayBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n if (utils.isObject(data)) {\n setContentTypeIfUnset(headers, 'application/json;charset=utf-8');\n return JSON.stringify(data);\n }\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n /*eslint no-param-reassign:0*/\n if (typeof data === 'string') {\n data = data.replace(PROTECTION_PREFIX, '');\n try {\n data = JSON.parse(data);\n } catch (e) { /* Ignore */ }\n }\n return data;\n }],\n\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n }\n};\n\ndefaults.headers = {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMehtodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nmodule.exports = defaults;\n"},{"id":4,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationInfoMixin.vue","name":"./src/components/VuetablePaginationInfoMixin.vue","index":46,"index2":44,"size":1153,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","issuerId":40,"issuerName":"./src/index.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":37,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=script&index=0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationInfo.vue","module":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/VuetablePaginationInfo.vue","moduleName":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/VuetablePaginationInfo.vue","type":"harmony import","userRequest":"./VuetablePaginationInfoMixin.vue","loc":"3:0-68"},{"moduleId":40,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","module":"./src/index.js","moduleName":"./src/index.js","type":"harmony import","userRequest":"./components/VuetablePaginationInfoMixin.vue","loc":"6:0-87"}],"usedExports":["default"],"providedExports":null,"depth":1,"source":"var disposed = false\nvar Component = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")(\n /* script */\n require(\"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./VuetablePaginationInfoMixin.vue\"),\n /* template */\n null,\n /* styles */\n null,\n /* scopeId */\n null,\n /* moduleIdentifier (server only) */\n null\n)\nComponent.options.__file = \"/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationInfoMixin.vue\"\nif (Component.esModule && Object.keys(Component.esModule).some(function (key) {return key !== \"default\" && key.substr(0, 2) !== \"__\"})) {console.error(\"named exports are not supported in *.vue files.\")}\n\n/* hot reload */\nif (module.hot) {(function () {\n var hotAPI = require(\"vue-loader/node_modules/vue-hot-reload-api\")\n hotAPI.install(require(\"vue\"), false)\n if (!hotAPI.compatible) return\n module.hot.accept()\n if (!module.hot.data) {\n hotAPI.createRecord(\"data-v-845c4772\", Component.options)\n } else {\n hotAPI.reload(\"data-v-845c4772\", Component.options)\n }\n module.hot.dispose(function (data) {\n disposed = true\n })\n})()}\n\nmodule.exports = Component.exports\n"},{"id":5,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","name":"./~/axios/lib/adapters/xhr.js","index":17,"index2":18,"size":5937,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/defaults.js","issuerId":3,"issuerName":"./~/axios/lib/defaults.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":3,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/defaults.js","module":"./~/axios/lib/defaults.js","moduleName":"./~/axios/lib/defaults.js","type":"cjs require","userRequest":"./adapters/xhr","loc":"21:14-39"},{"moduleId":3,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/defaults.js","module":"./~/axios/lib/defaults.js","moduleName":"./~/axios/lib/defaults.js","type":"cjs require","userRequest":"./adapters/http","loc":"24:14-40"}],"usedExports":true,"providedExports":null,"depth":6,"source":"'use strict';\n\nvar utils = require('./../utils');\nvar settle = require('./../core/settle');\nvar buildURL = require('./../helpers/buildURL');\nvar parseHeaders = require('./../helpers/parseHeaders');\nvar isURLSameOrigin = require('./../helpers/isURLSameOrigin');\nvar createError = require('../core/createError');\nvar btoa = (typeof window !== 'undefined' && window.btoa && window.btoa.bind(window)) || require('./../helpers/btoa');\n\nmodule.exports = function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n var requestData = config.data;\n var requestHeaders = config.headers;\n\n if (utils.isFormData(requestData)) {\n delete requestHeaders['Content-Type']; // Let the browser set it\n }\n\n var request = new XMLHttpRequest();\n var loadEvent = 'onreadystatechange';\n var xDomain = false;\n\n // For IE 8/9 CORS support\n // Only supports POST and GET calls and doesn't returns the response headers.\n // DON'T do this for testing b/c XMLHttpRequest is mocked, not XDomainRequest.\n if (process.env.NODE_ENV !== 'test' &&\n typeof window !== 'undefined' &&\n window.XDomainRequest && !('withCredentials' in request) &&\n !isURLSameOrigin(config.url)) {\n request = new window.XDomainRequest();\n loadEvent = 'onload';\n xDomain = true;\n request.onprogress = function handleProgress() {};\n request.ontimeout = function handleTimeout() {};\n }\n\n // HTTP basic authentication\n if (config.auth) {\n var username = config.auth.username || '';\n var password = config.auth.password || '';\n requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n }\n\n request.open(config.method.toUpperCase(), buildURL(config.url, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n // Listen for ready state\n request[loadEvent] = function handleLoad() {\n if (!request || (request.readyState !== 4 && !xDomain)) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n\n // Prepare the response\n var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n var responseData = !config.responseType || config.responseType === 'text' ? request.responseText : request.response;\n var response = {\n data: responseData,\n // IE sends 1223 instead of 204 (https://github.com/mzabriskie/axios/issues/201)\n status: request.status === 1223 ? 204 : request.status,\n statusText: request.status === 1223 ? 'No Content' : request.statusText,\n headers: responseHeaders,\n config: config,\n request: request\n };\n\n settle(resolve, reject, response);\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(createError('Network Error', config));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n reject(createError('timeout of ' + config.timeout + 'ms exceeded', config, 'ECONNABORTED'));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (utils.isStandardBrowserEnv()) {\n var cookies = require('./../helpers/cookies');\n\n // Add xsrf header\n var xsrfValue = (config.withCredentials || isURLSameOrigin(config.url)) && config.xsrfCookieName ?\n cookies.read(config.xsrfCookieName) :\n undefined;\n\n if (xsrfValue) {\n requestHeaders[config.xsrfHeaderName] = xsrfValue;\n }\n }\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n // Remove Content-Type if data is undefined\n delete requestHeaders[key];\n } else {\n // Otherwise add header to the request\n request.setRequestHeader(key, val);\n }\n });\n }\n\n // Add withCredentials to request if needed\n if (config.withCredentials) {\n request.withCredentials = true;\n }\n\n // Add responseType to request if needed\n if (config.responseType) {\n try {\n request.responseType = config.responseType;\n } catch (e) {\n if (request.responseType !== 'json') {\n throw e;\n }\n }\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', config.onDownloadProgress);\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', config.onUploadProgress);\n }\n\n if (config.cancelToken) {\n // Handle cancellation\n config.cancelToken.promise.then(function onCanceled(cancel) {\n if (!request) {\n return;\n }\n\n request.abort();\n reject(cancel);\n // Clean up request\n request = null;\n });\n }\n\n if (requestData === undefined) {\n requestData = null;\n }\n\n // Send the request\n request.send(requestData);\n });\n};\n"},{"id":6,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/cancel/Cancel.js","name":"./~/axios/lib/cancel/Cancel.js","index":32,"index2":27,"size":385,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","issuerId":17,"issuerName":"./~/axios/lib/axios.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":17,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","module":"./~/axios/lib/axios.js","moduleName":"./~/axios/lib/axios.js","type":"cjs require","userRequest":"./cancel/Cancel","loc":"39:15-41"},{"moduleId":18,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/cancel/CancelToken.js","module":"./~/axios/lib/cancel/CancelToken.js","moduleName":"./~/axios/lib/cancel/CancelToken.js","type":"cjs require","userRequest":"./Cancel","loc":"3:13-32"}],"usedExports":true,"providedExports":null,"depth":5,"source":"'use strict';\n\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\nfunction Cancel(message) {\n this.message = message;\n}\n\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\n\nCancel.prototype.__CANCEL__ = true;\n\nmodule.exports = Cancel;\n"},{"id":7,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/cancel/isCancel.js","name":"./~/axios/lib/cancel/isCancel.js","index":29,"index2":22,"size":102,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","issuerId":17,"issuerName":"./~/axios/lib/axios.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":17,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","module":"./~/axios/lib/axios.js","moduleName":"./~/axios/lib/axios.js","type":"cjs require","userRequest":"./cancel/isCancel","loc":"41:17-45"},{"moduleId":21,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/dispatchRequest.js","module":"./~/axios/lib/core/dispatchRequest.js","moduleName":"./~/axios/lib/core/dispatchRequest.js","type":"cjs require","userRequest":"../cancel/isCancel","loc":"5:15-44"}],"usedExports":true,"providedExports":null,"depth":5,"source":"'use strict';\n\nmodule.exports = function isCancel(value) {\n return !!(value && value.__CANCEL__);\n};\n"},{"id":8,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/createError.js","name":"./~/axios/lib/core/createError.js","index":19,"index2":11,"size":557,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","issuerId":5,"issuerName":"./~/axios/lib/adapters/xhr.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":5,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","module":"./~/axios/lib/adapters/xhr.js","moduleName":"./~/axios/lib/adapters/xhr.js","type":"cjs require","userRequest":"../core/createError","loc":"8:18-48"},{"moduleId":23,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/settle.js","module":"./~/axios/lib/core/settle.js","moduleName":"./~/axios/lib/core/settle.js","type":"cjs require","userRequest":"./createError","loc":"3:18-42"}],"usedExports":true,"providedExports":null,"depth":7,"source":"'use strict';\n\nvar enhanceError = require('./enhanceError');\n\n/**\n * Create an Error with the specified message, config, error code, and response.\n *\n * @param {string} message The error message.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n @ @param {Object} [response] The response.\n * @returns {Error} The created error.\n */\nmodule.exports = function createError(message, config, code, response) {\n var error = new Error(message);\n return enhanceError(error, config, code, response);\n};\n"},{"id":9,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/bind.js","name":"./~/axios/lib/helpers/bind.js","index":12,"index2":6,"size":256,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","issuerId":17,"issuerName":"./~/axios/lib/axios.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":0,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/utils.js","module":"./~/axios/lib/utils.js","moduleName":"./~/axios/lib/utils.js","type":"cjs require","userRequest":"./helpers/bind","loc":"3:11-36"},{"moduleId":17,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","module":"./~/axios/lib/axios.js","moduleName":"./~/axios/lib/axios.js","type":"cjs require","userRequest":"./helpers/bind","loc":"4:11-36"}],"usedExports":true,"providedExports":null,"depth":5,"source":"'use strict';\n\nmodule.exports = function bind(fn, thisArg) {\n return function wrap() {\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i];\n }\n return fn.apply(thisArg, args);\n };\n};\n"},{"id":10,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/process/browser.js","name":"./~/process/browser.js","index":15,"index2":8,"size":5418,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/setimmediate/setImmediate.js","issuerId":43,"issuerName":"./~/setimmediate/setImmediate.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":3,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/defaults.js","module":"./~/axios/lib/defaults.js","moduleName":"./~/axios/lib/defaults.js","type":"cjs require","userRequest":"process","loc":"1:0-37"},{"moduleId":43,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/setimmediate/setImmediate.js","module":"./~/setimmediate/setImmediate.js","moduleName":"./~/setimmediate/setImmediate.js","type":"cjs require","userRequest":"process","loc":"1:0-34"}],"usedExports":true,"providedExports":null,"depth":4,"source":"// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things. But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals. It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n throw new Error('clearTimeout has not been defined');\n}\n(function () {\n try {\n if (typeof setTimeout === 'function') {\n cachedSetTimeout = setTimeout;\n } else {\n cachedSetTimeout = defaultSetTimout;\n }\n } catch (e) {\n cachedSetTimeout = defaultSetTimout;\n }\n try {\n if (typeof clearTimeout === 'function') {\n cachedClearTimeout = clearTimeout;\n } else {\n cachedClearTimeout = defaultClearTimeout;\n }\n } catch (e) {\n cachedClearTimeout = defaultClearTimeout;\n }\n} ())\nfunction runTimeout(fun) {\n if (cachedSetTimeout === setTimeout) {\n //normal enviroments in sane situations\n return setTimeout(fun, 0);\n }\n // if setTimeout wasn't available but was latter defined\n if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n cachedSetTimeout = setTimeout;\n return setTimeout(fun, 0);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedSetTimeout(fun, 0);\n } catch(e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedSetTimeout.call(null, fun, 0);\n } catch(e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n return cachedSetTimeout.call(this, fun, 0);\n }\n }\n\n\n}\nfunction runClearTimeout(marker) {\n if (cachedClearTimeout === clearTimeout) {\n //normal enviroments in sane situations\n return clearTimeout(marker);\n }\n // if clearTimeout wasn't available but was latter defined\n if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n cachedClearTimeout = clearTimeout;\n return clearTimeout(marker);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedClearTimeout(marker);\n } catch (e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedClearTimeout.call(null, marker);\n } catch (e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n return cachedClearTimeout.call(this, marker);\n }\n }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n if (!draining || !currentQueue) {\n return;\n }\n draining = false;\n if (currentQueue.length) {\n queue = currentQueue.concat(queue);\n } else {\n queueIndex = -1;\n }\n if (queue.length) {\n drainQueue();\n }\n}\n\nfunction drainQueue() {\n if (draining) {\n return;\n }\n var timeout = runTimeout(cleanUpNextTick);\n draining = true;\n\n var len = queue.length;\n while(len) {\n currentQueue = queue;\n queue = [];\n while (++queueIndex < len) {\n if (currentQueue) {\n currentQueue[queueIndex].run();\n }\n }\n queueIndex = -1;\n len = queue.length;\n }\n currentQueue = null;\n draining = false;\n runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n var args = new Array(arguments.length - 1);\n if (arguments.length > 1) {\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n }\n queue.push(new Item(fun, args));\n if (queue.length === 1 && !draining) {\n runTimeout(drainQueue);\n }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n this.fun = fun;\n this.array = array;\n}\nItem.prototype.run = function () {\n this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n"},{"id":11,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/promise-polyfill/promise.js","name":"./~/promise-polyfill/promise.js","index":49,"index2":51,"size":6235,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","issuerId":40,"issuerName":"./src/index.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":40,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","module":"./src/index.js","moduleName":"./src/index.js","type":"harmony import","userRequest":"promise-polyfill","loc":"7:0-39"}],"usedExports":["default"],"providedExports":null,"depth":1,"source":"(function (root) {\n\n // Store setTimeout reference so promise-polyfill will be unaffected by\n // other code modifying setTimeout (like sinon.useFakeTimers())\n var setTimeoutFunc = setTimeout;\n\n function noop() {}\n \n // Polyfill for Function.prototype.bind\n function bind(fn, thisArg) {\n return function () {\n fn.apply(thisArg, arguments);\n };\n }\n\n function Promise(fn) {\n if (typeof this !== 'object') throw new TypeError('Promises must be constructed via new');\n if (typeof fn !== 'function') throw new TypeError('not a function');\n this._state = 0;\n this._handled = false;\n this._value = undefined;\n this._deferreds = [];\n\n doResolve(fn, this);\n }\n\n function handle(self, deferred) {\n while (self._state === 3) {\n self = self._value;\n }\n if (self._state === 0) {\n self._deferreds.push(deferred);\n return;\n }\n self._handled = true;\n Promise._immediateFn(function () {\n var cb = self._state === 1 ? deferred.onFulfilled : deferred.onRejected;\n if (cb === null) {\n (self._state === 1 ? resolve : reject)(deferred.promise, self._value);\n return;\n }\n var ret;\n try {\n ret = cb(self._value);\n } catch (e) {\n reject(deferred.promise, e);\n return;\n }\n resolve(deferred.promise, ret);\n });\n }\n\n function resolve(self, newValue) {\n try {\n // Promise Resolution Procedure: https://github.com/promises-aplus/promises-spec#the-promise-resolution-procedure\n if (newValue === self) throw new TypeError('A promise cannot be resolved with itself.');\n if (newValue && (typeof newValue === 'object' || typeof newValue === 'function')) {\n var then = newValue.then;\n if (newValue instanceof Promise) {\n self._state = 3;\n self._value = newValue;\n finale(self);\n return;\n } else if (typeof then === 'function') {\n doResolve(bind(then, newValue), self);\n return;\n }\n }\n self._state = 1;\n self._value = newValue;\n finale(self);\n } catch (e) {\n reject(self, e);\n }\n }\n\n function reject(self, newValue) {\n self._state = 2;\n self._value = newValue;\n finale(self);\n }\n\n function finale(self) {\n if (self._state === 2 && self._deferreds.length === 0) {\n Promise._immediateFn(function() {\n if (!self._handled) {\n Promise._unhandledRejectionFn(self._value);\n }\n });\n }\n\n for (var i = 0, len = self._deferreds.length; i < len; i++) {\n handle(self, self._deferreds[i]);\n }\n self._deferreds = null;\n }\n\n function Handler(onFulfilled, onRejected, promise) {\n this.onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : null;\n this.onRejected = typeof onRejected === 'function' ? onRejected : null;\n this.promise = promise;\n }\n\n /**\n * Take a potentially misbehaving resolver function and make sure\n * onFulfilled and onRejected are only called once.\n *\n * Makes no guarantees about asynchrony.\n */\n function doResolve(fn, self) {\n var done = false;\n try {\n fn(function (value) {\n if (done) return;\n done = true;\n resolve(self, value);\n }, function (reason) {\n if (done) return;\n done = true;\n reject(self, reason);\n });\n } catch (ex) {\n if (done) return;\n done = true;\n reject(self, ex);\n }\n }\n\n Promise.prototype['catch'] = function (onRejected) {\n return this.then(null, onRejected);\n };\n\n Promise.prototype.then = function (onFulfilled, onRejected) {\n var prom = new (this.constructor)(noop);\n\n handle(this, new Handler(onFulfilled, onRejected, prom));\n return prom;\n };\n\n Promise.all = function (arr) {\n var args = Array.prototype.slice.call(arr);\n\n return new Promise(function (resolve, reject) {\n if (args.length === 0) return resolve([]);\n var remaining = args.length;\n\n function res(i, val) {\n try {\n if (val && (typeof val === 'object' || typeof val === 'function')) {\n var then = val.then;\n if (typeof then === 'function') {\n then.call(val, function (val) {\n res(i, val);\n }, reject);\n return;\n }\n }\n args[i] = val;\n if (--remaining === 0) {\n resolve(args);\n }\n } catch (ex) {\n reject(ex);\n }\n }\n\n for (var i = 0; i < args.length; i++) {\n res(i, args[i]);\n }\n });\n };\n\n Promise.resolve = function (value) {\n if (value && typeof value === 'object' && value.constructor === Promise) {\n return value;\n }\n\n return new Promise(function (resolve) {\n resolve(value);\n });\n };\n\n Promise.reject = function (value) {\n return new Promise(function (resolve, reject) {\n reject(value);\n });\n };\n\n Promise.race = function (values) {\n return new Promise(function (resolve, reject) {\n for (var i = 0, len = values.length; i < len; i++) {\n values[i].then(resolve, reject);\n }\n });\n };\n\n // Use polyfill for setImmediate for performance gains\n Promise._immediateFn = (typeof setImmediate === 'function' && function (fn) { setImmediate(fn); }) ||\n function (fn) {\n setTimeoutFunc(fn, 0);\n };\n\n Promise._unhandledRejectionFn = function _unhandledRejectionFn(err) {\n if (typeof console !== 'undefined' && console) {\n console.warn('Possible Unhandled Promise Rejection:', err); // eslint-disable-line no-console\n }\n };\n\n /**\n * Set the immediate function to execute callbacks\n * @param fn {function} Function to execute\n * @deprecated\n */\n Promise._setImmediateFn = function _setImmediateFn(fn) {\n Promise._immediateFn = fn;\n };\n\n /**\n * Change the function to execute on unhandled rejection\n * @param {function} fn Function to execute on unhandled rejection\n * @deprecated\n */\n Promise._setUnhandledRejectionFn = function _setUnhandledRejectionFn(fn) {\n Promise._unhandledRejectionFn = fn;\n };\n \n if (typeof module !== 'undefined' && module.exports) {\n module.exports = Promise;\n } else if (!root.Promise) {\n root.Promise = Promise;\n }\n\n})(this);\n"},{"id":12,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue","name":"./src/components/Vuetable.vue","index":1,"index2":34,"size":1861,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","issuerId":40,"issuerName":"./src/index.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":40,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","module":"./src/index.js","moduleName":"./src/index.js","type":"harmony import","userRequest":"./components/Vuetable.vue","loc":"1:0-49"}],"usedExports":["default"],"providedExports":null,"depth":1,"source":"var disposed = false\nfunction injectStyle (ssrContext) {\n if (disposed) return\n require(\"!!vue-style-loader!css-loader?{\\\"minimize\\\":false,\\\"sourceMap\\\":false}!../../node_modules/vue-loader/lib/style-compiler/index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-5cc42bfc\\\",\\\"scoped\\\":true,\\\"hasInlineConfig\\\":false}!../../node_modules/vue-loader/lib/selector?type=styles&index=0!./Vuetable.vue\")\n}\nvar Component = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")(\n /* script */\n require(\"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./Vuetable.vue\"),\n /* template */\n require(\"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-5cc42bfc\\\",\\\"hasScoped\\\":true}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./Vuetable.vue\"),\n /* styles */\n injectStyle,\n /* scopeId */\n \"data-v-5cc42bfc\",\n /* moduleIdentifier (server only) */\n null\n)\nComponent.options.__file = \"/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue\"\nif (Component.esModule && Object.keys(Component.esModule).some(function (key) {return key !== \"default\" && key.substr(0, 2) !== \"__\"})) {console.error(\"named exports are not supported in *.vue files.\")}\nif (Component.options.functional) {console.error(\"[vue-loader] Vuetable.vue: functional components are not supported with templates, they should use render functions.\")}\n\n/* hot reload */\nif (module.hot) {(function () {\n var hotAPI = require(\"vue-loader/node_modules/vue-hot-reload-api\")\n hotAPI.install(require(\"vue\"), false)\n if (!hotAPI.compatible) return\n module.hot.accept()\n if (!module.hot.data) {\n hotAPI.createRecord(\"data-v-5cc42bfc\", Component.options)\n } else {\n hotAPI.reload(\"data-v-5cc42bfc\", Component.options)\n }\n module.hot.dispose(function (data) {\n disposed = true\n })\n})()}\n\nmodule.exports = Component.exports\n"},{"id":13,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePagination.vue","name":"./src/components/VuetablePagination.vue","index":36,"index2":39,"size":1520,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","issuerId":40,"issuerName":"./src/index.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":40,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","module":"./src/index.js","moduleName":"./src/index.js","type":"harmony import","userRequest":"./components/VuetablePagination.vue","loc":"2:0-69"}],"usedExports":["default"],"providedExports":null,"depth":1,"source":"var disposed = false\nvar Component = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")(\n /* script */\n require(\"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./VuetablePagination.vue\"),\n /* template */\n require(\"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-6a9dd43c\\\",\\\"hasScoped\\\":false}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./VuetablePagination.vue\"),\n /* styles */\n null,\n /* scopeId */\n null,\n /* moduleIdentifier (server only) */\n null\n)\nComponent.options.__file = \"/Users/ratiw/Code/vuetable-2/src/components/VuetablePagination.vue\"\nif (Component.esModule && Object.keys(Component.esModule).some(function (key) {return key !== \"default\" && key.substr(0, 2) !== \"__\"})) {console.error(\"named exports are not supported in *.vue files.\")}\nif (Component.options.functional) {console.error(\"[vue-loader] VuetablePagination.vue: functional components are not supported with templates, they should use render functions.\")}\n\n/* hot reload */\nif (module.hot) {(function () {\n var hotAPI = require(\"vue-loader/node_modules/vue-hot-reload-api\")\n hotAPI.install(require(\"vue\"), false)\n if (!hotAPI.compatible) return\n module.hot.accept()\n if (!module.hot.data) {\n hotAPI.createRecord(\"data-v-6a9dd43c\", Component.options)\n } else {\n hotAPI.reload(\"data-v-6a9dd43c\", Component.options)\n }\n module.hot.dispose(function (data) {\n disposed = true\n })\n})()}\n\nmodule.exports = Component.exports\n"},{"id":14,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationDropdown.vue","name":"./src/components/VuetablePaginationDropdown.vue","index":41,"index2":42,"size":1552,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","issuerId":40,"issuerName":"./src/index.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":40,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","module":"./src/index.js","moduleName":"./src/index.js","type":"harmony import","userRequest":"./components/VuetablePaginationDropdown.vue","loc":"3:0-85"}],"usedExports":["default"],"providedExports":null,"depth":1,"source":"var disposed = false\nvar Component = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")(\n /* script */\n require(\"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./VuetablePaginationDropdown.vue\"),\n /* template */\n require(\"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-397c17ed\\\",\\\"hasScoped\\\":false}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./VuetablePaginationDropdown.vue\"),\n /* styles */\n null,\n /* scopeId */\n null,\n /* moduleIdentifier (server only) */\n null\n)\nComponent.options.__file = \"/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationDropdown.vue\"\nif (Component.esModule && Object.keys(Component.esModule).some(function (key) {return key !== \"default\" && key.substr(0, 2) !== \"__\"})) {console.error(\"named exports are not supported in *.vue files.\")}\nif (Component.options.functional) {console.error(\"[vue-loader] VuetablePaginationDropdown.vue: functional components are not supported with templates, they should use render functions.\")}\n\n/* hot reload */\nif (module.hot) {(function () {\n var hotAPI = require(\"vue-loader/node_modules/vue-hot-reload-api\")\n hotAPI.install(require(\"vue\"), false)\n if (!hotAPI.compatible) return\n module.hot.accept()\n if (!module.hot.data) {\n hotAPI.createRecord(\"data-v-397c17ed\", Component.options)\n } else {\n hotAPI.reload(\"data-v-397c17ed\", Component.options)\n }\n module.hot.dispose(function (data) {\n disposed = true\n })\n})()}\n\nmodule.exports = Component.exports\n"},{"id":15,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationInfo.vue","name":"./src/components/VuetablePaginationInfo.vue","index":44,"index2":47,"size":1536,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","issuerId":40,"issuerName":"./src/index.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":40,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","module":"./src/index.js","moduleName":"./src/index.js","type":"harmony import","userRequest":"./components/VuetablePaginationInfo.vue","loc":"4:0-77"}],"usedExports":["default"],"providedExports":null,"depth":1,"source":"var disposed = false\nvar Component = require(\"!../../node_modules/vue-loader/lib/component-normalizer\")(\n /* script */\n require(\"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./VuetablePaginationInfo.vue\"),\n /* template */\n require(\"!!../../node_modules/vue-loader/lib/template-compiler/index?{\\\"id\\\":\\\"data-v-910bb7ec\\\",\\\"hasScoped\\\":false}!../../node_modules/vue-loader/lib/selector?type=template&index=0!./VuetablePaginationInfo.vue\"),\n /* styles */\n null,\n /* scopeId */\n null,\n /* moduleIdentifier (server only) */\n null\n)\nComponent.options.__file = \"/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationInfo.vue\"\nif (Component.esModule && Object.keys(Component.esModule).some(function (key) {return key !== \"default\" && key.substr(0, 2) !== \"__\"})) {console.error(\"named exports are not supported in *.vue files.\")}\nif (Component.options.functional) {console.error(\"[vue-loader] VuetablePaginationInfo.vue: functional components are not supported with templates, they should use render functions.\")}\n\n/* hot reload */\nif (module.hot) {(function () {\n var hotAPI = require(\"vue-loader/node_modules/vue-hot-reload-api\")\n hotAPI.install(require(\"vue\"), false)\n if (!hotAPI.compatible) return\n module.hot.accept()\n if (!module.hot.data) {\n hotAPI.createRecord(\"data-v-910bb7ec\", Component.options)\n } else {\n hotAPI.reload(\"data-v-910bb7ec\", Component.options)\n }\n module.hot.dispose(function (data) {\n disposed = true\n })\n})()}\n\nmodule.exports = Component.exports\n"},{"id":16,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/index.js","name":"./~/axios/index.js","index":9,"index2":31,"size":40,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=script&index=0!/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue","issuerId":34,"issuerName":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/Vuetable.vue","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":34,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=script&index=0!/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue","module":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/Vuetable.vue","moduleName":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/Vuetable.vue","type":"harmony import","userRequest":"axios","loc":"3:0-26"}],"usedExports":["default"],"providedExports":null,"depth":3,"source":"module.exports = require('./lib/axios');"},{"id":17,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","name":"./~/axios/lib/axios.js","index":10,"index2":30,"size":1368,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/index.js","issuerId":16,"issuerName":"./~/axios/index.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":16,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/index.js","module":"./~/axios/index.js","moduleName":"./~/axios/index.js","type":"cjs require","userRequest":"./lib/axios","loc":"1:17-39"}],"usedExports":true,"providedExports":null,"depth":4,"source":"'use strict';\n\nvar utils = require('./utils');\nvar bind = require('./helpers/bind');\nvar Axios = require('./core/Axios');\nvar defaults = require('./defaults');\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n * @return {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n var context = new Axios(defaultConfig);\n var instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context);\n\n // Copy context to instance\n utils.extend(instance, context);\n\n return instance;\n}\n\n// Create the default instance to be exported\nvar axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Factory for creating new instances\naxios.create = function create(instanceConfig) {\n return createInstance(utils.merge(defaults, instanceConfig));\n};\n\n// Expose Cancel & CancelToken\naxios.Cancel = require('./cancel/Cancel');\naxios.CancelToken = require('./cancel/CancelToken');\naxios.isCancel = require('./cancel/isCancel');\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\naxios.spread = require('./helpers/spread');\n\nmodule.exports = axios;\n\n// Allow use of default import syntax in TypeScript\nmodule.exports.default = axios;\n"},{"id":18,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/cancel/CancelToken.js","name":"./~/axios/lib/cancel/CancelToken.js","index":33,"index2":28,"size":1240,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","issuerId":17,"issuerName":"./~/axios/lib/axios.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":17,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","module":"./~/axios/lib/axios.js","moduleName":"./~/axios/lib/axios.js","type":"cjs require","userRequest":"./cancel/CancelToken","loc":"40:20-51"}],"usedExports":true,"providedExports":null,"depth":5,"source":"'use strict';\n\nvar Cancel = require('./Cancel');\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @class\n * @param {Function} executor The executor function.\n */\nfunction CancelToken(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n var resolvePromise;\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n var token = this;\n executor(function cancel(message) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new Cancel(message);\n resolvePromise(token.reason);\n });\n}\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nCancelToken.prototype.throwIfRequested = function throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n};\n\n/**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\nCancelToken.source = function source() {\n var cancel;\n var token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token: token,\n cancel: cancel\n };\n};\n\nmodule.exports = CancelToken;\n"},{"id":19,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/Axios.js","name":"./~/axios/lib/core/Axios.js","index":13,"index2":26,"size":2390,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","issuerId":17,"issuerName":"./~/axios/lib/axios.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":17,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","module":"./~/axios/lib/axios.js","moduleName":"./~/axios/lib/axios.js","type":"cjs require","userRequest":"./core/Axios","loc":"5:12-35"}],"usedExports":true,"providedExports":null,"depth":5,"source":"'use strict';\n\nvar defaults = require('./../defaults');\nvar utils = require('./../utils');\nvar InterceptorManager = require('./InterceptorManager');\nvar dispatchRequest = require('./dispatchRequest');\nvar isAbsoluteURL = require('./../helpers/isAbsoluteURL');\nvar combineURLs = require('./../helpers/combineURLs');\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n */\nfunction Axios(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n}\n\n/**\n * Dispatch a request\n *\n * @param {Object} config The config specific for this request (merged with this.defaults)\n */\nAxios.prototype.request = function request(config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof config === 'string') {\n config = utils.merge({\n url: arguments[0]\n }, arguments[1]);\n }\n\n config = utils.merge(defaults, this.defaults, { method: 'get' }, config);\n\n // Support baseURL config\n if (config.baseURL && !isAbsoluteURL(config.url)) {\n config.url = combineURLs(config.baseURL, config.url);\n }\n\n // Hook up interceptors middleware\n var chain = [dispatchRequest, undefined];\n var promise = Promise.resolve(config);\n\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n chain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n chain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n while (chain.length) {\n promise = promise.then(chain.shift(), chain.shift());\n }\n\n return promise;\n};\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(utils.merge(config || {}, {\n method: method,\n url: url\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, data, config) {\n return this.request(utils.merge(config || {}, {\n method: method,\n url: url,\n data: data\n }));\n };\n});\n\nmodule.exports = Axios;\n"},{"id":20,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/InterceptorManager.js","name":"./~/axios/lib/core/InterceptorManager.js","index":26,"index2":20,"size":1251,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/Axios.js","issuerId":19,"issuerName":"./~/axios/lib/core/Axios.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":19,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/Axios.js","module":"./~/axios/lib/core/Axios.js","moduleName":"./~/axios/lib/core/Axios.js","type":"cjs require","userRequest":"./InterceptorManager","loc":"5:25-56"}],"usedExports":true,"providedExports":null,"depth":6,"source":"'use strict';\n\nvar utils = require('./../utils');\n\nfunction InterceptorManager() {\n this.handlers = [];\n}\n\n/**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\nInterceptorManager.prototype.use = function use(fulfilled, rejected) {\n this.handlers.push({\n fulfilled: fulfilled,\n rejected: rejected\n });\n return this.handlers.length - 1;\n};\n\n/**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n */\nInterceptorManager.prototype.eject = function eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n};\n\n/**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n */\nInterceptorManager.prototype.forEach = function forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n};\n\nmodule.exports = InterceptorManager;\n"},{"id":21,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/dispatchRequest.js","name":"./~/axios/lib/core/dispatchRequest.js","index":27,"index2":23,"size":1940,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/Axios.js","issuerId":19,"issuerName":"./~/axios/lib/core/Axios.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":19,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/Axios.js","module":"./~/axios/lib/core/Axios.js","moduleName":"./~/axios/lib/core/Axios.js","type":"cjs require","userRequest":"./dispatchRequest","loc":"6:22-50"}],"usedExports":true,"providedExports":null,"depth":6,"source":"'use strict';\n\nvar utils = require('./../utils');\nvar transformData = require('./transformData');\nvar isCancel = require('../cancel/isCancel');\nvar defaults = require('../defaults');\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n * @returns {Promise} The Promise to be fulfilled\n */\nmodule.exports = function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n // Ensure headers exist\n config.headers = config.headers || {};\n\n // Transform request data\n config.data = transformData(\n config.data,\n config.headers,\n config.transformRequest\n );\n\n // Flatten headers\n config.headers = utils.merge(\n config.headers.common || {},\n config.headers[config.method] || {},\n config.headers || {}\n );\n\n utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n var adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData(\n response.data,\n response.headers,\n config.transformResponse\n );\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData(\n reason.response.data,\n reason.response.headers,\n config.transformResponse\n );\n }\n }\n\n return Promise.reject(reason);\n });\n};\n"},{"id":22,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/enhanceError.js","name":"./~/axios/lib/core/enhanceError.js","index":20,"index2":10,"size":514,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/createError.js","issuerId":8,"issuerName":"./~/axios/lib/core/createError.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":8,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/createError.js","module":"./~/axios/lib/core/createError.js","moduleName":"./~/axios/lib/core/createError.js","type":"cjs require","userRequest":"./enhanceError","loc":"3:19-44"}],"usedExports":true,"providedExports":null,"depth":8,"source":"'use strict';\n\n/**\n * Update an Error with the specified config, error code, and response.\n *\n * @param {Error} error The error to update.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n @ @param {Object} [response] The response.\n * @returns {Error} The error.\n */\nmodule.exports = function enhanceError(error, config, code, response) {\n error.config = config;\n if (code) {\n error.code = code;\n }\n error.response = response;\n return error;\n};\n"},{"id":23,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/settle.js","name":"./~/axios/lib/core/settle.js","index":18,"index2":12,"size":733,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","issuerId":5,"issuerName":"./~/axios/lib/adapters/xhr.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":5,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","module":"./~/axios/lib/adapters/xhr.js","moduleName":"./~/axios/lib/adapters/xhr.js","type":"cjs require","userRequest":"./../core/settle","loc":"4:13-40"}],"usedExports":true,"providedExports":null,"depth":7,"source":"'use strict';\n\nvar createError = require('./createError');\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n */\nmodule.exports = function settle(resolve, reject, response) {\n var validateStatus = response.config.validateStatus;\n // Note: status is not exposed by XDomainRequest\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(createError(\n 'Request failed with status code ' + response.status,\n response.config,\n null,\n response\n ));\n }\n};\n"},{"id":24,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/transformData.js","name":"./~/axios/lib/core/transformData.js","index":28,"index2":21,"size":550,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/dispatchRequest.js","issuerId":21,"issuerName":"./~/axios/lib/core/dispatchRequest.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":21,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/dispatchRequest.js","module":"./~/axios/lib/core/dispatchRequest.js","moduleName":"./~/axios/lib/core/dispatchRequest.js","type":"cjs require","userRequest":"./transformData","loc":"4:20-46"}],"usedExports":true,"providedExports":null,"depth":7,"source":"'use strict';\n\nvar utils = require('./../utils');\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Object|String} data The data to be transformed\n * @param {Array} headers The headers for the request or response\n * @param {Array|Function} fns A single function or Array of functions\n * @returns {*} The resulting transformed data\n */\nmodule.exports = function transformData(data, headers, fns) {\n /*eslint no-param-reassign:0*/\n utils.forEach(fns, function transform(fn) {\n data = fn(data, headers);\n });\n\n return data;\n};\n"},{"id":25,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/btoa.js","name":"./~/axios/lib/helpers/btoa.js","index":24,"index2":16,"size":986,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","issuerId":5,"issuerName":"./~/axios/lib/adapters/xhr.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":5,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","module":"./~/axios/lib/adapters/xhr.js","moduleName":"./~/axios/lib/adapters/xhr.js","type":"cjs require","userRequest":"./../helpers/btoa","loc":"9:89-117"}],"usedExports":true,"providedExports":null,"depth":7,"source":"'use strict';\n\n// btoa polyfill for IE<10 courtesy https://github.com/davidchambers/Base64.js\n\nvar chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\n\nfunction E() {\n this.message = 'String contains an invalid character';\n}\nE.prototype = new Error;\nE.prototype.code = 5;\nE.prototype.name = 'InvalidCharacterError';\n\nfunction btoa(input) {\n var str = String(input);\n var output = '';\n for (\n // initialize result and counter\n var block, charCode, idx = 0, map = chars;\n // if the next str index does not exist:\n // change the mapping table to \"=\"\n // check if d has no fractional digits\n str.charAt(idx | 0) || (map = '=', idx % 1);\n // \"8 - idx % 1 * 8\" generates the sequence 2, 4, 6, 8\n output += map.charAt(63 & block >> 8 - idx % 1 * 8)\n ) {\n charCode = str.charCodeAt(idx += 3 / 4);\n if (charCode > 0xFF) {\n throw new E();\n }\n block = block << 8 | charCode;\n }\n return output;\n}\n\nmodule.exports = btoa;\n"},{"id":26,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/buildURL.js","name":"./~/axios/lib/helpers/buildURL.js","index":21,"index2":13,"size":1576,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","issuerId":5,"issuerName":"./~/axios/lib/adapters/xhr.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":5,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","module":"./~/axios/lib/adapters/xhr.js","moduleName":"./~/axios/lib/adapters/xhr.js","type":"cjs require","userRequest":"./../helpers/buildURL","loc":"5:15-47"}],"usedExports":true,"providedExports":null,"depth":7,"source":"'use strict';\n\nvar utils = require('./../utils');\n\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%40/gi, '@').\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @returns {string} The formatted url\n */\nmodule.exports = function buildURL(url, params, paramsSerializer) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n var serializedParams;\n if (paramsSerializer) {\n serializedParams = paramsSerializer(params);\n } else if (utils.isURLSearchParams(params)) {\n serializedParams = params.toString();\n } else {\n var parts = [];\n\n utils.forEach(params, function serialize(val, key) {\n if (val === null || typeof val === 'undefined') {\n return;\n }\n\n if (utils.isArray(val)) {\n key = key + '[]';\n }\n\n if (!utils.isArray(val)) {\n val = [val];\n }\n\n utils.forEach(val, function parseValue(v) {\n if (utils.isDate(v)) {\n v = v.toISOString();\n } else if (utils.isObject(v)) {\n v = JSON.stringify(v);\n }\n parts.push(encode(key) + '=' + encode(v));\n });\n });\n\n serializedParams = parts.join('&');\n }\n\n if (serializedParams) {\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n\n return url;\n};\n"},{"id":27,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/combineURLs.js","name":"./~/axios/lib/helpers/combineURLs.js","index":31,"index2":25,"size":348,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/Axios.js","issuerId":19,"issuerName":"./~/axios/lib/core/Axios.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":19,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/Axios.js","module":"./~/axios/lib/core/Axios.js","moduleName":"./~/axios/lib/core/Axios.js","type":"cjs require","userRequest":"./../helpers/combineURLs","loc":"8:18-53"}],"usedExports":true,"providedExports":null,"depth":6,"source":"'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n * @returns {string} The combined URL\n */\nmodule.exports = function combineURLs(baseURL, relativeURL) {\n return baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '');\n};\n"},{"id":28,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/cookies.js","name":"./~/axios/lib/helpers/cookies.js","index":25,"index2":17,"size":1365,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","issuerId":5,"issuerName":"./~/axios/lib/adapters/xhr.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":5,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","module":"./~/axios/lib/adapters/xhr.js","moduleName":"./~/axios/lib/adapters/xhr.js","type":"cjs require","userRequest":"./../helpers/cookies","loc":"105:20-51"}],"usedExports":true,"providedExports":null,"depth":7,"source":"'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n var cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n // Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })()\n);\n"},{"id":29,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/isAbsoluteURL.js","name":"./~/axios/lib/helpers/isAbsoluteURL.js","index":30,"index2":24,"size":563,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/Axios.js","issuerId":19,"issuerName":"./~/axios/lib/core/Axios.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":19,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/core/Axios.js","module":"./~/axios/lib/core/Axios.js","moduleName":"./~/axios/lib/core/Axios.js","type":"cjs require","userRequest":"./../helpers/isAbsoluteURL","loc":"7:20-57"}],"usedExports":true,"providedExports":null,"depth":6,"source":"'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nmodule.exports = function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d\\+\\-\\.]*:)?\\/\\//i.test(url);\n};\n"},{"id":30,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/isURLSameOrigin.js","name":"./~/axios/lib/helpers/isURLSameOrigin.js","index":23,"index2":15,"size":2245,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","issuerId":5,"issuerName":"./~/axios/lib/adapters/xhr.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":5,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","module":"./~/axios/lib/adapters/xhr.js","moduleName":"./~/axios/lib/adapters/xhr.js","type":"cjs require","userRequest":"./../helpers/isURLSameOrigin","loc":"7:22-61"}],"usedExports":true,"providedExports":null,"depth":7,"source":"'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs have full support of the APIs needed to test\n // whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n var msie = /(msie|trident)/i.test(navigator.userAgent);\n var urlParsingNode = document.createElement('a');\n var originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n var href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })()\n);\n"},{"id":31,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/normalizeHeaderName.js","name":"./~/axios/lib/helpers/normalizeHeaderName.js","index":16,"index2":9,"size":357,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/defaults.js","issuerId":3,"issuerName":"./~/axios/lib/defaults.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":3,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/defaults.js","module":"./~/axios/lib/defaults.js","moduleName":"./~/axios/lib/defaults.js","type":"cjs require","userRequest":"./helpers/normalizeHeaderName","loc":"4:26-66"}],"usedExports":true,"providedExports":null,"depth":6,"source":"'use strict';\n\nvar utils = require('../utils');\n\nmodule.exports = function normalizeHeaderName(headers, normalizedName) {\n utils.forEach(headers, function processHeader(value, name) {\n if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {\n headers[normalizedName] = value;\n delete headers[name];\n }\n });\n};\n"},{"id":32,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/parseHeaders.js","name":"./~/axios/lib/helpers/parseHeaders.js","index":22,"index2":14,"size":784,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","issuerId":5,"issuerName":"./~/axios/lib/adapters/xhr.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":5,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/adapters/xhr.js","module":"./~/axios/lib/adapters/xhr.js","moduleName":"./~/axios/lib/adapters/xhr.js","type":"cjs require","userRequest":"./../helpers/parseHeaders","loc":"6:19-55"}],"usedExports":true,"providedExports":null,"depth":7,"source":"'use strict';\n\nvar utils = require('./../utils');\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} headers Headers needing to be parsed\n * @returns {Object} Headers parsed into an object\n */\nmodule.exports = function parseHeaders(headers) {\n var parsed = {};\n var key;\n var val;\n var i;\n\n if (!headers) { return parsed; }\n\n utils.forEach(headers.split('\\n'), function parser(line) {\n i = line.indexOf(':');\n key = utils.trim(line.substr(0, i)).toLowerCase();\n val = utils.trim(line.substr(i + 1));\n\n if (key) {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n });\n\n return parsed;\n};\n"},{"id":33,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/helpers/spread.js","name":"./~/axios/lib/helpers/spread.js","index":34,"index2":29,"size":564,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","issuerId":17,"issuerName":"./~/axios/lib/axios.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":17,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/axios/lib/axios.js","module":"./~/axios/lib/axios.js","moduleName":"./~/axios/lib/axios.js","type":"cjs require","userRequest":"./helpers/spread","loc":"47:15-42"}],"usedExports":true,"providedExports":null,"depth":5,"source":"'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};\n"},{"id":34,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=script&index=0!/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue","name":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/Vuetable.vue","index":8,"index2":32,"size":27566,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue","issuerId":12,"issuerName":"./src/components/Vuetable.vue","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":12,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue","module":"./src/components/Vuetable.vue","moduleName":"./src/components/Vuetable.vue","type":"cjs require","userRequest":"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./Vuetable.vue","loc":"8:2-105"}],"usedExports":true,"providedExports":["default"],"depth":2,"source":"\n\nimport axios from 'axios';\n\nexport default {\n props: {\n fields: {\n type: Array,\n required: true\n },\n loadOnStart: {\n type: Boolean,\n default: true\n },\n apiUrl: {\n type: String,\n default: ''\n },\n httpMethod: {\n type: String,\n default: 'get',\n validator: function validator(value) {\n return ['get', 'post'].indexOf(value) > -1;\n }\n },\n reactiveApiUrl: {\n type: Boolean,\n default: true\n },\n apiMode: {\n type: Boolean,\n default: true\n },\n data: {\n type: [Array, Object],\n default: function _default() {\n return null;\n }\n },\n dataTotal: {\n type: Number,\n default: 0\n },\n dataManager: {\n type: Function,\n default: function _default() {\n return null;\n }\n },\n dataPath: {\n type: String,\n default: 'data'\n },\n paginationPath: {\n type: [String],\n default: 'links.pagination'\n },\n queryParams: {\n type: Object,\n default: function _default() {\n return {\n sort: 'sort',\n page: 'page',\n perPage: 'per_page'\n };\n }\n },\n appendParams: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n httpOptions: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n httpFetch: {\n type: Function,\n default: null\n },\n perPage: {\n type: Number,\n default: function _default() {\n return 10;\n }\n },\n initialPage: {\n type: Number,\n default: function _default() {\n return 1;\n }\n },\n sortOrder: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n multiSort: {\n type: Boolean,\n default: function _default() {\n return false;\n }\n },\n tableHeight: {\n type: String,\n default: null\n },\n\n multiSortKey: {\n type: String,\n default: 'alt'\n },\n\n rowClassCallback: {\n type: [String, Function],\n default: ''\n },\n rowClass: {\n type: [String, Function],\n default: ''\n },\n detailRowComponent: {\n type: String,\n default: ''\n },\n detailRowTransition: {\n type: String,\n default: ''\n },\n trackBy: {\n type: String,\n default: 'id'\n },\n css: {\n type: Object,\n default: function _default() {\n return {\n tableClass: 'ui blue selectable celled stackable attached table',\n loadingClass: 'loading',\n ascendingIcon: 'blue chevron up icon',\n descendingIcon: 'blue chevron down icon',\n ascendingClass: 'sorted-asc',\n descendingClass: 'sorted-desc',\n sortableIcon: '',\n detailRowClass: 'vuetable-detail-row',\n handleIcon: 'grey sidebar icon',\n tableBodyClass: 'vuetable-semantic-no-top vuetable-fixed-layout',\n tableHeaderClass: 'vuetable-fixed-layout'\n };\n }\n },\n minRows: {\n type: Number,\n default: 0\n },\n silent: {\n type: Boolean,\n default: false\n },\n noDataTemplate: {\n type: String,\n default: function _default() {\n return 'No Data Available';\n }\n },\n showSortIcons: {\n type: Boolean,\n default: true\n }\n },\n data: function data() {\n return {\n eventPrefix: 'vuetable:',\n tableFields: [],\n tableData: null,\n tablePagination: null,\n currentPage: this.initialPage,\n selectedTo: [],\n visibleDetailRows: [],\n lastScrollPosition: 0,\n scrollBarWidth: '17px',\n scrollVisible: false\n };\n },\n mounted: function mounted() {\n this.normalizeFields();\n this.normalizeSortOrder();\n if (this.isFixedHeader) {\n this.scrollBarWidth = this.getScrollBarWidth() + 'px';\n }\n this.$nextTick(function () {\n this.fireEvent('initialized', this.tableFields);\n });\n\n if (this.loadOnStart) {\n this.loadData();\n }\n if (this.isFixedHeader) {\n var elem = this.$el.getElementsByClassName('vuetable-body-wrapper')[0];\n if (elem != null) {\n elem.addEventListener('scroll', this.handleScroll);\n }\n }\n },\n destroyed: function destroyed() {\n var elem = this.$el.getElementsByClassName('vuetable-body-wrapper')[0];\n if (elem != null) {\n elem.removeEventListener('scroll', this.handleScroll);\n }\n },\n\n computed: {\n useDetailRow: function useDetailRow() {\n if (this.tableData && this.tableData[0] && this.detailRowComponent !== '' && typeof this.tableData[0][this.trackBy] === 'undefined') {\n this.warn('You need to define unique row identifier in order for detail-row feature to work. Use `track-by` prop to define one!');\n return false;\n }\n\n return this.detailRowComponent !== '';\n },\n countVisibleFields: function countVisibleFields() {\n return this.tableFields.filter(function (field) {\n return field.visible;\n }).length;\n },\n countTableData: function countTableData() {\n if (this.tableData === null) {\n return 0;\n }\n return this.tableData.length;\n },\n displayEmptyDataRow: function displayEmptyDataRow() {\n return this.countTableData === 0 && this.noDataTemplate.length > 0;\n },\n lessThanMinRows: function lessThanMinRows() {\n if (this.tableData === null || this.tableData.length === 0) {\n return true;\n }\n return this.tableData.length < this.minRows;\n },\n blankRows: function blankRows() {\n if (this.tableData === null || this.tableData.length === 0) {\n return this.minRows;\n }\n if (this.tableData.length >= this.minRows) {\n return 0;\n }\n\n return this.minRows - this.tableData.length;\n },\n isApiMode: function isApiMode() {\n return this.apiMode;\n },\n isDataMode: function isDataMode() {\n return !this.apiMode;\n },\n isFixedHeader: function isFixedHeader() {\n return this.tableHeight != null;\n }\n },\n methods: {\n getScrollBarWidth: function getScrollBarWidth() {\n var outer = document.createElement('div');\n var inner = document.createElement('div');\n\n outer.style.visibility = 'hidden';\n outer.style.width = '100px';\n\n inner.style.width = '100%';\n\n outer.appendChild(inner);\n document.body.appendChild(outer);\n\n var widthWithoutScrollbar = outer.offsetWidth;\n\n outer.style.overflow = 'scroll';\n\n var widthWithScrollbar = inner.offsetWidth;\n\n document.body.removeChild(outer);\n\n return widthWithoutScrollbar - widthWithScrollbar;\n },\n handleScroll: function handleScroll(e) {\n var horizontal = e.currentTarget.scrollLeft;\n if (horizontal != this.lastScrollPosition) {\n var header = this.$el.getElementsByClassName('vuetable-head-wrapper')[0];\n if (header != null) {\n header.scrollLeft = horizontal;\n }\n this.lastScrollPosition = horizontal;\n }\n },\n normalizeFields: function normalizeFields() {\n if (typeof this.fields === 'undefined') {\n this.warn('You need to provide \"fields\" prop.');\n return;\n }\n\n this.tableFields = [];\n var self = this;\n var obj = void 0;\n this.fields.forEach(function (field, i) {\n if (typeof field === 'string') {\n obj = {\n name: field,\n title: self.setTitle(field),\n titleClass: '',\n dataClass: '',\n callback: null,\n visible: true\n };\n } else {\n obj = {\n name: field.name,\n width: field.width,\n title: field.title === undefined ? self.setTitle(field.name) : field.title,\n sortField: field.sortField,\n titleClass: field.titleClass === undefined ? '' : field.titleClass,\n dataClass: field.dataClass === undefined ? '' : field.dataClass,\n callback: field.callback === undefined ? '' : field.callback,\n visible: field.visible === undefined ? true : field.visible\n };\n }\n self.tableFields.push(obj);\n });\n },\n setData: function setData(data) {\n this.apiMode = false;\n if (Array.isArray(data)) {\n this.tableData = data;\n return;\n }\n\n this.fireEvent('loading');\n\n this.tableData = this.getObjectValue(data, this.dataPath, null);\n this.tablePagination = this.getObjectValue(data, this.paginationPath, null);\n\n this.$nextTick(function () {\n this.fireEvent('pagination-data', this.tablePagination);\n this.fireEvent('loaded');\n });\n },\n setTitle: function setTitle(str) {\n if (this.isSpecialField(str)) {\n return '';\n }\n\n return this.titleCase(str);\n },\n getTitle: function getTitle(field) {\n if (typeof field.title === 'function') return field.title();\n\n return typeof field.title === 'undefined' ? field.name.replace('.', ' ') : field.title;\n },\n renderTitle: function renderTitle(field) {\n var title = this.getTitle(field);\n\n if (title.length > 0 && this.isInCurrentSortGroup(field) || this.hasSortableIcon(field)) {\n var style = 'opacity:' + this.sortIconOpacity(field) + ';position:relative;float:right';\n return title + ' ' + this.renderIconTag(['sort-icon', this.sortIcon(field)], 'style=\"' + style + '\"');\n }\n\n return title;\n },\n renderSequence: function renderSequence(index) {\n return this.tablePagination ? this.tablePagination.from + index : index;\n },\n renderNormalField: function renderNormalField(field, item) {\n return this.hasCallback(field) ? this.callCallback(field, item) : this.getObjectValue(item, field.name, '');\n },\n isSpecialField: function isSpecialField(fieldName) {\n return fieldName.slice(0, 2) === '__';\n },\n titleCase: function titleCase(str) {\n return str.replace(/\\w+/g, function (txt) {\n return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();\n });\n },\n camelCase: function camelCase(str) {\n var delimiter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '_';\n\n var self = this;\n return str.split(delimiter).map(function (item) {\n return self.titleCase(item);\n }).join('');\n },\n notIn: function notIn(str, arr) {\n return arr.indexOf(str) === -1;\n },\n loadData: function loadData() {\n var success = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this.loadSuccess;\n var failed = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.loadFailed;\n\n if (this.isDataMode) {\n this.callDataManager();\n return;\n }\n\n this.fireEvent('loading');\n\n this.httpOptions['params'] = this.getAllQueryParams();\n\n return this.fetch(this.apiUrl, this.httpOptions).then(success, failed).catch(function () {\n return failed();\n });\n },\n fetch: function fetch(apiUrl, httpOptions) {\n return this.httpFetch ? this.httpFetch(apiUrl, httpOptions) : axios[this.httpMethod](apiUrl, httpOptions);\n },\n loadSuccess: function loadSuccess(response) {\n this.fireEvent('load-success', response);\n\n var body = this.transform(response.data);\n\n this.tableData = this.getObjectValue(body, this.dataPath, null);\n this.tablePagination = this.getObjectValue(body, this.paginationPath, null);\n\n if (this.tablePagination === null) {\n this.warn('vuetable: pagination-path \"' + this.paginationPath + '\" not found. ' + 'It looks like the data returned from the sever does not have pagination information ' + \"or you may have set it incorrectly.\\n\" + 'You can explicitly suppress this warning by setting pagination-path=\"\".');\n }\n\n this.$nextTick(function () {\n this.fixHeader();\n this.fireEvent('pagination-data', this.tablePagination);\n this.fireEvent('loaded');\n });\n },\n fixHeader: function fixHeader() {\n if (!this.isFixedHeader) {\n return;\n }\n\n var elem = this.$el.getElementsByClassName('vuetable-body-wrapper')[0];\n if (elem != null) {\n if (elem.scrollHeight > elem.clientHeight) {\n this.scrollVisible = true;\n } else {\n this.scrollVisible = false;\n }\n }\n },\n loadFailed: function loadFailed(response) {\n console.error('load-error', response);\n this.fireEvent('load-error', response);\n this.fireEvent('loaded');\n },\n transform: function transform(data) {\n var func = 'transform';\n\n if (this.parentFunctionExists(func)) {\n return this.$parent[func].call(this.$parent, data);\n }\n\n return data;\n },\n parentFunctionExists: function parentFunctionExists(func) {\n return func !== '' && typeof this.$parent[func] === 'function';\n },\n callParentFunction: function callParentFunction(func, args) {\n var defaultValue = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;\n\n if (this.parentFunctionExists(func)) {\n return this.$parent[func].call(this.$parent, args);\n }\n\n return defaultValue;\n },\n fireEvent: function fireEvent(eventName, args) {\n this.$emit(this.eventPrefix + eventName, args);\n },\n warn: function warn(msg) {\n if (!this.silent) {\n console.warn(msg);\n }\n },\n getAllQueryParams: function getAllQueryParams() {\n var params = {};\n params[this.queryParams.sort] = this.getSortParam();\n params[this.queryParams.page] = this.currentPage;\n params[this.queryParams.perPage] = this.perPage;\n\n for (var x in this.appendParams) {\n params[x] = this.appendParams[x];\n }\n\n return params;\n },\n getSortParam: function getSortParam() {\n if (!this.sortOrder || this.sortOrder.field == '') {\n return '';\n }\n\n if (typeof this.$parent['getSortParam'] == 'function') {\n return this.$parent['getSortParam'].call(this.$parent, this.sortOrder);\n }\n\n return this.getDefaultSortParam();\n },\n getDefaultSortParam: function getDefaultSortParam() {\n var result = '';\n\n for (var i = 0; i < this.sortOrder.length; i++) {\n var fieldName = typeof this.sortOrder[i].sortField === 'undefined' ? this.sortOrder[i].field : this.sortOrder[i].sortField;\n\n result += fieldName + '|' + this.sortOrder[i].direction + (i + 1 < this.sortOrder.length ? ',' : '');\n }\n\n return result;\n },\n extractName: function extractName(string) {\n return string.split(':')[0].trim();\n },\n extractArgs: function extractArgs(string) {\n return string.split(':')[1];\n },\n isSortable: function isSortable(field) {\n return !(typeof field.sortField === 'undefined');\n },\n isInCurrentSortGroup: function isInCurrentSortGroup(field) {\n return this.currentSortOrderPosition(field) !== false;\n },\n hasSortableIcon: function hasSortableIcon(field) {\n return this.isSortable(field) && this.css.sortableIcon != '';\n },\n currentSortOrderPosition: function currentSortOrderPosition(field) {\n if (!this.isSortable(field)) {\n return false;\n }\n\n for (var i = 0; i < this.sortOrder.length; i++) {\n if (this.fieldIsInSortOrderPosition(field, i)) {\n return i;\n }\n }\n\n return false;\n },\n fieldIsInSortOrderPosition: function fieldIsInSortOrderPosition(field, i) {\n return this.sortOrder[i].field === field.name && this.sortOrder[i].sortField === field.sortField;\n },\n orderBy: function orderBy(field, event) {\n if (!this.isSortable(field)) return;\n\n var key = this.multiSortKey.toLowerCase() + 'Key';\n\n if (this.multiSort && event[key]) {\n this.multiColumnSort(field);\n } else {\n this.singleColumnSort(field);\n }\n\n this.currentPage = 1;\n if (this.apiMode) {\n this.loadData();\n }\n },\n multiColumnSort: function multiColumnSort(field) {\n var i = this.currentSortOrderPosition(field);\n\n if (i === false) {\n this.sortOrder.push({\n field: field.name,\n sortField: field.sortField,\n direction: 'asc'\n });\n } else {\n if (this.sortOrder[i].direction === 'asc') {\n this.sortOrder[i].direction = 'desc';\n } else {\n this.sortOrder.splice(i, 1);\n }\n }\n },\n singleColumnSort: function singleColumnSort(field) {\n if (this.sortOrder.length === 0) {\n this.clearSortOrder();\n }\n\n this.sortOrder.splice(1);\n\n if (this.fieldIsInSortOrderPosition(field, 0)) {\n this.sortOrder[0].direction = this.sortOrder[0].direction === 'asc' ? 'desc' : 'asc';\n } else {\n this.sortOrder[0].direction = 'asc';\n }\n this.sortOrder[0].field = field.name;\n this.sortOrder[0].sortField = field.sortField;\n },\n clearSortOrder: function clearSortOrder() {\n this.sortOrder.push({\n field: '',\n sortField: '',\n direction: 'asc'\n });\n },\n sortIcon: function sortIcon(field) {\n var cls = this.css.sortableIcon;\n var i = this.currentSortOrderPosition(field);\n\n if (i !== false) {\n cls = this.sortOrder[i].direction == 'asc' ? this.css.ascendingIcon : this.css.descendingIcon;\n }\n\n return cls;\n },\n sortIconOpacity: function sortIconOpacity(field) {\n var max = 1.0,\n min = 0.3,\n step = 0.3;\n\n var count = this.sortOrder.length;\n var current = this.currentSortOrderPosition(field);\n\n if (max - count * step < min) {\n step = (max - min) / (count - 1);\n }\n\n var opacity = max - current * step;\n\n return opacity;\n },\n hasCallback: function hasCallback(item) {\n return item.callback ? true : false;\n },\n callCallback: function callCallback(field, item) {\n if (!this.hasCallback(field)) return;\n\n if (typeof field.callback == 'function') {\n return field.callback(this.getObjectValue(item, field.name));\n }\n\n var args = field.callback.split('|');\n var func = args.shift();\n\n if (typeof this.$parent[func] === 'function') {\n var value = this.getObjectValue(item, field.name);\n\n return args.length > 0 ? this.$parent[func].apply(this.$parent, [value].concat(args)) : this.$parent[func].call(this.$parent, value);\n }\n\n return null;\n },\n getObjectValue: function getObjectValue(object, path, defaultValue) {\n defaultValue = typeof defaultValue === 'undefined' ? null : defaultValue;\n\n var obj = object;\n if (path.trim() != '') {\n var keys = path.split('.');\n keys.forEach(function (key) {\n if (obj !== null && typeof obj[key] !== 'undefined' && obj[key] !== null) {\n obj = obj[key];\n } else {\n obj = defaultValue;\n return;\n }\n });\n }\n return obj;\n },\n toggleCheckbox: function toggleCheckbox(dataItem, fieldName, event) {\n var isChecked = event.target.checked;\n var idColumn = this.trackBy;\n\n if (dataItem[idColumn] === undefined) {\n this.warn('__checkbox field: The \"' + this.trackBy + '\" field does not exist! Make sure the field you specify in \"track-by\" prop does exist.');\n return;\n }\n\n var key = dataItem[idColumn];\n if (isChecked) {\n this.selectId(key);\n } else {\n this.unselectId(key);\n }\n this.$emit('vuetable:checkbox-toggled', isChecked, dataItem);\n },\n selectId: function selectId(key) {\n if (!this.isSelectedRow(key)) {\n this.selectedTo.push(key);\n }\n },\n unselectId: function unselectId(key) {\n this.selectedTo = this.selectedTo.filter(function (item) {\n return item !== key;\n });\n },\n isSelectedRow: function isSelectedRow(key) {\n return this.selectedTo.indexOf(key) >= 0;\n },\n rowSelected: function rowSelected(dataItem, fieldName) {\n var idColumn = this.trackBy;\n var key = dataItem[idColumn];\n\n return this.isSelectedRow(key);\n },\n checkCheckboxesState: function checkCheckboxesState(fieldName) {\n if (!this.tableData) return;\n\n var self = this;\n var idColumn = this.trackBy;\n var selector = 'th.vuetable-th-checkbox-' + idColumn + ' input[type=checkbox]';\n var els = document.querySelectorAll(selector);\n\n if (els.forEach === undefined) els.forEach = function (cb) {\n [].forEach.call(els, cb);\n };\n\n var selected = this.tableData.filter(function (item) {\n return self.selectedTo.indexOf(item[idColumn]) >= 0;\n });\n\n if (selected.length <= 0) {\n els.forEach(function (el) {\n el.indeterminate = false;\n });\n return false;\n } else if (selected.length < this.perPage) {\n els.forEach(function (el) {\n el.indeterminate = true;\n });\n return true;\n } else {\n els.forEach(function (el) {\n el.indeterminate = false;\n });\n return true;\n }\n },\n toggleAllCheckboxes: function toggleAllCheckboxes(fieldName, event) {\n var self = this;\n var isChecked = event.target.checked;\n var idColumn = this.trackBy;\n\n if (isChecked) {\n this.tableData.forEach(function (dataItem) {\n self.selectId(dataItem[idColumn]);\n });\n } else {\n this.tableData.forEach(function (dataItem) {\n self.unselectId(dataItem[idColumn]);\n });\n }\n this.$emit('vuetable:checkbox-toggled-all', isChecked);\n },\n gotoPreviousPage: function gotoPreviousPage() {\n if (this.currentPage > 1) {\n this.currentPage--;\n this.loadData();\n }\n },\n gotoNextPage: function gotoNextPage() {\n if (this.currentPage < this.tablePagination.last_page) {\n this.currentPage++;\n this.loadData();\n }\n },\n gotoPage: function gotoPage(page) {\n if (page != this.currentPage && page > 0 && page <= this.tablePagination.last_page) {\n this.currentPage = page;\n this.loadData();\n }\n },\n isVisibleDetailRow: function isVisibleDetailRow(rowId) {\n return this.visibleDetailRows.indexOf(rowId) >= 0;\n },\n showDetailRow: function showDetailRow(rowId) {\n if (!this.isVisibleDetailRow(rowId)) {\n this.visibleDetailRows.push(rowId);\n }\n },\n hideDetailRow: function hideDetailRow(rowId) {\n if (this.isVisibleDetailRow(rowId)) {\n this.visibleDetailRows.splice(this.visibleDetailRows.indexOf(rowId), 1);\n }\n },\n toggleDetailRow: function toggleDetailRow(rowId) {\n if (this.isVisibleDetailRow(rowId)) {\n this.hideDetailRow(rowId);\n } else {\n this.showDetailRow(rowId);\n }\n },\n showField: function showField(index) {\n if (index < 0 || index > this.tableFields.length) return;\n\n this.tableFields[index].visible = true;\n },\n hideField: function hideField(index) {\n if (index < 0 || index > this.tableFields.length) return;\n\n this.tableFields[index].visible = false;\n },\n toggleField: function toggleField(index) {\n if (index < 0 || index > this.tableFields.length) return;\n\n this.tableFields[index].visible = !this.tableFields[index].visible;\n },\n renderIconTag: function renderIconTag(classes) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';\n\n return typeof this.css.renderIcon === 'undefined' ? '' : this.css.renderIcon(classes, options);\n },\n makePagination: function makePagination() {\n var total = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n var perPage = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;\n var currentPage = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;\n\n var pagination = {};\n total = total === null ? this.dataTotal : total;\n perPage = perPage === null ? this.perPage : perPage;\n currentPage = currentPage === null ? this.currentPage : currentPage;\n\n return {\n 'total': total,\n 'per_page': perPage,\n 'current_page': currentPage,\n 'last_page': Math.ceil(total / perPage) || 0,\n 'next_page_url': '',\n 'prev_page_url': '',\n 'from': (currentPage - 1) * perPage + 1,\n 'to': Math.min(currentPage * perPage, total)\n };\n },\n normalizeSortOrder: function normalizeSortOrder() {\n this.sortOrder.forEach(function (item) {\n item.sortField = item.sortField || item.field;\n });\n },\n callDataManager: function callDataManager() {\n if (this.dataManager === null && this.data === null) return;\n\n if (Array.isArray(this.data)) {\n console.log('data mode: array');\n this.setData(this.data);\n } else {\n this.normalizeSortOrder();\n this.setData(this.dataManager(this.sortOrder, this.makePagination()));\n }\n },\n onRowClass: function onRowClass(dataItem, index) {\n if (this.rowClassCallback !== '') {\n this.warn('\"row-class-callback\" prop is deprecated, please use \"row-class\" prop instead.');\n return;\n }\n\n if (typeof this.rowClass === 'function') {\n return this.rowClass(dataItem, index);\n }\n\n return this.rowClass;\n },\n onRowChanged: function onRowChanged(dataItem) {\n this.fireEvent('row-changed', dataItem);\n return true;\n },\n onRowClicked: function onRowClicked(dataItem, event) {\n this.$emit(this.eventPrefix + 'row-clicked', dataItem, event);\n return true;\n },\n onRowDoubleClicked: function onRowDoubleClicked(dataItem, event) {\n this.$emit(this.eventPrefix + 'row-dblclicked', dataItem, event);\n },\n onDetailRowClick: function onDetailRowClick(dataItem, event) {\n this.$emit(this.eventPrefix + 'detail-row-clicked', dataItem, event);\n },\n onCellClicked: function onCellClicked(dataItem, field, event) {\n this.$emit(this.eventPrefix + 'cell-clicked', dataItem, field, event);\n },\n onCellDoubleClicked: function onCellDoubleClicked(dataItem, field, event) {\n this.$emit(this.eventPrefix + 'cell-dblclicked', dataItem, field, event);\n },\n onCellRightClicked: function onCellRightClicked(dataItem, field, event) {\n this.$emit(this.eventPrefix + 'cell-rightclicked', dataItem, field, event);\n },\n changePage: function changePage(page) {\n if (page === 'prev') {\n this.gotoPreviousPage();\n } else if (page === 'next') {\n this.gotoNextPage();\n } else {\n this.gotoPage(page);\n }\n },\n reload: function reload() {\n return this.loadData();\n },\n refresh: function refresh() {\n this.currentPage = 1;\n return this.loadData();\n },\n resetData: function resetData() {\n this.tableData = null;\n this.tablePagination = null;\n this.fireEvent('data-reset');\n }\n },\n watch: {\n 'multiSort': function multiSort(newVal, oldVal) {\n if (newVal === false && this.sortOrder.length > 1) {\n this.sortOrder.splice(1);\n this.loadData();\n }\n },\n 'apiUrl': function apiUrl(newVal, oldVal) {\n if (this.reactiveApiUrl && newVal !== oldVal) this.refresh();\n },\n 'data': function data(newVal, oldVal) {\n this.setData(newVal);\n }\n }\n};"},{"id":35,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=script&index=0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePagination.vue","name":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/VuetablePagination.vue","index":37,"index2":37,"size":111,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePagination.vue","issuerId":13,"issuerName":"./src/components/VuetablePagination.vue","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":13,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePagination.vue","module":"./src/components/VuetablePagination.vue","moduleName":"./src/components/VuetablePagination.vue","type":"cjs require","userRequest":"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./VuetablePagination.vue","loc":"4:2-115"}],"usedExports":true,"providedExports":["default"],"depth":2,"source":"\n\nimport PaginationMixin from './VuetablePaginationMixin.vue';\n\nexport default {\n mixins: [PaginationMixin]\n};"},{"id":36,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=script&index=0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationDropdown.vue","name":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/VuetablePaginationDropdown.vue","index":42,"index2":40,"size":528,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationDropdown.vue","issuerId":14,"issuerName":"./src/components/VuetablePaginationDropdown.vue","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":14,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationDropdown.vue","module":"./src/components/VuetablePaginationDropdown.vue","moduleName":"./src/components/VuetablePaginationDropdown.vue","type":"cjs require","userRequest":"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./VuetablePaginationDropdown.vue","loc":"4:2-123"}],"usedExports":true,"providedExports":["default"],"depth":2,"source":"\n\nimport PaginationMixin from './VuetablePaginationMixin.vue';\n\nexport default {\n mixins: [PaginationMixin],\n props: {\n pageText: {\n type: String,\n default: function _default() {\n return 'Page';\n }\n }\n },\n methods: {\n registerEvents: function registerEvents() {\n var self = this;\n\n this.$on('vuetable:pagination-data', function (tablePagination) {\n self.setPaginationData(tablePagination);\n });\n }\n },\n created: function created() {\n this.registerEvents();\n }\n};"},{"id":37,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=script&index=0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationInfo.vue","name":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/VuetablePaginationInfo.vue","index":45,"index2":45,"size":123,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationInfo.vue","issuerId":15,"issuerName":"./src/components/VuetablePaginationInfo.vue","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":15,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationInfo.vue","module":"./src/components/VuetablePaginationInfo.vue","moduleName":"./src/components/VuetablePaginationInfo.vue","type":"cjs require","userRequest":"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./VuetablePaginationInfo.vue","loc":"4:2-119"}],"usedExports":true,"providedExports":["default"],"depth":2,"source":"\n\nimport PaginationInfoMixin from './VuetablePaginationInfoMixin.vue';\n\nexport default {\n mixins: [PaginationInfoMixin]\n};"},{"id":38,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=script&index=0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationInfoMixin.vue","name":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/VuetablePaginationInfoMixin.vue","index":47,"index2":43,"size":1165,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationInfoMixin.vue","issuerId":4,"issuerName":"./src/components/VuetablePaginationInfoMixin.vue","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":4,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationInfoMixin.vue","module":"./src/components/VuetablePaginationInfoMixin.vue","moduleName":"./src/components/VuetablePaginationInfoMixin.vue","type":"cjs require","userRequest":"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./VuetablePaginationInfoMixin.vue","loc":"4:2-124"}],"usedExports":true,"providedExports":["default"],"depth":2,"source":"\nexport default {\n props: {\n css: {\n type: Object,\n default: function _default() {\n return {\n infoClass: 'left floated left aligned six wide column'\n };\n }\n },\n infoTemplate: {\n type: String,\n default: function _default() {\n return \"Displaying {from} to {to} of {total} items\";\n }\n },\n noDataTemplate: {\n type: String,\n default: function _default() {\n return 'No relevant data';\n }\n }\n },\n data: function data() {\n return {\n tablePagination: null\n };\n },\n computed: {\n paginationInfo: function paginationInfo() {\n if (this.tablePagination == null || this.tablePagination.total == 0) {\n return this.noDataTemplate;\n }\n\n return this.infoTemplate.replace('{from}', this.tablePagination.from || 0).replace('{to}', this.tablePagination.to || 0).replace('{total}', this.tablePagination.total || 0);\n }\n },\n methods: {\n setPaginationData: function setPaginationData(tablePagination) {\n this.tablePagination = tablePagination;\n },\n resetData: function resetData() {\n this.tablePagination = null;\n }\n }\n};"},{"id":39,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=script&index=0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationMixin.vue","name":"./~/babel-loader/lib!./~/vue-loader/lib/selector.js?type=script&index=0!./src/components/VuetablePaginationMixin.vue","index":39,"index2":35,"size":2432,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationMixin.vue","issuerId":2,"issuerName":"./src/components/VuetablePaginationMixin.vue","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":2,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/index.js??ref--0!/Users/ratiw/Code/vuetable-2/src/components/VuetablePaginationMixin.vue","module":"./src/components/VuetablePaginationMixin.vue","moduleName":"./src/components/VuetablePaginationMixin.vue","type":"cjs require","userRequest":"!!babel-loader!../../node_modules/vue-loader/lib/selector?type=script&index=0!./VuetablePaginationMixin.vue","loc":"4:2-120"}],"usedExports":true,"providedExports":["default"],"depth":2,"source":"\nexport default {\n props: {\n css: {\n type: Object,\n default: function _default() {\n return {\n wrapperClass: 'ui right floated pagination menu',\n activeClass: 'active large',\n disabledClass: 'disabled',\n pageClass: 'item',\n linkClass: 'icon item',\n paginationClass: 'ui bottom attached segment grid',\n paginationInfoClass: 'left floated left aligned six wide column',\n dropdownClass: 'ui search dropdown',\n icons: {\n first: 'angle double left icon',\n prev: 'left chevron icon',\n next: 'right chevron icon',\n last: 'angle double right icon'\n }\n };\n }\n },\n onEachSide: {\n type: Number,\n default: function _default() {\n return 2;\n }\n }\n },\n data: function data() {\n return {\n eventPrefix: 'vuetable-pagination:',\n tablePagination: null\n };\n },\n computed: {\n totalPage: function totalPage() {\n return this.tablePagination === null ? 0 : this.tablePagination.last_page;\n },\n isOnFirstPage: function isOnFirstPage() {\n return this.tablePagination === null ? false : this.tablePagination.current_page === 1;\n },\n isOnLastPage: function isOnLastPage() {\n return this.tablePagination === null ? false : this.tablePagination.current_page === this.tablePagination.last_page;\n },\n notEnoughPages: function notEnoughPages() {\n return this.totalPage < this.onEachSide * 2 + 4;\n },\n windowSize: function windowSize() {\n return this.onEachSide * 2 + 1;\n },\n windowStart: function windowStart() {\n if (!this.tablePagination || this.tablePagination.current_page <= this.onEachSide) {\n return 1;\n } else if (this.tablePagination.current_page >= this.totalPage - this.onEachSide) {\n return this.totalPage - this.onEachSide * 2;\n }\n\n return this.tablePagination.current_page - this.onEachSide;\n }\n },\n methods: {\n loadPage: function loadPage(page) {\n this.$emit(this.eventPrefix + 'change-page', page);\n },\n isCurrentPage: function isCurrentPage(page) {\n return page === this.tablePagination.current_page;\n },\n setPaginationData: function setPaginationData(tablePagination) {\n this.tablePagination = tablePagination;\n },\n resetData: function resetData() {\n this.tablePagination = null;\n }\n }\n};"},{"id":40,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/babel-loader/lib/index.js!/Users/ratiw/Code/vuetable-2/src/index.js","name":"./src/index.js","index":0,"index2":52,"size":999,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":null,"issuerId":null,"issuerName":null,"failed":false,"errors":0,"warnings":0,"reasons":[],"usedExports":true,"providedExports":["Vuetable","VuetablePagination","VuetablePaginationDropDown","VuetablePaginationInfo","VuetablePaginationMixin","VuetablePaginationInfoMixin","install","default"],"depth":0,"source":"import Vuetable from './components/Vuetable.vue';\nimport VuetablePagination from './components/VuetablePagination.vue';\nimport VuetablePaginationDropDown from './components/VuetablePaginationDropdown.vue';\nimport VuetablePaginationInfo from './components/VuetablePaginationInfo.vue';\nimport VuetablePaginationMixin from './components/VuetablePaginationMixin.vue';\nimport VuetablePaginationInfoMixin from './components/VuetablePaginationInfoMixin.vue';\nimport Promise from 'promise-polyfill';\n\nif (!window.Promise) {\n window.Promise = Promise;\n}\n\nfunction install(Vue) {\n Vue.component(\"vuetable\", Vuetable);\n Vue.component(\"vuetable-pagination\", VuetablePagination);\n Vue.component(\"vuetable-pagination-dropdown\", VuetablePaginationDropDown);\n Vue.component(\"vuetable-pagination-info\", VuetablePaginationInfo);\n}\nexport { Vuetable, VuetablePagination, VuetablePaginationDropDown, VuetablePaginationInfo, VuetablePaginationMixin, VuetablePaginationInfoMixin, install };\n\nexport default Vuetable;"},{"id":41,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/css-loader/index.js?{\"minimize\":false,\"sourceMap\":false}!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/style-compiler/index.js?{\"vue\":true,\"id\":\"data-v-5cc42bfc\",\"scoped\":true,\"hasInlineConfig\":false}!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=styles&index=0!/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue","name":"./~/css-loader?{\"minimize\":false,\"sourceMap\":false}!./~/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-5cc42bfc\",\"scoped\":true,\"hasInlineConfig\":false}!./~/vue-loader/lib/selector.js?type=styles&index=0!./src/components/Vuetable.vue","index":3,"index2":1,"size":1259,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/vue-style-loader/index.js!/Users/ratiw/Code/vuetable-2/node_modules/css-loader/index.js?{\"minimize\":false,\"sourceMap\":false}!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/style-compiler/index.js?{\"vue\":true,\"id\":\"data-v-5cc42bfc\",\"scoped\":true,\"hasInlineConfig\":false}!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=styles&index=0!/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue","issuerId":49,"issuerName":"./~/vue-style-loader!./~/css-loader?{\"minimize\":false,\"sourceMap\":false}!./~/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-5cc42bfc\",\"scoped\":true,\"hasInlineConfig\":false}!./~/vue-loader/lib/selector.js?type=styles&index=0!./src/components/Vuetable.vue","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":49,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/vue-style-loader/index.js!/Users/ratiw/Code/vuetable-2/node_modules/css-loader/index.js?{\"minimize\":false,\"sourceMap\":false}!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/style-compiler/index.js?{\"vue\":true,\"id\":\"data-v-5cc42bfc\",\"scoped\":true,\"hasInlineConfig\":false}!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=styles&index=0!/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue","module":"./~/vue-style-loader!./~/css-loader?{\"minimize\":false,\"sourceMap\":false}!./~/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-5cc42bfc\",\"scoped\":true,\"hasInlineConfig\":false}!./~/vue-loader/lib/selector.js?type=styles&index=0!./src/components/Vuetable.vue","moduleName":"./~/vue-style-loader!./~/css-loader?{\"minimize\":false,\"sourceMap\":false}!./~/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-5cc42bfc\",\"scoped\":true,\"hasInlineConfig\":false}!./~/vue-loader/lib/selector.js?type=styles&index=0!./src/components/Vuetable.vue","type":"cjs require","userRequest":"!!../../node_modules/css-loader/index.js?{\"minimize\":false,\"sourceMap\":false}!../../node_modules/vue-loader/lib/style-compiler/index.js?{\"vue\":true,\"id\":\"data-v-5cc42bfc\",\"scoped\":true,\"hasInlineConfig\":false}!../../node_modules/vue-loader/lib/selector.js?type=styles&index=0!./Vuetable.vue","loc":"4:14-329"}],"usedExports":true,"providedExports":null,"depth":3,"source":"exports = module.exports = require(\"../../node_modules/css-loader/lib/css-base.js\")(false);\n// imports\n\n\n// module\nexports.push([module.id, \"\\n[v-cloak][data-v-5cc42bfc] {\\n display: none;\\n}\\n.vuetable th.sortable[data-v-5cc42bfc]:hover {\\n color: #2185d0;\\n cursor: pointer;\\n}\\n.vuetable-body-wrapper[data-v-5cc42bfc] {\\n position:relative;\\n overflow-y:auto;\\n}\\n.vuetable-head-wrapper[data-v-5cc42bfc] {\\n overflow-x: hidden;\\n}\\n.vuetable-actions[data-v-5cc42bfc] {\\n width: 15%;\\n padding: 12px 0px;\\n text-align: center;\\n}\\n.vuetable-pagination[data-v-5cc42bfc] {\\n background: #f9fafb !important;\\n}\\n.vuetable-pagination-info[data-v-5cc42bfc] {\\n margin-top: auto;\\n margin-bottom: auto;\\n}\\n.vuetable-empty-result[data-v-5cc42bfc] {\\n text-align: center;\\n}\\n.vuetable-clip-text[data-v-5cc42bfc] {\\n white-space: pre-wrap;\\n text-overflow: ellipsis;\\n overflow: hidden;\\n display: block;\\n}\\n.vuetable-semantic-no-top[data-v-5cc42bfc] {\\n border-top:none !important;\\n margin-top:0 !important;\\n}\\n.vuetable-fixed-layout[data-v-5cc42bfc] {\\n table-layout: fixed;\\n}\\n.vuetable-gutter-col[data-v-5cc42bfc] {\\n padding: 0 !important;\\n border-left: none !important;\\n border-right: none !important;\\n}\\n\", \"\"]);\n\n// exports\n"},{"id":42,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/css-loader/lib/css-base.js","name":"./~/css-loader/lib/css-base.js","index":4,"index2":0,"size":2260,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/css-loader/index.js?{\"minimize\":false,\"sourceMap\":false}!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/style-compiler/index.js?{\"vue\":true,\"id\":\"data-v-5cc42bfc\",\"scoped\":true,\"hasInlineConfig\":false}!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=styles&index=0!/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue","issuerId":41,"issuerName":"./~/css-loader?{\"minimize\":false,\"sourceMap\":false}!./~/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-5cc42bfc\",\"scoped\":true,\"hasInlineConfig\":false}!./~/vue-loader/lib/selector.js?type=styles&index=0!./src/components/Vuetable.vue","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":41,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/css-loader/index.js?{\"minimize\":false,\"sourceMap\":false}!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/style-compiler/index.js?{\"vue\":true,\"id\":\"data-v-5cc42bfc\",\"scoped\":true,\"hasInlineConfig\":false}!/Users/ratiw/Code/vuetable-2/node_modules/vue-loader/lib/selector.js?type=styles&index=0!/Users/ratiw/Code/vuetable-2/src/components/Vuetable.vue","module":"./~/css-loader?{\"minimize\":false,\"sourceMap\":false}!./~/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-5cc42bfc\",\"scoped\":true,\"hasInlineConfig\":false}!./~/vue-loader/lib/selector.js?type=styles&index=0!./src/components/Vuetable.vue","moduleName":"./~/css-loader?{\"minimize\":false,\"sourceMap\":false}!./~/vue-loader/lib/style-compiler?{\"vue\":true,\"id\":\"data-v-5cc42bfc\",\"scoped\":true,\"hasInlineConfig\":false}!./~/vue-loader/lib/selector.js?type=styles&index=0!./src/components/Vuetable.vue","type":"cjs require","userRequest":"../../node_modules/css-loader/lib/css-base.js","loc":"1:27-83"}],"usedExports":true,"providedExports":null,"depth":4,"source":"/*\n\tMIT License http://www.opensource.org/licenses/mit-license.php\n\tAuthor Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\nmodule.exports = function(useSourceMap) {\n\tvar list = [];\n\n\t// return the list of modules as css string\n\tlist.toString = function toString() {\n\t\treturn this.map(function (item) {\n\t\t\tvar content = cssWithMappingToString(item, useSourceMap);\n\t\t\tif(item[2]) {\n\t\t\t\treturn \"@media \" + item[2] + \"{\" + content + \"}\";\n\t\t\t} else {\n\t\t\t\treturn content;\n\t\t\t}\n\t\t}).join(\"\");\n\t};\n\n\t// import a list of modules into the list\n\tlist.i = function(modules, mediaQuery) {\n\t\tif(typeof modules === \"string\")\n\t\t\tmodules = [[null, modules, \"\"]];\n\t\tvar alreadyImportedModules = {};\n\t\tfor(var i = 0; i < this.length; i++) {\n\t\t\tvar id = this[i][0];\n\t\t\tif(typeof id === \"number\")\n\t\t\t\talreadyImportedModules[id] = true;\n\t\t}\n\t\tfor(i = 0; i < modules.length; i++) {\n\t\t\tvar item = modules[i];\n\t\t\t// skip already imported module\n\t\t\t// this implementation is not 100% perfect for weird media query combinations\n\t\t\t// when a module is imported multiple times with different media queries.\n\t\t\t// I hope this will never occur (Hey this way we have smaller bundles)\n\t\t\tif(typeof item[0] !== \"number\" || !alreadyImportedModules[item[0]]) {\n\t\t\t\tif(mediaQuery && !item[2]) {\n\t\t\t\t\titem[2] = mediaQuery;\n\t\t\t\t} else if(mediaQuery) {\n\t\t\t\t\titem[2] = \"(\" + item[2] + \") and (\" + mediaQuery + \")\";\n\t\t\t\t}\n\t\t\t\tlist.push(item);\n\t\t\t}\n\t\t}\n\t};\n\treturn list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n\tvar content = item[1] || '';\n\tvar cssMapping = item[3];\n\tif (!cssMapping) {\n\t\treturn content;\n\t}\n\n\tif (useSourceMap && typeof btoa === 'function') {\n\t\tvar sourceMapping = toComment(cssMapping);\n\t\tvar sourceURLs = cssMapping.sources.map(function (source) {\n\t\t\treturn '/*# sourceURL=' + cssMapping.sourceRoot + source + ' */'\n\t\t});\n\n\t\treturn [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n\t}\n\n\treturn [content].join('\\n');\n}\n\n// Adapted from convert-source-map (MIT)\nfunction toComment(sourceMap) {\n\t// eslint-disable-next-line no-undef\n\tvar base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n\tvar data = 'sourceMappingURL=data:application/json;charset=utf-8;base64,' + base64;\n\n\treturn '/*# ' + data + ' */';\n}\n"},{"id":43,"identifier":"/Users/ratiw/Code/vuetable-2/node_modules/setimmediate/setImmediate.js","name":"./~/setimmediate/setImmediate.js","index":51,"index2":49,"size":6473,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":[0],"assets":[],"issuer":"/Users/ratiw/Code/vuetable-2/node_modules/timers-browserify/main.js","issuerId":44,"issuerName":"./~/timers-browserify/main.js","failed":false,"errors":0,"warnings":0,"reasons":[{"moduleId":44,"moduleIdentifier":"/Users/ratiw/Code/vuetable-2/node_modules/timers-browserify/main.js","module":"./~/timers-browserify/main.js","moduleName":"./~/timers-browserify/main.js","type":"cjs require","userRequest":"setimmediate","loc":"51:0-23"}],"usedExports":true,"providedExports":null,"depth":3,"source":"(function (global, undefined) {\n \"use strict\";\n\n if (global.setImmediate) {\n return;\n }\n\n var nextHandle = 1; // Spec says greater than zero\n var tasksByHandle = {};\n var currentlyRunningATask = false;\n var doc = global.document;\n var registerImmediate;\n\n function setImmediate(callback) {\n // Callback can either be a function or a string\n if (typeof callback !== \"function\") {\n callback = new Function(\"\" + callback);\n }\n // Copy function arguments\n var args = new Array(arguments.length - 1);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i + 1];\n }\n // Store and register the task\n var task = { callback: callback, args: args };\n tasksByHandle[nextHandle] = task;\n registerImmediate(nextHandle);\n return nextHandle++;\n }\n\n function clearImmediate(handle) {\n delete tasksByHandle[handle];\n }\n\n function run(task) {\n var callback = task.callback;\n var args = task.args;\n switch (args.length) {\n case 0:\n callback();\n break;\n case 1:\n callback(args[0]);\n break;\n case 2:\n callback(args[0], args[1]);\n break;\n case 3:\n callback(args[0], args[1], args[2]);\n break;\n default:\n callback.apply(undefined, args);\n break;\n }\n }\n\n function runIfPresent(handle) {\n // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n // So if we're currently running a task, we'll need to delay this invocation.\n if (currentlyRunningATask) {\n // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n // \"too much recursion\" error.\n setTimeout(runIfPresent, 0, handle);\n } else {\n var task = tasksByHandle[handle];\n if (task) {\n currentlyRunningATask = true;\n try {\n run(task);\n } finally {\n clearImmediate(handle);\n currentlyRunningATask = false;\n }\n }\n }\n }\n\n function installNextTickImplementation() {\n registerImmediate = function(handle) {\n process.nextTick(function () { runIfPresent(handle); });\n };\n }\n\n function canUsePostMessage() {\n // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n // where `global.postMessage` means something completely different and can't be used for this purpose.\n if (global.postMessage && !global.importScripts) {\n var postMessageIsAsynchronous = true;\n var oldOnMessage = global.onmessage;\n global.onmessage = function() {\n postMessageIsAsynchronous = false;\n };\n global.postMessage(\"\", \"*\");\n global.onmessage = oldOnMessage;\n return postMessageIsAsynchronous;\n }\n }\n\n function installPostMessageImplementation() {\n // Installs an event handler on `global` for the `message` event: see\n // * https://developer.mozilla.org/en/DOM/window.postMessage\n // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n var onGlobalMessage = function(event) {\n if (event.source === global &&\n typeof event.data === \"string\" &&\n event.data.indexOf(messagePrefix) === 0) {\n runIfPresent(+event.data.slice(messagePrefix.length));\n }\n };\n\n if (global.addEventListener) {\n global.addEventListener(\"message\", onGlobalMessage, false);\n } else {\n global.attachEvent(\"onmessage\", onGlobalMessage);\n }\n\n registerImmediate = function(handle) {\n global.postMessage(messagePrefix + handle, \"*\");\n };\n }\n\n function installMessageChannelImplementation() {\n var channel = new MessageChannel();\n channel.port1.onmessage = function(event) {\n var handle = event.data;\n runIfPresent(handle);\n };\n\n registerImmediate = function(handle) {\n channel.port2.postMessage(handle);\n };\n }\n\n function installReadyStateChangeImplementation() {\n var html = doc.documentElement;\n registerImmediate = function(handle) {\n // Create a