@backstage/plugin-techdocs 0.0.0-nightly-20240722022006 → 0.0.0-nightly-20240725021815
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 +32 -10
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +6 -0
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,25 +1,47 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20240725021815
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- 6349099: Added config input type to the extensions
|
|
7
8
|
- Updated dependencies
|
|
8
|
-
- @backstage/frontend-plugin-api@0.0.0-nightly-
|
|
9
|
-
- @backstage/plugin-catalog-react@0.0.0-nightly-
|
|
10
|
-
- @backstage/
|
|
9
|
+
- @backstage/frontend-plugin-api@0.0.0-nightly-20240725021815
|
|
10
|
+
- @backstage/plugin-catalog-react@0.0.0-nightly-20240725021815
|
|
11
|
+
- @backstage/plugin-search-react@0.0.0-nightly-20240725021815
|
|
12
|
+
- @backstage/core-components@0.0.0-nightly-20240725021815
|
|
13
|
+
- @backstage/integration@0.0.0-nightly-20240725021815
|
|
14
|
+
- @backstage/plugin-auth-react@0.0.0-nightly-20240725021815
|
|
15
|
+
- @backstage/core-compat-api@0.0.0-nightly-20240725021815
|
|
11
16
|
- @backstage/catalog-model@1.5.0
|
|
12
17
|
- @backstage/config@1.2.0
|
|
13
|
-
- @backstage/core-compat-api@0.0.0-nightly-20240722022006
|
|
14
|
-
- @backstage/core-components@0.14.9
|
|
15
18
|
- @backstage/core-plugin-api@1.9.3
|
|
16
19
|
- @backstage/errors@1.2.4
|
|
17
|
-
- @backstage/integration-react@0.0.0-nightly-
|
|
20
|
+
- @backstage/integration-react@0.0.0-nightly-20240725021815
|
|
18
21
|
- @backstage/theme@0.5.6
|
|
19
|
-
- @backstage/plugin-auth-react@0.1.4
|
|
20
22
|
- @backstage/plugin-search-common@1.2.13
|
|
21
|
-
- @backstage/plugin-
|
|
22
|
-
|
|
23
|
+
- @backstage/plugin-techdocs-react@0.0.0-nightly-20240725021815
|
|
24
|
+
|
|
25
|
+
## 1.10.8-next.0
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
- @backstage/frontend-plugin-api@0.6.8-next.0
|
|
31
|
+
- @backstage/plugin-catalog-react@1.12.3-next.0
|
|
32
|
+
- @backstage/plugin-search-react@1.7.14-next.0
|
|
33
|
+
- @backstage/core-components@0.14.10-next.0
|
|
34
|
+
- @backstage/integration@1.14.0-next.0
|
|
35
|
+
- @backstage/plugin-auth-react@0.1.5-next.0
|
|
36
|
+
- @backstage/catalog-model@1.5.0
|
|
37
|
+
- @backstage/config@1.2.0
|
|
38
|
+
- @backstage/core-compat-api@0.2.8-next.0
|
|
39
|
+
- @backstage/core-plugin-api@1.9.3
|
|
40
|
+
- @backstage/errors@1.2.4
|
|
41
|
+
- @backstage/integration-react@1.1.30-next.0
|
|
42
|
+
- @backstage/theme@0.5.6
|
|
43
|
+
- @backstage/plugin-search-common@1.2.13
|
|
44
|
+
- @backstage/plugin-techdocs-react@1.2.7-next.0
|
|
23
45
|
|
|
24
46
|
## 1.10.7
|
|
25
47
|
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -7,6 +7,12 @@ declare const techDocsSearchResultListItemExtension: _backstage_frontend_plugin_
|
|
|
7
7
|
asListItem: boolean;
|
|
8
8
|
asLink: boolean;
|
|
9
9
|
title?: string | undefined;
|
|
10
|
+
}, {
|
|
11
|
+
lineClamp: number;
|
|
12
|
+
noTrack: boolean;
|
|
13
|
+
asListItem: boolean;
|
|
14
|
+
asLink: boolean;
|
|
15
|
+
title?: string | undefined;
|
|
10
16
|
}>;
|
|
11
17
|
/** @alpha */
|
|
12
18
|
declare const _default: _backstage_frontend_plugin_api.BackstagePlugin<{
|
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-20240725021815",
|
|
4
4
|
"description": "The Backstage plugin that renders technical documentation for your components",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -59,18 +59,18 @@
|
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@backstage/catalog-model": "^1.5.0",
|
|
61
61
|
"@backstage/config": "^1.2.0",
|
|
62
|
-
"@backstage/core-compat-api": "^0.0.0-nightly-
|
|
63
|
-
"@backstage/core-components": "^0.
|
|
62
|
+
"@backstage/core-compat-api": "^0.0.0-nightly-20240725021815",
|
|
63
|
+
"@backstage/core-components": "^0.0.0-nightly-20240725021815",
|
|
64
64
|
"@backstage/core-plugin-api": "^1.9.3",
|
|
65
65
|
"@backstage/errors": "^1.2.4",
|
|
66
|
-
"@backstage/frontend-plugin-api": "^0.0.0-nightly-
|
|
67
|
-
"@backstage/integration": "^0.0.0-nightly-
|
|
68
|
-
"@backstage/integration-react": "^0.0.0-nightly-
|
|
69
|
-
"@backstage/plugin-auth-react": "^0.
|
|
70
|
-
"@backstage/plugin-catalog-react": "^0.0.0-nightly-
|
|
66
|
+
"@backstage/frontend-plugin-api": "^0.0.0-nightly-20240725021815",
|
|
67
|
+
"@backstage/integration": "^0.0.0-nightly-20240725021815",
|
|
68
|
+
"@backstage/integration-react": "^0.0.0-nightly-20240725021815",
|
|
69
|
+
"@backstage/plugin-auth-react": "^0.0.0-nightly-20240725021815",
|
|
70
|
+
"@backstage/plugin-catalog-react": "^0.0.0-nightly-20240725021815",
|
|
71
71
|
"@backstage/plugin-search-common": "^1.2.13",
|
|
72
|
-
"@backstage/plugin-search-react": "^0.0.0-nightly-
|
|
73
|
-
"@backstage/plugin-techdocs-react": "^
|
|
72
|
+
"@backstage/plugin-search-react": "^0.0.0-nightly-20240725021815",
|
|
73
|
+
"@backstage/plugin-techdocs-react": "^0.0.0-nightly-20240725021815",
|
|
74
74
|
"@backstage/theme": "^0.5.6",
|
|
75
75
|
"@material-ui/core": "^4.12.2",
|
|
76
76
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -86,11 +86,11 @@
|
|
|
86
86
|
"react-use": "^17.2.4"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
90
|
-
"@backstage/core-app-api": "^
|
|
91
|
-
"@backstage/dev-utils": "^0.0.0-nightly-
|
|
92
|
-
"@backstage/plugin-techdocs-module-addons-contrib": "^0.0.0-nightly-
|
|
93
|
-
"@backstage/test-utils": "^
|
|
89
|
+
"@backstage/cli": "^0.0.0-nightly-20240725021815",
|
|
90
|
+
"@backstage/core-app-api": "^0.0.0-nightly-20240725021815",
|
|
91
|
+
"@backstage/dev-utils": "^0.0.0-nightly-20240725021815",
|
|
92
|
+
"@backstage/plugin-techdocs-module-addons-contrib": "^0.0.0-nightly-20240725021815",
|
|
93
|
+
"@backstage/test-utils": "^0.0.0-nightly-20240725021815",
|
|
94
94
|
"@testing-library/dom": "^10.0.0",
|
|
95
95
|
"@testing-library/jest-dom": "^6.0.0",
|
|
96
96
|
"@testing-library/react": "^15.0.0",
|