Update @next/font/google data (#45092)

This commit is contained in:
Hannes Bornö 2023-01-20 19:04:08 +01:00 committed by GitHub
parent dc119e20ba
commit d6b4c5411e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 359 additions and 12 deletions

View file

@ -50,9 +50,34 @@
"subsets": ["latin"]
},
"Advent Pro": {
"weights": ["100", "200", "300", "400", "500", "600", "700"],
"styles": ["normal"],
"subsets": ["greek", "latin", "latin-ext"]
"weights": [
"100",
"200",
"300",
"400",
"500",
"600",
"700",
"800",
"900",
"variable"
],
"styles": ["normal", "italic"],
"axes": [
{
"tag": "wdth",
"min": 100,
"max": 200,
"defaultValue": 100
},
{
"tag": "wght",
"min": 100,
"max": 900,
"defaultValue": 400
}
],
"subsets": ["cyrillic", "cyrillic-ext", "greek", "latin", "latin-ext"]
},
"Aguafina Script": {
"weights": ["400"],
@ -1104,7 +1129,7 @@
"subsets": ["cyrillic", "greek-ext", "latin", "latin-ext"]
},
"BIZ UDMincho": {
"weights": ["400"],
"weights": ["400", "700"],
"styles": ["normal"],
"subsets": ["cyrillic", "greek-ext", "latin", "latin-ext"]
},
@ -1114,7 +1139,7 @@
"subsets": ["cyrillic", "greek-ext", "latin", "latin-ext"]
},
"BIZ UDPMincho": {
"weights": ["400"],
"weights": ["400", "700"],
"styles": ["normal"],
"subsets": ["cyrillic", "greek-ext", "latin", "latin-ext"]
},
@ -7888,6 +7913,11 @@
"styles": ["normal"],
"subsets": ["latin", "latin-ext", "siddham"]
},
"Noto Sans SignWriting": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext", "signwriting"]
},
"Noto Sans Sinhala": {
"weights": [
"100",
@ -8071,6 +8101,19 @@
"styles": ["normal"],
"subsets": ["tamil-supplement"]
},
"Noto Sans Tangsa": {
"weights": ["400", "500", "600", "700", "variable"],
"styles": ["normal"],
"axes": [
{
"tag": "wght",
"min": 400,
"max": 700,
"defaultValue": 400
}
],
"subsets": ["latin", "latin-ext", "tangsa"]
},
"Noto Sans Telugu": {
"weights": [
"100",
@ -8850,6 +8893,19 @@
],
"subsets": ["latin", "latin-ext", "tibetan"]
},
"Noto Serif Toto": {
"weights": ["400", "500", "600", "700", "variable"],
"styles": ["normal"],
"axes": [
{
"tag": "wght",
"min": 400,
"max": 700,
"defaultValue": 400
}
],
"subsets": ["latin", "latin-ext", "toto"]
},
"Noto Serif Yezidi": {
"weights": ["400", "500", "600", "700", "variable"],
"styles": ["normal"],
@ -9228,6 +9284,11 @@
"styles": ["normal"],
"subsets": ["latin", "latin-ext", "myanmar"]
},
"Padyakke Expanded One": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["kannada", "latin", "latin-ext"]
},
"Palanquin": {
"weights": ["100", "200", "300", "400", "500", "600", "700"],
"styles": ["normal"],
@ -9813,6 +9874,12 @@
"weights": ["200", "300", "400", "500", "600", "700", "variable"],
"styles": ["normal"],
"axes": [
{
"tag": "HEXP",
"min": 0,
"max": 100,
"defaultValue": 0
},
{
"tag": "wght",
"min": 160,
@ -10911,6 +10978,107 @@
"styles": ["normal"],
"subsets": ["latin"]
},
"Sofia 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": ["cyrillic", "cyrillic-ext", "latin", "latin-ext"]
},
"Sofia Sans Condensed": {
"weights": [
"100",
"200",
"300",
"400",
"500",
"600",
"700",
"800",
"900",
"variable"
],
"styles": ["normal", "italic"],
"axes": [
{
"tag": "wght",
"min": 100,
"max": 900,
"defaultValue": 400
}
],
"subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext"]
},
"Sofia Sans Extra Condensed": {
"weights": [
"100",
"200",
"300",
"400",
"500",
"600",
"700",
"800",
"900",
"variable"
],
"styles": ["normal", "italic"],
"axes": [
{
"tag": "wght",
"min": 100,
"max": 900,
"defaultValue": 400
}
],
"subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext"]
},
"Sofia Sans Semi Condensed": {
"weights": [
"100",
"200",
"300",
"400",
"500",
"600",
"700",
"800",
"900",
"variable"
],
"styles": ["normal", "italic"],
"axes": [
{
"tag": "wght",
"min": 100,
"max": 900,
"defaultValue": 400
}
],
"subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext"]
},
"Solitreo": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["hebrew", "latin", "latin-ext"]
},
"Solway": {
"weights": ["300", "400", "500", "700", "800"],
"styles": ["normal"],

View file

@ -135,8 +135,8 @@ export declare function Adamina<
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Advent_Pro<
T extends CssVariable | undefined = undefined
>(options: {
weight:
>(options?: {
weight?:
| '100'
| '200'
| '300'
@ -144,14 +144,20 @@ export declare function Advent_Pro<
| '500'
| '600'
| '700'
| Array<'100' | '200' | '300' | '400' | '500' | '600' | '700'>
style?: 'normal' | Array<'normal'>
| '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<'greek' | 'latin' | 'latin-ext'>
subsets?: Array<'cyrillic' | 'cyrillic-ext' | 'greek' | 'latin' | 'latin-ext'>
axes?: 'wdth'[]
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Aguafina_Script<
T extends CssVariable | undefined = undefined
@ -1839,7 +1845,7 @@ export declare function BIZ_UDGothic<
export declare function BIZ_UDMincho<
T extends CssVariable | undefined = undefined
>(options: {
weight: '400' | Array<'400'>
weight: '400' | '700' | Array<'400' | '700'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
@ -1863,7 +1869,7 @@ export declare function BIZ_UDPGothic<
export declare function BIZ_UDPMincho<
T extends CssVariable | undefined = undefined
>(options: {
weight: '400' | Array<'400'>
weight: '400' | '700' | Array<'400' | '700'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
@ -14394,6 +14400,18 @@ export declare function Noto_Sans_Siddham<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext' | 'siddham'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Noto_Sans_SignWriting<
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' | 'signwriting'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Noto_Sans_Sinhala<
T extends CssVariable | undefined = undefined
>(options?: {
@ -14676,6 +14694,24 @@ export declare function Noto_Sans_Tamil_Supplement<
adjustFontFallback?: boolean
subsets?: Array<'tamil-supplement'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Noto_Sans_Tangsa<
T extends CssVariable | undefined = undefined
>(options?: {
weight?:
| '400'
| '500'
| '600'
| '700'
| 'variable'
| Array<'400' | '500' | '600' | '700'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext' | 'tangsa'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Noto_Sans_Telugu<
T extends CssVariable | undefined = undefined
>(options?: {
@ -15621,6 +15657,24 @@ export declare function Noto_Serif_Tibetan<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext' | 'tibetan'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Noto_Serif_Toto<
T extends CssVariable | undefined = undefined
>(options?: {
weight?:
| '400'
| '500'
| '600'
| '700'
| 'variable'
| Array<'400' | '500' | '600' | '700'>
style?: 'normal' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext' | 'toto'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Noto_Serif_Yezidi<
T extends CssVariable | undefined = undefined
>(options?: {
@ -16346,6 +16400,18 @@ export declare function Padauk<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext' | 'myanmar'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Padyakke_Expanded_One<
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<'kannada' | 'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Palanquin<
T extends CssVariable | undefined = undefined
>(options: {
@ -17563,6 +17629,7 @@ export declare function Readex_Pro<
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'arabic' | 'latin' | 'latin-ext' | 'vietnamese'>
axes?: 'HEXP'[]
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Recursive<
T extends CssVariable | undefined = undefined
@ -19564,6 +19631,118 @@ export declare function Sofia<
adjustFontFallback?: boolean
subsets?: Array<'latin'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Sofia_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<'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Sofia_Sans_Condensed<
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' | 'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Sofia_Sans_Extra_Condensed<
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' | 'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Sofia_Sans_Semi_Condensed<
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' | 'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Solitreo<
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<'hebrew' | 'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Solway<
T extends CssVariable | undefined = undefined
>(options: {