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 #66359

Merged
merged 2 commits into from
May 30, 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
38 changes: 38 additions & 0 deletions packages/font/src/google/font-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -2086,6 +2086,11 @@
"styles": ["normal"],
"subsets": ["latin"]
},
"Cactus Classical Serif": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["cyrillic", "latin", "latin-ext", "vietnamese"]
},
"Caesar Dressing": {
"weights": ["400"],
"styles": ["normal"],
Expand Down Expand Up @@ -2477,6 +2482,11 @@
],
"subsets": ["latin", "latin-ext", "vietnamese"]
},
"Chocolate Classical Sans": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["cyrillic", "latin", "latin-ext", "vietnamese"]
},
"Chokokutai": {
"weights": ["400"],
"styles": ["normal"],
Expand Down Expand Up @@ -5820,6 +5830,34 @@
"styles": ["normal"],
"subsets": ["cyrillic", "cyrillic-ext", "devanagari", "latin", "latin-ext"]
},
"LXGW WenKai Mono TC": {
"weights": ["300", "400", "700"],
"styles": ["normal"],
"subsets": [
"cyrillic",
"cyrillic-ext",
"greek",
"greek-ext",
"latin",
"latin-ext",
"lisu",
"vietnamese"
]
},
"LXGW WenKai TC": {
"weights": ["300", "400", "700"],
"styles": ["normal"],
"subsets": [
"cyrillic",
"cyrillic-ext",
"greek",
"greek-ext",
"latin",
"latin-ext",
"lisu",
"vietnamese"
]
},
"La Belle Aurore": {
"weights": ["400"],
"styles": ["normal"],
Expand Down
66 changes: 66 additions & 0 deletions packages/font/src/google/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3585,6 +3585,18 @@ export declare function Cabin_Sketch<
adjustFontFallback?: boolean
subsets?: Array<'latin'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Cactus_Classical_Serif<
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' | 'latin' | 'latin-ext' | 'vietnamese'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Caesar_Dressing<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -4313,6 +4325,18 @@ export declare function Chivo_Mono<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Chocolate_Classical_Sans<
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' | 'latin' | 'latin-ext' | 'vietnamese'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Chokokutai<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -10527,6 +10551,48 @@ export declare function Kurale<
'cyrillic' | 'cyrillic-ext' | 'devanagari' | 'latin' | 'latin-ext'
>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function LXGW_WenKai_Mono_TC<
T extends CssVariable | undefined = undefined,
>(options: {
weight: '300' | '400' | '700' | Array<'300' | '400' | '700'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<
| 'cyrillic'
| 'cyrillic-ext'
| 'greek'
| 'greek-ext'
| 'latin'
| 'latin-ext'
| 'lisu'
| 'vietnamese'
>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function LXGW_WenKai_TC<
T extends CssVariable | undefined = undefined,
>(options: {
weight: '300' | '400' | '700' | Array<'300' | '400' | '700'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<
| 'cyrillic'
| 'cyrillic-ext'
| 'greek'
| 'greek-ext'
| 'latin'
| 'latin-ext'
| 'lisu'
| 'vietnamese'
>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function La_Belle_Aurore<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down
Loading