awesome-image-viewer
Advanced tools
Comparing version 1.0.52 to 1.0.53
{ | ||
"name": "awesome-image-viewer", | ||
"description": "React, Angular, Vue, and Typescript compatible image viewer", | ||
"version": "1.0.52", | ||
"version": "1.0.53", | ||
"author": "Mostafa Mohammadzadeh", | ||
@@ -12,5 +12,3 @@ "license": "MIT", | ||
"test-cov": "jest --coverage", | ||
"pub": "npm test || npm update && npm publish", | ||
"dep": "cd website && npm update && npm run build && npm run export && cd .. && find website/out -type d -exec chmod 755 {} \\; && find website/out -type f -exec chmod 644 {} \\; && git add -A && git commit -m \"[deployment auto commit]\" && git ftp push", | ||
"fa_dep": "npm update && npm publish && cd website && npm update && npm run build && npm run export && cd .. && find website/out -type d -exec chmod 755 {} \\; && find website/out -type f -exec chmod 644 {} \\; && git add -A && git commit -m \"[deployment auto commit]\" && git ftp push" | ||
"dep": "npm update && npm publish && cd website && npm update && npm run build && npm run export && cd .. && find website/out -type d -exec chmod 755 {} \\; && find website/out -type f -exec chmod 644 {} \\; && git add -A && git commit -m \"[deployment auto commit]\" && git ftp push" | ||
}, | ||
@@ -17,0 +15,0 @@ "devDependencies": { |
@@ -63,4 +63,4 @@ /// <reference types="node" /> | ||
protected addEventToHide(): void; | ||
protected hide(): void; | ||
hide(): void; | ||
} | ||
export {}; |
@@ -506,3 +506,3 @@ //custom types: | ||
//hide: | ||
protected hide(){ | ||
public hide(){ | ||
this.view.classList.remove('visible'); | ||
@@ -509,0 +509,0 @@ const thisView = this; |
94510