@backstage/plugin-techdocs 1.1.1-next.0 → 1.1.1-next.1
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 +13 -0
- package/dist/esm/{TechDocsCustomHome-7836f59f.esm.js → TechDocsCustomHome-e3ec7aed.esm.js} +2 -2
- package/dist/esm/{TechDocsCustomHome-7836f59f.esm.js.map → TechDocsCustomHome-e3ec7aed.esm.js.map} +1 -1
- package/dist/esm/{index-3d3f8718.esm.js → index-76cc1cd7.esm.js} +10 -9
- package/dist/esm/index-76cc1cd7.esm.js.map +1 -0
- package/dist/esm/{index-28e41621.esm.js → index-998ae86b.esm.js} +2 -2
- package/dist/esm/index-998ae86b.esm.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.js +1 -1
- package/package.json +12 -12
- package/dist/esm/index-28e41621.esm.js.map +0 -1
- package/dist/esm/index-3d3f8718.esm.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ declare type TechDocsReaderPageRenderFunction = ({ techdocsMetadataValue, entity
|
|
|
30
30
|
* Utility API reference for the {@link TechDocsStorageApi}.
|
|
31
31
|
*
|
|
32
32
|
* @public
|
|
33
|
+
* @deprecated Import from `@backstage/plugin-techdocs-react` instead
|
|
33
34
|
*/
|
|
34
35
|
declare const techdocsStorageApiRef: _backstage_core_plugin_api.ApiRef<TechDocsStorageApi>;
|
|
35
36
|
/**
|
|
@@ -43,12 +44,14 @@ declare const techdocsApiRef: _backstage_core_plugin_api.ApiRef<TechDocsApi>;
|
|
|
43
44
|
* The outcome of a docs sync operation.
|
|
44
45
|
*
|
|
45
46
|
* @public
|
|
47
|
+
* @deprecated Import from `@backstage/plugin-techdocs-react` instead
|
|
46
48
|
*/
|
|
47
49
|
declare type SyncResult = 'cached' | 'updated';
|
|
48
50
|
/**
|
|
49
51
|
* API which talks to TechDocs storage to fetch files to render.
|
|
50
52
|
*
|
|
51
53
|
* @public
|
|
54
|
+
* @deprecated Import from `@backstage/plugin-techdocs-react` instead
|
|
52
55
|
*/
|
|
53
56
|
interface TechDocsStorageApi {
|
|
54
57
|
getApiOrigin(): Promise<string>;
|
package/dist/index.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { y as DefaultTechDocsHome, a as DocsCardGrid, D as DocsTable, C as EmbeddedDocsRouter, v as EntityListDocsGrid, x as EntityListDocsTable, E as EntityTechdocsContent, R as Reader, B as Router, j as TechDocsClient, d as TechDocsCustomHome, e as TechDocsIndexPage, T as TechDocsPageWrapper, z as TechDocsPicker, c as TechDocsReaderLayout, g as TechDocsReaderPage, m as TechDocsReaderPageContent, l as TechDocsReaderPageHeader, p as TechDocsReaderPageSubheader, n as TechDocsReaderProvider, s as TechDocsSearch, r as TechDocsSearchResultListItem, q as TechDocsStateIndicator, k as TechDocsStorageClient, f as TechdocsPage, A as isTechDocsAvailable, t as plugin, i as techdocsApiRef, t as techdocsPlugin, h as techdocsStorageApiRef, u as useTechDocsReader, o as useTechDocsReaderDom, w as withTechDocsReaderProvider } from './esm/index-
|
|
1
|
+
export { y as DefaultTechDocsHome, a as DocsCardGrid, D as DocsTable, C as EmbeddedDocsRouter, v as EntityListDocsGrid, x as EntityListDocsTable, E as EntityTechdocsContent, R as Reader, B as Router, j as TechDocsClient, d as TechDocsCustomHome, e as TechDocsIndexPage, T as TechDocsPageWrapper, z as TechDocsPicker, c as TechDocsReaderLayout, g as TechDocsReaderPage, m as TechDocsReaderPageContent, l as TechDocsReaderPageHeader, p as TechDocsReaderPageSubheader, n as TechDocsReaderProvider, s as TechDocsSearch, r as TechDocsSearchResultListItem, q as TechDocsStateIndicator, k as TechDocsStorageClient, f as TechdocsPage, A as isTechDocsAvailable, t as plugin, i as techdocsApiRef, t as techdocsPlugin, h as techdocsStorageApiRef, u as useTechDocsReader, o as useTechDocsReaderDom, w as withTechDocsReaderProvider } from './esm/index-76cc1cd7.esm.js';
|
|
2
2
|
import '@backstage/core-plugin-api';
|
|
3
3
|
import '@backstage/errors';
|
|
4
4
|
import 'event-source-polyfill';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs",
|
|
3
3
|
"description": "The Backstage plugin that renders technical documentation for your components",
|
|
4
|
-
"version": "1.1.1-next.
|
|
4
|
+
"version": "1.1.1-next.1",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@backstage/catalog-model": "^1.0.1",
|
|
39
39
|
"@backstage/config": "^1.0.0",
|
|
40
|
-
"@backstage/core-components": "^0.9.
|
|
41
|
-
"@backstage/core-plugin-api": "^1.0.
|
|
40
|
+
"@backstage/core-components": "^0.9.4-next.0",
|
|
41
|
+
"@backstage/core-plugin-api": "^1.0.2-next.0",
|
|
42
42
|
"@backstage/errors": "^1.0.0",
|
|
43
43
|
"@backstage/integration": "^1.2.0-next.0",
|
|
44
|
-
"@backstage/integration-react": "^1.1.0-next.
|
|
45
|
-
"@backstage/plugin-catalog-react": "^1.1.0-next.
|
|
46
|
-
"@backstage/plugin-search-react": "^0.
|
|
47
|
-
"@backstage/plugin-techdocs-react": "^0.1.1-next.
|
|
44
|
+
"@backstage/integration-react": "^1.1.0-next.1",
|
|
45
|
+
"@backstage/plugin-catalog-react": "^1.1.0-next.1",
|
|
46
|
+
"@backstage/plugin-search-react": "^0.2.0-next.1",
|
|
47
|
+
"@backstage/plugin-techdocs-react": "^0.1.1-next.1",
|
|
48
48
|
"@backstage/theme": "^0.2.15",
|
|
49
49
|
"@material-ui/core": "^4.12.2",
|
|
50
50
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -67,10 +67,10 @@
|
|
|
67
67
|
"react-dom": "^16.13.1 || ^17.0.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@backstage/cli": "^0.17.1-next.
|
|
71
|
-
"@backstage/core-app-api": "^1.0.
|
|
72
|
-
"@backstage/dev-utils": "^1.0.2-next.
|
|
73
|
-
"@backstage/test-utils": "^1.0
|
|
70
|
+
"@backstage/cli": "^0.17.1-next.1",
|
|
71
|
+
"@backstage/core-app-api": "^1.0.2-next.0",
|
|
72
|
+
"@backstage/dev-utils": "^1.0.2-next.1",
|
|
73
|
+
"@backstage/test-utils": "^1.1.0-next.1",
|
|
74
74
|
"@testing-library/jest-dom": "^5.10.1",
|
|
75
75
|
"@testing-library/react": "^12.1.3",
|
|
76
76
|
"@testing-library/react-hooks": "^8.0.0",
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
"config.d.ts"
|
|
89
89
|
],
|
|
90
90
|
"configSchema": "config.d.ts",
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "0b3df66a238c66a5498dab85b1ed85a8607289f1"
|
|
92
92
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index-28e41621.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|