Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update font data #66582

Merged
merged 1 commit into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions packages/font/src/google/font-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -2918,7 +2918,7 @@
"Damion": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin"]
"subsets": ["latin", "latin-ext"]
},
"Dancing Script": {
"weights": ["400", "500", "600", "700", "variable"],
Expand Down Expand Up @@ -7618,7 +7618,7 @@
"defaultValue": 400
}
],
"subsets": ["hebrew", "latin", "latin-ext"]
"subsets": ["greek-ext", "hebrew", "latin", "latin-ext"]
},
"Noto Sans": {
"weights": [
Expand Down Expand Up @@ -13697,6 +13697,11 @@
"vietnamese"
]
},
"Tiny5": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["cyrillic", "cyrillic-ext", "greek", "latin", "latin-ext"]
},
"Tiro Bangla": {
"weights": ["400"],
"styles": ["normal", "italic"],
Expand Down
16 changes: 14 additions & 2 deletions packages/font/src/google/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5134,7 +5134,7 @@ export declare function Damion<
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'latin'>
subsets?: Array<'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Dancing_Script<
T extends CssVariable | undefined = undefined,
Expand Down Expand Up @@ -13840,7 +13840,7 @@ export declare function Noto_Rashi_Hebrew<
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'hebrew' | 'latin' | 'latin-ext'>
subsets?: Array<'greek-ext' | 'hebrew' | 'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Noto_Sans<
T extends CssVariable | undefined = undefined,
Expand Down Expand Up @@ -23310,6 +23310,18 @@ export declare function Tinos<
| 'vietnamese'
>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Tiny5<
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<'cyrillic' | 'cyrillic-ext' | 'greek' | 'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Tiro_Bangla<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down
Loading