sass-template-common 0.0.64 → 0.0.65
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.d.ts +2 -2
- package/dist/sass-template-common.js +2895 -2814
- package/dist/sass-template-common.umd.cjs +33 -33
- package/package.json +1 -1
|
@@ -53,7 +53,7 @@ export declare type Analytics = {
|
|
|
53
53
|
comscore: string | undefined;
|
|
54
54
|
};
|
|
55
55
|
|
|
56
|
-
export declare const AssetsPreconnect: () =>
|
|
56
|
+
export declare const AssetsPreconnect: () => false | "" | JSX.Element | undefined;
|
|
57
57
|
|
|
58
58
|
export declare interface Author {
|
|
59
59
|
firstname: string;
|
|
@@ -1427,7 +1427,7 @@ export declare const pathnameSplit: (pathname: string) => {
|
|
|
1427
1427
|
export declare interface PreloadImage {
|
|
1428
1428
|
href: string;
|
|
1429
1429
|
media?: string;
|
|
1430
|
-
fetchPriority?:
|
|
1430
|
+
fetchPriority?: 'high' | 'low' | 'auto';
|
|
1431
1431
|
}
|
|
1432
1432
|
|
|
1433
1433
|
export declare const PreloadImages: default_2.FC<PreloadImagesProps>;
|