@backstage/plugin-scaffolder-react 1.5.4 → 1.5.5-next.2

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 CHANGED
@@ -1,35 +1,52 @@
1
1
  # @backstage/plugin-scaffolder-react
2
2
 
3
- ## 1.5.4
3
+ ## 1.5.5-next.2
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 27fef07f9229: Updated dependency `use-immer` to `^0.9.0`.
7
8
  - Updated dependencies
8
- - @backstage/plugin-catalog-react@1.8.3
9
- - @backstage/catalog-client@1.4.3
10
- - @backstage/catalog-model@1.4.1
11
- - @backstage/core-components@0.13.4
12
- - @backstage/core-plugin-api@1.5.3
9
+ - @backstage/core-components@0.13.5-next.2
10
+ - @backstage/core-plugin-api@1.6.0-next.2
11
+ - @backstage/plugin-catalog-react@1.8.4-next.2
12
+ - @backstage/catalog-model@1.4.2-next.1
13
+ - @backstage/catalog-client@1.4.4-next.1
13
14
  - @backstage/errors@1.2.1
14
15
  - @backstage/theme@0.4.1
15
16
  - @backstage/types@1.1.0
16
17
  - @backstage/version-bridge@1.0.4
17
- - @backstage/plugin-scaffolder-common@1.4.0
18
+ - @backstage/plugin-scaffolder-common@1.4.1-next.1
19
+
20
+ ## 1.5.5-next.1
21
+
22
+ ### Patch Changes
18
23
 
19
- ## 1.5.3
24
+ - Updated dependencies
25
+ - @backstage/plugin-catalog-react@1.8.4-next.1
26
+ - @backstage/core-components@0.13.5-next.1
27
+ - @backstage/catalog-model@1.4.2-next.0
28
+ - @backstage/core-plugin-api@1.6.0-next.1
29
+ - @backstage/catalog-client@1.4.4-next.0
30
+ - @backstage/plugin-scaffolder-common@1.4.1-next.0
31
+ - @backstage/errors@1.2.1
32
+ - @backstage/theme@0.4.1
33
+ - @backstage/types@1.1.0
34
+ - @backstage/version-bridge@1.0.4
35
+
36
+ ## 1.5.4-next.0
20
37
 
21
38
  ### Patch Changes
22
39
 
23
40
  - Updated dependencies
24
- - @backstage/plugin-catalog-react@1.8.2
41
+ - @backstage/core-plugin-api@1.6.0-next.0
42
+ - @backstage/core-components@0.13.5-next.0
25
43
  - @backstage/catalog-client@1.4.3
26
44
  - @backstage/catalog-model@1.4.1
27
- - @backstage/core-components@0.13.4
28
- - @backstage/core-plugin-api@1.5.3
29
45
  - @backstage/errors@1.2.1
30
46
  - @backstage/theme@0.4.1
31
47
  - @backstage/types@1.1.0
32
48
  - @backstage/version-bridge@1.0.4
49
+ - @backstage/plugin-catalog-react@1.8.3-next.0
33
50
  - @backstage/plugin-scaffolder-common@1.4.0
34
51
 
