docusaurus-plugin-typedoc 1.0.0-next.21 → 1.0.0-next.22

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/sidebar.js +1 -1
  2. package/package.json +2 -2
package/dist/sidebar.js CHANGED
@@ -19,7 +19,7 @@ function getNavigationItem(navigationItem, basePath, filteredIds, numberPrefixPa
19
19
  return {
20
20
  type: 'category',
21
21
  label: navigationItem.title,
22
- items: getSidebar(navigationItem.children, basePath, filteredIds),
22
+ items: getSidebar(navigationItem.children, basePath, filteredIds, numberPrefixParser),
23
23
  ...(id && { link: { type: 'doc', id } }),
24
24
  };
25
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docusaurus-plugin-typedoc",
3
- "version": "1.0.0-next.21",
3
+ "version": "1.0.0-next.22",
4
4
  "description": "A Docusaurus plugin to build API documentation with TypeDoc.",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "homepage": "https://github.com/tgreyuk/typedoc-plugin-markdown/tree/master/packages/docusaurus-plugin-typedoc",
18
18
  "peerDependencies": {
19
- "typedoc-plugin-markdown": ">=4.0.0-next.26"
19
+ "typedoc-plugin-markdown": ">=4.0.0-next.28"
20
20
  },
21
21
  "scripts": {
22
22
  "lint": "eslint ./src --ext .ts",