rm-image-slider 17.1.3 → 17.3.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.
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Angular Image Slider with Lightbox
2
2
 
3
3
  An Angular responsive image slider with lightbox popup.
4
- Also support youtube and mp4 video urls. It is leazy loading and heigly optimized with standalone component.
4
+ Also support youtube and mp4 video urls.
5
5
 
6
6
  (Compatible with Angular Version: 17)
7
7
 
@@ -45,7 +45,7 @@ import { RmImageSliderComponent } from 'rm-image-slider';
45
45
  **ImageObject format**
46
46
 
47
47
  ```js
48
- imageObject: Array<ImageObject> = [{
48
+ imageObject: Array<object> = [{
49
49
  image: 'assets/img/slider/1.jpg',
50
50
  thumbImage: 'assets/img/slider/1_min.jpeg',
51
51
  alt: 'alt of image',
@@ -63,7 +63,7 @@ imageObject: Array<ImageObject> = [{
63
63
  **Image, Youtube and MP4 url's object format**
64
64
 
65
65
  ```js
66
- imageObject: Array<ImageObject> = [{
66
+ imageObject: Array<object> = [{
67
67
  video: 'https://youtu.be/....' // Youtube url
68
68
  },
69
69
  {
@@ -114,8 +114,6 @@ import { RmImageSliderComponent } from 'rm-image-slider';
114
114
 
115
115
  @Component({
116
116
  selector: 'sample',
117
- standalone: true,
118
- imports: [RmImageSliderComponent],
119
117
  template:`
120
118
  <rm-image-slider [images]="imageObject" #nav>
121
119
  </rm-image-slider>