From f6bdd11c5bdcc7f115e696b67946cdcd57705b23 Mon Sep 17 00:00:00 2001 From: Vercel Release Bot <88769842+vercel-release-bot@users.noreply.github.com> Date: Tue, 11 Jun 2024 11:01:47 -0400 Subject: [PATCH] Update font data (#66730) This auto-generated PR updates font data with latest available --- packages/font/src/google/font-data.json | 26 +++++++++++++++++----- packages/font/src/google/index.ts | 29 +++++++++++++++++++------ 2 files changed, 43 insertions(+), 12 deletions(-) diff --git a/packages/font/src/google/font-data.json b/packages/font/src/google/font-data.json index c4a78a18f81f0..29e18ae7d101a 100644 --- a/packages/font/src/google/font-data.json +++ b/packages/font/src/google/font-data.json @@ -496,9 +496,17 @@ "subsets": ["devanagari", "latin", "latin-ext"] }, "Anaheim": { - "weights": ["400"], + "weights": ["400", "500", "600", "700", "800", "variable"], "styles": ["normal"], - "subsets": ["latin", "latin-ext"] + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext", "vietnamese"] }, "Andada Pro": { "weights": ["400", "500", "600", "700", "800", "variable"], @@ -4771,7 +4779,7 @@ "Holtwood One SC": { "weights": ["400"], "styles": ["normal"], - "subsets": ["latin"] + "subsets": ["latin", "latin-ext"] }, "Homemade Apple": { "weights": ["400"], @@ -7096,8 +7104,16 @@ "subsets": ["latin", "latin-ext"] }, "Monda": { - "weights": ["400", "700"], + "weights": ["400", "500", "600", "700", "variable"], "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], "subsets": ["latin", "latin-ext", "vietnamese"] }, "Monofett": { @@ -8292,7 +8308,7 @@ "defaultValue": 400 } ], - "subsets": ["hebrew", "latin", "latin-ext"] + "subsets": ["cyrillic-ext", "greek-ext", "hebrew", "latin", "latin-ext"] }, "Noto Sans Imperial Aramaic": { "weights": ["400"], diff --git a/packages/font/src/google/index.ts b/packages/font/src/google/index.ts index 0b764d7bb19ad..dd161be8a5fa6 100644 --- a/packages/font/src/google/index.ts +++ b/packages/font/src/google/index.ts @@ -926,15 +926,22 @@ export declare function Amita< }): T extends undefined ? NextFont : NextFontWithVariable export declare function Anaheim< T extends CssVariable | undefined = undefined, ->(options: { - weight: '400' | Array<'400'> +>(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'> + subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable export declare function Andada_Pro< T extends CssVariable | undefined = undefined, @@ -8419,7 +8426,7 @@ export declare function Holtwood_One_SC< preload?: boolean fallback?: string[] adjustFontFallback?: boolean - subsets?: Array<'latin'> + subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable export declare function Homemade_Apple< T extends CssVariable | undefined = undefined, @@ -12815,8 +12822,14 @@ export declare function Molle< }): T extends undefined ? NextFont : NextFontWithVariable export declare function Monda< T extends CssVariable | undefined = undefined, ->(options: { - weight: '400' | '700' | Array<'400' | '700'> +>(options?: { + weight?: + | '400' + | '500' + | '600' + | '700' + | 'variable' + | Array<'400' | '500' | '600' | '700'> style?: 'normal' | Array<'normal'> display?: Display variable?: T @@ -14680,7 +14693,9 @@ export declare function Noto_Sans_Hebrew< preload?: boolean fallback?: string[] adjustFontFallback?: boolean - subsets?: Array<'hebrew' | 'latin' | 'latin-ext'> + subsets?: Array< + 'cyrillic-ext' | 'greek-ext' | 'hebrew' | 'latin' | 'latin-ext' + > axes?: 'wdth'[] }): T extends undefined ? NextFont : NextFontWithVariable export declare function Noto_Sans_Imperial_Aramaic<