diff --git a/packages/font/src/google/font-data.json b/packages/font/src/google/font-data.json index cfd334d7547f4..ef8e900507245 100644 --- a/packages/font/src/google/font-data.json +++ b/packages/font/src/google/font-data.json @@ -1234,6 +1234,11 @@ "styles": ["normal"], "subsets": ["devanagari", "latin", "latin-ext"] }, + "Asimovian": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext", "vietnamese"] + }, "Asset": { "weights": ["400"], "styles": ["normal"], @@ -3004,6 +3009,29 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext", "malayalam"] }, + "Chiron GoRound TC": { + "weights": [ + "200", + "300", + "400", + "500", + "600", + "700", + "800", + "900", + "variable" + ], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 900, + "defaultValue": 400 + } + ], + "subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"] + }, "Chiron Hei HK": { "weights": [ "200", @@ -3408,6 +3436,16 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext", "vietnamese"] }, + "Cossette Texte": { + "weights": ["400", "700"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, + "Cossette Titre": { + "weights": ["400", "700"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, "Courgette": { "weights": ["400"], "styles": ["normal"], @@ -4269,6 +4307,32 @@ ], "subsets": ["latin", "latin-ext", "vietnamese"] }, + "Epunda Sans": { + "weights": ["300", "400", "500", "600", "700", "800", "900", "variable"], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 900, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, + "Epunda Slab": { + "weights": ["300", "400", "500", "600", "700", "800", "900", "variable"], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 900, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, "Erica One": { "weights": ["400"], "styles": ["normal"], @@ -7351,6 +7415,11 @@ ], "subsets": ["latin", "latin-ext", "vietnamese"] }, + "Libertinus Keyboard": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, "Libertinus Math": { "weights": ["400"], "styles": ["normal"], @@ -7397,6 +7466,19 @@ "vietnamese" ] }, + "Libertinus Serif Display": { + "weights": ["400"], + "styles": ["normal"], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "greek-ext", + "latin", + "latin-ext", + "vietnamese" + ] + }, "Libre Barcode 128": { "weights": ["400"], "styles": ["normal"], @@ -15464,6 +15546,11 @@ "styles": ["normal"], "subsets": ["latin"] }, + "Sirivennela": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "telugu"] + }, "Six Caps": { "weights": ["400"], "styles": ["normal"], @@ -16106,6 +16193,11 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext"] }, + "Story Script": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext", "vietnamese"] + }, "Strait": { "weights": ["400"], "styles": ["normal"], @@ -16209,6 +16301,32 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext"] }, + "TASA Explorer": { + "weights": ["400", "500", "600", "700", "800", "variable"], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, + "TASA Orbiter": { + "weights": ["400", "500", "600", "700", "800", "variable"], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, "Tac One": { "weights": ["400"], "styles": ["normal"], @@ -16540,6 +16658,11 @@ "styles": ["normal", "italic"], "subsets": ["latin", "latin-ext", "telugu"] }, + "Tirra": { + "weights": ["400", "500", "600", "700", "800", "900"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext", "tifinagh"] + }, "Titan One": { "weights": ["400"], "styles": ["normal"], @@ -16979,6 +17102,19 @@ ], "subsets": ["arabic", "latin", "latin-ext"] }, + "Vend Sans": { + "weights": ["300", "400", "500", "600", "700", "variable"], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 700, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, "Vesper Libre": { "weights": ["400", "500", "700", "900"], "styles": ["normal"], diff --git a/packages/font/src/google/index.ts b/packages/font/src/google/index.ts index dee538cca2f52..a38107d16c307 100644 --- a/packages/font/src/google/index.ts +++ b/packages/font/src/google/index.ts @@ -1883,6 +1883,18 @@ export declare function Asar< adjustFontFallback?: boolean subsets?: Array<'devanagari' | 'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Asimovian< + 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' | 'vietnamese'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Asset< T extends CssVariable | undefined = undefined, >(options: { @@ -4814,6 +4826,30 @@ export declare function Chilanka< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'malayalam'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Chiron_GoRound_TC< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | 'variable' + | Array<'200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array< + 'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext' | 'vietnamese' + > +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Chiron_Hei_HK< T extends CssVariable | undefined = undefined, >(options?: { @@ -5441,6 +5477,30 @@ export declare function Cormorant_Upright< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Cossette_Texte< + T extends CssVariable | undefined = undefined, +>(options: { + weight: '400' | '700' | Array<'400' | '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 Cossette_Titre< + T extends CssVariable | undefined = undefined, +>(options: { + weight: '400' | '700' | Array<'400' | '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 Courgette< T extends CssVariable | undefined = undefined, >(options: { @@ -6931,6 +6991,48 @@ export declare function Epilogue< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Epunda_Sans< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | 'variable' + | Array<'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'> +}): T extends undefined ? NextFont : NextFontWithVariable +export declare function Epunda_Slab< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | 'variable' + | Array<'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'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Erica_One< T extends CssVariable | undefined = undefined, >(options: { @@ -12346,6 +12448,18 @@ export declare function Lexend_Zetta< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Libertinus_Keyboard< + 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 Libertinus_Math< T extends CssVariable | undefined = undefined, >(options: { @@ -12420,6 +12534,26 @@ export declare function Libertinus_Serif< | 'vietnamese' > }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Libertinus_Serif_Display< + 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< + | 'cyrillic' + | 'cyrillic-ext' + | 'greek' + | 'greek-ext' + | 'latin' + | 'latin-ext' + | 'vietnamese' + > +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Libre_Barcode_128< T extends CssVariable | undefined = undefined, >(options: { @@ -25180,6 +25314,18 @@ export declare function Sirin_Stencil< adjustFontFallback?: boolean subsets?: Array<'latin'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Sirivennela< + 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' | 'telugu'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Six_Caps< T extends CssVariable | undefined = undefined, >(options: { @@ -26178,6 +26324,18 @@ export declare function Stoke< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Story_Script< + 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' | 'vietnamese'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Strait< T extends CssVariable | undefined = undefined, >(options: { @@ -26417,6 +26575,44 @@ export declare function Syne_Tactile< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function TASA_Explorer< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '400' + | '500' + | '600' + | '700' + | '800' + | 'variable' + | Array<'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 TASA_Orbiter< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '400' + | '500' + | '600' + | '700' + | '800' + | 'variable' + | Array<'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 Tac_One< T extends CssVariable | undefined = undefined, >(options: { @@ -26950,6 +27146,25 @@ export declare function Tiro_Telugu< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'telugu'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Tirra< + T extends CssVariable | undefined = undefined, +>(options: { + weight: + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | Array<'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' | 'tifinagh'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Titan_One< T extends CssVariable | undefined = undefined, >(options: { @@ -27641,6 +27856,25 @@ export declare function Vazirmatn< adjustFontFallback?: boolean subsets?: Array<'arabic' | 'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Vend_Sans< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '300' + | '400' + | '500' + | '600' + | '700' + | 'variable' + | Array<'300' | '400' | '500' | '600' | '700'> + 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 Vesper_Libre< T extends CssVariable | undefined = undefined, >(options: {