sass-template-common 0.0.30 → 0.0.32
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.
|
@@ -1046,7 +1046,7 @@ declare interface Modulo1x4Props {
|
|
|
1046
1046
|
title: string;
|
|
1047
1047
|
titleUrl?: string;
|
|
1048
1048
|
content: Array<NewListResponseData>;
|
|
1049
|
-
share?:
|
|
1049
|
+
share?: Omit<NoteShare, 'googleProfile'>;
|
|
1050
1050
|
banner?: ReactNode;
|
|
1051
1051
|
banners?: BannerResponse[];
|
|
1052
1052
|
slot_id?: string;
|
|
@@ -1060,7 +1060,7 @@ declare interface Modulo1x5Props {
|
|
|
1060
1060
|
title: string;
|
|
1061
1061
|
titleUrl?: string;
|
|
1062
1062
|
content: Array<NewListResponseData>;
|
|
1063
|
-
share?:
|
|
1063
|
+
share?: Omit<NoteShare, 'googleProfile'>;
|
|
1064
1064
|
banner?: ReactNode;
|
|
1065
1065
|
banners?: BannerResponse[];
|
|
1066
1066
|
slot_id?: string;
|
|
@@ -1078,7 +1078,7 @@ export declare const Modulo2Columnas: FC<Modulo2ColumnasProps>;
|
|
|
1078
1078
|
declare interface Modulo2ColumnasProps {
|
|
1079
1079
|
title: ReactNode;
|
|
1080
1080
|
news: Array<NewListResponseData>;
|
|
1081
|
-
share?:
|
|
1081
|
+
share?: Omit<NoteShare, 'googleProfile'>;
|
|
1082
1082
|
bannerArray?: ReactNode[];
|
|
1083
1083
|
halfPageBanner?: ReactNode;
|
|
1084
1084
|
backgroundColor?: string;
|
|
@@ -1289,7 +1289,7 @@ declare type NewsDescriptionProps = {
|
|
|
1289
1289
|
colorSubTitle?: string;
|
|
1290
1290
|
cutSubtitle?: boolean;
|
|
1291
1291
|
overImage?: 'left' | 'right' | 'default';
|
|
1292
|
-
share?:
|
|
1292
|
+
share?: Omit<NoteShare, 'googleProfile'>;
|
|
1293
1293
|
isTitle?: boolean;
|
|
1294
1294
|
paths: RoutePathConfig;
|
|
1295
1295
|
} & NewListResponseData;
|