mirror of
https://github.com/KevinMidboe/vue-js-modal.git
synced 2025-10-29 18:00:20 +00:00
Removed all the opencollective stuff that was breaking building process for SPARKL
This commit is contained in:
44
README.md
44
README.md
@@ -1,11 +1,9 @@
|
||||
<p align="center">
|
||||
|
||||
|
||||
# Vue.js modal
|
||||
|
||||
[](https://badge.fury.io/js/vue-js-modal)
|
||||
[](https://www.npmjs.com/package/vue-js-modal)
|
||||
[](#backers)
|
||||
[](#sponsors)
|
||||
|
||||
##### Simple to use, highly customizable, mobile friendly Vue.js 2.0+ modal with SSR support. http://vue-js-modal.yev.io/
|
||||
|
||||
@@ -36,13 +34,13 @@ Vue.use(VModal)
|
||||
|
||||
/*
|
||||
By default plugin will use "modal" name for the component.
|
||||
If you need to change it, you can do so by providing "componentName" param.
|
||||
If you need to change it, you can do so by providing "componentName" param.
|
||||
|
||||
Example:
|
||||
|
||||
Vue.use(VModal, { componentName: "foo-modal" })
|
||||
...
|
||||
<foo-modal name="bar"></foo-modal>
|
||||
<foo-modal name="bar"></foo-modal>
|
||||
*/
|
||||
```
|
||||
|
||||
@@ -219,13 +217,13 @@ And then forbits closing it for the next 5000 ms
|
||||
|
||||
#### Height: "auto"
|
||||
|
||||
From `v1.2.6` height can be set to "auto". If you want to be able to scroll modal in case it's height exceeds window height - you can set flag `scrollable="true"`.
|
||||
From `v1.2.6` height can be set to "auto". If you want to be able to scroll modal in case it's height exceeds window height - you can set flag `scrollable="true"`.
|
||||
|
||||
p.s. `scrollable` will only work with `height="auto"`.
|
||||
|
||||
p.s.s. height `auto` is **NOT** responsible for correct positioning of the modal. You will have to use `pivot-y` to position it correctly.
|
||||
|
||||
Example:
|
||||
Example:
|
||||
|
||||
```vue
|
||||
<modal name="foo" height="auto" :scrollable="true">...</modal>
|
||||
@@ -285,7 +283,7 @@ Example:
|
||||
|
||||
If you want to change overflow background color, you can easily do it using css.
|
||||
|
||||
For all modals:
|
||||
For all modals:
|
||||
|
||||
```css
|
||||
.v--modal-overlay {
|
||||
@@ -332,33 +330,3 @@ cd demo/client_side_rendering
|
||||
npm install
|
||||
npm run dev
|
||||
```
|
||||
|
||||
## Contributors
|
||||
|
||||
This project exists thanks to all the people who contribute.
|
||||
<a href="graphs/contributors"><img src="https://opencollective.com/vue-js-modal/contributors.svg?width=890" /></a>
|
||||
|
||||
|
||||
## Backers
|
||||
|
||||
Thank you to all our backers! [[Become a backer](https://opencollective.com/vue-js-modal#backer)]
|
||||
|
||||
<a href="https://opencollective.com/vue-js-modal#backers" target="_blank"><img src="https://opencollective.com/vue-js-modal/backers.svg?width=890"></a>
|
||||
|
||||
|
||||
## Sponsors
|
||||
|
||||
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/vue-js-modal#sponsor)]
|
||||
|
||||
<a href="https://opencollective.com/vue-js-modal/sponsor/0/website" target="_blank"><img src="https://opencollective.com/vue-js-modal/sponsor/0/avatar.svg"></a>
|
||||
<a href="https://opencollective.com/vue-js-modal/sponsor/1/website" target="_blank"><img src="https://opencollective.com/vue-js-modal/sponsor/1/avatar.svg"></a>
|
||||
<a href="https://opencollective.com/vue-js-modal/sponsor/2/website" target="_blank"><img src="https://opencollective.com/vue-js-modal/sponsor/2/avatar.svg"></a>
|
||||
<a href="https://opencollective.com/vue-js-modal/sponsor/3/website" target="_blank"><img src="https://opencollective.com/vue-js-modal/sponsor/3/avatar.svg"></a>
|
||||
<a href="https://opencollective.com/vue-js-modal/sponsor/4/website" target="_blank"><img src="https://opencollective.com/vue-js-modal/sponsor/4/avatar.svg"></a>
|
||||
<a href="https://opencollective.com/vue-js-modal/sponsor/5/website" target="_blank"><img src="https://opencollective.com/vue-js-modal/sponsor/5/avatar.svg"></a>
|
||||
<a href="https://opencollective.com/vue-js-modal/sponsor/6/website" target="_blank"><img src="https://opencollective.com/vue-js-modal/sponsor/6/avatar.svg"></a>
|
||||
<a href="https://opencollective.com/vue-js-modal/sponsor/7/website" target="_blank"><img src="https://opencollective.com/vue-js-modal/sponsor/7/avatar.svg"></a>
|
||||
<a href="https://opencollective.com/vue-js-modal/sponsor/8/website" target="_blank"><img src="https://opencollective.com/vue-js-modal/sponsor/8/avatar.svg"></a>
|
||||
<a href="https://opencollective.com/vue-js-modal/sponsor/9/website" target="_blank"><img src="https://opencollective.com/vue-js-modal/sponsor/9/avatar.svg"></a>
|
||||
|
||||
|
||||
|
||||
10
package.json
10
package.json
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "vue-js-modal",
|
||||
"description": "Modal Component for Vue.js",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"author": "euvl <yev.vlasenko@gmail.com>",
|
||||
"main": "dist/index.js",
|
||||
"repository": {
|
||||
@@ -70,13 +70,5 @@
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": "^2.2.6"
|
||||
},
|
||||
"dependencies": {
|
||||
"opencollective": "^1.0.3"
|
||||
},
|
||||
"collective": {
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/vue-js-modal",
|
||||
"logo": "https://opencollective.com/opencollective/logo.txt"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user