diff --git a/packages/font/src/google/font-data.json b/packages/font/src/google/font-data.json index fea3c5ba5d54d..453b7c1aba5c7 100644 --- a/packages/font/src/google/font-data.json +++ b/packages/font/src/google/font-data.json @@ -546,6 +546,19 @@ "styles": ["normal", "italic"], "subsets": ["latin"] }, + "Amarna": { + "weights": ["100", "200", "300", "400", "500", "600", "700", "variable"], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 700, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, "Amatic SC": { "weights": ["400", "700"], "styles": ["normal"], @@ -1418,17 +1431,17 @@ "styles": ["normal", "italic"], "subsets": ["latin"] }, - "BBH Sans Bartle": { + "BBH Bartle": { "weights": ["400"], "styles": ["normal"], "subsets": ["latin"] }, - "BBH Sans Bogle": { + "BBH Bogle": { "weights": ["400"], "styles": ["normal"], "subsets": ["latin"] }, - "BBH Sans Hegarty": { + "BBH Hegarty": { "weights": ["400"], "styles": ["normal"], "subsets": ["latin"] @@ -3410,6 +3423,30 @@ "vietnamese" ] }, + "Cause": { + "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"] + }, "Caveat": { "weights": ["400", "500", "600", "700", "variable"], "styles": ["normal"], @@ -5722,6 +5759,19 @@ "vietnamese" ] }, + "Geom": { + "weights": ["300", "400", "500", "600", "700", "800", "900", "variable"], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 900, + "defaultValue": 400 + } + ], + "subsets": ["greek", "latin", "latin-ext"] + }, "Georama": { "weights": [ "100", @@ -5898,6 +5948,57 @@ ], "subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext"] }, + "Google Sans": { + "weights": ["400", "500", "600", "700", "variable"], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "GRAD", + "min": -50, + "max": 200, + "defaultValue": 0 + }, + { + "tag": "opsz", + "min": 17, + "max": 18, + "defaultValue": 18 + }, + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "subsets": [ + "armenian", + "bengali", + "canadian-aboriginal", + "cyrillic", + "cyrillic-ext", + "devanagari", + "ethiopic", + "georgian", + "greek", + "greek-ext", + "gujarati", + "gurmukhi", + "hebrew", + "khmer", + "lao", + "latin", + "latin-ext", + "malayalam", + "oriya", + "sinhala", + "symbols", + "tamil", + "telugu", + "thai", + "vietnamese" + ] + }, "Google Sans Code": { "weights": ["300", "400", "500", "600", "700", "800", "variable"], "styles": ["normal", "italic"], @@ -5925,6 +6026,7 @@ }, "Google Sans Flex": { "weights": [ + "1", "100", "200", "300", @@ -8211,6 +8313,27 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext"] }, + "Lilex": { + "weights": ["100", "200", "300", "400", "500", "600", "700", "variable"], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 700, + "defaultValue": 400 + } + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "symbols2", + "vietnamese" + ] + }, "Lilita One": { "weights": ["400"], "styles": ["normal"], @@ -16083,6 +16206,11 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext", "vietnamese"] }, + "Sekuya": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, "Sen": { "weights": ["400", "500", "600", "700", "800", "variable"], "styles": ["normal"], diff --git a/packages/font/src/google/index.ts b/packages/font/src/google/index.ts index 4f281282e56c9..b083e890cf0be 100644 --- a/packages/font/src/google/index.ts +++ b/packages/font/src/google/index.ts @@ -951,6 +951,27 @@ export declare function Amaranth< adjustFontFallback?: boolean subsets?: Array<'latin'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Amarna< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '100' + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | 'variable' + | Array<'100' | '200' | '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 Amatic_SC< T extends CssVariable | undefined = undefined, >(options: { @@ -2253,7 +2274,7 @@ export declare function B612_Mono< adjustFontFallback?: boolean subsets?: Array<'latin'> }): T extends undefined ? NextFont : NextFontWithVariable -export declare function BBH_Sans_Bartle< +export declare function BBH_Bartle< T extends CssVariable | undefined = undefined, >(options: { weight: '400' | Array<'400'> @@ -2265,7 +2286,7 @@ export declare function BBH_Sans_Bartle< adjustFontFallback?: boolean subsets?: Array<'latin'> }): T extends undefined ? NextFont : NextFontWithVariable -export declare function BBH_Sans_Bogle< +export declare function BBH_Bogle< T extends CssVariable | undefined = undefined, >(options: { weight: '400' | Array<'400'> @@ -2277,7 +2298,7 @@ export declare function BBH_Sans_Bogle< adjustFontFallback?: boolean subsets?: Array<'latin'> }): T extends undefined ? NextFont : NextFontWithVariable -export declare function BBH_Sans_Hegarty< +export declare function BBH_Hegarty< T extends CssVariable | undefined = undefined, >(options: { weight: '400' | Array<'400'> @@ -4800,6 +4821,31 @@ export declare function Caudex< 'greek' | 'greek-ext' | 'latin' | 'latin-ext' | 'runic' | 'vietnamese' > }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Cause< + 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 Caveat< T extends CssVariable | undefined = undefined, >(options?: { @@ -8740,6 +8786,27 @@ export declare function Geologica< > axes?: ('CRSV' | 'SHRP' | 'slnt')[] }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Geom< + 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<'greek' | 'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Georama< T extends CssVariable | undefined = undefined, >(options?: { @@ -9026,6 +9093,51 @@ export declare function Golos_Text< adjustFontFallback?: boolean subsets?: Array<'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Google_Sans< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '400' + | '500' + | '600' + | '700' + | 'variable' + | Array<'400' | '500' | '600' | '700'> + style?: 'normal' | 'italic' | Array<'normal' | 'italic'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array< + | 'armenian' + | 'bengali' + | 'canadian-aboriginal' + | 'cyrillic' + | 'cyrillic-ext' + | 'devanagari' + | 'ethiopic' + | 'georgian' + | 'greek' + | 'greek-ext' + | 'gujarati' + | 'gurmukhi' + | 'hebrew' + | 'khmer' + | 'lao' + | 'latin' + | 'latin-ext' + | 'malayalam' + | 'oriya' + | 'sinhala' + | 'symbols' + | 'tamil' + | 'telugu' + | 'thai' + | 'vietnamese' + > + axes?: ('GRAD' | 'opsz')[] +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Google_Sans_Code< T extends CssVariable | undefined = undefined, >(options?: { @@ -9062,6 +9174,7 @@ export declare function Google_Sans_Flex< T extends CssVariable | undefined = undefined, >(options?: { weight?: + | '1' | '100' | '200' | '300' @@ -9074,6 +9187,7 @@ export declare function Google_Sans_Flex< | '1000' | 'variable' | Array< + | '1' | '100' | '200' | '300' @@ -13119,6 +13233,35 @@ export declare function Life_Savers< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Lilex< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '100' + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | 'variable' + | Array<'100' | '200' | '300' | '400' | '500' | '600' | '700'> + style?: 'normal' | 'italic' | Array<'normal' | 'italic'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array< + | 'cyrillic' + | 'cyrillic-ext' + | 'greek' + | 'latin' + | 'latin-ext' + | 'symbols2' + | 'vietnamese' + > +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Lilita_One< T extends CssVariable | undefined = undefined, >(options: { @@ -25395,6 +25538,18 @@ export declare function Sedgwick_Ave_Display< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Sekuya< + 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 Sen< T extends CssVariable | undefined = undefined, >(options?: {