!!values[`${prefix}${p[0].toUpperCase()}${p.slice(1)}`])) {\\n style.push(v);\\n } else if(n) {\\n style.push(n);\\n }\\n };\\n \\n c('bold','font-weight:bold');\\n c('italics','font-style:italic');\\n c('underscore','text-decoration:underline');\\n c('lineThrough','text-decoration:line-through');\\n c('align',`text-align:${val('align')}`);\\n c('padding', `margin-top:${val('padding')}px`);\\n style.push(`font-family:${values.font.value}`);\\n /*\\n c(['customFont', 'color'], `color:${val('color')}`);\\n c('customFont',`font-size:${val('size')}px`,`font-size:${values.size}px`);\\n c('customFont',`line-height:${val('size')*1.5}px`,`line-height:${values.size*1.5}px`);\\n */\\n c('color', `color:${val('color')}`);\\n style.push(`font-size:${val('size')}px`);\\n style.push(`line-height:${val('size')*1.5}px`);\\n return style.join(';');\\n};\\n\\nvar getTextContainerRender = function(field, values, content, lines) {\\n var size = getSize(field, values, lines);\\n return `\\n \\n ${content}\\n
\\n `;\\n}\\n\\nvar getSuffix = function(values) {\\n var s = '';\\n if(values.boxType == 'N') {\\n s = `_NEW`;\\n } else if(values.boxType == 'C') {\\n s = `_C${values.productCategory || '%DEFAULT_CATEGORY%'}`;\\n }\\n return s;\\n}\\n\\nvar getTextContainerEmail = function(field, values, content, lines) {\\n var size = getSize(field, values, lines);\\n return `\\n \\n \\n ${content}\\n
\\n \\n `;\\n}\\n\\nvar getDroiButton = function(values) {\\n //console.debug('button border', values.buttonBorder);\\n var msoheight = parseInt(values.buttonSize)+22;\\n // estimate the width\\n var msowidth = parseInt(values.buttonSize) * values.buttonText.length;\\n var msoarc = ((parseInt(values.buttonCorners) / msoheight) * 100).toFixed(0);\\n var borderStyle = values.buttonBorder ? Object.keys(values.buttonBorder).reduce(function(style, prop) { return style + `${prop.replace(/([A-Z])/g,'-$1').toLowerCase()}:${values.buttonBorder[prop]};` }, '') : '';\\n return `\\n \\n \\n \\n \\n \\n \\n \\n | \\n
\\n \\n
\\n `\\n}\\n\\n/*\\nvar enableFields = {\\n 'image': ['height'],\\n 'name': ['height','customFont', 'align', 'italics', 'bold', 'underscore'],\\n 'originalPrice': ['customFont', 'align', 'italics', 'bold', 'lineThrough'],\\n 'price': ['customFont', 'align', 'italics', 'bold'],\\n 'sale': ['customFont', 'align', 'italics', 'bold'],\\n 'desc': ['height','customFont', 'align', 'italics', 'bold'],\\n 'button': ['text', 'colorText', 'colorBackground', 'width', 'size', 'italics', 'bold', 'underscore']\\n}\\n*/\\n\\n// https://stackoverflow.com/questions/3942878/how-to-decide-font-color-in-white-or-black-depending-on-background-color\\nvar chooseTextColor = function(hex) {\\n var red = parseInt(hex.substring(0,2), 16);\\n var green = parseInt(hex.substring(2,4), 16);\\n var blue = parseInt(hex.substring(4,6), 16);\\n if ((red*0.299 + green*0.587 + blue*0.114) > 186) {\\n return '000000'; \\n } else {\\n return 'FFFFFF';\\n }\\n}\\n\\n\\nunlayer.registerTool({\\n name: 'dreamroi_product_image',\\n label: '%TITLE%',\\n icon: 'fa-tag',\\n supportedDisplayModes: ['email'],\\n options: {\\n default: {\\n title: null,\\n },\\n common: {\\n title: '%COMMON%',\\n position: 1,\\n options: {\\n boxType: {\\n label: '%BOX_TYPE%',\\n widget: 'dropdown',\\n defaultValue: {\\n label: '%BOX_REC%',\\n value: 'R'\\n }\\n },\\n productCategory: {\\n label: '%PRODUCT_CATEGORY%',\\n widget: 'dropdown',\\n hidden: true,\\n defaultValue: '%DEFAULT_CATEGORY%'\\n },\\n font: {\\n label: '%FONT_FAMILY%',\\n defaultValue: {\\n label: 'Arial',\\n value: 'arial,helvetica,sans-serif'\\n },\\n widget: 'font_family'\\n },\\n size: {\\n label: '%FONT_SIZE%',\\n defaultValue: '14',\\n widget: 'counter'\\n }\\n }\\n },\\n image: {\\n title: '%IMAGE%',\\n position: 2,\\n options: {\\n imageEnable: {\\n label: '%ENABLE%',\\n defaultValue: true,\\n widget: 'toggle'\\n },\\n imageHeight: {\\n label: '%HEIGHT%',\\n defaultValue: '200',\\n widget: 'counter',\\n },\\n mobileWidth: {\\n label: '%MOBILE_WIDTH%',\\n defaultValue: '100',\\n widget: 'counter'\\n }\\n }\\n },\\n \\n name: {\\n title: '%NAME%',\\n position: 3,\\n options: {\\n nameEnable: {\\n label: '%ENABLE%',\\n defaultValue: true,\\n widget: 'toggle'\\n },\\n nameHeight: {\\n label: '%HEIGHT_ROWS%',\\n defaultValue: '2',\\n widget: 'counter',\\n },\\n nameAlign: {\\n label: '%ALIGN%',\\n defaultValue: 'center',\\n widget: 'alignment'\\n },\\n nameItalics: {\\n label: '%ITALICS%',\\n defaultValue: false,\\n widget: 'toggle',\\n },\\n nameBold: {\\n label: '%BOLD%',\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n nameUnderscore: {\\n label: '%UNDERSCORE%',\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n /*\\n nameCustomFont: {\\n label: '%CUSTOM_FONT%',\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n */\\n nameColor: {\\n label: '%COLOR%',\\n hidden: true,\\n defaultValue: '#000000',\\n widget: 'color_picker'\\n },\\n nameSize: {\\n label: '%FONT_SIZE%',\\n defaultValue: '14',\\n hidden: true,\\n widget: 'counter'\\n },\\n namePadding: {\\n label: '%PADDING_TOP%',\\n defaultValue: 0,\\n widget: 'counter'\\n }\\n }\\n },\\n \\n originalPrice: {\\n title: '%ORIGINAL_PRICE%',\\n position: 4,\\n options: {\\n originalPriceEnable: {\\n label: '%ENABLE%',\\n defaultValue:false,\\n widget: 'toggle'\\n },\\n originalPriceAlign: {\\n label: '%ALIGN%',\\n defaultValue: 'center',\\n widget: 'alignment'\\n },\\n originalPriceItalics: {\\n label: '%ITALICS%',\\n defaultValue: false,\\n widget: 'toggle',\\n },\\n originalPriceBold: {\\n label: '%BOLD%',\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n originalPriceLineThrough: {\\n label: '%LINETHROUGH%',\\n defaultValue: true,\\n widget: 'toggle'\\n },\\n /*\\n originalPriceCustomFont: {\\n label: '%CUSTOM_FONT%',\\n defaultValue: true,\\n widget: 'toggle'\\n },\\n */\\n originalPriceColor: {\\n label: '%COLOR%',\\n defaultValue: '#FF0000',\\n widget: 'color_picker'\\n },\\n originalPriceSize: {\\n label: '%FONT_SIZE%',\\n defaultValue: '14',\\n widget: 'counter'\\n },\\n originalPricePadding: {\\n label: '%PADDING_TOP%',\\n defaultValue: 0,\\n widget: 'counter'\\n }\\n }\\n },\\n price: {\\n title: '%PRICE%',\\n position: 5,\\n options: {\\n priceEnable: {\\n label: '%ENABLE%',\\n defaultValue: true,\\n widget: 'toggle'\\n },\\n priceAlign: {\\n label: '%ALIGN%',\\n defaultValue: 'center',\\n widget: 'alignment'\\n },\\n priceItalics: {\\n label: '%ITALICS%',\\n defaultValue: false,\\n widget: 'toggle',\\n },\\n priceBold: {\\n label: '%BOLD%',\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n /*\\n priceCustomFont: {\\n label: '%CUSTOM_FONT%',\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n */\\n priceColor: {\\n label: '%COLOR%',\\n hidden: true,\\n defaultValue: null,\\n widget: 'color_picker'\\n },\\n priceSize: {\\n label: '%FONT_SIZE%',\\n hidden: true,\\n defaultValue: '14',\\n widget: 'counter'\\n },\\n pricePadding: {\\n label: '%PADDING_TOP%',\\n defaultValue: 0,\\n widget: 'counter'\\n }\\n }\\n },\\n sale: {\\n title: '%SALE%',\\n position: 6,\\n options: {\\n saleEnable: {\\n label: '%ENABLE%',\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n saleAlign: {\\n label: '%ALIGN%',\\n defaultValue: 'center',\\n widget: 'alignment'\\n },\\n saleItalics: {\\n label: '%ITALICS%',\\n defaultValue: false,\\n widget: 'toggle',\\n },\\n saleBold: {\\n label: '%BOLD%',\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n /*\\n saleCustomFont: {\\n label: '%CUSTOM_FONT%',\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n */\\n saleColor: {\\n label: '%COLOR%',\\n hidden: true,\\n defaultValue: '#00FF00',\\n widget: 'color_picker'\\n },\\n saleSize: {\\n label: '%FONT_SIZE%',\\n hidden: true,\\n defaultValue: '14',\\n widget: 'counter'\\n },\\n salePadding: {\\n label: '%PADDING_TOP%',\\n defaultValue: 0,\\n widget: 'counter'\\n }\\n }\\n },\\n description: {\\n title: '%DESCRIPTION%',\\n position: 7,\\n options: {\\n descEnable: {\\n label: '%ENABLE%',\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n descHeight: {\\n label: '%HEIGHT_ROWS%',\\n hidden: true,\\n defaultValue: '5',\\n widget: 'counter',\\n },\\n descAlign: {\\n label: '%ALIGN%',\\n hidden: true,\\n defaultValue: 'center',\\n widget: 'alignment'\\n },\\n descItalics: {\\n label: '%ITALICS%',\\n hidden: true,\\n defaultValue: false,\\n widget: 'toggle',\\n },\\n descBold: {\\n label: '%BOLD%',\\n hidden: true,\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n /*\\n descCustomFont: {\\n label: '%CUSTOM_FONT%',\\n hidden: true,\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n */\\n descColor: {\\n label: '%COLOR%',\\n hidden: true,\\n defaultValue: null,\\n widget: 'color_picker'\\n },\\n descSize: {\\n label: '%FONT_SIZE%',\\n hidden: true,\\n defaultValue: '14',\\n widget: 'counter'\\n },\\n descPadding: {\\n label: '%PADDING_TOP%',\\n defaultValue: 0,\\n widget: 'counter'\\n }\\n }\\n },\\n button: {\\n title: '%BUTTON%',\\n position: 8,\\n options: {\\n buttonEnable: {\\n label: '%ENABLE%',\\n defaultValue: true,\\n widget: 'toggle'\\n },\\n buttonText: {\\n label: '%BUTTON_TEXT%',\\n hidden: false,\\n defaultValue: '%BUTTON_TEXT_DEFAULT%',\\n widget: 'text'\\n },\\n buttonColorText: {\\n label: '%COLOR_TEXT%',\\n hidden: false,\\n defaultValue: '#FFFFFF',\\n widget: 'color_picker'\\n },\\n buttonColorBackground: {\\n label: '%COLOR_BACKGROUND%',\\n hidden: false,\\n defaultValue: '#0000FF',\\n widget: 'color_picker'\\n },\\n buttonWidth: {\\n label: '%BUTTON_WIDTH%',\\n hidden: false,\\n defaultValue: '60',\\n widget: 'counter'\\n },\\n buttonSize: {\\n label: '%FONT_SIZE%',\\n hidden: false,\\n defaultValue: '14',\\n widget: 'counter'\\n },\\n /*\\n buttonAlign: {\\n label: '%ALIGN%',\\n defaultValue: 'center',\\n widget: 'alignment'\\n },\\n */\\n buttonItalics: {\\n label: '%ITALICS%',\\n hidden: false,\\n defaultValue: false,\\n widget: 'toggle',\\n },\\n buttonBold: {\\n label: '%BOLD%',\\n hidden: false,\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n buttonUnderscore: {\\n label: '%UNDERSCORE%',\\n hidden: false,\\n defaultValue: false,\\n widget: 'toggle'\\n },\\n buttonBorder: {\\n label: '%BORDER%',\\n hidden: false,\\n defaultValue: {},\\n widget: 'border'\\n },\\n buttonCorners: {\\n label: '%BUTTON_CORNERS%',\\n hidden: false,\\n defaultValue: 4,\\n widget: 'counter'\\n },\\n buttonPadding: {\\n label: '%PADDING_TOP%',\\n defaultValue: 0,\\n widget: 'counter'\\n }\\n }\\n }\\n \\n },\\n propertyStates: (values) => {\\n var o = {};\\n var reen = new RegExp('(\\\\\\\\w+)Enable');\\n //var recf = new RegExp('(\\\\\\\\w+)CustomFont');\\n Object.keys(values).forEach(function(k) {\\n var e = reen.exec(k);\\n if(e) {\\n // enable or disable all the props\\n //console.debug(`Enable regex matched for ${e[0]} - name is ${e[1]}`);\\n \\n var reprops = new RegExp(`${e[1]}\\\\\\\\w+`);\\n Object.keys(values).filter(function(p) { \\n //console.debug(``)\\n return p != e[0] && reprops.test(p)\\n }).forEach(function(p) {\\n //console.debug(`Checking state of ${p}`)\\n /*\\n if(p == 'descCustomFont') {\\n console.debug('Enabling/Disabling descCustomFont');\\n }\\n */\\n o[p] = { hidden: !values[k] };\\n });\\n \\n //enableFields[e[1]].forEach(function(p) { o[`${e[1]}${p[0].toUpperCase()}${p.slice(1)}`] = { enabled: values[k] } });\\n }\\n /*\\n var m = recf.exec(k);\\n //console.log(`checking ${k}...`, m);\\n if(m) {\\n //console.debug(`Setting ${m[1]}Size.enabled and ${m[1]}Color.enabled to ${values[k]}`);\\n if(values[`${m[1]}Enable`] && values[k] != values[`${m[1]}Size`]) {\\n //console.debug(`Setting ${m[1]}Size.enabled and ${m[1]}Color.enabled to ${values[k]}`);\\n o[`${m[1]}Size`] = { hidden: !values[k]};\\n o[`${m[1]}Color`] = { hidden: !values[k]};\\n }\\n }\\n */\\n });\\n //console.debug('setting new property states', values, o);\\n if(values['boxType'] === 'C') {\\n o['productCategory'] = { hidden: false };\\n } else if(values['boxType']) {\\n o['productCategory'] = { hidden: true };\\n }\\n return o;\\n },\\n \\n transformer: (values, source) => {\\n const { name, value, data } = source;\\n \\n if(name != 'size') {\\n return values;\\n } \\n // Transform the values here\\n let newValues = {\\n ...values\\n };\\n\\n var re = new RegExp('(\\\\\\\\w+)Size');\\n Object.keys(newValues).forEach(function(k) {\\n \\n if(re.test(k)) {\\n console.log(k);\\n newValues[k] = value;\\n }\\n });\\n \\n // Return updated values\\n return newValues;\\n },\\n \\n values: {},\\n renderer: {\\n Viewer: unlayer.createViewer({\\n render(values) {\\n //console.debug('custom tool values', values); \\n var block = '';\\n var color = '/CCCCCC/969696/';\\n var text = 'PRODUCT+IMAGE'\\n if(values.boxType == 'C') {\\n console.debug('values', values);\\n console.debug('selected product category', values.productCategory);\\n var c = (values.productCategory || '%DEFAULT_CATEGORY%').substring(0,6)\\n color = `/${c}/${chooseTextColor(c)}/`;\\n text = 'CATEGORY+PRODUCT'\\n } else if(values.boxType == 'N') {\\n color = `/FFFF00/FF0000/`;\\n text = 'NEW+PRODUCT';\\n }\\n if(values.imageEnable) { \\n block+= `\\n `;\\n }\\n if(values.nameEnable) {\\n block+=getTextContainerRender('name', values, `%NAME%`, null);\\n }\\n if(values.originalPriceEnable) {\\n block+=getTextContainerRender('originalPrice', values, `%ORIGINAL_PRICE%`, 1);\\n }\\n if(values.priceEnable) {\\n block+=`%PRICE%
`\\n }\\n if(values.saleEnable) {\\n block+=getTextContainerRender('sale', values, `%SALE%`, 1);\\n }\\n if(values.descEnable) {\\n block+=getTextContainerRender('desc', values, `%DESCRIPTION%`);\\n }\\n if(values.buttonEnable) {\\n block += getDroiButton(values);\\n }\\n return block;\\n },\\n }),\\n exporters: {\\n email: function (values) {\\n // effectively cannot be used, too complicated\\n //console.debug('unlayer object', unlayer);\\n var block = '';\\n\\n if(values.imageEnable) { \\n block+=`\\n `;\\n }\\n\\n if(values.nameEnable) {\\n block+=getTextContainerEmail('name', values, `{{ PRODUCT_NAME${getSuffix(values)} }}`, null);\\n }\\n if(values.originalPriceEnable) {\\n block+=getTextContainerEmail('originalPrice', values, `{{ PRODUCT_ORIGINAL_PRICE${getSuffix(values)} }}`, 1);\\n }\\n if(values.priceEnable) {\\n block+=`{{ PRODUCT_PRICE${getSuffix(values)} }}
`\\n }\\n if(values.saleEnable) {\\n block+=getTextContainerEmail('sale', values, `{{ PRODUCT_SALE${getSuffix(values)} }}`, 1);\\n }\\n \\n if(values.descEnable) {\\n block+=getTextContainerEmail('desc', values, `{{ PRODUCT_DESCRIPTION${getSuffix(values)} }}`);\\n }\\n if(values.buttonEnable) {\\n block += getDroiButton(values);\\n }\\n\\n return block;\\n },\\n },\\n head: {\\n css: function (values) { return `\\n.dreamroi-text-container a {\\n text-decoration: none\\n}\\n\\n@media (max-width: 620px) {\\n .dreamroi-image-container {\\n height: auto !important;\\n }\\n .dreamroi-image {\\n width: ${values.mobileWidth || 100}% !important;\\n max-height: none !important;\\n }\\n\\n .dreamroi-text-container {\\n height: auto !important;\\n overflow: visible !important;\\n }\\n\\n .dreamroi-button {\\n width: 100% !important;\\n }\\n}`},\\n js: function (values) {},\\n },\\n },\\n });\\n \\n\\n //console.log('Custom script completed');\";","import toolsScript from 'raw-loader!./unlayer-product-image.js.raw'\n//console.debug('toolsScript', toolsScript);\n/*\nconst column = {\n \"contents\": [{\n \"type\": \"custom\",\n \"slug\": \"dreamroi_product_image\",\n \"values\": {\n \"height\": \"200\",\n \"containerPadding\": \"5px\",\n \"_meta\": {\n \"htmlClassNames\": \"u_content_custom_dreamroi_product_image\"\n },\n \"selectable\": true,\n \"draggable\": true,\n \"duplicatable\": true,\n \"deletable\": true,\n \"hideable\": true\n }\n }, {\n \"type\": \"text\",\n \"values\": {\n \"containerPadding\": \"5px\",\n \"color\": \"#000000\",\n \"textAlign\": \"left\",\n \"lineHeight\": \"140%\",\n \"linkStyle\": {\n \"inherit\": true,\n \"linkColor\": \"#0000ee\",\n \"linkHoverColor\": \"#0000ee\",\n \"linkUnderline\": true,\n \"linkHoverUnderline\": true\n },\n \"_meta\": {\n \"htmlClassNames\": \"u_content_text\"\n },\n \"selectable\": true,\n \"draggable\": true,\n \"duplicatable\": true,\n \"deletable\": true,\n \"text\": \"{{ PRODUCT_NAME }}
{{ PRODUCT_PRICE }}
{{ PRODUCT_SALE }}%
\"\n }\n }, {\n \"type\": \"button\",\n \"values\": {\n \"containerPadding\": \"10px\",\n \"href\": {\n \"name\": \"web\",\n \"attrs\": {\n \"href\": \"{{href}}\",\n \"target\": \"{{target}}\"\n },\n \"values\": {\n \"href\": \"{{ PRODUCT_URLBTN }}\",\n \"target\": \"_blank\"\n }\n },\n \"buttonColors\": {\n \"color\": \"#FFFFFF\",\n \"backgroundColor\": \"#000000\",\n \"hoverColor\": \"#FFFFFF\",\n \"hoverBackgroundColor\": \"#3AAEE0\"\n },\n \"size\": {\n \"autoWidth\": true,\n \"width\": \"100%\"\n },\n \"textAlign\": \"center\",\n \"lineHeight\": \"120%\",\n \"padding\": \"10px 20px\",\n \"border\": {},\n \"borderRadius\": \"4px\",\n \"_meta\": {\n \"htmlClassNames\": \"u_content_button\"\n },\n \"selectable\": true,\n \"draggable\": true,\n \"duplicatable\": true,\n \"deletable\": true,\n \"text\": \"KOUPIT\",\n \"calculatedWidth\": 92,\n \"calculatedHeight\": 36\n }\n }],\n \"values\": {\n \"_meta\": {\n \"htmlClassNames\": \"u_column\"\n }\n }\n};\n\nconst block = (columns, tags) => {\n return {\n \"category\": \"DreamROI\",\n \"tags\": tags,\n \"data\": {\n \"cells\": Array(columns).fill(1),\n \"columns\": Array(columns).fill(column),\n \"values\": {\n \"displayCondition\": null,\n \"columns\": false,\n \"backgroundColor\": \"\",\n \"columnsBackgroundColor\": \"\",\n \"backgroundImage\": {\n \"url\": \"\",\n \"fullWidth\": true,\n \"repeat\": false,\n \"center\": true,\n \"cover\": false\n },\n \"padding\": \"20px 0px\",\n \"hideDesktop\": false,\n \"_meta\": {\n \"htmlClassNames\": \"u_row\"\n },\n \"selectable\": true,\n \"draggable\": true,\n \"duplicatable\": true,\n \"deletable\": true\n }\n },\n \"displayMode\": \"email\"\n }\n}\n*/\nexport default (i18n, productCategories) => {\n //TODO remove condition\n let cjs = parseInt(process.env.VUE_APP_UNLAYER_CUSTOM_TOOL) ? toolsScript : '';\n Object.keys(i18n).forEach(t => cjs = cjs.replace(new RegExp(`%${t.toUpperCase()}%`, 'g'), i18n[t]));\n let boxTypeOptions = [\n {\n label: i18n['box_rec'],\n value: 'R'\n },\n {\n label: i18n['box_new'],\n value: 'N'\n }\n ];\n if(productCategories.length > 0) {\n cjs = cjs.replace(/%DEFAULT_CATEGORY%/g, productCategories[0].value);\n console.log('customjs',cjs);\n boxTypeOptions.push({\n label: i18n['box_cat'],\n value: 'C'\n });\n }\n \n return {\n customJS: [ cjs ], //'http://localhost:8080/unlayer/unlayer-product-image.js', //[`console.log('Custom JS called!')`], //'//unlayer/unlayer-product-image.js',\n tools: {\n 'custom#dreamroi_product_image': {\n properties: {\n boxType: {\n editor: {\n data: {\n options: boxTypeOptions\n }\n }\n },\n productCategory: {\n editor: {\n data: {\n options: productCategories\n }\n }\n }\n }\n }\n }, \n mergeTags: {\n productName: {\n name: \"Product name\",\n value: \"{{ PRODUCT_NAME }}\",\n sample: \"Product name\"\n },\n productImage: {\n name: \"Product image URL\",\n value: \"{{ PRODUCT_IMAGE }}\",\n sample: \"https://via.placeholder.com/200x200?text=PRODUCT+IMAGE\"\n },\n productDescription: {\n name: \"Product description\",\n value: \"{{ PRODUCT_DESCRIPTION }}\",\n sample: \"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Duis viverra diam non justo. Nam sed tellus id magna elementum tincidunt. Etiam bibendum elit eget erat.\"\n },\n productPrice: {\n name: \"Product price\",\n value: \"{{ PRODUCT_PRICE }}\",\n sample: \"$99.99\"\n },\n productSale: {\n name: \"Product sale (%)\",\n value: \"{{ PRODUCT_SALE }}\",\n sample: \"50\"\n },\n productOriginalPrice: {\n name: \"Original product price\",\n value: \"{{ PRODUCT_ORIGINAL_PRICE }}\",\n sample: \"$199.99\"\n },\n },\n specialLinks: [\n {\n name: 'Unsubscribe',\n href: '{{ UNSUBSCRIBE }}',\n target: '_self',\n },\n {\n name: 'Product link',\n href: '{{ PRODUCT_URL }}',\n target: '_self',\n },\n {\n name: 'Product link (for button)',\n href: '{{ PRODUCT_URLBTN }}',\n target: '_self',\n },\n {\n name: 'Product link (for image)',\n href: '{{ PRODUCT_URLIMG }}',\n target: '_self',\n },\n ],\n /*\n blocks: [\n block(1, ['Produkt', '1 sloupec']),\n block(2, ['Produkt', '2 sloupce']),\n block(3, ['Produkt', '3 sloupce']),\n block(4, ['Produkt', '4 sloupce'])\n ]\n */\n}}","\n \n \n
\n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NewsletterEditor.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./NewsletterEditor.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./NewsletterEditor.vue?vue&type=template&id=f58ede8a&\"\nimport script from \"./NewsletterEditor.vue?vue&type=script&lang=js&\"\nexport * from \"./NewsletterEditor.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-row',{attrs:{\"no-gutters\":\"\"}},[_c('v-tabs',{attrs:{\"grow\":\"\",\"icons-and-text\":\"\"},model:{value:(_vm.tabs),callback:function ($$v) {_vm.tabs=$$v},expression:\"tabs\"}},[(_vm.hasCopyableVariants)?_c('v-tab',{attrs:{\"id\":\"pfid1665223185\",\"href\":\"#variants\"}},[_vm._v(_vm._s(_vm.$t('campaigns.design.copyVariant.title'))+\" \"),_c('v-icon',[_vm._v(\"$variants\")])],1):_vm._e(),_c('v-tab',{attrs:{\"id\":\"pfid1618820650\",\"href\":\"#templates\"}},[_vm._v(_vm._s(_vm.$t('campaigns.design.templates.title'))+\" \"),_c('v-icon',[_vm._v(\"$templateGallery\")])],1),_c('v-tab',{attrs:{\"id\":\"pfid1618820653\",\"href\":\"#existing\"}},[_vm._v(_vm._s(_vm.$t('campaigns.design.existing.title'))+\" \"),_c('v-icon',[_vm._v(\"$copy\")])],1)],1),_c('v-col',{attrs:{\"cols\":\"12\"}},[_c('v-tabs-items',{model:{value:(_vm.tabs),callback:function ($$v) {_vm.tabs=$$v},expression:\"tabs\"}},[(_vm.hasCopyableVariants)?_c('v-tab-item',{staticClass:\"pfcl1619000505\",attrs:{\"value\":\"variants\"}},[_c('v-row',_vm._l((_vm.copyableVariants),function(d){return _c('v-col',{key:d.id,attrs:{\"cols\":\"12\",\"sm\":\"6\",\"md\":\"4\",\"lg\":\"4\",\"xl\":\"3\"}},[_c('v-card',{staticClass:\"fill-height\",attrs:{\"link\":\"\"},on:{\"click\":function($event){return _vm.duplicateVariantDesign(d)}}},[_c('campaign-preview',{attrs:{\"html\":d.preview,\"columns\":_vm.previewColumns}}),_c('v-card-title',{staticClass:\"justify-center\"},[_c('v-icon',{attrs:{\"color\":d.active? 'success' : 'grey'}},[_vm._v(\"$campaignVariant\"+_vm._s(d.name))])],1)],1)],1)}),1)],1):_vm._e(),_c('v-tab-item',{staticClass:\"pfcl1619000498\",attrs:{\"value\":\"templates\"}},[(_vm.templates)?_c('v-row',[_vm._l((_vm.templates),function(t){return _c('v-col',{key:t.id,attrs:{\"cols\":\"12\",\"sm\":\"6\",\"md\":\"4\",\"lg\":\"4\",\"xl\":\"3\"}},[_c('v-card',{staticClass:\"fill-height\",attrs:{\"link\":\"\"},on:{\"click\":function($event){return _vm.selectTemplate(t.id)}}},[_c('v-img',{attrs:{\"src\":t.preview}}),_c('v-card-title',[_vm._v(_vm._s(t.name))])],1)],1)}),(_vm.templatesNextToken)?_c('v-col',{attrs:{\"cols\":\"12\"}},[_c('v-btn',{attrs:{\"color\":\"primary\"},on:{\"click\":_vm.loadTemplates}},[_c('v-icon',{attrs:{\"left\":\"\"}},[_vm._v(\"$refresh\")]),_vm._v(_vm._s(_vm.$t('common.loadMore')))],1)],1):_vm._e()],2):_vm._e()],1),_c('v-tab-item',{staticClass:\"pfcl1619000505\",attrs:{\"value\":\"existing\"}},[_c('v-row',[_vm._l((_vm.existingDesigns),function(d){return _c('v-col',{key:d.id,attrs:{\"cols\":\"12\",\"sm\":\"6\",\"md\":\"4\",\"lg\":\"4\",\"xl\":\"3\"}},[_c('v-card',{staticClass:\"fill-height\",attrs:{\"link\":\"\"},on:{\"click\":function($event){return _vm.duplicateVariantDesign(d)}}},[_c('campaign-preview',{attrs:{\"html\":d.preview,\"columns\":_vm.previewColumns}}),_c('v-card-title',[_c('v-icon',{attrs:{\"left\":\"\",\"color\":_vm.getCampaignStateColor(d.campaign.state)}},[_vm._v(_vm._s(_vm.edIcon(d.campaign.scheduleType)))]),_vm._v(_vm._s(d.campaign.domain.name)+\" – \"+_vm._s(d.campaign.name)+\" \"),_c('v-icon',[_vm._v(\"$campaignVariant\"+_vm._s(d.name))])],1)],1)],1)}),_vm._l((_vm.existingDesignsLegacy),function(d){return _c('v-col',{key:d.id,attrs:{\"cols\":\"12\",\"sm\":\"6\",\"md\":\"4\",\"lg\":\"4\",\"xl\":\"3\"}},[_c('v-card',{staticClass:\"fill-height\",attrs:{\"link\":\"\"},on:{\"click\":function($event){return _vm.duplicateDesign(d)}}},[_c('campaign-preview',{attrs:{\"html\":d.preview,\"columns\":_vm.previewColumns}}),_c('v-card-title',[_c('v-icon',{attrs:{\"left\":\"\",\"color\":_vm.getCampaignStateColor(d.state)}},[_vm._v(_vm._s(_vm.edIcon(d.scheduleType)))]),_vm._v(_vm._s(d.domain.name)+\" – \"+_vm._s(d.name))],1)],1)],1)})],2)],1)],1)],1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n \n \n \n {{$t('campaigns.design.copyVariant.title')}} $variants\n {{$t('campaigns.design.templates.title')}} $templateGallery\n {{$t('campaigns.design.existing.title')}} $copy\n \n\n \n \n \n \n \n \n \n \n \n \n $campaignVariant{{d.name}}\n \n \n \n \n \n \n \n \n \n \n {{ t.name }}\n \n \n \n $refresh{{$t('common.loadMore')}}\n \n \n \n \n \n \n \n \n \n {{ edIcon(d.campaign.scheduleType) }}{{ d.campaign.domain.name }} – {{ d.campaign.name }} $campaignVariant{{d.name}}\n \n \n \n \n \n {{ edIcon(d.scheduleType) }}{{ d.domain.name }} – {{ d.name }}\n \n \n \n \n \n \n \n\n","import mod from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplateSelector.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./TemplateSelector.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./TemplateSelector.vue?vue&type=template&id=9bb1bb7c&\"\nimport script from \"./TemplateSelector.vue?vue&type=script&lang=js&\"\nexport * from \"./TemplateSelector.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VBtn } from 'vuetify/lib/components/VBtn';\nimport { VCard } from 'vuetify/lib/components/VCard';\nimport { VCardTitle } from 'vuetify/lib/components/VCard';\nimport { VCol } from 'vuetify/lib/components/VGrid';\nimport { VIcon } from 'vuetify/lib/components/VIcon';\nimport { VImg } from 'vuetify/lib/components/VImg';\nimport { VRow } from 'vuetify/lib/components/VGrid';\nimport { VTab } from 'vuetify/lib/components/VTabs';\nimport { VTabItem } from 'vuetify/lib/components/VTabs';\nimport { VTabs } from 'vuetify/lib/components/VTabs';\nimport { VTabsItems } from 'vuetify/lib/components/VTabs';\ninstallComponents(component, {VBtn,VCard,VCardTitle,VCol,VIcon,VImg,VRow,VTab,VTabItem,VTabs,VTabsItems})\n","import {mapState} from \"vuex\";\n\nexport default {\n data() {\n return {\n cancel: false\n }\n },\n computed: {\n step() {\n return this.$store.getters['ui/step'](this.$route.name);\n },\n displayStep() {\n return this.step + 1;\n },\n wizardType() {\n return this.$store.getters['ui/wizardType'](this.$route.name);\n },\n wizardEntryPoint() {\n return this.$store.getters['ui/wizardEntryPoint'](this.$route.name);\n },\n currentWizard() {\n return this.wizards[this.wizardType];\n },\n isLastStep() {\n return this.$store.getters['ui/nextStep'](this.$route.name) == null;\n },\n ...mapState('ui',['wizard', 'wizards', 'drawerHidden', 'lastEditableStep'])\n },\n methods: {\n nextStep(params) {\n let name = this.$store.getters['ui/nextStep'](this.$route.name);\n let route;\n if(name === true) {\n route = this.wizardEntryPoint;\n } else {\n let p = params || this.wizardParams;\n route = { name, params: p };\n }\n this.$router.push(route);\n },\n changeStep(event, params) {\n let p = params || this.wizardParams;\n var route = { name: this.wizards[this.wizardType][event.index].route, params: p };\n this.$router.push(route);\n },\n cancelWizard() {\n //var route = { name };\n // save before leave\n /*\n if(!discard && this.save && typeof(this.save) === 'function') {\n await this.save();\n }\n */\n var route = this.wizardEntryPoint;\n console.debug(`cancel called, going to route`, route);\n this.cancel = true;\n this.$router.push(route);\n },\n\n cancelWizardR(to) {\n let newWizard = this.$store.getters['ui/wizardType'](to.name);\n let exitingWizard = newWizard != this.wizardType && this.wizardType != null;\n //console.debug('sameWizard', sameWizard);\n if(this.cancel || exitingWizard) {\n this.$store.commit('ui/dynamicEntryPoint', {value: null});\n this.$store.commit('ui/wizard', {value: false});\n }\n },\n\n exitWizard() {\n console.debug('Exiting wizard...');\n this.$store.commit('ui/dynamicEntryPoint', {value: null});\n if(this.wizard) {\n this.$store.commit('ui/wizard', {value: false});\n }\n },\n wizardLifecycleControl() {\n console.debug('Wizard lifecycle control:');\n //if(this.wizard && this.drawerHidden && !this.isLastStep) {\n //console.debug('entering wizard...');\n \n setTimeout(() => { \n console.debug(`Checking drawer state: ${this.wizard} ${this.drawerHidden} ${this.drawer}`); \n if(this.wizard && this.drawerHidden && !this.isLastStep && this.drawer) { \n console.debug('Hiding drawer...'); this.drawer = false; \n } \n }, 500);\n //}\n /*\n else if(this.wizard && this.isLastStep) {\n console.debug('last step, exiting...');\n this.exitWizard();\n }\n */\n },\n setLastEditableStep() {\n if(!this.lastEditableStep || this.lastEditableStep < this.step) {\n this.$store.commit('ui/lastEditableStep', { value: this.step });\n }\n },\n },\n beforeRouteUpdate(to, from, next) {\n this.cancelWizardR(to); \n next();\n },\n beforeRouteLeave(to, from, next) {\n this.cancelWizardR(to); \n next();\n },\n}","module.exports = __webpack_public_path__ + \"img/9.0a987776.jpg\";","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('v-container',{attrs:{\"fluid\":\"\"}},[(_vm.item && _vm.campaign && _vm.productCategories)?_c('field-form',{attrs:{\"saving\":_vm.saving,\"wizard\":_vm.wizard,\"wizardSteps\":_vm.currentWizard,\"step\":_vm.displayStep,\"last-editable-step\":_vm.lastEditableStep,\"allow-editable\":true},on:{\"save\":_vm.save,\"cancel\":function($event){return _vm.cancelWizard()},\"click-step\":_vm.changeStep}},[_c('v-toolbar',{staticClass:\"mb-1\",attrs:{\"dense\":\"\"}},[_c('v-toolbar-title',{staticClass:\"mr-1\",staticStyle:{\"overflow\":\"visible\"}},[_vm._v(_vm._s(_vm.$t('campaigns.design.variants.title')))]),_c('v-tabs',[_vm._l((_vm.variants),function(t,i){return _c('v-tab',{key:(\"contentVariant\" + i),attrs:{\"to\":{name: 'campaign-design-email-variant', params: { variant: t.id } }}},[_c('v-icon',{attrs:{\"color\":t.color}},[_vm._v(_vm._s(t.icon))])],1)}),_c('action-button',{attrs:{\"disabled\":_vm.variants.length >= 26,\"icon\":\"$add\",\"tooltip\":_vm.$t('campaigns.design.variants.add'),\"loading\":_vm.creating},on:{\"click\":_vm.addVariant}})],2),_c('v-divider',{staticClass:\"mr-3\",attrs:{\"vertical\":\"\"}}),_c('v-text-field',{staticStyle:{\"width\":\"600px\"},attrs:{\"label\":_vm.$t('campaigns.design.variants.subject'),\"prepend-icon\":\"$subject\",\"single-line\":\"\",\"hide-details\":\"\"},model:{value:(_vm.fields.subject),callback:function ($$v) {_vm.$set(_vm.fields, \"subject\", $$v)},expression:\"fields.subject\"}}),_c('v-switch',{attrs:{\"hide-details\":\"\",\"label\":_vm.$t('campaigns.design.variants.active')},model:{value:(_vm.fields.active),callback:function ($$v) {_vm.$set(_vm.fields, \"active\", $$v)},expression:\"fields.active\"}})],1),(!_vm.fields.templateUnlayer)?[_c('template-selector',{key:_vm.item.id,attrs:{\"variants\":\"\",\"campaign\":_vm.campaign.id},on:{\"select\":_vm.selectTemplate}})]:[_c('newsletter-editor',{key:_vm.item.id,ref:\"editor\",staticClass:\"mb-3\",attrs:{\"height\":_vm.height,\"campaign\":_vm.campaign.id,\"newsletter\":_vm.fields.templateUnlayer,\"html\":_vm.htmltemplate,\"text\":_vm.texttemplate,\"valid\":_vm.valid,\"specs\":_vm.fields.templateSpecs,\"specsNew\":_vm.fields.templateSpecsNew,\"specsCategories\":_vm.fields.templateSpecsCategories,\"unsubscribe\":_vm.unsubscribe,\"dnsName\":_vm.campaign.domain.dnsName,\"productCategories\":_vm.productCategories},on:{\"update:html\":function($event){_vm.htmltemplate=$event},\"update:text\":function($event){_vm.texttemplate=$event},\"update:valid\":function($event){_vm.valid=$event},\"update:specs\":function($event){return _vm.$set(_vm.fields, \"templateSpecs\", $event)},\"update:specsNew\":function($event){return _vm.$set(_vm.fields, \"templateSpecsNew\", $event)},\"update:specs-new\":function($event){return _vm.$set(_vm.fields, \"templateSpecsNew\", $event)},\"update:specsCategories\":function($event){return _vm.$set(_vm.fields, \"templateSpecsCategories\", $event)},\"update:specs-categories\":function($event){return _vm.$set(_vm.fields, \"templateSpecsCategories\", $event)},\"update:unsubscribe\":function($event){_vm.unsubscribe=$event},\"save\":_vm.updateTemplate}})],_c('confirm-dialog',{attrs:{\"title\":\"dialog.unsaved.title\",\"button-caption\":\"dialog.leave\"},on:{\"confirm\":function($event){return _vm.confirmLeave(true)},\"cancel\":function($event){return _vm.confirmLeave(false)}},model:{value:(_vm.leaveDialog),callback:function ($$v) {_vm.leaveDialog=$$v},expression:\"leaveDialog\"}},[_vm._v(\" \"+_vm._s(_vm.$t('dialog.unsaved.text'))+\" \")])],2):_c('v-card',{staticClass:\"mb-3\"},[_c('v-card-text',[_c('v-row',[_c('v-col',{attrs:{\"cols\":\"9\"}},[_c('v-row',_vm._l(([0,1,2,3,4,5,6,7,8,9,10,11]),function(i){return _c('v-col',{key:i,attrs:{\"cols\":\"12\",\"sm\":\"6\",\"md\":\"4\",\"lg\":\"3\",\"xl\":\"2\"}},[_c('v-skeleton-loader',{attrs:{\"type\":\"image\"}})],1)}),1)],1),_c('v-col',{attrs:{\"cols\":\"3\"}},[_c('v-skeleton-loader',{staticClass:\"mb-1\",attrs:{\"type\":\"list-item-avatar@3\"}}),_c('v-skeleton-loader',{staticClass:\"mb-1\",attrs:{\"type\":\"actions\"}}),_c('v-skeleton-loader',{staticClass:\"mb-1\",attrs:{\"type\":\"list-item-avatar@3\"}}),_c('v-skeleton-loader',{staticClass:\"mb-1\",attrs:{\"type\":\"actions\"}})],1)],1)],1)],1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n \n \n \n \n {{ $t('campaigns.design.variants.title') }}\n \n \n \n {{ t.icon }}\n \n = 26\" icon=\"$add\" :tooltip=\"$t('campaigns.design.variants.add')\" @click=\"addVariant\" :loading=\"creating\" />\n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n {{ $t('dialog.unsaved.text') }}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n","import mod from \"-!../../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Design.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/cache-loader/dist/cjs.js??ref--13-0!../../../../../node_modules/thread-loader/dist/cjs.js!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/cache-loader/dist/cjs.js??ref--1-0!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Design.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Design.vue?vue&type=template&id=d529df48&\"\nimport script from \"./Design.vue?vue&type=script&lang=js&\"\nexport * from \"./Design.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports\n\n/* vuetify-loader */\nimport installComponents from \"!../../../../../node_modules/vuetify-loader/lib/runtime/installComponents.js\"\nimport { VCard } from 'vuetify/lib/components/VCard';\nimport { VCardText } from 'vuetify/lib/components/VCard';\nimport { VCol } from 'vuetify/lib/components/VGrid';\nimport { VContainer } from 'vuetify/lib/components/VGrid';\nimport { VDivider } from 'vuetify/lib/components/VDivider';\nimport { VIcon } from 'vuetify/lib/components/VIcon';\nimport { VRow } from 'vuetify/lib/components/VGrid';\nimport { VSkeletonLoader } from 'vuetify/lib/components/VSkeletonLoader';\nimport { VSwitch } from 'vuetify/lib/components/VSwitch';\nimport { VTab } from 'vuetify/lib/components/VTabs';\nimport { VTabs } from 'vuetify/lib/components/VTabs';\nimport { VTextField } from 'vuetify/lib/components/VTextField';\nimport { VToolbar } from 'vuetify/lib/components/VToolbar';\nimport { VToolbarTitle } from 'vuetify/lib/components/VToolbar';\ninstallComponents(component, {VCard,VCardText,VCol,VContainer,VDivider,VIcon,VRow,VSkeletonLoader,VSwitch,VTab,VTabs,VTextField,VToolbar,VToolbarTitle})\n","module.exports = __webpack_public_path__ + \"img/8.80821188.jpg\";","'use strict';\n/* eslint-disable es/no-string-prototype-matchall -- safe */\nvar $ = require('../internals/export');\nvar createIteratorConstructor = require('../internals/create-iterator-constructor');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar toLength = require('../internals/to-length');\nvar toString = require('../internals/to-string');\nvar aFunction = require('../internals/a-function');\nvar anObject = require('../internals/an-object');\nvar classof = require('../internals/classof-raw');\nvar isRegExp = require('../internals/is-regexp');\nvar getRegExpFlags = require('../internals/regexp-flags');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar speciesConstructor = require('../internals/species-constructor');\nvar advanceStringIndex = require('../internals/advance-string-index');\nvar InternalStateModule = require('../internals/internal-state');\nvar IS_PURE = require('../internals/is-pure');\n\nvar MATCH_ALL = wellKnownSymbol('matchAll');\nvar REGEXP_STRING = 'RegExp String';\nvar REGEXP_STRING_ITERATOR = REGEXP_STRING + ' Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(REGEXP_STRING_ITERATOR);\nvar RegExpPrototype = RegExp.prototype;\nvar regExpBuiltinExec = RegExpPrototype.exec;\nvar nativeMatchAll = ''.matchAll;\n\nvar WORKS_WITH_NON_GLOBAL_REGEX = !!nativeMatchAll && !fails(function () {\n 'a'.matchAll(/./);\n});\n\nvar regExpExec = function (R, S) {\n var exec = R.exec;\n var result;\n if (typeof exec == 'function') {\n result = exec.call(R, S);\n if (typeof result != 'object') throw TypeError('Incorrect exec result');\n return result;\n } return regExpBuiltinExec.call(R, S);\n};\n\n// eslint-disable-next-line max-len -- ignore\nvar $RegExpStringIterator = createIteratorConstructor(function RegExpStringIterator(regexp, string, global, fullUnicode) {\n setInternalState(this, {\n type: REGEXP_STRING_ITERATOR,\n regexp: regexp,\n string: string,\n global: global,\n unicode: fullUnicode,\n done: false\n });\n}, REGEXP_STRING, function next() {\n var state = getInternalState(this);\n if (state.done) return { value: undefined, done: true };\n var R = state.regexp;\n var S = state.string;\n var match = regExpExec(R, S);\n if (match === null) return { value: undefined, done: state.done = true };\n if (state.global) {\n if (toString(match[0]) === '') R.lastIndex = advanceStringIndex(S, toLength(R.lastIndex), state.unicode);\n return { value: match, done: false };\n }\n state.done = true;\n return { value: match, done: false };\n});\n\nvar $matchAll = function (string) {\n var R = anObject(this);\n var S = toString(string);\n var C, flagsValue, flags, matcher, global, fullUnicode;\n C = speciesConstructor(R, RegExp);\n flagsValue = R.flags;\n if (flagsValue === undefined && R instanceof RegExp && !('flags' in RegExpPrototype)) {\n flagsValue = getRegExpFlags.call(R);\n }\n flags = flagsValue === undefined ? '' : toString(flagsValue);\n matcher = new C(C === RegExp ? R.source : R, flags);\n global = !!~flags.indexOf('g');\n fullUnicode = !!~flags.indexOf('u');\n matcher.lastIndex = toLength(R.lastIndex);\n return new $RegExpStringIterator(matcher, S, global, fullUnicode);\n};\n\n// `String.prototype.matchAll` method\n// https://tc39.es/ecma262/#sec-string.prototype.matchall\n$({ target: 'String', proto: true, forced: WORKS_WITH_NON_GLOBAL_REGEX }, {\n matchAll: function matchAll(regexp) {\n var O = requireObjectCoercible(this);\n var flags, S, matcher, rx;\n if (regexp != null) {\n if (isRegExp(regexp)) {\n flags = toString(requireObjectCoercible('flags' in RegExpPrototype\n ? regexp.flags\n : getRegExpFlags.call(regexp)\n ));\n if (!~flags.indexOf('g')) throw TypeError('`.matchAll` does not allow non-global regexes');\n }\n if (WORKS_WITH_NON_GLOBAL_REGEX) return nativeMatchAll.apply(O, arguments);\n matcher = regexp[MATCH_ALL];\n if (matcher === undefined && IS_PURE && classof(regexp) == 'RegExp') matcher = $matchAll;\n if (matcher != null) return aFunction(matcher).call(regexp, O);\n } else if (WORKS_WITH_NON_GLOBAL_REGEX) return nativeMatchAll.apply(O, arguments);\n S = toString(O);\n rx = new RegExp(regexp, 'g');\n return IS_PURE ? $matchAll.call(rx, S) : rx[MATCH_ALL](S);\n }\n});\n\nIS_PURE || MATCH_ALL in RegExpPrototype || createNonEnumerableProperty(RegExpPrototype, MATCH_ALL, $matchAll);\n","module.exports = __webpack_public_path__ + \"img/10.19a3fd24.jpg\";","// Directives\nimport ripple from '../../directives/ripple'\n\n// Types\nimport Vue, { VNode, VNodeData, VNodeDirective } from 'vue'\n\nexport default Vue.extend({\n name: 'rippleable',\n\n directives: { ripple },\n\n props: {\n ripple: {\n type: [Boolean, Object],\n default: true,\n },\n },\n\n methods: {\n genRipple (data: VNodeData = {}): VNode | null {\n if (!this.ripple) return null\n\n data.staticClass = 'v-input--selection-controls__ripple'\n\n data.directives = data.directives || []\n data.directives.push({\n name: 'ripple',\n value: { center: true },\n } as VNodeDirective)\n\n return this.$createElement('div', data)\n },\n },\n})\n","// Components\nimport VInput from '../../components/VInput'\n\n// Mixins\nimport Rippleable from '../rippleable'\nimport Comparable from '../comparable'\n\n// Utilities\nimport mixins from '../../util/mixins'\n\nexport function prevent (e: Event) {\n e.preventDefault()\n}\n\n/* @vue/component */\nexport default mixins(\n VInput,\n Rippleable,\n Comparable\n).extend({\n name: 'selectable',\n\n model: {\n prop: 'inputValue',\n event: 'change',\n },\n\n props: {\n id: String,\n inputValue: null as any,\n falseValue: null as any,\n trueValue: null as any,\n multiple: {\n type: Boolean,\n default: null,\n },\n label: String,\n },\n\n data () {\n return {\n hasColor: this.inputValue,\n lazyValue: this.inputValue,\n }\n },\n\n computed: {\n computedColor (): string | undefined {\n if (!this.isActive) return undefined\n if (this.color) return this.color\n if (this.isDark && !this.appIsDark) return 'white'\n return 'primary'\n },\n isMultiple (): boolean {\n return this.multiple === true || (this.multiple === null && Array.isArray(this.internalValue))\n },\n isActive (): boolean {\n const value = this.value\n const input = this.internalValue\n\n if (this.isMultiple) {\n if (!Array.isArray(input)) return false\n\n return input.some(item => this.valueComparator(item, value))\n }\n\n if (this.trueValue === undefined || this.falseValue === undefined) {\n return value\n ? this.valueComparator(value, input)\n : Boolean(input)\n }\n\n return this.valueComparator(input, this.trueValue)\n },\n isDirty (): boolean {\n return this.isActive\n },\n rippleState (): string | undefined {\n return !this.isDisabled && !this.validationState\n ? undefined\n : this.validationState\n },\n },\n\n watch: {\n inputValue (val) {\n this.lazyValue = val\n this.hasColor = val\n },\n },\n\n methods: {\n genLabel () {\n const label = VInput.options.methods.genLabel.call(this)\n\n if (!label) return label\n\n label!.data!.on = {\n // Label shouldn't cause the input to focus\n click: prevent,\n }\n\n return label\n },\n genInput (type: string, attrs: object) {\n return this.$createElement('input', {\n attrs: Object.assign({\n 'aria-checked': this.isActive.toString(),\n disabled: this.isDisabled,\n id: this.computedId,\n role: type,\n type,\n }, attrs),\n domProps: {\n value: this.value,\n checked: this.isActive,\n },\n on: {\n blur: this.onBlur,\n change: this.onChange,\n focus: this.onFocus,\n keydown: this.onKeydown,\n click: prevent,\n },\n ref: 'input',\n })\n },\n onClick (e: Event) {\n this.onChange()\n this.$emit('click', e)\n },\n onChange () {\n if (!this.isInteractive) return\n\n const value = this.value\n let input = this.internalValue\n\n if (this.isMultiple) {\n if (!Array.isArray(input)) {\n input = []\n }\n\n const length = input.length\n\n input = input.filter((item: any) => !this.valueComparator(item, value))\n\n if (input.length === length) {\n input.push(value)\n }\n } else if (this.trueValue !== undefined && this.falseValue !== undefined) {\n input = this.valueComparator(input, this.trueValue) ? this.falseValue : this.trueValue\n } else if (value) {\n input = this.valueComparator(input, value) ? null : value\n } else {\n input = !input\n }\n\n this.validate(true, input)\n this.internalValue = input\n this.hasColor = input\n },\n onFocus (e: FocusEvent) {\n this.isFocused = true\n this.$emit('focus', e)\n },\n onBlur (e: FocusEvent) {\n this.isFocused = false\n this.$emit('blur', e)\n },\n /** @abstract */\n onKeydown (e: Event) {},\n },\n})\n","// Styles\nimport '../../styles/components/_selection-controls.sass'\nimport './VSwitch.sass'\n\n// Mixins\nimport Selectable from '../../mixins/selectable'\nimport VInput from '../VInput'\n\n// Directives\nimport Touch from '../../directives/touch'\n\n// Components\nimport { VFabTransition } from '../transitions'\nimport VProgressCircular from '../VProgressCircular/VProgressCircular'\n\n// Helpers\nimport { keyCodes } from '../../util/helpers'\n\n// Types\nimport { VNode, VNodeData } from 'vue'\n\n/* @vue/component */\nexport default Selectable.extend({\n name: 'v-switch',\n\n directives: { Touch },\n\n props: {\n inset: Boolean,\n loading: {\n type: [Boolean, String],\n default: false,\n },\n flat: {\n type: Boolean,\n default: false,\n },\n },\n\n computed: {\n classes (): object {\n return {\n ...VInput.options.computed.classes.call(this),\n 'v-input--selection-controls v-input--switch': true,\n 'v-input--switch--flat': this.flat,\n 'v-input--switch--inset': this.inset,\n }\n },\n attrs (): object {\n return {\n 'aria-checked': String(this.isActive),\n 'aria-disabled': String(this.isDisabled),\n role: 'switch',\n }\n },\n // Do not return undefined if disabled,\n // according to spec, should still show\n // a color when disabled and active\n validationState (): string | undefined {\n if (this.hasError && this.shouldValidate) return 'error'\n if (this.hasSuccess) return 'success'\n if (this.hasColor !== null) return this.computedColor\n return undefined\n },\n switchData (): VNodeData {\n return this.setTextColor(this.loading ? undefined : this.validationState, {\n class: this.themeClasses,\n })\n },\n },\n\n methods: {\n genDefaultSlot (): (VNode | null)[] {\n return [\n this.genSwitch(),\n this.genLabel(),\n ]\n },\n genSwitch (): VNode {\n const { title, ...switchAttrs } = this.attrs$\n\n return this.$createElement('div', {\n staticClass: 'v-input--selection-controls__input',\n }, [\n this.genInput('checkbox', {\n ...this.attrs,\n ...switchAttrs,\n }),\n this.genRipple(this.setTextColor(this.validationState, {\n directives: [{\n name: 'touch',\n value: {\n left: this.onSwipeLeft,\n right: this.onSwipeRight,\n },\n }],\n })),\n this.$createElement('div', {\n staticClass: 'v-input--switch__track',\n ...this.switchData,\n }),\n this.$createElement('div', {\n staticClass: 'v-input--switch__thumb',\n ...this.switchData,\n }, [this.genProgress()]),\n ])\n },\n genProgress (): VNode {\n return this.$createElement(VFabTransition, {}, [\n this.loading === false\n ? null\n : this.$slots.progress || this.$createElement(VProgressCircular, {\n props: {\n color: (this.loading === true || this.loading === '')\n ? (this.color || 'primary')\n : this.loading,\n size: 16,\n width: 2,\n indeterminate: true,\n },\n }),\n ])\n },\n onSwipeLeft () {\n if (this.isActive) this.onChange()\n },\n onSwipeRight () {\n if (!this.isActive) this.onChange()\n },\n onKeydown (e: KeyboardEvent) {\n if (\n (e.keyCode === keyCodes.left && this.isActive) ||\n (e.keyCode === keyCodes.right && !this.isActive)\n ) this.onChange()\n },\n },\n})\n","module.exports =\n/******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar installedModules = {};\n/******/\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(installedModules[moduleId]) {\n/******/ \t\t\treturn installedModules[moduleId].exports;\n/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = installedModules[moduleId] = {\n/******/ \t\t\ti: moduleId,\n/******/ \t\t\tl: false,\n/******/ \t\t\texports: {}\n/******/ \t\t};\n/******/\n/******/ \t\t// Execute the module function\n/******/ \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n/******/\n/******/ \t\t// Flag the module as loaded\n/******/ \t\tmodule.l = true;\n/******/\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/\n/******/\n/******/ \t// expose the modules object (__webpack_modules__)\n/******/ \t__webpack_require__.m = modules;\n/******/\n/******/ \t// expose the module cache\n/******/ \t__webpack_require__.c = installedModules;\n/******/\n/******/ \t// define getter function for harmony exports\n/******/ \t__webpack_require__.d = function(exports, name, getter) {\n/******/ \t\tif(!__webpack_require__.o(exports, name)) {\n/******/ \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n/******/ \t\t}\n/******/ \t};\n/******/\n/******/ \t// define __esModule on exports\n/******/ \t__webpack_require__.r = function(exports) {\n/******/ \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n/******/ \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n/******/ \t\t}\n/******/ \t\tObject.defineProperty(exports, '__esModule', { value: true });\n/******/ \t};\n/******/\n/******/ \t// create a fake namespace object\n/******/ \t// mode & 1: value is a module id, require it\n/******/ \t// mode & 2: merge all properties of value into the ns\n/******/ \t// mode & 4: return value when already ns object\n/******/ \t// mode & 8|1: behave like require\n/******/ \t__webpack_require__.t = function(value, mode) {\n/******/ \t\tif(mode & 1) value = __webpack_require__(value);\n/******/ \t\tif(mode & 8) return value;\n/******/ \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n/******/ \t\tvar ns = Object.create(null);\n/******/ \t\t__webpack_require__.r(ns);\n/******/ \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n/******/ \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n/******/ \t\treturn ns;\n/******/ \t};\n/******/\n/******/ \t// getDefaultExport function for compatibility with non-harmony modules\n/******/ \t__webpack_require__.n = function(module) {\n/******/ \t\tvar getter = module && module.__esModule ?\n/******/ \t\t\tfunction getDefault() { return module['default']; } :\n/******/ \t\t\tfunction getModuleExports() { return module; };\n/******/ \t\t__webpack_require__.d(getter, 'a', getter);\n/******/ \t\treturn getter;\n/******/ \t};\n/******/\n/******/ \t// Object.prototype.hasOwnProperty.call\n/******/ \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n/******/\n/******/ \t// __webpack_public_path__\n/******/ \t__webpack_require__.p = \"\";\n/******/\n/******/\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(__webpack_require__.s = \"fb15\");\n/******/ })\n/************************************************************************/\n/******/ ({\n\n/***/ \"014b\":\n/***/ (function(module, exports, __webpack_require__) {\n\n\"use strict\";\n\n// ECMAScript 6 symbols shim\nvar global = __webpack_require__(\"e53d\");\nvar has = __webpack_require__(\"07e3\");\nvar DESCRIPTORS = __webpack_require__(\"8e60\");\nvar $export = __webpack_require__(\"63b6\");\nvar redefine = __webpack_require__(\"9138\");\nvar META = __webpack_require__(\"ebfd\").KEY;\nvar $fails = __webpack_require__(\"294c\");\nvar shared = __webpack_require__(\"dbdb\");\nvar setToStringTag = __webpack_require__(\"45f2\");\nvar uid = __webpack_require__(\"62a0\");\nvar wks = __webpack_require__(\"5168\");\nvar wksExt = __webpack_require__(\"ccb9\");\nvar wksDefine = __webpack_require__(\"6718\");\nvar enumKeys = __webpack_require__(\"47ee\");\nvar isArray = __webpack_require__(\"9003\");\nvar anObject = __webpack_require__(\"e4ae\");\nvar isObject = __webpack_require__(\"f772\");\nvar toObject = __webpack_require__(\"241e\");\nvar toIObject = __webpack_require__(\"36c3\");\nvar toPrimitive = __webpack_require__(\"1bc3\");\nvar createDesc = __webpack_require__(\"aebd\");\nvar _create = __webpack_require__(\"a159\");\nvar gOPNExt = __webpack_require__(\"0395\");\nvar $GOPD = __webpack_require__(\"bf0b\");\nvar $GOPS = __webpack_require__(\"9aa9\");\nvar $DP = __webpack_require__(\"d9f6\");\nvar $keys = __webpack_require__(\"c3a1\");\nvar gOPD = $GOPD.f;\nvar dP = $DP.f;\nvar gOPN = gOPNExt.f;\nvar $Symbol = global.Symbol;\nvar $JSON = global.JSON;\nvar _stringify = $JSON && $JSON.stringify;\nvar PROTOTYPE = 'prototype';\nvar HIDDEN = wks('_hidden');\nvar TO_PRIMITIVE = wks('toPrimitive');\nvar isEnum = {}.propertyIsEnumerable;\nvar SymbolRegistry = shared('symbol-registry');\nvar AllSymbols = shared('symbols');\nvar OPSymbols = shared('op-symbols');\nvar ObjectProto = Object[PROTOTYPE];\nvar USE_NATIVE = typeof $Symbol == 'function' && !!$GOPS.f;\nvar QObject = global.QObject;\n// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173\nvar setter = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;\n\n// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687\nvar setSymbolDesc = DESCRIPTORS && $fails(function () {\n return _create(dP({}, 'a', {\n get: function () { return dP(this, 'a', { value: 7 }).a; }\n })).a != 7;\n}) ? function (it, key, D) {\n var protoDesc = gOPD(ObjectProto, key);\n if (protoDesc) delete ObjectProto[key];\n dP(it, key, D);\n if (protoDesc && it !== ObjectProto) dP(ObjectProto, key, protoDesc);\n} : dP;\n\nvar wrap = function (tag) {\n var sym = AllSymbols[tag] = _create($Symbol[PROTOTYPE]);\n sym._k = tag;\n return sym;\n};\n\nvar isSymbol = USE_NATIVE && typeof $Symbol.iterator == 'symbol' ? function (it) {\n return typeof it == 'symbol';\n} : function (it) {\n return it instanceof $Symbol;\n};\n\nvar $defineProperty = function defineProperty(it, key, D) {\n if (it === ObjectProto) $defineProperty(OPSymbols, key, D);\n anObject(it);\n key = toPrimitive(key, true);\n anObject(D);\n if (has(AllSymbols, key)) {\n if (!D.enumerable) {\n if (!has(it, HIDDEN)) dP(it, HIDDEN, createDesc(1, {}));\n it[HIDDEN][key] = true;\n } else {\n if (has(it, HIDDEN) && it[HIDDEN][key]) it[HIDDEN][key] = false;\n D = _create(D, { enumerable: createDesc(0, false) });\n } return setSymbolDesc(it, key, D);\n } return dP(it, key, D);\n};\nvar $defineProperties = function defineProperties(it, P) {\n anObject(it);\n var keys = enumKeys(P = toIObject(P));\n var i = 0;\n var l = keys.length;\n var key;\n while (l > i) $defineProperty(it, key = keys[i++], P[key]);\n return it;\n};\nvar $create = function create(it, P) {\n return P === undefined ? _create(it) : $defineProperties(_create(it), P);\n};\nvar $propertyIsEnumerable = function propertyIsEnumerable(key) {\n var E = isEnum.call(this, key = toPrimitive(key, true));\n if (this === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return false;\n return E || !has(this, key) || !has(AllSymbols, key) || has(this, HIDDEN) && this[HIDDEN][key] ? E : true;\n};\nvar $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(it, key) {\n it = toIObject(it);\n key = toPrimitive(key, true);\n if (it === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return;\n var D = gOPD(it, key);\n if (D && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) D.enumerable = true;\n return D;\n};\nvar $getOwnPropertyNames = function getOwnPropertyNames(it) {\n var names = gOPN(toIObject(it));\n var result = [];\n var i = 0;\n var key;\n while (names.length > i) {\n if (!has(AllSymbols, key = names[i++]) && key != HIDDEN && key != META) result.push(key);\n } return result;\n};\nvar $getOwnPropertySymbols = function getOwnPropertySymbols(it) {\n var IS_OP = it === ObjectProto;\n var names = gOPN(IS_OP ? OPSymbols : toIObject(it));\n var result = [];\n var i = 0;\n var key;\n while (names.length > i) {\n if (has(AllSymbols, key = names[i++]) && (IS_OP ? has(ObjectProto, key) : true)) result.push(AllSymbols[key]);\n } return result;\n};\n\n// 19.4.1.1 Symbol([description])\nif (!USE_NATIVE) {\n $Symbol = function Symbol() {\n if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor!');\n var tag = uid(arguments.length > 0 ? arguments[0] : undefined);\n var $set = function (value) {\n if (this === ObjectProto) $set.call(OPSymbols, value);\n if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;\n setSymbolDesc(this, tag, createDesc(1, value));\n };\n if (DESCRIPTORS && setter) setSymbolDesc(ObjectProto, tag, { configurable: true, set: $set });\n return wrap(tag);\n };\n redefine($Symbol[PROTOTYPE], 'toString', function toString() {\n return this._k;\n });\n\n $GOPD.f = $getOwnPropertyDescriptor;\n $DP.f = $defineProperty;\n __webpack_require__(\"6abf\").f = gOPNExt.f = $getOwnPropertyNames;\n __webpack_require__(\"355d\").f = $propertyIsEnumerable;\n $GOPS.f = $getOwnPropertySymbols;\n\n if (DESCRIPTORS && !__webpack_require__(\"b8e3\")) {\n redefine(ObjectProto, 'propertyIsEnumerable', $propertyIsEnumerable, true);\n }\n\n wksExt.f = function (name) {\n return wrap(wks(name));\n };\n}\n\n$export($export.G + $export.W + $export.F * !USE_NATIVE, { Symbol: $Symbol });\n\nfor (var es6Symbols = (\n // 19.4.2.2, 19.4.2.3, 19.4.2.4, 19.4.2.6, 19.4.2.8, 19.4.2.9, 19.4.2.10, 19.4.2.11, 19.4.2.12, 19.4.2.13, 19.4.2.14\n 'hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables'\n).split(','), j = 0; es6Symbols.length > j;)wks(es6Symbols[j++]);\n\nfor (var wellKnownSymbols = $keys(wks.store), k = 0; wellKnownSymbols.length > k;) wksDefine(wellKnownSymbols[k++]);\n\n$export($export.S + $export.F * !USE_NATIVE, 'Symbol', {\n // 19.4.2.1 Symbol.for(key)\n 'for': function (key) {\n return has(SymbolRegistry, key += '')\n ? SymbolRegistry[key]\n : SymbolRegistry[key] = $Symbol(key);\n },\n // 19.4.2.5 Symbol.keyFor(sym)\n keyFor: function keyFor(sym) {\n if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol!');\n for (var key in SymbolRegistry) if (SymbolRegistry[key] === sym) return key;\n },\n useSetter: function () { setter = true; },\n useSimple: function () { setter = false; }\n});\n\n$export($export.S + $export.F * !USE_NATIVE, 'Object', {\n // 19.1.2.2 Object.create(O [, Properties])\n create: $create,\n // 19.1.2.4 Object.defineProperty(O, P, Attributes)\n defineProperty: $defineProperty,\n // 19.1.2.3 Object.defineProperties(O, Properties)\n defineProperties: $defineProperties,\n // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\n getOwnPropertyDescriptor: $getOwnPropertyDescriptor,\n // 19.1.2.7 Object.getOwnPropertyNames(O)\n getOwnPropertyNames: $getOwnPropertyNames,\n // 19.1.2.8 Object.getOwnPropertySymbols(O)\n getOwnPropertySymbols: $getOwnPropertySymbols\n});\n\n// Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives\n// https://bugs.chromium.org/p/v8/issues/detail?id=3443\nvar FAILS_ON_PRIMITIVES = $fails(function () { $GOPS.f(1); });\n\n$export($export.S + $export.F * FAILS_ON_PRIMITIVES, 'Object', {\n getOwnPropertySymbols: function getOwnPropertySymbols(it) {\n return $GOPS.f(toObject(it));\n }\n});\n\n// 24.3.2 JSON.stringify(value [, replacer [, space]])\n$JSON && $export($export.S + $export.F * (!USE_NATIVE || $fails(function () {\n var S = $Symbol();\n // MS Edge converts symbol values to JSON as {}\n // WebKit converts symbol values to JSON as null\n // V8 throws on boxed symbols\n return _stringify([S]) != '[null]' || _stringify({ a: S }) != '{}' || _stringify(Object(S)) != '{}';\n})), 'JSON', {\n stringify: function stringify(it) {\n var args = [it];\n var i = 1;\n var replacer, $replacer;\n while (arguments.length > i) args.push(arguments[i++]);\n $replacer = replacer = args[1];\n if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined\n if (!isArray(replacer)) replacer = function (key, value) {\n if (typeof $replacer == 'function') value = $replacer.call(this, key, value);\n if (!isSymbol(value)) return value;\n };\n args[1] = replacer;\n return _stringify.apply($JSON, args);\n }\n});\n\n// 19.4.3.4 Symbol.prototype[@@toPrimitive](hint)\n$Symbol[PROTOTYPE][TO_PRIMITIVE] || __webpack_require__(\"35e8\")($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);\n// 19.4.3.5 Symbol.prototype[@@toStringTag]\nsetToStringTag($Symbol, 'Symbol');\n// 20.2.1.9 Math[@@toStringTag]\nsetToStringTag(Math, 'Math', true);\n// 24.3.3 JSON[@@toStringTag]\nsetToStringTag(global.JSON, 'JSON', true);\n\n\n/***/ }),\n\n/***/ \"01f9\":\n/***/ (function(module, exports, __webpack_require__) {\n\n\"use strict\";\n\nvar LIBRARY = __webpack_require__(\"2d00\");\nvar $export = __webpack_require__(\"5ca1\");\nvar redefine = __webpack_require__(\"2aba\");\nvar hide = __webpack_require__(\"32e9\");\nvar Iterators = __webpack_require__(\"84f2\");\nvar $iterCreate = __webpack_require__(\"41a0\");\nvar setToStringTag = __webpack_require__(\"7f20\");\nvar getPrototypeOf = __webpack_require__(\"38fd\");\nvar ITERATOR = __webpack_require__(\"2b4c\")('iterator');\nvar BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`\nvar FF_ITERATOR = '@@iterator';\nvar KEYS = 'keys';\nvar VALUES = 'values';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {\n $iterCreate(Constructor, NAME, next);\n var getMethod = function (kind) {\n if (!BUGGY && kind in proto) return proto[kind];\n switch (kind) {\n case KEYS: return function keys() { return new Constructor(this, kind); };\n case VALUES: return function values() { return new Constructor(this, kind); };\n } return function entries() { return new Constructor(this, kind); };\n };\n var TAG = NAME + ' Iterator';\n var DEF_VALUES = DEFAULT == VALUES;\n var VALUES_BUG = false;\n var proto = Base.prototype;\n var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];\n var $default = $native || getMethod(DEFAULT);\n var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;\n var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;\n var methods, key, IteratorPrototype;\n // Fix native\n if ($anyNative) {\n IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));\n if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {\n // Set @@toStringTag to native iterators\n setToStringTag(IteratorPrototype, TAG, true);\n // fix for some old engines\n if (!LIBRARY && typeof IteratorPrototype[ITERATOR] != 'function') hide(IteratorPrototype, ITERATOR, returnThis);\n }\n }\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEF_VALUES && $native && $native.name !== VALUES) {\n VALUES_BUG = true;\n $default = function values() { return $native.call(this); };\n }\n // Define iterator\n if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {\n hide(proto, ITERATOR, $default);\n }\n // Plug for library\n Iterators[NAME] = $default;\n Iterators[TAG] = returnThis;\n if (DEFAULT) {\n methods = {\n values: DEF_VALUES ? $default : getMethod(VALUES),\n keys: IS_SET ? $default : getMethod(KEYS),\n entries: $entries\n };\n if (FORCED) for (key in methods) {\n if (!(key in proto)) redefine(proto, key, methods[key]);\n } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);\n }\n return methods;\n};\n\n\n/***/ }),\n\n/***/ \"0395\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window\nvar toIObject = __webpack_require__(\"36c3\");\nvar gOPN = __webpack_require__(\"6abf\").f;\nvar toString = {}.toString;\n\nvar windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames\n ? Object.getOwnPropertyNames(window) : [];\n\nvar getWindowNames = function (it) {\n try {\n return gOPN(it);\n } catch (e) {\n return windowNames.slice();\n }\n};\n\nmodule.exports.f = function getOwnPropertyNames(it) {\n return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it));\n};\n\n\n/***/ }),\n\n/***/ \"07e3\":\n/***/ (function(module, exports) {\n\nvar hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n\n\n/***/ }),\n\n/***/ \"0d58\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = __webpack_require__(\"ce10\");\nvar enumBugKeys = __webpack_require__(\"e11e\");\n\nmodule.exports = Object.keys || function keys(O) {\n return $keys(O, enumBugKeys);\n};\n\n\n/***/ }),\n\n/***/ \"0fc9\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar toInteger = __webpack_require__(\"3a38\");\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n index = toInteger(index);\n return index < 0 ? max(index + length, 0) : min(index, length);\n};\n\n\n/***/ }),\n\n/***/ \"11e9\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar pIE = __webpack_require__(\"52a7\");\nvar createDesc = __webpack_require__(\"4630\");\nvar toIObject = __webpack_require__(\"6821\");\nvar toPrimitive = __webpack_require__(\"6a99\");\nvar has = __webpack_require__(\"69a8\");\nvar IE8_DOM_DEFINE = __webpack_require__(\"c69a\");\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nexports.f = __webpack_require__(\"9e1e\") ? gOPD : function getOwnPropertyDescriptor(O, P) {\n O = toIObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return gOPD(O, P);\n } catch (e) { /* empty */ }\n if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n};\n\n\n/***/ }),\n\n/***/ \"1495\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar dP = __webpack_require__(\"86cc\");\nvar anObject = __webpack_require__(\"cb7c\");\nvar getKeys = __webpack_require__(\"0d58\");\n\nmodule.exports = __webpack_require__(\"9e1e\") ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n\n\n/***/ }),\n\n/***/ \"1691\":\n/***/ (function(module, exports) {\n\n// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n\n\n/***/ }),\n\n/***/ \"1bc3\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = __webpack_require__(\"f772\");\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n if (!isObject(it)) return it;\n var fn, val;\n if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n\n\n/***/ }),\n\n/***/ \"1ec9\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar isObject = __webpack_require__(\"f772\");\nvar document = __webpack_require__(\"e53d\").document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n\n\n/***/ }),\n\n/***/ \"20fd\":\n/***/ (function(module, exports, __webpack_require__) {\n\n\"use strict\";\n\nvar $defineProperty = __webpack_require__(\"d9f6\");\nvar createDesc = __webpack_require__(\"aebd\");\n\nmodule.exports = function (object, index, value) {\n if (index in object) $defineProperty.f(object, index, createDesc(0, value));\n else object[index] = value;\n};\n\n\n/***/ }),\n\n/***/ \"230e\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar isObject = __webpack_require__(\"d3f4\");\nvar document = __webpack_require__(\"7726\").document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n return is ? document.createElement(it) : {};\n};\n\n\n/***/ }),\n\n/***/ \"241e\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 7.1.13 ToObject(argument)\nvar defined = __webpack_require__(\"25eb\");\nmodule.exports = function (it) {\n return Object(defined(it));\n};\n\n\n/***/ }),\n\n/***/ \"25eb\":\n/***/ (function(module, exports) {\n\n// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n\n\n/***/ }),\n\n/***/ \"268f\":\n/***/ (function(module, exports, __webpack_require__) {\n\nmodule.exports = __webpack_require__(\"fde4\");\n\n/***/ }),\n\n/***/ \"294c\":\n/***/ (function(module, exports) {\n\nmodule.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n\n\n/***/ }),\n\n/***/ \"2aba\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar global = __webpack_require__(\"7726\");\nvar hide = __webpack_require__(\"32e9\");\nvar has = __webpack_require__(\"69a8\");\nvar SRC = __webpack_require__(\"ca5a\")('src');\nvar $toString = __webpack_require__(\"fa5b\");\nvar TO_STRING = 'toString';\nvar TPL = ('' + $toString).split(TO_STRING);\n\n__webpack_require__(\"8378\").inspectSource = function (it) {\n return $toString.call(it);\n};\n\n(module.exports = function (O, key, val, safe) {\n var isFunction = typeof val == 'function';\n if (isFunction) has(val, 'name') || hide(val, 'name', key);\n if (O[key] === val) return;\n if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));\n if (O === global) {\n O[key] = val;\n } else if (!safe) {\n delete O[key];\n hide(O, key, val);\n } else if (O[key]) {\n O[key] = val;\n } else {\n hide(O, key, val);\n }\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, TO_STRING, function toString() {\n return typeof this == 'function' && this[SRC] || $toString.call(this);\n});\n\n\n/***/ }),\n\n/***/ \"2aeb\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = __webpack_require__(\"cb7c\");\nvar dPs = __webpack_require__(\"1495\");\nvar enumBugKeys = __webpack_require__(\"e11e\");\nvar IE_PROTO = __webpack_require__(\"613b\")('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = __webpack_require__(\"230e\")('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n __webpack_require__(\"fab2\").appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n\n\n/***/ }),\n\n/***/ \"2b4c\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar store = __webpack_require__(\"5537\")('wks');\nvar uid = __webpack_require__(\"ca5a\");\nvar Symbol = __webpack_require__(\"7726\").Symbol;\nvar USE_SYMBOL = typeof Symbol == 'function';\n\nvar $exports = module.exports = function (name) {\n return store[name] || (store[name] =\n USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));\n};\n\n$exports.store = store;\n\n\n/***/ }),\n\n/***/ \"2d00\":\n/***/ (function(module, exports) {\n\nmodule.exports = false;\n\n\n/***/ }),\n\n/***/ \"2d95\":\n/***/ (function(module, exports) {\n\nvar toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n\n\n/***/ }),\n\n/***/ \"2fdb\":\n/***/ (function(module, exports, __webpack_require__) {\n\n\"use strict\";\n// 21.1.3.7 String.prototype.includes(searchString, position = 0)\n\nvar $export = __webpack_require__(\"5ca1\");\nvar context = __webpack_require__(\"d2c8\");\nvar INCLUDES = 'includes';\n\n$export($export.P + $export.F * __webpack_require__(\"5147\")(INCLUDES), 'String', {\n includes: function includes(searchString /* , position = 0 */) {\n return !!~context(this, searchString, INCLUDES)\n .indexOf(searchString, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n\n\n/***/ }),\n\n/***/ \"32a6\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 19.1.2.14 Object.keys(O)\nvar toObject = __webpack_require__(\"241e\");\nvar $keys = __webpack_require__(\"c3a1\");\n\n__webpack_require__(\"ce7e\")('keys', function () {\n return function keys(it) {\n return $keys(toObject(it));\n };\n});\n\n\n/***/ }),\n\n/***/ \"32e9\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar dP = __webpack_require__(\"86cc\");\nvar createDesc = __webpack_require__(\"4630\");\nmodule.exports = __webpack_require__(\"9e1e\") ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n\n\n/***/ }),\n\n/***/ \"32fc\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar document = __webpack_require__(\"e53d\").document;\nmodule.exports = document && document.documentElement;\n\n\n/***/ }),\n\n/***/ \"335c\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = __webpack_require__(\"6b4c\");\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n\n\n/***/ }),\n\n/***/ \"355d\":\n/***/ (function(module, exports) {\n\nexports.f = {}.propertyIsEnumerable;\n\n\n/***/ }),\n\n/***/ \"35e8\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar dP = __webpack_require__(\"d9f6\");\nvar createDesc = __webpack_require__(\"aebd\");\nmodule.exports = __webpack_require__(\"8e60\") ? function (object, key, value) {\n return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n\n\n/***/ }),\n\n/***/ \"36c3\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = __webpack_require__(\"335c\");\nvar defined = __webpack_require__(\"25eb\");\nmodule.exports = function (it) {\n return IObject(defined(it));\n};\n\n\n/***/ }),\n\n/***/ \"38fd\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)\nvar has = __webpack_require__(\"69a8\");\nvar toObject = __webpack_require__(\"4bf8\");\nvar IE_PROTO = __webpack_require__(\"613b\")('IE_PROTO');\nvar ObjectProto = Object.prototype;\n\nmodule.exports = Object.getPrototypeOf || function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectProto : null;\n};\n\n\n/***/ }),\n\n/***/ \"3a38\":\n/***/ (function(module, exports) {\n\n// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n\n\n/***/ }),\n\n/***/ \"41a0\":\n/***/ (function(module, exports, __webpack_require__) {\n\n\"use strict\";\n\nvar create = __webpack_require__(\"2aeb\");\nvar descriptor = __webpack_require__(\"4630\");\nvar setToStringTag = __webpack_require__(\"7f20\");\nvar IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\n__webpack_require__(\"32e9\")(IteratorPrototype, __webpack_require__(\"2b4c\")('iterator'), function () { return this; });\n\nmodule.exports = function (Constructor, NAME, next) {\n Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });\n setToStringTag(Constructor, NAME + ' Iterator');\n};\n\n\n/***/ }),\n\n/***/ \"454f\":\n/***/ (function(module, exports, __webpack_require__) {\n\n__webpack_require__(\"46a7\");\nvar $Object = __webpack_require__(\"584a\").Object;\nmodule.exports = function defineProperty(it, key, desc) {\n return $Object.defineProperty(it, key, desc);\n};\n\n\n/***/ }),\n\n/***/ \"456d\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 19.1.2.14 Object.keys(O)\nvar toObject = __webpack_require__(\"4bf8\");\nvar $keys = __webpack_require__(\"0d58\");\n\n__webpack_require__(\"5eda\")('keys', function () {\n return function keys(it) {\n return $keys(toObject(it));\n };\n});\n\n\n/***/ }),\n\n/***/ \"4588\":\n/***/ (function(module, exports) {\n\n// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n\n\n/***/ }),\n\n/***/ \"45f2\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar def = __webpack_require__(\"d9f6\").f;\nvar has = __webpack_require__(\"07e3\");\nvar TAG = __webpack_require__(\"5168\")('toStringTag');\n\nmodule.exports = function (it, tag, stat) {\n if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n};\n\n\n/***/ }),\n\n/***/ \"4630\":\n/***/ (function(module, exports) {\n\nmodule.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n\n\n/***/ }),\n\n/***/ \"46a7\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar $export = __webpack_require__(\"63b6\");\n// 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)\n$export($export.S + $export.F * !__webpack_require__(\"8e60\"), 'Object', { defineProperty: __webpack_require__(\"d9f6\").f });\n\n\n/***/ }),\n\n/***/ \"47ee\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// all enumerable object keys, includes symbols\nvar getKeys = __webpack_require__(\"c3a1\");\nvar gOPS = __webpack_require__(\"9aa9\");\nvar pIE = __webpack_require__(\"355d\");\nmodule.exports = function (it) {\n var result = getKeys(it);\n var getSymbols = gOPS.f;\n if (getSymbols) {\n var symbols = getSymbols(it);\n var isEnum = pIE.f;\n var i = 0;\n var key;\n while (symbols.length > i) if (isEnum.call(it, key = symbols[i++])) result.push(key);\n } return result;\n};\n\n\n/***/ }),\n\n/***/ \"4bf8\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 7.1.13 ToObject(argument)\nvar defined = __webpack_require__(\"be13\");\nmodule.exports = function (it) {\n return Object(defined(it));\n};\n\n\n/***/ }),\n\n/***/ \"5147\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar MATCH = __webpack_require__(\"2b4c\")('match');\nmodule.exports = function (KEY) {\n var re = /./;\n try {\n '/./'[KEY](re);\n } catch (e) {\n try {\n re[MATCH] = false;\n return !'/./'[KEY](re);\n } catch (f) { /* empty */ }\n } return true;\n};\n\n\n/***/ }),\n\n/***/ \"5168\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar store = __webpack_require__(\"dbdb\")('wks');\nvar uid = __webpack_require__(\"62a0\");\nvar Symbol = __webpack_require__(\"e53d\").Symbol;\nvar USE_SYMBOL = typeof Symbol == 'function';\n\nvar $exports = module.exports = function (name) {\n return store[name] || (store[name] =\n USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));\n};\n\n$exports.store = store;\n\n\n/***/ }),\n\n/***/ \"52a7\":\n/***/ (function(module, exports) {\n\nexports.f = {}.propertyIsEnumerable;\n\n\n/***/ }),\n\n/***/ \"5537\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar core = __webpack_require__(\"8378\");\nvar global = __webpack_require__(\"7726\");\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: core.version,\n mode: __webpack_require__(\"2d00\") ? 'pure' : 'global',\n copyright: '© 2020 Denis Pushkarev (zloirock.ru)'\n});\n\n\n/***/ }),\n\n/***/ \"5559\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar shared = __webpack_require__(\"dbdb\")('keys');\nvar uid = __webpack_require__(\"62a0\");\nmodule.exports = function (key) {\n return shared[key] || (shared[key] = uid(key));\n};\n\n\n/***/ }),\n\n/***/ \"584a\":\n/***/ (function(module, exports) {\n\nvar core = module.exports = { version: '2.6.12' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n\n\n/***/ }),\n\n/***/ \"5b4e\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = __webpack_require__(\"36c3\");\nvar toLength = __webpack_require__(\"b447\");\nvar toAbsoluteIndex = __webpack_require__(\"0fc9\");\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\n\n/***/ }),\n\n/***/ \"5bba\":\n/***/ (function(module, exports, __webpack_require__) {\n\n__webpack_require__(\"9d98\");\nvar $Object = __webpack_require__(\"584a\").Object;\nmodule.exports = function defineProperties(T, D) {\n return $Object.defineProperties(T, D);\n};\n\n\n/***/ }),\n\n/***/ \"5ca1\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar global = __webpack_require__(\"7726\");\nvar core = __webpack_require__(\"8378\");\nvar hide = __webpack_require__(\"32e9\");\nvar redefine = __webpack_require__(\"2aba\");\nvar ctx = __webpack_require__(\"9b43\");\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE];\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {});\n var key, own, out, exp;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n // export native or passed\n out = (own ? target : source)[key];\n // bind timers to global for call from export context\n exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // extend global\n if (target) redefine(target, key, out, type & $export.U);\n // export\n if (exports[key] != out) hide(exports, key, exp);\n if (IS_PROTO && expProto[key] != out) expProto[key] = out;\n }\n};\nglobal.core = core;\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n\n\n/***/ }),\n\n/***/ \"5dbc\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar isObject = __webpack_require__(\"d3f4\");\nvar setPrototypeOf = __webpack_require__(\"8b97\").set;\nmodule.exports = function (that, target, C) {\n var S = target.constructor;\n var P;\n if (S !== C && typeof S == 'function' && (P = S.prototype) !== C.prototype && isObject(P) && setPrototypeOf) {\n setPrototypeOf(that, P);\n } return that;\n};\n\n\n/***/ }),\n\n/***/ \"5e83\":\n/***/ (function(module, exports, __webpack_require__) {\n\nmodule.exports = __webpack_require__(\"8580\");\n\n/***/ }),\n\n/***/ \"5eda\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// most Object methods by ES6 should accept primitives\nvar $export = __webpack_require__(\"5ca1\");\nvar core = __webpack_require__(\"8378\");\nvar fails = __webpack_require__(\"79e5\");\nmodule.exports = function (KEY, exec) {\n var fn = (core.Object || {})[KEY] || Object[KEY];\n var exp = {};\n exp[KEY] = exec(fn);\n $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp);\n};\n\n\n/***/ }),\n\n/***/ \"613b\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar shared = __webpack_require__(\"5537\")('keys');\nvar uid = __webpack_require__(\"ca5a\");\nmodule.exports = function (key) {\n return shared[key] || (shared[key] = uid(key));\n};\n\n\n/***/ }),\n\n/***/ \"626a\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = __webpack_require__(\"2d95\");\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n return cof(it) == 'String' ? it.split('') : Object(it);\n};\n\n\n/***/ }),\n\n/***/ \"62a0\":\n/***/ (function(module, exports) {\n\nvar id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n\n\n/***/ }),\n\n/***/ \"63b6\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar global = __webpack_require__(\"e53d\");\nvar core = __webpack_require__(\"584a\");\nvar ctx = __webpack_require__(\"d864\");\nvar hide = __webpack_require__(\"35e8\");\nvar has = __webpack_require__(\"07e3\");\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n var IS_FORCED = type & $export.F;\n var IS_GLOBAL = type & $export.G;\n var IS_STATIC = type & $export.S;\n var IS_PROTO = type & $export.P;\n var IS_BIND = type & $export.B;\n var IS_WRAP = type & $export.W;\n var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n var expProto = exports[PROTOTYPE];\n var target = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE];\n var key, own, out;\n if (IS_GLOBAL) source = name;\n for (key in source) {\n // contains in native\n own = !IS_FORCED && target && target[key] !== undefined;\n if (own && has(exports, key)) continue;\n // export native or passed\n out = own ? target[key] : source[key];\n // prevent global pollution for namespaces\n exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key]\n // bind timers to global for call from export context\n : IS_BIND && own ? ctx(out, global)\n // wrap global constructors for prevent change them in library\n : IS_WRAP && target[key] == out ? (function (C) {\n var F = function (a, b, c) {\n if (this instanceof C) {\n switch (arguments.length) {\n case 0: return new C();\n case 1: return new C(a);\n case 2: return new C(a, b);\n } return new C(a, b, c);\n } return C.apply(this, arguments);\n };\n F[PROTOTYPE] = C[PROTOTYPE];\n return F;\n // make static versions for prototype methods\n })(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n // export proto methods to core.%CONSTRUCTOR%.methods.%NAME%\n if (IS_PROTO) {\n (exports.virtual || (exports.virtual = {}))[key] = out;\n // export proto methods to core.%CONSTRUCTOR%.prototype.%NAME%\n if (type & $export.R && expProto && !expProto[key]) hide(expProto, key, out);\n }\n }\n};\n// type bitmap\n$export.F = 1; // forced\n$export.G = 2; // global\n$export.S = 4; // static\n$export.P = 8; // proto\n$export.B = 16; // bind\n$export.W = 32; // wrap\n$export.U = 64; // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n\n\n/***/ }),\n\n/***/ \"6718\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar global = __webpack_require__(\"e53d\");\nvar core = __webpack_require__(\"584a\");\nvar LIBRARY = __webpack_require__(\"b8e3\");\nvar wksExt = __webpack_require__(\"ccb9\");\nvar defineProperty = __webpack_require__(\"d9f6\").f;\nmodule.exports = function (name) {\n var $Symbol = core.Symbol || (core.Symbol = LIBRARY ? {} : global.Symbol || {});\n if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) });\n};\n\n\n/***/ }),\n\n/***/ \"6762\":\n/***/ (function(module, exports, __webpack_require__) {\n\n\"use strict\";\n\n// https://github.com/tc39/Array.prototype.includes\nvar $export = __webpack_require__(\"5ca1\");\nvar $includes = __webpack_require__(\"c366\")(true);\n\n$export($export.P, 'Array', {\n includes: function includes(el /* , fromIndex = 0 */) {\n return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n\n__webpack_require__(\"9c6c\")('includes');\n\n\n/***/ }),\n\n/***/ \"6821\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = __webpack_require__(\"626a\");\nvar defined = __webpack_require__(\"be13\");\nmodule.exports = function (it) {\n return IObject(defined(it));\n};\n\n\n/***/ }),\n\n/***/ \"69a8\":\n/***/ (function(module, exports) {\n\nvar hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n\n\n/***/ }),\n\n/***/ \"6a99\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = __webpack_require__(\"d3f4\");\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n if (!isObject(it)) return it;\n var fn, val;\n if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n\n\n/***/ }),\n\n/***/ \"6abf\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\nvar $keys = __webpack_require__(\"e6f3\");\nvar hiddenKeys = __webpack_require__(\"1691\").concat('length', 'prototype');\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return $keys(O, hiddenKeys);\n};\n\n\n/***/ }),\n\n/***/ \"6b4c\":\n/***/ (function(module, exports) {\n\nvar toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n\n\n/***/ }),\n\n/***/ \"7726\":\n/***/ (function(module, exports) {\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n\n\n/***/ }),\n\n/***/ \"77f1\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar toInteger = __webpack_require__(\"4588\");\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n index = toInteger(index);\n return index < 0 ? max(index + length, 0) : min(index, length);\n};\n\n\n/***/ }),\n\n/***/ \"794b\":\n/***/ (function(module, exports, __webpack_require__) {\n\nmodule.exports = !__webpack_require__(\"8e60\") && !__webpack_require__(\"294c\")(function () {\n return Object.defineProperty(__webpack_require__(\"1ec9\")('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n\n\n/***/ }),\n\n/***/ \"79aa\":\n/***/ (function(module, exports) {\n\nmodule.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n\n\n/***/ }),\n\n/***/ \"79e5\":\n/***/ (function(module, exports) {\n\nmodule.exports = function (exec) {\n try {\n return !!exec();\n } catch (e) {\n return true;\n }\n};\n\n\n/***/ }),\n\n/***/ \"7e90\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar dP = __webpack_require__(\"d9f6\");\nvar anObject = __webpack_require__(\"e4ae\");\nvar getKeys = __webpack_require__(\"c3a1\");\n\nmodule.exports = __webpack_require__(\"8e60\") ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n\n\n/***/ }),\n\n/***/ \"7f20\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar def = __webpack_require__(\"86cc\").f;\nvar has = __webpack_require__(\"69a8\");\nvar TAG = __webpack_require__(\"2b4c\")('toStringTag');\n\nmodule.exports = function (it, tag, stat) {\n if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n};\n\n\n/***/ }),\n\n/***/ \"7f7f\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar dP = __webpack_require__(\"86cc\").f;\nvar FProto = Function.prototype;\nvar nameRE = /^\\s*function ([^ (]*)/;\nvar NAME = 'name';\n\n// 19.2.4.2 name\nNAME in FProto || __webpack_require__(\"9e1e\") && dP(FProto, NAME, {\n configurable: true,\n get: function () {\n try {\n return ('' + this).match(nameRE)[1];\n } catch (e) {\n return '';\n }\n }\n});\n\n\n/***/ }),\n\n/***/ \"7fda\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// extracted by mini-css-extract-plugin\n\n/***/ }),\n\n/***/ \"8378\":\n/***/ (function(module, exports) {\n\nvar core = module.exports = { version: '2.6.12' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n\n\n/***/ }),\n\n/***/ \"84f2\":\n/***/ (function(module, exports) {\n\nmodule.exports = {};\n\n\n/***/ }),\n\n/***/ \"8580\":\n/***/ (function(module, exports, __webpack_require__) {\n\n__webpack_require__(\"ee6d\");\nmodule.exports = __webpack_require__(\"584a\").Object.getOwnPropertyDescriptors;\n\n\n/***/ }),\n\n/***/ \"85f2\":\n/***/ (function(module, exports, __webpack_require__) {\n\nmodule.exports = __webpack_require__(\"454f\");\n\n/***/ }),\n\n/***/ \"86cc\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar anObject = __webpack_require__(\"cb7c\");\nvar IE8_DOM_DEFINE = __webpack_require__(\"c69a\");\nvar toPrimitive = __webpack_require__(\"6a99\");\nvar dP = Object.defineProperty;\n\nexports.f = __webpack_require__(\"9e1e\") ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return dP(O, P, Attributes);\n } catch (e) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n\n\n/***/ }),\n\n/***/ \"8aae\":\n/***/ (function(module, exports, __webpack_require__) {\n\n__webpack_require__(\"32a6\");\nmodule.exports = __webpack_require__(\"584a\").Object.keys;\n\n\n/***/ }),\n\n/***/ \"8b97\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nvar isObject = __webpack_require__(\"d3f4\");\nvar anObject = __webpack_require__(\"cb7c\");\nvar check = function (O, proto) {\n anObject(O);\n if (!isObject(proto) && proto !== null) throw TypeError(proto + \": can't set as prototype!\");\n};\nmodule.exports = {\n set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line\n function (test, buggy, set) {\n try {\n set = __webpack_require__(\"9b43\")(Function.call, __webpack_require__(\"11e9\").f(Object.prototype, '__proto__').set, 2);\n set(test, []);\n buggy = !(test instanceof Array);\n } catch (e) { buggy = true; }\n return function setPrototypeOf(O, proto) {\n check(O, proto);\n if (buggy) O.__proto__ = proto;\n else set(O, proto);\n return O;\n };\n }({}, false) : undefined),\n check: check\n};\n\n\n/***/ }),\n\n/***/ \"8bbf\":\n/***/ (function(module, exports) {\n\nmodule.exports = require(\"vue\");\n\n/***/ }),\n\n/***/ \"8e60\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !__webpack_require__(\"294c\")(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n\n\n/***/ }),\n\n/***/ \"9003\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 7.2.2 IsArray(argument)\nvar cof = __webpack_require__(\"6b4c\");\nmodule.exports = Array.isArray || function isArray(arg) {\n return cof(arg) == 'Array';\n};\n\n\n/***/ }),\n\n/***/ \"9093\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\nvar $keys = __webpack_require__(\"ce10\");\nvar hiddenKeys = __webpack_require__(\"e11e\").concat('length', 'prototype');\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return $keys(O, hiddenKeys);\n};\n\n\n/***/ }),\n\n/***/ \"9138\":\n/***/ (function(module, exports, __webpack_require__) {\n\nmodule.exports = __webpack_require__(\"35e8\");\n\n\n/***/ }),\n\n/***/ \"9224\":\n/***/ (function(module) {\n\nmodule.exports = JSON.parse(\"{\\\"name\\\":\\\"vue-email-editor\\\",\\\"version\\\":\\\"0.9.0\\\",\\\"main\\\":\\\"./dist/vue-email-editor.common.js\\\",\\\"scripts\\\":{\\\"serve\\\":\\\"vue-cli-service serve\\\",\\\"build\\\":\\\"vue-cli-service build\\\",\\\"build-bundle\\\":\\\"vue-cli-service build --target lib --name vue-email-editor ./src/components/index.js\\\",\\\"lint\\\":\\\"vue-cli-service lint\\\",\\\"release\\\":\\\"npm run build-bundle && npm publish\\\"},\\\"dependencies\\\":{\\\"vue\\\":\\\"^2.5.17\\\"},\\\"devDependencies\\\":{\\\"@vue/cli-plugin-babel\\\":\\\"^3.0.5\\\",\\\"@vue/cli-plugin-eslint\\\":\\\"^3.0.5\\\",\\\"@vue/cli-service\\\":\\\"^3.0.5\\\",\\\"vue-router\\\":\\\"^3.3.2\\\",\\\"vue-template-compiler\\\":\\\"^2.5.17\\\"},\\\"files\\\":[\\\"dist/*\\\",\\\"src/*\\\",\\\"public/*\\\",\\\"*.json\\\",\\\"*.js\\\"],\\\"eslintConfig\\\":{\\\"root\\\":true,\\\"env\\\":{\\\"node\\\":true},\\\"extends\\\":[\\\"plugin:vue/essential\\\",\\\"eslint:recommended\\\"],\\\"rules\\\":{},\\\"parserOptions\\\":{\\\"parser\\\":\\\"babel-eslint\\\"}},\\\"postcss\\\":{\\\"plugins\\\":{\\\"autoprefixer\\\":{}}},\\\"browserslist\\\":[\\\"> 1%\\\",\\\"last 2 versions\\\",\\\"not ie <= 8\\\"]}\");\n\n/***/ }),\n\n/***/ \"9aa9\":\n/***/ (function(module, exports) {\n\nexports.f = Object.getOwnPropertySymbols;\n\n\n/***/ }),\n\n/***/ \"9b43\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// optional / simple context binding\nvar aFunction = __webpack_require__(\"d8e8\");\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n\n\n/***/ }),\n\n/***/ \"9c6c\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 22.1.3.31 Array.prototype[@@unscopables]\nvar UNSCOPABLES = __webpack_require__(\"2b4c\")('unscopables');\nvar ArrayProto = Array.prototype;\nif (ArrayProto[UNSCOPABLES] == undefined) __webpack_require__(\"32e9\")(ArrayProto, UNSCOPABLES, {});\nmodule.exports = function (key) {\n ArrayProto[UNSCOPABLES][key] = true;\n};\n\n\n/***/ }),\n\n/***/ \"9d98\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar $export = __webpack_require__(\"63b6\");\n// 19.1.2.3 / 15.2.3.7 Object.defineProperties(O, Properties)\n$export($export.S + $export.F * !__webpack_require__(\"8e60\"), 'Object', { defineProperties: __webpack_require__(\"7e90\") });\n\n\n/***/ }),\n\n/***/ \"9def\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 7.1.15 ToLength\nvar toInteger = __webpack_require__(\"4588\");\nvar min = Math.min;\nmodule.exports = function (it) {\n return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n\n\n/***/ }),\n\n/***/ \"9e1e\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !__webpack_require__(\"79e5\")(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n\n\n/***/ }),\n\n/***/ \"a159\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = __webpack_require__(\"e4ae\");\nvar dPs = __webpack_require__(\"7e90\");\nvar enumBugKeys = __webpack_require__(\"1691\");\nvar IE_PROTO = __webpack_require__(\"5559\")('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = __webpack_require__(\"1ec9\")('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n __webpack_require__(\"32fc\").appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n\n\n/***/ }),\n\n/***/ \"a4bb\":\n/***/ (function(module, exports, __webpack_require__) {\n\nmodule.exports = __webpack_require__(\"8aae\");\n\n/***/ }),\n\n/***/ \"aa77\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar $export = __webpack_require__(\"5ca1\");\nvar defined = __webpack_require__(\"be13\");\nvar fails = __webpack_require__(\"79e5\");\nvar spaces = __webpack_require__(\"fdef\");\nvar space = '[' + spaces + ']';\nvar non = '\\u200b\\u0085';\nvar ltrim = RegExp('^' + space + space + '*');\nvar rtrim = RegExp(space + space + '*$');\n\nvar exporter = function (KEY, exec, ALIAS) {\n var exp = {};\n var FORCE = fails(function () {\n return !!spaces[KEY]() || non[KEY]() != non;\n });\n var fn = exp[KEY] = FORCE ? exec(trim) : spaces[KEY];\n if (ALIAS) exp[ALIAS] = fn;\n $export($export.P + $export.F * FORCE, 'String', exp);\n};\n\n// 1 -> String#trimLeft\n// 2 -> String#trimRight\n// 3 -> String#trim\nvar trim = exporter.trim = function (string, TYPE) {\n string = String(defined(string));\n if (TYPE & 1) string = string.replace(ltrim, '');\n if (TYPE & 2) string = string.replace(rtrim, '');\n return string;\n};\n\nmodule.exports = exporter;\n\n\n/***/ }),\n\n/***/ \"aae3\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 7.2.8 IsRegExp(argument)\nvar isObject = __webpack_require__(\"d3f4\");\nvar cof = __webpack_require__(\"2d95\");\nvar MATCH = __webpack_require__(\"2b4c\")('match');\nmodule.exports = function (it) {\n var isRegExp;\n return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp');\n};\n\n\n/***/ }),\n\n/***/ \"ac6a\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar $iterators = __webpack_require__(\"cadf\");\nvar getKeys = __webpack_require__(\"0d58\");\nvar redefine = __webpack_require__(\"2aba\");\nvar global = __webpack_require__(\"7726\");\nvar hide = __webpack_require__(\"32e9\");\nvar Iterators = __webpack_require__(\"84f2\");\nvar wks = __webpack_require__(\"2b4c\");\nvar ITERATOR = wks('iterator');\nvar TO_STRING_TAG = wks('toStringTag');\nvar ArrayValues = Iterators.Array;\n\nvar DOMIterables = {\n CSSRuleList: true, // TODO: Not spec compliant, should be false.\n CSSStyleDeclaration: false,\n CSSValueList: false,\n ClientRectList: false,\n DOMRectList: false,\n DOMStringList: false,\n DOMTokenList: true,\n DataTransferItemList: false,\n FileList: false,\n HTMLAllCollection: false,\n HTMLCollection: false,\n HTMLFormElement: false,\n HTMLSelectElement: false,\n MediaList: true, // TODO: Not spec compliant, should be false.\n MimeTypeArray: false,\n NamedNodeMap: false,\n NodeList: true,\n PaintRequestList: false,\n Plugin: false,\n PluginArray: false,\n SVGLengthList: false,\n SVGNumberList: false,\n SVGPathSegList: false,\n SVGPointList: false,\n SVGStringList: false,\n SVGTransformList: false,\n SourceBufferList: false,\n StyleSheetList: true, // TODO: Not spec compliant, should be false.\n TextTrackCueList: false,\n TextTrackList: false,\n TouchList: false\n};\n\nfor (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++) {\n var NAME = collections[i];\n var explicit = DOMIterables[NAME];\n var Collection = global[NAME];\n var proto = Collection && Collection.prototype;\n var key;\n if (proto) {\n if (!proto[ITERATOR]) hide(proto, ITERATOR, ArrayValues);\n if (!proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);\n Iterators[NAME] = ArrayValues;\n if (explicit) for (key in $iterators) if (!proto[key]) redefine(proto, key, $iterators[key], true);\n }\n}\n\n\n/***/ }),\n\n/***/ \"aebd\":\n/***/ (function(module, exports) {\n\nmodule.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n\n\n/***/ }),\n\n/***/ \"b447\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 7.1.15 ToLength\nvar toInteger = __webpack_require__(\"3a38\");\nvar min = Math.min;\nmodule.exports = function (it) {\n return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n\n\n/***/ }),\n\n/***/ \"b8e3\":\n/***/ (function(module, exports) {\n\nmodule.exports = true;\n\n\n/***/ }),\n\n/***/ \"ba99\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// all object keys, includes non-enumerable and symbols\nvar gOPN = __webpack_require__(\"6abf\");\nvar gOPS = __webpack_require__(\"9aa9\");\nvar anObject = __webpack_require__(\"e4ae\");\nvar Reflect = __webpack_require__(\"e53d\").Reflect;\nmodule.exports = Reflect && Reflect.ownKeys || function ownKeys(it) {\n var keys = gOPN.f(anObject(it));\n var getSymbols = gOPS.f;\n return getSymbols ? keys.concat(getSymbols(it)) : keys;\n};\n\n\n/***/ }),\n\n/***/ \"be13\":\n/***/ (function(module, exports) {\n\n// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n\n\n/***/ }),\n\n/***/ \"bf0b\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar pIE = __webpack_require__(\"355d\");\nvar createDesc = __webpack_require__(\"aebd\");\nvar toIObject = __webpack_require__(\"36c3\");\nvar toPrimitive = __webpack_require__(\"1bc3\");\nvar has = __webpack_require__(\"07e3\");\nvar IE8_DOM_DEFINE = __webpack_require__(\"794b\");\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nexports.f = __webpack_require__(\"8e60\") ? gOPD : function getOwnPropertyDescriptor(O, P) {\n O = toIObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return gOPD(O, P);\n } catch (e) { /* empty */ }\n if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n};\n\n\n/***/ }),\n\n/***/ \"bf90\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\nvar toIObject = __webpack_require__(\"36c3\");\nvar $getOwnPropertyDescriptor = __webpack_require__(\"bf0b\").f;\n\n__webpack_require__(\"ce7e\")('getOwnPropertyDescriptor', function () {\n return function getOwnPropertyDescriptor(it, key) {\n return $getOwnPropertyDescriptor(toIObject(it), key);\n };\n});\n\n\n/***/ }),\n\n/***/ \"c366\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// false -> Array#indexOf\n// true -> Array#includes\nvar toIObject = __webpack_require__(\"6821\");\nvar toLength = __webpack_require__(\"9def\");\nvar toAbsoluteIndex = __webpack_require__(\"77f1\");\nmodule.exports = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n if (O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\n\n/***/ }),\n\n/***/ \"c3a1\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = __webpack_require__(\"e6f3\");\nvar enumBugKeys = __webpack_require__(\"1691\");\n\nmodule.exports = Object.keys || function keys(O) {\n return $keys(O, enumBugKeys);\n};\n\n\n/***/ }),\n\n/***/ \"c5f6\":\n/***/ (function(module, exports, __webpack_require__) {\n\n\"use strict\";\n\nvar global = __webpack_require__(\"7726\");\nvar has = __webpack_require__(\"69a8\");\nvar cof = __webpack_require__(\"2d95\");\nvar inheritIfRequired = __webpack_require__(\"5dbc\");\nvar toPrimitive = __webpack_require__(\"6a99\");\nvar fails = __webpack_require__(\"79e5\");\nvar gOPN = __webpack_require__(\"9093\").f;\nvar gOPD = __webpack_require__(\"11e9\").f;\nvar dP = __webpack_require__(\"86cc\").f;\nvar $trim = __webpack_require__(\"aa77\").trim;\nvar NUMBER = 'Number';\nvar $Number = global[NUMBER];\nvar Base = $Number;\nvar proto = $Number.prototype;\n// Opera ~12 has broken Object#toString\nvar BROKEN_COF = cof(__webpack_require__(\"2aeb\")(proto)) == NUMBER;\nvar TRIM = 'trim' in String.prototype;\n\n// 7.1.3 ToNumber(argument)\nvar toNumber = function (argument) {\n var it = toPrimitive(argument, false);\n if (typeof it == 'string' && it.length > 2) {\n it = TRIM ? it.trim() : $trim(it, 3);\n var first = it.charCodeAt(0);\n var third, radix, maxCode;\n if (first === 43 || first === 45) {\n third = it.charCodeAt(2);\n if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix\n } else if (first === 48) {\n switch (it.charCodeAt(1)) {\n case 66: case 98: radix = 2; maxCode = 49; break; // fast equal /^0b[01]+$/i\n case 79: case 111: radix = 8; maxCode = 55; break; // fast equal /^0o[0-7]+$/i\n default: return +it;\n }\n for (var digits = it.slice(2), i = 0, l = digits.length, code; i < l; i++) {\n code = digits.charCodeAt(i);\n // parseInt parses a string to a first unavailable symbol\n // but ToNumber should return NaN if a string contains unavailable symbols\n if (code < 48 || code > maxCode) return NaN;\n } return parseInt(digits, radix);\n }\n } return +it;\n};\n\nif (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) {\n $Number = function Number(value) {\n var it = arguments.length < 1 ? 0 : value;\n var that = this;\n return that instanceof $Number\n // check on 1..constructor(foo) case\n && (BROKEN_COF ? fails(function () { proto.valueOf.call(that); }) : cof(that) != NUMBER)\n ? inheritIfRequired(new Base(toNumber(it)), that, $Number) : toNumber(it);\n };\n for (var keys = __webpack_require__(\"9e1e\") ? gOPN(Base) : (\n // ES3:\n 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +\n // ES6 (in case, if modules with ES6 Number statics required before):\n 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +\n 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger'\n ).split(','), j = 0, key; keys.length > j; j++) {\n if (has(Base, key = keys[j]) && !has($Number, key)) {\n dP($Number, key, gOPD(Base, key));\n }\n }\n $Number.prototype = proto;\n proto.constructor = $Number;\n __webpack_require__(\"2aba\")(global, NUMBER, $Number);\n}\n\n\n/***/ }),\n\n/***/ \"c69a\":\n/***/ (function(module, exports, __webpack_require__) {\n\nmodule.exports = !__webpack_require__(\"9e1e\") && !__webpack_require__(\"79e5\")(function () {\n return Object.defineProperty(__webpack_require__(\"230e\")('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n\n\n/***/ }),\n\n/***/ \"ca5a\":\n/***/ (function(module, exports) {\n\nvar id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n\n\n/***/ }),\n\n/***/ \"cadf\":\n/***/ (function(module, exports, __webpack_require__) {\n\n\"use strict\";\n\nvar addToUnscopables = __webpack_require__(\"9c6c\");\nvar step = __webpack_require__(\"d53b\");\nvar Iterators = __webpack_require__(\"84f2\");\nvar toIObject = __webpack_require__(\"6821\");\n\n// 22.1.3.4 Array.prototype.entries()\n// 22.1.3.13 Array.prototype.keys()\n// 22.1.3.29 Array.prototype.values()\n// 22.1.3.30 Array.prototype[@@iterator]()\nmodule.exports = __webpack_require__(\"01f9\")(Array, 'Array', function (iterated, kind) {\n this._t = toIObject(iterated); // target\n this._i = 0; // next index\n this._k = kind; // kind\n// 22.1.5.2.1 %ArrayIteratorPrototype%.next()\n}, function () {\n var O = this._t;\n var kind = this._k;\n var index = this._i++;\n if (!O || index >= O.length) {\n this._t = undefined;\n return step(1);\n }\n if (kind == 'keys') return step(0, index);\n if (kind == 'values') return step(0, O[index]);\n return step(0, [index, O[index]]);\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)\nIterators.Arguments = Iterators.Array;\n\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n\n\n/***/ }),\n\n/***/ \"cb7c\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar isObject = __webpack_require__(\"d3f4\");\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n\n\n/***/ }),\n\n/***/ \"ccb9\":\n/***/ (function(module, exports, __webpack_require__) {\n\nexports.f = __webpack_require__(\"5168\");\n\n\n/***/ }),\n\n/***/ \"ce10\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar has = __webpack_require__(\"69a8\");\nvar toIObject = __webpack_require__(\"6821\");\nvar arrayIndexOf = __webpack_require__(\"c366\")(false);\nvar IE_PROTO = __webpack_require__(\"613b\")('IE_PROTO');\n\nmodule.exports = function (object, names) {\n var O = toIObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~arrayIndexOf(result, key) || result.push(key);\n }\n return result;\n};\n\n\n/***/ }),\n\n/***/ \"ce7e\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// most Object methods by ES6 should accept primitives\nvar $export = __webpack_require__(\"63b6\");\nvar core = __webpack_require__(\"584a\");\nvar fails = __webpack_require__(\"294c\");\nmodule.exports = function (KEY, exec) {\n var fn = (core.Object || {})[KEY] || Object[KEY];\n var exp = {};\n exp[KEY] = exec(fn);\n $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp);\n};\n\n\n/***/ }),\n\n/***/ \"d2c8\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// helper for String#{startsWith, endsWith, includes}\nvar isRegExp = __webpack_require__(\"aae3\");\nvar defined = __webpack_require__(\"be13\");\n\nmodule.exports = function (that, searchString, NAME) {\n if (isRegExp(searchString)) throw TypeError('String#' + NAME + \" doesn't accept regex!\");\n return String(defined(that));\n};\n\n\n/***/ }),\n\n/***/ \"d3f4\":\n/***/ (function(module, exports) {\n\nmodule.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n\n\n/***/ }),\n\n/***/ \"d53b\":\n/***/ (function(module, exports) {\n\nmodule.exports = function (done, value) {\n return { value: value, done: !!done };\n};\n\n\n/***/ }),\n\n/***/ \"d847\":\n/***/ (function(module, exports, __webpack_require__) {\n\nmodule.exports = __webpack_require__(\"5bba\");\n\n/***/ }),\n\n/***/ \"d864\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// optional / simple context binding\nvar aFunction = __webpack_require__(\"79aa\");\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n\n\n/***/ }),\n\n/***/ \"d8e8\":\n/***/ (function(module, exports) {\n\nmodule.exports = function (it) {\n if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n return it;\n};\n\n\n/***/ }),\n\n/***/ \"d9f6\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar anObject = __webpack_require__(\"e4ae\");\nvar IE8_DOM_DEFINE = __webpack_require__(\"794b\");\nvar toPrimitive = __webpack_require__(\"1bc3\");\nvar dP = Object.defineProperty;\n\nexports.f = __webpack_require__(\"8e60\") ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return dP(O, P, Attributes);\n } catch (e) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n\n\n/***/ }),\n\n/***/ \"dbdb\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar core = __webpack_require__(\"584a\");\nvar global = __webpack_require__(\"e53d\");\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: core.version,\n mode: __webpack_require__(\"b8e3\") ? 'pure' : 'global',\n copyright: '© 2020 Denis Pushkarev (zloirock.ru)'\n});\n\n\n/***/ }),\n\n/***/ \"e0f4\":\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_index_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_lib_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_EmailEditor_vue_vue_type_style_index_0_id_eb864766_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(\"7fda\");\n/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_index_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_lib_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_EmailEditor_vue_vue_type_style_index_0_id_eb864766_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_index_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_lib_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_EmailEditor_vue_vue_type_style_index_0_id_eb864766_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__);\n/* unused harmony reexport * */\n\n\n/***/ }),\n\n/***/ \"e11e\":\n/***/ (function(module, exports) {\n\n// IE 8- don't enum bug keys\nmodule.exports = (\n 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n\n\n/***/ }),\n\n/***/ \"e265\":\n/***/ (function(module, exports, __webpack_require__) {\n\nmodule.exports = __webpack_require__(\"ed33\");\n\n/***/ }),\n\n/***/ \"e4ae\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar isObject = __webpack_require__(\"f772\");\nmodule.exports = function (it) {\n if (!isObject(it)) throw TypeError(it + ' is not an object!');\n return it;\n};\n\n\n/***/ }),\n\n/***/ \"e53d\":\n/***/ (function(module, exports) {\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n ? window : typeof self != 'undefined' && self.Math == Math ? self\n // eslint-disable-next-line no-new-func\n : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n\n\n/***/ }),\n\n/***/ \"e6f3\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar has = __webpack_require__(\"07e3\");\nvar toIObject = __webpack_require__(\"36c3\");\nvar arrayIndexOf = __webpack_require__(\"5b4e\")(false);\nvar IE_PROTO = __webpack_require__(\"5559\")('IE_PROTO');\n\nmodule.exports = function (object, names) {\n var O = toIObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~arrayIndexOf(result, key) || result.push(key);\n }\n return result;\n};\n\n\n/***/ }),\n\n/***/ \"ebfd\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar META = __webpack_require__(\"62a0\")('meta');\nvar isObject = __webpack_require__(\"f772\");\nvar has = __webpack_require__(\"07e3\");\nvar setDesc = __webpack_require__(\"d9f6\").f;\nvar id = 0;\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\nvar FREEZE = !__webpack_require__(\"294c\")(function () {\n return isExtensible(Object.preventExtensions({}));\n});\nvar setMeta = function (it) {\n setDesc(it, META, { value: {\n i: 'O' + ++id, // object ID\n w: {} // weak collections IDs\n } });\n};\nvar fastKey = function (it, create) {\n // return primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, META)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMeta(it);\n // return object ID\n } return it[META].i;\n};\nvar getWeak = function (it, create) {\n if (!has(it, META)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMeta(it);\n // return hash weak collections IDs\n } return it[META].w;\n};\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZE && meta.NEED && isExtensible(it) && !has(it, META)) setMeta(it);\n return it;\n};\nvar meta = module.exports = {\n KEY: META,\n NEED: false,\n fastKey: fastKey,\n getWeak: getWeak,\n onFreeze: onFreeze\n};\n\n\n/***/ }),\n\n/***/ \"ed33\":\n/***/ (function(module, exports, __webpack_require__) {\n\n__webpack_require__(\"014b\");\nmodule.exports = __webpack_require__(\"584a\").Object.getOwnPropertySymbols;\n\n\n/***/ }),\n\n/***/ \"ee6d\":\n/***/ (function(module, exports, __webpack_require__) {\n\n// https://github.com/tc39/proposal-object-getownpropertydescriptors\nvar $export = __webpack_require__(\"63b6\");\nvar ownKeys = __webpack_require__(\"ba99\");\nvar toIObject = __webpack_require__(\"36c3\");\nvar gOPD = __webpack_require__(\"bf0b\");\nvar createProperty = __webpack_require__(\"20fd\");\n\n$export($export.S, 'Object', {\n getOwnPropertyDescriptors: function getOwnPropertyDescriptors(object) {\n var O = toIObject(object);\n var getDesc = gOPD.f;\n var keys = ownKeys(O);\n var result = {};\n var i = 0;\n var key, desc;\n while (keys.length > i) {\n desc = getDesc(O, key = keys[i++]);\n if (desc !== undefined) createProperty(result, key, desc);\n }\n return result;\n }\n});\n\n\n/***/ }),\n\n/***/ \"f772\":\n/***/ (function(module, exports) {\n\nmodule.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n\n\n/***/ }),\n\n/***/ \"fa5b\":\n/***/ (function(module, exports, __webpack_require__) {\n\nmodule.exports = __webpack_require__(\"5537\")('native-function-to-string', Function.toString);\n\n\n/***/ }),\n\n/***/ \"fab2\":\n/***/ (function(module, exports, __webpack_require__) {\n\nvar document = __webpack_require__(\"7726\").document;\nmodule.exports = document && document.documentElement;\n\n\n/***/ }),\n\n/***/ \"fb15\":\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n// ESM COMPAT FLAG\n__webpack_require__.r(__webpack_exports__);\n\n// EXPORTS\n__webpack_require__.d(__webpack_exports__, \"EmailEditor\", function() { return /* reexport */ EmailEditor; });\n\n// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js\n// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var setPublicPath_i\n if ((setPublicPath_i = window.document.currentScript) && (setPublicPath_i = setPublicPath_i.src.match(/(.+\\/)[^/]+\\.js$/))) {\n __webpack_require__.p = setPublicPath_i[1] // eslint-disable-line\n }\n}\n\n// Indicate to webpack that this file can be concatenated\n/* harmony default export */ var setPublicPath = (null);\n\n// EXTERNAL MODULE: ./node_modules/core-js/modules/es6.function.name.js\nvar es6_function_name = __webpack_require__(\"7f7f\");\n\n// EXTERNAL MODULE: ./node_modules/core-js/modules/es6.array.iterator.js\nvar es6_array_iterator = __webpack_require__(\"cadf\");\n\n// EXTERNAL MODULE: ./node_modules/core-js/modules/es6.object.keys.js\nvar es6_object_keys = __webpack_require__(\"456d\");\n\n// EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom.iterable.js\nvar web_dom_iterable = __webpack_require__(\"ac6a\");\n\n// EXTERNAL MODULE: external {\"commonjs\":\"vue\",\"commonjs2\":\"vue\",\"root\":\"Vue\"}\nvar external_commonjs_vue_commonjs2_vue_root_Vue_ = __webpack_require__(\"8bbf\");\nvar external_commonjs_vue_commonjs2_vue_root_Vue_default = /*#__PURE__*/__webpack_require__.n(external_commonjs_vue_commonjs2_vue_root_Vue_);\n\n// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{\"cacheDirectory\":\"node_modules/.cache/vue-loader\",\"cacheIdentifier\":\"2bdac753-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/components/EmailEditor.vue?vue&type=template&id=eb864766&scoped=true&\nvar render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"unlayer-editor\",style:({ minHeight: _vm.minHeight }),attrs:{\"id\":_vm.id}})}\nvar staticRenderFns = []\n\n\n// CONCATENATED MODULE: ./src/components/EmailEditor.vue?vue&type=template&id=eb864766&scoped=true&\n\n// EXTERNAL MODULE: ./node_modules/@babel/runtime-corejs2/core-js/object/keys.js\nvar object_keys = __webpack_require__(\"a4bb\");\nvar keys_default = /*#__PURE__*/__webpack_require__.n(object_keys);\n\n// EXTERNAL MODULE: ./node_modules/@babel/runtime-corejs2/core-js/object/get-own-property-symbols.js\nvar get_own_property_symbols = __webpack_require__(\"e265\");\nvar get_own_property_symbols_default = /*#__PURE__*/__webpack_require__.n(get_own_property_symbols);\n\n// EXTERNAL MODULE: ./node_modules/@babel/runtime-corejs2/core-js/object/get-own-property-descriptor.js\nvar get_own_property_descriptor = __webpack_require__(\"268f\");\nvar get_own_property_descriptor_default = /*#__PURE__*/__webpack_require__.n(get_own_property_descriptor);\n\n// EXTERNAL MODULE: ./node_modules/@babel/runtime-corejs2/core-js/object/get-own-property-descriptors.js\nvar get_own_property_descriptors = __webpack_require__(\"5e83\");\nvar get_own_property_descriptors_default = /*#__PURE__*/__webpack_require__.n(get_own_property_descriptors);\n\n// EXTERNAL MODULE: ./node_modules/@babel/runtime-corejs2/core-js/object/define-properties.js\nvar define_properties = __webpack_require__(\"d847\");\nvar define_properties_default = /*#__PURE__*/__webpack_require__.n(define_properties);\n\n// EXTERNAL MODULE: ./node_modules/@babel/runtime-corejs2/core-js/object/define-property.js\nvar define_property = __webpack_require__(\"85f2\");\nvar define_property_default = /*#__PURE__*/__webpack_require__.n(define_property);\n\n// CONCATENATED MODULE: ./node_modules/@babel/runtime-corejs2/helpers/esm/defineProperty.js\n\nfunction _defineProperty(obj, key, value) {\n if (key in obj) {\n define_property_default()(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n// CONCATENATED MODULE: ./node_modules/@babel/runtime-corejs2/helpers/esm/objectSpread2.js\n\n\n\n\n\n\n\n\nfunction ownKeys(object, enumerableOnly) {\n var keys = keys_default()(object);\n\n if (get_own_property_symbols_default.a) {\n var symbols = get_own_property_symbols_default()(object);\n\n if (enumerableOnly) {\n symbols = symbols.filter(function (sym) {\n return get_own_property_descriptor_default()(object, sym).enumerable;\n });\n }\n\n keys.push.apply(keys, symbols);\n }\n\n return keys;\n}\n\nfunction _objectSpread2(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (get_own_property_descriptors_default.a) {\n define_properties_default()(target, get_own_property_descriptors_default()(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n define_property_default()(target, key, get_own_property_descriptor_default()(source, key));\n });\n }\n }\n\n return target;\n}\n// EXTERNAL MODULE: ./node_modules/core-js/modules/es6.number.constructor.js\nvar es6_number_constructor = __webpack_require__(\"c5f6\");\n\n// EXTERNAL MODULE: ./node_modules/core-js/modules/es7.array.includes.js\nvar es7_array_includes = __webpack_require__(\"6762\");\n\n// EXTERNAL MODULE: ./node_modules/core-js/modules/es6.string.includes.js\nvar es6_string_includes = __webpack_require__(\"2fdb\");\n\n// CONCATENATED MODULE: ./src/components/loadScript.js\n\n\n\nvar scriptUrl = '//editor.unlayer.com/embed.js?2';\nvar callbacks = [];\nvar loaded = false;\n\nvar isScriptInjected = function isScriptInjected() {\n var scripts = document.querySelectorAll('script');\n var injected = false;\n scripts.forEach(function (script) {\n if (script.src.includes(scriptUrl)) {\n injected = true;\n }\n });\n return injected;\n};\n\nvar addCallback = function addCallback(callback) {\n callbacks.push(callback);\n};\n\nvar runCallbacks = function runCallbacks() {\n if (loaded) {\n var callback;\n\n while (callback = callbacks.shift()) {\n callback();\n }\n }\n};\n\nvar loadScript = function loadScript(callback) {\n addCallback(callback);\n\n if (!isScriptInjected()) {\n var embedScript = document.createElement('script');\n embedScript.setAttribute('src', scriptUrl);\n\n embedScript.onload = function () {\n loaded = true;\n runCallbacks();\n };\n\n document.head.appendChild(embedScript);\n } else {\n runCallbacks();\n }\n};\n// EXTERNAL MODULE: ./package.json\nvar package_0 = __webpack_require__(\"9224\");\n\n// 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/components/EmailEditor.vue?vue&type=script&lang=js&\n\n\n\n//\n//\n//\n//\n//\n//\n//\n//\n\n\nvar lastEditorId = 0;\n/* harmony default export */ var EmailEditorvue_type_script_lang_js_ = ({\n name: 'EmailEditor',\n props: {\n editorId: String,\n options: Object,\n projectId: Number,\n tools: Object,\n appearance: Object,\n locale: String,\n minHeight: {\n type: String,\n default: '500px'\n }\n },\n computed: {\n id: function id() {\n return this.editorId || \"editor-\".concat(++lastEditorId);\n }\n },\n mounted: function mounted() {\n loadScript(this.loadEditor.bind(this));\n },\n methods: {\n loadEditor: function loadEditor() {\n var _this = this;\n\n var options = this.options || {};\n\n if (this.projectId) {\n options.projectId = this.projectId;\n }\n\n if (this.tools) {\n options.tools = this.tools;\n }\n\n if (this.appearance) {\n options.appearance = this.appearance;\n }\n\n if (this.locale) {\n options.locale = this.locale;\n }\n /* global unlayer */\n\n\n this.editor = unlayer.createEditor(_objectSpread2(_objectSpread2({}, options), {}, {\n id: this.id,\n displayMode: 'email',\n source: {\n name: package_0.name,\n version: package_0.version\n }\n }));\n this.$emit('load');\n this.editor.addEventListener('editor:ready', function () {\n _this.$emit('ready');\n });\n },\n loadDesign: function loadDesign(design) {\n this.editor.loadDesign(design);\n },\n saveDesign: function saveDesign(callback) {\n this.editor.saveDesign(callback);\n },\n exportHtml: function exportHtml(callback) {\n this.editor.exportHtml(callback);\n }\n }\n});\n// CONCATENATED MODULE: ./src/components/EmailEditor.vue?vue&type=script&lang=js&\n /* harmony default export */ var components_EmailEditorvue_type_script_lang_js_ = (EmailEditorvue_type_script_lang_js_); \n// EXTERNAL MODULE: ./src/components/EmailEditor.vue?vue&type=style&index=0&id=eb864766&scoped=true&lang=css&\nvar EmailEditorvue_type_style_index_0_id_eb864766_scoped_true_lang_css_ = __webpack_require__(\"e0f4\");\n\n// CONCATENATED MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js\n/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nfunction normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + 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 = shadowMode\n ? function () {\n injectStyles.call(\n this,\n (options.functional ? this.parent : this).$root.$options.shadowRoot\n )\n }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functional component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n\n// CONCATENATED MODULE: ./src/components/EmailEditor.vue\n\n\n\n\n\n\n/* normalize component */\n\nvar component = normalizeComponent(\n components_EmailEditorvue_type_script_lang_js_,\n render,\n staticRenderFns,\n false,\n null,\n \"eb864766\",\n null\n \n)\n\n/* harmony default export */ var EmailEditor = (component.exports);\n// CONCATENATED MODULE: ./src/components/index.js\n\n\n\n\n\n\nvar Components = {\n EmailEditor: EmailEditor\n};\nObject.keys(Components).forEach(function (name) {\n external_commonjs_vue_commonjs2_vue_root_Vue_default.a.component(name, Components[name]);\n});\n\n/* harmony default export */ var components = (Components);\n// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js\n\n\n/* harmony default export */ var entry_lib = __webpack_exports__[\"default\"] = (components);\n\n\n\n/***/ }),\n\n/***/ \"fde4\":\n/***/ (function(module, exports, __webpack_require__) {\n\n__webpack_require__(\"bf90\");\nvar $Object = __webpack_require__(\"584a\").Object;\nmodule.exports = function getOwnPropertyDescriptor(it, key) {\n return $Object.getOwnPropertyDescriptor(it, key);\n};\n\n\n/***/ }),\n\n/***/ \"fdef\":\n/***/ (function(module, exports) {\n\nmodule.exports = '\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003' +\n '\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF';\n\n\n/***/ })\n\n/******/ });\n//# sourceMappingURL=vue-email-editor.common.js.map","// Components\nimport VWindow from './VWindow'\n\n// Mixins\nimport Bootable from '../../mixins/bootable'\nimport { factory as GroupableFactory } from '../../mixins/groupable'\n\n// Directives\nimport Touch from '../../directives/touch'\n\n// Utilities\nimport { convertToUnit } from '../../util/helpers'\nimport mixins, { ExtractVue } from '../../util/mixins'\n\n// Types\nimport { VNode } from 'vue'\n\nconst baseMixins = mixins(\n Bootable,\n GroupableFactory('windowGroup', 'v-window-item', 'v-window')\n)\n\ninterface options extends ExtractVue {\n $el: HTMLElement\n windowGroup: InstanceType\n}\n\nexport default baseMixins.extend().extend(\n /* @vue/component */\n).extend({\n name: 'v-window-item',\n\n directives: {\n Touch,\n },\n\n props: {\n disabled: Boolean,\n reverseTransition: {\n type: [Boolean, String],\n default: undefined,\n },\n transition: {\n type: [Boolean, String],\n default: undefined,\n },\n value: {\n required: false,\n },\n },\n\n data () {\n return {\n isActive: false,\n inTransition: false,\n }\n },\n\n computed: {\n classes (): object {\n return this.groupClasses\n },\n computedTransition (): string | boolean {\n if (!this.windowGroup.internalReverse) {\n return typeof this.transition !== 'undefined'\n ? this.transition || ''\n : this.windowGroup.computedTransition\n }\n\n return typeof this.reverseTransition !== 'undefined'\n ? this.reverseTransition || ''\n : this.windowGroup.computedTransition\n },\n },\n\n methods: {\n genDefaultSlot () {\n return this.$slots.default\n },\n genWindowItem () {\n return this.$createElement('div', {\n staticClass: 'v-window-item',\n class: this.classes,\n directives: [{\n name: 'show',\n value: this.isActive,\n }],\n on: this.$listeners,\n }, this.genDefaultSlot())\n },\n onAfterTransition () {\n if (!this.inTransition) {\n return\n }\n\n // Finalize transition state.\n this.inTransition = false\n if (this.windowGroup.transitionCount > 0) {\n this.windowGroup.transitionCount--\n\n // Remove container height if we are out of transition.\n if (this.windowGroup.transitionCount === 0) {\n this.windowGroup.transitionHeight = undefined\n }\n }\n },\n onBeforeTransition () {\n if (this.inTransition) {\n return\n }\n\n // Initialize transition state here.\n this.inTransition = true\n if (this.windowGroup.transitionCount === 0) {\n // Set initial height for height transition.\n this.windowGroup.transitionHeight = convertToUnit(this.windowGroup.$el.clientHeight)\n }\n this.windowGroup.transitionCount++\n },\n onTransitionCancelled () {\n this.onAfterTransition() // This should have the same path as normal transition end.\n },\n onEnter (el: HTMLElement) {\n if (!this.inTransition) {\n return\n }\n\n this.$nextTick(() => {\n // Do not set height if no transition or cancelled.\n if (!this.computedTransition || !this.inTransition) {\n return\n }\n\n // Set transition target height.\n this.windowGroup.transitionHeight = convertToUnit(el.clientHeight)\n })\n },\n },\n\n render (h): VNode {\n return h('transition', {\n props: {\n name: this.computedTransition,\n },\n on: {\n // Handlers for enter windows.\n beforeEnter: this.onBeforeTransition,\n afterEnter: this.onAfterTransition,\n enterCancelled: this.onTransitionCancelled,\n\n // Handlers for leave windows.\n beforeLeave: this.onBeforeTransition,\n afterLeave: this.onAfterTransition,\n leaveCancelled: this.onTransitionCancelled,\n\n // Enter handler for height transition.\n enter: this.onEnter,\n },\n }, this.showLazyContent(() => [this.genWindowItem()]))\n },\n})\n","// Extensions\nimport VWindowItem from '../VWindow/VWindowItem'\n\n/* @vue/component */\nexport default VWindowItem.extend({\n name: 'v-tab-item',\n\n props: {\n id: String,\n },\n\n methods: {\n genWindowItem () {\n const item = VWindowItem.options.methods.genWindowItem.call(this)\n\n item.data!.domProps = item.data!.domProps || {}\n item.data!.domProps.id = this.id || this.value\n\n return item\n },\n },\n})\n","module.exports = __webpack_public_path__ + \"img/1.0c43f9ad.jpg\";","export default [\n {\n name: 'Béžové sandálky na nízkém sloupku',\n img: require('@/assets/newsletter-preview/1.jpg'),\n description: 'Béžové sandálky na nízkém sloupku jsou vyrobeny z eko semiše. Lze je využít i na slavnostnější příležitost. Vhodné na jaro a léto.',\n price: '327 Kč',\n originalPrice: '408 Kč',\n sale: 20\n },\n {\n name: 'Fuchsiové lodičky',\n img: require('@/assets/newsletter-preview/2.jpg'),\n description: 'Elegantní fuchsiové lodičky osvěží Váš šatník. Lodičky jsou vyrobené z eko semiše. Vhodné na jaro a léto.',\n price: '327 Kč',\n originalPrice: '545 Kč',\n sale: 40\n },\n {\n name: 'Klasické bíle tenisky',\n img: require('@/assets/newsletter-preview/3.jpg'),\n description: 'Klasické bíle tenisky jsou nepostradatelným doplňkem každého šatníku. Výběrem těchto tenisek prostě neuděláte chybu. Tenisky jsou vyrobené z textilie a jsou vhodné na jaro a léto.',\n price: '199 Kč',\n originalPrice: '284 Kč',\n sale: 30\n },\n {\n name: 'Kožené boty na sloupku',\n img: require('@/assets/newsletter-preview/4.jpg'),\n description: 'V těchto červených botách na sloupku budete rafinovaně přitažlivá při každé příležitosti. Boty jsou vyrobeny z přírodní kůže s třpytivými detaily na sloupku boty.',\n price: '637 Kč',\n originalPrice: '850 Kč',\n sale: 25\n },\n {\n name: 'Lesklé nízké holínky',\n img: require('@/assets/newsletter-preview/5.jpg'),\n description: 'I za deště můžete působit elegantně v těchto nízkých holinkách. Šmrnc těm to holinkám dodává lesklé zpracování a výrazná guma v oblasti kotníků.',\n price: '391 Kč',\n originalPrice: '1303 Kč',\n sale: 70\n },\n {\n name: 'Lodičky s přezkou sergio leone',\n img: require('@/assets/newsletter-preview/6.jpg'),\n description: 'S těmi to výrazně červenými lodičkami budete hvězdou každého večírku. Detail pásku v oblasti nártu Vám krásně zvýrazní linii nohy. Lodičky jsou vyrobeny z eko semiše. Vhodné na slavnostní příležitost.',\n price: '530 Kč',\n originalPrice: '883 Kč',\n sale: 40\n },\n {\n name: 'Kožené růžové lordsy',\n img: require('@/assets/newsletter-preview/7.jpg'),\n description: 'Kožené růžové lordsy s rafinovanou podrážkou jsou vhodné jak do města tak i na procházky do přírody. Vyrobené jsou z přírodní kůže. Boty jsou prodyšné. Vhodné na jaro a léto.',\n price: '530 Kč',\n originalPrice: '662 Kč',\n sale: 20\n },\n {\n name: 'Sneakersy s brokátem na platformě',\n img: require('@/assets/newsletter-preview/8.jpg'),\n description: 'Černobílé sneakersy na platformě jsou vyrobeny z eko kůže. Třpytivý detail v podrážce boty vytváří jedinečný dojem. Vhodné jsou jak do města tak do přírody.',\n price: '391 Kč',\n originalPrice: '488 Kč',\n sale: 20\n },\n {\n name: 'Stylové kozačky na sloupku',\n img: require('@/assets/newsletter-preview/9.jpg'),\n description: 'Ty to stylové kozačky na sloupku jsou v letošním roce trendem číslo jedna. Kozačky jsou velice pohodlné a lze je kombinovat jak džinům tak sukni. Boty jsou vyrobeny z eko semiše v krásném béžovém odstínu.',\n price: '886 Kč',\n originalPrice: '1107 Kč',\n sale: 20\n },\n \n {\n name: 'Šněrovací polobotky ze semiše',\n img: require('@/assets/newsletter-preview/10.jpg'),\n description: 'Šněrovací polobotky ze semiše jsou vhodnou obuví pro ženy, které preferují pohodlný ale zároveň vkusný styl oblékání. U těchto bot byl použit eko semiš v černé barvě. Velice ležérní provedení Vám zaručí dobrou kombinovatelnost s Vaším šatníkem.',\n price: '391 Kč',\n originalPrice: '488 Kč',\n sale: 20\n },\n\n]","module.exports = __webpack_public_path__ + \"img/7.e6919b03.jpg\";","export default {\n data() {\n return {\n leaveDialog: false,\n dirty: false,\n nextRoute: null,\n force: false\n };\n },\n async beforeRouteUpdate(to, from, next) {\n //comes from entity-from mixin\n //console.debug('route update!');\n //console.debug(this.dirty);\n // the second part handles the situation when this mixin is together with the entity-form mixin in one component\n if (!this.force && (this.dirty || (typeof this.isDirty === 'function' && await this.isDirty()))) {\n this.leaveDialog = true;\n this.nextRoute = to;\n next(false);\n } else {\n this.force = false;\n next();\n }\n },\n async beforeRouteLeave(to, from, next) {\n //comes from entity-from mixin\n //console.debug('route leave!');\n //console.debug(this.dirty);\n if (!this.force && (this.dirty || (typeof this.isDirty ==='function' && await this.isDirty()))) {\n this.leaveDialog = true;\n this.nextRoute = to;\n next(false);\n } else {\n this.force = false;\n next()\n }\n },\n methods: {\n confirmLeave(answer) {\n //this.nextRoute(answer);\n if(answer) {\n this.force = true;\n this.$router.push(this.nextRoute);\n }\n }\n },\n}","module.exports = __webpack_public_path__ + \"img/4.86ce645b.jpg\";"],"sourceRoot":""}