@rspress/shared 1.16.0 → 1.16.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.d.ts +5 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -410,6 +410,10 @@ interface UserConfig<ThemeConfig = Config$1> {
410
410
  dark: string;
411
411
  light: string;
412
412
  };
413
+ /**
414
+ * The text of the logo in nav bar.
415
+ */
416
+ logoText?: string;
413
417
  /**
414
418
  * Base path of the site.
415
419
  */
@@ -533,6 +537,7 @@ interface SiteData<ThemeConfig = NormalizedConfig> {
533
537
  dark: string;
534
538
  light: string;
535
539
  };
540
+ logoText: string;
536
541
  pages: BaseRuntimePageInfo[];
537
542
  search: SearchOptions;
538
543
  ssg: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rspress/shared",
3
- "version": "1.16.0",
3
+ "version": "1.16.1",
4
4
  "types": "./dist/index.d.ts",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",