@yahoo/uds 3.147.0-beta.1 → 3.147.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/cli/commands/sync.cjs +13 -13
  2. package/dist/cli/commands/sync.js +13 -13
  3. package/dist/css/dist/packages/fixtures/dist/index.cjs +14 -0
  4. package/dist/css/dist/packages/fixtures/dist/index.js +14 -0
  5. package/dist/fixtures/dist/index.cjs +8 -1
  6. package/dist/fixtures/dist/index.d.cts +1 -1
  7. package/dist/fixtures/dist/index.d.ts +1 -1
  8. package/dist/fixtures/dist/index.js +8 -1
  9. package/dist/styles/styler.d.cts +43 -43
  10. package/dist/styles/styler.d.ts +43 -43
  11. package/dist/tailwind/utils/index.d.cts +2 -2
  12. package/dist/tailwind/utils/index.d.ts +2 -2
  13. package/dist/tailwind-internal/dist/base/addFontFaceDeclarations.cjs +2 -2
  14. package/dist/tailwind-internal/dist/base/addFontFaceDeclarations.js +2 -2
  15. package/dist/tailwind-internal/dist/base/addFontVars.cjs +2 -2
  16. package/dist/tailwind-internal/dist/base/addFontVars.js +2 -2
  17. package/dist/tailwind-internal/dist/index.d.cts +1 -1
  18. package/dist/tailwind-internal/dist/index.d.ts +1 -1
  19. package/dist/tailwind-internal/dist/packages/fixtures/dist/index.cjs +14 -0
  20. package/dist/tailwind-internal/dist/packages/fixtures/dist/index.js +14 -0
  21. package/dist/tailwind-internal/dist/plugins/typography.cjs +3 -3
  22. package/dist/tailwind-internal/dist/plugins/typography.js +3 -3
  23. package/dist/tailwind-internal/dist/utils/addFontsPlugin.cjs +2 -2
  24. package/dist/tailwind-internal/dist/utils/addFontsPlugin.d.cts +0 -6
  25. package/dist/tailwind-internal/dist/utils/addFontsPlugin.d.ts +0 -6
  26. package/dist/tailwind-internal/dist/utils/addFontsPlugin.js +2 -2
  27. package/dist/tailwind-internal/dist/utils/composeTailwindPlugins.d.cts +0 -7
  28. package/dist/tailwind-internal/dist/utils/composeTailwindPlugins.d.ts +0 -7
  29. package/dist/tailwind-internal/dist/utils/getFontFaceDeclarations.cjs +2 -3
  30. package/dist/tailwind-internal/dist/utils/getFontFaceDeclarations.d.cts +58 -59
  31. package/dist/tailwind-internal/dist/utils/getFontFaceDeclarations.d.ts +58 -59
  32. package/dist/tailwind-internal/dist/utils/getFontFaceDeclarations.js +2 -3
  33. package/dist/tailwind-internal/dist/utils/getFontStyles.cjs +2 -2
  34. package/dist/tailwind-internal/dist/utils/getFontStyles.d.cts +1 -2
  35. package/dist/tailwind-internal/dist/utils/getFontStyles.d.ts +1 -2
  36. package/dist/tailwind-internal/dist/utils/getFontStyles.js +2 -2
  37. package/dist/tailwind-internal/dist/utils/getShadowStyles.d.cts +2 -2
  38. package/dist/tailwind-internal/dist/utils/getShadowStyles.d.ts +2 -2
  39. package/dist/uds/generated/componentData.cjs +1595 -1595
  40. package/dist/uds/generated/componentData.js +1595 -1595
  41. package/dist/utils/dist/serializeToJS.cjs +72 -0
  42. package/dist/utils/dist/serializeToJS.js +72 -0
  43. package/generated/componentData.json +2197 -2197
  44. package/package.json +1 -1
  45. package/dist/utils/dist/sortKeys.cjs +0 -21
  46. package/dist/utils/dist/sortKeys.js +0 -21
@@ -3,340 +3,339 @@ import { FontID } from "../packages/fonts/dist/index.cjs";
3
3
 
