fumadocs-core 13.4.9 → 13.4.10

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.
@@ -140,14 +140,14 @@ declare function loader<Options extends LoaderOptions>(options: Options): Loader
140
140
  }>;
141
141
 
142
142
  interface MetaData {
143
- icon?: string;
144
- title?: string;
145
- root?: boolean;
146
- pages?: string[];
147
- defaultOpen?: boolean;
143
+ icon?: string | undefined;
144
+ title?: string | undefined;
145
+ root?: boolean | undefined;
146
+ pages?: string[] | undefined;
147
+ defaultOpen?: boolean | undefined;
148
148
  }
149
149
  interface PageData {
150
- icon?: string;
150
+ icon?: string | undefined;
151
151
  title: string;
152
152
  }
153
153
  type InferPageType<Utils extends LoaderOutput<any>> = Utils extends LoaderOutput<infer Config> ? Page<Config['source']['pageData']> : never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fumadocs-core",
3
- "version": "13.4.9",
3
+ "version": "13.4.10",
4
4
  "description": "The library for building a documentation website in Next.js",
5
5
  "keywords": [
6
6
  "NextJs",