Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update font data #67472

Merged
merged 1 commit into from
Jul 5, 2024
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
101 changes: 101 additions & 0 deletions packages/font/src/google/font-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -861,6 +861,11 @@
"styles": ["normal"],
"subsets": ["latin", "latin-ext", "vietnamese"]
},
"Anton SC": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext", "vietnamese"]
},
"Antonio": {
"weights": ["100", "200", "300", "400", "500", "600", "700", "variable"],
"styles": ["normal"],
Expand Down Expand Up @@ -1063,6 +1068,11 @@
"styles": ["normal", "italic"],
"subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"]
},
"Arsenal SC": {
"weights": ["400", "700"],
"styles": ["normal", "italic"],
"subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"]
},
"Artifika": {
"weights": ["400"],
"styles": ["normal"],
Expand Down Expand Up @@ -1498,6 +1508,11 @@
"styles": ["normal", "italic"],
"subsets": ["latin", "latin-ext"]
},
"Baskervville SC": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext"]
},
"Battambang": {
"weights": ["100", "300", "400", "700", "900"],
"styles": ["normal"],
Expand Down Expand Up @@ -1528,6 +1543,29 @@
"styles": ["normal"],
"subsets": ["latin", "latin-ext"]
},
"Beiruti": {
"weights": [
"200",
"300",
"400",
"500",
"600",
"700",
"800",
"900",
"variable"
],
"styles": ["normal"],
"axes": [
{
"tag": "wght",
"min": 200,
"max": 900,
"defaultValue": 400
}
],
"subsets": ["arabic", "latin", "latin-ext", "vietnamese"]
},
"Belanosima": {
"weights": ["400", "600", "700"],
"styles": ["normal"],
Expand Down Expand Up @@ -1887,6 +1925,25 @@
],
"subsets": ["latin", "latin-ext", "math", "symbols"]
},
"Bodoni Moda SC": {
"weights": ["400", "500", "600", "700", "800", "900", "variable"],
"styles": ["normal", "italic"],
"axes": [
{
"tag": "opsz",
"min": 6,
"max": 96,
"defaultValue": 11
},
{
"tag": "wght",
"min": 400,
"max": 900,
"defaultValue": 400
}
],
"subsets": ["latin", "latin-ext", "math", "symbols"]
},
"Bokor": {
"weights": ["400"],
"styles": ["normal"],
Expand All @@ -1905,6 +1962,19 @@
"vietnamese"
]
},
"Bona Nova SC": {
"weights": ["400", "700"],
"styles": ["normal", "italic"],
"subsets": [
"cyrillic",
"cyrillic-ext",
"greek",
"hebrew",
"latin",
"latin-ext",
"vietnamese"
]
},
"Bonbon": {
"weights": ["400"],
"styles": ["normal"],
Expand Down Expand Up @@ -3942,6 +4012,19 @@
"styles": ["normal"],
"subsets": ["latin", "latin-ext", "vietnamese"]
},
"Fustat": {
"weights": ["200", "300", "400", "500", "600", "700", "800", "variable"],
"styles": ["normal"],
"axes": [
{
"tag": "wght",
"min": 200,
"max": 800,
"defaultValue": 400
}
],
"subsets": ["arabic", "latin", "latin-ext"]
},
"Fuzzy Bubbles": {
"weights": ["400", "700"],
"styles": ["normal"],
Expand All @@ -3957,6 +4040,11 @@
"styles": ["normal", "italic"],
"subsets": ["greek"]
},
"Ga Maamli": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext", "vietnamese"]
},
"Gabarito": {
"weights": ["400", "500", "600", "700", "800", "900", "variable"],
"styles": ["normal"],
Expand Down Expand Up @@ -14860,6 +14948,19 @@
"styles": ["normal"],
"subsets": ["latin"]
},
"Wittgenstein": {
"weights": ["400", "500", "600", "700", "800", "900", "variable"],
"styles": ["normal", "italic"],
"axes": [
{
"tag": "wght",
"min": 400,
"max": 900,
"defaultValue": 400
}
],
"subsets": ["latin", "latin-ext"]
},
"Wix Madefor Display": {
"weights": ["400", "500", "600", "700", "800", "variable"],
"styles": ["normal"],
Expand Down
154 changes: 154 additions & 0 deletions packages/font/src/google/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1314,6 +1314,18 @@ export declare function Anton<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Anton_SC<
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' | 'vietnamese'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Antonio<
T extends CssVariable | undefined = undefined,
>(options?: {
Expand Down Expand Up @@ -1630,6 +1642,20 @@ export declare function Arsenal<
'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext' | 'vietnamese'
>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Arsenal_SC<
T extends CssVariable | undefined = undefined,
>(options: {
weight: '400' | '700' | Array<'400' | '700'>
style?: 'normal' | 'italic' | Array<'normal' | 'italic'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<
'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext' | 'vietnamese'
>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Artifika<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -2510,6 +2536,18 @@ export declare function Baskervville<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Baskervville_SC<
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 Battambang<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -2600,6 +2638,28 @@ export declare function Bebas_Neue<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Beiruti<
T extends CssVariable | undefined = undefined,
>(options?: {
weight?:
| '200'
| '300'
| '400'
| '500'
| '600'
| '700'
| '800'
| '900'
| 'variable'
| Array<'200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'arabic' | 'latin' | 'latin-ext' | 'vietnamese'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Belanosima<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -3199,6 +3259,27 @@ export declare function Bodoni_Moda<
subsets?: Array<'latin' | 'latin-ext' | 'math' | 'symbols'>
axes?: 'opsz'[]
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Bodoni_Moda_SC<
T extends CssVariable | undefined = undefined,
>(options?: {
weight?:
| '400'
| '500'
| '600'
| '700'
| '800'
| '900'
| 'variable'
| Array<'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' | 'math' | 'symbols'>
axes?: 'opsz'[]
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Bokor<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -3231,6 +3312,26 @@ export declare function Bona_Nova<
| 'vietnamese'
>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Bona_Nova_SC<
T extends CssVariable | undefined = undefined,
>(options: {
weight: '400' | '700' | Array<'400' | '700'>
style?: 'normal' | 'italic' | Array<'normal' | 'italic'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<
| 'cyrillic'
| 'cyrillic-ext'
| 'greek'
| 'hebrew'
| 'latin'
| 'latin-ext'
| 'vietnamese'
>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Bonbon<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -6987,6 +7088,27 @@ export declare function Fuggles<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Fustat<
T extends CssVariable | undefined = undefined,
>(options?: {
weight?:
| '200'
| '300'
| '400'
| '500'
| '600'
| '700'
| '800'
| 'variable'
| Array<'200' | '300' | '400' | '500' | '600' | '700' | '800'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'arabic' | 'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Fuzzy_Bubbles<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down Expand Up @@ -7023,6 +7145,18 @@ export declare function GFS_Neohellenic<
adjustFontFallback?: boolean
subsets?: Array<'greek'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Ga_Maamli<
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' | 'vietnamese'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Gabarito<
T extends CssVariable | undefined = undefined,
>(options?: {
Expand Down Expand Up @@ -25087,6 +25221,26 @@ export declare function Wire_One<
adjustFontFallback?: boolean
subsets?: Array<'latin'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Wittgenstein<
T extends CssVariable | undefined = undefined,
>(options?: {
weight?:
| '400'
| '500'
| '600'
| '700'
| '800'
| '900'
| 'variable'
| Array<'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'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Wix_Madefor_Display<
T extends CssVariable | undefined = undefined,
>(options?: {
Expand Down
Loading