UNPKG

admin-ui

Version:

An elegant admin-system-like vue ui components library

1,744 lines (1,508 loc) 60.2 kB
module.exports = /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); /******/ } /******/ }; /******/ /******/ // define __esModule on exports /******/ __webpack_require__.r = function(exports) { /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); /******/ } /******/ Object.defineProperty(exports, '__esModule', { value: true }); /******/ }; /******/ /******/ // create a fake namespace object /******/ // mode & 1: value is a module id, require it /******/ // mode & 2: merge all properties of value into the ns /******/ // mode & 4: return value when already ns object /******/ // mode & 8|1: behave like require /******/ __webpack_require__.t = function(value, mode) { /******/ if(mode & 1) value = __webpack_require__(value); /******/ if(mode & 8) return value; /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; /******/ var ns = Object.create(null); /******/ __webpack_require__.r(ns); /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); /******/ return ns; /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = ""; /******/ /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 394); /******/ }) /************************************************************************/ /******/ ({ /***/ 0: /***/ (function(module, exports) { // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 var global = module.exports = typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self // eslint-disable-next-line no-new-func : Function('return this')(); if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef /***/ }), /***/ 1: /***/ (function(module, exports, __webpack_require__) { // Thank's IE8 for his funny defineProperty module.exports = !__webpack_require__(7)(function () { return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7; }); /***/ }), /***/ 10: /***/ (function(module, exports) { var core = module.exports = { version: '2.6.11' }; if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef /***/ }), /***/ 11: /***/ (function(module, exports, __webpack_require__) { var global = __webpack_require__(0); var hide = __webpack_require__(3); var has = __webpack_require__(6); var SRC = __webpack_require__(13)('src'); var $toString = __webpack_require__(44); var TO_STRING = 'toString'; var TPL = ('' + $toString).split(TO_STRING); __webpack_require__(10).inspectSource = function (it) { return $toString.call(it); }; (module.exports = function (O, key, val, safe) { var isFunction = typeof val == 'function'; if (isFunction) has(val, 'name') || hide(val, 'name', key); if (O[key] === val) return; if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key))); if (O === global) { O[key] = val; } else if (!safe) { delete O[key]; hide(O, key, val); } else if (O[key]) { O[key] = val; } else { hide(O, key, val); } // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative })(Function.prototype, TO_STRING, function toString() { return typeof this == 'function' && this[SRC] || $toString.call(this); }); /***/ }), /***/ 118: /***/ (function(module, exports) { module.exports = require("admin-ui/dist/lib/scroller"); /***/ }), /***/ 13: /***/ (function(module, exports) { var id = 0; var px = Math.random(); module.exports = function (key) { return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36)); }; /***/ }), /***/ 14: /***/ (function(module, exports) { // 7.2.1 RequireObjectCoercible(argument) module.exports = function (it) { if (it == undefined) throw TypeError("Can't call method on " + it); return it; }; /***/ }), /***/ 15: /***/ (function(module, exports, __webpack_require__) { var core = __webpack_require__(10); var global = __webpack_require__(0); var SHARED = '__core-js_shared__'; var store = global[SHARED] || (global[SHARED] = {}); (module.exports = function (key, value) { return store[key] || (store[key] = value !== undefined ? value : {}); })('versions', []).push({ version: core.version, mode: __webpack_require__(26) ? 'pure' : 'global', copyright: '© 2019 Denis Pushkarev (zloirock.ru)' }); /***/ }), /***/ 156: /***/ (function(module, exports) { module.exports = require("admin-ui/dist/lib/loading"); /***/ }), /***/ 16: /***/ (function(module, exports, __webpack_require__) { var global = __webpack_require__(0); var core = __webpack_require__(10); var hide = __webpack_require__(3); var redefine = __webpack_require__(11); var ctx = __webpack_require__(30); var PROTOTYPE = 'prototype'; var $export = function (type, name, source) { var IS_FORCED = type & $export.F; var IS_GLOBAL = type & $export.G; var IS_STATIC = type & $export.S; var IS_PROTO = type & $export.P; var IS_BIND = type & $export.B; var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE]; var exports = IS_GLOBAL ? core : core[name] || (core[name] = {}); var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {}); var key, own, out, exp; if (IS_GLOBAL) source = name; for (key in source) { // contains in native own = !IS_FORCED && target && target[key] !== undefined; // export native or passed out = (own ? target : source)[key]; // bind timers to global for call from export context exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out; // extend global if (target) redefine(target, key, out, type & $export.U); // export if (exports[key] != out) hide(exports, key, exp); if (IS_PROTO && expProto[key] != out) expProto[key] = out; } }; global.core = core; // type bitmap $export.F = 1; // forced $export.G = 2; // global $export.S = 4; // static $export.P = 8; // proto $export.B = 16; // bind $export.W = 32; // wrap $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export; /***/ }), /***/ 18: /***/ (function(module, exports) { module.exports = function (bitmap, value) { return { enumerable: !(bitmap & 1), configurable: !(bitmap & 2), writable: !(bitmap & 4), value: value }; }; /***/ }), /***/ 19: /***/ (function(module, exports) { // 7.1.4 ToInteger var ceil = Math.ceil; var floor = Math.floor; module.exports = function (it) { return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); }; /***/ }), /***/ 196: /***/ (function(module, exports) { module.exports = require("admin-ui/dist/lib/tag"); /***/ }), /***/ 20: /***/ (function(module, exports, __webpack_require__) { // 7.1.1 ToPrimitive(input [, PreferredType]) var isObject = __webpack_require__(4); // instead of the ES6 spec version, we didn't implement @@toPrimitive case // and the second argument - flag - preferred type is a string module.exports = function (it, S) { if (!isObject(it)) return it; var fn, val; if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val; if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val; if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val; throw TypeError("Can't convert object to primitive value"); }; /***/ }), /***/ 22: /***/ (function(module, exports, __webpack_require__) { "use strict"; /* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ // css base code, injected by the css-loader module.exports = function (useSourceMap) { var list = []; // return the list of modules as css string list.toString = function toString() { return this.map(function (item) { var content = cssWithMappingToString(item, useSourceMap); if (item[2]) { return '@media ' + item[2] + '{' + content + '}'; } else { return content; } }).join(''); }; // import a list of modules into the list list.i = function (modules, mediaQuery) { if (typeof modules === 'string') { modules = [[null, modules, '']]; } var alreadyImportedModules = {}; for (var i = 0; i < this.length; i++) { var id = this[i][0]; if (id != null) { alreadyImportedModules[id] = true; } } for (i = 0; i < modules.length; i++) { var item = modules[i]; // skip already imported module // this implementation is not 100% perfect for weird media query combinations // when a module is imported multiple times with different media queries. // I hope this will never occur (Hey this way we have smaller bundles) if (item[0] == null || !alreadyImportedModules[item[0]]) { if (mediaQuery && !item[2]) { item[2] = mediaQuery; } else if (mediaQuery) { item[2] = '(' + item[2] + ') and (' + mediaQuery + ')'; } list.push(item); } } }; return list; }; function cssWithMappingToString(item, useSourceMap) { var content = item[1] || ''; var cssMapping = item[3]; if (!cssMapping) { return content; } if (useSourceMap && typeof btoa === 'function') { var sourceMapping = toComment(cssMapping); var sourceURLs = cssMapping.sources.map(function (source) { return '/*# sourceURL=' + cssMapping.sourceRoot + source + ' */'; }); return [content].concat(sourceURLs).concat([sourceMapping]).join('\n'); } return [content].join('\n'); } // Adapted from convert-source-map (MIT) function toComment(sourceMap) { // eslint-disable-next-line no-undef var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))); var data = 'sourceMappingURL=data:application/json;charset=utf-8;base64,' + base64; return '/*# ' + data + ' */'; } /***/ }), /***/ 226: /***/ (function(module, exports, __webpack_require__) { // style-loader: Adds some css to the DOM by adding a <style> tag // load the styles var content = __webpack_require__(341); if(typeof content === 'string') content = [[module.i, content, '']]; if(content.locals) module.exports = content.locals; // add the styles to the DOM var add = __webpack_require__(25).default var update = add("372458a5", content, false, {}); // Hot Module Replacement if(false) {} /***/ }), /***/ 25: /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); // CONCATENATED MODULE: ./node_modules/vue-style-loader/lib/listToStyles.js /** * Translates the list format produced by css-loader into something * easier to manipulate. */ function listToStyles (parentId, list) { var styles = [] var newStyles = {} for (var i = 0; i < list.length; i++) { var item = list[i] var id = item[0] var css = item[1] var media = item[2] var sourceMap = item[3] var part = { id: parentId + ':' + i, css: css, media: media, sourceMap: sourceMap } if (!newStyles[id]) { styles.push(newStyles[id] = { id: id, parts: [part] }) } else { newStyles[id].parts.push(part) } } return styles } // CONCATENATED MODULE: ./node_modules/vue-style-loader/lib/addStylesClient.js /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addStylesClient; }); /* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra Modified by Evan You @yyx990803 */ var hasDocument = typeof document !== 'undefined' if (typeof DEBUG !== 'undefined' && DEBUG) { if (!hasDocument) { throw new Error( 'vue-style-loader cannot be used in a non-browser environment. ' + "Use { target: 'node' } in your Webpack config to indicate a server-rendering environment." ) } } /* type StyleObject = { id: number; parts: Array<StyleObjectPart> } type StyleObjectPart = { css: string; media: string; sourceMap: ?string } */ var stylesInDom = {/* [id: number]: { id: number, refs: number, parts: Array<(obj?: StyleObjectPart) => void> } */} var head = hasDocument && (document.head || document.getElementsByTagName('head')[0]) var singletonElement = null var singletonCounter = 0 var isProduction = false var noop = function () {} var options = null var ssrIdKey = 'data-vue-ssr-id' // Force single-tag solution on IE6-9, which has a hard limit on the # of <style> // tags it will allow on a page var isOldIE = typeof navigator !== 'undefined' && /msie [6-9]\b/.test(navigator.userAgent.toLowerCase()) function addStylesClient (parentId, list, _isProduction, _options) { isProduction = _isProduction options = _options || {} var styles = listToStyles(parentId, list) addStylesToDom(styles) return function update (newList) { var mayRemove = [] for (var i = 0; i < styles.length; i++) { var item = styles[i] var domStyle = stylesInDom[item.id] domStyle.refs-- mayRemove.push(domStyle) } if (newList) { styles = listToStyles(parentId, newList) addStylesToDom(styles) } else { styles = [] } for (var i = 0; i < mayRemove.length; i++) { var domStyle = mayRemove[i] if (domStyle.refs === 0) { for (var j = 0; j < domStyle.parts.length; j++) { domStyle.parts[j]() } delete stylesInDom[domStyle.id] } } } } function addStylesToDom (styles /* Array<StyleObject> */) { for (var i = 0; i < styles.length; i++) { var item = styles[i] var domStyle = stylesInDom[item.id] if (domStyle) { domStyle.refs++ for (var j = 0; j < domStyle.parts.length; j++) { domStyle.parts[j](item.parts[j]) } for (; j < item.parts.length; j++) { domStyle.parts.push(addStyle(item.parts[j])) } if (domStyle.parts.length > item.parts.length) { domStyle.parts.length = item.parts.length } } else { var parts = [] for (var j = 0; j < item.parts.length; j++) { parts.push(addStyle(item.parts[j])) } stylesInDom[item.id] = { id: item.id, refs: 1, parts: parts } } } } function createStyleElement () { var styleElement = document.createElement('style') styleElement.type = 'text/css' head.appendChild(styleElement) return styleElement } function addStyle (obj /* StyleObjectPart */) { var update, remove var styleElement = document.querySelector('style[' + ssrIdKey + '~="' + obj.id + '"]') if (styleElement) { if (isProduction) { // has SSR styles and in production mode. // simply do nothing. return noop } else { // has SSR styles but in dev mode. // for some reason Chrome can't handle source map in server-rendered // style tags - source maps in <style> only works if the style tag is // created and inserted dynamically. So we remove the server rendered // styles and inject new ones. styleElement.parentNode.removeChild(styleElement) } } if (isOldIE) { // use singleton mode for IE9. var styleIndex = singletonCounter++ styleElement = singletonElement || (singletonElement = createStyleElement()) update = applyToSingletonTag.bind(null, styleElement, styleIndex, false) remove = applyToSingletonTag.bind(null, styleElement, styleIndex, true) } else { // use multi-style-tag mode in all other cases styleElement = createStyleElement() update = applyToTag.bind(null, styleElement) remove = function () { styleElement.parentNode.removeChild(styleElement) } } update(obj) return function updateStyle (newObj /* StyleObjectPart */) { if (newObj) { if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap) { return } update(obj = newObj) } else { remove() } } } var replaceText = (function () { var textStore = [] return function (index, replacement) { textStore[index] = replacement return textStore.filter(Boolean).join('\n') } })() function applyToSingletonTag (styleElement, index, remove, obj) { var css = remove ? '' : obj.css if (styleElement.styleSheet) { styleElement.styleSheet.cssText = replaceText(index, css) } else { var cssNode = document.createTextNode(css) var childNodes = styleElement.childNodes if (childNodes[index]) styleElement.removeChild(childNodes[index]) if (childNodes.length) { styleElement.insertBefore(cssNode, childNodes[index]) } else { styleElement.appendChild(cssNode) } } } function applyToTag (styleElement, obj) { var css = obj.css var media = obj.media var sourceMap = obj.sourceMap if (media) { styleElement.setAttribute('media', media) } if (options.ssrId) { styleElement.setAttribute(ssrIdKey, obj.id) } if (sourceMap) { // https://developer.chrome.com/devtools/docs/javascript-debugging // this makes source maps inside style tags work properly in Chrome css += '\n/*# sourceURL=' + sourceMap.sources[0] + ' */' // http://stackoverflow.com/a/26603875 css += '\n/*# sourceMappingURL=data:application/json;base64,' + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + ' */' } if (styleElement.styleSheet) { styleElement.styleSheet.cssText = css } else { while (styleElement.firstChild) { styleElement.removeChild(styleElement.firstChild) } styleElement.appendChild(document.createTextNode(css)) } } /***/ }), /***/ 26: /***/ (function(module, exports) { module.exports = false; /***/ }), /***/ 27: /***/ (function(module, exports, __webpack_require__) { var isObject = __webpack_require__(4); var document = __webpack_require__(0).document; // typeof document.createElement is 'object' in old IE var is = isObject(document) && isObject(document.createElement); module.exports = function (it) { return is ? document.createElement(it) : {}; }; /***/ }), /***/ 3: /***/ (function(module, exports, __webpack_require__) { var dP = __webpack_require__(9); var createDesc = __webpack_require__(18); module.exports = __webpack_require__(1) ? function (object, key, value) { return dP.f(object, key, createDesc(1, value)); } : function (object, key, value) { object[key] = value; return object; }; /***/ }), /***/ 30: /***/ (function(module, exports, __webpack_require__) { // optional / simple context binding var aFunction = __webpack_require__(38); module.exports = function (fn, that, length) { aFunction(fn); if (that === undefined) return fn; switch (length) { case 1: return function (a) { return fn.call(that, a); }; case 2: return function (a, b) { return fn.call(that, a, b); }; case 3: return function (a, b, c) { return fn.call(that, a, b, c); }; } return function (/* ...args */) { return fn.apply(that, arguments); }; }; /***/ }), /***/ 31: /***/ (function(module, exports, __webpack_require__) { module.exports = !__webpack_require__(1) && !__webpack_require__(7)(function () { return Object.defineProperty(__webpack_require__(27)('div'), 'a', { get: function () { return 7; } }).a != 7; }); /***/ }), /***/ 338: /***/ (function(module, exports, __webpack_require__) { var $export = __webpack_require__(16); $export($export.P, 'String', { // 21.1.3.13 String.prototype.repeat(count) repeat: __webpack_require__(339) }); /***/ }), /***/ 339: /***/ (function(module, exports, __webpack_require__) { "use strict"; var toInteger = __webpack_require__(19); var defined = __webpack_require__(14); module.exports = function repeat(count) { var str = String(defined(this)); var res = ''; var n = toInteger(count); if (n < 0 || n == Infinity) throw RangeError("Count can't be negative"); for (;n > 0; (n >>>= 1) && (str += str)) if (n & 1) res += str; return res; }; /***/ }), /***/ 340: /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_node_modules_vue_loader_lib_index_js_vue_loader_options_tagfactory_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(226); /* harmony import */ var _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_node_modules_vue_loader_lib_index_js_vue_loader_options_tagfactory_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_node_modules_vue_loader_lib_index_js_vue_loader_options_tagfactory_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_0__); /* unused harmony reexport * */ /* unused harmony default export */ var _unused_webpack_default_export = (_node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_node_modules_vue_loader_lib_index_js_vue_loader_options_tagfactory_vue_vue_type_style_index_0_lang_scss___WEBPACK_IMPORTED_MODULE_0___default.a); /***/ }), /***/ 341: /***/ (function(module, exports, __webpack_require__) { exports = module.exports = __webpack_require__(22)(false); // Module exports.push([module.i, ".au-tagfactory-body{position:relative;display:inline-block;z-index:1;max-width:100%}.au-tagfactory-core{position:relative;display:inline-block;min-width:83px;width:100%;height:100%;padding:5px;padding-bottom:0;border-width:1px;border-style:solid;font-size:0}.au-tagfactory-item{margin-right:5px;margin-bottom:5px;vertical-align:middle}.au-tagfactory-input-container{display:inline-block;margin-bottom:5px;font-family:\"Helvetica Neue\",Helvetica,\"PingFang SC\",\"Hiragino Sans GB\",\"Microsoft YaHei\",\"微软雅黑\",Arial,sans-serif;font-size:14px;white-space:nowrap;vertical-align:middle}.au-tagfactory-input-container .au-tagfactory-input-core{width:5px;outline:none;border:none;vertical-align:middle}.au-tagfactory-placeholder{position:absolute;font-size:14px;z-index:0}.au-tagfactory-associations-container{position:absolute;margin-top:4px;left:0;z-index:1;min-width:100%;max-height:237px;border-width:1px;border-style:solid;font-size:14px}.au-tagfactory-associations-item{display:block;height:32px;padding:0 8px;margin:0;line-height:28px;font-size:14px;word-break:keep-all;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;user-select:none;cursor:pointer}\n", ""]); /***/ }), /***/ 36: /***/ (function(module, exports, __webpack_require__) { // style-loader: Adds some css to the DOM by adding a <style> tag // load the styles var content = __webpack_require__(92); if(typeof content === 'string') content = [[module.i, content, '']]; if(content.locals) module.exports = content.locals; // add the styles to the DOM var add = __webpack_require__(25).default var update = add("e9b29ffc", content, false, {}); // Hot Module Replacement if(false) {} /***/ }), /***/ 37: /***/ (function(module, exports) { module.exports = require("admin-ui/dist/helpers/dom"); /***/ }), /***/ 38: /***/ (function(module, exports) { module.exports = function (it) { if (typeof it != 'function') throw TypeError(it + ' is not a function!'); return it; }; /***/ }), /***/ 394: /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./src/admin-ui/src/components/tagfactory/src/tagfactory.vue?vue&type=template&id=fa28e5c0& var render = function() { var _vm = this var _h = _vm.$createElement var _c = _vm._self._c || _h return _c( "div", { staticClass: "au-tagfactory au-theme-color--base-3", style: { display: _vm.fullWidth ? "block" : "" } }, [ _c( "form-item", { attrs: { label: _vm.label, labelWidth: _vm.labelWidth, inline: _vm.inline, tips: _vm.tips, size: _vm.size, middle: _vm.inline, warnings: _vm.warnings || _vm.localWarnings } }, [ _c( "div", { ref: "body", staticClass: "au-tagfactory-body" }, [ _c( "div", { ref: "tagsContainer", staticClass: "au-tagfactory-core au-theme-border-radius--small", class: { "au-theme-background-color--base-12": !_vm.disabled, "au-theme-background-color--base-11": _vm.disabled, "au-theme-border-color--base-9": _vm.disabled || (!_vm.hasWarnings && !_vm.active), "au-theme-border-color--primary": !_vm.disabled && !_vm.hasWarnings && _vm.active, "au-theme-border-color--danger": _vm.hasWarnings, "au-theme-box-shadow--primary": !_vm.disabled && _vm.active && !_vm.hasWarnings, "au-theme-box-shadow--danger": !_vm.disabled && _vm.active && _vm.hasWarnings }, style: { cursor: _vm.disabled ? "not-allowed" : "", width: _vm.width, maxWidth: _vm.maxWidth, minWidth: _vm.minWidth, minHeight: _vm.minHeight, maxHeight: _vm.maxHeight }, on: { click: function($event) { $event.stopPropagation() return _vm.handleClick($event) } } }, [ _c( "div", { directives: [ { name: "show", rawName: "v-show", value: !_vm.localTags.length && !_vm.inputValue.length, expression: "!localTags.length && !inputValue.length" } ], staticClass: "au-tagfactory-placeholder au-theme-color--base-8" }, [ _vm._v( "\n " + _vm._s(_vm.placeholder) + "\n " ) ] ), _vm._v(" "), _vm._l(_vm.localTags, function(tag, i) { return _c( "au-tag", { key: i, staticClass: "au-tagfactory-item", attrs: { type: "primary", closable: !_vm.disabled && _vm.canRemove, hoverable: !_vm.disabled, size: _vm.tagSize, active: false }, on: { close: function($event) { return _vm.handleTagClose(i, $event) } } }, [_vm._v("\n " + _vm._s(tag) + "\n ")] ) }), _vm._v(" "), _c("div", { staticClass: "au-tagfactory-input-container" }, [ _vm._v( "\n " + _vm._s(_vm.inputValue) + "\n " ), _c("input", { ref: "input", staticClass: "au-tagfactory-input-core", attrs: { type: "text" }, on: { input: _vm.handleCoreChange, keydown: function($event) { if ( !$event.type.indexOf("key") && _vm._k( $event.keyCode, "delete", [8, 46], $event.key, ["Backspace", "Delete", "Del"] ) ) { return null } return _vm.handleCoreDeleteDown($event) }, keyup: [ function($event) { if ( !$event.type.indexOf("key") && _vm._k( $event.keyCode, "delete", [8, 46], $event.key, ["Backspace", "Delete", "Del"] ) ) { return null } return _vm.handleCoreDeleteUp($event) }, function($event) { if ( !$event.type.indexOf("key") && _vm._k($event.keyCode, "up", 38, $event.key, [ "Up", "ArrowUp" ]) ) { return null } return _vm.handleDirectionUpPress($event) }, function($event) { if ( !$event.type.indexOf("key") && _vm._k($event.keyCode, "down", 40, $event.key, [ "Down", "ArrowDown" ]) ) { return null } return _vm.handleDirectionDownPress($event) } ], keypress: function($event) { if ( !$event.type.indexOf("key") && _vm._k( $event.keyCode, "enter", 13, $event.key, "Enter" ) ) { return null } return _vm.handleCoreEnter($event) }, focus: _vm.handleCoreFocus, blur: _vm.handleCoreBlur } }) ]) ], 2 ), _vm._v(" "), _c( "au-scroller", { directives: [ { name: "show", rawName: "v-show", value: (_vm.associationsShow && _vm.localAssociations.length) || (_vm.canCreate && _vm.inputValue && _vm.active), expression: "(associationsShow && localAssociations.length) || (canCreate && inputValue && active)" } ], ref: "associationsContainer", staticClass: "\n au-tagfactory-associations-container\n au-theme-border-color--base-11\n au-theme-background-color--base-12", attrs: { direction: "vertical", scrollTop: _vm.associationsScrollTop }, on: { scroll: function(v) { return (_vm.associationsScrollTop = v.scrollTop) } } }, [ _c( "ul", [ _c( "li", { directives: [ { name: "show", rawName: "v-show", value: _vm.canCreate && _vm.inputValue && _vm.associations.indexOf(_vm.inputValue) === -1, expression: "canCreate && inputValue && associations.indexOf(inputValue) === -1" } ], staticClass: "au-tagfactory-associations-item au-theme-hover-background-color--base-11 au-theme-color--primary", on: { click: function($event) { return _vm.handleAssociationClick(_vm.inputValue) } } }, [_vm._v(" " + _vm._s(_vm.inputValue) + " ")] ), _vm._v(" "), _vm._l(_vm.localAssociations, function(association, i) { return _c( "li", { key: i, class: { "au-tagfactory-associations-item": true, "au-theme-background-color--primary-bottom": _vm.activeAssociationIndex === i + 1 }, on: { click: function($event) { return _vm.handleAssociationClick(association) } } }, [ _vm._v( "\n " + _vm._s(association) + "\n " ) ] ) }) ], 2 ) ] ) ], 1 ) ] ) ], 1 ) } var staticRenderFns = [] render._withStripped = true // CONCATENATED MODULE: ./src/admin-ui/src/components/tagfactory/src/tagfactory.vue?vue&type=template&id=fa28e5c0& // EXTERNAL MODULE: ./node_modules/core-js/modules/es6.string.repeat.js var es6_string_repeat = __webpack_require__(338); // EXTERNAL MODULE: external "admin-ui/dist/lib/tag" var tag_ = __webpack_require__(196); var tag_default = /*#__PURE__*/__webpack_require__.n(tag_); // EXTERNAL MODULE: external "admin-ui/dist/lib/scroller" var scroller_ = __webpack_require__(118); var scroller_default = /*#__PURE__*/__webpack_require__.n(scroller_); // EXTERNAL MODULE: external "admin-ui/dist/lib/loading" var loading_ = __webpack_require__(156); var loading_default = /*#__PURE__*/__webpack_require__.n(loading_); // EXTERNAL MODULE: ./src/admin-ui/src/helpers/form-item.vue + 4 modules var form_item = __webpack_require__(66); // EXTERNAL MODULE: external "admin-ui/dist/helpers/validator-mixin" var validator_mixin_ = __webpack_require__(86); var validator_mixin_default = /*#__PURE__*/__webpack_require__.n(validator_mixin_); // EXTERNAL MODULE: external "admin-ui/dist/helpers/form-api-mixin" var form_api_mixin_ = __webpack_require__(79); var form_api_mixin_default = /*#__PURE__*/__webpack_require__.n(form_api_mixin_); // EXTERNAL MODULE: external "admin-ui/dist/helpers/dom" var dom_ = __webpack_require__(37); // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/admin-ui/src/components/tagfactory/src/tagfactory.vue?vue&type=script&lang=js& // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // import AuPopover from 'components/popover' /* harmony default export */ var tagfactoryvue_type_script_lang_js_ = ({ name: 'au-tagfactory', components: { AuTag: tag_default.a, AuScroller: scroller_default.a, FormItem: form_item["default"] }, mixins: [validator_mixin_default.a, form_api_mixin_default.a], model: { prop: 'tags', event: 'change' }, props: { tags: { type: Array, default: function _default() { return []; } }, tagSize: { type: String, default: 'mini' }, associations: { type: Array, default: function _default() { return []; } }, tagMatcher: { type: Function, default: function _default() { return function () { return true; }; } }, canRemove: { type: Boolean, default: true }, canCreate: { type: Boolean, default: true }, repeat: Boolean, fullWidth: Boolean, width: String, maxWidth: String, minWidth: String, minHeight: String, maxHeight: String, placeholder: { type: String, default: '请填写标签' }, warnings: Array, warning: Boolean, loading: { type: Boolean, default: false } }, data: function data() { return { localTags: this.tags, lengthWhenDown: 0, isSeriesDown: 0, inputValue: '', associationsShow: false, activeAssociationIndex: 0, active: false, loadingInstance: null, associationsScrollTop: 0 }; }, computed: { localAssociations: function localAssociations() { var _this = this; return this.associations.filter(function (a) { return a.indexOf(_this.inputValue) !== -1; }); } }, watch: { tags: { deep: true, handler: function handler(v) { if (!v.length && this.localTags.length) { this.localTags = v; return; } for (var i = 0; i < v.length; i++) { if (v[i] !== this.localTags[i]) { this.localTags = v; break; } } } }, localTags: { deep: true, handler: function handler(v) { if (!v.length && this.tags.length) { this.$emit('change', v); return; } for (var i = 0; i < v.length; i++) { if (v[i] !== this.tags[i]) { this.$emit('change', v); break; } } } }, localAssociations: { deep: true, handler: function handler(v, ov) { var oldAss = ov[this.activeAssociationIndex - 1]; if (oldAss) { var newIndex = v.indexOf(oldAss); if (newIndex !== -1) { this.activeAssociationIndex = newIndex + 1; } else { this.activeAssociationIndex = 1; } } else { this.activeAssociationIndex = 0; } this.checkAssociationsDisplay(); } }, inputValue: function inputValue(v) { // this.checkAssociationsDisplay() this.$emit('input-change', v); }, loading: function loading(v) { var _this2 = this; if (v) { this.$nextTick(function () { _this2.loadingInstance = loading_default()({ target: _this2.associationsShow ? _this2.$refs.associationsContainer.$el : _this2.$refs.tagsContainer.$el, size: 30 }); }); } else { if (this.loadingInstance) { this.loadingInstance.close(); this.loadingInstance = null; } } }, activeAssociationIndex: function activeAssociationIndex(v) { var viewHeight = 32 * 7; if (viewHeight + this.associationsScrollTop < v * 32) { this.associationsScrollTop = v * 32 - viewHeight; } else if ((v - 1) * 32 < this.associationsScrollTop) { this.associationsScrollTop = (v - 1) * 32 - 15; } } }, methods: { throughMatcher: function throughMatcher(value) { var _this3 = this; return new Promise(function (resolve, reject) { if (typeof _this3.tagMatcher === 'function') { var res = _this3.tagMatcher(value); if (res instanceof Promise) { res.then(function (r) { return resolve(r); }); } else { resolve(!!res); } } else { resolve(true); } }).catch(function (e) { console.warn("Admin UI@".concat(_this3.$options._componentTag, "@throughMatcher: ").concat(e)); }); }, setTag: function setTag(value) { if (!this.repeat && this.localTags.indexOf(value) !== -1) { this.inputValue = value; } else { this.localTags.push(value); this.inputValue = ''; } }, handleClick: function handleClick() { if (!this.disabled) this.$refs.input.focus(); }, handleCoreChange: function handleCoreChange(e) { if (e.target.value.length) { this.inputValue += e.target.value; e.target.value = ''; } }, handleCoreDeleteDown: function handleCoreDeleteDown(e) { this.lengthWhenDown = this.inputValue.length; this.isSeriesDown++; if (this.inputValue.length) { this.inputValue = this.inputValue.substring(0, this.inputValue.length - 1); } }, handleCoreDeleteUp: function handleCoreDeleteUp(e) { this.isSeriesDown--; if (!this.isSeriesDown) { if (!this.lengthWhenDown) this.localTags.pop(); } else { this.isSeriesDown = 0; } }, handleCoreEnter: function handleCoreEnter(e) { var _this4 = this; if (this.activeAssociationIndex) { var activeAssociation = this.localAssociations[this.activeAssociationIndex - 1]; this.throughMatcher(activeAssociation).then(function (res) { if (res) _this4.setTag(activeAssociation);else _this4.inputValue = activeAssociation; }); } else if (this.inputValue.length) { this.throughMatcher(this.inputValue).then(function (res) { if (!res) return; _this4.setTag(_this4.inputValue); }); } }, handleDirectionUpPress: function handleDirectionUpPress(e) { e.preventDefault(); if (this.activeAssociationIndex > 0) this.activeAssociationIndex--; }, handleDirectionDownPress: function handleDirectionDownPress(e) { e.preventDefault(); if (this.activeAssociationIndex < this.localAssociations.length) this.activeAssociationIndex++; }, handleCoreFocus: function handleCoreFocus(e) { if (this.associations.length) { this.associationsShow = true; } if (!this.active) { this.active = true; this.$emit('focus', this.localTags); } }, handleCoreBlur: function handleCoreBlur(e) { // this.active = false this.$emit('blur', this.localTags); }, handleWindowClick: function handleWindowClick(e) { if (!Object(dom_["isAncestor"])(e.target, this.$refs.body)) this.associationsShow = false; }, handleAssociationClick: function handleAssociationClick(v) { var _this5 = this; this.throughMatcher(v).then(function (res) { if (res) { _this5.setTag(v); } else _this5.inputValue = v; }); this.$refs.input.focus(); }, handleTagClose: function handleTagClose(index, e) { e.stopPropagation(); if (this.canRemove) { this.localTags.splice(index, 1); } }, checkAssociationsDisplay: function checkAssociationsDisplay() { if (this.active && this.localAssociations.length && !this.associationsShow) { this.associationsShow = true; } } }, mounted: function mounted() { window.addEventListener('click', this.handleWindowClick); }, destroy: function destroy() { window.removeEventListener('click', this.handleWindowClick); } }); // CONCATENATED MODULE: ./src/admin-ui/src/components/tagfactory/src/tagfactory.vue?vue&type=script&lang=js& /* harmony default export */ var src_tagfactoryvue_type_script_lang_js_ = (tagfactoryvue_type_script_lang_js_); // EXTERNAL MODULE: ./src/admin-ui/src/components/tagfactory/src/tagfactory.vue?vue&type=style&index=0&lang=scss& var tagfactoryvue_type_style_index_0_lang_scss_ = __webpack_require__(340); // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js var componentNormalizer = __webpack_require__(8); // CONCATENATED MODULE: ./src/admin-ui/src/components/tagfactory/src/tagfactory.vue /* normalize component */ var component = Object(componentNormalizer["a" /* default */])( src_tagfactoryvue_type_script_lang_js_, render, staticRenderFns, false, null, null, null ) /* hot reload */ if (false) { var api; } component.options.__file = "src/admin-ui/src/components/tagfactory/src/tagfactory.vue" /* harmony default export */ var tagfactory = (component.exports); // CONCATENATED MODULE: ./src/admin-ui/src/components/tagfactory/index.js /* concated harmony reexport default */__webpack_require__.d(__webpack_exports__, "default", function() { return tagfactory; }); /***/ }), /***/ 4: /***/ (function(module, exports) { module.exports = function (it) { return typeof it === 'object' ? it !== null : typeof it === 'function'; }; /***/ }), /***/ 44: /***/ (function(module, exports, __webpack_require__) { module.exports = __webpack_require__(15)('native-function-to-string', Function.toString); /***/ }), /***/ 5: /***/ (function(module, exports, __webpack_require__) { var isObject = __webpack_require__(4); module.exports = function (it) { if (!isObject(it)) throw TypeError(it + ' is not an object!'); return it; }; /***/ }), /***/ 6: /***/ (function(module, exports) { var hasOwnProperty = {}.hasOwnProperty; module.exports = function (it, key) { return hasOwnProperty.call(it, key); }; /***/ }), /***/ 66: /*