@docusaurus/plugin-content-docs 0.0.0-4561 → 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 +9 -9
- package/src/plugin-content-docs.d.ts +0 -57
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docusaurus/plugin-content-docs",
|
|
3
|
-
"version": "0.0.0-
|
|
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-
|
|
27
|
-
"@docusaurus/logger": "0.0.0-
|
|
28
|
-
"@docusaurus/mdx-loader": "0.0.0-
|
|
29
|
-
"@docusaurus/utils": "0.0.0-
|
|
30
|
-
"@docusaurus/utils-validation": "0.0.0-
|
|
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-
|
|
44
|
-
"@docusaurus/types": "0.0.0-
|
|
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",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=14"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "dc4c1950adae154c00ca528229510f2c91222656"
|
|
60
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 = {
|