react-slideshow-image 4.2.1 → 4.3.1

Sign up to get free protection for your applications and to get access to all the features.
package/dist/helpers.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- import { ReactNode } from 'react';
1
+ import React, { ReactNode } from 'react';
2
2
  import { ButtonClick, FadeProps, Responsive, SlideProps, TweenEasingFn, ZoomProps } from './types';
3
3
  export declare const getStartingIndex: (children: ReactNode, defaultIndex?: number | undefined) => number;
4
4
  export declare const getResponsiveSettings: (wrapperWidth: number, responsive?: Responsive[] | undefined) => Responsive | undefined;
5
5
  export declare const getEasing: (easeMethod?: string | undefined) => TweenEasingFn;
6
6
  export declare const showPreviousArrow: ({ prevArrow, infinite }: FadeProps | SlideProps | ZoomProps, currentIndex: number, moveSlides: ButtonClick) => ReactNode;
7
- export declare const showNextArrow: (properties: FadeProps | SlideProps | ZoomProps, currentIndex: number, moveSlides: ButtonClick) => JSX.Element;
7
+ export declare const showNextArrow: (properties: FadeProps | SlideProps | ZoomProps, currentIndex: number, moveSlides: ButtonClick, responsiveSettings?: Responsive | undefined) => React.JSX.Element;
8
8
  export declare const showIndicators: (props: FadeProps | SlideProps | ZoomProps, currentIndex: number, navigate: ButtonClick, responsiveSettings?: Responsive | undefined) => ReactNode;