├── LICENSE ├── README.md ├── docs ├── 0.801e04347c363009a3a0.bundle.js ├── 0.801e04347c363009a3a0.bundle.js.map ├── 1.801e04347c363009a3a0.bundle.js ├── 1.801e04347c363009a3a0.bundle.js.map ├── 10.801e04347c363009a3a0.bundle.js ├── 10.801e04347c363009a3a0.bundle.js.map ├── 11.801e04347c363009a3a0.bundle.js ├── 11.801e04347c363009a3a0.bundle.js.map ├── 12.801e04347c363009a3a0.bundle.js ├── 12.801e04347c363009a3a0.bundle.js.map ├── 13.801e04347c363009a3a0.bundle.js ├── 13.801e04347c363009a3a0.bundle.js.map ├── 14.801e04347c363009a3a0.bundle.js ├── 14.801e04347c363009a3a0.bundle.js.map ├── 15.801e04347c363009a3a0.bundle.js ├── 15.801e04347c363009a3a0.bundle.js.map ├── 16.801e04347c363009a3a0.bundle.js ├── 16.801e04347c363009a3a0.bundle.js.map ├── 17.801e04347c363009a3a0.bundle.js ├── 17.801e04347c363009a3a0.bundle.js.map ├── 18.801e04347c363009a3a0.bundle.js ├── 18.801e04347c363009a3a0.bundle.js.map ├── 19.801e04347c363009a3a0.bundle.js ├── 19.801e04347c363009a3a0.bundle.js.map ├── 2.801e04347c363009a3a0.bundle.js ├── 2.801e04347c363009a3a0.bundle.js.map ├── 20.801e04347c363009a3a0.bundle.js ├── 20.801e04347c363009a3a0.bundle.js.map ├── 21.801e04347c363009a3a0.bundle.js ├── 21.801e04347c363009a3a0.bundle.js.map ├── 3.801e04347c363009a3a0.bundle.js ├── 3.801e04347c363009a3a0.bundle.js.map ├── 4.801e04347c363009a3a0.bundle.js ├── 4.801e04347c363009a3a0.bundle.js.map ├── 8.801e04347c363009a3a0.bundle.js ├── 8.801e04347c363009a3a0.bundle.js.map ├── 9.801e04347c363009a3a0.bundle.js ├── 9.801e04347c363009a3a0.bundle.js.map ├── css │ ├── main.a92354b5.css │ └── vendors~main.753adc9d.css ├── favicon.ico ├── iframe.html ├── img │ ├── example.cee7e567.jpg │ ├── logo-mono.5ad59db3.png │ └── logo.82b9c7a5.png ├── index.html ├── main.801e04347c363009a3a0.bundle.js ├── main.801e04347c363009a3a0.bundle.js.map ├── main.85de14ae4a9f8455ed2b.bundle.js ├── runtime~main.6ac4c33d73ae9704bbb9.bundle.js ├── runtime~main.801e04347c363009a3a0.bundle.js ├── runtime~main.801e04347c363009a3a0.bundle.js.map ├── sb_dll │ ├── storybook_ui-manifest.json │ ├── storybook_ui_dll.LICENCE │ └── storybook_ui_dll.js ├── vendors~main.32d801998fec5d854c7f.bundle.js ├── vendors~main.801e04347c363009a3a0.bundle.js └── vendors~main.801e04347c363009a3a0.bundle.js.map ├── generator ├── app-template.js ├── index.js └── template │ ├── config │ └── storybook │ │ ├── config.js │ │ └── style.scss │ └── src │ ├── assets │ ├── example.jpg │ ├── logo-mono.png │ └── logo.png │ ├── components │ ├── atoms │ │ ├── .gitkeep │ │ ├── VButton │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VHamburger │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VHeading │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VIcon │ │ │ ├── icons │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── credit-card-american-express.svg │ │ │ │ ├── credit-card-diners-club.svg │ │ │ │ ├── credit-card-discover.svg │ │ │ │ ├── credit-card-elo.svg │ │ │ │ ├── credit-card-jcb.svg │ │ │ │ ├── credit-card-maestro.svg │ │ │ │ ├── credit-card-mastercard.svg │ │ │ │ ├── credit-card-unionpay.svg │ │ │ │ ├── credit-card-visa.svg │ │ │ │ ├── linkedin.svg │ │ │ │ └── twitter.svg │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VImage │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VInputCheckbox │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VInputCreditCard │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VInputRadio │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VInputTel │ │ │ ├── index.stories.js │ │ │ └── index.vue │ │ ├── VInputText │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VLabel │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VList │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VLoader │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VLogo │ │ │ └── index.vue │ │ ├── VNavItem │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VPlaceholder │ │ │ ├── graphics │ │ │ │ ├── bullet-list.vue │ │ │ │ ├── card.vue │ │ │ │ ├── image.vue │ │ │ │ ├── text.vue │ │ │ │ └── yosushi-logo.vue │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VSelect │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VTableCell │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VTableRow │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ └── VText │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ ├── molecules │ │ ├── .gitkeep │ │ ├── VAccordion │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VAccordionItem │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VCarousel │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VCarouselSlide │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VFormCheckbox │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VFormCreditCardNumber │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VFormExpiryDate │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VFormRadio │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VFormSelect │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VFormTel │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VFormText │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VLazyImage │ │ │ ├── index.stories.js │ │ │ └── index.vue │ │ ├── VNavList │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ ├── VTable │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ │ └── VValidationMessages │ │ │ └── index.vue │ ├── organisms │ │ ├── .gitkeep │ │ ├── VFormPayment │ │ │ ├── index.stories.js │ │ │ └── index.vue │ │ ├── VGenericForm │ │ │ ├── country-list.js │ │ │ ├── index.stories.js │ │ │ ├── index.vue │ │ │ └── security-questions.js │ │ └── VHeader │ │ │ ├── index.stories.js │ │ │ ├── index.test.js │ │ │ └── index.vue │ ├── pages │ │ └── .gitkeep │ └── templates │ │ └── .gitkeep │ ├── helpers │ ├── debounce.js │ ├── is-number-key.js │ ├── is-url.js │ ├── limit-length.js │ ├── only-digits.js │ ├── page-offset.js │ ├── throttle.js │ ├── uid.js │ ├── webp-support.js │ └── window-dimensions.js │ ├── mixins │ ├── scrollTo.js │ └── validationErrorMessages.js │ ├── scss │ └── utilities │ │ ├── __u-form-field.scss │ │ └── __utilities.scss │ ├── store.js │ ├── storeModules │ ├── .gitkeep │ └── global │ │ └── index.js │ └── validations │ ├── errorMessages.js │ └── index.js ├── index.js ├── package.json └── prompts.js /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Milad Alizadeh 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vue-cli-plugin-atomic-design-components 2 | 3 | TThis is Vue cli 3 plugin is a collection of generically used Vue components based on [Atomic Design ](http://bradfrost.com/blog/post/atomic-web-design/) methodology. This plugin is NOT an off the shelf library like Bootstrap or Vuetify but rather a starting point to save development time on generically used components and giving maximum control. 4 | 5 | This library depends on the following vue cli plugins 6 | 7 | [vue-cli-plugin-atomic-design](https://www.npmjs.com/package/vue-cli-plugin-atomic-design) 8 | 9 | [vue-cli-plugin-scss-base](https://github.com/milad-alizadeh/vue-cli-plugin-scss-base#readme) 10 | 11 | Upon install all the components are copied to `./src/components` folder and you can edit the components markup and styling as you wish. You can also delet the components you don't need to improve performance. This plugin uses [Storyook](https://github.com/storybooks/storybook) as the development enviornment to maximise reusability and ease of maintenence. It also is a design system. [Here is why](http://bradfrost.com/blog/post/style-guide-driven-design-systems/) a using design system is important. 12 | 13 | You can view the storybook demo of the app [here](https://milad-alizadeh.github.io/vue-cli-plugin-atomic-design-components). 14 | -------------------------------------------------------------------------------- /docs/0.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[0],{e528:function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__);var componentNormalizer=__webpack_require__("2877"),component=Object(componentNormalizer.a)({},function(_h,_vm){var _c=_vm._c;return _c("clipPath",{attrs:{id:_vm.props.shapeId}},[_vm._l(_vm.props.lines,function(n,index){return[_c("circle",{key:"circle"+index,attrs:{cx:"10",cy:index>0?index*_vm.props.lineScale+index*_vm.props.lineScale*_vm.props.lineHeight+_vm.props.lineScale:_vm.props.lineScale,r:"8"}}),_c("rect",{key:"rect"+index,attrs:{x:"25",y:index>0?index*_vm.props.lineScale+index*_vm.props.lineScale*_vm.props.lineHeight+_vm.props.lineScale/2:_vm.props.lineScale/2,rx:_vm.props.roundedCorners?_vm.props.lineScale/2:0,ry:_vm.props.roundedCorners?_vm.props.lineScale/2:0,height:_vm.props.lineScale,width:"240"}})]})],2)},[],!0,null,null,null);__webpack_exports__.default=component.exports}}]); 2 | //# sourceMappingURL=0.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/0.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"0.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VPlaceholder/graphics/bullet-list.vue"],"sourcesContent":["var render = function (_h,_vm) {var _c=_vm._c;return _c('clipPath',{attrs:{\"id\":_vm.props.shapeId}},[_vm._l((_vm.props.lines),function(n,index){return [_c('circle',{key:(\"circle\" + index),attrs:{\"cx\":\"10\",\"cy\":index > 0 ? (index * _vm.props.lineScale) + (index * _vm.props.lineScale * _vm.props.lineHeight) + _vm.props.lineScale : _vm.props.lineScale,\"r\":\"8\"}}),_c('rect',{key:(\"rect\" + index),attrs:{\"x\":\"25\",\"y\":index > 0 ? (index * _vm.props.lineScale) + (index * _vm.props.lineScale * _vm.props.lineHeight) + _vm.props.lineScale / 2 : _vm.props.lineScale / 2,\"rx\":_vm.props.roundedCorners ? _vm.props.lineScale / 2 : 0,\"ry\":_vm.props.roundedCorners ? _vm.props.lineScale / 2 : 0,\"height\":_vm.props.lineScale,\"width\":\"240\"}})]})],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }"],"mappings":"AAAA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/1.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[1],{1623:function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__);var componentNormalizer=__webpack_require__("2877"),component=Object(componentNormalizer.a)({},function(_h,_vm){var _c=_vm._c;return _c("clipPath",{attrs:{id:_vm.props.shapeId}},[_c("rect",{attrs:{x:"70",y:"15",rx:"4",ry:"4",width:"117",height:"6.4"}}),_c("rect",{attrs:{x:"70",y:"35",rx:"3",ry:"3",width:"85",height:"6.4"}}),_c("rect",{attrs:{x:"0",y:"80",rx:"3",ry:"3",width:"350",height:"6.4"}}),_c("rect",{attrs:{x:"1",y:"100",rx:"3",ry:"3",width:"380",height:"6.4"}}),_c("rect",{attrs:{x:"0",y:"120",rx:"3",ry:"3",width:"201",height:"6.4"}}),_c("circle",{attrs:{cx:"30",cy:"30",r:"30"}})])},[],!0,null,null,null);__webpack_exports__.default=component.exports}}]); 2 | //# sourceMappingURL=1.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/1.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"1.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VPlaceholder/graphics/card.vue"],"sourcesContent":["var render = function (_h,_vm) {var _c=_vm._c;return _c('clipPath',{attrs:{\"id\":_vm.props.shapeId}},[_c('rect',{attrs:{\"x\":\"70\",\"y\":\"15\",\"rx\":\"4\",\"ry\":\"4\",\"width\":\"117\",\"height\":\"6.4\"}}),_c('rect',{attrs:{\"x\":\"70\",\"y\":\"35\",\"rx\":\"3\",\"ry\":\"3\",\"width\":\"85\",\"height\":\"6.4\"}}),_c('rect',{attrs:{\"x\":\"0\",\"y\":\"80\",\"rx\":\"3\",\"ry\":\"3\",\"width\":\"350\",\"height\":\"6.4\"}}),_c('rect',{attrs:{\"x\":\"1\",\"y\":\"100\",\"rx\":\"3\",\"ry\":\"3\",\"width\":\"380\",\"height\":\"6.4\"}}),_c('rect',{attrs:{\"x\":\"0\",\"y\":\"120\",\"rx\":\"3\",\"ry\":\"3\",\"width\":\"201\",\"height\":\"6.4\"}}),_c('circle',{attrs:{\"cx\":\"30\",\"cy\":\"30\",\"r\":\"30\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }"],"mappings":"AAAA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/10.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[10],{b015:function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_exports__.default={functional:!0,render(_h,_vm){const{_c:_c,_v:_v,data:data,children:children=[]}=_vm,{class:classNames,staticClass:staticClass,style:style,staticStyle:staticStyle,attrs:attrs={},...rest}=data;return _c("svg",{class:[classNames,staticClass],style:[style,staticStyle],attrs:Object.assign({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 185.344 185.344"},attrs),...rest},children.concat([_c("path",{attrs:{d:"M92.672 144.373a10.707 10.707 0 0 1-7.593-3.138L3.145 59.301c-4.194-4.199-4.194-10.992 0-15.18a10.72 10.72 0 0 1 15.18 0l74.347 74.341 74.347-74.341a10.72 10.72 0 0 1 15.18 0c4.194 4.194 4.194 10.981 0 15.18l-81.939 81.934a10.694 10.694 0 0 1-7.588 3.138z",fill:"#010002"}})]))}}}}]); 2 | //# sourceMappingURL=10.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/10.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"10.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VIcon/icons/chevron-down.svg"],"sourcesContent":["\n export default {\n functional: true,\n render(_h, _vm) {\n const { _c, _v, data, children = [] } = _vm;\n\n const {\n class: classNames,\n staticClass,\n style,\n staticStyle,\n attrs = {},\n ...rest\n } = data;\n\n return _c(\n 'svg',\n {\n class: [classNames,staticClass],\n style: [style,staticStyle],\n attrs: Object.assign({\"xmlns\":\"http://www.w3.org/2000/svg\",\"viewBox\":\"0 0 185.344 185.344\"}, attrs),\n ...rest,\n },\n children.concat([_c('path',{attrs:{\"d\":\"M92.672 144.373a10.707 10.707 0 0 1-7.593-3.138L3.145 59.301c-4.194-4.199-4.194-10.992 0-15.18a10.72 10.72 0 0 1 15.18 0l74.347 74.341 74.347-74.341a10.72 10.72 0 0 1 15.18 0c4.194 4.194 4.194 10.981 0 15.18l-81.939 81.934a10.694 10.694 0 0 1-7.588 3.138z\",\"fill\":\"#010002\"}})])\n )\n }\n }\n "],"mappings":"AACA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/12.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[12],{e20d:function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_exports__.default={functional:!0,render(_h,_vm){const{_c:_c,_v:_v,data:data,children:children=[]}=_vm,{class:classNames,staticClass:staticClass,style:style,staticStyle:staticStyle,attrs:attrs={},...rest}=data;return _c("svg",{class:[classNames,staticClass],style:[style,staticStyle],attrs:Object.assign({viewBox:"0 0 750 471",xmlns:"http://www.w3.org/2000/svg"},attrs),...rest},children.concat([_c("g",{attrs:{"fill-rule":"nonzero",fill:"none"}},[_c("rect",{attrs:{fill:"#0079BE",width:"750",height:"471",rx:"40"}}),_c("path",{attrs:{d:"M584.934 237.947c0-99.415-82.981-168.133-173.895-168.1h-78.242c-92.003-.033-167.73 68.705-167.73 168.1 0 90.93 75.727 165.64 167.73 165.204h78.242c90.914.436 173.895-74.293 173.895-165.204z",fill:"#FFF"}}),_c("path",{attrs:{d:"M333.28 83.93c-84.07.027-152.194 68.308-152.214 152.58.02 84.258 68.144 152.533 152.214 152.56 84.09-.027 152.228-68.302 152.24-152.56-.012-84.272-68.15-152.553-152.24-152.58z",fill:"#0079BE"}}),_c("path",{attrs:{d:"M237.066 236.098c.08-41.18 25.746-76.296 61.94-90.25v180.48c-36.194-13.947-61.861-49.044-61.94-90.23zm131 90.275V145.847c36.207 13.92 61.914 49.057 61.98 90.257-.066 41.212-25.773 76.322-61.98 90.269z",fill:"#FFF"}})])]))}}}}]); 2 | //# sourceMappingURL=12.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/12.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"12.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VIcon/icons/credit-card-diners-club.svg"],"sourcesContent":["\n export default {\n functional: true,\n render(_h, _vm) {\n const { _c, _v, data, children = [] } = _vm;\n\n const {\n class: classNames,\n staticClass,\n style,\n staticStyle,\n attrs = {},\n ...rest\n } = data;\n\n return _c(\n 'svg',\n {\n class: [classNames,staticClass],\n style: [style,staticStyle],\n attrs: Object.assign({\"viewBox\":\"0 0 750 471\",\"xmlns\":\"http://www.w3.org/2000/svg\"}, attrs),\n ...rest,\n },\n children.concat([_c('g',{attrs:{\"fill-rule\":\"nonzero\",\"fill\":\"none\"}},[_c('rect',{attrs:{\"fill\":\"#0079BE\",\"width\":\"750\",\"height\":\"471\",\"rx\":\"40\"}}),_c('path',{attrs:{\"d\":\"M584.934 237.947c0-99.415-82.981-168.133-173.895-168.1h-78.242c-92.003-.033-167.73 68.705-167.73 168.1 0 90.93 75.727 165.64 167.73 165.204h78.242c90.914.436 173.895-74.293 173.895-165.204z\",\"fill\":\"#FFF\"}}),_c('path',{attrs:{\"d\":\"M333.28 83.93c-84.07.027-152.194 68.308-152.214 152.58.02 84.258 68.144 152.533 152.214 152.56 84.09-.027 152.228-68.302 152.24-152.56-.012-84.272-68.15-152.553-152.24-152.58z\",\"fill\":\"#0079BE\"}}),_c('path',{attrs:{\"d\":\"M237.066 236.098c.08-41.18 25.746-76.296 61.94-90.25v180.48c-36.194-13.947-61.861-49.044-61.94-90.23zm131 90.275V145.847c36.207 13.92 61.914 49.057 61.98 90.257-.066 41.212-25.773 76.322-61.98 90.269z\",\"fill\":\"#FFF\"}})])])\n )\n }\n }\n "],"mappings":"AACA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/13.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[13],{de30:function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_exports__.default={functional:!0,render(_h,_vm){const{_c:_c,_v:_v,data:data,children:children=[]}=_vm,{class:classNames,staticClass:staticClass,style:style,staticStyle:staticStyle,attrs:attrs={},...rest}=data;return _c("svg",{class:[classNames,staticClass],style:[style,staticStyle],attrs:Object.assign({viewBox:"0 0 750 471",xmlns:"http://www.w3.org/2000/svg"},attrs),...rest},children.concat([_c("g",{attrs:{"fill-rule":"nonzero",fill:"none"}},[_c("path",{attrs:{d:"M52.877 0C23.68 0 0 23.155 0 51.71v367.58C0 447.85 23.672 471 52.877 471h644.246C726.32 471 750 447.845 750 419.29V51.71C750 23.15 726.328 0 697.123 0H52.877z",fill:"#4D4D4D"}}),_c("path",{attrs:{d:"M314.57 152.198c8.496 0 15.623 1.733 24.295 5.912v22.087c-8.215-7.633-15.341-10.828-24.765-10.828-18.523 0-33.09 14.576-33.09 33.055 0 19.488 14.116 33.196 34.008 33.196 8.955 0 15.95-3.029 23.847-10.54v22.098c-8.981 4.02-16.26 5.607-24.765 5.607-30.075 0-53.444-21.935-53.444-50.224 0-27.984 23.991-50.363 53.914-50.363zm-93.379.609c11.102 0 21.26 3.612 29.754 10.673l-10.335 12.86c-5.145-5.48-10.01-7.792-15.927-7.792-8.513 0-14.713 4.606-14.713 10.667 0 5.198 3.48 7.95 15.332 12.118 22.467 7.808 29.124 14.732 29.124 30.021 0 18.633-14.399 31.602-34.923 31.602-15.029 0-25.955-5.626-35.055-18.32l12.758-11.68c4.549 8.36 12.136 12.837 21.557 12.837 8.811 0 15.334-5.779 15.334-13.576 0-4.042-1.976-7.507-5.921-9.958-1.987-1.16-5.921-2.89-13.653-5.481-18.55-6.347-24.914-13.132-24.914-26.391 0-15.75 13.667-27.58 31.582-27.58zm225.695 1.678h21.575l27.004 64.645 27.35-64.645h21.412l-43.744 98.713h-10.628l-42.969-98.713zm-382.065.148h28.991c32.03 0 54.359 19.786 54.359 48.19 0 14.163-6.831 27.856-18.382 36.944-9.72 7.67-20.795 11.11-36.13 11.11H64.822v-96.244zm92.437 0h19.751v96.245h-19.75v-96.245zm395.899 0h56.011v16.308h-36.275v21.362h34.938v16.3h-34.938v25.98h36.275v16.295h-56.011v-96.245zm69.094 0h29.283c22.78 0 35.833 10.397 35.833 28.416 0 14.735-8.187 24.406-23.064 27.284l31.873 40.545h-24.288l-27.336-38.664h-2.575v38.664h-19.726v-96.245zm19.726 15.159v29.148h5.771c12.612 0 19.297-5.206 19.297-14.88 0-9.367-6.686-14.268-18.985-14.268h-6.083zm-557.42 1.149v63.642h5.3c12.763 0 20.823-2.324 27.028-7.648 6.83-5.782 10.94-15.015 10.94-24.25 0-9.222-4.11-18.18-10.94-23.961-6.523-5.61-14.265-7.783-27.028-7.783h-5.3z",fill:"#FFF"}}),_c("path",{attrs:{d:"M399.164 151.56c29.75 0 53.867 22.167 53.867 49.552v.031c0 27.385-24.117 49.584-53.867 49.584-29.75 0-53.867-22.199-53.867-49.584v-.03c0-27.386 24.117-49.554 53.867-49.554zm350.819 119.534c-25.048 17.233-212.574 140.397-537.264 199.891h484.387c29.197 0 52.877-23.154 52.877-51.71V271.094z",fill:"#F47216"}})])]))}}}}]); 2 | //# sourceMappingURL=13.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/13.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"13.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VIcon/icons/credit-card-discover.svg"],"sourcesContent":["\n export default {\n functional: true,\n render(_h, _vm) {\n const { _c, _v, data, children = [] } = _vm;\n\n const {\n class: classNames,\n staticClass,\n style,\n staticStyle,\n attrs = {},\n ...rest\n } = data;\n\n return _c(\n 'svg',\n {\n class: [classNames,staticClass],\n style: [style,staticStyle],\n attrs: Object.assign({\"viewBox\":\"0 0 750 471\",\"xmlns\":\"http://www.w3.org/2000/svg\"}, attrs),\n ...rest,\n },\n children.concat([_c('g',{attrs:{\"fill-rule\":\"nonzero\",\"fill\":\"none\"}},[_c('path',{attrs:{\"d\":\"M52.877 0C23.68 0 0 23.155 0 51.71v367.58C0 447.85 23.672 471 52.877 471h644.246C726.32 471 750 447.845 750 419.29V51.71C750 23.15 726.328 0 697.123 0H52.877z\",\"fill\":\"#4D4D4D\"}}),_c('path',{attrs:{\"d\":\"M314.57 152.198c8.496 0 15.623 1.733 24.295 5.912v22.087c-8.215-7.633-15.341-10.828-24.765-10.828-18.523 0-33.09 14.576-33.09 33.055 0 19.488 14.116 33.196 34.008 33.196 8.955 0 15.95-3.029 23.847-10.54v22.098c-8.981 4.02-16.26 5.607-24.765 5.607-30.075 0-53.444-21.935-53.444-50.224 0-27.984 23.991-50.363 53.914-50.363zm-93.379.609c11.102 0 21.26 3.612 29.754 10.673l-10.335 12.86c-5.145-5.48-10.01-7.792-15.927-7.792-8.513 0-14.713 4.606-14.713 10.667 0 5.198 3.48 7.95 15.332 12.118 22.467 7.808 29.124 14.732 29.124 30.021 0 18.633-14.399 31.602-34.923 31.602-15.029 0-25.955-5.626-35.055-18.32l12.758-11.68c4.549 8.36 12.136 12.837 21.557 12.837 8.811 0 15.334-5.779 15.334-13.576 0-4.042-1.976-7.507-5.921-9.958-1.987-1.16-5.921-2.89-13.653-5.481-18.55-6.347-24.914-13.132-24.914-26.391 0-15.75 13.667-27.58 31.582-27.58zm225.695 1.678h21.575l27.004 64.645 27.35-64.645h21.412l-43.744 98.713h-10.628l-42.969-98.713zm-382.065.148h28.991c32.03 0 54.359 19.786 54.359 48.19 0 14.163-6.831 27.856-18.382 36.944-9.72 7.67-20.795 11.11-36.13 11.11H64.822v-96.244zm92.437 0h19.751v96.245h-19.75v-96.245zm395.899 0h56.011v16.308h-36.275v21.362h34.938v16.3h-34.938v25.98h36.275v16.295h-56.011v-96.245zm69.094 0h29.283c22.78 0 35.833 10.397 35.833 28.416 0 14.735-8.187 24.406-23.064 27.284l31.873 40.545h-24.288l-27.336-38.664h-2.575v38.664h-19.726v-96.245zm19.726 15.159v29.148h5.771c12.612 0 19.297-5.206 19.297-14.88 0-9.367-6.686-14.268-18.985-14.268h-6.083zm-557.42 1.149v63.642h5.3c12.763 0 20.823-2.324 27.028-7.648 6.83-5.782 10.94-15.015 10.94-24.25 0-9.222-4.11-18.18-10.94-23.961-6.523-5.61-14.265-7.783-27.028-7.783h-5.3z\",\"fill\":\"#FFF\"}}),_c('path',{attrs:{\"d\":\"M399.164 151.56c29.75 0 53.867 22.167 53.867 49.552v.031c0 27.385-24.117 49.584-53.867 49.584-29.75 0-53.867-22.199-53.867-49.584v-.03c0-27.386 24.117-49.554 53.867-49.554zm350.819 119.534c-25.048 17.233-212.574 140.397-537.264 199.891h484.387c29.197 0 52.877-23.154 52.877-51.71V271.094z\",\"fill\":\"#F47216\"}})])])\n )\n }\n }\n "],"mappings":"AACA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/14.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[14],{6856:function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_exports__.default={functional:!0,render(_h,_vm){const{_c:_c,_v:_v,data:data,children:children=[]}=_vm,{class:classNames,staticClass:staticClass,style:style,staticStyle:staticStyle,attrs:attrs={},...rest}=data;return _c("svg",{class:[classNames,staticClass],style:[style,staticStyle],attrs:Object.assign({viewBox:"0 0 750 471",xmlns:"http://www.w3.org/2000/svg"},attrs),...rest},children.concat([_c("g",{attrs:{"fill-rule":"nonzero",fill:"none"}},[_c("path",{attrs:{d:"M40 0h670c22.1 0 40 17.9 40 40v391c0 22.1-17.9 40-40 40H40c-22.1 0-40-17.9-40-40V40C0 17.9 17.9 0 40 0z",fill:"#000"}}),_c("path",{attrs:{d:"M150.7 170.6c6.8-2.3 14.1-3.5 21.7-3.5 33.2 0 60.9 23.6 67.2 54.9l47-9.6c-10.8-53.2-57.8-93.3-114.2-93.3-12.9 0-25.3 2.1-36.9 6l15.2 45.5z",fill:"#FFF100"}}),_c("path",{attrs:{d:"M95.2 323l31.8-36c-14.2-12.6-23.1-30.9-23.1-51.4 0-20.4 8.9-38.8 23.1-51.3l-31.8-35.9c-24.1 21.4-39.3 52.5-39.3 87.3 0 34.7 15.2 65.9 39.3 87.3z",fill:"#00A3DF"}}),_c("path",{attrs:{d:"M239.6 249.4c-6.4 31.3-34 54.8-67.2 54.8-7.6 0-14.9-1.2-21.8-3.5l-15.2 45.5c11.6 3.9 24.1 6 37 6 56.4 0 103.4-40 114.2-93.2l-47-9.6z",fill:"#EE4023"}}),_c("g",{attrs:{fill:"#FFF"}},[_c("path",{attrs:{d:"M443.2 281.6c-7.8 7.6-18.3 12.2-29.9 12-8-.1-15.4-2.5-21.6-6.5l-15.6 24.8c10.7 6.7 23.2 10.7 36.8 10.9 19.7.3 37.7-7.5 50.8-20.2l-20.5-21zM415 180.5c-39.2-.6-71.6 30.8-72.2 70-.2 14.7 4 28.5 11.5 39.9l128.8-55.1c-7.2-30.9-34.8-54.2-68.1-54.8zm-42.7 75.6c-.2-1.6-.3-3.3-.3-5 .4-23.1 19.4-41.6 42.5-41.2 12.6.2 23.8 5.9 31.3 14.9l-73.5 31.3zm151.3-107.6v137.3l23.8 9.9-11.3 27.1-23.6-9.8c-5.3-2.3-8.9-5.8-11.6-9.8-2.6-4-4.6-9.6-4.6-17V148.5h27.3zM609.5 212c4.2-1.4 8.6-2.1 13.3-2.1 20.3 0 37.1 14.4 41 33.5l28.7-5.9c-6.6-32.5-35.3-56.9-69.7-56.9-7.9 0-15.5 1.3-22.5 3.6l9.2 27.8zm-33.9 92.9L595 283c-8.7-7.7-14.1-18.9-14.1-31.4s5.5-23.7 14.1-31.3l-19.4-21.9c-14.7 13-24 32.1-24 53.3 0 21.2 9.3 40.2 24 53.2zm88.2-44.8c-3.9 19.1-20.8 33.5-41 33.5-4.6 0-9.1-.8-13.3-2.2l-9.3 27.8c7.1 2.4 14.7 3.7 22.6 3.7 34.4 0 63.1-24.4 69.7-56.9l-28.7-5.9z"}})])])]))}}}}]); 2 | //# sourceMappingURL=14.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/14.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"14.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VIcon/icons/credit-card-elo.svg"],"sourcesContent":["\n export default {\n functional: true,\n render(_h, _vm) {\n const { _c, _v, data, children = [] } = _vm;\n\n const {\n class: classNames,\n staticClass,\n style,\n staticStyle,\n attrs = {},\n ...rest\n } = data;\n\n return _c(\n 'svg',\n {\n class: [classNames,staticClass],\n style: [style,staticStyle],\n attrs: Object.assign({\"viewBox\":\"0 0 750 471\",\"xmlns\":\"http://www.w3.org/2000/svg\"}, attrs),\n ...rest,\n },\n children.concat([_c('g',{attrs:{\"fill-rule\":\"nonzero\",\"fill\":\"none\"}},[_c('path',{attrs:{\"d\":\"M40 0h670c22.1 0 40 17.9 40 40v391c0 22.1-17.9 40-40 40H40c-22.1 0-40-17.9-40-40V40C0 17.9 17.9 0 40 0z\",\"fill\":\"#000\"}}),_c('path',{attrs:{\"d\":\"M150.7 170.6c6.8-2.3 14.1-3.5 21.7-3.5 33.2 0 60.9 23.6 67.2 54.9l47-9.6c-10.8-53.2-57.8-93.3-114.2-93.3-12.9 0-25.3 2.1-36.9 6l15.2 45.5z\",\"fill\":\"#FFF100\"}}),_c('path',{attrs:{\"d\":\"M95.2 323l31.8-36c-14.2-12.6-23.1-30.9-23.1-51.4 0-20.4 8.9-38.8 23.1-51.3l-31.8-35.9c-24.1 21.4-39.3 52.5-39.3 87.3 0 34.7 15.2 65.9 39.3 87.3z\",\"fill\":\"#00A3DF\"}}),_c('path',{attrs:{\"d\":\"M239.6 249.4c-6.4 31.3-34 54.8-67.2 54.8-7.6 0-14.9-1.2-21.8-3.5l-15.2 45.5c11.6 3.9 24.1 6 37 6 56.4 0 103.4-40 114.2-93.2l-47-9.6z\",\"fill\":\"#EE4023\"}}),_c('g',{attrs:{\"fill\":\"#FFF\"}},[_c('path',{attrs:{\"d\":\"M443.2 281.6c-7.8 7.6-18.3 12.2-29.9 12-8-.1-15.4-2.5-21.6-6.5l-15.6 24.8c10.7 6.7 23.2 10.7 36.8 10.9 19.7.3 37.7-7.5 50.8-20.2l-20.5-21zM415 180.5c-39.2-.6-71.6 30.8-72.2 70-.2 14.7 4 28.5 11.5 39.9l128.8-55.1c-7.2-30.9-34.8-54.2-68.1-54.8zm-42.7 75.6c-.2-1.6-.3-3.3-.3-5 .4-23.1 19.4-41.6 42.5-41.2 12.6.2 23.8 5.9 31.3 14.9l-73.5 31.3zm151.3-107.6v137.3l23.8 9.9-11.3 27.1-23.6-9.8c-5.3-2.3-8.9-5.8-11.6-9.8-2.6-4-4.6-9.6-4.6-17V148.5h27.3zM609.5 212c4.2-1.4 8.6-2.1 13.3-2.1 20.3 0 37.1 14.4 41 33.5l28.7-5.9c-6.6-32.5-35.3-56.9-69.7-56.9-7.9 0-15.5 1.3-22.5 3.6l9.2 27.8zm-33.9 92.9L595 283c-8.7-7.7-14.1-18.9-14.1-31.4s5.5-23.7 14.1-31.3l-19.4-21.9c-14.7 13-24 32.1-24 53.3 0 21.2 9.3 40.2 24 53.2zm88.2-44.8c-3.9 19.1-20.8 33.5-41 33.5-4.6 0-9.1-.8-13.3-2.2l-9.3 27.8c7.1 2.4 14.7 3.7 22.6 3.7 34.4 0 63.1-24.4 69.7-56.9l-28.7-5.9z\"}})])])])\n )\n }\n }\n "],"mappings":"AACA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/19.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[19],{"878b":function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_exports__.default={functional:!0,render(_h,_vm){const{_c:_c,_v:_v,data:data,children:children=[]}=_vm,{class:classNames,staticClass:staticClass,style:style,staticStyle:staticStyle,attrs:attrs={},...rest}=data;return _c("svg",{class:[classNames,staticClass],style:[style,staticStyle],attrs:Object.assign({viewBox:"0 0 750 471",xmlns:"http://www.w3.org/2000/svg"},attrs),...rest},children.concat([_c("g",{attrs:{"fill-rule":"nonzero",fill:"none"}},[_c("rect",{attrs:{fill:"#0E4595",width:"750",height:"471",rx:"40"}}),_c("path",{attrs:{fill:"#FFF",d:"M278.197 334.228l33.361-195.763h53.36l-33.385 195.763zM524.308 142.688c-10.572-3.966-27.137-8.222-47.823-8.222-52.725 0-89.865 26.55-90.18 64.603-.298 28.13 26.513 43.822 46.753 53.186 20.77 9.594 27.752 15.714 27.654 24.283-.132 13.121-16.587 19.116-31.923 19.116-21.357 0-32.703-2.966-50.226-10.276l-6.876-3.111-7.49 43.824c12.464 5.464 35.51 10.198 59.438 10.443 56.09 0 92.501-26.246 92.916-66.882.2-22.268-14.016-39.216-44.8-53.188-18.65-9.055-30.072-15.099-29.951-24.268 0-8.137 9.667-16.839 30.556-16.839 17.45-.27 30.089 3.535 39.937 7.5l4.781 2.26 7.234-42.43M661.615 138.465h-41.231c-12.774 0-22.332 3.487-27.942 16.234l-79.245 179.404h56.032s9.161-24.123 11.233-29.418c6.124 0 60.554.084 68.337.084 1.596 6.853 6.491 29.334 6.491 29.334h49.513l-43.188-195.638zm-65.418 126.407c4.413-11.279 21.26-54.723 21.26-54.723-.316.522 4.38-11.334 7.075-18.684l3.606 16.879s10.217 46.728 12.352 56.528h-44.293zM232.903 138.465l-52.24 133.496-5.567-27.13c-9.725-31.273-40.025-65.155-73.898-82.118l47.766 171.203 56.456-.065 84.004-195.386h-56.521"}}),_c("path",{attrs:{d:"M131.92 138.465H45.879l-.681 4.073c66.938 16.204 111.231 55.363 129.618 102.414l-18.71-89.96c-3.23-12.395-12.597-16.094-24.186-16.526",fill:"#F2AE14"}})])]))}}}}]); 2 | //# sourceMappingURL=19.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/19.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"19.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VIcon/icons/credit-card-visa.svg"],"sourcesContent":["\n export default {\n functional: true,\n render(_h, _vm) {\n const { _c, _v, data, children = [] } = _vm;\n\n const {\n class: classNames,\n staticClass,\n style,\n staticStyle,\n attrs = {},\n ...rest\n } = data;\n\n return _c(\n 'svg',\n {\n class: [classNames,staticClass],\n style: [style,staticStyle],\n attrs: Object.assign({\"viewBox\":\"0 0 750 471\",\"xmlns\":\"http://www.w3.org/2000/svg\"}, attrs),\n ...rest,\n },\n children.concat([_c('g',{attrs:{\"fill-rule\":\"nonzero\",\"fill\":\"none\"}},[_c('rect',{attrs:{\"fill\":\"#0E4595\",\"width\":\"750\",\"height\":\"471\",\"rx\":\"40\"}}),_c('path',{attrs:{\"fill\":\"#FFF\",\"d\":\"M278.197 334.228l33.361-195.763h53.36l-33.385 195.763zM524.308 142.688c-10.572-3.966-27.137-8.222-47.823-8.222-52.725 0-89.865 26.55-90.18 64.603-.298 28.13 26.513 43.822 46.753 53.186 20.77 9.594 27.752 15.714 27.654 24.283-.132 13.121-16.587 19.116-31.923 19.116-21.357 0-32.703-2.966-50.226-10.276l-6.876-3.111-7.49 43.824c12.464 5.464 35.51 10.198 59.438 10.443 56.09 0 92.501-26.246 92.916-66.882.2-22.268-14.016-39.216-44.8-53.188-18.65-9.055-30.072-15.099-29.951-24.268 0-8.137 9.667-16.839 30.556-16.839 17.45-.27 30.089 3.535 39.937 7.5l4.781 2.26 7.234-42.43M661.615 138.465h-41.231c-12.774 0-22.332 3.487-27.942 16.234l-79.245 179.404h56.032s9.161-24.123 11.233-29.418c6.124 0 60.554.084 68.337.084 1.596 6.853 6.491 29.334 6.491 29.334h49.513l-43.188-195.638zm-65.418 126.407c4.413-11.279 21.26-54.723 21.26-54.723-.316.522 4.38-11.334 7.075-18.684l3.606 16.879s10.217 46.728 12.352 56.528h-44.293zM232.903 138.465l-52.24 133.496-5.567-27.13c-9.725-31.273-40.025-65.155-73.898-82.118l47.766 171.203 56.456-.065 84.004-195.386h-56.521\"}}),_c('path',{attrs:{\"d\":\"M131.92 138.465H45.879l-.681 4.073c66.938 16.204 111.231 55.363 129.618 102.414l-18.71-89.96c-3.23-12.395-12.597-16.094-24.186-16.526\",\"fill\":\"#F2AE14\"}})])])\n )\n }\n }\n "],"mappings":"AACA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/2.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[2],{2425:function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__);var componentNormalizer=__webpack_require__("2877"),component=Object(componentNormalizer.a)({},function(_h,_vm){var _c=_vm._c;return _c("clipPath",{attrs:{id:_vm.props.shapeId}},[_c("path",{attrs:{d:"M360,20a20.11,20.11,0,0,1,20,20V360a20.11,20.11,0,0,1-20,20H40a20.11,20.11,0,0,1-20-20V40A20.11,20.11,0,0,1,40,20H360m0-20H40A40.12,40.12,0,0,0,0,40V360a40.12,40.12,0,0,0,40,40H360a40.12,40.12,0,0,0,40-40V40A40.12,40.12,0,0,0,360,0Z"}}),_c("path",{attrs:{d:"M352,365H48a13,13,0,0,1-13-13V282.5c0-7.15,3-11.5,10.5-17,0,0,81-58,87-61.5,8.11-4.73,11.93-4.39,20.5,1.5,16,11,44.5,30.5,93,62.5,5.44,3.59,10,7.85,14,2,20-29,60-100,92.5-149,4.53-6.83,12.5-2,12.5,6V352A13,13,0,0,1,352,365Z"}}),_c("circle",{attrs:{cx:"257.25",cy:"104.75",r:"40.75"}}),_c("circle",{attrs:{cx:"177.88",cy:"130.88",r:"22.13"}})])},[],!0,null,null,null);__webpack_exports__.default=component.exports}}]); 2 | //# sourceMappingURL=2.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/2.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"2.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VPlaceholder/graphics/image.vue"],"sourcesContent":["var render = function (_h,_vm) {var _c=_vm._c;return _c('clipPath',{attrs:{\"id\":_vm.props.shapeId}},[_c('path',{attrs:{\"d\":\"M360,20a20.11,20.11,0,0,1,20,20V360a20.11,20.11,0,0,1-20,20H40a20.11,20.11,0,0,1-20-20V40A20.11,20.11,0,0,1,40,20H360m0-20H40A40.12,40.12,0,0,0,0,40V360a40.12,40.12,0,0,0,40,40H360a40.12,40.12,0,0,0,40-40V40A40.12,40.12,0,0,0,360,0Z\"}}),_c('path',{attrs:{\"d\":\"M352,365H48a13,13,0,0,1-13-13V282.5c0-7.15,3-11.5,10.5-17,0,0,81-58,87-61.5,8.11-4.73,11.93-4.39,20.5,1.5,16,11,44.5,30.5,93,62.5,5.44,3.59,10,7.85,14,2,20-29,60-100,92.5-149,4.53-6.83,12.5-2,12.5,6V352A13,13,0,0,1,352,365Z\"}}),_c('circle',{attrs:{\"cx\":\"257.25\",\"cy\":\"104.75\",\"r\":\"40.75\"}}),_c('circle',{attrs:{\"cx\":\"177.88\",\"cy\":\"130.88\",\"r\":\"22.13\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }"],"mappings":"AAAA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/20.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[20],{a85c:function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_exports__.default={functional:!0,render(_h,_vm){const{_c:_c,_v:_v,data:data,children:children=[]}=_vm,{class:classNames,staticClass:staticClass,style:style,staticStyle:staticStyle,attrs:attrs={},...rest}=data;return _c("svg",{class:[classNames,staticClass],style:[style,staticStyle],attrs:Object.assign({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 430.117 430.118"},attrs),...rest},children.concat([_c("path",{attrs:{d:"M398.355 0H31.782C14.229 0 .002 13.793.002 30.817v368.471c0 17.025 14.232 30.83 31.78 30.83h366.573c17.549 0 31.76-13.814 31.76-30.83V30.817C430.115 13.798 415.904 0 398.355 0zM130.4 360.038H65.413V165.845H130.4v194.193zM97.913 139.315h-.437c-21.793 0-35.92-14.904-35.92-33.563 0-19.035 14.542-33.535 36.767-33.535 22.227 0 35.899 14.496 36.331 33.535 0 18.663-14.099 33.563-36.741 33.563zm266.746 220.723h-64.966v-103.9c0-26.107-9.413-43.921-32.907-43.921-17.973 0-28.642 12.018-33.327 23.621-1.736 4.144-2.166 9.94-2.166 15.728v108.468h-64.954s.85-175.979 0-194.192h64.964v27.531c8.624-13.229 24.035-32.1 58.534-32.1 42.76 0 74.822 27.739 74.822 87.414v111.351zM230.883 193.99c.111-.182.266-.401.42-.614v.614h-.42z"}})]))}}}}]); 2 | //# sourceMappingURL=20.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/20.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"20.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VIcon/icons/linkedin.svg"],"sourcesContent":["\n export default {\n functional: true,\n render(_h, _vm) {\n const { _c, _v, data, children = [] } = _vm;\n\n const {\n class: classNames,\n staticClass,\n style,\n staticStyle,\n attrs = {},\n ...rest\n } = data;\n\n return _c(\n 'svg',\n {\n class: [classNames,staticClass],\n style: [style,staticStyle],\n attrs: Object.assign({\"xmlns\":\"http://www.w3.org/2000/svg\",\"viewBox\":\"0 0 430.117 430.118\"}, attrs),\n ...rest,\n },\n children.concat([_c('path',{attrs:{\"d\":\"M398.355 0H31.782C14.229 0 .002 13.793.002 30.817v368.471c0 17.025 14.232 30.83 31.78 30.83h366.573c17.549 0 31.76-13.814 31.76-30.83V30.817C430.115 13.798 415.904 0 398.355 0zM130.4 360.038H65.413V165.845H130.4v194.193zM97.913 139.315h-.437c-21.793 0-35.92-14.904-35.92-33.563 0-19.035 14.542-33.535 36.767-33.535 22.227 0 35.899 14.496 36.331 33.535 0 18.663-14.099 33.563-36.741 33.563zm266.746 220.723h-64.966v-103.9c0-26.107-9.413-43.921-32.907-43.921-17.973 0-28.642 12.018-33.327 23.621-1.736 4.144-2.166 9.94-2.166 15.728v108.468h-64.954s.85-175.979 0-194.192h64.964v27.531c8.624-13.229 24.035-32.1 58.534-32.1 42.76 0 74.822 27.739 74.822 87.414v111.351zM230.883 193.99c.111-.182.266-.401.42-.614v.614h-.42z\"}})])\n )\n }\n }\n "],"mappings":"AACA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/21.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[21],{7529:function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_exports__.default={functional:!0,render(_h,_vm){const{_c:_c,_v:_v,data:data,children:children=[]}=_vm,{class:classNames,staticClass:staticClass,style:style,staticStyle:staticStyle,attrs:attrs={},...rest}=data;return _c("svg",{class:[classNames,staticClass],style:[style,staticStyle],attrs:Object.assign({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 543.684 543.684"},attrs),...rest},children.concat([_c("path",{attrs:{d:"M527.657 106.697a231.362 231.362 0 0 1-8.041 2.191c-16.384 4.137-17.89-1.322-6.028-13.366a109.306 109.306 0 0 0 14.082-17.607c9.137-14.217 1.212-20.417-14.333-13.776a224.853 224.853 0 0 1-16.897 6.432c-16.017 5.379-38.746-2.735-53.018-11.787-18.018-11.426-38.495-17.136-61.438-17.136-32.137 0-59.529 11.334-82.192 33.984-22.656 22.662-33.99 50.062-33.99 82.191 0 4.394.251 8.855.747 13.378.814 7.362-11.585 12.699-28.317 10.336-36.194-5.11-70.582-16.077-103.171-32.889-32.32-16.671-60.845-37.65-85.57-62.938-11.819-12.086-27.804-11.045-32.217 5.27-2.644 9.78-3.959 19.951-3.959 30.515 0 19.908 4.675 38.372 14.027 55.392 4.651 8.47 10.098 16.138 16.353 22.999 10.521 11.549 8.911 18.25-5.734 14.144-14.639-4.106-25.367-10.202-25.367-9.804v.722c0 28.048 8.807 52.693 26.432 73.911 10.857 13.072 23.47 23.17 37.834 30.282 15.147 7.503 22.203 11.688 13.733 12.784-5.11.661-10.251.991-15.422.991-3.5 0-7.172-.159-11.003-.483-6.059-.514-7.148 12.111 2.038 26.298 7.301 11.273 16.646 21.193 28.03 29.762 11.579 8.721 24.058 14.981 37.417 18.794 16.255 4.633 19.517 13.073 5.024 21.763-35.863 21.519-75.551 32.277-119.058 32.277-4.902 0-9.578-.11-14.045-.324-7.754-.373-2.552 6.456 12.417 14.296 46.775 24.499 97.43 36.738 151.972 36.738 41.237 0 79.964-6.529 116.176-19.596 36.199-13.066 67.136-30.576 92.791-52.516 25.655-21.94 47.779-47.173 66.365-75.711 18.581-28.537 32.424-58.33 41.543-89.376 9.106-31.053 13.666-62.167 13.666-93.342 0-2.809-.024-5.331-.067-7.552-.086-4.174 10.955-15.472 23.28-27.032a242.397 242.397 0 0 0 15.937-16.444c11.179-12.688 6.228-18.502-9.997-13.771z"}})]))}}}}]); 2 | //# sourceMappingURL=21.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/21.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"21.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VIcon/icons/twitter.svg"],"sourcesContent":["\n export default {\n functional: true,\n render(_h, _vm) {\n const { _c, _v, data, children = [] } = _vm;\n\n const {\n class: classNames,\n staticClass,\n style,\n staticStyle,\n attrs = {},\n ...rest\n } = data;\n\n return _c(\n 'svg',\n {\n class: [classNames,staticClass],\n style: [style,staticStyle],\n attrs: Object.assign({\"xmlns\":\"http://www.w3.org/2000/svg\",\"viewBox\":\"0 0 543.684 543.684\"}, attrs),\n ...rest,\n },\n children.concat([_c('path',{attrs:{\"d\":\"M527.657 106.697a231.362 231.362 0 0 1-8.041 2.191c-16.384 4.137-17.89-1.322-6.028-13.366a109.306 109.306 0 0 0 14.082-17.607c9.137-14.217 1.212-20.417-14.333-13.776a224.853 224.853 0 0 1-16.897 6.432c-16.017 5.379-38.746-2.735-53.018-11.787-18.018-11.426-38.495-17.136-61.438-17.136-32.137 0-59.529 11.334-82.192 33.984-22.656 22.662-33.99 50.062-33.99 82.191 0 4.394.251 8.855.747 13.378.814 7.362-11.585 12.699-28.317 10.336-36.194-5.11-70.582-16.077-103.171-32.889-32.32-16.671-60.845-37.65-85.57-62.938-11.819-12.086-27.804-11.045-32.217 5.27-2.644 9.78-3.959 19.951-3.959 30.515 0 19.908 4.675 38.372 14.027 55.392 4.651 8.47 10.098 16.138 16.353 22.999 10.521 11.549 8.911 18.25-5.734 14.144-14.639-4.106-25.367-10.202-25.367-9.804v.722c0 28.048 8.807 52.693 26.432 73.911 10.857 13.072 23.47 23.17 37.834 30.282 15.147 7.503 22.203 11.688 13.733 12.784-5.11.661-10.251.991-15.422.991-3.5 0-7.172-.159-11.003-.483-6.059-.514-7.148 12.111 2.038 26.298 7.301 11.273 16.646 21.193 28.03 29.762 11.579 8.721 24.058 14.981 37.417 18.794 16.255 4.633 19.517 13.073 5.024 21.763-35.863 21.519-75.551 32.277-119.058 32.277-4.902 0-9.578-.11-14.045-.324-7.754-.373-2.552 6.456 12.417 14.296 46.775 24.499 97.43 36.738 151.972 36.738 41.237 0 79.964-6.529 116.176-19.596 36.199-13.066 67.136-30.576 92.791-52.516 25.655-21.94 47.779-47.173 66.365-75.711 18.581-28.537 32.424-58.33 41.543-89.376 9.106-31.053 13.666-62.167 13.666-93.342 0-2.809-.024-5.331-.067-7.552-.086-4.174 10.955-15.472 23.28-27.032a242.397 242.397 0 0 0 15.937-16.444c11.179-12.688 6.228-18.502-9.997-13.771z\"}})])\n )\n }\n }\n "],"mappings":"AACA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/3.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[3],{f26b:function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__);var componentNormalizer=__webpack_require__("2877"),component=Object(componentNormalizer.a)({},function(_h,_vm){var _c=_vm._c;return _c("clipPath",{attrs:{id:_vm.props.shapeId}},_vm._l(_vm.props.lines,function(n,index){return _c("rect",{key:index,attrs:{x:"0",y:index>0?index*_vm.props.lineScale+index*_vm.props.lineScale*_vm.props.lineHeight:0,rx:_vm.props.roundedCorners?_vm.props.lineScale/2:0,ry:_vm.props.roundedCorners?_vm.props.lineScale/2:0,width:index<_vm.props.lines-1||1===_vm.props.lines?400:280,height:_vm.props.lineScale}})}),0)},[],!0,null,null,null);__webpack_exports__.default=component.exports}}]); 2 | //# sourceMappingURL=3.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/3.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"3.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VPlaceholder/graphics/text.vue"],"sourcesContent":["var render = function (_h,_vm) {var _c=_vm._c;return _c('clipPath',{attrs:{\"id\":_vm.props.shapeId}},_vm._l((_vm.props.lines),function(n,index){return _c('rect',{key:index,attrs:{\"x\":\"0\",\"y\":index > 0 ? (index * _vm.props.lineScale) + (index * _vm.props.lineScale * _vm.props.lineHeight) : 0,\"rx\":_vm.props.roundedCorners ? _vm.props.lineScale / 2 : 0,\"ry\":_vm.props.roundedCorners ? _vm.props.lineScale / 2 : 0,\"width\":index < _vm.props.lines - 1 || _vm.props.lines === 1 ? 400 : 280,\"height\":_vm.props.lineScale}})}),0)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }"],"mappings":"AAAA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/4.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[4],{"442b":function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__);var componentNormalizer=__webpack_require__("2877"),component=Object(componentNormalizer.a)({},function(_h,_vm){var _c=_vm._c;return _c("clipPath",{attrs:{id:_vm.props.shapeId}},[_c("path",{attrs:{d:"M149.5,234.3L174,117.8c0.5-1.6-0.3-3.3-1.9-3.9c-0.4-0.1-0.9-0.2-1.4-0.1h-27.6\n c-2.4,0-4.5,1.7-5,4l-23.1,109c-3.6,16.9-14.5,24.9-30.7,24.9H10.5c-2.4,0.1-4.4,1.9-4.9,4.3l-5.5,26c-0.5,1.8,0.7,3.7,2.5,4.2\n c0.3,0.1,0.5,0.1,0.8,0.1h79.1c35.9,0,60.1-19.5,67-52"}}),_c("path",{attrs:{d:"M69.6,227.7c-36.8,0-61-27.1-53.2-65.3l9.3-44.6c0.6-2.4,2.8-4,5.2-4h27.6\n c1.7-0.2,3.3,1.1,3.4,2.9c0,0.4,0,0.8-0.1,1.2l-10,48c-3.3,16.1,3.8,27.2,22.8,27.2h30c1.7-0.2,3.3,1.1,3.4,2.9c0,0.4,0,0.8-0.1,1.2\n l-5.5,26.4c-0.6,2.4-2.7,4.2-5.2,4.3L69.6,227.7"}}),_c("path",{attrs:{d:"M253.8,286.3c35.9,0,60.1-19.5,67-52l11.6-55.3c8-38-16.4-65.3-53.2-65.3h-27.3\n c-35.9,0-60,19.5-67,52l-14.8,68.6c-0.5,1.9,0.7,3.7,2.5,4.2c0.3,0.1,0.5,0.1,0.8,0.1h27.8c2.5-0.1,4.7-1.8,5.2-4.3l12.8-61\n c3.6-16.9,14.5-24.9,30.7-24.9h23.5c19.5,0,27.1,11.6,23.5,28.3l-10.7,50c-3.6,16.9-14.6,25-30.6,25h-84.9c-2.5,0.1-4.6,1.9-5.1,4.3\n l-5.5,26c-0.5,1.8,0.5,3.6,2.2,4.1c0.4,0.1,0.7,0.2,1.1,0.1L253.8,286.3"}}),_c("path",{attrs:{d:"M367,251.4h-27.1c-2.5,0.1-4.6,1.8-5.2,4.3l-5.5,26.3c-0.5,1.8,0.5,3.6,2.2,4.1\n c0.4,0.1,0.7,0.2,1.1,0.1h27.1c2.5-0.1,4.7-1.8,5.2-4.3l5.5-26.3c0.5-1.8-0.5-3.6-2.3-4.2C367.7,251.4,367.3,251.4,367,251.4"}}),_c("path",{attrs:{d:"M396.5,113.7h-28.3c-2.4,0-4.5,1.7-5,4l-22.8,116.6c-0.5,1.8,0.7,3.7,2.5,4.2\n c0.3,0.1,0.6,0.1,0.8,0.1h24.7c2.4-0.2,4.4-1.9,5-4.3l26.5-116.5c0.5-1.7-0.5-3.4-2.2-3.9C397.3,113.7,396.9,113.7,396.5,113.7"}})])},[],!0,null,null,null);__webpack_exports__.default=component.exports}}]); 2 | //# sourceMappingURL=4.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/4.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"4.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VPlaceholder/graphics/yosushi-logo.vue"],"sourcesContent":["var render = function (_h,_vm) {var _c=_vm._c;return _c('clipPath',{attrs:{\"id\":_vm.props.shapeId}},[_c('path',{attrs:{\"d\":\"M149.5,234.3L174,117.8c0.5-1.6-0.3-3.3-1.9-3.9c-0.4-0.1-0.9-0.2-1.4-0.1h-27.6\\n c-2.4,0-4.5,1.7-5,4l-23.1,109c-3.6,16.9-14.5,24.9-30.7,24.9H10.5c-2.4,0.1-4.4,1.9-4.9,4.3l-5.5,26c-0.5,1.8,0.7,3.7,2.5,4.2\\n c0.3,0.1,0.5,0.1,0.8,0.1h79.1c35.9,0,60.1-19.5,67-52\"}}),_c('path',{attrs:{\"d\":\"M69.6,227.7c-36.8,0-61-27.1-53.2-65.3l9.3-44.6c0.6-2.4,2.8-4,5.2-4h27.6\\n c1.7-0.2,3.3,1.1,3.4,2.9c0,0.4,0,0.8-0.1,1.2l-10,48c-3.3,16.1,3.8,27.2,22.8,27.2h30c1.7-0.2,3.3,1.1,3.4,2.9c0,0.4,0,0.8-0.1,1.2\\n l-5.5,26.4c-0.6,2.4-2.7,4.2-5.2,4.3L69.6,227.7\"}}),_c('path',{attrs:{\"d\":\"M253.8,286.3c35.9,0,60.1-19.5,67-52l11.6-55.3c8-38-16.4-65.3-53.2-65.3h-27.3\\n c-35.9,0-60,19.5-67,52l-14.8,68.6c-0.5,1.9,0.7,3.7,2.5,4.2c0.3,0.1,0.5,0.1,0.8,0.1h27.8c2.5-0.1,4.7-1.8,5.2-4.3l12.8-61\\n c3.6-16.9,14.5-24.9,30.7-24.9h23.5c19.5,0,27.1,11.6,23.5,28.3l-10.7,50c-3.6,16.9-14.6,25-30.6,25h-84.9c-2.5,0.1-4.6,1.9-5.1,4.3\\n l-5.5,26c-0.5,1.8,0.5,3.6,2.2,4.1c0.4,0.1,0.7,0.2,1.1,0.1L253.8,286.3\"}}),_c('path',{attrs:{\"d\":\"M367,251.4h-27.1c-2.5,0.1-4.6,1.8-5.2,4.3l-5.5,26.3c-0.5,1.8,0.5,3.6,2.2,4.1\\n c0.4,0.1,0.7,0.2,1.1,0.1h27.1c2.5-0.1,4.7-1.8,5.2-4.3l5.5-26.3c0.5-1.8-0.5-3.6-2.3-4.2C367.7,251.4,367.3,251.4,367,251.4\"}}),_c('path',{attrs:{\"d\":\"M396.5,113.7h-28.3c-2.4,0-4.5,1.7-5,4l-22.8,116.6c-0.5,1.8,0.7,3.7,2.5,4.2\\n c0.3,0.1,0.6,0.1,0.8,0.1h24.7c2.4-0.2,4.4-1.9,5-4.3l26.5-116.5c0.5-1.7-0.5-3.4-2.2-3.9C397.3,113.7,396.9,113.7,396.5,113.7\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }"],"mappings":"AAAA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/8.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[8],{"75e3":function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_exports__.default={functional:!0,render(_h,_vm){const{_c:_c,_v:_v,data:data,children:children=[]}=_vm,{class:classNames,staticClass:staticClass,style:style,staticStyle:staticStyle,attrs:attrs={},...rest}=data;return _c("svg",{class:[classNames,staticClass],style:[style,staticStyle],attrs:Object.assign({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 129 129"},attrs),...rest},children.concat([_c("path",{attrs:{d:"M64.5 122.6c32 0 58.1-26 58.1-58.1s-26-58-58.1-58-58 26-58 58 26 58.1 58 58.1zm0-108c27.5 0 49.9 22.4 49.9 49.9S92 114.4 64.5 114.4 14.6 92 14.6 64.5 37 14.6 64.5 14.6z"}}),_c("path",{attrs:{d:"M70 93.5c.8.8 1.8 1.2 2.9 1.2 1 0 2.1-.4 2.9-1.2 1.6-1.6 1.6-4.2 0-5.8L52.3 64.2l23.5-23.5c1.6-1.6 1.6-4.2 0-5.8s-4.2-1.6-5.8 0L43.6 61.3c-.8.8-1.2 1.8-1.2 2.9s.4 2.1 1.2 2.9L70 93.5z"}})]))}}}}]); 2 | //# sourceMappingURL=8.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/8.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"8.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VIcon/icons/arrow-left.svg"],"sourcesContent":["\n export default {\n functional: true,\n render(_h, _vm) {\n const { _c, _v, data, children = [] } = _vm;\n\n const {\n class: classNames,\n staticClass,\n style,\n staticStyle,\n attrs = {},\n ...rest\n } = data;\n\n return _c(\n 'svg',\n {\n class: [classNames,staticClass],\n style: [style,staticStyle],\n attrs: Object.assign({\"xmlns\":\"http://www.w3.org/2000/svg\",\"viewBox\":\"0 0 129 129\"}, attrs),\n ...rest,\n },\n children.concat([_c('path',{attrs:{\"d\":\"M64.5 122.6c32 0 58.1-26 58.1-58.1s-26-58-58.1-58-58 26-58 58 26 58.1 58 58.1zm0-108c27.5 0 49.9 22.4 49.9 49.9S92 114.4 64.5 114.4 14.6 92 14.6 64.5 37 14.6 64.5 14.6z\"}}),_c('path',{attrs:{\"d\":\"M70 93.5c.8.8 1.8 1.2 2.9 1.2 1 0 2.1-.4 2.9-1.2 1.6-1.6 1.6-4.2 0-5.8L52.3 64.2l23.5-23.5c1.6-1.6 1.6-4.2 0-5.8s-4.2-1.6-5.8 0L43.6 61.3c-.8.8-1.2 1.8-1.2 2.9s.4 2.1 1.2 2.9L70 93.5z\"}})])\n )\n }\n }\n "],"mappings":"AACA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/9.801e04347c363009a3a0.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[9],{"3ffd":function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_exports__.default={functional:!0,render(_h,_vm){const{_c:_c,_v:_v,data:data,children:children=[]}=_vm,{class:classNames,staticClass:staticClass,style:style,staticStyle:staticStyle,attrs:attrs={},...rest}=data;return _c("svg",{class:[classNames,staticClass],style:[style,staticStyle],attrs:Object.assign({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 129 129"},attrs),...rest},children.concat([_c("path",{attrs:{d:"M64.5 122.6c32 0 58.1-26 58.1-58.1S96.5 6.4 64.5 6.4 6.4 32.5 6.4 64.5s26.1 58.1 58.1 58.1zm0-108c27.5 0 49.9 22.4 49.9 49.9S92 114.4 64.5 114.4 14.6 92 14.6 64.5 37 14.6 64.5 14.6z"}}),_c("path",{attrs:{d:"M51.1 93.5c.8.8 1.8 1.2 2.9 1.2 1 0 2.1-.4 2.9-1.2l26.4-26.4c.8-.8 1.2-1.8 1.2-2.9 0-1.1-.4-2.1-1.2-2.9L56.9 34.9c-1.6-1.6-4.2-1.6-5.8 0-1.6 1.6-1.6 4.2 0 5.8l23.5 23.5-23.5 23.5c-1.6 1.6-1.6 4.2 0 5.8z"}})]))}}}}]); 2 | //# sourceMappingURL=9.801e04347c363009a3a0.bundle.js.map -------------------------------------------------------------------------------- /docs/9.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"9.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/atoms/VIcon/icons/arrow-right.svg"],"sourcesContent":["\n export default {\n functional: true,\n render(_h, _vm) {\n const { _c, _v, data, children = [] } = _vm;\n\n const {\n class: classNames,\n staticClass,\n style,\n staticStyle,\n attrs = {},\n ...rest\n } = data;\n\n return _c(\n 'svg',\n {\n class: [classNames,staticClass],\n style: [style,staticStyle],\n attrs: Object.assign({\"xmlns\":\"http://www.w3.org/2000/svg\",\"viewBox\":\"0 0 129 129\"}, attrs),\n ...rest,\n },\n children.concat([_c('path',{attrs:{\"d\":\"M64.5 122.6c32 0 58.1-26 58.1-58.1S96.5 6.4 64.5 6.4 6.4 32.5 6.4 64.5s26.1 58.1 58.1 58.1zm0-108c27.5 0 49.9 22.4 49.9 49.9S92 114.4 64.5 114.4 14.6 92 14.6 64.5 37 14.6 64.5 14.6z\"}}),_c('path',{attrs:{\"d\":\"M51.1 93.5c.8.8 1.8 1.2 2.9 1.2 1 0 2.1-.4 2.9-1.2l26.4-26.4c.8-.8 1.2-1.8 1.2-2.9 0-1.1-.4-2.1-1.2-2.9L56.9 34.9c-1.6-1.6-4.2-1.6-5.8 0-1.6 1.6-1.6 4.2 0 5.8l23.5 23.5-23.5 23.5c-1.6 1.6-1.6 4.2 0 5.8z\"}})])\n )\n }\n }\n "],"mappings":"AACA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milad-alizadeh/vue-cli-plugin-atomic-design-components/e2daf9d928bab137ce37f92e501a329f346fbf7f/docs/favicon.ico -------------------------------------------------------------------------------- /docs/iframe.html: -------------------------------------------------------------------------------- 1 | Storybook

No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

-------------------------------------------------------------------------------- /docs/img/example.cee7e567.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milad-alizadeh/vue-cli-plugin-atomic-design-components/e2daf9d928bab137ce37f92e501a329f346fbf7f/docs/img/example.cee7e567.jpg -------------------------------------------------------------------------------- /docs/img/logo-mono.5ad59db3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milad-alizadeh/vue-cli-plugin-atomic-design-components/e2daf9d928bab137ce37f92e501a329f346fbf7f/docs/img/logo-mono.5ad59db3.png -------------------------------------------------------------------------------- /docs/img/logo.82b9c7a5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milad-alizadeh/vue-cli-plugin-atomic-design-components/e2daf9d928bab137ce37f92e501a329f346fbf7f/docs/img/logo.82b9c7a5.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | Storybook
-------------------------------------------------------------------------------- /docs/main.801e04347c363009a3a0.bundle.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"main.801e04347c363009a3a0.bundle.js","sources":["webpack:///./src/components/organisms/VFormPayment/index.stories.js"],"sourcesContent":["import { storiesOf } from '@storybook/vue'\nimport { withInfo } from 'storybook-addon-vue-info'\nimport VFormPayment from '.'\n\nconst wrapper = {\n components: { VFormPayment }\n}\n\nstoriesOf('Organism - VFormPayment', module)\n .addDecorator(withInfo)\n .add('default', () => ({\n ...wrapper,\n template: `\n
\n \n\n

\n
Field value is: {{ paymentData }}
\n
\n `,\n data () {\n return {\n paymentData: {\n creditCard: {\n number: ''\n },\n cardHolder: '',\n securityCode: '',\n expiry: ''\n },\n label: {\n securityCode: 'Security Code',\n creditCardNumber: 'Credit Card Number',\n expiry: 'Expiry date',\n cardHolder: 'Cardholder\\'s Name'\n }\n }\n }\n }), { info: true })\n"],"mappings":"AAIA","sourceRoot":""} -------------------------------------------------------------------------------- /docs/main.85de14ae4a9f8455ed2b.bundle.js: -------------------------------------------------------------------------------- 1 | (window.webpackJsonp=window.webpackJsonp||[]).push([[0],{0:function(n,o,p){p(407),p(491),n.exports=p(1066)},491:function(n,o,p){"use strict";p.r(o);p(492),p(688),p(904),p(1059),p(1062)}},[[0,1,2]]]); -------------------------------------------------------------------------------- /docs/runtime~main.6ac4c33d73ae9704bbb9.bundle.js: -------------------------------------------------------------------------------- 1 | !function(e){function r(r){for(var n,f,i=r[0],l=r[1],a=r[2],c=0,s=[];c 34 | * 35 | * Copyright (c) 2014-2017, Jon Schlinkert. 36 | * Released under the MIT License. 37 | */ 38 | 39 | /*! 40 | * https://github.com/paulmillr/es6-shim 41 | * @license es6-shim Copyright 2013-2016 by Paul Miller (http://paulmillr.com) 42 | * and contributors, MIT License 43 | * es6-shim: v0.35.4 44 | * see https://github.com/paulmillr/es6-shim/blob/0.35.3/LICENSE 45 | * Details and documentation: 46 | * https://github.com/paulmillr/es6-shim/ 47 | */ 48 | 49 | /** @license React v16.8.1 50 | * react.production.min.js 51 | * 52 | * Copyright (c) Facebook, Inc. and its affiliates. 53 | * 54 | * This source code is licensed under the MIT license found in the 55 | * LICENSE file in the root directory of this source tree. 56 | */ 57 | 58 | /** @license React v0.13.1 59 | * scheduler.production.min.js 60 | * 61 | * Copyright (c) Facebook, Inc. and its affiliates. 62 | * 63 | * This source code is licensed under the MIT license found in the 64 | * LICENSE file in the root directory of this source tree. 65 | */ 66 | 67 | /* 68 | object-assign 69 | (c) Sindre Sorhus 70 | @license MIT 71 | */ 72 | 73 | /** @license React v16.8.1 74 | * react-dom.production.min.js 75 | * 76 | * Copyright (c) Facebook, Inc. and its affiliates. 77 | * 78 | * This source code is licensed under the MIT license found in the 79 | * LICENSE file in the root directory of this source tree. 80 | */ 81 | 82 | /*! 83 | Copyright (c) 2016 Jed Watson. 84 | Licensed under the MIT License (MIT), see 85 | http://jedwatson.github.io/classnames 86 | */ 87 | -------------------------------------------------------------------------------- /generator/app-template.js: -------------------------------------------------------------------------------- 1 | module.exports = ` 4 | 5 | 25 | 26 | 35 | ` 36 | -------------------------------------------------------------------------------- /generator/index.js: -------------------------------------------------------------------------------- 1 | const appTemplate = require('./app-template') 2 | 3 | const addLine = (string, match, line) => { 4 | let lines = string.split(/\r?\n/g).reverse() 5 | let lastImportIndex = lines.findIndex(line => line.match(match)) 6 | let alreadyAdded = lines.find(line => line.indexOf(line) > -1) 7 | 8 | if (!alreadyAdded) { 9 | lines[lastImportIndex] += `\n${line}` 10 | return lines.reverse().join('\n') 11 | } 12 | 13 | return string 14 | } 15 | 16 | module.exports = (api, options, rootOptions) => { 17 | api.extendPackage({ 18 | dependencies: { 19 | "vuelidate": "^0.7.4", 20 | "vue-tel-input": "^2.0.5", 21 | "credit-card-type": "^7.1.0" 22 | } 23 | }) 24 | 25 | api.render('./template') 26 | 27 | api.postProcessFiles(files => { 28 | let main = files['src/main.js'] 29 | 30 | if (main) { 31 | let content = addLine(main, /^import/, `import Vuelidate from 'vuelidate'`) 32 | let newContent = addLine(content, /^import Vuelidate from 'vuelidate'/, 'Vue.use(Vuelidate)') 33 | 34 | files['src/main.js'] = newContent 35 | } 36 | 37 | if (files['src/App.vue']) { 38 | files['src/App.vue'] = appTemplate 39 | } 40 | 41 | if (files['src/scss/utilities/_utilities.scss']) { 42 | let utilities = files['src/scss/utilities/_utilities.scss'] 43 | files['src/scss/utilities/_utilities.scss'] = addLine(utilities, /^@import/, `@import 'u-form-field';`) 44 | } else { 45 | files['src/scss/utilities/_utilities.scss'] = `@import 'u-visually-hidden';';` 46 | } 47 | }) 48 | } 49 | -------------------------------------------------------------------------------- /generator/template/config/storybook/config.js: -------------------------------------------------------------------------------- 1 | import { configure, addDecorator, addParameters } from '@storybook/vue' 2 | import StoryRouter from 'storybook-vue-router' 3 | import Vue from 'vue' 4 | import Vuex from 'vuex' 5 | import Vuelidate from 'vuelidate' 6 | import VueTelInput from 'vue-tel-input' 7 | import './style.scss' 8 | 9 | Vue.use(Vuex) 10 | Vue.use(Vuelidate) 11 | 12 | addParameters({ 13 | options: { 14 | hierarchyRootSeparator: / - / 15 | } 16 | }) 17 | 18 | // Require all the .stories.js files from all components 19 | const req = require.context('@/components', true, /.stories.js$/) 20 | 21 | function loadStories () { 22 | req.keys().forEach((filePath) => { 23 | const componentName = filePath.replace(/^.+\/([^/]+)\/index.stories.js/, '$1') 24 | const component = req(filePath) 25 | Vue.component(componentName, component) 26 | return component 27 | }) 28 | 29 | Vue.component('VueTelInput', VueTelInput) 30 | } 31 | 32 | addDecorator(StoryRouter()) 33 | 34 | configure(loadStories, module) 35 | -------------------------------------------------------------------------------- /generator/template/config/storybook/style.scss: -------------------------------------------------------------------------------- 1 | @import '@/scss/base.scss' 2 | -------------------------------------------------------------------------------- /generator/template/src/assets/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milad-alizadeh/vue-cli-plugin-atomic-design-components/e2daf9d928bab137ce37f92e501a329f346fbf7f/generator/template/src/assets/example.jpg -------------------------------------------------------------------------------- /generator/template/src/assets/logo-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milad-alizadeh/vue-cli-plugin-atomic-design-components/e2daf9d928bab137ce37f92e501a329f346fbf7f/generator/template/src/assets/logo-mono.png -------------------------------------------------------------------------------- /generator/template/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milad-alizadeh/vue-cli-plugin-atomic-design-components/e2daf9d928bab137ce37f92e501a329f346fbf7f/generator/template/src/assets/logo.png -------------------------------------------------------------------------------- /generator/template/src/components/atoms/.gitkeep: -------------------------------------------------------------------------------- 1 | /* gitkeep */ 2 | -------------------------------------------------------------------------------- /generator/template/src/components/atoms/VButton/index.stories.js: -------------------------------------------------------------------------------- 1 | import { storiesOf } from '@storybook/vue' 2 | import { withInfo } from 'storybook-addon-vue-info' 3 | import { action } from '@storybook/addon-actions' 4 | import VButton from '.' 5 | 6 | const wrapper = { 7 | components: { VButton } 8 | } 9 | 10 | storiesOf('Atom - VButton', module) 11 | .addDecorator(withInfo) 12 | .add('default', () => ({ 13 | ...wrapper, 14 | template: 'Click here' 15 | }), { info: true }) 16 | .add('success', () => ({ 17 | ...wrapper, 18 | template: 'Click here' 19 | }), { info: true }) 20 | .add('error', () => ({ 21 | ...wrapper, 22 | template: 'Click here' 23 | }), { info: true }) 24 | .add('warning', () => ({ 25 | ...wrapper, 26 | template: 'Click here' 27 | }), { info: true }) 28 | .add('disabled', () => ({ 29 | ...wrapper, 30 | template: 'Click here' 31 | }), { info: true }) 32 | .add('link', () => ({ 33 | ...wrapper, 34 | template: 'Click here' 35 | }), { info: true }) 36 | .add('router-link', () => ({ 37 | ...wrapper, 38 | template: `Click here` 39 | }), { info: true }) 40 | .add('click event', () => ({ 41 | ...wrapper, 42 | template: 'Click here', 43 | methods: { action: action('button clicked') } 44 | }), { info: true }) 45 | -------------------------------------------------------------------------------- /generator/template/src/components/atoms/VButton/index.test.js: -------------------------------------------------------------------------------- 1 | import { mount } from '@vue/test-utils' 2 | import VButton from '.' 3 | 4 | describe('Atom - VButton', () => { 5 | test('Default tag is