Skip to content
Closed
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
42 changes: 42 additions & 0 deletions packages/font/src/google/font-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,11 @@
"styles": ["normal"],
"subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext"]
},
"Alien Block": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext"]
},
"Alike": {
"weights": ["400"],
"styles": ["normal"],
Expand Down Expand Up @@ -14822,6 +14827,43 @@
"styles": ["normal"],
"subsets": []
},
"Pliant": {
"weights": [
"100",
"200",
"300",
"400",
"500",
"600",
"700",
"800",
"900",
"variable"
],
"styles": ["normal", "italic"],
"axes": [
{
"tag": "wdth",
"min": 100,
"max": 125,
"defaultValue": 100
},
{
"tag": "wght",
"min": 100,
"max": 900,
"defaultValue": 400
}
],
"subsets": [
"cyrillic",
"cyrillic-ext",
"greek",
"greek-ext",
"latin",
"latin-ext"
]
},
"Plus Jakarta Sans": {
"weights": ["200", "300", "400", "500", "600", "700", "800", "variable"],
"styles": ["normal", "italic"],
Expand Down
40 changes: 40 additions & 0 deletions packages/font/src/google/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -706,6 +706,18 @@ export declare function Alice<
adjustFontFallback?: boolean
subsets?: Array<'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Alien_Block<
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<'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Alike<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -23066,6 +23078,34 @@ export declare function Playwrite_ZA_Guides<
fallback?: string[]
adjustFontFallback?: boolean
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Pliant<
T extends CssVariable | undefined = undefined,
>(options?: {
weight?:
| '100'
| '200'
| '300'
| '400'
| '500'
| '600'
| '700'
| '800'
| '900'
| 'variable'
| Array<
'100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'
>
style?: 'normal' | 'italic' | Array<'normal' | 'italic'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<
'cyrillic' | 'cyrillic-ext' | 'greek' | 'greek-ext' | 'latin' | 'latin-ext'
>
axes?: 'wdth'[]
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Plus_Jakarta_Sans<
T extends CssVariable | undefined = undefined,
>(options?: {
Expand Down
Loading