Skip to content
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
31 changes: 29 additions & 2 deletions packages/font/src/google/font-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -1680,8 +1680,16 @@
"subsets": ["latin", "latin-ext"]
},
"Baskervville SC": {
"weights": ["400"],
"weights": ["400", "500", "600", "700", "variable"],
"styles": ["normal"],
"axes": [
{
"tag": "wght",
"min": 400,
"max": 700,
"defaultValue": 400
}
],
"subsets": ["latin", "latin-ext"]
},
"Battambang": {
Expand Down Expand Up @@ -8368,8 +8376,27 @@
"subsets": ["cyrillic", "latin", "latin-ext"]
},
"Nokora": {
"weights": ["100", "300", "400", "700", "900"],
"weights": [
"100",
"200",
"300",
"400",
"500",
"600",
"700",
"800",
"900",
"variable"
],
"styles": ["normal"],
"axes": [
{
"tag": "wght",
"min": 100,
"max": 900,
"defaultValue": 400
}
],
"subsets": ["khmer", "latin"]
},
"Norican": {
Expand Down
23 changes: 18 additions & 5 deletions packages/font/src/google/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2770,8 +2770,14 @@ export declare function Baskervville<
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Baskervville_SC<
T extends CssVariable | undefined = undefined,
>(options: {
weight: '400' | Array<'400'>
>(options?: {
weight?:
| '400'
| '500'
| '600'
| '700'
| 'variable'
| Array<'400' | '500' | '600' | '700'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
Expand Down Expand Up @@ -14784,14 +14790,21 @@ export declare function Nobile<
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Nokora<
T extends CssVariable | undefined = undefined,
>(options: {
weight:
>(options?: {
weight?:
| '100'
| '200'
| '300'
| '400'
| '500'
| '600'
| '700'
| '800'
| '900'
| Array<'100' | '300' | '400' | '700' | '900'>
| 'variable'
| Array<
'100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'
>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
Expand Down
Loading