diff --git a/packages/font/src/google/font-data.json b/packages/font/src/google/font-data.json index c2d900b1a0aa..e5d7b257096a 100644 --- a/packages/font/src/google/font-data.json +++ b/packages/font/src/google/font-data.json @@ -146,6 +146,29 @@ "weights": ["400"], "styles": ["normal"] }, + "Alexandria": { + "weights": [ + "100", + "200", + "300", + "400", + "500", + "600", + "700", + "800", + "900", + "variable" + ], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ] + }, "Alfa Slab One": { "weights": ["400"], "styles": ["normal"] @@ -764,19 +787,36 @@ "styles": ["normal"] }, "Asap": { - "weights": ["400", "500", "600", "700", "variable"], + "weights": [ + "100", + "200", + "300", + "400", + "500", + "600", + "700", + "800", + "900", + "variable" + ], "styles": ["normal", "italic"], "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 125, + "defaultValue": 100 + }, { "tag": "wght", - "min": 400, - "max": 700, + "min": 100, + "max": 900, "defaultValue": 400 } ] }, "Asap Condensed": { - "weights": ["400", "500", "600", "700"], + "weights": ["200", "300", "400", "500", "600", "700", "800", "900"], "styles": ["normal", "italic"] }, "Asar": { @@ -1821,8 +1861,27 @@ "styles": ["normal"] }, "Chivo": { - "weights": ["300", "400", "700", "900"], - "styles": ["normal", "italic"] + "weights": [ + "100", + "200", + "300", + "400", + "500", + "600", + "700", + "800", + "900", + "variable" + ], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ] }, "Chonburi": { "weights": ["400"], @@ -2668,7 +2727,7 @@ }, "Figtree": { "weights": ["300", "400", "500", "600", "700", "800", "900", "variable"], - "styles": ["normal"], + "styles": ["normal", "italic"], "axes": [ { "tag": "wght", @@ -7168,6 +7227,18 @@ } ] }, + "Noto Serif Khojki": { + "weights": ["400", "500", "600", "700", "variable"], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ] + }, "Noto Serif Lao": { "weights": [ "100", diff --git a/packages/font/src/google/index.ts b/packages/font/src/google/index.ts index 9a419a771e50..f1d20fdafbda 100644 --- a/packages/font/src/google/index.ts +++ b/packages/font/src/google/index.ts @@ -254,7 +254,7 @@ export declare function Alatsi< preload?: boolean fallback?: string[] adjustFontFallback?: boolean - subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> + subsets?: Array<'cyrillic-ext' | 'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable export declare function Albert_Sans< T extends CssVariable | undefined = undefined @@ -439,6 +439,31 @@ export declare function Alex_Brush< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Alexandria< + 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<'arabic' | 'latin' | 'latin-ext' | 'vietnamese'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Alfa_Slab_One< T extends CssVariable | undefined = undefined >(options: { @@ -1469,12 +1494,19 @@ export declare function Asap< T extends CssVariable | undefined = undefined >(options?: { weight?: + | '100' + | '200' + | '300' | '400' | '500' | '600' | '700' + | '800' + | '900' | 'variable' - | Array<'400' | '500' | '600' | '700'> + | Array< + '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' + > style?: 'normal' | 'italic' | Array<'normal' | 'italic'> display?: Display variable?: T @@ -1482,11 +1514,21 @@ export declare function Asap< fallback?: string[] adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> + axes?: 'wdth'[] }): T extends undefined ? NextFont : NextFontWithVariable export declare function Asap_Condensed< T extends CssVariable | undefined = undefined >(options: { - weight: '400' | '500' | '600' | '700' | Array<'400' | '500' | '600' | '700'> + weight: + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | Array<'200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'> style?: 'normal' | 'italic' | Array<'normal' | 'italic'> display?: Display variable?: T @@ -3888,15 +3930,28 @@ export declare function Chilanka< }): T extends undefined ? NextFont : NextFontWithVariable export declare function Chivo< T extends CssVariable | undefined = undefined ->(options: { - weight: '300' | '400' | '700' | '900' | Array<'300' | '400' | '700' | '900'> +>(options?: { + weight?: + | '100' + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | 'variable' + | Array< + '100' | '200' | '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'> + subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable export declare function Chonburi< T extends CssVariable | undefined = undefined @@ -5879,7 +5934,7 @@ export declare function Figtree< | '900' | 'variable' | Array<'300' | '400' | '500' | '600' | '700' | '800' | '900'> - style?: 'normal' | Array<'normal'> + style?: 'normal' | 'italic' | Array<'normal' | 'italic'> display?: Display variable?: T preload?: boolean @@ -14243,7 +14298,7 @@ export declare function Noto_Sans_Sharada< preload?: boolean fallback?: string[] adjustFontFallback?: boolean - subsets?: Array<'sharada'> + subsets?: Array<'latin' | 'latin-ext' | 'sharada'> }): T extends undefined ? NextFont : NextFontWithVariable export declare function Noto_Sans_Shavian< T extends CssVariable | undefined = undefined @@ -15171,6 +15226,24 @@ export declare function Noto_Serif_Khmer< subsets?: Array<'khmer' | 'latin' | 'latin-ext'> axes?: 'wdth'[] }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Noto_Serif_Khojki< + T extends CssVariable | undefined = undefined +>(options?: { + weight?: + | '400' + | '500' + | '600' + | '700' + | 'variable' + | Array<'400' | '500' | '600' | '700'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'khojki' | 'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Noto_Serif_Lao< T extends CssVariable | undefined = undefined >(options?: {