fslightbox-angular 0.1.0 → 0.2.0

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -48,8 +48,8 @@ import { Text } from "./Text";
48
48
  </div>`
49
49
  })
50
50
  export class Demo {
51
- toggler = false
52
- slide = 1
51
+ toggler = false;
52
+ slide = 1;
53
53
  sources = [
54
54
  'https://i.imgur.com/fsyrScY.jpg',
55
55
  'https://www.youtube.com/watch?v=xshEZzpS4CQ',
@@ -60,7 +60,7 @@ export class Demo {
60
60
  value: "An example message"
61
61
  }
62
62
  }
63
- ]
63
+ ];
64
64
  open(n : number) {
65
65
  this.slide = n;
66
66
  this.toggler = !this.toggler
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fslightbox-angular",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "A capable Angular component for displaying images, videos, or, through custom sources, anything you want in a full-window overlying box.",
5
5
  "main": "index.js",
6
6
  "typings": "fslightbox-angular.d.ts",
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "homepage": "https://fslightbox.com/",
24
24
  "peerDependencies": {
25
- "@angular/common": "^20.0.0",
26
- "@angular/core": "^20.0.0"
25
+ "@angular/common": ">=20.0.0",
26
+ "@angular/core": ">=20.0.0"
27
27
  }
28
28
  }