35
52
  ## 1.5.2
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-react",
3
- "version": "1.5.4",
3
+ "version": "1.5.5-next.2",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
package/dist/alpha.d.ts CHANGED
@@ -88,7 +88,7 @@ type ReviewStateProps = {
88
88
  * The component used by the {@link Stepper} to render the review step.
89
89
  * @alpha
90
90
  */
91
- declare const ReviewState: (props: ReviewStateProps) => JSX.Element;
91
+ declare const ReviewState: (props: ReviewStateProps) => React__default.JSX.Element;
92
92
 
93
93
  /**
94
94
  * Any `@rjsf/core` form properties that are publicly exposed to the `NextScaffolderpage`
@@ -119,7 +119,7 @@ type StepperProps = {
119
119
  * The `Stepper` component is the Wizard that is rendered when a user selects a template
120
120
  * @alpha
121
121
  */
122
- declare const Stepper: (stepperProps: StepperProps) => JSX.Element;
122
+ declare const Stepper: (stepperProps: StepperProps) => React__default.JSX.Element;
123
123
 
124
124
  /**
125
125
  * The Props for the {@link TemplateCard} component
@@ -138,7 +138,7 @@ interface TemplateCardProps {
138
138
  * The `TemplateCard` component that is rendered in a list for each template
139
139
  * @alpha
140
140
  */
141
- declare const TemplateCard: (props: TemplateCardProps) => JSX.Element;
141
+ declare const TemplateCard: (props: TemplateCardProps) => React__default.JSX.Element;
142
142
 
143
143
  /**
144
144
  * The props for the {@link TemplateGroup} component.
@@ -163,7 +163,7 @@ interface TemplateGroupProps {
163
163
  * The `TemplateGroup` component is used to display a group of templates with a title.
164
164
  * @alpha
165
165
  */
166
- declare const TemplateGroup: (props: TemplateGroupProps) => JSX.Element | null;
166
+ declare const TemplateGroup: (props: TemplateGroupProps) => React__default.JSX.Element | null;
167
167
 
168
168
  /**
169
169
  * @alpha
@@ -191,7 +191,7 @@ interface TemplateGroupsProps {
191
191
  /**
192
192
  * @alpha
193
193
  */
194
- declare const TemplateGroups: (props: TemplateGroupsProps) => JSX.Element | null;
194
+ declare const TemplateGroups: (props: TemplateGroupsProps) => React__default.JSX.Element | null;
195
195
 
196
196
  /**
197
197
  * @alpha
@@ -210,7 +210,7 @@ declare const Workflow: (workflowProps: WorkflowProps) => JSX.Element | null;
210
210
  /**
211
211
  * @alpha
212
212
  */
213
- declare const EmbeddableWorkflow: (props: WorkflowProps) => JSX.Element;
213
+ declare const EmbeddableWorkflow: (props: WorkflowProps) => React__default.JSX.Element;
214
214
 
215
215
  /**
216
216
  * The DefaultOutputs renderer for the scaffolder task output
@@ -219,13 +219,13 @@ declare const EmbeddableWorkflow: (props: WorkflowProps) => JSX.Element;
219
219
  */
220
220
  declare const DefaultTemplateOutputs: (props: {
221
221
  output?: ScaffolderTaskOutput;
222
- }) => JSX.Element | null;
222
+ }) => React__default.JSX.Element | null;
223
223
 
224
224
  /**
225
225
  * The Form component
226
226
  * @alpha
227
227
  */
228
- declare const Form: (props: PropsWithChildren<FormProps$1>) => JSX.Element;
228
+ declare const Form: (props: PropsWithChildren<FormProps$1>) => React__default.JSX.Element;
229
229
 
230
230
  /**
231
231
  * Props for the TaskSteps component
@@ -243,7 +243,7 @@ interface TaskStepsProps {
243
243
  *
244
244
  * @alpha
245
245
  */
246
- declare const TaskSteps: (props: TaskStepsProps) => JSX.Element;
246
+ declare const TaskSteps: (props: TaskStepsProps) => React__default.JSX.Element;
247
247
 
248
248
  /**
249
249
  * The text of the event stream
@@ -254,14 +254,14 @@ declare const TaskLogStream: (props: {
254
254
  logs: {
255
255
  [k: string]: string[];
256
256
  };
257
- }) => JSX.Element;
257
+ }) => React__default.JSX.Element;
258
258
 
259
259
  /**
260
260
  * The Category Picker that is rendered on the left side for picking
261
261
  * categories and filtering the template list.
262
262
  * @alpha
263
263
  */
264
- declare const TemplateCategoryPicker: () => JSX.Element | null;
264
+ declare const TemplateCategoryPicker: () => React__default.JSX.Element | null;
265
265
 
266
266
  /**
267
267
  * @alpha
@@ -274,7 +274,7 @@ type ScaffolderPageContextMenuProps = {
274
274
  /**
275
275
  * @alpha
276
276
  */
