@sudajs/cli 0.19.0 → 0.20.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.
- package/dist/index.d.ts +286 -2
- package/dist/index.js +50 -15
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/templates/theme/AGENTS.md +48 -0
- package/templates/theme/docs/agent-guides/design-and-runtime.md +13 -0
- package/templates/theme/src/manifest.ts +10 -0
- package/templates/theme/src/styles.css +15 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { ThemeModule, ThemeStarterPage } from '@sudajs/theme-engine';
|
|
3
|
-
import { ThemeRender, extractLayoutChrome, resolveAssetPath, ThemePreviewLocaleMessages } from '@sudajs/theme-engine/server';
|
|
3
|
+
import { ThemeRender, extractLayoutChrome, resolveAssetPath, ThemePreviewLocaleMessages, ThemeLocaleMessages } from '@sudajs/theme-engine/server';
|
|
4
4
|
import { Command } from 'commander';
|
|
5
5
|
import { createElement } from 'react';
|
|
6
6
|
import { renderToString } from 'react-dom/server';
|
|
@@ -1303,6 +1303,19 @@ declare const themeSettingsViewSchema: z.ZodObject<{
|
|
|
1303
1303
|
}, {
|
|
1304
1304
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1305
1305
|
}>>;
|
|
1306
|
+
typography: z.ZodDefault<z.ZodObject<{
|
|
1307
|
+
heading: z.ZodEnum<["system-sans", "system-serif", "system-mono", "geist", "inter", "noto-sans", "nunito-sans", "figtree", "roboto", "raleway", "dm-sans", "public-sans", "outfit", "oxanium", "manrope", "space-grotesk", "montserrat", "ibm-plex-sans", "source-sans-3", "instrument-sans", "noto-serif", "roboto-slab", "merriweather", "lora", "playfair-display", "eb-garamond", "instrument-serif", "geist-mono", "jetbrains-mono", "noto-sans-sc", "noto-serif-sc", "microsoft-yahei", "pingfang-sc", "songti-sc", "kaiti-sc"]>;
|
|
1308
|
+
body: z.ZodEnum<["system-sans", "system-serif", "system-mono", "geist", "inter", "noto-sans", "nunito-sans", "figtree", "roboto", "raleway", "dm-sans", "public-sans", "outfit", "oxanium", "manrope", "space-grotesk", "montserrat", "ibm-plex-sans", "source-sans-3", "instrument-sans", "noto-serif", "roboto-slab", "merriweather", "lora", "playfair-display", "eb-garamond", "instrument-serif", "geist-mono", "jetbrains-mono", "noto-sans-sc", "noto-serif-sc", "microsoft-yahei", "pingfang-sc", "songti-sc", "kaiti-sc"]>;
|
|
1309
|
+
mono: z.ZodEnum<["system-sans", "system-serif", "system-mono", "geist", "inter", "noto-sans", "nunito-sans", "figtree", "roboto", "raleway", "dm-sans", "public-sans", "outfit", "oxanium", "manrope", "space-grotesk", "montserrat", "ibm-plex-sans", "source-sans-3", "instrument-sans", "noto-serif", "roboto-slab", "merriweather", "lora", "playfair-display", "eb-garamond", "instrument-serif", "geist-mono", "jetbrains-mono", "noto-sans-sc", "noto-serif-sc", "microsoft-yahei", "pingfang-sc", "songti-sc", "kaiti-sc"]>;
|
|
1310
|
+
}, "strip", z.ZodTypeAny, {
|
|
1311
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1312
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1313
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1314
|
+
}, {
|
|
1315
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1316
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1317
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1318
|
+
}>>;
|
|
1306
1319
|
}, "strip", z.ZodTypeAny, {
|
|
1307
1320
|
colors: {
|
|
1308
1321
|
secondary: string;
|
|
@@ -1324,6 +1337,11 @@ declare const themeSettingsViewSchema: z.ZodObject<{
|
|
|
1324
1337
|
layout: {
|
|
1325
1338
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1326
1339
|
};
|
|
1340
|
+
typography: {
|
|
1341
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1342
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1343
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1344
|
+
};
|
|
1327
1345
|
}, {
|
|
1328
1346
|
colors: {
|
|
1329
1347
|
background: string;
|
|
@@ -1345,6 +1363,11 @@ declare const themeSettingsViewSchema: z.ZodObject<{
|
|
|
1345
1363
|
layout?: {
|
|
1346
1364
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1347
1365
|
} | undefined;
|
|
1366
|
+
typography?: {
|
|
1367
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1368
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1369
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1370
|
+
} | undefined;
|
|
1348
1371
|
}>;
|
|
1349
1372
|
}, "strip", z.ZodTypeAny, {
|
|
1350
1373
|
label: string;
|
|
@@ -1370,6 +1393,11 @@ declare const themeSettingsViewSchema: z.ZodObject<{
|
|
|
1370
1393
|
layout: {
|
|
1371
1394
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1372
1395
|
};
|
|
1396
|
+
typography: {
|
|
1397
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1398
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1399
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1400
|
+
};
|
|
1373
1401
|
};
|
|
1374
1402
|
description?: string | undefined;
|
|
1375
1403
|
}, {
|
|
@@ -1396,6 +1424,11 @@ declare const themeSettingsViewSchema: z.ZodObject<{
|
|
|
1396
1424
|
layout?: {
|
|
1397
1425
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1398
1426
|
} | undefined;
|
|
1427
|
+
typography?: {
|
|
1428
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1429
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1430
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1431
|
+
} | undefined;
|
|
1399
1432
|
};
|
|
1400
1433
|
description?: string | undefined;
|
|
1401
1434
|
}>, "many">;
|
|
@@ -1426,6 +1459,11 @@ declare const themeSettingsViewSchema: z.ZodObject<{
|
|
|
1426
1459
|
layout: {
|
|
1427
1460
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1428
1461
|
};
|
|
1462
|
+
typography: {
|
|
1463
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1464
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1465
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1466
|
+
};
|
|
1429
1467
|
};
|
|
1430
1468
|
description?: string | undefined;
|
|
1431
1469
|
}[];
|
|
@@ -1456,6 +1494,11 @@ declare const themeSettingsViewSchema: z.ZodObject<{
|
|
|
1456
1494
|
layout?: {
|
|
1457
1495
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1458
1496
|
} | undefined;
|
|
1497
|
+
typography?: {
|
|
1498
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1499
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1500
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1501
|
+
} | undefined;
|
|
1459
1502
|
};
|
|
1460
1503
|
description?: string | undefined;
|
|
1461
1504
|
}[];
|
|
@@ -1486,6 +1529,11 @@ declare const themeSettingsViewSchema: z.ZodObject<{
|
|
|
1486
1529
|
layout: {
|
|
1487
1530
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1488
1531
|
};
|
|
1532
|
+
typography: {
|
|
1533
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1534
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1535
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1536
|
+
};
|
|
1489
1537
|
};
|
|
1490
1538
|
description?: string | undefined;
|
|
1491
1539
|
}[];
|
|
@@ -1516,6 +1564,11 @@ declare const themeSettingsViewSchema: z.ZodObject<{
|
|
|
1516
1564
|
layout?: {
|
|
1517
1565
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1518
1566
|
} | undefined;
|
|
1567
|
+
typography?: {
|
|
1568
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1569
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1570
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1571
|
+
} | undefined;
|
|
1519
1572
|
};
|
|
1520
1573
|
description?: string | undefined;
|
|
1521
1574
|
}[];
|
|
@@ -1552,6 +1605,11 @@ declare const themeSettingsViewSchema: z.ZodObject<{
|
|
|
1552
1605
|
layout: {
|
|
1553
1606
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1554
1607
|
};
|
|
1608
|
+
typography: {
|
|
1609
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1610
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1611
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1612
|
+
};
|
|
1555
1613
|
};
|
|
1556
1614
|
description?: string | undefined;
|
|
1557
1615
|
}[];
|
|
@@ -1588,6 +1646,11 @@ declare const themeSettingsViewSchema: z.ZodObject<{
|
|
|
1588
1646
|
layout?: {
|
|
1589
1647
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1590
1648
|
} | undefined;
|
|
1649
|
+
typography?: {
|
|
1650
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1651
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1652
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1653
|
+
} | undefined;
|
|
1591
1654
|
};
|
|
1592
1655
|
description?: string | undefined;
|
|
1593
1656
|
}[];
|
|
@@ -1729,6 +1792,19 @@ declare const updateThemeSettingsOutputSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
1729
1792
|
}, {
|
|
1730
1793
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1731
1794
|
}>>;
|
|
1795
|
+
typography: z.ZodDefault<z.ZodObject<{
|
|
1796
|
+
heading: z.ZodEnum<["system-sans", "system-serif", "system-mono", "geist", "inter", "noto-sans", "nunito-sans", "figtree", "roboto", "raleway", "dm-sans", "public-sans", "outfit", "oxanium", "manrope", "space-grotesk", "montserrat", "ibm-plex-sans", "source-sans-3", "instrument-sans", "noto-serif", "roboto-slab", "merriweather", "lora", "playfair-display", "eb-garamond", "instrument-serif", "geist-mono", "jetbrains-mono", "noto-sans-sc", "noto-serif-sc", "microsoft-yahei", "pingfang-sc", "songti-sc", "kaiti-sc"]>;
|
|
1797
|
+
body: z.ZodEnum<["system-sans", "system-serif", "system-mono", "geist", "inter", "noto-sans", "nunito-sans", "figtree", "roboto", "raleway", "dm-sans", "public-sans", "outfit", "oxanium", "manrope", "space-grotesk", "montserrat", "ibm-plex-sans", "source-sans-3", "instrument-sans", "noto-serif", "roboto-slab", "merriweather", "lora", "playfair-display", "eb-garamond", "instrument-serif", "geist-mono", "jetbrains-mono", "noto-sans-sc", "noto-serif-sc", "microsoft-yahei", "pingfang-sc", "songti-sc", "kaiti-sc"]>;
|
|
1798
|
+
mono: z.ZodEnum<["system-sans", "system-serif", "system-mono", "geist", "inter", "noto-sans", "nunito-sans", "figtree", "roboto", "raleway", "dm-sans", "public-sans", "outfit", "oxanium", "manrope", "space-grotesk", "montserrat", "ibm-plex-sans", "source-sans-3", "instrument-sans", "noto-serif", "roboto-slab", "merriweather", "lora", "playfair-display", "eb-garamond", "instrument-serif", "geist-mono", "jetbrains-mono", "noto-sans-sc", "noto-serif-sc", "microsoft-yahei", "pingfang-sc", "songti-sc", "kaiti-sc"]>;
|
|
1799
|
+
}, "strip", z.ZodTypeAny, {
|
|
1800
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1801
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1802
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1803
|
+
}, {
|
|
1804
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1805
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1806
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1807
|
+
}>>;
|
|
1732
1808
|
}, "strip", z.ZodTypeAny, {
|
|
1733
1809
|
colors: {
|
|
1734
1810
|
secondary: string;
|
|
@@ -1750,6 +1826,11 @@ declare const updateThemeSettingsOutputSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
1750
1826
|
layout: {
|
|
1751
1827
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1752
1828
|
};
|
|
1829
|
+
typography: {
|
|
1830
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1831
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1832
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1833
|
+
};
|
|
1753
1834
|
}, {
|
|
1754
1835
|
colors: {
|
|
1755
1836
|
background: string;
|
|
@@ -1771,6 +1852,11 @@ declare const updateThemeSettingsOutputSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
1771
1852
|
layout?: {
|
|
1772
1853
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1773
1854
|
} | undefined;
|
|
1855
|
+
typography?: {
|
|
1856
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1857
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1858
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1859
|
+
} | undefined;
|
|
1774
1860
|
}>;
|
|
1775
1861
|
}, "strip", z.ZodTypeAny, {
|
|
1776
1862
|
label: string;
|
|
@@ -1796,6 +1882,11 @@ declare const updateThemeSettingsOutputSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
1796
1882
|
layout: {
|
|
1797
1883
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1798
1884
|
};
|
|
1885
|
+
typography: {
|
|
1886
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1887
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1888
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1889
|
+
};
|
|
1799
1890
|
};
|
|
1800
1891
|
description?: string | undefined;
|
|
1801
1892
|
}, {
|
|
@@ -1822,6 +1913,11 @@ declare const updateThemeSettingsOutputSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
1822
1913
|
layout?: {
|
|
1823
1914
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1824
1915
|
} | undefined;
|
|
1916
|
+
typography?: {
|
|
1917
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1918
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1919
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1920
|
+
} | undefined;
|
|
1825
1921
|
};
|
|
1826
1922
|
description?: string | undefined;
|
|
1827
1923
|
}>, "many">;
|
|
@@ -1852,6 +1948,11 @@ declare const updateThemeSettingsOutputSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
1852
1948
|
layout: {
|
|
1853
1949
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1854
1950
|
};
|
|
1951
|
+
typography: {
|
|
1952
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1953
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1954
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1955
|
+
};
|
|
1855
1956
|
};
|
|
1856
1957
|
description?: string | undefined;
|
|
1857
1958
|
}[];
|
|
@@ -1882,6 +1983,11 @@ declare const updateThemeSettingsOutputSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
1882
1983
|
layout?: {
|
|
1883
1984
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1884
1985
|
} | undefined;
|
|
1986
|
+
typography?: {
|
|
1987
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1988
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1989
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
1990
|
+
} | undefined;
|
|
1885
1991
|
};
|
|
1886
1992
|
description?: string | undefined;
|
|
1887
1993
|
}[];
|
|
@@ -1912,6 +2018,11 @@ declare const updateThemeSettingsOutputSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
1912
2018
|
layout: {
|
|
1913
2019
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1914
2020
|
};
|
|
2021
|
+
typography: {
|
|
2022
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2023
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2024
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2025
|
+
};
|
|
1915
2026
|
};
|
|
1916
2027
|
description?: string | undefined;
|
|
1917
2028
|
}[];
|
|
@@ -1942,6 +2053,11 @@ declare const updateThemeSettingsOutputSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
1942
2053
|
layout?: {
|
|
1943
2054
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1944
2055
|
} | undefined;
|
|
2056
|
+
typography?: {
|
|
2057
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2058
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2059
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2060
|
+
} | undefined;
|
|
1945
2061
|
};
|
|
1946
2062
|
description?: string | undefined;
|
|
1947
2063
|
}[];
|
|
@@ -1978,6 +2094,11 @@ declare const updateThemeSettingsOutputSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
1978
2094
|
layout: {
|
|
1979
2095
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
1980
2096
|
};
|
|
2097
|
+
typography: {
|
|
2098
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2099
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2100
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2101
|
+
};
|
|
1981
2102
|
};
|
|
1982
2103
|
description?: string | undefined;
|
|
1983
2104
|
}[];
|
|
@@ -2014,6 +2135,11 @@ declare const updateThemeSettingsOutputSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
2014
2135
|
layout?: {
|
|
2015
2136
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
2016
2137
|
} | undefined;
|
|
2138
|
+
typography?: {
|
|
2139
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2140
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2141
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2142
|
+
} | undefined;
|
|
2017
2143
|
};
|
|
2018
2144
|
description?: string | undefined;
|
|
2019
2145
|
}[];
|
|
@@ -2054,6 +2180,11 @@ declare const updateThemeSettingsOutputSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
2054
2180
|
layout: {
|
|
2055
2181
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
2056
2182
|
};
|
|
2183
|
+
typography: {
|
|
2184
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2185
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2186
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2187
|
+
};
|
|
2057
2188
|
};
|
|
2058
2189
|
description?: string | undefined;
|
|
2059
2190
|
}[];
|
|
@@ -2094,6 +2225,11 @@ declare const updateThemeSettingsOutputSchema: z.ZodDiscriminatedUnion<"status",
|
|
|
2094
2225
|
layout?: {
|
|
2095
2226
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
2096
2227
|
} | undefined;
|
|
2228
|
+
typography?: {
|
|
2229
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2230
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2231
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2232
|
+
} | undefined;
|
|
2097
2233
|
};
|
|
2098
2234
|
description?: string | undefined;
|
|
2099
2235
|
}[];
|
|
@@ -2632,6 +2768,7 @@ declare const __testUtils: {
|
|
|
2632
2768
|
}>;
|
|
2633
2769
|
renderDevStarterPageHtml: typeof renderDevStarterPageHtml;
|
|
2634
2770
|
renderDevEditorPageHtml: typeof renderDevEditorPageHtml;
|
|
2771
|
+
readDevThemeLocaleMessages: typeof readDevThemeLocaleMessages;
|
|
2635
2772
|
writeVitePreviewEntries: typeof writeVitePreviewEntries;
|
|
2636
2773
|
resolveDevEditorSlug: typeof resolveDevEditorSlug;
|
|
2637
2774
|
resolveDevStarterSlug: typeof resolveDevStarterSlug;
|
|
@@ -2737,6 +2874,19 @@ declare const __testUtils: {
|
|
|
2737
2874
|
}, {
|
|
2738
2875
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
2739
2876
|
}>>;
|
|
2877
|
+
typography: z.ZodDefault<z.ZodObject<{
|
|
2878
|
+
heading: z.ZodEnum<["system-sans", "system-serif", "system-mono", "geist", "inter", "noto-sans", "nunito-sans", "figtree", "roboto", "raleway", "dm-sans", "public-sans", "outfit", "oxanium", "manrope", "space-grotesk", "montserrat", "ibm-plex-sans", "source-sans-3", "instrument-sans", "noto-serif", "roboto-slab", "merriweather", "lora", "playfair-display", "eb-garamond", "instrument-serif", "geist-mono", "jetbrains-mono", "noto-sans-sc", "noto-serif-sc", "microsoft-yahei", "pingfang-sc", "songti-sc", "kaiti-sc"]>;
|
|
2879
|
+
body: z.ZodEnum<["system-sans", "system-serif", "system-mono", "geist", "inter", "noto-sans", "nunito-sans", "figtree", "roboto", "raleway", "dm-sans", "public-sans", "outfit", "oxanium", "manrope", "space-grotesk", "montserrat", "ibm-plex-sans", "source-sans-3", "instrument-sans", "noto-serif", "roboto-slab", "merriweather", "lora", "playfair-display", "eb-garamond", "instrument-serif", "geist-mono", "jetbrains-mono", "noto-sans-sc", "noto-serif-sc", "microsoft-yahei", "pingfang-sc", "songti-sc", "kaiti-sc"]>;
|
|
2880
|
+
mono: z.ZodEnum<["system-sans", "system-serif", "system-mono", "geist", "inter", "noto-sans", "nunito-sans", "figtree", "roboto", "raleway", "dm-sans", "public-sans", "outfit", "oxanium", "manrope", "space-grotesk", "montserrat", "ibm-plex-sans", "source-sans-3", "instrument-sans", "noto-serif", "roboto-slab", "merriweather", "lora", "playfair-display", "eb-garamond", "instrument-serif", "geist-mono", "jetbrains-mono", "noto-sans-sc", "noto-serif-sc", "microsoft-yahei", "pingfang-sc", "songti-sc", "kaiti-sc"]>;
|
|
2881
|
+
}, "strip", z.ZodTypeAny, {
|
|
2882
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2883
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2884
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2885
|
+
}, {
|
|
2886
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2887
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2888
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2889
|
+
}>>;
|
|
2740
2890
|
}, "strip", z.ZodTypeAny, {
|
|
2741
2891
|
colors: {
|
|
2742
2892
|
secondary: string;
|
|
@@ -2758,6 +2908,11 @@ declare const __testUtils: {
|
|
|
2758
2908
|
layout: {
|
|
2759
2909
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
2760
2910
|
};
|
|
2911
|
+
typography: {
|
|
2912
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2913
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2914
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2915
|
+
};
|
|
2761
2916
|
}, {
|
|
2762
2917
|
colors: {
|
|
2763
2918
|
background: string;
|
|
@@ -2779,6 +2934,11 @@ declare const __testUtils: {
|
|
|
2779
2934
|
layout?: {
|
|
2780
2935
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
2781
2936
|
} | undefined;
|
|
2937
|
+
typography?: {
|
|
2938
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2939
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2940
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2941
|
+
} | undefined;
|
|
2782
2942
|
}>;
|
|
2783
2943
|
}, "strip", z.ZodTypeAny, {
|
|
2784
2944
|
label: string;
|
|
@@ -2804,6 +2964,11 @@ declare const __testUtils: {
|
|
|
2804
2964
|
layout: {
|
|
2805
2965
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
2806
2966
|
};
|
|
2967
|
+
typography: {
|
|
2968
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2969
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2970
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
2971
|
+
};
|
|
2807
2972
|
};
|
|
2808
2973
|
description?: string | undefined;
|
|
2809
2974
|
}, {
|
|
@@ -2830,6 +2995,11 @@ declare const __testUtils: {
|
|
|
2830
2995
|
layout?: {
|
|
2831
2996
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
2832
2997
|
} | undefined;
|
|
2998
|
+
typography?: {
|
|
2999
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3000
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3001
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3002
|
+
} | undefined;
|
|
2833
3003
|
};
|
|
2834
3004
|
description?: string | undefined;
|
|
2835
3005
|
}>, "many">;
|
|
@@ -2860,6 +3030,11 @@ declare const __testUtils: {
|
|
|
2860
3030
|
layout: {
|
|
2861
3031
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
2862
3032
|
};
|
|
3033
|
+
typography: {
|
|
3034
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3035
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3036
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3037
|
+
};
|
|
2863
3038
|
};
|
|
2864
3039
|
description?: string | undefined;
|
|
2865
3040
|
}[];
|
|
@@ -2890,6 +3065,11 @@ declare const __testUtils: {
|
|
|
2890
3065
|
layout?: {
|
|
2891
3066
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
2892
3067
|
} | undefined;
|
|
3068
|
+
typography?: {
|
|
3069
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3070
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3071
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3072
|
+
} | undefined;
|
|
2893
3073
|
};
|
|
2894
3074
|
description?: string | undefined;
|
|
2895
3075
|
}[];
|
|
@@ -2920,6 +3100,11 @@ declare const __testUtils: {
|
|
|
2920
3100
|
layout: {
|
|
2921
3101
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
2922
3102
|
};
|
|
3103
|
+
typography: {
|
|
3104
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3105
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3106
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3107
|
+
};
|
|
2923
3108
|
};
|
|
2924
3109
|
description?: string | undefined;
|
|
2925
3110
|
}[];
|
|
@@ -2950,6 +3135,11 @@ declare const __testUtils: {
|
|
|
2950
3135
|
layout?: {
|
|
2951
3136
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
2952
3137
|
} | undefined;
|
|
3138
|
+
typography?: {
|
|
3139
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3140
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3141
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3142
|
+
} | undefined;
|
|
2953
3143
|
};
|
|
2954
3144
|
description?: string | undefined;
|
|
2955
3145
|
}[];
|
|
@@ -2986,6 +3176,11 @@ declare const __testUtils: {
|
|
|
2986
3176
|
layout: {
|
|
2987
3177
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
2988
3178
|
};
|
|
3179
|
+
typography: {
|
|
3180
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3181
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3182
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3183
|
+
};
|
|
2989
3184
|
};
|
|
2990
3185
|
description?: string | undefined;
|
|
2991
3186
|
}[];
|
|
@@ -3022,6 +3217,11 @@ declare const __testUtils: {
|
|
|
3022
3217
|
layout?: {
|
|
3023
3218
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
3024
3219
|
} | undefined;
|
|
3220
|
+
typography?: {
|
|
3221
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3222
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3223
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3224
|
+
} | undefined;
|
|
3025
3225
|
};
|
|
3026
3226
|
description?: string | undefined;
|
|
3027
3227
|
}[];
|
|
@@ -3060,6 +3260,11 @@ declare const __testUtils: {
|
|
|
3060
3260
|
layout: {
|
|
3061
3261
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
3062
3262
|
};
|
|
3263
|
+
typography: {
|
|
3264
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3265
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3266
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3267
|
+
};
|
|
3063
3268
|
};
|
|
3064
3269
|
description?: string | undefined;
|
|
3065
3270
|
}[];
|
|
@@ -3098,6 +3303,11 @@ declare const __testUtils: {
|
|
|
3098
3303
|
layout?: {
|
|
3099
3304
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
3100
3305
|
} | undefined;
|
|
3306
|
+
typography?: {
|
|
3307
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3308
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3309
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
3310
|
+
} | undefined;
|
|
3101
3311
|
};
|
|
3102
3312
|
description?: string | undefined;
|
|
3103
3313
|
}[];
|
|
@@ -3931,6 +4141,19 @@ declare const __testUtils: {
|
|
|
3931
4141
|
}, {
|
|
3932
4142
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
3933
4143
|
}>>;
|
|
4144
|
+
typography: z.ZodDefault<z.ZodObject<{
|
|
4145
|
+
heading: z.ZodEnum<["system-sans", "system-serif", "system-mono", "geist", "inter", "noto-sans", "nunito-sans", "figtree", "roboto", "raleway", "dm-sans", "public-sans", "outfit", "oxanium", "manrope", "space-grotesk", "montserrat", "ibm-plex-sans", "source-sans-3", "instrument-sans", "noto-serif", "roboto-slab", "merriweather", "lora", "playfair-display", "eb-garamond", "instrument-serif", "geist-mono", "jetbrains-mono", "noto-sans-sc", "noto-serif-sc", "microsoft-yahei", "pingfang-sc", "songti-sc", "kaiti-sc"]>;
|
|
4146
|
+
body: z.ZodEnum<["system-sans", "system-serif", "system-mono", "geist", "inter", "noto-sans", "nunito-sans", "figtree", "roboto", "raleway", "dm-sans", "public-sans", "outfit", "oxanium", "manrope", "space-grotesk", "montserrat", "ibm-plex-sans", "source-sans-3", "instrument-sans", "noto-serif", "roboto-slab", "merriweather", "lora", "playfair-display", "eb-garamond", "instrument-serif", "geist-mono", "jetbrains-mono", "noto-sans-sc", "noto-serif-sc", "microsoft-yahei", "pingfang-sc", "songti-sc", "kaiti-sc"]>;
|
|
4147
|
+
mono: z.ZodEnum<["system-sans", "system-serif", "system-mono", "geist", "inter", "noto-sans", "nunito-sans", "figtree", "roboto", "raleway", "dm-sans", "public-sans", "outfit", "oxanium", "manrope", "space-grotesk", "montserrat", "ibm-plex-sans", "source-sans-3", "instrument-sans", "noto-serif", "roboto-slab", "merriweather", "lora", "playfair-display", "eb-garamond", "instrument-serif", "geist-mono", "jetbrains-mono", "noto-sans-sc", "noto-serif-sc", "microsoft-yahei", "pingfang-sc", "songti-sc", "kaiti-sc"]>;
|
|
4148
|
+
}, "strip", z.ZodTypeAny, {
|
|
4149
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4150
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4151
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4152
|
+
}, {
|
|
4153
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4154
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4155
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4156
|
+
}>>;
|
|
3934
4157
|
}, "strip", z.ZodTypeAny, {
|
|
3935
4158
|
colors: {
|
|
3936
4159
|
secondary: string;
|
|
@@ -3952,6 +4175,11 @@ declare const __testUtils: {
|
|
|
3952
4175
|
layout: {
|
|
3953
4176
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
3954
4177
|
};
|
|
4178
|
+
typography: {
|
|
4179
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4180
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4181
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4182
|
+
};
|
|
3955
4183
|
}, {
|
|
3956
4184
|
colors: {
|
|
3957
4185
|
background: string;
|
|
@@ -3973,6 +4201,11 @@ declare const __testUtils: {
|
|
|
3973
4201
|
layout?: {
|
|
3974
4202
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
3975
4203
|
} | undefined;
|
|
4204
|
+
typography?: {
|
|
4205
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4206
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4207
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4208
|
+
} | undefined;
|
|
3976
4209
|
}>;
|
|
3977
4210
|
}, "strip", z.ZodTypeAny, {
|
|
3978
4211
|
label: string;
|
|
@@ -3998,6 +4231,11 @@ declare const __testUtils: {
|
|
|
3998
4231
|
layout: {
|
|
3999
4232
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
4000
4233
|
};
|
|
4234
|
+
typography: {
|
|
4235
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4236
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4237
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4238
|
+
};
|
|
4001
4239
|
};
|
|
4002
4240
|
description?: string | undefined;
|
|
4003
4241
|
}, {
|
|
@@ -4024,6 +4262,11 @@ declare const __testUtils: {
|
|
|
4024
4262
|
layout?: {
|
|
4025
4263
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
4026
4264
|
} | undefined;
|
|
4265
|
+
typography?: {
|
|
4266
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4267
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4268
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4269
|
+
} | undefined;
|
|
4027
4270
|
};
|
|
4028
4271
|
description?: string | undefined;
|
|
4029
4272
|
}>, "many">;
|
|
@@ -4054,6 +4297,11 @@ declare const __testUtils: {
|
|
|
4054
4297
|
layout: {
|
|
4055
4298
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
4056
4299
|
};
|
|
4300
|
+
typography: {
|
|
4301
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4302
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4303
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4304
|
+
};
|
|
4057
4305
|
};
|
|
4058
4306
|
description?: string | undefined;
|
|
4059
4307
|
}[];
|
|
@@ -4084,6 +4332,11 @@ declare const __testUtils: {
|
|
|
4084
4332
|
layout?: {
|
|
4085
4333
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
4086
4334
|
} | undefined;
|
|
4335
|
+
typography?: {
|
|
4336
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4337
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4338
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4339
|
+
} | undefined;
|
|
4087
4340
|
};
|
|
4088
4341
|
description?: string | undefined;
|
|
4089
4342
|
}[];
|
|
@@ -4114,6 +4367,11 @@ declare const __testUtils: {
|
|
|
4114
4367
|
layout: {
|
|
4115
4368
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
4116
4369
|
};
|
|
4370
|
+
typography: {
|
|
4371
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4372
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4373
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4374
|
+
};
|
|
4117
4375
|
};
|
|
4118
4376
|
description?: string | undefined;
|
|
4119
4377
|
}[];
|
|
@@ -4144,6 +4402,11 @@ declare const __testUtils: {
|
|
|
4144
4402
|
layout?: {
|
|
4145
4403
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
4146
4404
|
} | undefined;
|
|
4405
|
+
typography?: {
|
|
4406
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4407
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4408
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4409
|
+
} | undefined;
|
|
4147
4410
|
};
|
|
4148
4411
|
description?: string | undefined;
|
|
4149
4412
|
}[];
|
|
@@ -4180,6 +4443,11 @@ declare const __testUtils: {
|
|
|
4180
4443
|
layout: {
|
|
4181
4444
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
4182
4445
|
};
|
|
4446
|
+
typography: {
|
|
4447
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4448
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4449
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4450
|
+
};
|
|
4183
4451
|
};
|
|
4184
4452
|
description?: string | undefined;
|
|
4185
4453
|
}[];
|
|
@@ -4216,6 +4484,11 @@ declare const __testUtils: {
|
|
|
4216
4484
|
layout?: {
|
|
4217
4485
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
4218
4486
|
} | undefined;
|
|
4487
|
+
typography?: {
|
|
4488
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4489
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4490
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4491
|
+
} | undefined;
|
|
4219
4492
|
};
|
|
4220
4493
|
description?: string | undefined;
|
|
4221
4494
|
}[];
|
|
@@ -4256,6 +4529,11 @@ declare const __testUtils: {
|
|
|
4256
4529
|
layout: {
|
|
4257
4530
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
4258
4531
|
};
|
|
4532
|
+
typography: {
|
|
4533
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4534
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4535
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4536
|
+
};
|
|
4259
4537
|
};
|
|
4260
4538
|
description?: string | undefined;
|
|
4261
4539
|
}[];
|
|
@@ -4296,6 +4574,11 @@ declare const __testUtils: {
|
|
|
4296
4574
|
layout?: {
|
|
4297
4575
|
contentWidth: "1024px" | "1200px" | "1280px" | "1440px";
|
|
4298
4576
|
} | undefined;
|
|
4577
|
+
typography?: {
|
|
4578
|
+
heading: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4579
|
+
body: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4580
|
+
mono: "system-sans" | "system-serif" | "system-mono" | "geist" | "inter" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "oxanium" | "manrope" | "space-grotesk" | "montserrat" | "ibm-plex-sans" | "source-sans-3" | "instrument-sans" | "noto-serif" | "roboto-slab" | "merriweather" | "lora" | "playfair-display" | "eb-garamond" | "instrument-serif" | "geist-mono" | "jetbrains-mono" | "noto-sans-sc" | "noto-serif-sc" | "microsoft-yahei" | "pingfang-sc" | "songti-sc" | "kaiti-sc";
|
|
4581
|
+
} | undefined;
|
|
4299
4582
|
};
|
|
4300
4583
|
description?: string | undefined;
|
|
4301
4584
|
}[];
|
|
@@ -4321,6 +4604,7 @@ declare function resolveThemePreviewLocale(params: {
|
|
|
4321
4604
|
explicitLang?: string | null;
|
|
4322
4605
|
acceptLanguage?: string;
|
|
4323
4606
|
}): string;
|
|
4607
|
+
declare function readDevThemeLocaleMessages(root: string, locale: string): Promise<ThemeLocaleMessages>;
|
|
4324
4608
|
/**
|
|
4325
4609
|
* Theme-project-scoped renderer bundle. We deliberately resolve `react`,
|
|
4326
4610
|
* `react-dom/server` and `@sudajs/theme-engine/server` through the theme
|
|
@@ -4340,7 +4624,7 @@ interface ThemeRenderer {
|
|
|
4340
4624
|
}
|
|
4341
4625
|
declare function loadThemeScopedRenderer(themeRoot: string): Promise<ThemeRenderer>;
|
|
4342
4626
|
declare function renderDevStarterPageHtml(theme: ValidatedTheme, page: ThemeStarterPage, renderer: ThemeRenderer, locale?: string, preserveLang?: boolean, previewLocaleMessages?: ThemePreviewLocaleMessages, searchParams?: URLSearchParams, options?: ViteDevPreviewOptions): string;
|
|
4343
|
-
declare function renderDevEditorPageHtml(theme: ValidatedTheme, page: ThemeStarterPage, renderer: ThemeRenderer, locale?: string, searchParams?: URLSearchParams, previewLocaleMessages?: ThemePreviewLocaleMessages): string;
|
|
4627
|
+
declare function renderDevEditorPageHtml(theme: ValidatedTheme, page: ThemeStarterPage, renderer: ThemeRenderer, locale?: string, searchParams?: URLSearchParams, previewLocaleMessages?: ThemePreviewLocaleMessages, themeLocaleMessages?: ThemeLocaleMessages): string;
|
|
4344
4628
|
interface ScreenshotOptions extends ThemeRootOptions {
|
|
4345
4629
|
device?: string[] | string;
|
|
4346
4630
|
output?: string;
|