@backstage/plugin-techdocs-react 0.0.0-nightly-20241001023625 → 0.0.0-nightly-20241003023252

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/CHANGELOG.md +17 -4
  2. package/package.json +18 -9
package/CHANGELOG.md CHANGED
@@ -1,15 +1,28 @@
1
1
  # @backstage/plugin-techdocs-react
2
2
 
3
- ## 0.0.0-nightly-20241001023625
3
+ ## 0.0.0-nightly-20241003023252
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - e969dc7: Move `@types/react` to a peer dependency.
7
8
  - Updated dependencies
8
- - @backstage/core-components@0.0.0-nightly-20241001023625
9
- - @backstage/core-plugin-api@0.0.0-nightly-20241001023625
9
+ - @backstage/core-components@0.0.0-nightly-20241003023252
10
+ - @backstage/core-plugin-api@0.0.0-nightly-20241003023252
11
+ - @backstage/version-bridge@0.0.0-nightly-20241003023252
12
+ - @backstage/catalog-model@1.7.0
13
+ - @backstage/config@1.2.0
14
+
15
+ ## 1.2.9-next.1
16
+
17
+ ### Patch Changes
18
+
19
+ - e969dc7: Move `@types/react` to a peer dependency.
20
+ - Updated dependencies
21
+ - @backstage/core-components@0.15.1-next.1
22
+ - @backstage/core-plugin-api@1.10.0-next.1
23
+ - @backstage/version-bridge@1.0.10-next.0
10
24
  - @backstage/catalog-model@1.7.0
11
25
  - @backstage/config@1.2.0
12
- - @backstage/version-bridge@1.0.9
13
26
 
14
27
  ## 1.2.9-next.0
15
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-techdocs-react",
3
- "version": "0.0.0-nightly-20241001023625",
3
+ "version": "0.0.0-nightly-20241003023252",
4
4
  "description": "Shared frontend utilities for TechDocs and Addons",
5
5
  "backstage": {
6
6
  "role": "web-library",
@@ -47,28 +47,37 @@
47
47
  "dependencies": {
48
48
  "@backstage/catalog-model": "1.7.0",
49
49
  "@backstage/config": "1.2.0",
50
- "@backstage/core-components": "0.0.0-nightly-20241001023625",
51
- "@backstage/core-plugin-api": "0.0.0-nightly-20241001023625",
52
- "@backstage/version-bridge": "1.0.9",
50
+ "@backstage/core-components": "0.0.0-nightly-20241003023252",
51
+ "@backstage/core-plugin-api": "0.0.0-nightly-20241003023252",
52
+ "@backstage/version-bridge": "0.0.0-nightly-20241003023252",
53
53
  "@material-ui/core": "^4.12.2",
54
54
  "@material-ui/styles": "^4.11.0",
55
- "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
56
55
  "jss": "~10.10.0",
57
56
  "lodash": "^4.17.21",
58
57
  "react-helmet": "6.1.0",
59
58
  "react-use": "^17.2.4"
60
59
  },
61
60
  "devDependencies": {
62
- "@backstage/cli": "0.0.0-nightly-20241001023625",
63
- "@backstage/test-utils": "0.0.0-nightly-20241001023625",
64
- "@backstage/theme": "0.5.7",
61
+ "@backstage/cli": "0.0.0-nightly-20241003023252",
62
+ "@backstage/test-utils": "0.0.0-nightly-20241003023252",
63
+ "@backstage/theme": "0.0.0-nightly-20241003023252",
65
64
  "@testing-library/jest-dom": "^6.0.0",
66
- "@testing-library/react": "^16.0.0"
65
+ "@testing-library/react": "^16.0.0",
66
+ "@types/react": "^18.0.0",
67
+ "react": "^18.0.2",
68
+ "react-dom": "^18.0.2",
69
+ "react-router-dom": "^6.3.0"
67
70
  },
68
71
  "peerDependencies": {
72
+ "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
69
73
  "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
70
74
  "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
71
75
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
72
76
  },
77
+ "peerDependenciesMeta": {
78
+ "@types/react": {
79
+ "optional": true
80
+ }
81
+ },
73
82
  "module": "./dist/index.esm.js"
74
83
  }