diff --git a/packages/font/src/google/font-data.json b/packages/font/src/google/font-data.json index 4e83a58b1c1d9..3b59f9c6d884c 100644 --- a/packages/font/src/google/font-data.json +++ b/packages/font/src/google/font-data.json @@ -3236,6 +3236,36 @@ "styles": ["normal"], "subsets": ["cyrillic", "latin", "latin-ext"] }, + "Doto": { + "weights": [ + "100", + "200", + "300", + "400", + "500", + "600", + "700", + "800", + "900", + "variable" + ], + "styles": ["normal"], + "axes": [ + { + "tag": "ROND", + "min": 0, + "max": 100, + "defaultValue": 0 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, "Dr Sugiyama": { "weights": ["400"], "styles": ["normal"], @@ -3363,6 +3393,19 @@ ], "subsets": ["latin", "latin-ext"] }, + "Edu AU VIC WA NT Pre": { + "weights": ["400", "500", "600", "700", "variable"], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, "Edu NSW ACT Foundation": { "weights": ["400", "500", "600", "700", "variable"], "styles": ["normal"], @@ -3681,6 +3724,11 @@ "styles": ["normal"], "subsets": ["cherokee", "latin", "latin-ext", "vietnamese"] }, + "Faculty Glyphic": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, "Fahkwang": { "weights": ["200", "300", "400", "500", "600", "700"], "styles": ["normal", "italic"], @@ -4087,6 +4135,32 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext", "vietnamese"] }, + "Funnel Display": { + "weights": ["300", "400", "500", "600", "700", "800", "variable"], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 800, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, + "Funnel Sans": { + "weights": ["300", "400", "500", "600", "700", "800", "variable"], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 800, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, "Fustat": { "weights": ["200", "300", "400", "500", "600", "700", "800", "variable"], "styles": ["normal"], @@ -4207,6 +4281,54 @@ "styles": ["normal"], "subsets": ["latin", "malayalam"] }, + "Geist": { + "weights": [ + "100", + "200", + "300", + "400", + "500", + "600", + "700", + "800", + "900", + "variable" + ], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, + "Geist Mono": { + "weights": [ + "100", + "200", + "300", + "400", + "500", + "600", + "700", + "800", + "900", + "variable" + ], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, "Gelasio": { "weights": ["400", "500", "600", "700", "variable"], "styles": ["normal", "italic"], @@ -4973,6 +5095,19 @@ ], "subsets": ["latin", "latin-ext", "math", "symbols", "vietnamese"] }, + "Host Grotesk": { + "weights": ["300", "400", "500", "600", "700", "800", "variable"], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 800, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, "Hubballi": { "weights": ["400"], "styles": ["normal"], @@ -14120,6 +14255,36 @@ "styles": ["normal", "italic"], "subsets": ["latin", "latin-ext"] }, + "Sour Gummy": { + "weights": [ + "100", + "200", + "300", + "400", + "500", + "600", + "700", + "800", + "900", + "variable" + ], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wdth", + "min": 100, + "max": 125, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, "Source Code Pro": { "weights": [ "200", diff --git a/packages/font/src/google/index.ts b/packages/font/src/google/index.ts index a385a1c8e0604..4f29887894a09 100644 --- a/packages/font/src/google/index.ts +++ b/packages/font/src/google/index.ts @@ -5697,6 +5697,32 @@ export declare function DotGothic16< adjustFontFallback?: boolean subsets?: Array<'cyrillic' | 'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Doto< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '100' + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | 'variable' + | Array< + '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' + > + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> + axes?: 'ROND'[] +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Dr_Sugiyama< T extends CssVariable | undefined = undefined, >(options: { @@ -5900,6 +5926,24 @@ export declare function Edu_AU_VIC_WA_NT_Hand< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Edu_AU_VIC_WA_NT_Pre< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '400' + | '500' + | '600' + | '700' + | 'variable' + | Array<'400' | '500' | '600' | '700'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Edu_NSW_ACT_Foundation< T extends CssVariable | undefined = undefined, >(options?: { @@ -6431,6 +6475,18 @@ export declare function Explora< adjustFontFallback?: boolean subsets?: Array<'cherokee' | 'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Faculty_Glyphic< + T extends CssVariable | undefined = undefined, +>(options: { + weight: '400' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Fahkwang< T extends CssVariable | undefined = undefined, >(options: { @@ -7188,6 +7244,46 @@ export declare function Fuggles< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Funnel_Display< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | 'variable' + | Array<'300' | '400' | '500' | '600' | '700' | '800'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable +export declare function Funnel_Sans< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | 'variable' + | Array<'300' | '400' | '500' | '600' | '700' | '800'> + style?: 'normal' | 'italic' | Array<'normal' | 'italic'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Fustat< T extends CssVariable | undefined = undefined, >(options?: { @@ -7422,6 +7518,56 @@ export declare function Gayathri< adjustFontFallback?: boolean subsets?: Array<'latin' | 'malayalam'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Geist< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '100' + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | 'variable' + | Array< + '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' + > + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable +export declare function Geist_Mono< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '100' + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | 'variable' + | Array< + '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' + > + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Gelasio< T extends CssVariable | undefined = undefined, >(options?: { @@ -8699,6 +8845,26 @@ export declare function Honk< subsets?: Array<'latin' | 'latin-ext' | 'math' | 'symbols' | 'vietnamese'> axes?: ('MORF' | 'SHLN')[] }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Host_Grotesk< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | 'variable' + | Array<'300' | '400' | '500' | '600' | '700' | '800'> + style?: 'normal' | 'italic' | Array<'normal' | 'italic'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Hubballi< T extends CssVariable | undefined = undefined, >(options: { @@ -23570,6 +23736,32 @@ export declare function Sorts_Mill_Goudy< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Sour_Gummy< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '100' + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | 'variable' + | Array< + '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' + > + style?: 'normal' | 'italic' | Array<'normal' | 'italic'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> + axes?: 'wdth'[] +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Source_Code_Pro< T extends CssVariable | undefined = undefined, >(options?: {