sass-template-common 0.2.61 → 0.2.63
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.
- package/dist/sass-template-common.css +1 -1
- package/dist/sass-template-common.d.ts +13 -2
- package/dist/sass-template-common.js +2133 -2120
- package/dist/sass-template-common.umd.cjs +30 -30
- package/package.json +1 -1
|
@@ -533,7 +533,10 @@ export declare const FormatAfterScripts: (props: {
|
|
|
533
533
|
strategy?: "afterInteractive" | "lazyOnload" | "beforeInteractive" | "worker" | undefined;
|
|
534
534
|
}) => JSX.Element | null;
|
|
535
535
|
|
|
536
|
-
export declare const formatDate: (date: number
|
|
536
|
+
export declare const formatDate: (date: number, DATE_CONFIG?: {
|
|
537
|
+
PUBLIC_LNG: string;
|
|
538
|
+
DATE_TIMEZONE: string;
|
|
539
|
+
}) => string;
|
|
537
540
|
|
|
538
541
|
export declare const formatDateEdiciones: (date: string) => string;
|
|
539
542
|
|
|
@@ -984,7 +987,7 @@ export declare const JournalistGroup: FC<Props_48>;
|
|
|
984
987
|
|
|
985
988
|
export declare const LayoutNewsComponent: FC<Props_45>;
|
|
986
989
|
|
|
987
|
-
export declare const LazyLoader: ({ render, internalPath, section, currentNews, stylesConfig, icon, isVisibleDefault, COMMENTS_VARS }: LazyLoaderProps) => JSX.Element;
|
|
990
|
+
export declare const LazyLoader: ({ render, internalPath, section, currentNews, stylesConfig, icon, isVisibleDefault, COMMENTS_VARS, DATE_CONFIG }: LazyLoaderProps) => JSX.Element;
|
|
988
991
|
|
|
989
992
|
declare type LazyLoaderProps = {
|
|
990
993
|
render: 'more' | 'comment';
|
|
@@ -1006,6 +1009,10 @@ declare type LazyLoaderProps = {
|
|
|
1006
1009
|
COGNITO_AUTH_PREFIX: string;
|
|
1007
1010
|
CAPTCHA_KEY_V2: string;
|
|
1008
1011
|
};
|
|
1012
|
+
DATE_CONFIG?: {
|
|
1013
|
+
PUBLIC_LNG: string;
|
|
1014
|
+
DATE_TIMEZONE: string;
|
|
1015
|
+
};
|
|
1009
1016
|
};
|
|
1010
1017
|
|
|
1011
1018
|
export declare type LibraryConfig = {
|
|
@@ -1601,6 +1608,10 @@ declare type Props_10 = {
|
|
|
1601
1608
|
COGNITO_AUTH_PREFIX: string;
|
|
1602
1609
|
CAPTCHA_KEY_V2: string;
|
|
1603
1610
|
};
|
|
1611
|
+
DATE_CONFIG?: {
|
|
1612
|
+
PUBLIC_LNG: string;
|
|
1613
|
+
DATE_TIMEZONE: string;
|
|
1614
|
+
};
|
|
1604
1615
|
headerSectionStyles?: {
|
|
1605
1616
|
common: CSSProperties;
|
|
1606
1617
|
liveblogs: CSSProperties;
|