@backstage/plugin-scaffolder-react 1.5.5-next.3 → 1.5.6-next.0
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 +38 -0
- package/alpha/package.json +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-react
|
|
2
2
|
|
|
3
|
+
## 1.5.6-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-react@1.8.5-next.0
|
|
9
|
+
- @backstage/core-plugin-api@1.7.0-next.0
|
|
10
|
+
- @backstage/core-components@0.13.6-next.0
|
|
11
|
+
- @backstage/catalog-client@1.4.4
|
|
12
|
+
- @backstage/catalog-model@1.4.2
|
|
13
|
+
- @backstage/errors@1.2.2
|
|
14
|
+
- @backstage/theme@0.4.2
|
|
15
|
+
- @backstage/types@1.1.1
|
|
16
|
+
- @backstage/version-bridge@1.0.5
|
|
17
|
+
- @backstage/plugin-scaffolder-common@1.4.1
|
|
18
|
+
|
|
19
|
+
## 1.5.5
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
|
|
24
|
+
- b16c341ced45: Updated dependency `@rjsf/utils` to `5.13.0`.
|
|
25
|
+
Updated dependency `@rjsf/core-v5` to `npm:@rjsf/core@5.13.0`.
|
|
26
|
+
Updated dependency `@rjsf/material-ui-v5` to `npm:@rjsf/material-ui@5.13.0`.
|
|
27
|
+
Updated dependency `@rjsf/validator-ajv8` to `5.13.0`.
|
|
28
|
+
- 27fef07f9229: Updated dependency `use-immer` to `^0.9.0`.
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
- @backstage/plugin-catalog-react@1.8.4
|
|
31
|
+
- @backstage/core-components@0.13.5
|
|
32
|
+
- @backstage/catalog-client@1.4.4
|
|
33
|
+
- @backstage/catalog-model@1.4.2
|
|
34
|
+
- @backstage/core-plugin-api@1.6.0
|
|
35
|
+
- @backstage/errors@1.2.2
|
|
36
|
+
- @backstage/plugin-scaffolder-common@1.4.1
|
|
37
|
+
- @backstage/theme@0.4.2
|
|
38
|
+
- @backstage/types@1.1.1
|
|
39
|
+
- @backstage/version-bridge@1.0.5
|
|
40
|
+
|
|
3
41
|
## 1.5.5-next.3
|
|
4
42
|
|
|
5
43
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -297,7 +297,7 @@ declare const scaffolderApiRef: _backstage_core_plugin_api.ApiRef<ScaffolderApi>
|
|
|
297
297
|
* Hook that returns all custom field extensions from the current outlet.
|
|
298
298
|
* @public
|
|
299
299
|
*/
|
|
300
|
-
declare const useCustomFieldExtensions: <TComponentDataType = FieldExtensionOptions
|
|
300
|
+
declare const useCustomFieldExtensions: <TComponentDataType = FieldExtensionOptions>(outlet: React.ReactNode) => TComponentDataType[];
|
|
301
301
|
|
|
302
302
|
/**
|
|
303
303
|
* The field template from `@rjsf/core` which is a react component that gets passed `@rjsf/core` field related props.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-react",
|
|
3
3
|
"description": "A frontend library that helps other Backstage plugins interact with the Scaffolder",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.6-next.0",
|
|
5
5
|
"main": "./dist/index.esm.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -44,16 +44,16 @@
|
|
|
44
44
|
"start": "backstage-cli package start"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@backstage/catalog-client": "^1.4.4
|
|
48
|
-
"@backstage/catalog-model": "^1.4.2
|
|
49
|
-
"@backstage/core-components": "^0.13.
|
|
50
|
-
"@backstage/core-plugin-api": "^1.
|
|
51
|
-
"@backstage/errors": "^1.2.2
|
|
52
|
-
"@backstage/plugin-catalog-react": "^1.8.
|
|
53
|
-
"@backstage/plugin-scaffolder-common": "^1.4.1
|
|
54
|
-
"@backstage/theme": "^0.4.2
|
|
55
|
-
"@backstage/types": "^1.1.1
|
|
56
|
-
"@backstage/version-bridge": "^1.0.5
|
|
47
|
+
"@backstage/catalog-client": "^1.4.4",
|
|
48
|
+
"@backstage/catalog-model": "^1.4.2",
|
|
49
|
+
"@backstage/core-components": "^0.13.6-next.0",
|
|
50
|
+
"@backstage/core-plugin-api": "^1.7.0-next.0",
|
|
51
|
+
"@backstage/errors": "^1.2.2",
|
|
52
|
+
"@backstage/plugin-catalog-react": "^1.8.5-next.0",
|
|
53
|
+
"@backstage/plugin-scaffolder-common": "^1.4.1",
|
|
54
|
+
"@backstage/theme": "^0.4.2",
|
|
55
|
+
"@backstage/types": "^1.1.1",
|
|
56
|
+
"@backstage/version-bridge": "^1.0.5",
|
|
57
57
|
"@material-ui/core": "^4.12.2",
|
|
58
58
|
"@material-ui/icons": "^4.9.1",
|
|
59
59
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -86,11 +86,11 @@
|
|
|
86
86
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@backstage/cli": "^0.
|
|
90
|
-
"@backstage/core-app-api": "^1.10.
|
|
91
|
-
"@backstage/plugin-catalog": "^1.
|
|
92
|
-
"@backstage/plugin-catalog-common": "^1.0.16
|
|
93
|
-
"@backstage/test-utils": "^1.4.
|
|
89
|
+
"@backstage/cli": "^0.23.0-next.0",
|
|
90
|
+
"@backstage/core-app-api": "^1.10.1-next.0",
|
|
91
|
+
"@backstage/plugin-catalog": "^1.14.0-next.0",
|
|
92
|
+
"@backstage/plugin-catalog-common": "^1.0.16",
|
|
93
|
+
"@backstage/test-utils": "^1.4.4-next.0",
|
|
94
94
|
"@testing-library/dom": "^8.0.0",
|
|
95
95
|
"@testing-library/jest-dom": "^5.10.1",
|
|
96
96
|
"@testing-library/react": "^12.1.3",
|