@backstage/plugin-scaffolder 1.35.3-next.1 → 1.35.3
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,5 +1,56 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder
|
|
2
2
|
|
|
3
|
+
## 1.35.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7455dae: Use node prefix on native imports
|
|
8
|
+
- 4e581a6: Updated the browser tab title on the template wizard page to display the specific template title instead of the generic "Create a new component" text.
|
|
9
|
+
- 7feb83b: Adjusted to use the new `@backstage/filter-predicates` types for predicate expressions.
|
|
10
|
+
- 018ca87: Added `title` and `icon` to the plugin definition for the new frontend system.
|
|
11
|
+
- 2eeca03: Scaffolder form fields in the new frontend system now use a Utility API pattern instead of multiple attachment points. The `FormFieldBlueprint` now uses this new approach, and while form fields created with older versions still work, they will produce a deprecation warning and will stop working in a future release.
|
|
12
|
+
|
|
13
|
+
As part of this change, the following alpha exports were removed:
|
|
14
|
+
|
|
15
|
+
- `formFieldsApiRef`
|
|
16
|
+
- `ScaffolderFormFieldsApi`
|
|
17
|
+
|
|
18
|
+
- b9d90a7: Added `@backstage/frontend-test-utils` as a dev dependency for mock API usage in tests.
|
|
19
|
+
- a7e0d50: Updated `react-router-dom` peer dependency to `^6.30.2` and explicitly disabled v7 future flags to suppress deprecation warnings.
|
|
20
|
+
- 69d880e: Bump to latest zod to ensure it has the latest features
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/plugin-catalog-react@2.0.0
|
|
23
|
+
- @backstage/integration@1.20.0
|
|
24
|
+
- @backstage/core-components@0.18.7
|
|
25
|
+
- @backstage/frontend-plugin-api@0.14.0
|
|
26
|
+
- @backstage/catalog-client@1.13.0
|
|
27
|
+
- @backstage/plugin-scaffolder-react@1.19.7
|
|
28
|
+
- @backstage/core-plugin-api@1.12.3
|
|
29
|
+
- @backstage/plugin-techdocs-react@1.3.8
|
|
30
|
+
- @backstage/integration-react@1.2.15
|
|
31
|
+
- @backstage/plugin-permission-react@0.4.40
|
|
32
|
+
- @backstage/plugin-catalog-common@1.1.8
|
|
33
|
+
- @backstage/plugin-scaffolder-common@1.7.6
|
|
34
|
+
|
|
35
|
+
## 1.35.3-next.2
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- 7feb83b: Adjusted to use the new `@backstage/filter-predicates` types for predicate expressions.
|
|
40
|
+
- b9d90a7: Added `@backstage/frontend-test-utils` as a dev dependency for mock API usage in tests.
|
|
41
|
+
- a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
|
|
42
|
+
- Updated dependencies
|
|
43
|
+
- @backstage/integration@1.20.0-next.2
|
|
44
|
+
- @backstage/plugin-catalog-react@2.0.0-next.2
|
|
45
|
+
- @backstage/catalog-client@1.12.2-next.0
|
|
46
|
+
- @backstage/plugin-scaffolder-react@1.19.7-next.2
|
|
47
|
+
- @backstage/frontend-plugin-api@0.14.0-next.2
|
|
48
|
+
- @backstage/integration-react@1.2.15-next.2
|
|
49
|
+
- @backstage/core-components@0.18.7-next.2
|
|
50
|
+
- @backstage/core-plugin-api@1.12.3-next.1
|
|
51
|
+
- @backstage/plugin-permission-react@0.4.40-next.1
|
|
52
|
+
- @backstage/plugin-techdocs-react@1.3.8-next.1
|
|
53
|
+
|
|
3
54
|
## 1.35.3-next.1
|
|
4
55
|
|
|
5
56
|
### Patch Changes
|
package/dist/alpha/plugin.esm.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
1
2
|
import { createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
3
|
+
import CreateComponentIcon from '@material-ui/icons/AddCircleOutline';
|
|
2
4
|
import { viewTechDocRouteRef, registerComponentRouteRef, templatingExtensionsRouteRef, editRouteRef, scaffolderListTaskRouteRef, actionsRouteRef, scaffolderTaskRouteRef, selectedTemplateRouteRef, rootRouteRef } from '../routes.esm.js';
|
|
3
5
|
import { scaffolderApi, scaffolderPage, scaffolderNavItem, repoUrlPickerFormField, entityNamePickerFormField, entityPickerFormField, ownerPickerFormField, entityTagsPickerFormField, multiEntityPickerFormField, myGroupsPickerFormField, ownedEntityPickerFormField, repoBranchPickerFormField, repoOwnerPickerFormField } from './extensions.esm.js';
|
|
4
6
|
import { isTemplateEntityV1beta3 } from '@backstage/plugin-scaffolder-common';
|
|
@@ -17,6 +19,8 @@ const scaffolderEntityIconLink = EntityIconLinkBlueprint.make({
|
|
|
17
19
|
});
|
|
18
20
|
var plugin = createFrontendPlugin({
|
|
19
21
|
pluginId: "scaffolder",
|
|
22
|
+
title: "Create",
|
|
23
|
+
icon: /* @__PURE__ */ jsx(CreateComponentIcon, {}),
|
|
20
24
|
info: { packageJson: () => import('../plugins/scaffolder/package.json.esm.js') },
|
|
21
25
|
routes: {
|
|
22
26
|
root: rootRouteRef,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.esm.js","sources":["../../src/alpha/plugin.tsx"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createFrontendPlugin } from '@backstage/frontend-plugin-api';\nimport {\n actionsRouteRef,\n editRouteRef,\n registerComponentRouteRef,\n rootRouteRef,\n scaffolderListTaskRouteRef,\n scaffolderTaskRouteRef,\n selectedTemplateRouteRef,\n templatingExtensionsRouteRef,\n viewTechDocRouteRef,\n} from '../routes';\nimport {\n entityNamePickerFormField,\n entityPickerFormField,\n entityTagsPickerFormField,\n multiEntityPickerFormField,\n myGroupsPickerFormField,\n ownedEntityPickerFormField,\n ownerPickerFormField,\n repoBranchPickerFormField,\n repoOwnerPickerFormField,\n repoUrlPickerFormField,\n scaffolderApi,\n scaffolderNavItem,\n scaffolderPage,\n} from './extensions';\nimport { isTemplateEntityV1beta3 } from '@backstage/plugin-scaffolder-common';\nimport { formFieldsApi } from './formFieldsApi';\nimport { formDecoratorsApi } from './api';\nimport { EntityIconLinkBlueprint } from '@backstage/plugin-catalog-react/alpha';\nimport { useScaffolderTemplateIconLinkProps } from './hooks/useScaffolderTemplateIconLinkProps';\n\n/** @alpha */\nconst scaffolderEntityIconLink = EntityIconLinkBlueprint.make({\n name: 'launch-template',\n params: {\n filter: isTemplateEntityV1beta3,\n useProps: useScaffolderTemplateIconLinkProps,\n },\n});\n\n/** @alpha */\nexport default createFrontendPlugin({\n pluginId: 'scaffolder',\n info: { packageJson: () => import('../../package.json') },\n routes: {\n root: rootRouteRef,\n selectedTemplate: selectedTemplateRouteRef,\n ongoingTask: scaffolderTaskRouteRef,\n actions: actionsRouteRef,\n listTasks: scaffolderListTaskRouteRef,\n edit: editRouteRef,\n templatingExtensions: templatingExtensionsRouteRef,\n },\n externalRoutes: {\n registerComponent: registerComponentRouteRef,\n viewTechDoc: viewTechDocRouteRef,\n },\n extensions: [\n scaffolderApi,\n scaffolderPage,\n scaffolderNavItem,\n scaffolderEntityIconLink,\n formDecoratorsApi,\n formFieldsApi,\n repoUrlPickerFormField,\n entityNamePickerFormField,\n entityPickerFormField,\n ownerPickerFormField,\n entityTagsPickerFormField,\n multiEntityPickerFormField,\n myGroupsPickerFormField,\n ownedEntityPickerFormField,\n repoBranchPickerFormField,\n repoOwnerPickerFormField,\n ],\n});\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"plugin.esm.js","sources":["../../src/alpha/plugin.tsx"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createFrontendPlugin } from '@backstage/frontend-plugin-api';\nimport CreateComponentIcon from '@material-ui/icons/AddCircleOutline';\nimport {\n actionsRouteRef,\n editRouteRef,\n registerComponentRouteRef,\n rootRouteRef,\n scaffolderListTaskRouteRef,\n scaffolderTaskRouteRef,\n selectedTemplateRouteRef,\n templatingExtensionsRouteRef,\n viewTechDocRouteRef,\n} from '../routes';\nimport {\n entityNamePickerFormField,\n entityPickerFormField,\n entityTagsPickerFormField,\n multiEntityPickerFormField,\n myGroupsPickerFormField,\n ownedEntityPickerFormField,\n ownerPickerFormField,\n repoBranchPickerFormField,\n repoOwnerPickerFormField,\n repoUrlPickerFormField,\n scaffolderApi,\n scaffolderNavItem,\n scaffolderPage,\n} from './extensions';\nimport { isTemplateEntityV1beta3 } from '@backstage/plugin-scaffolder-common';\nimport { formFieldsApi } from './formFieldsApi';\nimport { formDecoratorsApi } from './api';\nimport { EntityIconLinkBlueprint } from '@backstage/plugin-catalog-react/alpha';\nimport { useScaffolderTemplateIconLinkProps } from './hooks/useScaffolderTemplateIconLinkProps';\n\n/** @alpha */\nconst scaffolderEntityIconLink = EntityIconLinkBlueprint.make({\n name: 'launch-template',\n params: {\n filter: isTemplateEntityV1beta3,\n useProps: useScaffolderTemplateIconLinkProps,\n },\n});\n\n/** @alpha */\nexport default createFrontendPlugin({\n pluginId: 'scaffolder',\n title: 'Create',\n icon: <CreateComponentIcon />,\n info: { packageJson: () => import('../../package.json') },\n routes: {\n root: rootRouteRef,\n selectedTemplate: selectedTemplateRouteRef,\n ongoingTask: scaffolderTaskRouteRef,\n actions: actionsRouteRef,\n listTasks: scaffolderListTaskRouteRef,\n edit: editRouteRef,\n templatingExtensions: templatingExtensionsRouteRef,\n },\n externalRoutes: {\n registerComponent: registerComponentRouteRef,\n viewTechDoc: viewTechDocRouteRef,\n },\n extensions: [\n scaffolderApi,\n scaffolderPage,\n scaffolderNavItem,\n scaffolderEntityIconLink,\n formDecoratorsApi,\n formFieldsApi,\n repoUrlPickerFormField,\n entityNamePickerFormField,\n entityPickerFormField,\n ownerPickerFormField,\n entityTagsPickerFormField,\n multiEntityPickerFormField,\n myGroupsPickerFormField,\n ownedEntityPickerFormField,\n repoBranchPickerFormField,\n repoOwnerPickerFormField,\n ],\n});\n"],"names":[],"mappings":";;;;;;;;;;;;AAmDA,MAAM,wBAAA,GAA2B,wBAAwB,IAAA,CAAK;AAAA,EAC5D,IAAA,EAAM,iBAAA;AAAA,EACN,MAAA,EAAQ;AAAA,IACN,MAAA,EAAQ,uBAAA;AAAA,IACR,QAAA,EAAU;AAAA;AAEd,CAAC,CAAA;AAGD,aAAe,oBAAA,CAAqB;AAAA,EAClC,QAAA,EAAU,YAAA;AAAA,EACV,KAAA,EAAO,QAAA;AAAA,EACP,IAAA,sBAAO,mBAAA,EAAA,EAAoB,CAAA;AAAA,EAC3B,MAAM,EAAE,WAAA,EAAa,MAAM,OAAO,2CAAoB,CAAA,EAAE;AAAA,EACxD,MAAA,EAAQ;AAAA,IACN,IAAA,EAAM,YAAA;AAAA,IACN,gBAAA,EAAkB,wBAAA;AAAA,IAClB,WAAA,EAAa,sBAAA;AAAA,IACb,OAAA,EAAS,eAAA;AAAA,IACT,SAAA,EAAW,0BAAA;AAAA,IACX,IAAA,EAAM,YAAA;AAAA,IACN,oBAAA,EAAsB;AAAA,GACxB;AAAA,EACA,cAAA,EAAgB;AAAA,IACd,iBAAA,EAAmB,yBAAA;AAAA,IACnB,WAAA,EAAa;AAAA,GACf;AAAA,EACA,UAAA,EAAY;AAAA,IACV,aAAA;AAAA,IACA,cAAA;AAAA,IACA,iBAAA;AAAA,IACA,wBAAA;AAAA,IACA,iBAAA;AAAA,IACA,aAAA;AAAA,IACA,sBAAA;AAAA,IACA,yBAAA;AAAA,IACA,qBAAA;AAAA,IACA,oBAAA;AAAA,IACA,yBAAA;AAAA,IACA,0BAAA;AAAA,IACA,uBAAA;AAAA,IACA,0BAAA;AAAA,IACA,yBAAA;AAAA,IACA;AAAA;AAEJ,CAAC,CAAA;;;;"}
|
package/dist/alpha.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import * as _backstage_plugin_scaffolder_react_alpha from '@backstage/plugin-sca
|
|
|
8
8
|
import { ScaffolderFormDecorator } from '@backstage/plugin-scaffolder-react/alpha';
|
|
9
9
|
import * as _backstage_core_components from '@backstage/core-components';
|
|
10
10
|
import * as _backstage_catalog_model from '@backstage/catalog-model';
|
|
11
|
-
import * as
|
|
11
|
+
import * as _backstage_filter_predicates from '@backstage/filter-predicates';
|
|
12
12
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
13
13
|
|
|
14
14
|
/** @public */
|
|
@@ -145,8 +145,8 @@ declare const scaffolderTranslationRef: _backstage_frontend_plugin_api.Translati
|
|
|
145
145
|
readonly "ownerListPicker.options.owned": "Owned";
|
|
146
146
|
readonly "ongoingTask.title": "Run of";
|
|
147
147
|
readonly "ongoingTask.contextMenu.cancel": "Cancel";
|
|
148
|
-
readonly "ongoingTask.contextMenu.startOver": "Start Over";
|
|
149
148
|
readonly "ongoingTask.contextMenu.retry": "Retry";
|
|
149
|
+
readonly "ongoingTask.contextMenu.startOver": "Start Over";
|
|
150
150
|
readonly "ongoingTask.contextMenu.hideLogs": "Hide Logs";
|
|
151
151
|
readonly "ongoingTask.contextMenu.showLogs": "Show Logs";
|
|
152
152
|
readonly "ongoingTask.contextMenu.hideButtonBar": "Hide Button Bar";
|
|
@@ -167,8 +167,6 @@ declare const scaffolderTranslationRef: _backstage_frontend_plugin_api.Translati
|
|
|
167
167
|
readonly "renderSchema.tableCell.description": "Description";
|
|
168
168
|
readonly "templatingExtensions.content.values.title": "Values";
|
|
169
169
|
readonly "templatingExtensions.content.values.notAvailable": "There are no global template values defined.";
|
|
170
|
-
readonly "templatingExtensions.content.emptyState.title": "No information to display";
|
|
171
|
-
readonly "templatingExtensions.content.emptyState.description": "There are no templating extensions available or there was an issue communicating with the backend.";
|
|
172
170
|
readonly "templatingExtensions.content.filters.title": "Filters";
|
|
173
171
|
readonly "templatingExtensions.content.filters.schema.input": "Input";
|
|
174
172
|
readonly "templatingExtensions.content.filters.schema.output": "Output";
|
|
@@ -176,13 +174,15 @@ declare const scaffolderTranslationRef: _backstage_frontend_plugin_api.Translati
|
|
|
176
174
|
readonly "templatingExtensions.content.filters.examples": "Examples";
|
|
177
175
|
readonly "templatingExtensions.content.filters.notAvailable": "There are no template filters defined.";
|
|
178
176
|
readonly "templatingExtensions.content.filters.metadataAbsent": "Filter metadata unavailable";
|
|
179
|
-
readonly "templatingExtensions.content.
|
|
177
|
+
readonly "templatingExtensions.content.emptyState.title": "No information to display";
|
|
178
|
+
readonly "templatingExtensions.content.emptyState.description": "There are no templating extensions available or there was an issue communicating with the backend.";
|
|
180
179
|
readonly "templatingExtensions.content.functions.title": "Functions";
|
|
181
180
|
readonly "templatingExtensions.content.functions.schema.output": "Output";
|
|
182
181
|
readonly "templatingExtensions.content.functions.schema.arguments": "Arguments";
|
|
183
182
|
readonly "templatingExtensions.content.functions.examples": "Examples";
|
|
184
183
|
readonly "templatingExtensions.content.functions.notAvailable": "There are no global template functions defined.";
|
|
185
184
|
readonly "templatingExtensions.content.functions.metadataAbsent": "Function metadata unavailable";
|
|
185
|
+
readonly "templatingExtensions.content.searchFieldPlaceholder": "Search for an extension";
|
|
186
186
|
readonly "templatingExtensions.title": "Templating Extensions";
|
|
187
187
|
readonly "templatingExtensions.subtitle": "This is the collection of available templating extensions";
|
|
188
188
|
readonly "templatingExtensions.pageTitle": "Templating Extensions";
|
|
@@ -352,10 +352,10 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
352
352
|
config: {
|
|
353
353
|
label: string | undefined;
|
|
354
354
|
title: string | undefined;
|
|
355
|
-
filter:
|
|
355
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
356
356
|
};
|
|
357
357
|
configInput: {
|
|
358
|
-
filter?:
|
|
358
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
359
359
|
label?: string | undefined;
|
|
360
360
|
title?: string | undefined;
|
|
361
361
|
};
|
|
@@ -367,7 +367,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
367
367
|
inputs: {};
|
|
368
368
|
params: {
|
|
369
369
|
useProps: () => Omit<_backstage_core_components.IconLinkVerticalProps, "color">;
|
|
370
|
-
filter?:
|
|
370
|
+
filter?: _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
|
|
371
371
|
};
|
|
372
372
|
}>;
|
|
373
373
|
"nav-item:scaffolder": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
@@ -390,14 +390,31 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
390
390
|
"page:scaffolder": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
391
391
|
config: {
|
|
392
392
|
path: string | undefined;
|
|
393
|
+
title: string | undefined;
|
|
393
394
|
};
|
|
394
395
|
configInput: {
|
|
396
|
+
title?: string | undefined;
|
|
395
397
|
path?: string | undefined;
|
|
396
398
|
};
|
|
397
|
-
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<
|
|
399
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
400
|
+
optional: true;
|
|
401
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.title", {
|
|
402
|
+
optional: true;
|
|
403
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
|
|
398
404
|
optional: true;
|
|
399
405
|
}>;
|
|
400
406
|
inputs: {
|
|
407
|
+
pages: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
408
|
+
optional: true;
|
|
409
|
+
}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.title", {
|
|
410
|
+
optional: true;
|
|
411
|
+
}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
|
|
412
|
+
optional: true;
|
|
413
|
+
}>, {
|
|
414
|
+
singleton: false;
|
|
415
|
+
optional: false;
|
|
416
|
+
internal: false;
|
|
417
|
+
}>;
|
|
401
418
|
formFields: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<() => Promise<_backstage_plugin_scaffolder_react_alpha.FormField>, "scaffolder.form-field-loader", {}>, {
|
|
402
419
|
singleton: false;
|
|
403
420
|
optional: false;
|
|
@@ -409,8 +426,11 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
409
426
|
params: {
|
|
410
427
|
defaultPath?: [Error: `Use the 'path' param instead`];
|
|
411
428
|
path: string;
|
|
412
|
-
|
|
429
|
+
title?: string;
|
|
430
|
+
icon?: _backstage_frontend_plugin_api.IconElement;
|
|
431
|
+
loader?: () => Promise<react.JSX.Element>;
|
|
413
432
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
433
|
+
noHeader?: boolean;
|
|
414
434
|
};
|
|
415
435
|
}>;
|
|
416
436
|
"scaffolder-form-field:scaffolder/entity-name-picker": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var name = "@backstage/plugin-scaffolder";
|
|
2
|
-
var version = "1.35.3
|
|
2
|
+
var version = "1.35.3";
|
|
3
3
|
var description = "The Backstage plugin that helps you create new things";
|
|
4
4
|
var backstage = {
|
|
5
5
|
role: "frontend-plugin",
|
|
@@ -107,6 +107,7 @@ var devDependencies = {
|
|
|
107
107
|
"@backstage/cli": "workspace:^",
|
|
108
108
|
"@backstage/core-app-api": "workspace:^",
|
|
109
109
|
"@backstage/dev-utils": "workspace:^",
|
|
110
|
+
"@backstage/frontend-test-utils": "workspace:^",
|
|
110
111
|
"@backstage/plugin-catalog": "workspace:^",
|
|
111
112
|
"@backstage/plugin-permission-common": "workspace:^",
|
|
112
113
|
"@backstage/plugin-techdocs": "workspace:^",
|
|
@@ -122,14 +123,14 @@ var devDependencies = {
|
|
|
122
123
|
"@types/react-window": "^1.8.8",
|
|
123
124
|
react: "^18.0.2",
|
|
124
125
|
"react-dom": "^18.0.2",
|
|
125
|
-
"react-router-dom": "^6.
|
|
126
|
+
"react-router-dom": "^6.30.2",
|
|
126
127
|
swr: "^2.0.0"
|
|
127
128
|
};
|
|
128
129
|
var peerDependencies = {
|
|
129
130
|
"@types/react": "^17.0.0 || ^18.0.0",
|
|
130
131
|
react: "^17.0.0 || ^18.0.0",
|
|
131
132
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
132
|
-
"react-router-dom": "^6.
|
|
133
|
+
"react-router-dom": "^6.30.2"
|
|
133
134
|
};
|
|
134
135
|
var peerDependenciesMeta = {
|
|
135
136
|
"@types/react": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"package.json.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"package.json.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder",
|
|
3
|
-
"version": "1.35.3
|
|
3
|
+
"version": "1.35.3",
|
|
4
4
|
"description": "The Backstage plugin that helps you create new things",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -70,22 +70,22 @@
|
|
|
70
70
|
"test": "backstage-cli package test"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@backstage/catalog-client": "1.
|
|
74
|
-
"@backstage/catalog-model": "1.7.6",
|
|
75
|
-
"@backstage/core-components": "0.18.7
|
|
76
|
-
"@backstage/core-plugin-api": "1.12.3
|
|
77
|
-
"@backstage/errors": "1.2.7",
|
|
78
|
-
"@backstage/frontend-plugin-api": "0.14.0
|
|
79
|
-
"@backstage/integration": "1.20.0
|
|
80
|
-
"@backstage/integration-react": "1.2.15
|
|
81
|
-
"@backstage/plugin-catalog-common": "1.1.8
|
|
82
|
-
"@backstage/plugin-catalog-react": "
|
|
83
|
-
"@backstage/plugin-permission-react": "0.4.40
|
|
84
|
-
"@backstage/plugin-scaffolder-common": "1.7.6
|
|
85
|
-
"@backstage/plugin-scaffolder-react": "1.19.7
|
|
86
|
-
"@backstage/plugin-techdocs-common": "0.1.1",
|
|
87
|
-
"@backstage/plugin-techdocs-react": "1.3.8
|
|
88
|
-
"@backstage/types": "1.2.2",
|
|
73
|
+
"@backstage/catalog-client": "^1.13.0",
|
|
74
|
+
"@backstage/catalog-model": "^1.7.6",
|
|
75
|
+
"@backstage/core-components": "^0.18.7",
|
|
76
|
+
"@backstage/core-plugin-api": "^1.12.3",
|
|
77
|
+
"@backstage/errors": "^1.2.7",
|
|
78
|
+
"@backstage/frontend-plugin-api": "^0.14.0",
|
|
79
|
+
"@backstage/integration": "^1.20.0",
|
|
80
|
+
"@backstage/integration-react": "^1.2.15",
|
|
81
|
+
"@backstage/plugin-catalog-common": "^1.1.8",
|
|
82
|
+
"@backstage/plugin-catalog-react": "^2.0.0",
|
|
83
|
+
"@backstage/plugin-permission-react": "^0.4.40",
|
|
84
|
+
"@backstage/plugin-scaffolder-common": "^1.7.6",
|
|
85
|
+
"@backstage/plugin-scaffolder-react": "^1.19.7",
|
|
86
|
+
"@backstage/plugin-techdocs-common": "^0.1.1",
|
|
87
|
+
"@backstage/plugin-techdocs-react": "^1.3.8",
|
|
88
|
+
"@backstage/types": "^1.2.2",
|
|
89
89
|
"@codemirror/language": "^6.0.0",
|
|
90
90
|
"@codemirror/legacy-modes": "^6.1.0",
|
|
91
91
|
"@codemirror/view": "^6.0.0",
|
|
@@ -117,13 +117,14 @@
|
|
|
117
117
|
"zod-to-json-schema": "^3.25.1"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
|
-
"@backstage/cli": "0.35.4
|
|
121
|
-
"@backstage/core-app-api": "1.19.5
|
|
122
|
-
"@backstage/dev-utils": "1.1.20
|
|
123
|
-
"@backstage/
|
|
124
|
-
"@backstage/plugin-
|
|
125
|
-
"@backstage/plugin-
|
|
126
|
-
"@backstage/
|
|
120
|
+
"@backstage/cli": "^0.35.4",
|
|
121
|
+
"@backstage/core-app-api": "^1.19.5",
|
|
122
|
+
"@backstage/dev-utils": "^1.1.20",
|
|
123
|
+
"@backstage/frontend-test-utils": "^0.5.0",
|
|
124
|
+
"@backstage/plugin-catalog": "^1.33.0",
|
|
125
|
+
"@backstage/plugin-permission-common": "^0.9.6",
|
|
126
|
+
"@backstage/plugin-techdocs": "^1.17.0",
|
|
127
|
+
"@backstage/test-utils": "^1.7.15",
|
|
127
128
|
"@testing-library/dom": "^10.0.0",
|
|
128
129
|
"@testing-library/jest-dom": "^6.0.0",
|
|
129
130
|
"@testing-library/react": "^16.0.0",
|
|
@@ -135,14 +136,14 @@
|
|
|
135
136
|
"@types/react-window": "^1.8.8",
|
|
136
137
|
"react": "^18.0.2",
|
|
137
138
|
"react-dom": "^18.0.2",
|
|
138
|
-
"react-router-dom": "^6.
|
|
139
|
+
"react-router-dom": "^6.30.2",
|
|
139
140
|
"swr": "^2.0.0"
|
|
140
141
|
},
|
|
141
142
|
"peerDependencies": {
|
|
142
143
|
"@types/react": "^17.0.0 || ^18.0.0",
|
|
143
144
|
"react": "^17.0.0 || ^18.0.0",
|
|
144
145
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
145
|
-
"react-router-dom": "^6.
|
|
146
|
+
"react-router-dom": "^6.30.2"
|
|
146
147
|
},
|
|
147
148
|
"peerDependenciesMeta": {
|
|
148
149
|
"@types/react": {
|