Skip to content

Commit 93b3af5

Browse files
Update font data (#72371)
1 parent 2ee93c3 commit 93b3af5

File tree

2 files changed

+112
-4
lines changed

2 files changed

+112
-4
lines changed

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

Lines changed: 60 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4978,6 +4978,35 @@
49784978
"styles": ["normal"],
49794979
"subsets": ["kannada", "latin", "latin-ext"]
49804980
},
4981+
"Hubot Sans": {
4982+
"weights": [
4983+
"200",
4984+
"300",
4985+
"400",
4986+
"500",
4987+
"600",
4988+
"700",
4989+
"800",
4990+
"900",
4991+
"variable"
4992+
],
4993+
"styles": ["normal", "italic"],
4994+
"axes": [
4995+
{
4996+
"tag": "wdth",
4997+
"min": 75,
4998+
"max": 125,
4999+
"defaultValue": 100
5000+
},
5001+
{
5002+
"tag": "wght",
5003+
"min": 200,
5004+
"max": 900,
5005+
"defaultValue": 400
5006+
}
5007+
],
5008+
"subsets": ["latin", "latin-ext", "vietnamese"]
5009+
},
49815010
"Hurricane": {
49825011
"weights": ["400"],
49835012
"styles": ["normal"],
@@ -7326,6 +7355,35 @@
73267355
"styles": ["italic"],
73277356
"subsets": ["latin", "latin-ext"]
73287357
},
7358+
"Mona Sans": {
7359+
"weights": [
7360+
"200",
7361+
"300",
7362+
"400",
7363+
"500",
7364+
"600",
7365+
"700",
7366+
"800",
7367+
"900",
7368+
"variable"
7369+
],
7370+
"styles": ["normal", "italic"],
7371+
"axes": [
7372+
{
7373+
"tag": "wdth",
7374+
"min": 75,
7375+
"max": 125,
7376+
"defaultValue": 100
7377+
},
7378+
{
7379+
"tag": "wght",
7380+
"min": 200,
7381+
"max": 900,
7382+
"defaultValue": 400
7383+
}
7384+
],
7385+
"subsets": ["latin", "latin-ext", "vietnamese"]
7386+
},
73297387
"Monda": {
73307388
"weights": ["400", "500", "600", "700", "variable"],
73317389
"styles": ["normal"],
@@ -14186,12 +14244,12 @@
1418614244
"Spectral": {
1418714245
"weights": ["200", "300", "400", "500", "600", "700", "800"],
1418814246
"styles": ["normal", "italic"],
14189-
"subsets": ["cyrillic", "latin", "latin-ext", "vietnamese"]
14247+
"subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"]
1419014248
},
1419114249
"Spectral SC": {
1419214250
"weights": ["200", "300", "400", "500", "600", "700", "800"],
1419314251
"styles": ["normal", "italic"],
14194-
"subsets": ["cyrillic", "latin", "latin-ext", "vietnamese"]
14252+
"subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"]
1419514253
},
1419614254
"Spicy Rice": {
1419714255
"weights": ["400"],

packages/font/src/google/index.ts

Lines changed: 52 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8711,6 +8711,29 @@ export declare function Hubballi<
87118711
adjustFontFallback?: boolean
87128712
subsets?: Array<'kannada' | 'latin' | 'latin-ext'>
87138713
}): T extends undefined ? NextFont : NextFontWithVariable
8714+
export declare function Hubot_Sans<
8715+
T extends CssVariable | undefined = undefined,
8716+
>(options?: {
8717+
weight?:
8718+
| '200'
8719+
| '300'
8720+
| '400'
8721+
| '500'
8722+
| '600'
8723+
| '700'
8724+
| '800'
8725+
| '900'
8726+
| 'variable'
8727+
| Array<'200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'>
8728+
style?: 'normal' | 'italic' | Array<'normal' | 'italic'>
8729+
display?: Display
8730+
variable?: T
8731+
preload?: boolean
8732+
fallback?: string[]
8733+
adjustFontFallback?: boolean
8734+
subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'>
8735+
axes?: 'wdth'[]
8736+
}): T extends undefined ? NextFont : NextFontWithVariable
87148737
export declare function Hurricane<
87158738
T extends CssVariable | undefined = undefined,
87168739
>(options: {
@@ -13152,6 +13175,29 @@ export declare function Molle<
1315213175
adjustFontFallback?: boolean
1315313176
subsets?: Array<'latin' | 'latin-ext'>
1315413177
}): T extends undefined ? NextFont : NextFontWithVariable
13178+
export declare function Mona_Sans<
13179+
T extends CssVariable | undefined = undefined,
13180+
>(options?: {
13181+
weight?:
13182+
| '200'
13183+
| '300'
13184+
| '400'
13185+
| '500'
13186+
| '600'
13187+
| '700'
13188+
| '800'
13189+
| '900'
13190+
| 'variable'
13191+
| Array<'200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'>
13192+
style?: 'normal' | 'italic' | Array<'normal' | 'italic'>
13193+
display?: Display
13194+
variable?: T
13195+
preload?: boolean
13196+
fallback?: string[]
13197+
adjustFontFallback?: boolean
13198+
subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'>
13199+
axes?: 'wdth'[]
13200+
}): T extends undefined ? NextFont : NextFontWithVariable
1315513201
export declare function Monda<
1315613202
T extends CssVariable | undefined = undefined,
1315713203
>(options?: {
@@ -23670,7 +23716,9 @@ export declare function Spectral<
2367023716
preload?: boolean
2367123717
fallback?: string[]
2367223718
adjustFontFallback?: boolean
23673-
subsets?: Array<'cyrillic' | 'latin' | 'latin-ext' | 'vietnamese'>
23719+
subsets?: Array<
23720+
'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext' | 'vietnamese'
23721+
>
2367423722
}): T extends undefined ? NextFont : NextFontWithVariable
2367523723
export declare function Spectral_SC<
2367623724
T extends CssVariable | undefined = undefined,
@@ -23690,7 +23738,9 @@ export declare function Spectral_SC<
2369023738
preload?: boolean
2369123739
fallback?: string[]
2369223740
adjustFontFallback?: boolean
23693-
subsets?: Array<'cyrillic' | 'latin' | 'latin-ext' | 'vietnamese'>
23741+
subsets?: Array<
23742+
'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext' | 'vietnamese'
23743+
>
2369423744
}): T extends undefined ? NextFont : NextFontWithVariable
2369523745
export declare function Spicy_Rice<
2369623746
T extends CssVariable | undefined = undefined,

0 commit comments

Comments
 (0)