Skip to content

Commit 05b9127

Browse files
committed
update/fonts-data-1763424908830
1 parent b53beca commit 05b9127

File tree

2 files changed

+113
-0
lines changed

2 files changed

+113
-0
lines changed

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

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5923,6 +5923,72 @@
59235923
"vietnamese"
59245924
]
59255925
},
5926+
"Google Sans Flex": {
5927+
"weights": [
5928+
"100",
5929+
"200",
5930+
"300",
5931+
"400",
5932+
"500",
5933+
"600",
5934+
"700",
5935+
"800",
5936+
"900",
5937+
"1000",
5938+
"variable"
5939+
],
5940+
"styles": ["normal"],
5941+
"axes": [
5942+
{
5943+
"tag": "GRAD",
5944+
"min": 0,
5945+
"max": 100,
5946+
"defaultValue": 0
5947+
},
5948+
{
5949+
"tag": "ROND",
5950+
"min": 0,
5951+
"max": 100,
5952+
"defaultValue": 0
5953+
},
5954+
{
5955+
"tag": "opsz",
5956+
"min": 6,
5957+
"max": 144,
5958+
"defaultValue": 18
5959+
},
5960+
{
5961+
"tag": "slnt",
5962+
"min": -10,
5963+
"max": 0,
5964+
"defaultValue": 0
5965+
},
5966+
{
5967+
"tag": "wdth",
5968+
"min": 25,
5969+
"max": 151,
5970+
"defaultValue": 100
5971+
},
5972+
{
5973+
"tag": "wght",
5974+
"min": 1,
5975+
"max": 1000,
5976+
"defaultValue": 400
5977+
}
5978+
],
5979+
"subsets": [
5980+
"canadian-aboriginal",
5981+
"cherokee",
5982+
"latin",
5983+
"latin-ext",
5984+
"math",
5985+
"nushu",
5986+
"symbols",
5987+
"syriac",
5988+
"tifinagh",
5989+
"vietnamese"
5990+
]
5991+
},
59265992
"Gorditas": {
59275993
"weights": ["400", "700"],
59285994
"styles": ["normal"],

packages/font/src/google/index.ts

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9058,6 +9058,53 @@ export declare function Google_Sans_Code<
90589058
| 'vietnamese'
90599059
>
90609060
}): T extends undefined ? NextFont : NextFontWithVariable
9061+
export declare function Google_Sans_Flex<
9062+
T extends CssVariable | undefined = undefined,
9063+
>(options?: {
9064+
weight?:
9065+
| '100'
9066+
| '200'
9067+
| '300'
9068+
| '400'
9069+
| '500'
9070+
| '600'
9071+
| '700'
9072+
| '800'
9073+
| '900'
9074+
| '1000'
9075+
| 'variable'
9076+
| Array<
9077+
| '100'
9078+
| '200'
9079+
| '300'
9080+
| '400'
9081+
| '500'
9082+
| '600'
9083+
| '700'
9084+
| '800'
9085+
| '900'
9086+
| '1000'
9087+
>
9088+
style?: 'normal' | Array<'normal'>
9089+
display?: Display
9090+
variable?: T
9091+
preload?: boolean
9092+
fallback?: string[]
9093+
adjustFontFallback?: boolean
9094+
subsets?: Array<
9095+
| 'canadian-aboriginal'
9096+
| 'cherokee'
9097+
| 'latin'
9098+
| 'latin-ext'
9099+
| 'math'
9100+
| 'nushu'
9101+
| 'symbols'
9102+
| 'syriac'
9103+
| 'tifinagh'
9104+
| 'vietnamese'
9105+
>
9106+
axes?: ('GRAD' | 'ROND' | 'opsz' | 'slnt' | 'wdth')[]
9107+
}): T extends undefined ? NextFont : NextFontWithVariable
90619108
export declare function Gorditas<
90629109
T extends CssVariable | undefined = undefined,
90639110
>(options: {

0 commit comments

Comments
 (0)