Skip to content

Commit 50ca7f8

Browse files
Update font data (#66359)
This auto-generated PR updates font data with latest available Co-authored-by: JJ Kasper <[email protected]>
1 parent 3506398 commit 50ca7f8

File tree

2 files changed

+104
-0
lines changed

2 files changed

+104
-0
lines changed

packages/font/src/google/font-data.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2086,6 +2086,11 @@
20862086
"styles": ["normal"],
20872087
"subsets": ["latin"]
20882088
},
2089+
"Cactus Classical Serif": {
2090+
"weights": ["400"],
2091+
"styles": ["normal"],
2092+
"subsets": ["cyrillic", "latin", "latin-ext", "vietnamese"]
2093+
},
20892094
"Caesar Dressing": {
20902095
"weights": ["400"],
20912096
"styles": ["normal"],
@@ -2477,6 +2482,11 @@
24772482
],
24782483
"subsets": ["latin", "latin-ext", "vietnamese"]
24792484
},
2485+
"Chocolate Classical Sans": {
2486+
"weights": ["400"],
2487+
"styles": ["normal"],
2488+
"subsets": ["cyrillic", "latin", "latin-ext", "vietnamese"]
2489+
},
24802490
"Chokokutai": {
24812491
"weights": ["400"],
24822492
"styles": ["normal"],
@@ -5820,6 +5830,34 @@
58205830
"styles": ["normal"],
58215831
"subsets": ["cyrillic", "cyrillic-ext", "devanagari", "latin", "latin-ext"]
58225832
},
5833+
"LXGW WenKai Mono TC": {
5834+
"weights": ["300", "400", "700"],
5835+
"styles": ["normal"],
5836+
"subsets": [
5837+
"cyrillic",
5838+
"cyrillic-ext",
5839+
"greek",
5840+
"greek-ext",
5841+
"latin",
5842+
"latin-ext",
5843+
"lisu",
5844+
"vietnamese"
5845+
]
5846+
},
5847+
"LXGW WenKai TC": {
5848+
"weights": ["300", "400", "700"],
5849+
"styles": ["normal"],
5850+
"subsets": [
5851+
"cyrillic",
5852+
"cyrillic-ext",
5853+
"greek",
5854+
"greek-ext",
5855+
"latin",
5856+
"latin-ext",
5857+
"lisu",
5858+
"vietnamese"
5859+
]
5860+
},
58235861
"La Belle Aurore": {
58245862
"weights": ["400"],
58255863
"styles": ["normal"],

packages/font/src/google/index.ts

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3585,6 +3585,18 @@ export declare function Cabin_Sketch<
35853585
adjustFontFallback?: boolean
35863586
subsets?: Array<'latin'>
35873587
}): T extends undefined ? NextFont : NextFontWithVariable
3588+
export declare function Cactus_Classical_Serif<
3589+
T extends CssVariable | undefined = undefined,
3590+
>(options: {
3591+
weight: '400' | Array<'400'>
3592+
style?: 'normal' | Array<'normal'>
3593+
display?: Display
3594+
variable?: T
3595+
preload?: boolean
3596+
fallback?: string[]
3597+
adjustFontFallback?: boolean
3598+
subsets?: Array<'cyrillic' | 'latin' | 'latin-ext' | 'vietnamese'>
3599+
}): T extends undefined ? NextFont : NextFontWithVariable
35883600
export declare function Caesar_Dressing<
35893601
T extends CssVariable | undefined = undefined,
35903602
>(options: {
@@ -4313,6 +4325,18 @@ export declare function Chivo_Mono<
43134325
adjustFontFallback?: boolean
43144326
subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'>
43154327
}): T extends undefined ? NextFont : NextFontWithVariable
4328+
export declare function Chocolate_Classical_Sans<
4329+
T extends CssVariable | undefined = undefined,
4330+
>(options: {
4331+
weight: '400' | Array<'400'>
4332+
style?: 'normal' | Array<'normal'>
4333+
display?: Display
4334+
variable?: T
4335+
preload?: boolean
4336+
fallback?: string[]
4337+
adjustFontFallback?: boolean
4338+
subsets?: Array<'cyrillic' | 'latin' | 'latin-ext' | 'vietnamese'>
4339+
}): T extends undefined ? NextFont : NextFontWithVariable
43164340
export declare function Chokokutai<
43174341
T extends CssVariable | undefined = undefined,
43184342
>(options: {
@@ -10527,6 +10551,48 @@ export declare function Kurale<
1052710551
'cyrillic' | 'cyrillic-ext' | 'devanagari' | 'latin' | 'latin-ext'
1052810552
>
1052910553
}): T extends undefined ? NextFont : NextFontWithVariable
10554+
export declare function LXGW_WenKai_Mono_TC<
10555+
T extends CssVariable | undefined = undefined,
10556+
>(options: {
10557+
weight: '300' | '400' | '700' | Array<'300' | '400' | '700'>
10558+
style?: 'normal' | Array<'normal'>
10559+
display?: Display
10560+
variable?: T
10561+
preload?: boolean
10562+
fallback?: string[]
10563+
adjustFontFallback?: boolean
10564+
subsets?: Array<
10565+
| 'cyrillic'
10566+
| 'cyrillic-ext'
10567+
| 'greek'
10568+
| 'greek-ext'
10569+
| 'latin'
10570+
| 'latin-ext'
10571+
| 'lisu'
10572+
| 'vietnamese'
10573+
>
10574+
}): T extends undefined ? NextFont : NextFontWithVariable
10575+
export declare function LXGW_WenKai_TC<
10576+
T extends CssVariable | undefined = undefined,
10577+
>(options: {
10578+
weight: '300' | '400' | '700' | Array<'300' | '400' | '700'>
10579+
style?: 'normal' | Array<'normal'>
10580+
display?: Display
10581+
variable?: T
10582+
preload?: boolean
10583+
fallback?: string[]
10584+
adjustFontFallback?: boolean
10585+
subsets?: Array<
10586+
| 'cyrillic'
10587+
| 'cyrillic-ext'
10588+
| 'greek'
10589+
| 'greek-ext'
10590+
| 'latin'
10591+
| 'latin-ext'
10592+
| 'lisu'
10593+
| 'vietnamese'
10594+
>
10595+
}): T extends undefined ? NextFont : NextFontWithVariable
1053010596
export declare function La_Belle_Aurore<
1053110597
T extends CssVariable | undefined = undefined,
1053210598
>(options: {

0 commit comments

Comments
 (0)