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
49 changes: 48 additions & 1 deletion packages/font/src/google/font-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -8994,6 +8994,29 @@
"styles": ["italic"],
"subsets": ["latin", "latin-ext"]
},
"Momo Signature": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext", "vietnamese"]
},
"Momo Trust Display": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin", "latin-ext", "vietnamese"]
},
"Momo Trust Sans": {
"weights": ["200", "300", "400", "500", "600", "700", "800", "variable"],
"styles": ["normal"],
"axes": [
{
"tag": "wght",
"min": 200,
"max": 800,
"defaultValue": 400
}
],
"subsets": ["latin", "latin-ext", "vietnamese"]
},
"Mona Sans": {
"weights": [
"200",
Expand Down Expand Up @@ -11247,6 +11270,30 @@
],
"subsets": ["latin", "latin-ext", "syriac"]
},
"Noto Sans Syriac Western": {
"weights": [
"100",
"200",
"300",
"400",
"500",
"600",
"700",
"800",
"900",
"variable"
],
"styles": ["normal"],
"axes": [
{
"tag": "wght",
"min": 100,
"max": 900,
"defaultValue": 400
}
],
"subsets": ["latin", "latin-ext", "syriac"]
},
"Noto Sans TC": {
"weights": [
"100",
Expand Down Expand Up @@ -12852,7 +12899,7 @@
"defaultValue": 400
}
],
"subsets": ["latin", "latin-ext", "vietnamese"]
"subsets": ["arabic", "latin", "latin-ext", "vietnamese"]
},
"Parisienne": {
"weights": ["400"],
Expand Down
72 changes: 71 additions & 1 deletion packages/font/src/google/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14699,6 +14699,51 @@ export declare function Molle<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Momo_Signature<
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 Momo_Trust_Display<
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 Momo_Trust_Sans<
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<'latin' | 'latin-ext' | 'vietnamese'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Mona_Sans<
T extends CssVariable | undefined = undefined,
>(options?: {
Expand Down Expand Up @@ -18120,6 +18165,31 @@ export declare function Noto_Sans_Syriac_Eastern<
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext' | 'syriac'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Noto_Sans_Syriac_Western<
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' | Array<'normal'>
display?: Display
variable?: T
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext' | 'syriac'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Noto_Sans_TC<
T extends CssVariable | undefined = undefined,
>(options?: {
Expand Down Expand Up @@ -20288,7 +20358,7 @@ export declare function Parastoo<
preload?: boolean
fallback?: string[]
adjustFontFallback?: boolean
subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'>
subsets?: Array<'arabic' | 'latin' | 'latin-ext' | 'vietnamese'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function Parisienne<
T extends CssVariable | undefined = undefined,
Expand Down
Loading