From 4ba1765df0c4d8f877f324f178fe0388854e7c6b Mon Sep 17 00:00:00 2001 From: nextjs-bot Date: Mon, 3 Nov 2025 00:15:24 +0000 Subject: [PATCH] update/fonts-data-1762128923689 --- packages/font/src/google/font-data.json | 49 ++++++++++++++++- packages/font/src/google/index.ts | 72 ++++++++++++++++++++++++- 2 files changed, 119 insertions(+), 2 deletions(-) diff --git a/packages/font/src/google/font-data.json b/packages/font/src/google/font-data.json index a2639d0248fede..cbe5b510a01d15 100644 --- a/packages/font/src/google/font-data.json +++ b/packages/font/src/google/font-data.json @@ -8994,6 +8994,29 @@ "styles": ["italic"], "subsets": ["latin", "latin-ext"] }, + "Momo Signature": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext", "vietnamese"] + }, + "Momo Trust Display": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext", "vietnamese"] + }, + "Momo Trust Sans": { + "weights": ["200", "300", "400", "500", "600", "700", "800", "variable"], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 800, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext", "vietnamese"] + }, "Mona Sans": { "weights": [ "200", @@ -11247,6 +11270,30 @@ ], "subsets": ["latin", "latin-ext", "syriac"] }, + "Noto Sans Syriac Western": { + "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", "syriac"] + }, "Noto Sans TC": { "weights": [ "100", @@ -12852,7 +12899,7 @@ "defaultValue": 400 } ], - "subsets": ["latin", "latin-ext", "vietnamese"] + "subsets": ["arabic", "latin", "latin-ext", "vietnamese"] }, "Parisienne": { "weights": ["400"], diff --git a/packages/font/src/google/index.ts b/packages/font/src/google/index.ts index 83fdfcf2199310..ffc2438aa4b542 100644 --- a/packages/font/src/google/index.ts +++ b/packages/font/src/google/index.ts @@ -14699,6 +14699,51 @@ export declare function Molle< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Momo_Signature< + 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 Momo_Trust_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<'latin' | 'latin-ext' | 'vietnamese'> +}): T extends undefined ? NextFont : NextFontWithVariable +export declare function Momo_Trust_Sans< + 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<'latin' | 'latin-ext' | 'vietnamese'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Mona_Sans< T extends CssVariable | undefined = undefined, >(options?: { @@ -18120,6 +18165,31 @@ export declare function Noto_Sans_Syriac_Eastern< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'syriac'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Noto_Sans_Syriac_Western< + 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' | 'syriac'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Noto_Sans_TC< T extends CssVariable | undefined = undefined, >(options?: { @@ -20288,7 +20358,7 @@ export declare function Parastoo< preload?: boolean fallback?: string[] adjustFontFallback?: boolean - subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> + subsets?: Array<'arabic' | 'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable export declare function Parisienne< T extends CssVariable | undefined = undefined,