UNPKG

@world-vision-canada/wvc-design-system

Version:

WVC Vue Design system is a fork of Vue Design System, an open-source tool for building Design Systems with Vue.js

589 lines (496 loc) 25.6 kB
((typeof self !== 'undefined' ? self : this)["webpackJsonpwvc"] = (typeof self !== 'undefined' ? self : this)["webpackJsonpwvc"] || []).push([[18],{ /***/ "2350": /***/ (function(module, exports) { /* 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(typeof id === "number") 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(typeof item[0] !== "number" || !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 + ' */'; } /***/ }), /***/ "2877": /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; }); /* globals __VUE_SSR_CONTEXT__ */ // IMPORTANT: Do NOT use ES2015 features in this file (except for modules). // This module is a runtime utility for cleaner component module output and will // be included in the final webpack user bundle. function normalizeComponent ( scriptExports, render, staticRenderFns, functionalTemplate, injectStyles, scopeId, moduleIdentifier, /* server only */ shadowMode /* vue-cli only */ ) { // Vue.extend constructor export interop var options = typeof scriptExports === 'function' ? scriptExports.options : scriptExports // render functions if (render) { options.render = render options.staticRenderFns = staticRenderFns options._compiled = true } // functional template if (functionalTemplate) { options.functional = true } // scopedId if (scopeId) { options._scopeId = 'data-v-' + scopeId } var hook if (moduleIdentifier) { // server build hook = function (context) { // 2.3 injection context = context || // cached call (this.$vnode && this.$vnode.ssrContext) || // stateful (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional // 2.2 with runInNewContext: true if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') { context = __VUE_SSR_CONTEXT__ } // inject component styles if (injectStyles) { injectStyles.call(this, context) } // register component module identifier for async chunk inferrence if (context && context._registeredComponents) { context._registeredComponents.add(moduleIdentifier) } } // used by ssr in case component is cached and beforeCreate // never gets called options._ssrRegister = hook } else if (injectStyles) { hook = shadowMode ? function () { injectStyles.call( this, (options.functional ? this.parent : this).$root.$options.shadowRoot ) } : injectStyles } if (hook) { if (options.functional) { // for template-only hot-reload because in that case the render fn doesn't // go through the normalizer options._injectStyles = hook // register for functional component in vue file var originalRender = options.render options.render = function renderWithStyleInjection (h, context) { hook.call(context) return originalRender(h, context) } } else { // inject component registration as beforeCreate hook var existing = options.beforeCreate options.beforeCreate = existing ? [].concat(existing, hook) : [hook] } } return { exports: scriptExports, options: options } } /***/ }), /***/ "35d6": /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; // ESM COMPAT FLAG __webpack_require__.r(__webpack_exports__); // EXPORTS __webpack_require__.d(__webpack_exports__, "default", function() { return /* binding */ addStylesToShadowDOM; }); // 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/addStylesShadow.js function addStylesToShadowDOM(parentId, list, shadowRoot) { var styles = listToStyles(parentId, list); addStyles(styles, shadowRoot); } /* type StyleObject = { id: number; parts: Array<StyleObjectPart> } type StyleObjectPart = { css: string; media: string; sourceMap: ?string } */ function addStyles(styles /* Array<StyleObject> */ , shadowRoot) { var injectedStyles = shadowRoot._injectedStyles || (shadowRoot._injectedStyles = {}); for (var i = 0; i < styles.length; i++) { var item = styles[i]; var style = injectedStyles[item.id]; if (!style) { for (var j = 0; j < item.parts.length; j++) { addStyle(item.parts[j], shadowRoot); } injectedStyles[item.id] = true; } } } function createStyleElement(shadowRoot) { var styleElement = document.createElement('style'); styleElement.type = 'text/css'; shadowRoot.appendChild(styleElement); return styleElement; } function addStyle(obj /* StyleObjectPart */ , shadowRoot) { var styleElement = createStyleElement(shadowRoot); var css = obj.css; var media = obj.media; var sourceMap = obj.sourceMap; if (media) { styleElement.setAttribute('media', media); } 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)); } } /***/ }), /***/ "554e": /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; // ESM COMPAT FLAG __webpack_require__.r(__webpack_exports__); // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"01f5881a-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/elements/WvcCard.vue?vue&type=template&id=10144ba1&scoped=true& var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:['card', _vm.themeClass, _vm.classes],style:({ backgroundColor: _vm.backgroundColor })},[(!!_vm.backgroundImage)?_c('div',{staticClass:"card-image",style:({ backgroundImage: ("url(" + _vm.backgroundImage + ")") }),attrs:{"aria-label":"ASAA","role":"img","alt":_vm.backgroundAltText}}):_vm._e(),(_vm.overlay && !!_vm.backgroundImage)?_c('div',{staticClass:"card-overlay"},[(!!_vm.iconImage)?_c('div',{staticClass:"card-icon",style:({ backgroundImage: ("url(" + _vm.iconImage + ")") }),attrs:{"role":"img","alt":_vm.iconAltText}}):_vm._e(),_vm._t("default")],2):_c('div',{staticClass:"card-body"},[_vm._t("header"),_vm._t("default")],2)])} var staticRenderFns = [] // CONCATENATED MODULE: ./src/elements/WvcCard.vue?vue&type=template&id=10144ba1&scoped=true& // EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/defineProperty.js var defineProperty = __webpack_require__("9523"); var defineProperty_default = /*#__PURE__*/__webpack_require__.n(defineProperty); // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/elements/WvcCard.vue?vue&type=script&lang=js& // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // /** * `Cards` are generally used to contain content that should be visually grouped together on the page. * They can be used in sliders or on their own as floating elements on the page. */ /* harmony default export */ var WvcCardvue_type_script_lang_js_ = ({ name: 'WvcCard', props: { /** * Sets the alt text on the background image. */ backgroundAltText: { type: String, default: null }, /** * Sets the background color of the lower portion of the card. */ backgroundColor: { type: String, default: null }, /** * The source of the card's background image, if there is one. * Appends `-image` to card class for styling purposes if not null. */ backgroundImage: { type: String, default: null }, /** * Adjusts CSS for use within a slider, row or other flex-container where multiple cards are evenly spaced out. */ contained: { type: Boolean, default: false }, /** * Use dark theme for component. */ dark: { type: Boolean, default: false }, /** * Designed for use in sliders, carousels, etc. * When used in conjunction with "contained" parameter, removes max width limits on card. */ fillWidth: { type: Boolean, default: false }, /** * The card's `flex-direction`. * @values column, row */ flexDirection: { type: String, default: 'column', validator: function validator(value) { return value.match(/(column|row)/); } }, /** * Sets the alt text on the icon image. */ iconAltText: { type: String, default: null }, /** * The card's icon image. Only shows if `overlay` is set to true. */ iconImage: { type: String, default: null }, /** * Whether the card should be built as an overlay above an image with a solid background. * Requires `backgroundImage` to be set. */ overlay: { type: Boolean, default: false }, /** * Card column width. * @values single, wide, full */ width: { type: String, default: 'single', validator: function validator(value) { return value.match(/(single|wide|full)/); } } }, computed: { classes: function classes() { var _ref; // assign class based on flexDirection, size, and background image return _ref = {}, defineProperty_default()(_ref, "card--flex-".concat(this.flexDirection), true), defineProperty_default()(_ref, "card--".concat(this.width).concat(this.backgroundImage ? '-image' : ''), true), defineProperty_default()(_ref, 'card--overlay', this.overlay), defineProperty_default()(_ref, 'card--container-mode', this.contained), defineProperty_default()(_ref, 'card--fill-width', this.fillWidth), _ref; }, themeClass: function themeClass() { return { 'theme-light': !this.dark, 'theme-dark': this.dark }; } } }); // CONCATENATED MODULE: ./src/elements/WvcCard.vue?vue&type=script&lang=js& /* harmony default export */ var elements_WvcCardvue_type_script_lang_js_ = (WvcCardvue_type_script_lang_js_); // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js var componentNormalizer = __webpack_require__("2877"); // CONCATENATED MODULE: ./src/elements/WvcCard.vue function injectStyles (context) { var style0 = __webpack_require__("bc0d") if (style0.__inject__) style0.__inject__(context) } /* normalize component */ var component = Object(componentNormalizer["a" /* default */])( elements_WvcCardvue_type_script_lang_js_, render, staticRenderFns, false, injectStyles, "10144ba1", null ,true ) /* harmony default export */ var WvcCard = __webpack_exports__["default"] = (component.exports); /***/ }), /***/ "743e": /***/ (function(module, exports, __webpack_require__) { exports = module.exports = __webpack_require__("2350")(false); // imports exports.push([module.i, "@import url(https://fonts.googleapis.com/css2?family=Karla:wght@700&family=Lato:ital,wght@0,400;0,700;1,400&display=swap);", ""]); // module exports.push([module.i, ".card[data-v-10144ba1]{box-sizing:border-box;padding:0;margin:0;display:flex;align-items:center;text-align:center;width:100%;margin:8px}.card[data-v-10144ba1]:before{content:\"\";display:block;height:0;width:0;margin-top:-.1em}.card.theme-light[data-v-10144ba1]{background-color:#fff;color:#000}.card.theme-dark[data-v-10144ba1]{background-color:#0d4773;color:#fff}.card.card--container-mode[data-v-10144ba1]{margin:8px 0}.card.card--flex-row[data-v-10144ba1]{flex-direction:row}.card.card--flex-column[data-v-10144ba1]{flex-direction:column}.card h2[data-v-10144ba1]{font-size:36px;line-height:48px}.card h2[data-v-10144ba1],.card h3[data-v-10144ba1]{font-family:Lato;font-weight:700}.card h3[data-v-10144ba1]{font-size:32px;line-height:40px;margin:16px 12px}.card h4[data-v-10144ba1]{font-size:24px}.card h4[data-v-10144ba1],.card h5[data-v-10144ba1]{font-family:Lato;font-weight:700;line-height:32px;margin-top:8px}.card h5[data-v-10144ba1]{font-size:20px}.card h6[data-v-10144ba1]{font-family:Lato;font-size:18px;line-height:32px;margin-top:8px}.card p[data-v-10144ba1]{font-family:Lato;font-size:16px;line-height:24px;margin:16px}@media (max-width:767px){.card h2[data-v-10144ba1]{font-size:28px;margin-top:8px;margin-bottom:12px}.card h2[data-v-10144ba1],.card h3[data-v-10144ba1]{font-family:Lato;font-weight:700;line-height:32px}.card h3[data-v-10144ba1]{font-size:26px;margin:8px 0}.card h4[data-v-10144ba1]{font-size:18px;margin-top:8px}.card h4[data-v-10144ba1],.card h5[data-v-10144ba1]{font-family:Lato;font-weight:700;line-height:24px}.card h5[data-v-10144ba1]{font-size:16px}.card h6[data-v-10144ba1]{font-size:14px}.card h6[data-v-10144ba1],.card p[data-v-10144ba1]{font-family:Lato;line-height:24px}.card p[data-v-10144ba1]{font-size:16px;margin:16px}}.card.card--overlay h3[data-v-10144ba1]{margin-top:16px}@media (max-width:767px){.card.card--overlay h3[data-v-10144ba1]{margin-bottom:12px}.card.card--overlay p[data-v-10144ba1]{margin:16px 12px}}.card .card-image[data-v-10144ba1]{width:100%;background-repeat:no-repeat;background-size:cover;object-fit:cover;min-height:184px}@media (max-width:767px){.card .card-image[data-v-10144ba1]{min-height:0;height:160px}}.card .card-overlay[data-v-10144ba1]{background-color:#fff;height:calc(100% - 12px);width:calc(100% - 56px);margin-top:-48px;display:block;padding:16px 12px;margin-bottom:16px;text-align:center}.card .card-overlay p[data-v-10144ba1]{margin:12px 4px}.card .card-icon[data-v-10144ba1]{width:64px;height:64px;border-radius:50%;background-repeat:no-repeat;background-size:cover;margin:-48px auto 0}.card .card-body[data-v-10144ba1]{padding:16px 12px}.card.card--single[data-v-10144ba1],.card.card--single-image[data-v-10144ba1]{max-width:348px}@media (max-width:767px){.card.card--single[data-v-10144ba1],.card.card--single-image[data-v-10144ba1]{max-width:328px}}.card.card--single[data-v-10144ba1]{width:calc(33.33% - 64px);max-width:328px;padding:16px}.card.card--single.card--container-mode[data-v-10144ba1]{width:100%}.card.card--single.card--container-mode.card--fill-width[data-v-10144ba1]{max-width:none}@media (max-width:767px){.card.card--single[data-v-10144ba1]{width:calc(100% - 12px);margin:0;padding:12px}}.card.card--single-image[data-v-10144ba1]{width:calc(33.33% - 16px)}.card.card--single-image.card--container-mode[data-v-10144ba1]{width:100%}.card.card--single-image.card--container-mode.card--fill-width[data-v-10144ba1]{max-width:none}@media (max-width:767px){.card.card--single-image[data-v-10144ba1]{width:100%;margin:12px 0}}.card.card--wide[data-v-10144ba1],.card.card--wide-image[data-v-10144ba1]{max-width:696px}@media (max-width:767px){.card.card--wide[data-v-10144ba1],.card.card--wide-image[data-v-10144ba1]{max-width:360px}}.card.card--wide[data-v-10144ba1]{width:calc(66.33% - 64px);padding:16px}.card.card--wide.card--container-mode[data-v-10144ba1]{width:100%}.card.card--wide.card--container-mode.card--fill-width[data-v-10144ba1]{max-width:none}@media (max-width:767px){.card.card--wide[data-v-10144ba1]{width:calc(100% - 12px);margin:12px}}.card.card--wide-image[data-v-10144ba1]{width:calc(66.33% - 16px)}.card.card--wide-image.card--container-mode[data-v-10144ba1]{width:100%}.card.card--wide-image.card--container-mode.card--fill-width[data-v-10144ba1]{max-width:none}@media (max-width:767px){.card.card--wide-image[data-v-10144ba1]{width:100%;margin:12px 0}}.card.card--full[data-v-10144ba1]{padding:16px}.card.card--full[data-v-10144ba1],.card.card--full-image[data-v-10144ba1]{max-width:1084px}.card.card--full-image.card--container-mode[data-v-10144ba1],.card.card--full.card--container-mode[data-v-10144ba1]{width:100%}.card.card--full-image.card--container-mode.card--fill-width[data-v-10144ba1],.card.card--full.card--container-mode.card--fill-width[data-v-10144ba1]{max-width:none}.card.card--full-image .card-image[data-v-10144ba1],.card.card--full .card-image[data-v-10144ba1]{height:256px}@media (max-width:767px){.card.card--full[data-v-10144ba1],.card.card--full-image[data-v-10144ba1]{max-width:360px}.card.card--full-image .card-image[data-v-10144ba1],.card.card--full .card-image[data-v-10144ba1]{height:160px}}.card.card--full-image.card--overlay .card-overlay[data-v-10144ba1],.card.card--full.card--overlay .card-overlay[data-v-10144ba1]{width:81%;margin-top:-96px;padding:16px 12px;margin-bottom:40px}@media (min-width:1025px){.card.card--full-image.card--overlay .card-overlay h2[data-v-10144ba1],.card.card--full.card--overlay .card-overlay h2[data-v-10144ba1]{margin:20px 56px}.card.card--full-image.card--overlay .card-overlay h6[data-v-10144ba1],.card.card--full.card--overlay .card-overlay h6[data-v-10144ba1]{margin:12px 92px}.card.card--full-image.card--overlay .card-overlay p[data-v-10144ba1],.card.card--full.card--overlay .card-overlay p[data-v-10144ba1]{font-family:Lato;font-size:18px;line-height:32px;margin-left:84px;margin-right:84px}}@media (max-width:767px){.card.card--full-image.card--overlay .card-overlay[data-v-10144ba1],.card.card--full.card--overlay .card-overlay[data-v-10144ba1]{margin-top:-48px;max-width:328px;width:calc(100% - 56px);margin-bottom:12px}.card.card--full-image.card--overlay .card-overlay p[data-v-10144ba1],.card.card--full.card--overlay .card-overlay p[data-v-10144ba1]{margin-top:8px;margin-bottom:0}}@media (max-width:767px){.card.card--overlay h3[data-v-10144ba1]{margin-top:16px}.card.card--overlay p[data-v-10144ba1]{margin:16px 8px}.card.card--overlay .card-overlay[data-v-10144ba1]{margin-top:-32px}.card.card--overlay .card-overlay p[data-v-10144ba1]{margin-bottom:12px}}", ""]); // exports /***/ }), /***/ "9242": /***/ (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__("743e"); if(typeof content === 'string') content = [[module.i, content, '']]; if(content.locals) module.exports = content.locals; // add CSS to Shadow Root var add = __webpack_require__("35d6").default module.exports.__inject__ = function (shadowRoot) { add("8dfb78ca", content, shadowRoot) }; /***/ }), /***/ "9523": /***/ (function(module, exports) { function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } module.exports = _defineProperty; /***/ }), /***/ "bc0d": /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_WvcCard_vue_vue_type_style_index_0_id_10144ba1_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("9242"); /* harmony import */ var _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_WvcCard_vue_vue_type_style_index_0_id_10144ba1_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_WvcCard_vue_vue_type_style_index_0_id_10144ba1_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__); /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_WvcCard_vue_vue_type_style_index_0_id_10144ba1_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_WvcCard_vue_vue_type_style_index_0_id_10144ba1_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__)); /* harmony default export */ __webpack_exports__["default"] = (_node_modules_vue_style_loader_index_js_ref_8_oneOf_1_0_node_modules_css_loader_index_js_ref_8_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_8_oneOf_1_2_node_modules_sass_loader_dist_cjs_js_ref_8_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_WvcCard_vue_vue_type_style_index_0_id_10144ba1_lang_scss_scoped_true___WEBPACK_IMPORTED_MODULE_0___default.a); /***/ }) }]); //# sourceMappingURL=wvc.common.18.js.map