sass-template-common 0.0.45 → 0.0.47
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.
|
@@ -171,7 +171,7 @@ declare type CarrouselProps = {
|
|
|
171
171
|
|
|
172
172
|
export declare const CarruselCard: FC<CarruselCardProps>;
|
|
173
173
|
|
|
174
|
-
declare interface CarruselCardProps {
|
|
174
|
+
declare interface CarruselCardProps extends Omit<CarrouselProps, 'slot_id'> {
|
|
175
175
|
title: string;
|
|
176
176
|
titleUrl: string;
|
|
177
177
|
content: Array<NewListResponseData>;
|
|
@@ -705,7 +705,7 @@ export declare const getNextMeta: (config: Config, paths: Array<string>, page: n
|
|
|
705
705
|
|
|
706
706
|
export declare const getPage: (pathname: string) => number;
|
|
707
707
|
|
|
708
|
-
export declare const getPreloadImages: (list: NewListResponseData[]) => PreloadImage[];
|
|
708
|
+
export declare const getPreloadImages: (list: NewListResponseData[], PRELOADED_IMAGES_AMOUNT?: number) => PreloadImage[];
|
|
709
709
|
|
|
710
710
|
export declare const getPrevMeta: (config: Config, paths: Array<string>, page: number) => string;
|
|
711
711
|
|