Skip to content

Commit

Permalink
fix: npmjs.org links
Browse files Browse the repository at this point in the history
  • Loading branch information
altrusl committed Nov 9, 2023
1 parent 73f887f commit ac7492e
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 80 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Simple Modal window Vue.js component that takes care of overlay, centering, animation, outside click/`Escape` key/`X-mark` closing and allows you to concentrate on its content only

![VB-preview](https://altrusl.github.io/vuesence-modal-window/vmw.gif)
![VB-preview](https://vuesence.github.io/modal-window/vmw.gif)

Can be used for alerts, modals, dialogs etc.

Expand Down Expand Up @@ -57,7 +57,7 @@ Styling and animation can be customized - check out `ModalWindow.vue`'s `<style>

## Demo

<a href="https://altrusl.github.io/vuesence-modal-window/" target="_blank">https://altrusl.github.io/vuesence-modal-window/</a>
<a href="https://vuesence.github.io/modal-window/" target="_blank">https://vuesence.github.io/modal-window/</a>


## Playground
Expand Down
152 changes: 76 additions & 76 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,78 +1,78 @@
{
"name": "@vuesence/modal-window",
"description": "Simple lightweight Modal Window Vue.js component",
"version": "0.7.8",
"private": false,
"main": "dist/modal-window.umd.js",
"module": "dist/modal-window.esm.js",
"unpkg": "dist/modal-window.umd.min.js",
"homepage": "https://altrusl.github.io/vuesence-modal-window/",
"repository": {
"type": "git",
"url": "git+https://github.com/altrusl/vuesence-modal-window.git"
},
"author": {
"name": "Ruslan Makarov",
"url": "https://altrusl.github.io/cv"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"vue",
"modal",
"modal window"
],
"files": [
"src/*",
"dist/*",
"package.json",
"README.md",
"LICENSE "
],
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"build-dist": "vue-cli-service build --target lib src/components/ModalWindow.vue",
"lint": "vue-cli-service lint"
},
"dependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier-eslint": "^11.0.0",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"prettier": {
"tabWidth": 4,
"useTabs": true
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
"name": "@vuesence/modal-window",
"description": "Simple lightweight Modal Window Vue.js component",
"version": "0.7.9",
"private": false,
"main": "dist/modal-window.umd.js",
"module": "dist/modal-window.esm.js",
"unpkg": "dist/modal-window.umd.min.js",
"homepage": "https://vuesence.github.io/modal-window/",
"repository": {
"type": "git",
"url": "git+https://github.com/vuesence/modal-window.git"
},
"author": {
"name": "Ruslan Makarov",
"url": "https://altrusl.github.io/cv"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"vue",
"modal",
"modal window"
],
"files": [
"src/*",
"dist/*",
"package.json",
"README.md",
"LICENSE "
],
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"build-dist": "vue-cli-service build --target lib src/components/ModalWindow.vue",
"lint": "vue-cli-service lint"
},
"dependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier-eslint": "^11.0.0",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"prettier": {
"tabWidth": 4,
"useTabs": true
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}
4 changes: 2 additions & 2 deletions src/components/ModalWindow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ export default {
padding: 20px 30px 40px;
background-color: #fff;
border-radius: 2px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.33);
transition: all 0.3s ease;
font-family: Helvetica, Arial, sans-serif;
/* font-family: Helvetica, Arial, sans-serif; */
position: relative;
}
Expand Down

0 comments on commit ac7492e

Please sign in to comment.