4
4
  //#region ../tailwind-internal/dist/utils/getFontFaceDeclarations.d.ts
5
5
  //#region src/utils/getFontFaceDeclarations.d.ts
6
- type FontFamilyOverrides = Partial<Record<FontID, string>>;
7
6
  /**
8
7
  * Get all font face declarations for a given set of font IDs.
9
8
  */
10
- declare function getFontFaceDeclarations(fontIds: FontID[], fontFamilyOverrides?: FontFamilyOverrides): ({
9
+ declare function getFontFaceDeclarations(fontIds: FontID[]): ({
11
10
  src: string;
12
11
  fontStyle: "normal";
13
12
  fontWeight: "50";
14
- fontFamily: string;
13
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
15
14
  fontDisplay: string;
16
15
  } | {
17
16
  src: string;
18
17
  fontStyle: "italic";
19
18
  fontWeight: "50";
20
- fontFamily: string;
19
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
21
20
  fontDisplay: string;
22
21
  } | {
23
22
  src: string;
24
23
  fontStyle: "normal";
25
24
  fontWeight: "100";
26
- fontFamily: string;
25
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
27
26
  fontDisplay: string;
28
27
  } | {
29
28
  src: string;
30
29
  fontStyle: "italic";
31
30
  fontWeight: "100";
32
- fontFamily: string;
31
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
33
32
  fontDisplay: string;
34
33
  } | {
35
34
  src: string;
36
35
  fontStyle: "normal";
37
36
  fontWeight: "300";
38
- fontFamily: string;
37
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
39
38
  fontDisplay: string;
40
39
  } | {
41
40
  src: string;
42
41
  fontStyle: "italic";
43
42
  fontWeight: "300";
44
- fontFamily: string;
43
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
45
44
  fontDisplay: string;
46
45
  } | {
47
46
  src: string;
48
47
  fontStyle: "normal";
49
48
  fontWeight: "400";
50
- fontFamily: string;
49
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
51
50
  fontDisplay: string;
52
51
  } | {
53
52
  src: string;
54
53
  fontStyle: "italic";
55
54
  fontWeight: "400";
56
- fontFamily: string;
55
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
57
56
  fontDisplay: string;
58
57
  } | {
59
58
  src: string;
60
59
  fontStyle: "normal";
61
60
  fontWeight: "500";
62
- fontFamily: string;
61
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
63
62
  fontDisplay: string;
64
63
  } | {
65
64
  src: string;
66
65
  fontStyle: "italic";
67
66
  fontWeight: "500";
68
- fontFamily: string;
67
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
69
68
  fontDisplay: string;
70
69
  } | {
71
70
  src: string;
72
71
  fontStyle: "normal";
73
72
  fontWeight: "700";
74
- fontFamily: string;
73
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
75
74
  fontDisplay: string;
76
75
  } | {
77
76
  src: string;
78
77
  fontStyle: "italic";
79
78
  fontWeight: "700";
80
- fontFamily: string;
79
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
81
80
  fontDisplay: string;
82
81
  } | {
83
82
  src: string;
84
83
  fontStyle: "normal";
85
84
  fontWeight: "800";
86
- fontFamily: string;
85
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
87
86
  fontDisplay: string;
88
87
  } | {
89
88
  src: string;
90
89
  fontStyle: "italic";
91
90
  fontWeight: "800";
92
- fontFamily: string;
91
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
93
92
  fontDisplay: string;
94
93
  } | {
95
94
  src: string;
96
95
  fontStyle: "normal";
97
96
  fontWeight: "900";
98
- fontFamily: string;
97
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
99
98
  fontDisplay: string;
100
99
  } | {
101
100
  src: string;
102
101
  fontStyle: "italic";
103
102
  fontWeight: "900";
104
- fontFamily: string;
103
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
105
104
  fontDisplay: string;
106
105
  } | {
107
106
  src: string;
108
107
  fontStyle: "normal";
109
108
  fontWeight: "250";
110
- fontFamily: string;
109
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
111
110
  fontDisplay: string;
112
111
  } | {
113
112
  src: string;
114
113
  fontStyle: "italic";
115
114
  fontWeight: "250";
116
- fontFamily: string;
115
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
117
116
  fontDisplay: string;
118
117
  } | {
119
118
  src: string;
120
119
  fontStyle: "normal";
121
120
  fontWeight: "300";
122
- fontFamily: string;
121
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
123
122
  fontDisplay: string;
124
123
  } | {
125
124
  src: string;
126
125
  fontStyle: "italic";
127
126
  fontWeight: "300";
128
- fontFamily: string;
127
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
129
128
  fontDisplay: string;
130
129
  } | {
131
130
  src: string;
132
131
  fontStyle: "normal";
133
132
  fontWeight: "400";
134
- fontFamily: string;
133
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
135
134
  fontDisplay: string;
136
135
  } | {
137
136
  src: string;
138
137
  fontStyle: "italic";
139
138
  fontWeight: "400";
140
- fontFamily: string;
139
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
141
140
  fontDisplay: string;
142
141
  } | {
143
142
  src: string;
144
143
  fontStyle: "normal";
145
144
  fontWeight: "500";
146
- fontFamily: string;
145
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
147
146
  fontDisplay: string;
148
147
  } | {
149
148
  src: string;
150
149
  fontStyle: "italic";
151
150
  fontWeight: "500";
152
- fontFamily: string;
151
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
153
152
  fontDisplay: string;
154
153
  } | {
155
154
  src: string;
156
155
  fontStyle: "normal";
157
156
  fontWeight: "600";
158
- fontFamily: string;
157
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
159
158
  fontDisplay: string;
160
159
  } | {
161
160
  src: string;
162
161
  fontStyle: "italic";
163
162
  fontWeight: "600";
164
- fontFamily: string;
163
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
165
164
  fontDisplay: string;
166
165
  } | {
167
166
  src: string;
168
167
  fontStyle: "normal";
169
168
  fontWeight: "700";
170
- fontFamily: string;
169
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
171
170
  fontDisplay: string;
172
171
  } | {
173
172
  src: string;
174
173
  fontStyle: "italic";
175
174
  fontWeight: "700";
176
- fontFamily: string;
175
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
177
176
  fontDisplay: string;
178
177
  } | {
179
178
  src: string;
180
179
  fontStyle: "normal";
181
180
  fontWeight: "800";
182
- fontFamily: string;
181
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
183
182
  fontDisplay: string;
184
183
  } | {
185
184
  src: string;
186
185
  fontStyle: "italic";
187
186
  fontWeight: "800";
188
- fontFamily: string;
187
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
189
188
  fontDisplay: string;
190
189
  } | {
191
190
  src: string;
192
191
  fontStyle: "normal";
193
192
  fontWeight: "1 1000";
194
- fontFamily: string;
193
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
195
194
  fontDisplay: string;
196
195
  } | {
197
196
  src: string;
198
197
  fontWeight: "1 1000";
199
- fontFamily: string;
198
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
200
199
  fontDisplay: string;
201
200
  } | {
202
201
  src: string;
203
202
  fontStyle: "normal";
204
203
  fontWeight: "100";
205
- fontFamily: string;
204
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
206
205
  fontDisplay: string;
207
206
  } | {
208
207
  src: string;
209
208
  fontStyle: "italic";
210
209
  fontWeight: "100";
211
- fontFamily: string;
210
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
212
211
  fontDisplay: string;
213
212
  } | {
214
213
  src: string;
215
214
  fontStyle: "normal";
216
215
  fontWeight: "300";
217
- fontFamily: string;
216
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
218
217
  fontDisplay: string;
219
218
  } | {
220
219
  src: string;
221
220
  fontStyle: "italic";
222
221
  fontWeight: "300";
223
- fontFamily: string;
222
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
224
223
  fontDisplay: string;
225
224
  } | {
226
225
  src: string;
227
226
  fontStyle: "normal";
228
227
  fontWeight: "400";
229
- fontFamily: string;
228
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
230
229
  fontDisplay: string;
231
230
  } | {
232
231
  src: string;
233
232
  fontStyle: "italic";
234
233
  fontWeight: "400";
235
- fontFamily: string;
234
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
236
235
  fontDisplay: string;
237
236
  } | {
238
237
  src: string;
239
238
  fontStyle: "normal";
240
239
  fontWeight: "500";
241
- fontFamily: string;
240
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
242
241
  fontDisplay: string;
243
242
  } | {
244
243
  src: string;
245
244
  fontStyle: "italic";
246
245
  fontWeight: "500";
247
- fontFamily: string;
246
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
248
247
  fontDisplay: string;
249
248
  } | {
250
249
  src: string;
251
250
  fontStyle: "normal";
252
251
  fontWeight: "700";
253
- fontFamily: string;
252
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
254
253
  fontDisplay: string;
255
254
  } | {
256
255
  src: string;
257
256
  fontStyle: "italic";
258
257
  fontWeight: "700";
259
- fontFamily: string;
258
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
260
259
  fontDisplay: string;
261
260
  } | {
262
261
  src: string;
263
262
  fontWeight: "1 1000";
264
- fontFamily: string;
263
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
265
264
  fontDisplay: string;
266
265
  } | {
267
266
  src: string;
268
267
  fontWeight: "1 1000";
269
- fontFamily: string;
268
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
270
269
  fontDisplay: string;
271
270
  } | {
272
271
  src: string;
273
272
  fontWeight: "1 1000";
274
- fontFamily: string;
273
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
275
274
  fontDisplay: string;
276
275
  } | {
277
276
  src: string;
278
277
  fontWeight: "1 1000";
279
- fontFamily: string;
278
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
280
279
  fontDisplay: string;
281
280
  } | {
282
281
  src: string;
283
282
  fontWeight: "1 1000";
284
- fontFamily: string;
283
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
285
284
  fontDisplay: string;
286
285
  } | {
287
286
  src: string;
288
287
  fontStyle: "normal";
289
288
  fontWeight: "300";
290
- fontFamily: string;
289
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
291
290
  fontDisplay: string;
292
291
  } | {
293
292
  src: string;
294
293
  fontStyle: "normal";
295
294
  fontWeight: "400";
296
- fontFamily: string;
295
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
297
296
  fontDisplay: string;
298
297
  } | {
299
298
  src: string;
300
299
  fontStyle: "normal";
301
300
  fontWeight: "700";
302
- fontFamily: string;
301
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
303
302
  fontDisplay: string;
304
303
  } | {
305
304
  src: string;
306
305
  fontStyle: "normal";
307
306
  fontWeight: "800";
308
- fontFamily: string;
307
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
309
308
  fontDisplay: string;
310
309
  } | {
311
310
  src: string;
312
311
  fontStyle: "normal";
313
312
  fontWeight: "900";
314
- fontFamily: string;
313
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
315
314
  fontDisplay: string;
316
315
  } | {
317
316
  src: string;
318
317
  fontStyle: "normal";
319
318
  fontWeight: "400";
320
- fontFamily: string;
319
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
321
320
  fontDisplay: string;
322
321
  } | {
323
322
  src: string;
324
323
  fontStyle: "italic";
325
324
  fontWeight: "400";
326
- fontFamily: string;
325
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
327
326
  fontDisplay: string;
328
327
  } | {
329
328
  src: string;
330
329
  fontStyle: "normal";
331
330
  fontWeight: "700";
332
- fontFamily: string;
331
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
333
332
  fontDisplay: string;
334
333
  } | {
335
334
  src: string;
336
335
  fontStyle: "italic";
337
336
  fontWeight: "700";
338
- fontFamily: string;
337
+ fontFamily: "Centra No2" | "Gelica" | "YA Sans VF" | "Inter" | "Roboto Mono" | "Yahoo Sans" | "Yahoo CR4 BETA VF" | "Yahoo Product Sans VF" | "YahooPd_Eval202412" | "Yahoo Sans Cond" | "Yahoo Serif Display" | "Yahoo Serif Text";
339
338
  fontDisplay: string;
340
339
  })[]; //#endregion
341
340
  //#endregion
342
- export { FontFamilyOverrides, getFontFaceDeclarations };
341
+ export { getFontFaceDeclarations };