@backstage/plugin-techdocs-module-addons-contrib 1.1.15 → 1.1.16-next.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +18 -2
- package/package.json +19 -10
package/CHANGELOG.md
CHANGED
@@ -1,11 +1,27 @@
|
|
1
1
|
# @backstage/plugin-techdocs-module-addons-contrib
|
2
2
|
|
3
|
-
## 1.1.
|
3
|
+
## 1.1.16-next.1
|
4
4
|
|
5
5
|
### Patch Changes
|
6
6
|
|
7
|
+
- e969dc7: Move `@types/react` to a peer dependency.
|
7
8
|
- Updated dependencies
|
8
|
-
- @backstage/
|
9
|
+
- @backstage/core-components@0.15.1-next.1
|
10
|
+
- @backstage/integration-react@1.2.0-next.1
|
11
|
+
- @backstage/core-plugin-api@1.10.0-next.1
|
12
|
+
- @backstage/plugin-techdocs-react@1.2.9-next.1
|
13
|
+
- @backstage/integration@1.15.1-next.0
|
14
|
+
|
15
|
+
## 1.1.15-next.0
|
16
|
+
|
17
|
+
### Patch Changes
|
18
|
+
|
19
|
+
- Updated dependencies
|
20
|
+
- @backstage/core-components@0.15.1-next.0
|
21
|
+
- @backstage/core-plugin-api@1.10.0-next.0
|
22
|
+
- @backstage/integration@1.15.0
|
23
|
+
- @backstage/integration-react@1.1.32-next.0
|
24
|
+
- @backstage/plugin-techdocs-react@1.2.9-next.0
|
9
25
|
|
10
26
|
## 1.1.14
|
11
27
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@backstage/plugin-techdocs-module-addons-contrib",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.16-next.1",
|
4
4
|
"description": "Plugin module for contributed TechDocs Addons",
|
5
5
|
"backstage": {
|
6
6
|
"role": "frontend-plugin-module",
|
@@ -39,11 +39,11 @@
|
|
39
39
|
"test": "backstage-cli package test"
|
40
40
|
},
|
41
41
|
"dependencies": {
|
42
|
-
"@backstage/core-components": "
|
43
|
-
"@backstage/core-plugin-api": "
|
44
|
-
"@backstage/integration": "
|
45
|
-
"@backstage/integration-react": "
|
46
|
-
"@backstage/plugin-techdocs-react": "
|
42
|
+
"@backstage/core-components": "0.15.1-next.1",
|
43
|
+
"@backstage/core-plugin-api": "1.10.0-next.1",
|
44
|
+
"@backstage/integration": "1.15.1-next.0",
|
45
|
+
"@backstage/integration-react": "1.2.0-next.1",
|
46
|
+
"@backstage/plugin-techdocs-react": "1.2.9-next.1",
|
47
47
|
"@material-ui/core": "^4.12.2",
|
48
48
|
"@material-ui/icons": "^4.9.1",
|
49
49
|
"@react-hookz/web": "^24.0.0",
|
@@ -51,18 +51,27 @@
|
|
51
51
|
"photoswipe": "^5.3.7"
|
52
52
|
},
|
53
53
|
"devDependencies": {
|
54
|
-
"@backstage/cli": "
|
55
|
-
"@backstage/plugin-techdocs-addons-test-utils": "
|
56
|
-
"@backstage/test-utils": "
|
54
|
+
"@backstage/cli": "0.28.0-next.1",
|
55
|
+
"@backstage/plugin-techdocs-addons-test-utils": "1.0.40-next.1",
|
56
|
+
"@backstage/test-utils": "1.6.1-next.1",
|
57
57
|
"@testing-library/dom": "^10.0.0",
|
58
58
|
"@testing-library/jest-dom": "^6.0.0",
|
59
59
|
"@testing-library/react": "^16.0.0",
|
60
|
-
"@types/react": "^
|
60
|
+
"@types/react": "^18.0.0",
|
61
|
+
"react": "^18.0.2",
|
62
|
+
"react-dom": "^18.0.2",
|
63
|
+
"react-router-dom": "^6.3.0"
|
61
64
|
},
|
62
65
|
"peerDependencies": {
|
66
|
+
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
63
67
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
64
68
|
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
65
69
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
66
70
|
},
|
71
|
+
"peerDependenciesMeta": {
|
72
|
+
"@types/react": {
|
73
|
+
"optional": true
|
74
|
+
}
|
75
|
+
},
|
67
76
|
"module": "./dist/index.esm.js"
|
68
77
|
}
|