sass-template-common 0.0.6 → 0.0.8

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.
@@ -501,6 +501,10 @@ declare interface External_2 {
501
501
 
502
502
  export declare function extractRealtedNews(): Array<Array<string>>;
503
503
 
504
+ export declare const Font: ({ config }: {
505
+ config: Config;
506
+ }) => JSX.Element;
507
+
504
508
  export declare const Footer1: FC<Props_32>;
505
509
 
506
510
  export declare const Footer2: FC<Props_33>;
@@ -1959,6 +1963,51 @@ export declare type Socials = {
1959
1963
  [x: string]: Network;
1960
1964
  };
1961
1965
 
1966
+ export declare const SpeculationRules: ({ active, type, customSpeculation }: {
1967
+ active: boolean;
1968
+ type: "Home" | "Common";
1969
+ customSpeculation?: string;
1970
+ }) => false | JSX.Element;
1971
+
1972
+ export declare const speculationRules: {
1973
+ prerender: ({
1974
+ where: {
1975
+ and: ({
1976
+ href_matches: string;
1977
+ not?: undefined;
1978
+ } | {
1979
+ not: {
1980
+ selector_matches: string;
1981
+ };
1982
+ href_matches?: undefined;
1983
+ })[];
1984
+ };
1985
+ eagerness: string;
1986
+ urls?: undefined;
1987
+ } | {
1988
+ eagerness: string;
1989
+ urls: string[];
1990
+ where?: undefined;
1991
+ })[];
1992
+ };
1993
+
1994
+ export declare const speculationRulesHome: {
1995
+ prerender: {
1996
+ where: {
1997
+ and: ({
1998
+ href_matches: string;
1999
+ not?: undefined;
2000
+ } | {
2001
+ not: {
2002
+ selector_matches: string;
2003
+ };
2004
+ href_matches?: undefined;
2005
+ })[];
2006
+ };
2007
+ eagerness: string;
2008
+ }[];
2009
+ };
2010
+
1962
2011
  export declare function StaticSlotWrapper({ children, stylesConfigEntry, }: Props_18): JSX.Element;
1963
2012
 
1964
2013
  export declare const SubscribeColumn: (props: Props_29) => JSX.Element;