sass-template-common 0.0.19 → 0.0.20
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.
|
@@ -350,15 +350,15 @@ export declare type ConfigMain = {
|
|
|
350
350
|
|
|
351
351
|
export declare const ContactInfoServer: FC<Props_10>;
|
|
352
352
|
|
|
353
|
-
export declare const ContactInput: FC<
|
|
353
|
+
export declare const ContactInput: FC<Props_41>;
|
|
354
354
|
|
|
355
|
-
export declare const ContactSelect: FC<
|
|
355
|
+
export declare const ContactSelect: FC<Props_42>;
|
|
356
356
|
|
|
357
|
-
export declare const ContactTextarea: FC<
|
|
357
|
+
export declare const ContactTextarea: FC<Props_43>;
|
|
358
358
|
|
|
359
359
|
export declare const ContentLayout1: FC<Props_24>;
|
|
360
360
|
|
|
361
|
-
export declare const ContentLayoutTema: FC<
|
|
361
|
+
export declare const ContentLayoutTema: FC<Props_39>;
|
|
362
362
|
|
|
363
363
|
export declare const cutString: (text: string, length?: number) => string;
|
|
364
364
|
|
|
@@ -492,7 +492,7 @@ export declare interface Entity {
|
|
|
492
492
|
};
|
|
493
493
|
}
|
|
494
494
|
|
|
495
|
-
export declare const ErrorComponent: FC<
|
|
495
|
+
export declare const ErrorComponent: FC<Props_40>;
|
|
496
496
|
|
|
497
497
|
declare interface External_2 {
|
|
498
498
|
httpstream: boolean;
|
|
@@ -507,7 +507,7 @@ export declare const Font: ({ config }: {
|
|
|
507
507
|
|
|
508
508
|
export declare const Footer1: FC<Props_33>;
|
|
509
509
|
|
|
510
|
-
export declare const Footer2: FC<
|
|
510
|
+
export declare const Footer2: FC<Props_35>;
|
|
511
511
|
|
|
512
512
|
export declare const FooterComponent: FC<Props_8>;
|
|
513
513
|
|
|
@@ -899,7 +899,7 @@ declare interface ItemListSchemaProps {
|
|
|
899
899
|
ROUTE: MetadataDefaultsKeys;
|
|
900
900
|
}
|
|
901
901
|
|
|
902
|
-
export declare const LayoutNewsComponent: FC<
|
|
902
|
+
export declare const LayoutNewsComponent: FC<Props_46>;
|
|
903
903
|
|
|
904
904
|
export declare const LazyLoader: ({ render, internalPath, section, currentNews, stylesConfig, icon, COGNITO_AUTH_PREFIX, captchaVars, }: LazyLoaderProps) => JSX.Element;
|
|
905
905
|
|
|
@@ -933,7 +933,7 @@ export declare interface Link {
|
|
|
933
933
|
redirect: boolean;
|
|
934
934
|
}
|
|
935
935
|
|
|
936
|
-
export declare const LiveBlogHeader: FC<
|
|
936
|
+
export declare const LiveBlogHeader: FC<Props_44>;
|
|
937
937
|
|
|
938
938
|
declare const Location_2: FC<Props_23>;
|
|
939
939
|
export { Location_2 as Location }
|
|
@@ -1256,7 +1256,7 @@ declare interface NewsArticleProps {
|
|
|
1256
1256
|
|
|
1257
1257
|
export declare const NewsComponent: (props: Props_11) => Promise<JSX.Element | undefined>;
|
|
1258
1258
|
|
|
1259
|
-
export declare const NewsContent: FC<
|
|
1259
|
+
export declare const NewsContent: FC<Props_38>;
|
|
1260
1260
|
|
|
1261
1261
|
declare interface NewsDescriptionBlockCSS extends NewsDescriptionCSS {
|
|
1262
1262
|
'--news-description-block-padding-main'?: string;
|
|
@@ -1300,7 +1300,7 @@ export declare interface NewsResponse {
|
|
|
1300
1300
|
data: DataNews[];
|
|
1301
1301
|
}
|
|
1302
1302
|
|
|
1303
|
-
export declare const NextPrev: FC<
|
|
1303
|
+
export declare const NextPrev: FC<Props_37>;
|
|
1304
1304
|
|
|
1305
1305
|
export declare type NoteShare = {
|
|
1306
1306
|
variant: 'outline' | 'container';
|
|
@@ -1643,6 +1643,11 @@ declare type Props_33 = {
|
|
|
1643
1643
|
};
|
|
1644
1644
|
|
|
1645
1645
|
declare type Props_34 = {
|
|
1646
|
+
noteShare?: NoteShare;
|
|
1647
|
+
url?: string;
|
|
1648
|
+
};
|
|
1649
|
+
|
|
1650
|
+
declare type Props_35 = {
|
|
1646
1651
|
socials: any;
|
|
1647
1652
|
socialNetworks: any;
|
|
1648
1653
|
freeZone: Array<MenuResponse>;
|
|
@@ -1652,12 +1657,12 @@ declare type Props_34 = {
|
|
|
1652
1657
|
customBlock?: ReactNode;
|
|
1653
1658
|
};
|
|
1654
1659
|
|
|
1655
|
-
declare type
|
|
1660
|
+
declare type Props_36 = {
|
|
1656
1661
|
video: VideoResponseData;
|
|
1657
1662
|
type: string;
|
|
1658
1663
|
};
|
|
1659
1664
|
|
|
1660
|
-
declare type
|
|
1665
|
+
declare type Props_37 = {
|
|
1661
1666
|
currentPage: number;
|
|
1662
1667
|
showNext: boolean;
|
|
1663
1668
|
maxPages: number;
|
|
@@ -1668,26 +1673,18 @@ declare type Props_36 = {
|
|
|
1668
1673
|
};
|
|
1669
1674
|
};
|
|
1670
1675
|
|
|
1671
|
-
declare type
|
|
1676
|
+
declare type Props_38 = {
|
|
1672
1677
|
children: ReactNode;
|
|
1673
1678
|
paginatorComponent?: ReactNode;
|
|
1674
1679
|
grid?: 3 | 4;
|
|
1675
1680
|
className?: string;
|
|
1676
1681
|
};
|
|
1677
1682
|
|
|
1678
|
-
declare type
|
|
1683
|
+
declare type Props_39 = {
|
|
1679
1684
|
children: ReactNode;
|
|
1680
1685
|
className?: string;
|
|
1681
1686
|
};
|
|
1682
1687
|
|
|
1683
|
-
declare type Props_39 = {
|
|
1684
|
-
title: string;
|
|
1685
|
-
description: string;
|
|
1686
|
-
buttonText?: string;
|
|
1687
|
-
logo: any;
|
|
1688
|
-
backgroundImgURL?: string;
|
|
1689
|
-
};
|
|
1690
|
-
|
|
1691
1688
|
declare type Props_4 = {
|
|
1692
1689
|
children: ReactNode;
|
|
1693
1690
|
defaultRouteName: MetadataDefaultsKeys;
|
|
@@ -1715,28 +1712,36 @@ declare type Props_4 = {
|
|
|
1715
1712
|
};
|
|
1716
1713
|
|
|
1717
1714
|
declare type Props_40 = {
|
|
1715
|
+
title: string;
|
|
1716
|
+
description: string;
|
|
1717
|
+
buttonText?: string;
|
|
1718
|
+
logo: any;
|
|
1719
|
+
backgroundImgURL?: string;
|
|
1720
|
+
};
|
|
1721
|
+
|
|
1722
|
+
declare type Props_41 = {
|
|
1718
1723
|
label: string;
|
|
1719
1724
|
} & InputHTMLAttributes<HTMLInputElement>;
|
|
1720
1725
|
|
|
1721
|
-
declare type
|
|
1726
|
+
declare type Props_42 = {
|
|
1722
1727
|
label: string;
|
|
1723
1728
|
options: Array<SelectItem>;
|
|
1724
1729
|
} & InputHTMLAttributes<HTMLSelectElement>;
|
|
1725
1730
|
|
|
1726
|
-
declare interface
|
|
1731
|
+
declare interface Props_43 extends DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> {
|
|
1727
1732
|
label: string;
|
|
1728
1733
|
}
|
|
1729
1734
|
|
|
1730
|
-
declare type
|
|
1735
|
+
declare type Props_44 = {
|
|
1731
1736
|
fontSizeSubTitle?: string;
|
|
1732
1737
|
lineHeightSubTitle?: string;
|
|
1733
1738
|
} & NewListResponseData;
|
|
1734
1739
|
|
|
1735
|
-
declare type
|
|
1740
|
+
declare type Props_45 = {
|
|
1736
1741
|
itemList: Array<ItemList>;
|
|
1737
1742
|
};
|
|
1738
1743
|
|
|
1739
|
-
declare type
|
|
1744
|
+
declare type Props_46 = {
|
|
1740
1745
|
children: ReactNode;
|
|
1741
1746
|
banner: ReactNode;
|
|
1742
1747
|
bannerTop: ReactNode;
|
|
@@ -1745,7 +1750,7 @@ declare type Props_45 = {
|
|
|
1745
1750
|
paths: RoutePathConfig;
|
|
1746
1751
|
};
|
|
1747
1752
|
|
|
1748
|
-
declare type
|
|
1753
|
+
declare type Props_47 = {
|
|
1749
1754
|
video: VideoResponseData;
|
|
1750
1755
|
videoList: Array<VideoResponseData>;
|
|
1751
1756
|
type: string;
|
|
@@ -1987,6 +1992,8 @@ declare type SelectItem = {
|
|
|
1987
1992
|
value: string | number;
|
|
1988
1993
|
};
|
|
1989
1994
|
|
|
1995
|
+
export declare function shareButtons({ noteShare }: Props_34): JSX.Element | null;
|
|
1996
|
+
|
|
1990
1997
|
export declare const ShowSection: FC<Props_25>;
|
|
1991
1998
|
|
|
1992
1999
|
declare interface Size {
|
|
@@ -2143,7 +2150,7 @@ export declare type textsType = {
|
|
|
2143
2150
|
[key: string]: string;
|
|
2144
2151
|
};
|
|
2145
2152
|
|
|
2146
|
-
export declare const TimeLine: FC<
|
|
2153
|
+
export declare const TimeLine: FC<Props_45>;
|
|
2147
2154
|
|
|
2148
2155
|
declare interface Title {
|
|
2149
2156
|
home: string;
|
|
@@ -2178,9 +2185,9 @@ export declare const verifyCaptchaTokenEnterprise: ({ token, projectId, captchaK
|
|
|
2178
2185
|
captchaAction: captchaActionType;
|
|
2179
2186
|
}) => Promise<number>;
|
|
2180
2187
|
|
|
2181
|
-
export declare const VideoBlock3: FC<
|
|
2188
|
+
export declare const VideoBlock3: FC<Props_36>;
|
|
2182
2189
|
|
|
2183
|
-
export declare const VideoBlock4: FC<
|
|
2190
|
+
export declare const VideoBlock4: FC<Props_47>;
|
|
2184
2191
|
|
|
2185
2192
|
export declare interface VideoResponseData {
|
|
2186
2193
|
config: {
|