@backstage/plugin-techdocs 0.0.0-nightly-20241114023301 → 0.0.0-nightly-20241116023418
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/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20241116023418
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -13,21 +13,21 @@
|
|
|
13
13
|
- 4a2f73a: Fix an issue that caused the current documentation page to be re-rendered when navigating to
|
|
14
14
|
another one.
|
|
15
15
|
- Updated dependencies
|
|
16
|
-
- @backstage/theme@0.0.0-nightly-
|
|
17
|
-
- @backstage/core-components@0.0.0-nightly-
|
|
18
|
-
- @backstage/plugin-catalog-react@0.0.0-nightly-
|
|
19
|
-
- @backstage/plugin-techdocs-react@0.0.0-nightly-
|
|
16
|
+
- @backstage/theme@0.0.0-nightly-20241116023418
|
|
17
|
+
- @backstage/core-components@0.0.0-nightly-20241116023418
|
|
18
|
+
- @backstage/plugin-catalog-react@0.0.0-nightly-20241116023418
|
|
19
|
+
- @backstage/plugin-techdocs-react@0.0.0-nightly-20241116023418
|
|
20
20
|
- @backstage/catalog-model@1.7.0
|
|
21
21
|
- @backstage/config@1.2.0
|
|
22
|
-
- @backstage/core-compat-api@0.0.0-nightly-
|
|
22
|
+
- @backstage/core-compat-api@0.0.0-nightly-20241116023418
|
|
23
23
|
- @backstage/core-plugin-api@1.10.0
|
|
24
24
|
- @backstage/errors@1.2.4
|
|
25
|
-
- @backstage/frontend-plugin-api@0.0.0-nightly-
|
|
25
|
+
- @backstage/frontend-plugin-api@0.0.0-nightly-20241116023418
|
|
26
26
|
- @backstage/integration@1.15.1
|
|
27
27
|
- @backstage/integration-react@1.2.0
|
|
28
|
-
- @backstage/plugin-auth-react@0.0.0-nightly-
|
|
29
|
-
- @backstage/plugin-search-common@
|
|
30
|
-
- @backstage/plugin-search-react@0.0.0-nightly-
|
|
28
|
+
- @backstage/plugin-auth-react@0.0.0-nightly-20241116023418
|
|
29
|
+
- @backstage/plugin-search-common@0.0.0-nightly-20241116023418
|
|
30
|
+
- @backstage/plugin-search-react@0.0.0-nightly-20241116023418
|
|
31
31
|
- @backstage/plugin-techdocs-common@0.1.0
|
|
32
32
|
|
|
33
33
|
## 1.11.1-next.3
|
package/dist/alpha.esm.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import LibraryBooks from '@material-ui/icons/LibraryBooks';
|
|
3
|
-
import { ApiBlueprint, PageBlueprint,
|
|
4
|
-
import { createApiFactory,
|
|
3
|
+
import { ApiBlueprint, PageBlueprint, coreExtensionData, createExtensionInput, createExtension, NavItemBlueprint, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
4
|
+
import { createApiFactory, fetchApiRef, discoveryApiRef, configApiRef } from '@backstage/core-plugin-api';
|
|
5
5
|
import { compatWrapper, convertLegacyRouteRef, convertLegacyRouteRefs } from '@backstage/core-compat-api';
|
|
6
6
|
import { EntityContentBlueprint } from '@backstage/plugin-catalog-react/alpha';
|
|
7
7
|
import { SearchResultListItemBlueprint } from '@backstage/plugin-search-react/alpha';
|
package/dist/client.esm.js
CHANGED
package/dist/plugin.esm.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { techdocsStorageApiRef, techdocsApiRef } from '@backstage/plugin-techdocs-react';
|
|
2
2
|
import { TechDocsStorageClient, TechDocsClient } from './client.esm.js';
|
|
3
|
-
import {
|
|
4
|
-
import { createPlugin, createApiFactory,
|
|
3
|
+
import { rootCatalogDocsRouteRef, rootDocsRouteRef, rootRouteRef } from './routes.esm.js';
|
|
4
|
+
import { createPlugin, createApiFactory, fetchApiRef, discoveryApiRef, configApiRef, createRoutableExtension } from '@backstage/core-plugin-api';
|
|
5
5
|
import { createSearchResultListItemExtension } from '@backstage/plugin-search-react';
|
|
6
6
|
|
|
7
7
|
const techdocsPlugin = createPlugin({
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import DOMPurify from 'dompurify';
|
|
2
|
-
import {
|
|
2
|
+
import { useMemo, useCallback } from 'react';
|
|
3
3
|
import { useApi, configApiRef } from '@backstage/core-plugin-api';
|
|
4
4
|
import { removeUnsafeLinks } from './hooks/links.esm.js';
|
|
5
5
|
import { removeUnsafeIframes } from './hooks/iframes.esm.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20241116023418",
|
|
4
4
|
"description": "The Backstage plugin that renders technical documentation for your components",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -70,20 +70,20 @@
|
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"@backstage/catalog-model": "1.7.0",
|
|
72
72
|
"@backstage/config": "1.2.0",
|
|
73
|
-
"@backstage/core-compat-api": "0.0.0-nightly-
|
|
74
|
-
"@backstage/core-components": "0.0.0-nightly-
|
|
73
|
+
"@backstage/core-compat-api": "0.0.0-nightly-20241116023418",
|
|
74
|
+
"@backstage/core-components": "0.0.0-nightly-20241116023418",
|
|
75
75
|
"@backstage/core-plugin-api": "1.10.0",
|
|
76
76
|
"@backstage/errors": "1.2.4",
|
|
77
|
-
"@backstage/frontend-plugin-api": "0.0.0-nightly-
|
|
77
|
+
"@backstage/frontend-plugin-api": "0.0.0-nightly-20241116023418",
|
|
78
78
|
"@backstage/integration": "1.15.1",
|
|
79
79
|
"@backstage/integration-react": "1.2.0",
|
|
80
|
-
"@backstage/plugin-auth-react": "0.0.0-nightly-
|
|
81
|
-
"@backstage/plugin-catalog-react": "0.0.0-nightly-
|
|
82
|
-
"@backstage/plugin-search-common": "
|
|
83
|
-
"@backstage/plugin-search-react": "0.0.0-nightly-
|
|
80
|
+
"@backstage/plugin-auth-react": "0.0.0-nightly-20241116023418",
|
|
81
|
+
"@backstage/plugin-catalog-react": "0.0.0-nightly-20241116023418",
|
|
82
|
+
"@backstage/plugin-search-common": "0.0.0-nightly-20241116023418",
|
|
83
|
+
"@backstage/plugin-search-react": "0.0.0-nightly-20241116023418",
|
|
84
84
|
"@backstage/plugin-techdocs-common": "0.1.0",
|
|
85
|
-
"@backstage/plugin-techdocs-react": "0.0.0-nightly-
|
|
86
|
-
"@backstage/theme": "0.0.0-nightly-
|
|
85
|
+
"@backstage/plugin-techdocs-react": "0.0.0-nightly-20241116023418",
|
|
86
|
+
"@backstage/theme": "0.0.0-nightly-20241116023418",
|
|
87
87
|
"@material-ui/core": "^4.12.2",
|
|
88
88
|
"@material-ui/icons": "^4.9.1",
|
|
89
89
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -97,11 +97,11 @@
|
|
|
97
97
|
"react-use": "^17.2.4"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
|
-
"@backstage/cli": "0.0.0-nightly-
|
|
100
|
+
"@backstage/cli": "0.0.0-nightly-20241116023418",
|
|
101
101
|
"@backstage/core-app-api": "1.15.1",
|
|
102
|
-
"@backstage/dev-utils": "0.0.0-nightly-
|
|
103
|
-
"@backstage/plugin-techdocs-module-addons-contrib": "0.0.0-nightly-
|
|
104
|
-
"@backstage/test-utils": "0.0.0-nightly-
|
|
102
|
+
"@backstage/dev-utils": "0.0.0-nightly-20241116023418",
|
|
103
|
+
"@backstage/plugin-techdocs-module-addons-contrib": "0.0.0-nightly-20241116023418",
|
|
104
|
+
"@backstage/test-utils": "0.0.0-nightly-20241116023418",
|
|
105
105
|
"@testing-library/dom": "^10.0.0",
|
|
106
106
|
"@testing-library/jest-dom": "^6.0.0",
|
|
107
107
|
"@testing-library/react": "^16.0.0",
|