ngx-edge-slider 2.0.5 → 2.0.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-edge-slider",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0",
@@ -238,8 +238,6 @@ export class SimpleSliderComponent implements OnInit, AfterViewInit, OnChanges,
238
238
  runtimePlugins.push(this.autoplay);
239
239
  }
240
240
 
241
- if (cfg.thumbs) runtimePlugins.push(this.thumbs);
242
-
243
241
  this.engine.init({ ...config, plugins: undefined }, runtimePlugins);
244
242
 
245
243
  if (cfg.navigation) {
@@ -6,7 +6,6 @@ export interface SliderPluginConfig {
6
6
  autoplay?: { delay?: number };
7
7
  navigation?: boolean;
8
8
  pagination?: boolean;
9
- thumbs?: boolean;
10
9
  }
11
10
  export interface SliderConfig {
12
11
  slides: any[];
@@ -48,7 +47,6 @@ export const DEFAULT_CONFIG: SliderConfig = {
48
47
  pagination: false,
49
48
  navigation: false,
50
49
  autoplay: undefined,
51
- thumbs: false,
52
50
  },
53
51
  gap: 0,
54
52