@docusaurus/plugin-content-docs 0.0.0-4557 → 0.0.0-4562

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docusaurus/plugin-content-docs",
3
- "version": "0.0.0-4557",
3
+ "version": "0.0.0-4562",
4
4
  "description": "Docs plugin for Docusaurus.",
5
5
  "main": "lib/index.js",
6
6
  "exports": {
@@ -23,11 +23,11 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
- "@docusaurus/core": "0.0.0-4557",
27
- "@docusaurus/logger": "0.0.0-4557",
28
- "@docusaurus/mdx-loader": "0.0.0-4557",
29
- "@docusaurus/utils": "0.0.0-4557",
30
- "@docusaurus/utils-validation": "0.0.0-4557",
26
+ "@docusaurus/core": "0.0.0-4562",
27
+ "@docusaurus/logger": "0.0.0-4562",
28
+ "@docusaurus/mdx-loader": "0.0.0-4562",
29
+ "@docusaurus/utils": "0.0.0-4562",
30
+ "@docusaurus/utils-validation": "0.0.0-4562",
31
31
  "combine-promises": "^1.1.0",
32
32
  "fs-extra": "^10.0.0",
33
33
  "import-fresh": "^3.2.2",
@@ -40,8 +40,8 @@
40
40
  "webpack": "^5.68.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@docusaurus/module-type-aliases": "0.0.0-4557",
44
- "@docusaurus/types": "0.0.0-4557",
43
+ "@docusaurus/module-type-aliases": "0.0.0-4562",
44
+ "@docusaurus/types": "0.0.0-4562",
45
45
  "@types/js-yaml": "^4.0.0",
46
46
  "@types/picomatch": "^2.2.1",
47
47
  "commander": "^5.1.0",
@@ -50,12 +50,11 @@
50
50
  "utility-types": "^3.10.0"
51
51
  },
52
52
  "peerDependencies": {
53
- "@babel/core": "^7.0.0",
54
53
  "react": "^16.8.4 || ^17.0.0",
55
54
  "react-dom": "^16.8.4 || ^17.0.0"
56
55
  },
57
56
  "engines": {
58
57
  "node": ">=14"
59
58
  },
60
- "gitHead": "44665d1da0bba9d7b69de53961641cd88b4c663e"
59
+ "gitHead": "dc4c1950adae154c00ca528229510f2c91222656"
61
60
  }
@@ -209,26 +209,6 @@ declare module '@theme/DocItem' {
209
209
  export default DocItem;
210
210
  }
211
211
 
212
- declare module '@theme/DocCard' {
213
- import type {PropSidebarItem} from '@docusaurus/plugin-content-docs';
214
-
215
- export interface Props {
216
- readonly item: PropSidebarItem;
217
- }
218
-
219
- export default function DocCard(props: Props): JSX.Element;
220
- }
221
-
222
- declare module '@theme/DocCardList' {
223
- import type {PropSidebarItem} from '@docusaurus/plugin-content-docs';
224
-
225
- export interface Props {
226
- readonly items: PropSidebarItem[];
227
- }
228
-
229
- export default function DocCardList(props: Props): JSX.Element;
230
- }
231
-
232
212
  declare module '@theme/DocCategoryGeneratedIndexPage' {
233
213
  import type {PropCategoryGeneratedIndex} from '@docusaurus/plugin-content-docs';
234
214
 
@@ -241,12 +221,6 @@ declare module '@theme/DocCategoryGeneratedIndexPage' {
241
221
  ): JSX.Element;
242
222
  }
243
223
 
244
- declare module '@theme/DocItemFooter' {
245
- import type {Props} from '@theme/DocItem';
246
-
247
- export default function DocItemFooter(props: Props): JSX.Element;
248
- }
249
-
250
224
  declare module '@theme/DocTagsListPage' {
251
225
  import type {PropTagsListPage} from '@docusaurus/plugin-content-docs';
252
226
 
@@ -263,22 +237,6 @@ declare module '@theme/DocTagDocListPage' {
263
237
  export default function DocTagDocListPage(props: Props): JSX.Element;
264
238
  }
265
239
 
266
- declare module '@theme/DocVersionBanner' {
267
- export interface Props {
268
- readonly className?: string;
269
- }
270
-
271
- export default function DocVersionBanner(props: Props): JSX.Element;
272
- }
273
-
274
- declare module '@theme/DocVersionBadge' {
275
- export interface Props {
276
- readonly className?: string;
277
- }
278
-
279
- export default function DocVersionBadge(props: Props): JSX.Element;
280
- }
281
-
282
240
  declare module '@theme/DocPage' {
283
241
  import type {PropVersionMetadata} from '@docusaurus/plugin-content-docs';
284
242
  import type {DocumentRoute} from '@theme/DocItem';
@@ -297,21 +255,6 @@ declare module '@theme/DocPage' {
297
255
  export default DocPage;
298
256
  }
299
257
 
300
- declare module '@theme/Seo' {
301
- import type {ReactNode} from 'react';
302
-
303
- export interface Props {
304
- readonly title?: string;
305
- readonly description?: string;
306
- readonly keywords?: readonly string[] | string;
307
- readonly image?: string;
308
- readonly children?: ReactNode;
309
- }
310
-
311
- const Seo: (props: Props) => JSX.Element;
312
- export default Seo;
313
- }
314
-
315
258
  // TODO until TS supports exports field... hope it's in 4.6
316
259
  declare module '@docusaurus/plugin-content-docs/client' {
317
260
  export type ActivePlugin = {