Skip to content
This repository was archived by the owner on Jan 29, 2022. It is now read-only.

Commit d94d5fa

Browse files
authored
Merge pull request #48 from SimonGolms/dev
release
2 parents ae4abe9 + cf1ae1c commit d94d5fa

File tree

4 files changed

+29
-13
lines changed

4 files changed

+29
-13
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
<a name="0.7.3-0"></a>
2+
## [0.7.3-0](https://github.com/simongolms/ngx-ionic-image-viewer/compare/v0.7.1...v0.7.3-0) (2020-10-05)
3+
4+
5+
### Bug Fixes
6+
7+
* omit peer dependencies warning ([ac64084](https://github.com/simongolms/ngx-ionic-image-viewer/commit/ac64084)), closes [#43](https://github.com/simongolms/ngx-ionic-image-viewer/issues/43) [#46](https://github.com/simongolms/ngx-ionic-image-viewer/issues/46)
8+
19
<a name="0.7.1"></a>
210
## [0.7.1](https://github.com/simongolms/ngx-ionic-image-viewer/compare/v0.7.0...v0.7.1) (2020-05-31)
311

demo/src/app/home/home.page.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { ViewerModalComponent } from 'ngx-ionic-image-viewer';
55
@Component({
66
selector: 'app-home',
77
templateUrl: 'home.page.html',
8-
styleUrls: ['home.page.scss']
8+
styleUrls: ['home.page.scss'],
99
})
1010
export class HomePage implements OnInit {
1111
prefersDark = false;
@@ -14,15 +14,15 @@ export class HomePage implements OnInit {
1414

1515
imgAvatar = {
1616
id: 237,
17-
src: 'https://i.picsum.photos/id/237/200/200.jpg',
18-
srcHighRes: 'https://i.picsum.photos/id/237/3500/2095.jpg',
19-
author: 'André Spieker'
17+
src: 'https://picsum.photos/id/237/200/200.jpg',
18+
srcHighRes: 'https://picsum.photos/id/237/3500/2095.jpg',
19+
author: 'André Spieker',
2020
};
2121
imgThumbnail = {
2222
id: 1040,
23-
src: 'https://i.picsum.photos/id/1040/200/200.jpg',
24-
srcHighRes: 'https://i.picsum.photos/id/1040/4496/3000.jpg',
25-
author: 'Rachel Davis'
23+
src: 'https://picsum.photos/id/1040/200/200.jpg',
24+
srcHighRes: 'https://picsum.photos/id/1040/4496/3000.jpg',
25+
author: 'Rachel Davis',
2626
};
2727

2828
constructor(public modalController: ModalController) {}
@@ -44,11 +44,11 @@ export class HomePage implements OnInit {
4444
componentProps: {
4545
src: this.imgUrl, // required
4646
title: 'Silhoutte (Programmatic)', // optional
47-
text: 'Photo by Mayur Gala on Unsplash' // optional
47+
text: 'Photo by Mayur Gala on Unsplash', // optional
4848
},
4949
cssClass: 'ion-img-viewer', // required
5050
keyboardClose: true,
51-
showBackdrop: true
51+
showBackdrop: true,
5252
});
5353

5454
return await modal.present();

projects/ngx-ionic-image-viewer/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
<a name="0.7.3-0"></a>
2+
## [0.7.3-0](https://github.com/simongolms/ngx-ionic-image-viewer/compare/v0.7.1...v0.7.3-0) (2020-10-05)
3+
4+
5+
### Bug Fixes
6+
7+
* omit peer dependencies warning ([ac64084](https://github.com/simongolms/ngx-ionic-image-viewer/commit/ac64084)), closes [#43](https://github.com/simongolms/ngx-ionic-image-viewer/issues/43) [#46](https://github.com/simongolms/ngx-ionic-image-viewer/issues/46)
8+
19
<a name="0.7.1"></a>
210
## [0.7.1](https://github.com/simongolms/ngx-ionic-image-viewer/compare/v0.7.0...v0.7.1) (2020-05-31)
311

projects/ngx-ionic-image-viewer/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-ionic-image-viewer",
3-
"version": "0.7.1",
3+
"version": "0.7.3-0",
44
"description": "An Ionic 4 Angular module to view & zoom on images and photos without any additional dependencies.",
55
"keywords": [
66
"ionic",
@@ -39,8 +39,8 @@
3939
"url": "https://github.com/simongolms/ngx-ionic-image-viewer/issues"
4040
},
4141
"peerDependencies": {
42-
"@angular/common": "^8.2.13",
43-
"@angular/core": "^8.2.13",
44-
"@ionic/angular": "4.0.0"
42+
"@angular/common": ">=8.2.13",
43+
"@angular/core": ">=8.2.13",
44+
"@ionic/angular": ">=4.0.0"
4545
}
4646
}

0 commit comments

Comments
 (0)