searchsmartly-ui 0.0.170 → 0.0.172

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/dist/index.d.ts CHANGED
@@ -133,8 +133,7 @@ interface CarouselInterface {
133
133
  id?: string;
134
134
  sx?: SxProps$1<Theme>;
135
135
  imageSX?: SxProps$1<Theme>;
136
- onNextClick?: (currentIndex: number, nextIndex: number) => void;
137
- onPreviousClick?: (currentIndex: number, prevIndex: number) => void;
136
+ onChange?: (currentIndex: number) => void;
138
137
  }
139
138
  declare const SlickCarousel: FC<CarouselInterface>;
140
139