├── .eslintignore ├── .gitignore ├── .editorconfig ├── .postcssrc.js ├── .babelrc ├── .eslintrc.js ├── README.md ├── src ├── components │ ├── ScaleOut.vue │ ├── CubeShadow.vue │ ├── Circle2.vue │ ├── RotateSquare.vue │ ├── Texture.vue │ ├── Circle3.vue │ ├── Circle11.vue │ ├── Pencil.vue │ ├── Wave.vue │ ├── Circle5.vue │ ├── Circle4.vue │ ├── Jumper.vue │ ├── DoubleBounce.vue │ ├── RotateSquare4.vue │ ├── Circle.vue │ ├── Diamond.vue │ ├── Stretch.vue │ ├── Jawn.vue │ ├── Circle10.vue │ ├── TwoCube.vue │ ├── RotateSquare2.vue │ ├── RotateSquare6.vue │ ├── Circle7.vue │ ├── SpinLine.vue │ ├── PingPong.vue │ ├── Circle8.vue │ ├── Mikepad.vue │ ├── Gauge.vue │ ├── SquareGrid.vue │ ├── HourGlass.vue │ ├── Circle9.vue │ ├── ThreeDots.vue │ ├── Origami.vue │ ├── LetterCube.vue │ ├── RotateSquare3.vue │ ├── Plane.vue │ ├── RotateSquare5.vue │ ├── Google.vue │ ├── Hexagon.vue │ ├── Socket.vue │ └── Circle6.vue └── index.js ├── package.json └── dist └── vue-loading-spinner.js /.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | npm-debug.log 4 | /yarn.lock 5 | /src/App.vue 6 | /src/main.js 7 | /dist/static 8 | /dist/index.html 9 | /config 10 | 11 | \.idea/ 12 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | "plugins": { 5 | // to edit target browsers: use "browserslist" field in package.json 6 | "autoprefixer": {} 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { 4 | "modules": false, 5 | "targets": { 6 | "browsers": ["> 1%", "last 2 versions", "not ie <= 8"] 7 | } 8 | }], 9 | "stage-2" 10 | ], 11 | "plugins": ["transform-runtime"] 12 | } 13 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | // http://eslint.org/docs/user-guide/configuring 2 | 3 | module.exports = { 4 | root: true, 5 | parser: 'babel-eslint', 6 | parserOptions: { 7 | sourceType: 'module' 8 | }, 9 | env: { 10 | browser: true, 11 | }, 12 | // https://github.com/standard/standard/blob/master/docs/RULES-en.md 13 | extends: 'standard', 14 | // required to lint *.vue files 15 | plugins: [ 16 | 'html' 17 | ], 18 | // add your custom rules here 19 | 'rules': { 20 | // allow paren-less arrow functions 21 | 'arrow-parens': 0, 22 | // allow async-await 23 | 'generator-star-spacing': 0, 24 | // allow debugger during development 25 | 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vue-loading-spinner 2 | 3 | > Just another collection of loading spinners with Vue.js 4 | 5 | ## Installation 6 | 7 | ``` bash 8 | npm install --save vue-loading-spinner 9 | ``` 10 | or 11 | 12 | ``` bash 13 | yarn add vue-loading-spinner 14 | ``` 15 | 16 | ## Usage 17 | 18 | ``` vue 19 | 24 | 25 | 33 | ``` 34 | 35 | ## Demo 36 | 37 | List of all spinner: [Demo](https://nguyenvanduocit.github.io/vue-loading-spinner/) 38 | 39 | ## Development Setup 40 | 41 | Checkout branch `develop` 42 | -------------------------------------------------------------------------------- /src/components/ScaleOut.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 30 | 31 | 46 | -------------------------------------------------------------------------------- /src/components/CubeShadow.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 30 | 31 | 45 | -------------------------------------------------------------------------------- /src/components/Circle2.vue: -------------------------------------------------------------------------------- 1 | 4 | 32 | 45 | -------------------------------------------------------------------------------- /src/components/RotateSquare.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 30 | 31 | 48 | -------------------------------------------------------------------------------- /src/components/Texture.vue: -------------------------------------------------------------------------------- 1 | 4 | 25 | 41 | -------------------------------------------------------------------------------- /src/components/Circle3.vue: -------------------------------------------------------------------------------- 1 | 4 | 34 | 50 | -------------------------------------------------------------------------------- /src/components/Circle11.vue: -------------------------------------------------------------------------------- 1 | 6 | 23 | 53 | -------------------------------------------------------------------------------- /src/components/Pencil.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 33 | 34 | 48 | -------------------------------------------------------------------------------- /src/components/Wave.vue: -------------------------------------------------------------------------------- 1 | 8 | 29 | 68 | -------------------------------------------------------------------------------- /src/components/Circle5.vue: -------------------------------------------------------------------------------- 1 | 4 | 21 | 62 | -------------------------------------------------------------------------------- /src/components/Circle4.vue: -------------------------------------------------------------------------------- 1 | 4 | 21 | 65 | -------------------------------------------------------------------------------- /src/components/Jumper.vue: -------------------------------------------------------------------------------- 1 | 8 | 34 | 69 | -------------------------------------------------------------------------------- /src/components/DoubleBounce.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 37 | 38 | 72 | -------------------------------------------------------------------------------- /src/components/RotateSquare4.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 28 | 29 | 92 | -------------------------------------------------------------------------------- /src/components/Circle.vue: -------------------------------------------------------------------------------- 1 | 6 | 23 | 82 | -------------------------------------------------------------------------------- /src/components/Diamond.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 38 | 39 | 76 | -------------------------------------------------------------------------------- /src/components/Stretch.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | 40 | 41 | 85 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-loading-spinner", 3 | "version": "1.0.11", 4 | "description": "Loading spinner collection for Vuejs", 5 | "author": "nguyenvanduoc (nguyenvanduocit@gmail.com)", 6 | "scripts": { 7 | "build": "node build/build.js", 8 | "lint": "eslint --ext .js,.vue src" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/nguyenvanduocit/vue-loading-spinner.git" 13 | }, 14 | "main": "src/index.js", 15 | "dependencies": { 16 | "node-sass": "^4.5.3", 17 | "sass-loader": "^6.0.6", 18 | "vue": "^2.3.3" 19 | }, 20 | "devDependencies": { 21 | "url-loader": "^0.5.8", 22 | "autoprefixer": "^7.1.2", 23 | "babel-core": "^6.22.1", 24 | "babel-eslint": "^7.1.1", 25 | "babel-loader": "^7.1.1", 26 | "babel-plugin-transform-runtime": "^6.22.0", 27 | "babel-preset-env": "^1.3.2", 28 | "babel-preset-stage-2": "^6.22.0", 29 | "babel-register": "^6.22.0", 30 | "chalk": "^2.0.1", 31 | "connect-history-api-fallback": "^1.3.0", 32 | "copy-webpack-plugin": "^4.0.1", 33 | "css-loader": "^0.28.0", 34 | "cssnano": "^3.10.0", 35 | "eslint": "^3.19.0", 36 | "eslint-config-standard": "^6.2.1", 37 | "eslint-friendly-formatter": "^3.0.0", 38 | "eslint-loader": "^1.7.1", 39 | "eslint-plugin-html": "^3.1.0", 40 | "eslint-plugin-promise": "^3.4.0", 41 | "eslint-plugin-standard": "^2.0.1", 42 | "eventsource-polyfill": "^0.9.6", 43 | "extract-text-webpack-plugin": "^2.0.0", 44 | "file-loader": "^0.11.1", 45 | "ora": "^1.2.0", 46 | "semver": "^5.3.0", 47 | "shelljs": "^0.7.6", 48 | "vue-loader": "^12.1.0", 49 | "vue-style-loader": "^3.0.1", 50 | "vue-template-compiler": "^2.3.3", 51 | "webpack": "^2.6.1" 52 | }, 53 | "engines": { 54 | "node": ">= 4.0.0", 55 | "npm": ">= 3.0.0" 56 | }, 57 | "browserslist": [ 58 | "> 1%", 59 | "last 2 versions", 60 | "not ie <= 8", 61 | "ie 11" 62 | ] 63 | } 64 | -------------------------------------------------------------------------------- /src/components/Jawn.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 35 | 36 | 89 | -------------------------------------------------------------------------------- /src/components/Circle10.vue: -------------------------------------------------------------------------------- 1 | 8 | 31 | 91 | -------------------------------------------------------------------------------- /src/components/TwoCube.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 38 | 39 | 90 | -------------------------------------------------------------------------------- /src/components/RotateSquare2.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 26 | 27 | 89 | -------------------------------------------------------------------------------- /src/components/RotateSquare6.vue: -------------------------------------------------------------------------------- 1 | 7 | 55 | 88 | -------------------------------------------------------------------------------- /src/components/Circle7.vue: -------------------------------------------------------------------------------- 1 | 8 | 27 | 113 | -------------------------------------------------------------------------------- /src/components/SpinLine.vue: -------------------------------------------------------------------------------- 1 | 8 | 41 | 110 | -------------------------------------------------------------------------------- /src/components/PingPong.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 47 | 48 | 111 | -------------------------------------------------------------------------------- /src/components/Circle8.vue: -------------------------------------------------------------------------------- 1 | 13 | 36 | 104 | -------------------------------------------------------------------------------- /src/components/Mikepad.vue: -------------------------------------------------------------------------------- 1 | 13 | 40 | 110 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import Circle from './components/Circle.vue' 2 | import Circle2 from './components/Circle2.vue' 3 | import Circle3 from './components/Circle3.vue' 4 | import Circle4 from './components/Circle4.vue' 5 | import Circle5 from './components/Circle5.vue' 6 | import Circle6 from './components/Circle6.vue' 7 | import Circle7 from './components/Circle7.vue' 8 | import Circle8 from './components/Circle8.vue' 9 | import Circle9 from './components/Circle9.vue' 10 | import Circle10 from './components/Circle10.vue' 11 | import Circle11 from './components/Circle11.vue' 12 | import CubeShadow from './components/CubeShadow.vue' 13 | import Diamond from './components/Diamond.vue' 14 | import DoubleBounce from './components/DoubleBounce.vue' 15 | import Gauge from './components/Gauge.vue' 16 | import Google from './components/Google.vue' 17 | import Hexagon from './components/Hexagon.vue' 18 | import HourGlass from './components/HourGlass.vue' 19 | import Jawn from './components/Jawn.vue' 20 | import Jumper from './components/Jumper.vue' 21 | import LetterCube from './components/LetterCube.vue' 22 | import MikePad from './components/Mikepad.vue' 23 | import Origami from './components/Origami.vue' 24 | import Pencil from './components/Pencil.vue' 25 | import PingPong from './components/PingPong.vue' 26 | import Plane from './components/Plane.vue' 27 | import RotateSquare from './components/RotateSquare.vue' 28 | import RotateSquare2 from './components/RotateSquare2.vue' 29 | import RotateSquare3 from './components/RotateSquare3.vue' 30 | import RotateSquare4 from './components/RotateSquare4.vue' 31 | import RotateSquare5 from './components/RotateSquare5.vue' 32 | import ScaleOut from './components/ScaleOut.vue' 33 | import Socket from './components/Socket.vue' 34 | import SpinLine from './components/SpinLine.vue' 35 | import SquareGrid from './components/SquareGrid.vue' 36 | import Stretch from './components/Stretch.vue' 37 | import Texture from './components/Texture.vue' 38 | import ThreeDots from './components/ThreeDots.vue' 39 | import TwoCube from './components/TwoCube.vue' 40 | import Wave from './components/Wave.vue' 41 | 42 | export { 43 | Circle, 44 | Circle2, 45 | Circle3, 46 | Circle4, 47 | Circle5, 48 | Circle6, 49 | Circle7, 50 | Circle8, 51 | Circle9, 52 | Circle10, 53 | Circle11, 54 | CubeShadow, 55 | Diamond, 56 | DoubleBounce, 57 | Gauge, 58 | Google, 59 | Hexagon, 60 | HourGlass, 61 | Jawn, 62 | Jumper, 63 | LetterCube, 64 | MikePad, 65 | Origami, 66 | Pencil, 67 | PingPong, 68 | Plane, 69 | RotateSquare, 70 | RotateSquare2, 71 | RotateSquare3, 72 | RotateSquare4, 73 | RotateSquare5, 74 | ScaleOut, 75 | Socket, 76 | SpinLine, 77 | SquareGrid, 78 | Stretch, 79 | Texture, 80 | ThreeDots, 81 | TwoCube, 82 | Wave 83 | } 84 | -------------------------------------------------------------------------------- /src/components/Gauge.vue: -------------------------------------------------------------------------------- 1 | 6 | 30 | 125 | -------------------------------------------------------------------------------- /src/components/SquareGrid.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 44 | 45 | 115 | -------------------------------------------------------------------------------- /src/components/HourGlass.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 39 | 40 | 98 | -------------------------------------------------------------------------------- /src/components/Circle9.vue: -------------------------------------------------------------------------------- 1 | 18 | 41 | 128 | -------------------------------------------------------------------------------- /src/components/ThreeDots.vue: -------------------------------------------------------------------------------- 1 | 9 | 40 | 144 | -------------------------------------------------------------------------------- /src/components/Origami.vue: -------------------------------------------------------------------------------- 1 | 13 | 44 | 126 | -------------------------------------------------------------------------------- /src/components/LetterCube.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | 51 | 52 | 133 | -------------------------------------------------------------------------------- /src/components/RotateSquare3.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 38 | 39 | 180 | -------------------------------------------------------------------------------- /src/components/Plane.vue: -------------------------------------------------------------------------------- 1 | 17 | 51 | 185 | -------------------------------------------------------------------------------- /src/components/RotateSquare5.vue: -------------------------------------------------------------------------------- 1 | 10 | 37 | 186 | -------------------------------------------------------------------------------- /src/components/Google.vue: -------------------------------------------------------------------------------- 1 | 4 | 21 | 193 | -------------------------------------------------------------------------------- /src/components/Hexagon.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 48 | 49 | 219 | -------------------------------------------------------------------------------- /src/components/Socket.vue: -------------------------------------------------------------------------------- 1 | 194 | 195 | 226 | 227 | 537 | -------------------------------------------------------------------------------- /dist/vue-loading-spinner.js: -------------------------------------------------------------------------------- 1 | var VueLoadingSpinner=function(t){function e(i){if(s[i])return s[i].exports;var n=s[i]={i:i,l:!1,exports:{}};return t[i].call(n.exports,n,n.exports,e),n.l=!0,n.exports}var s={};return e.m=t,e.c=s,e.i=function(t){return t},e.d=function(t,s,i){e.o(t,s)||Object.defineProperty(t,s,{configurable:!1,enumerable:!0,get:i})},e.n=function(t){var s=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(s,"a",s),s},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=41)}([function(t,e){t.exports=function(t,e,s,i,n){var r,a=t=t||{},c=typeof t.default;"object"!==c&&"function"!==c||(r=t,a=t.default);var l="function"==typeof a?a.options:a;e&&(l.render=e.render,l.staticRenderFns=e.staticRenderFns),i&&(l._scopeId=i);var u;if(n?(u=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),s&&s.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(n)},l._ssrRegister=u):s&&(u=s),u){var o=l.functional,d=o?l.render:l.beforeCreate;o?l.render=function(t,e){return u.call(e),d(t,e)}:l.beforeCreate=d?[].concat(d,u):[u]}return{esModule:r,exports:a,options:l}}},function(t,e,s){function i(t){s(120)}var n=s(0)(s(42),s(160),i,"data-v-d65da49c",null);t.exports=n.exports},function(t,e,s){function i(t){s(118)}var n=s(0)(s(43),s(158),i,"data-v-b33ea45e",null);t.exports=n.exports},function(t,e,s){function i(t){s(117)}var n=s(0)(s(44),s(157),i,"data-v-b322755c",null);t.exports=n.exports},function(t,e,s){function i(t){s(83)}var n=s(0)(s(45),s(123),i,"data-v-056c31f0",null);t.exports=n.exports},function(t,e,s){function i(t){s(84)}var n=s(0)(s(46),s(124),i,"data-v-057a4971",null);t.exports=n.exports},function(t,e,s){function i(t){s(85)}var n=s(0)(s(47),s(125),i,"data-v-058860f2",null);t.exports=n.exports},function(t,e,s){function i(t){s(86)}var n=s(0)(s(48),s(126),i,"data-v-05967873",null);t.exports=n.exports},function(t,e,s){function i(t){s(87)}var n=s(0)(s(49),s(127),i,"data-v-05a48ff4",null);t.exports=n.exports},function(t,e,s){function i(t){s(88)}var n=s(0)(s(50),s(128),i,"data-v-05b2a775",null);t.exports=n.exports},function(t,e,s){function i(t){s(89)}var n=s(0)(s(51),s(129),i,"data-v-05c0bef6",null);t.exports=n.exports},function(t,e,s){function i(t){s(90)}var n=s(0)(s(52),s(130),i,"data-v-05ced677",null);t.exports=n.exports},function(t,e,s){function i(t){s(93)}var n=s(0)(s(53),s(133),i,"data-v-1192a1d2",null);t.exports=n.exports},function(t,e,s){function i(t){s(121)}var n=s(0)(s(54),s(161),i,"data-v-fd3fa63c",null);t.exports=n.exports},function(t,e,s){function i(t){s(110)}var n=s(0)(s(55),s(150),i,"data-v-7ae8f29b",null);t.exports=n.exports},function(t,e,s){function i(t){s(82)}var n=s(0)(s(56),s(122),i,"data-v-041d70f2",null);t.exports=n.exports},function(t,e,s){function i(t){s(112)}var n=s(0)(s(57),s(152),i,"data-v-7b86f29b",null);t.exports=n.exports},function(t,e,s){function i(t){s(105)}var n=s(0)(s(58),s(145),i,"data-v-5b1608a4",null);t.exports=n.exports},function(t,e,s){function i(t){s(103)}var n=s(0)(s(59),s(143),i,"data-v-544d37f4",null);t.exports=n.exports},function(t,e,s){function i(t){s(100)}var n=s(0)(s(60),s(140),i,"data-v-3f1f92a0",null);t.exports=n.exports},function(t,e,s){function i(t){s(104)}var n=s(0)(s(61),s(144),i,"data-v-59ce3e86",null);t.exports=n.exports},function(t,e,s){function i(t){s(111)}var n=s(0)(s(62),s(151),i,"data-v-7b46c7dd",null);t.exports=n.exports},function(t,e,s){function i(t){s(107)}var n=s(0)(s(63),s(147),i,"data-v-67c49feb",null);t.exports=n.exports},function(t,e,s){function i(t){s(108)}var n=s(0)(s(64),s(148),i,"data-v-6ac0c12c",null);t.exports=n.exports},function(t,e,s){function i(t){s(91)}var n=s(0)(s(65),s(131),i,"data-v-0739976f",null);t.exports=n.exports},function(t,e,s){function i(t){s(116)}var n=s(0)(s(66),s(156),i,"data-v-ac63c428",null);t.exports=n.exports},function(t,e,s){function i(t){s(119)}var n=s(0)(s(67),s(159),i,"data-v-d609312c",null);t.exports=n.exports},function(t,e,s){function i(t){s(92)}var n=s(0)(s(68),s(132),i,"data-v-09607fba",null);t.exports=n.exports},function(t,e,s){function i(t){s(94)}var n=s(0)(s(69),s(134),i,"data-v-22c720e8",null);t.exports=n.exports},function(t,e,s){function i(t){s(95)}var n=s(0)(s(70),s(135),i,"data-v-22d53869",null);t.exports=n.exports},function(t,e,s){function i(t){s(96)}var n=s(0)(s(71),s(136),i,"data-v-22e34fea",null);t.exports=n.exports},function(t,e,s){function i(t){s(97)}var n=s(0)(s(72),s(137),i,"data-v-22f1676b",null);t.exports=n.exports},function(t,e,s){function i(t){s(114)}var n=s(0)(s(73),s(154),i,"data-v-9306a3f4",null);t.exports=n.exports},function(t,e,s){function i(t){s(102)}var n=s(0)(s(74),s(142),i,"data-v-4e36f256",null);t.exports=n.exports},function(t,e,s){function i(t){s(99)}var n=s(0)(s(75),s(139),i,"data-v-3e8d7eb8",null);t.exports=n.exports},function(t,e,s){function i(t){s(113)}var n=s(0)(s(76),s(153),i,"data-v-83aa2736",null);t.exports=n.exports},function(t,e,s){function i(t){s(101)}var n=s(0)(s(77),s(141),i,"data-v-4962b213",null);t.exports=n.exports},function(t,e,s){function i(t){s(109)}var n=s(0)(s(78),s(149),i,"data-v-6c1aa529",null);t.exports=n.exports},function(t,e,s){function i(t){s(115)}var n=s(0)(s(79),s(155),i,"data-v-9a4929d4",null);t.exports=n.exports},function(t,e,s){function i(t){s(106)}var n=s(0)(s(80),s(146),i,"data-v-657591af",null);t.exports=n.exports},function(t,e,s){function i(t){s(98)}var n=s(0)(s(81),s(138),i,"data-v-24abd1db",null);t.exports=n.exports},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=s(1),n=s.n(i),r=s(4),a=s.n(r),c=s(5),l=s.n(c),u=s(6),o=s.n(u),d=s(7),v=s.n(d),f=s(8),h=s.n(f),p=s(9),_=s.n(p),x=s(10),b=s.n(x),C=s(11),y=s.n(C),m=s(2),k=s.n(m),g=s(3),z=s.n(g),w=s(12),E=s.n(w),$=s(13),S=s.n($),M=s(14),R=s.n(M),O=s(15),P=s.n(O),j=s(16),F=s.n(j),V=s(17),I=s.n(V),H=s(18),q=s.n(H),D=s(19),B=s.n(D),T=s(20),L=s.n(T),G=s(21),N=s.n(G),A=s(22),J=s.n(A),U=s(23),X=s.n(U),W=s(24),K=s.n(W),Q=s(25),Y=s.n(Q),Z=s(26),tt=s.n(Z),et=s(27),st=s.n(et),it=s(28),nt=s.n(it),rt=s(29),at=s.n(rt),ct=s(30),lt=s.n(ct),ut=s(31),ot=s.n(ut),dt=s(32),vt=s.n(dt),ft=s(33),ht=s.n(ft),pt=s(34),_t=s.n(pt),xt=s(35),bt=s.n(xt),Ct=s(36),yt=s.n(Ct),mt=s(37),kt=s.n(mt),gt=s(38),zt=s.n(gt),wt=s(39),Et=s.n(wt),$t=s(40),St=s.n($t);s.d(e,"Circle",function(){return n.a}),s.d(e,"Circle2",function(){return a.a}),s.d(e,"Circle3",function(){return l.a}),s.d(e,"Circle4",function(){return o.a}),s.d(e,"Circle5",function(){return v.a}),s.d(e,"Circle6",function(){return h.a}),s.d(e,"Circle7",function(){return _.a}),s.d(e,"Circle8",function(){return b.a}),s.d(e,"Circle9",function(){return y.a}),s.d(e,"Circle10",function(){return k.a}),s.d(e,"Circle11",function(){return z.a}),s.d(e,"CubeShadow",function(){return E.a}),s.d(e,"Diamond",function(){return S.a}),s.d(e,"DoubleBounce",function(){return R.a}),s.d(e,"Gauge",function(){return P.a}),s.d(e,"Google",function(){return F.a}),s.d(e,"Hexagon",function(){return I.a}),s.d(e,"HourGlass",function(){return q.a}),s.d(e,"Jawn",function(){return B.a}),s.d(e,"Jumper",function(){return L.a}),s.d(e,"LetterCube",function(){return N.a}),s.d(e,"MikePad",function(){return J.a}),s.d(e,"Origami",function(){return X.a}),s.d(e,"Pencil",function(){return K.a}),s.d(e,"PingPong",function(){return Y.a}),s.d(e,"Plane",function(){return tt.a}),s.d(e,"RotateSquare",function(){return st.a}),s.d(e,"RotateSquare2",function(){return nt.a}),s.d(e,"RotateSquare3",function(){return at.a}),s.d(e,"RotateSquare4",function(){return lt.a}),s.d(e,"RotateSquare5",function(){return ot.a}),s.d(e,"ScaleOut",function(){return vt.a}),s.d(e,"Socket",function(){return ht.a}),s.d(e,"SpinLine",function(){return _t.a}),s.d(e,"SquareGrid",function(){return bt.a}),s.d(e,"Stretch",function(){return yt.a}),s.d(e,"Texture",function(){return kt.a}),s.d(e,"ThreeDots",function(){return zt.a}),s.d(e,"TwoCube",function(){return Et.a}),s.d(e,"Wave",function(){return St.a})},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{innerStyles:function(){return{transform:"scale("+parseInt(this.size)/100+")"}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},background:{default:"#41b883"},color:{default:"#35495e"},stroke:{default:"5px"}},computed:{styles:function(){return{width:this.size,height:this.size,border:this.stroke+" solid "+this.background,borderTopColor:this.color}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},background:{default:"#41b883"},dotSize:{default:function(){return parseInt(this.size)/3+1}}},computed:{styles:function(){var t=parseInt(this.size),e=t/3;return{width:this.size,height:this.size,border:"0px solid "+this.background,boxShadow:"0 -"+e+"px 0 "+this.dotSize+"px "+this.background+" inset"}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},background:{default:"#41b883"}},computed:{styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{styles:function(){var t=parseInt(this.size);return{width:this.size,height:this.size,transform:"scale("+t/75+")"}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{innerStyles:function(){return{transform:"scale("+parseInt(this.size)/44+")"}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{innerStyles:function(){return{transform:"scale("+parseInt(this.size)/120+")"}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},background:{default:"#41b883"},duration:{default:"1.8s"}},computed:{styles:function(){return{width:this.size,height:this.size,backgroundColor:this.background,animationDuration:this.duration}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},color:{default:"#41b883"}},computed:{diamondStyle:function(){var t=parseInt(this.size);return{width:t/4+"px",height:t/4+"px"}},styles:function(){var t=parseInt(this.size);return{width:this.size,height:t/4+"px"}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},background:{default:"#41b883"},duration:{default:"2.0s"}},computed:{bounceStyle:function(){return{backgroundColor:this.background,animationDuration:this.duration}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{innerStyles:function(){return{transform:"scale("+parseInt(this.size)/60+")"}},styles:function(){var t=parseInt(this.size);return{width:this.size,height:t/2+"px"}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{innerStyles:function(){return{transform:"scale("+parseInt(this.size)/164+")"}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{innerStyles:function(){return{transform:"scale("+parseInt(this.size)/64+")"}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},color:{default:"#41b883"}},computed:{innerStyles:function(){return{transform:"scale("+parseInt(this.size)/70+")"}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{innerStyles:function(){return{transform:"scale("+parseInt(this.size)/2/75+")"}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{innerStyles:function(){return{transform:"scale("+parseInt(this.size)/31+")"}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{innerStyles:function(){return{transform:"scale("+parseInt(this.size)/60+")"}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},color:{default:"#41b883"}},computed:{styles:function(){return{width:this.size,height:"auto",fill:this.color}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{innerStyles:function(){return{transform:"scale("+parseInt(this.size)/250+")"}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},color:{default:"#41b883"}},computed:{innerStyles:function(){var t=parseInt(this.size);return{width:t+"px",height:this.size,transform:"scale("+t/70+")"}},styles:function(){return{width:parseInt(this.size)+"px",height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},background:{default:"#41b883"},duration:{default:"1.2s"}},computed:{styles:function(){return{backgroundColor:this.background,width:this.size,height:this.size,animationDuration:this.duration}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},background:{default:"#41b883"}},computed:{styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},color:{default:"#41b883"}},computed:{styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},color:{default:"#41b883"}},computed:{styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},color:{default:"#41b883"}},computed:{innerStyles:function(){return{transform:"scale("+parseInt(this.size)/80+")"}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},background:{default:"#41b883"},duration:{default:"1.0s"}},computed:{styles:function(){return{width:this.size,height:this.size,backgroundColor:this.background,animationDuration:this.duration}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{innerStyles:function(){return{transform:"scale("+parseInt(this.size)/220+")"}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},color:{default:"#41b883"},stroke:{default:"5px"}},computed:{lineStyles:function(){return{width:this.size,height:this.stroke,background:this.color,borderRadius:this.stroke}},styles:function(){var t=parseInt(this.size);return{width:this.size,height:this.size,transform:"scale("+t/75+")"}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},background:{default:"#41b883"},duration:{default:"1.3s"}},computed:{cubeStyles:function(){return{backgroundColor:this.background,animationDuration:this.duration}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},background:{default:"#41b883"},duration:{default:"1.2s"}},computed:{rectStyles:function(){return{backgroundColor:this.background,animationDuration:this.duration}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},color:{default:"#41b883"}},computed:{blobStyles:function(){return{borderColor:this.color}},moveBlobStyles:function(){return{borderColor:this.color,background:this.color}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"},background:{default:"#41b883"},duration:{default:"1.8s"}},computed:{cubeStyles:function(){return{backgroundColor:this.background,animationName:"sk-cubemove",animationDuration:this.duration}},styles:function(){return{width:this.size,height:this.size}}}}},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:{size:{default:"40px"}},computed:{styles:function(){return{width:this.size,height:this.size}}}}},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--gauge",style:t.styles},[s("div",{staticClass:"spinner-inner",style:t.innerStyles})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"spinner spinner--circle-2",style:t.styles})},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"spinner spinner--circle-3",style:t.styles})},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"spinner spinner--circle-4",style:t.styles})},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"spinner spinner--circle-5",style:t.styles})},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("svg",{staticClass:"spinner spinner--circle-6",style:t.styles,attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 100"}},[s("g",{staticClass:"anim-0"},[s("circle",{attrs:{cx:"50",cy:"50",r:"50",fill:t.background}})]),t._v(" "),s("g",{staticClass:"anim-1"},[s("circle",{attrs:{cx:"50",cy:"50",r:"5",fill:"white"}})]),t._v(" "),s("g",{staticClass:"anim-2"},[s("circle",{attrs:{cx:"75",cy:"50",r:"5",fill:"white"}}),t._v(" "),s("line",{attrs:{x1:"25",y1:"50",x2:"75",y2:"50",stroke:"white","stroke-width":"3"}})]),t._v(" "),s("g",{staticClass:"anim-3"},[s("circle",{attrs:{cx:"50",cy:"25",r:"5",fill:"white"}}),t._v(" "),s("line",{attrs:{x1:"50",y1:"25",x2:"25",y2:"75",stroke:"white","stroke-width":"3"}}),t._v(" "),s("line",{attrs:{x1:"50",y1:"25",x2:"75",y2:"75",stroke:"white","stroke-width":"3"}})]),t._v(" "),s("g",{staticClass:"anim-4"},[s("circle",{attrs:{cx:"75",cy:"25",r:"5",fill:"white"}}),t._v(" "),s("line",{attrs:{x1:"75",y1:"25",x2:"25",y2:"25",stroke:"white","stroke-width":"3"}})])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--circle-7",style:t.styles},[s("div",{staticClass:"spinner-inner"})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--circle-8",style:t.styles},[s("div",{staticClass:"spinner-inner",style:t.innerStyles},[t._m(0)])])},staticRenderFns:[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"ball-container"},[s("div",{staticClass:"contener_mixte"},[s("div",{staticClass:"ballcolor ball_1"},[t._v(" ")])]),t._v(" "),s("div",{staticClass:"contener_mixte"},[s("div",{staticClass:"ballcolor ball_2"},[t._v(" ")])]),t._v(" "),s("div",{staticClass:"contener_mixte"},[s("div",{staticClass:"ballcolor ball_3"},[t._v(" ")])]),t._v(" "),s("div",{staticClass:"contener_mixte"},[s("div",{staticClass:"ballcolor ball_4"},[t._v(" ")])])])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--circle-9",style:t.styles},[s("div",{staticClass:"spinner-inner",style:t.innerStyles},[t._m(0)])])},staticRenderFns:[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"loading spin-1"},[s("div",{staticClass:"loading spin-2"},[s("div",{staticClass:"loading spin-3"},[s("div",{staticClass:"loading spin-4"},[s("div",{staticClass:"loading spin-5"},[s("div",{staticClass:"loading spin-6"})])])])])])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("svg",{staticClass:"spinner spinner--pencil",style:t.styles,attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 677.34762 182.15429"}},[s("g",[s("path",{staticClass:"body-pencil",attrs:{d:"M128.273 0l-3.9 2.77L0 91.078l128.273 91.076 549.075-.006V.008L128.273 0zm20.852 30l498.223.006V152.15l-498.223.007V30zm-25 9.74v102.678l-49.033-34.813-.578-32.64 49.61-35.225z"}}),t._v(" "),s("path",{staticClass:"line",attrs:{d:"M134.482 157.147v25l518.57.008.002-25-518.572-.008z"}})])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"spinner spinner--rotate-square",style:t.styles})},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"spinner spinner--cube-shadow",style:t.styles})},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"spinner spinner--rotate-square-2",style:t.styles})},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("svg",{staticClass:"spinner spinner--cube",style:t.styles,attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 500.00001 500.00001"}},[s("g",{attrs:{fill:t.color}},[s("path",{staticClass:"b0",attrs:{d:"M66.734 66.734v366.533h366.532V66.734H66.734zm15 15h336.532v336.533H81.734V81.734z"}}),t._v(" "),s("path",{staticClass:"b2",attrs:{d:"M354.16 2.5v143.34H497.5V2.5H354.16zm10 10H487.5v123.34H364.16V12.5z"}}),t._v(" "),s("path",{staticClass:"b1",attrs:{d:"M0 2.5v143.34h143.34V2.5H0zm10 10h123.34v123.34H10V12.5z"}}),t._v(" "),s("path",{staticClass:"b3",attrs:{d:"M354.16 356.66V500H497.5V356.66H354.16zm10 10H487.5V490H364.16V366.66z"}}),t._v(" "),s("path",{staticClass:"b4",attrs:{d:"M0 356.66V500h143.34V356.66H0zm10 10h123.34V490H10V366.66z"}})])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("span",{staticClass:"spinner spinner--rotate-square4",style:t.styles},[s("span",{staticClass:"loader-inner"})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--rotate-square-5",style:t.styles},[s("div",{staticClass:"spinner-inner",style:t.innerStyles},[s("span",{staticClass:"load3 one"}),t._v(" "),s("span",{staticClass:"load3 two"}),t._v(" "),s("span",{staticClass:"load3-center"})])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--wave",style:t.styles},[s("div"),t._v(" "),s("div"),t._v(" "),s("div")])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--spin-line",style:t.styles},[s("div",{staticClass:"spinner-inner",style:t.lineStyles})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--jawn"},[s("div",{staticClass:"spinner-inner",style:t.styles},[s("div",{staticClass:"jawn",style:t.innerStyles})])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--stretch",style:t.styles},[s("div",{staticClass:"rect rect-1",style:t.rectStyles}),t._v(" "),s("div",{staticClass:"rect rect-2",style:t.rectStyles}),t._v(" "),s("div",{staticClass:"rect rect-3",style:t.rectStyles}),t._v(" "),s("div",{staticClass:"rect rect-4",style:t.rectStyles}),t._v(" "),s("div",{staticClass:"rect rect-5",style:t.rectStyles})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--socker",style:t.styles},[s("div",{staticClass:"spinner-inner",style:t.innerStyles},[t._m(0),t._v(" "),t._m(1),t._v(" "),t._m(2),t._v(" "),t._m(3),t._v(" "),t._m(4),t._v(" "),t._m(5),t._v(" "),t._m(6),t._v(" "),t._m(7),t._v(" "),t._m(8),t._v(" "),t._m(9),t._v(" "),t._m(10),t._v(" "),t._m(11),t._v(" "),t._m(12),t._v(" "),t._m(13),t._v(" "),t._m(14),t._v(" "),t._m(15),t._v(" "),t._m(16),t._v(" "),t._m(17),t._v(" "),t._m(18),t._v(" "),t._m(19),t._v(" "),t._m(20),t._v(" "),t._m(21),t._v(" "),t._m(22),t._v(" "),t._m(23),t._v(" "),t._m(24),t._v(" "),t._m(25),t._v(" "),t._m(26),t._v(" "),t._m(27),t._v(" "),t._m(28),t._v(" "),t._m(29),t._v(" "),t._m(30),t._v(" "),t._m(31),t._v(" "),t._m(32),t._v(" "),t._m(33),t._v(" "),t._m(34),t._v(" "),t._m(35),t._v(" "),t._m(36)])])},staticRenderFns:[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel center-gel"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c1 r1"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c2 r1"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c3 r1"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c4 r1"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c5 r1"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c6 r1"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c7 r2"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c8 r2"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c9 r2"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c10 r2"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c11 r2"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c12 r2"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c13 r2"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c14 r2"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c15 r2"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c16 r2"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c17 r2"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c18 r2"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c19 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c20 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c21 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c22 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c23 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c24 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c25 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c26 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c28 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c29 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c30 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c31 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c32 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c33 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c34 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c35 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c36 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"gel c37 r3"},[s("div",{staticClass:"hex-brick h1"}),t._v(" "),s("div",{staticClass:"hex-brick h2"}),t._v(" "),s("div",{staticClass:"hex-brick h3"})])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--hour-glass",style:t.styles},[s("div",{staticClass:"spinner-inner",style:t.innerStyles},[s("svg",{staticClass:"hourglass",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 120 206",preserveAspectRatio:"none"}},[s("path",{staticClass:"middle",attrs:{d:"M120 0H0v206h120V0zM77.1 133.2C87.5 140.9 92 145 92 152.6V178H28v-25.4c0-7.6 4.5-11.7 14.9-19.4 6-4.5 13-9.6 17.1-17 4.1 7.4 11.1 12.6 17.1 17zM60 89.7c-4.1-7.3-11.1-12.5-17.1-17C32.5 65.1 28 61 28 53.4V28h64v25.4c0 7.6-4.5 11.7-14.9 19.4-6 4.4-13 9.6-17.1 16.9z"}}),t._v(" "),s("path",{staticClass:"outer",attrs:{d:"M93.7 95.3c10.5-7.7 26.3-19.4 26.3-41.9V0H0v53.4c0 22.5 15.8 34.2 26.3 41.9 3 2.2 7.9 5.8 9 7.7-1.1 1.9-6 5.5-9 7.7C15.8 118.4 0 130.1 0 152.6V206h120v-53.4c0-22.5-15.8-34.2-26.3-41.9-3-2.2-7.9-5.8-9-7.7 1.1-2 6-5.5 9-7.7zM70.6 103c0 18 35.4 21.8 35.4 49.6V192H14v-39.4c0-27.9 35.4-31.6 35.4-49.6S14 81.2 14 53.4V14h92v39.4C106 81.2 70.6 85 70.6 103z"}})])])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--jumper",style:t.styles},[s("div"),t._v(" "),s("div"),t._v(" "),s("div")])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--hexagon",style:t.styles},[s("div",{staticClass:"spinner-inner",style:t.innerStyles},[t._m(0)])])},staticRenderFns:[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("ul",{staticClass:"hexagon-container"},[s("li",{staticClass:"hexagon hex_1"}),t._v(" "),s("li",{staticClass:"hexagon hex_2"}),t._v(" "),s("li",{staticClass:"hexagon hex_3"}),t._v(" "),s("li",{staticClass:"hexagon hex_4"}),t._v(" "),s("li",{staticClass:"hexagon hex_5"}),t._v(" "),s("li",{staticClass:"hexagon hex_6"}),t._v(" "),s("li",{staticClass:"hexagon hex_7"})])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--two-cube",style:t.styles},[s("div",{staticClass:"cube1",style:t.cubeStyles}),t._v(" "),s("div",{staticClass:"cube2",style:t.cubeStyles})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--mikepad",style:t.styles},[s("div",{staticClass:"spinner-inner",style:t.innerStyles},[s("div",{staticClass:"binding"}),t._v(" "),t._m(0)])])},staticRenderFns:[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"pad"},[s("div",{staticClass:"line line1"}),t._v(" "),s("div",{staticClass:"line line2"}),t._v(" "),s("div",{staticClass:"line line3"})])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner-origami",style:t.styles},[s("div",{staticClass:"spinner-inner loading",style:t.innerStyles},[s("span",{staticClass:"slice"}),t._v(" "),s("span",{staticClass:"slice"}),t._v(" "),s("span",{staticClass:"slice"}),t._v(" "),s("span",{staticClass:"slice"}),t._v(" "),s("span",{staticClass:"slice"}),t._v(" "),s("span",{staticClass:"slice"})])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"spinner spinner--texture",style:t.styles})},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--double-bounce",style:t.styles},[s("div",{staticClass:"double-bounce1",style:t.bounceStyle}),t._v(" "),s("div",{staticClass:"double-bounce2",style:t.bounceStyle})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--socker",style:t.styles},[s("div",{staticClass:"spinner-inner",style:t.innerStyles},[t._m(0)])])},staticRenderFns:[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"cube panelLoad"},[s("div",{staticClass:"cube-face cube-face-front"},[t._v("L")]),t._v(" "),s("div",{staticClass:"cube-face cube-face-back"},[t._v("O")]),t._v(" "),s("div",{staticClass:"cube-face cube-face-left"},[t._v("A")]),t._v(" "),s("div",{staticClass:"cube-face cube-face-right"},[t._v("D")]),t._v(" "),s("div",{staticClass:"cube-face cube-face-bottom"},[t._v("I")]),t._v(" "),s("div",{staticClass:"cube-face cube-face-top"},[t._v("N'")])])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"spinner spinner--google",style:t.styles})},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--square-grid",style:t.styles},[s("div",{staticClass:"sk-cube sk-cube1",style:t.cubeStyles}),t._v(" "),s("div",{staticClass:"sk-cube sk-cube2",style:t.cubeStyles}),t._v(" "),s("div",{staticClass:"sk-cube sk-cube3",style:t.cubeStyles}),t._v(" "),s("div",{staticClass:"sk-cube sk-cube4",style:t.cubeStyles}),t._v(" "),s("div",{staticClass:"sk-cube sk-cube5",style:t.cubeStyles}),t._v(" "),s("div",{staticClass:"sk-cube sk-cube6",style:t.cubeStyles}),t._v(" "),s("div",{staticClass:"sk-cube sk-cube7",style:t.cubeStyles}),t._v(" "),s("div",{staticClass:"sk-cube sk-cube8",style:t.cubeStyles}),t._v(" "),s("div",{staticClass:"sk-cube sk-cube9",style:t.cubeStyles})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement;return(t._self._c||e)("div",{staticClass:"spinner spinner--scale-out",style:t.styles})},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner",style:t.styles},[s("div",{staticClass:"blob top",style:t.blobStyles}),t._v(" "),s("div",{staticClass:"blob bottom",style:t.blobStyles}),t._v(" "),s("div",{staticClass:"blob left",style:t.blobStyles}),t._v(" "),s("div",{staticClass:"blob move-blob",style:t.moveBlobStyles})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--ping-pong",style:t.styles},[s("div",{staticClass:"spinner-inner",style:t.innerStyles},[t._m(0)])])},staticRenderFns:[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"board"},[s("div",{staticClass:"left"}),t._v(" "),s("div",{staticClass:"right"}),t._v(" "),s("div",{staticClass:"ball"})])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--circle-11",style:t.styles},[s("div",{staticClass:"spinner-inner"})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--circle-10",style:t.styles},[s("div",{staticClass:"spinner-inner",style:t.innerStyles},[s("div",{staticClass:"loader-xbox"})])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"spinner spinner--plane",style:t.styles},[s("div",{staticClass:"spinner-inner",style:t.innerStyles},[t._m(0),t._v(" "),t._m(1),t._v(" "),t._m(2)])])},staticRenderFns:[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"mask",attrs:{id:"top"}},[s("div",{staticClass:"plane"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"mask",attrs:{id:"middle"}},[s("div",{staticClass:"plane"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"mask",attrs:{id:"bottom"}},[s("div",{staticClass:"plane"})])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("svg",{staticClass:"spinner spinner--circle",style:t.styles,attrs:{viewBox:"0 0 66 66",xmlns:"http://www.w3.org/2000/svg"}},[s("circle",{staticClass:"path",attrs:{fill:"none","stroke-width":"6","stroke-linecap":"round",cx:"33",cy:"33",r:"30"}})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("span",{staticClass:"spinner spinner--rotate-diamond",style:t.styles},[s("div",{staticClass:"diamond",style:t.diamondStyle}),t._v(" "),s("div",{staticClass:"diamond",style:t.diamondStyle}),t._v(" "),s("div",{staticClass:"diamond",style:t.diamondStyle})])},staticRenderFns:[]}}]); 2 | //# sourceMappingURL=vue-loading-spinner.js.map -------------------------------------------------------------------------------- /src/components/Circle6.vue: -------------------------------------------------------------------------------- 1 | 24 | 44 | 558 | --------------------------------------------------------------------------------