@julseb-lib/react 1.0.8 → 1.0.10
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.
|
@@ -840,17 +840,16 @@ interface ILibSlideshowBase extends LibComponentBase<HTMLDivElement> {
|
|
|
840
840
|
controls?: ILibPaginationControls;
|
|
841
841
|
options?: ILibPaginationOptions;
|
|
842
842
|
borderRadius?: LibRadiuses;
|
|
843
|
+
hidePagination?: boolean;
|
|
843
844
|
}
|
|
844
845
|
interface SlideshowWithImages extends ILibSlideshowBase {
|
|
845
846
|
images?: Array<string>;
|
|
846
|
-
|
|
847
|
-
pagination?: Pick<ILibSlideshowPagination, "color" | "className" | "hideOnTouch" | "images" | "pagination" | "hidePagination" | "position" | "type">;
|
|
847
|
+
pagination?: Pick<Partial<ILibSlideshowPagination>, "color" | "className" | "hideOnTouch" | "images" | "pagination" | "hidePagination" | "position" | "type">;
|
|
848
848
|
children?: never;
|
|
849
849
|
}
|
|
850
850
|
interface SlideshowWithChildren extends ILibSlideshowBase {
|
|
851
851
|
images?: never;
|
|
852
|
-
|
|
853
|
-
pagination?: ILibSlideshowPagination;
|
|
852
|
+
pagination?: Pick<Partial<ILibSlideshowPagination>, "color" | "className" | "hideOnTouch" | "images" | "pagination" | "hidePagination" | "position" | "type">;
|
|
854
853
|
children?: Array<ReactNode>;
|
|
855
854
|
}
|
|
856
855
|
type ILibSlideshow = SlideshowWithImages | SlideshowWithChildren;
|
|
@@ -840,17 +840,16 @@ interface ILibSlideshowBase extends LibComponentBase<HTMLDivElement> {
|
|
|
840
840
|
controls?: ILibPaginationControls;
|
|
841
841
|
options?: ILibPaginationOptions;
|
|
842
842
|
borderRadius?: LibRadiuses;
|
|
843
|
+
hidePagination?: boolean;
|
|
843
844
|
}
|
|
844
845
|
interface SlideshowWithImages extends ILibSlideshowBase {
|
|
845
846
|
images?: Array<string>;
|
|
846
|
-
|
|
847
|
-
pagination?: Pick<ILibSlideshowPagination, "color" | "className" | "hideOnTouch" | "images" | "pagination" | "hidePagination" | "position" | "type">;
|
|
847
|
+
pagination?: Pick<Partial<ILibSlideshowPagination>, "color" | "className" | "hideOnTouch" | "images" | "pagination" | "hidePagination" | "position" | "type">;
|
|
848
848
|
children?: never;
|
|
849
849
|
}
|
|
850
850
|
interface SlideshowWithChildren extends ILibSlideshowBase {
|
|
851
851
|
images?: never;
|
|
852
|
-
|
|
853
|
-
pagination?: ILibSlideshowPagination;
|
|
852
|
+
pagination?: Pick<Partial<ILibSlideshowPagination>, "color" | "className" | "hideOnTouch" | "images" | "pagination" | "hidePagination" | "position" | "type">;
|
|
854
853
|
children?: Array<ReactNode>;
|
|
855
854
|
}
|
|
856
855
|
type ILibSlideshow = SlideshowWithImages | SlideshowWithChildren;
|