Skip to content

Commit 23ba933

Browse files
update/fonts-data-1748132164063
1 parent 20fabb9 commit 23ba933

File tree

2 files changed

+78
-5
lines changed

2 files changed

+78
-5
lines changed

packages/font/src/google/font-data.json

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@
275275
"Alef": {
276276
"weights": ["400", "700"],
277277
"styles": ["normal"],
278-
"subsets": ["hebrew", "latin", "latin-ext"]
278+
"subsets": ["hebrew", "latin"]
279279
},
280280
"Alegreya": {
281281
"weights": ["400", "500", "600", "700", "800", "900", "variable"],
@@ -1630,8 +1630,16 @@
16301630
"subsets": ["latin", "latin-ext"]
16311631
},
16321632
"Baskervville": {
1633-
"weights": ["400"],
1633+
"weights": ["400", "500", "600", "700", "variable"],
16341634
"styles": ["normal", "italic"],
1635+
"axes": [
1636+
{
1637+
"tag": "wght",
1638+
"min": 400,
1639+
"max": 700,
1640+
"defaultValue": 400
1641+
}
1642+
],
16351643
"subsets": ["latin", "latin-ext"]
16361644
},
16371645
"Baskervville SC": {
@@ -6141,6 +6149,19 @@
61416149
],
61426150
"subsets": ["khmer", "latin", "latin-ext"]
61436151
},
6152+
"Kapakana": {
6153+
"weights": ["300", "400", "variable"],
6154+
"styles": ["normal"],
6155+
"axes": [
6156+
{
6157+
"tag": "wght",
6158+
"min": 300,
6159+
"max": 400,
6160+
"defaultValue": 400
6161+
}
6162+
],
6163+
"subsets": ["latin", "latin-ext"]
6164+
},
61446165
"Karantina": {
61456166
"weights": ["300", "400", "700"],
61466167
"styles": ["normal"],
@@ -10341,6 +10362,11 @@
1034110362
"vietnamese"
1034210363
]
1034310364
},
10365+
"Noto Serif Dives Akuru": {
10366+
"weights": ["400"],
10367+
"styles": ["normal"],
10368+
"subsets": ["dives-akuru", "latin", "latin-ext"]
10369+
},
1034410370
"Noto Serif Dogra": {
1034510371
"weights": ["400"],
1034610372
"styles": ["normal"],
@@ -16235,6 +16261,11 @@
1623516261
"styles": ["normal"],
1623616262
"subsets": ["latin", "latin-ext", "vietnamese"]
1623716263
},
16264+
"WDXL Lubrifont TC": {
16265+
"weights": ["400"],
16266+
"styles": ["normal"],
16267+
"subsets": ["cyrillic", "latin", "latin-ext", "symbols2"]
16268+
},
1623816269
"Waiting for the Sunrise": {
1623916270
"weights": ["400"],
1624016271
"styles": ["normal"],

packages/font/src/google/index.ts

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ export declare function Alef<
472472
preload?: boolean
473473
fallback?: string[]
474474
adjustFontFallback?: boolean
475-
subsets?: Array<'hebrew' | 'latin' | 'latin-ext'>
475+
subsets?: Array<'hebrew' | 'latin'>
476476
}): T extends undefined ? NextFont : NextFontWithVariable
477477
export declare function Alegreya<
478478
T extends CssVariable | undefined = undefined,
@@ -2705,8 +2705,14 @@ export declare function Basic<
27052705
}): T extends undefined ? NextFont : NextFontWithVariable
27062706
export declare function Baskervville<
27072707
T extends CssVariable | undefined = undefined,
2708-
>(options: {
2709-
weight: '400' | Array<'400'>
2708+
>(options?: {
2709+
weight?:
2710+
| '400'
2711+
| '500'
2712+
| '600'
2713+
| '700'
2714+
| 'variable'
2715+
| Array<'400' | '500' | '600' | '700'>
27102716
style?: 'normal' | 'italic' | Array<'normal' | 'italic'>
27112717
display?: Display
27122718
variable?: T
@@ -10729,6 +10735,18 @@ export declare function Kantumruy_Pro<
1072910735
adjustFontFallback?: boolean
1073010736
subsets?: Array<'khmer' | 'latin' | 'latin-ext'>
1073110737
}): T extends undefined ? NextFont : NextFontWithVariable
10738+
export declare function Kapakana<
10739+
T extends CssVariable | undefined = undefined,
10740+
>(options?: {
10741+
weight?: '300' | '400' | 'variable' | Array<'300' | '400'>
10742+
style?: 'normal' | Array<'normal'>
10743+
display?: Display
10744+
variable?: T
10745+
preload?: boolean
10746+
fallback?: string[]
10747+
adjustFontFallback?: boolean
10748+
subsets?: Array<'latin' | 'latin-ext'>
10749+
}): T extends undefined ? NextFont : NextFontWithVariable
1073210750
export declare function Karantina<
1073310751
T extends CssVariable | undefined = undefined,
1073410752
>(options: {
@@ -17569,6 +17587,18 @@ export declare function Noto_Serif_Display<
1756917587
>
1757017588
axes?: 'wdth'[]
1757117589
}): T extends undefined ? NextFont : NextFontWithVariable
17590+
export declare function Noto_Serif_Dives_Akuru<
17591+
T extends CssVariable | undefined = undefined,
17592+
>(options: {
17593+
weight: '400' | Array<'400'>
17594+
style?: 'normal' | Array<'normal'>
17595+
display?: Display
17596+
variable?: T
17597+
preload?: boolean
17598+
fallback?: string[]
17599+
adjustFontFallback?: boolean
17600+
subsets?: Array<'dives-akuru' | 'latin' | 'latin-ext'>
17601+
}): T extends undefined ? NextFont : NextFontWithVariable
1757217602
export declare function Noto_Serif_Dogra<
1757317603
T extends CssVariable | undefined = undefined,
1757417604
>(options: {
@@ -27054,6 +27084,18 @@ export declare function Vujahday_Script<
2705427084
adjustFontFallback?: boolean
2705527085
subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'>
2705627086
}): T extends undefined ? NextFont : NextFontWithVariable
27087+
export declare function WDXL_Lubrifont_TC<
27088+
T extends CssVariable | undefined = undefined,
27089+
>(options: {
27090+
weight: '400' | Array<'400'>
27091+
style?: 'normal' | Array<'normal'>
27092+
display?: Display
27093+
variable?: T
27094+
preload?: boolean
27095+
fallback?: string[]
27096+
adjustFontFallback?: boolean
27097+
subsets?: Array<'cyrillic' | 'latin' | 'latin-ext' | 'symbols2'>
27098+
}): T extends undefined ? NextFont : NextFontWithVariable
2705727099
export declare function Waiting_for_the_Sunrise<
2705827100
T extends CssVariable | undefined = undefined,
2705927101
>(options: {

0 commit comments

Comments
 (0)