diff --git a/packages/font/src/google/font-data.json b/packages/font/src/google/font-data.json index 872f9f98d6..291f111bdd 100644 --- a/packages/font/src/google/font-data.json +++ b/packages/font/src/google/font-data.json @@ -861,6 +861,11 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext", "vietnamese"] }, + "Anton SC": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext", "vietnamese"] + }, "Antonio": { "weights": ["100", "200", "300", "400", "500", "600", "700", "variable"], "styles": ["normal"], @@ -1063,6 +1068,11 @@ "styles": ["normal", "italic"], "subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"] }, + "Arsenal SC": { + "weights": ["400", "700"], + "styles": ["normal", "italic"], + "subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"] + }, "Artifika": { "weights": ["400"], "styles": ["normal"], @@ -1498,6 +1508,11 @@ "styles": ["normal", "italic"], "subsets": ["latin", "latin-ext"] }, + "Baskervville SC": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, "Battambang": { "weights": ["100", "300", "400", "700", "900"], "styles": ["normal"], @@ -1528,6 +1543,29 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext"] }, + "Beiruti": { + "weights": [ + "200", + "300", + "400", + "500", + "600", + "700", + "800", + "900", + "variable" + ], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 900, + "defaultValue": 400 + } + ], + "subsets": ["arabic", "latin", "latin-ext", "vietnamese"] + }, "Belanosima": { "weights": ["400", "600", "700"], "styles": ["normal"], @@ -1887,6 +1925,25 @@ ], "subsets": ["latin", "latin-ext", "math", "symbols"] }, + "Bodoni Moda SC": { + "weights": ["400", "500", "600", "700", "800", "900", "variable"], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "opsz", + "min": 6, + "max": 96, + "defaultValue": 11 + }, + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext", "math", "symbols"] + }, "Bokor": { "weights": ["400"], "styles": ["normal"], @@ -1905,6 +1962,19 @@ "vietnamese" ] }, + "Bona Nova SC": { + "weights": ["400", "700"], + "styles": ["normal", "italic"], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "hebrew", + "latin", + "latin-ext", + "vietnamese" + ] + }, "Bonbon": { "weights": ["400"], "styles": ["normal"], @@ -3942,6 +4012,19 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext", "vietnamese"] }, + "Fustat": { + "weights": ["200", "300", "400", "500", "600", "700", "800", "variable"], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "subsets": ["arabic", "latin", "latin-ext"] + }, "Fuzzy Bubbles": { "weights": ["400", "700"], "styles": ["normal"], @@ -3957,6 +4040,11 @@ "styles": ["normal", "italic"], "subsets": ["greek"] }, + "Ga Maamli": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext", "vietnamese"] + }, "Gabarito": { "weights": ["400", "500", "600", "700", "800", "900", "variable"], "styles": ["normal"], @@ -14860,6 +14948,19 @@ "styles": ["normal"], "subsets": ["latin"] }, + "Wittgenstein": { + "weights": ["400", "500", "600", "700", "800", "900", "variable"], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 900, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, "Wix Madefor Display": { "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 271001e7bd..bb6772151b 100644 --- a/packages/font/src/google/index.ts +++ b/packages/font/src/google/index.ts @@ -1314,6 +1314,18 @@ export declare function Anton< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Anton_SC< + 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 Antonio< T extends CssVariable | undefined = undefined, >(options?: { @@ -1630,6 +1642,20 @@ export declare function Arsenal< 'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext' | 'vietnamese' > }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Arsenal_SC< + T extends CssVariable | undefined = undefined, +>(options: { + weight: '400' | '700' | Array<'400' | '700'> + style?: 'normal' | 'italic' | Array<'normal' | 'italic'> + 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 Artifika< T extends CssVariable | undefined = undefined, >(options: { @@ -2510,6 +2536,18 @@ export declare function Baskervville< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Baskervville_SC< + 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 Battambang< T extends CssVariable | undefined = undefined, >(options: { @@ -2600,6 +2638,28 @@ export declare function Bebas_Neue< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Beiruti< + 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<'arabic' | 'latin' | 'latin-ext' | 'vietnamese'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Belanosima< T extends CssVariable | undefined = undefined, >(options: { @@ -3199,6 +3259,27 @@ export declare function Bodoni_Moda< subsets?: Array<'latin' | 'latin-ext' | 'math' | 'symbols'> axes?: 'opsz'[] }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Bodoni_Moda_SC< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | 'variable' + | Array<'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' | 'math' | 'symbols'> + axes?: 'opsz'[] +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Bokor< T extends CssVariable | undefined = undefined, >(options: { @@ -3231,6 +3312,26 @@ export declare function Bona_Nova< | 'vietnamese' > }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Bona_Nova_SC< + T extends CssVariable | undefined = undefined, +>(options: { + weight: '400' | '700' | Array<'400' | '700'> + style?: 'normal' | 'italic' | Array<'normal' | 'italic'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array< + | 'cyrillic' + | 'cyrillic-ext' + | 'greek' + | 'hebrew' + | 'latin' + | 'latin-ext' + | 'vietnamese' + > +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Bonbon< T extends CssVariable | undefined = undefined, >(options: { @@ -6987,6 +7088,27 @@ export declare function Fuggles< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Fustat< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | 'variable' + | Array<'200' | '300' | '400' | '500' | '600' | '700' | '800'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'arabic' | 'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Fuzzy_Bubbles< T extends CssVariable | undefined = undefined, >(options: { @@ -7023,6 +7145,18 @@ export declare function GFS_Neohellenic< adjustFontFallback?: boolean subsets?: Array<'greek'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Ga_Maamli< + 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 Gabarito< T extends CssVariable | undefined = undefined, >(options?: { @@ -25087,6 +25221,26 @@ export declare function Wire_One< adjustFontFallback?: boolean subsets?: Array<'latin'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Wittgenstein< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | 'variable' + | Array<'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 Wix_Madefor_Display< T extends CssVariable | undefined = undefined, >(options?: {