Update font data (#66730)

This auto-generated PR updates font data with latest available
This commit is contained in:
Vercel Release Bot 2024-06-11 11:01:47 -04:00 committed by GitHub
parent 12190afcd3
commit f6bdd11c5b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 43 additions and 12 deletions

View file

@ -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"],

View file

@ -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<