@julseb-lib/react 1.0.9 → 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.
|
@@ -844,12 +844,12 @@ interface ILibSlideshowBase extends LibComponentBase<HTMLDivElement> {
|
|
|
844
844
|
}
|
|
845
845
|
interface SlideshowWithImages extends ILibSlideshowBase {
|
|
846
846
|
images?: Array<string>;
|
|
847
|
-
pagination?: Pick<ILibSlideshowPagination
|
|
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
|
-
pagination?: ILibSlideshowPagination
|
|
852
|
+
pagination?: Pick<Partial<ILibSlideshowPagination>, "color" | "className" | "hideOnTouch" | "images" | "pagination" | "hidePagination" | "position" | "type">;
|
|
853
853
|
children?: Array<ReactNode>;
|
|
854
854
|
}
|
|
855
855
|
type ILibSlideshow = SlideshowWithImages | SlideshowWithChildren;
|
|
@@ -844,12 +844,12 @@ interface ILibSlideshowBase extends LibComponentBase<HTMLDivElement> {
|
|
|
844
844
|
}
|
|
845
845
|
interface SlideshowWithImages extends ILibSlideshowBase {
|
|
846
846
|
images?: Array<string>;
|
|
847
|
-
pagination?: Pick<ILibSlideshowPagination
|
|
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
|
-
pagination?: ILibSlideshowPagination
|
|
852
|
+
pagination?: Pick<Partial<ILibSlideshowPagination>, "color" | "className" | "hideOnTouch" | "images" | "pagination" | "hidePagination" | "position" | "type">;
|
|
853
853
|
children?: Array<ReactNode>;
|
|
854
854
|
}
|
|
855
855
|
type ILibSlideshow = SlideshowWithImages | SlideshowWithChildren;
|