277
- declare function ScaffolderPageContextMenu(props: ScaffolderPageContextMenuProps): JSX.Element | null;
277
+ declare function ScaffolderPageContextMenu(props: ScaffolderPageContextMenuProps): React__default.JSX.Element | null;
278
278
 
279
279
  /**
280
280
  * Props for the {@link ScaffolderField} component
@@ -295,7 +295,7 @@ interface ScaffolderFieldProps {
295
295
  * on the field types
296
296
  * @alpha
297
297
  */
298
- declare const ScaffolderField: (props: PropsWithChildren<ScaffolderFieldProps>) => JSX.Element;
298
+ declare const ScaffolderField: (props: PropsWithChildren<ScaffolderFieldProps>) => React__default.JSX.Element;
299
299
 
300
300
  /**
301
301
  * Takes a step from a Backstage Template Manifest and converts it to a JSON Schema and UI Schema for rjsf
package/dist/index.d.ts CHANGED
@@ -88,7 +88,7 @@ type TemplateParameterSchema = {
88
88
  * The Context Provider that holds the state for the secrets.
89
89
  * @public
90
90
  */
91
- declare const SecretsContextProvider: (props: PropsWithChildren<{}>) => JSX.Element;
91
+ declare const SecretsContextProvider: (props: PropsWithChildren<{}>) => React__default.JSX.Element;
92
92
  /**
93
93
  * The return type from the useTemplateSecrets hook.
94
94
  * @public
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",
4
+ "version": "1.5.5-next.2",
5
5
  "main": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -43,13 +43,13 @@
43
43
  "start": "backstage-cli package start"
44
44
  },
45
45
  "dependencies": {
46
- "@backstage/catalog-client": "^1.4.3",
47
- "@backstage/catalog-model": "^1.4.1",
48
- "@backstage/core-components": "^0.13.4",
49
- "@backstage/core-plugin-api": "^1.5.3",
46
+ "@backstage/catalog-client": "^1.4.4-next.1",
47
+ "@backstage/catalog-model": "^1.4.2-next.1",
48
+ "@backstage/core-components": "^0.13.5-next.2",
49
+ "@backstage/core-plugin-api": "^1.6.0-next.2",
50
50
  "@backstage/errors": "^1.2.1",
51
- "@backstage/plugin-catalog-react": "^1.8.3",
52
- "@backstage/plugin-scaffolder-common": "^1.4.0",
51
+ "@backstage/plugin-catalog-react": "^1.8.4-next.2",
52
+ "@backstage/plugin-scaffolder-common": "^1.4.1-next.1",
53
53
  "@backstage/theme": "^0.4.1",
54
54
  "@backstage/types": "^1.1.0",
55
55
  "@backstage/version-bridge": "^1.0.4",
@@ -74,7 +74,7 @@
74
74
  "luxon": "^3.0.0",
75
75
  "qs": "^6.9.4",
76
76
  "react-use": "^17.2.4",
77
- "use-immer": "^0.8.0",
77
+ "use-immer": "^0.9.0",
78
78
  "zen-observable": "^0.10.0",
79
79
  "zod": "^3.21.4",
80
80
  "zod-to-json-schema": "^3.20.4"
@@ -85,11 +85,11 @@
85
85
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
86
86
  },
87
87
  "devDependencies": {
88
- "@backstage/cli": "^0.22.12",
89
- "@backstage/core-app-api": "^1.9.1",
90
- "@backstage/plugin-catalog": "^1.12.4",
91
- "@backstage/plugin-catalog-common": "^1.0.15",
92
- "@backstage/test-utils": "^1.4.2",
88
+ "@backstage/cli": "^0.22.13-next.2",
89
+ "@backstage/core-app-api": "^1.10.0-next.2",
90
+ "@backstage/plugin-catalog": "^1.13.0-next.2",
91
+ "@backstage/plugin-catalog-common": "^1.0.16-next.1",
92
+ "@backstage/test-utils": "^1.4.3-next.2",
93
93
  "@testing-library/dom": "^8.0.0",
94
94
  "@testing-library/jest-dom": "^5.10.1",
95
95
  "@testing-library/react": "^12.1.3",