@julseb-lib/react 1.0.7 → 1.0.9
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,16 +840,15 @@ 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
|
-
hidePagination?: boolean;
|
|
847
847
|
pagination?: Pick<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
|
-
hidePagination?: boolean;
|
|
853
852
|
pagination?: ILibSlideshowPagination;
|
|
854
853
|
children?: Array<ReactNode>;
|
|
855
854
|
}
|
|
@@ -1073,8 +1072,8 @@ interface ILibMeta {
|
|
|
1073
1072
|
interface ILibPageLayoutBase {
|
|
1074
1073
|
children?: ReactChildren;
|
|
1075
1074
|
meta?: ILibMeta;
|
|
1076
|
-
header?: ILibHeader;
|
|
1077
|
-
footer?: ILibFooter;
|
|
1075
|
+
header?: ILibHeader | ReactChildren;
|
|
1076
|
+
footer?: ILibFooter | ReactChildren;
|
|
1078
1077
|
}
|
|
1079
1078
|
interface PageLayoutWithWrapper extends ILibPageLayoutBase {
|
|
1080
1079
|
noWrapper?: false | undefined;
|
|
@@ -840,16 +840,15 @@ 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
|
-
hidePagination?: boolean;
|
|
847
847
|
pagination?: Pick<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
|
-
hidePagination?: boolean;
|
|
853
852
|
pagination?: ILibSlideshowPagination;
|
|
854
853
|
children?: Array<ReactNode>;
|
|
855
854
|
}
|
|
@@ -1073,8 +1072,8 @@ interface ILibMeta {
|
|
|
1073
1072
|
interface ILibPageLayoutBase {
|
|
1074
1073
|
children?: ReactChildren;
|
|
1075
1074
|
meta?: ILibMeta;
|
|
1076
|
-
header?: ILibHeader;
|
|
1077
|
-
footer?: ILibFooter;
|
|
1075
|
+
header?: ILibHeader | ReactChildren;
|
|
1076
|
+
footer?: ILibFooter | ReactChildren;
|
|
1078
1077
|
}
|
|
1079
1078
|
interface PageLayoutWithWrapper extends ILibPageLayoutBase {
|
|
1080
1079
|
noWrapper?: false | undefined;
|