@vuesimple/vs-loader 1.3.41 → 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -70,7 +70,7 @@ yarn add @vuesimple/vs-loader
70
70
  <br />
71
71
 
72
72
  <h3>
73
- <img src="https://nuxtjs.org/favicon.ico" width="20px"> Nuxt.js
73
+ <img src="https://i.imgur.com/MWynQNa.png" width="20px"> Nuxt.js
74
74
  </h3>
75
75
 
76
76
  Nuxt Code Snippet
@@ -115,8 +115,9 @@ After installation,
115
115
 
116
116
  ### ⚙ Props
117
117
 
118
- | Name | Type | Default | Description |
119
- | ------- | ------ | --------- | ----------------------------------- |
120
- | variant | String | `pulse` | Variants: `pulse`, `dots`, `inline` |
121
- | color | String | `#1f73b7` | Loader color |
122
- | size | Number | `10` | Loader size |
118
+ | Name | Type | Default | Description |
119
+ | ------- | ------- | --------- | -------------------------------------------- |
120
+ | variant | String | `pulse` | Variants: `pulse`, `dots`, `inline`. |
121
+ | color | String | `#1f73b7` | Loader color. |
122
+ | size | Number | `10` | Loader size. |
123
+ | center | Boolean | - | Center aligns the loader wrt the parent div. |
@@ -1,8 +1,6 @@
1
- // rollup.config.js
2
- import vue from 'rollup-plugin-vue';
3
- import buble from 'rollup-plugin-buble';
4
- import image from '@rollup/plugin-image';
5
1
  import { terser } from 'rollup-plugin-terser';
2
+ import buble from '@rollup/plugin-buble';
3
+ import vue from 'rollup-plugin-vue';
6
4
  import minimist from 'minimist';
7
5
 
8
6
  const argv = minimist(process.argv.slice(2));
@@ -20,7 +18,6 @@ const config = {
20
18
  needMap: false,
21
19
  }),
22
20
  buble(),
23
- image(),
24
21
  ],
25
22
  };
26
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vuesimple/vs-loader",
3
- "version": "1.3.41",
3
+ "version": "1.4.2",
4
4
  "description": "A simple vue loader. Perfect for all your loader scenarios.",
5
5
  "main": "dist/vs-loader.umd.js",
6
6
  "module": "dist/vs-loader.esm.js",
@@ -15,10 +15,10 @@
15
15
  "build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vs-loader.min.js"
16
16
  },
17
17
  "devDependencies": {
18
+ "@rollup/plugin-buble": "0.21.3",
18
19
  "@rollup/plugin-image": "2.0.5",
19
- "minimist": "1.2.0",
20
+ "minimist": "1.2.5",
20
21
  "rollup": "1.32.0",
21
- "rollup-plugin-buble": "0.19.8",
22
22
  "rollup-plugin-terser": "6.1.0",
23
23
  "rollup-plugin-vue": "5.1.9",
24
24
  "vue": "2.6.10",
@@ -52,5 +52,5 @@
52
52
  "url": "https://github.com/ashwinkshenoy/vue-simple/issues"
53
53
  },
54
54
  "homepage": "https://github.com/ashwinkshenoy/vue-simple/tree/master/packages/vs-loader",
55
- "gitHead": "b92e1a548447bbb336838266f33438bee25f4a5c"
55
+ "gitHead": "337bc9bb282ad2e0d7aebe8f581eecaf822dd809"
56
56
  }