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
63 changes: 63 additions & 0 deletions packages/font/src/google/font-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -4695,6 +4695,30 @@
"styles": ["normal"],
"subsets": ["latin"]
},
"Elms Sans": {
"weights": [
"100",
"200",
"300",
"400",
"500",
"600",
"700",
"800",
"900",
"variable"
],
"styles": ["normal", "italic"],
"axes": [
{
"tag": "wght",
"min": 100,
"max": 900,
"defaultValue": 400
}
],
"subsets": ["latin", "latin-ext", "vietnamese"]
},
"Elsie": {
"weights": ["400", "900"],
"styles": ["normal"],
Expand Down Expand Up @@ -16748,6 +16772,45 @@
"styles": ["normal"],
"subsets": ["latin", "latin-ext"]
},
"Stack Sans Headline": {
"weights": ["200", "300", "400", "500", "600", "700", "variable"],
"styles": ["normal"],
"axes": [
{
"tag": "wght",
"min": 200,
"max": 700,
"defaultValue": 400
}
],
"subsets": ["latin", "latin-ext"]
},
"Stack Sans Notch": {
"weights": ["200", "300", "400", "500", "600", "700", "variable"],
"styles": ["normal"],
"axes": [
{
"tag": "wght",
"min": 200,
"max": 700,
"defaultValue": 400
}
],
"subsets": ["latin", "latin-ext"]
},
"Stack Sans Text": {
"weights": ["200", "300", "400", "500", "600", "700", "variable"],
"styles": ["normal"],
"axes": [
{
"tag": "wght",
"min": 200,
"max": 700,
"defaultValue": 400
}
],
"subsets": ["latin", "latin-ext"]
},
"Stalemate": {
"weights": ["400"],
"styles": ["normal"],
Expand Down
85 changes: 85 additions & 0 deletions packages/font/src/google/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7001,6 +7001,31 @@ export declare function Electrolize<
adjustFontFallback?: boolean
subsets?: Array<'latin'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Elms_Sans<
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<'latin' | 'latin-ext' | 'vietnamese'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Elsie<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -26593,6 +26618,66 @@ export declare function Staatliches<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Stack_Sans_Headline<
T extends CssVariable | undefined = undefined,
>(options?: {
weight?:
| '200'
| '300'
| '400'
| '500'
| '600'
| '700'
| 'variable'
| Array<'200' | '300' | '400' | '500' | '600' | '700'>
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 Stack_Sans_Notch<
T extends CssVariable | undefined = undefined,
>(options?: {
weight?:
| '200'
| '300'
| '400'
| '500'
| '600'
| '700'
| 'variable'
| Array<'200' | '300' | '400' | '500' | '600' | '700'>
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 Stack_Sans_Text<
T extends CssVariable | undefined = undefined,
>(options?: {
weight?:
| '200'
| '300'
| '400'
| '500'
| '600'
| '700'
| 'variable'
| Array<'200' | '300' | '400' | '500' | '600' | '700'>
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 Stalemate<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down
Loading