@backstage/plugin-scaffolder 1.35.5-next.2 → 1.36.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 +27 -0
- package/README.md +61 -53
- package/dist/alpha/plugin.esm.js +1 -1
- package/dist/alpha/plugin.esm.js.map +1 -1
- package/dist/alpha.d.ts +190 -185
- package/dist/alpha.esm.js +5 -1
- package/dist/alpha.esm.js.map +1 -1
- package/dist/components/fields/EntityPicker/schema.esm.js.map +1 -1
- package/dist/components/fields/MultiEntityPicker/schema.esm.js +1 -1
- package/dist/components/fields/MultiEntityPicker/schema.esm.js.map +1 -1
- package/dist/components/fields/utils.esm.js.map +1 -1
- package/dist/index.d.ts +188 -3
- package/dist/index.esm.js +1 -1
- package/dist/packages/scaffolder-internal/src/wiring/InternalFormDecorator.esm.js.map +1 -1
- package/dist/packages/scaffolder-internal/src/wiring/InternalFormField.esm.js.map +1 -1
- package/dist/plugins/scaffolder/package.json.esm.js +2 -2
- package/dist/translation.esm.js.map +1 -1
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder
|
|
2
2
|
|
|
3
|
+
## 1.36.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0be2541: Promoted the plugin's translation ref to the stable package entry point. It was previously only available through the alpha entry point.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- e27bd4e: Removed check for deprecated `bitbucket` integration from `repoPickerValidation` function used by the `RepoUrlPicker`, it now validates the `bitbucketServer` and `bitbucketCloud` integrations instead.
|
|
12
|
+
- 538c985: Updated installation documentation to use feature discovery as the default.
|
|
13
|
+
- bd5b842: Added a new `ui:autoSelect` option to the EntityPicker field that controls whether an entity is automatically selected when the field loses focus. When set to `false`, the field will remain empty if the user closes it without explicitly selecting an entity, preventing unintentional selections. Defaults to `true` for backward compatibility.
|
|
14
|
+
- 3f36ce1: Updated alpha plugin icons to follow the new frontend icon sizing rules when rendered in plugin and navigation surfaces.
|
|
15
|
+
- a49a40d: Updated dependency `zod` to `^3.25.76 || ^4.0.0` & migrated to `/v3` or `/v4` imports.
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/plugin-catalog-react@2.1.0
|
|
18
|
+
- @backstage/core-plugin-api@1.12.4
|
|
19
|
+
- @backstage/core-components@0.18.8
|
|
20
|
+
- @backstage/frontend-plugin-api@0.15.0
|
|
21
|
+
- @backstage/catalog-client@1.14.0
|
|
22
|
+
- @backstage/plugin-scaffolder-react@1.20.0
|
|
23
|
+
- @backstage/integration@2.0.0
|
|
24
|
+
- @backstage/plugin-permission-react@0.4.41
|
|
25
|
+
- @backstage/plugin-scaffolder-common@2.0.0
|
|
26
|
+
- @backstage/catalog-model@1.7.7
|
|
27
|
+
- @backstage/integration-react@1.2.16
|
|
28
|
+
- @backstage/plugin-techdocs-react@1.3.9
|
|
29
|
+
|
|
3
30
|
## 1.35.5-next.2
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -15,13 +15,72 @@ To check if you already have the package, look under
|
|
|
15
15
|
`@backstage/plugin-scaffolder`. The instructions below walk through restoring
|
|
16
16
|
the plugin, if you previously removed it.
|
|
17
17
|
|
|
18
|
-
### Install the package
|
|
19
|
-
|
|
20
18
|
```bash
|
|
21
19
|
# From your Backstage root directory
|
|
22
20
|
yarn --cwd packages/app add @backstage/plugin-scaffolder
|
|
23
21
|
```
|
|
24
22
|
|
|
23
|
+
Once installed, the plugin is automatically available in your app through the default feature discovery. For more details and alternative installation methods, see [installing plugins](https://backstage.io/docs/frontend-system/building-apps/installing-plugins).
|
|
24
|
+
|
|
25
|
+
### Troubleshooting
|
|
26
|
+
|
|
27
|
+
If you encounter [issues with early closure of the `EventStream`](https://github.com/backstage/backstage/issues/5535)
|
|
28
|
+
used to auto-update logs during task execution, you can work around them by enabling
|
|
29
|
+
long polling. To do so, update your `packages/app/src/apis.ts` file to register a
|
|
30
|
+
`ScaffolderClient` with `useLongPollingLogs` set to `true`. By default, it is `false`.
|
|
31
|
+
|
|
32
|
+
```typescript
|
|
33
|
+
import {
|
|
34
|
+
AnyApiFactory,
|
|
35
|
+
createApiFactory,
|
|
36
|
+
discoveryApiRef,
|
|
37
|
+
fetchApiRef,
|
|
38
|
+
identityApiRef,
|
|
39
|
+
} from '@backstage/core-plugin-api';
|
|
40
|
+
import { scmIntegrationsApiRef } from '@backstage/integration-react';
|
|
41
|
+
import {
|
|
42
|
+
scaffolderApiRef,
|
|
43
|
+
ScaffolderClient,
|
|
44
|
+
} from '@backstage/plugin-scaffolder';
|
|
45
|
+
|
|
46
|
+
export const apis: AnyApiFactory[] = [
|
|
47
|
+
createApiFactory({
|
|
48
|
+
api: scaffolderApiRef,
|
|
49
|
+
deps: {
|
|
50
|
+
discoveryApi: discoveryApiRef,
|
|
51
|
+
identityApi: identityApiRef,
|
|
52
|
+
scmIntegrationsApi: scmIntegrationsApiRef,
|
|
53
|
+
fetchApi: fetchApiRef,
|
|
54
|
+
},
|
|
55
|
+
factory: ({ scmIntegrationsApi, discoveryApi, identityApi, fetchApi }) =>
|
|
56
|
+
new ScaffolderClient({
|
|
57
|
+
discoveryApi,
|
|
58
|
+
identityApi,
|
|
59
|
+
scmIntegrationsApi,
|
|
60
|
+
fetchApi,
|
|
61
|
+
useLongPollingLogs: true,
|
|
62
|
+
}),
|
|
63
|
+
}),
|
|
64
|
+
// ... other factories
|
|
65
|
+
];
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
This replaces the default implementation of the `scaffolderApiRef`.
|
|
69
|
+
|
|
70
|
+
### Local development
|
|
71
|
+
|
|
72
|
+
When you develop a new template, action or new `<ScaffolderFieldExtensions/>`, then we recommend
|
|
73
|
+
to launch the plugin locally using the `createDevApp` of the `./dev/index.tsx` file for testing/Debugging purposes
|
|
74
|
+
|
|
75
|
+
To play with it, open a terminal and run the command: `yarn start` within the `./plugins/scaffolder` folder
|
|
76
|
+
|
|
77
|
+
**NOTE:** Don't forget to open a second terminal, start your Backstage backend there,
|
|
78
|
+
and configure the template locations that you want to test.
|
|
79
|
+
|
|
80
|
+
## Old Frontend System
|
|
81
|
+
|
|
82
|
+
If your Backstage app uses the old frontend system, you need to manually wire the plugin into your app as outlined in this section. If you are on the new frontend system, you can skip this.
|
|
83
|
+
|
|
25
84
|
### Add the plugin to your `packages/app`
|
|
26
85
|
|
|
27
86
|
Add the root page that the scaffolder plugin provides to your app. You can
|
|
@@ -78,57 +137,6 @@ export const Root = ({ children }: PropsWithChildren<{}>) => (
|
|
|
78
137
|
</Sidebar>
|
|
79
138
|
```
|
|
80
139
|
|
|
81
|
-
### Troubleshooting
|
|
82
|
-
|
|
83
|
-
If you encounter the [issue of closing EventStream](https://github.com/backstage/backstage/issues/5535)
|
|
84
|
-
which auto-updates logs during task execution, you can enable long polling. To do so,
|
|
85
|
-
update your `packages/app/src/apis.ts` file to register a `ScaffolderClient` with the
|
|
86
|
-
`useLongPollingLogs` set to `true`. By default, it is `false`.
|
|
87
|
-
|
|
88
|
-
```typescript
|
|
89
|
-
import {
|
|
90
|
-
createApiFactory,
|
|
91
|
-
discoveryApiRef,
|
|
92
|
-
fetchApiRef,
|
|
93
|
-
identityApiRef,
|
|
94
|
-
} from '@backstage/core-plugin-api';
|
|
95
|
-
import {
|
|
96
|
-
scaffolderApiRef,
|
|
97
|
-
ScaffolderClient,
|
|
98
|
-
} from '@backstage/plugin-scaffolder';
|
|
99
|
-
|
|
100
|
-
export const apis: AnyApiFactory[] = [
|
|
101
|
-
createApiFactory({
|
|
102
|
-
api: scaffolderApiRef,
|
|
103
|
-
deps: {
|
|
104
|
-
discoveryApi: discoveryApiRef,
|
|
105
|
-
identityApi: identityApiRef,
|
|
106
|
-
scmIntegrationsApi: scmIntegrationsApiRef,
|
|
107
|
-
fetchApi: fetchApiRef,
|
|
108
|
-
},
|
|
109
|
-
factory: ({ scmIntegrationsApi, discoveryApi, identityApi, fetchApi }) =>
|
|
110
|
-
new ScaffolderClient({
|
|
111
|
-
discoveryApi,
|
|
112
|
-
identityApi,
|
|
113
|
-
scmIntegrationsApi,
|
|
114
|
-
fetchApi,
|
|
115
|
-
useLongPollingLogs: true,
|
|
116
|
-
}),
|
|
117
|
-
}),
|
|
118
|
-
// ... other factories
|
|
119
|
-
```
|
|
120
|
-
|
|
121
|
-
This replaces the default implementation of the `scaffolderApiRef`.
|
|
122
|
-
|
|
123
|
-
### Local development
|
|
124
|
-
|
|
125
|
-
When you develop a new template, action or new `<ScaffolderFieldExtensions/>`, then we recommend
|
|
126
|
-
to launch the plugin locally using the `createDevApp` of the `./dev/index.tsx` file for testing/Debugging purposes
|
|
127
|
-
|
|
128
|
-
To play with it, open a terminal and run the command: `yarn start` within the `./plugins/scaffolder` folder
|
|
129
|
-
|
|
130
|
-
**NOTE:** Don't forget to open a second terminal and to launch the backend or [backend-next](../../docs/backend-system/index.md) there, using `yarn start` and to specify the locations of the templates to play with !
|
|
131
|
-
|
|
132
140
|
## Links
|
|
133
141
|
|
|
134
142
|
- [scaffolder-backend](https://github.com/backstage/backstage/tree/master/plugins/scaffolder-backend)
|
package/dist/alpha/plugin.esm.js
CHANGED
|
@@ -20,7 +20,7 @@ const scaffolderEntityIconLink = EntityIconLinkBlueprint.make({
|
|
|
20
20
|
var plugin = createFrontendPlugin({
|
|
21
21
|
pluginId: "scaffolder",
|
|
22
22
|
title: "Create",
|
|
23
|
-
icon: /* @__PURE__ */ jsx(CreateComponentIcon, {}),
|
|
23
|
+
icon: /* @__PURE__ */ jsx(CreateComponentIcon, { fontSize: "inherit" }),
|
|
24
24
|
info: { packageJson: () => import('../plugins/scaffolder/package.json.esm.js') },
|
|
25
25
|
routes: {
|
|
26
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 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,
|
|
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 fontSize=\"inherit\" />,\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,kBAAM,GAAA,CAAC,mBAAA,EAAA,EAAoB,QAAA,EAAS,SAAA,EAAU,CAAA;AAAA,EAC9C,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
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
1
2
|
import * as react from 'react';
|
|
2
3
|
import { ComponentType } from 'react';
|
|
3
4
|
import { TemplateEntityV1beta3 } from '@backstage/plugin-scaffolder-common';
|
|
4
5
|
import { TemplateGroupFilter, FieldExtensionOptions, ReviewStepProps, LayoutOptions, FormProps as FormProps$1 } from '@backstage/plugin-scaffolder-react';
|
|
5
6
|
import { FormProps as FormProps$2 } from '@rjsf/core';
|
|
6
|
-
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
7
7
|
import * as _backstage_plugin_scaffolder_react_alpha from '@backstage/plugin-scaffolder-react/alpha';
|
|
8
8
|
import { ScaffolderFormDecorator } from '@backstage/plugin-scaffolder-react/alpha';
|
|
9
9
|
export { ScaffolderFormFieldsApi, formFieldsApiRef } from '@backstage/plugin-scaffolder-react/alpha';
|
|
@@ -74,196 +74,15 @@ type TemplateWizardPageProps = {
|
|
|
74
74
|
*/
|
|
75
75
|
type FormProps = Pick<FormProps$2, 'transformErrors' | 'noHtml5Validate'>;
|
|
76
76
|
|
|
77
|
-
/** @alpha */
|
|
78
|
-
declare const scaffolderTranslationRef: _backstage_frontend_plugin_api.TranslationRef<"scaffolder", {
|
|
79
|
-
readonly "fields.entityNamePicker.title": "Name";
|
|
80
|
-
readonly "fields.entityNamePicker.description": "Unique name of the component";
|
|
81
|
-
readonly "fields.entityPicker.title": "Entity";
|
|
82
|
-
readonly "fields.entityPicker.description": "An entity from the catalog";
|
|
83
|
-
readonly "fields.entityTagsPicker.title": "Tags";
|
|
84
|
-
readonly "fields.entityTagsPicker.description": "Add any relevant tags, hit 'Enter' to add new tags. Valid format: [a-z0-9+#] separated by [-], at most 63 characters";
|
|
85
|
-
readonly "fields.multiEntityPicker.title": "Entity";
|
|
86
|
-
readonly "fields.multiEntityPicker.description": "An entity from the catalog";
|
|
87
|
-
readonly "fields.myGroupsPicker.title": "Entity";
|
|
88
|
-
readonly "fields.myGroupsPicker.description": "An entity from the catalog";
|
|
89
|
-
readonly "fields.ownedEntityPicker.title": "Entity";
|
|
90
|
-
readonly "fields.ownedEntityPicker.description": "An entity from the catalog";
|
|
91
|
-
readonly "fields.ownerPicker.title": "Owner";
|
|
92
|
-
readonly "fields.ownerPicker.description": "The owner of the component";
|
|
93
|
-
readonly "fields.azureRepoPicker.organization.title": "Organization";
|
|
94
|
-
readonly "fields.azureRepoPicker.organization.description": "The Organization that this repo will belong to";
|
|
95
|
-
readonly "fields.azureRepoPicker.project.title": "Project";
|
|
96
|
-
readonly "fields.azureRepoPicker.project.description": "The Project that this repo will belong to";
|
|
97
|
-
readonly "fields.bitbucketRepoPicker.project.title": "Allowed Projects";
|
|
98
|
-
readonly "fields.bitbucketRepoPicker.project.description": "The Project that this repo will belong to";
|
|
99
|
-
readonly "fields.bitbucketRepoPicker.project.inputTitle": "Projects";
|
|
100
|
-
readonly "fields.bitbucketRepoPicker.workspaces.title": "Allowed Workspaces";
|
|
101
|
-
readonly "fields.bitbucketRepoPicker.workspaces.description": "The Workspace that this repo will belong to";
|
|
102
|
-
readonly "fields.bitbucketRepoPicker.workspaces.inputTitle": "Workspaces";
|
|
103
|
-
readonly "fields.gerritRepoPicker.parent.title": "Parent";
|
|
104
|
-
readonly "fields.gerritRepoPicker.parent.description": "The project parent that the repo will belong to";
|
|
105
|
-
readonly "fields.gerritRepoPicker.owner.title": "Owner";
|
|
106
|
-
readonly "fields.gerritRepoPicker.owner.description": "The owner of the project (optional)";
|
|
107
|
-
readonly "fields.giteaRepoPicker.owner.title": "Owner Available";
|
|
108
|
-
readonly "fields.giteaRepoPicker.owner.description": "Gitea namespace where this repository will belong to. It can be the name of organization, group, subgroup, user, or the project.";
|
|
109
|
-
readonly "fields.giteaRepoPicker.owner.inputTitle": "Owner";
|
|
110
|
-
readonly "fields.githubRepoPicker.owner.title": "Owner Available";
|
|
111
|
-
readonly "fields.githubRepoPicker.owner.description": "The organization, user or project that this repo will belong to";
|
|
112
|
-
readonly "fields.githubRepoPicker.owner.inputTitle": "Owner";
|
|
113
|
-
readonly "fields.gitlabRepoPicker.owner.title": "Owner Available";
|
|
114
|
-
readonly "fields.gitlabRepoPicker.owner.description": "GitLab namespace where this repository will belong to. It can be the name of organization, group, subgroup, user, or the project.";
|
|
115
|
-
readonly "fields.gitlabRepoPicker.owner.inputTitle": "Owner";
|
|
116
|
-
readonly "fields.repoUrlPicker.host.title": "Host";
|
|
117
|
-
readonly "fields.repoUrlPicker.host.description": "The host where the repository will be created";
|
|
118
|
-
readonly "fields.repoUrlPicker.repository.title": "Repositories Available";
|
|
119
|
-
readonly "fields.repoUrlPicker.repository.description": "The name of the repository";
|
|
120
|
-
readonly "fields.repoUrlPicker.repository.inputTitle": "Repository";
|
|
121
|
-
readonly "fields.repoOwnerPicker.title": "Owner";
|
|
122
|
-
readonly "fields.repoOwnerPicker.description": "The owner of the repository";
|
|
123
|
-
readonly "aboutCard.launchTemplate": "Launch Template";
|
|
124
|
-
readonly "actionsPage.content.emptyState.title": "No information to display";
|
|
125
|
-
readonly "actionsPage.content.emptyState.description": "There are no actions installed or there was an issue communicating with backend.";
|
|
126
|
-
readonly "actionsPage.content.searchFieldPlaceholder": "Search for an action";
|
|
127
|
-
readonly "actionsPage.title": "Installed actions";
|
|
128
|
-
readonly "actionsPage.action.input": "Input";
|
|
129
|
-
readonly "actionsPage.action.output": "Output";
|
|
130
|
-
readonly "actionsPage.action.examples": "Examples";
|
|
131
|
-
readonly "actionsPage.subtitle": "This is the collection of all installed actions";
|
|
132
|
-
readonly "actionsPage.pageTitle": "Create a New Component";
|
|
133
|
-
readonly "listTaskPage.content.emptyState.title": "No information to display";
|
|
134
|
-
readonly "listTaskPage.content.emptyState.description": "There are no tasks or there was an issue communicating with backend.";
|
|
135
|
-
readonly "listTaskPage.content.tableCell.template": "Template";
|
|
136
|
-
readonly "listTaskPage.content.tableCell.status": "Status";
|
|
137
|
-
readonly "listTaskPage.content.tableCell.owner": "Owner";
|
|
138
|
-
readonly "listTaskPage.content.tableCell.created": "Created";
|
|
139
|
-
readonly "listTaskPage.content.tableCell.taskID": "Task ID";
|
|
140
|
-
readonly "listTaskPage.content.tableTitle": "Tasks";
|
|
141
|
-
readonly "listTaskPage.title": "List template tasks";
|
|
142
|
-
readonly "listTaskPage.subtitle": "All tasks that have been started";
|
|
143
|
-
readonly "listTaskPage.pageTitle": "Templates Tasks";
|
|
144
|
-
readonly "ownerListPicker.title": "Task Owner";
|
|
145
|
-
readonly "ownerListPicker.options.all": "All";
|
|
146
|
-
readonly "ownerListPicker.options.owned": "Owned";
|
|
147
|
-
readonly "ongoingTask.title": "Run of";
|
|
148
|
-
readonly "ongoingTask.contextMenu.cancel": "Cancel";
|
|
149
|
-
readonly "ongoingTask.contextMenu.retry": "Retry";
|
|
150
|
-
readonly "ongoingTask.contextMenu.startOver": "Start Over";
|
|
151
|
-
readonly "ongoingTask.contextMenu.hideLogs": "Hide Logs";
|
|
152
|
-
readonly "ongoingTask.contextMenu.showLogs": "Show Logs";
|
|
153
|
-
readonly "ongoingTask.contextMenu.hideButtonBar": "Hide Button Bar";
|
|
154
|
-
readonly "ongoingTask.contextMenu.showButtonBar": "Show Button Bar";
|
|
155
|
-
readonly "ongoingTask.subtitle": "Task {{taskId}}";
|
|
156
|
-
readonly "ongoingTask.pageTitle.hasTemplateName": "Run of {{templateName}}";
|
|
157
|
-
readonly "ongoingTask.pageTitle.noTemplateName": "Scaffolder Run";
|
|
158
|
-
readonly "ongoingTask.cancelButtonTitle": "Cancel";
|
|
159
|
-
readonly "ongoingTask.retryButtonTitle": "Retry";
|
|
160
|
-
readonly "ongoingTask.startOverButtonTitle": "Start Over";
|
|
161
|
-
readonly "ongoingTask.hideLogsButtonTitle": "Hide Logs";
|
|
162
|
-
readonly "ongoingTask.showLogsButtonTitle": "Show Logs";
|
|
163
|
-
readonly "templateEditorForm.stepper.emptyText": "There are no spec parameters in the template to preview.";
|
|
164
|
-
readonly "renderSchema.undefined": "No schema defined";
|
|
165
|
-
readonly "renderSchema.tableCell.name": "Name";
|
|
166
|
-
readonly "renderSchema.tableCell.type": "Type";
|
|
167
|
-
readonly "renderSchema.tableCell.title": "Title";
|
|
168
|
-
readonly "renderSchema.tableCell.description": "Description";
|
|
169
|
-
readonly "templatingExtensions.content.values.title": "Values";
|
|
170
|
-
readonly "templatingExtensions.content.values.notAvailable": "There are no global template values defined.";
|
|
171
|
-
readonly "templatingExtensions.content.emptyState.title": "No information to display";
|
|
172
|
-
readonly "templatingExtensions.content.emptyState.description": "There are no templating extensions available or there was an issue communicating with the backend.";
|
|
173
|
-
readonly "templatingExtensions.content.filters.title": "Filters";
|
|
174
|
-
readonly "templatingExtensions.content.filters.schema.input": "Input";
|
|
175
|
-
readonly "templatingExtensions.content.filters.schema.output": "Output";
|
|
176
|
-
readonly "templatingExtensions.content.filters.schema.arguments": "Arguments";
|
|
177
|
-
readonly "templatingExtensions.content.filters.examples": "Examples";
|
|
178
|
-
readonly "templatingExtensions.content.filters.notAvailable": "There are no template filters defined.";
|
|
179
|
-
readonly "templatingExtensions.content.filters.metadataAbsent": "Filter metadata unavailable";
|
|
180
|
-
readonly "templatingExtensions.content.functions.title": "Functions";
|
|
181
|
-
readonly "templatingExtensions.content.functions.schema.output": "Output";
|
|
182
|
-
readonly "templatingExtensions.content.functions.schema.arguments": "Arguments";
|
|
183
|
-
readonly "templatingExtensions.content.functions.examples": "Examples";
|
|
184
|
-
readonly "templatingExtensions.content.functions.notAvailable": "There are no global template functions defined.";
|
|
185
|
-
readonly "templatingExtensions.content.functions.metadataAbsent": "Function metadata unavailable";
|
|
186
|
-
readonly "templatingExtensions.content.searchFieldPlaceholder": "Search for an extension";
|
|
187
|
-
readonly "templatingExtensions.title": "Templating Extensions";
|
|
188
|
-
readonly "templatingExtensions.subtitle": "This is the collection of available templating extensions";
|
|
189
|
-
readonly "templatingExtensions.pageTitle": "Templating Extensions";
|
|
190
|
-
readonly "templateTypePicker.title": "Categories";
|
|
191
|
-
readonly "templateIntroPage.title": "Manage Templates";
|
|
192
|
-
readonly "templateIntroPage.subtitle": "Edit, preview, and try out templates, forms, and custom fields";
|
|
193
|
-
readonly "templateFormPage.title": "Template Editor";
|
|
194
|
-
readonly "templateFormPage.subtitle": "Edit, preview, and try out templates forms";
|
|
195
|
-
readonly "templateCustomFieldPage.title": "Custom Field Explorer";
|
|
196
|
-
readonly "templateCustomFieldPage.subtitle": "Edit, preview, and try out custom fields";
|
|
197
|
-
readonly "templateEditorPage.title": "Template Editor";
|
|
198
|
-
readonly "templateEditorPage.subtitle": "Edit, preview, and try out templates and template forms";
|
|
199
|
-
readonly "templateEditorPage.dryRunResults.title": "Dry-run results";
|
|
200
|
-
readonly "templateEditorPage.dryRunResultsList.title": "Result {{resultId}}";
|
|
201
|
-
readonly "templateEditorPage.dryRunResultsList.deleteButtonTitle": "Delete result";
|
|
202
|
-
readonly "templateEditorPage.dryRunResultsList.downloadButtonTitle": "Download as .zip";
|
|
203
|
-
readonly "templateEditorPage.dryRunResultsView.tab.output": "Output";
|
|
204
|
-
readonly "templateEditorPage.dryRunResultsView.tab.log": "Log";
|
|
205
|
-
readonly "templateEditorPage.dryRunResultsView.tab.files": "Files";
|
|
206
|
-
readonly "templateEditorPage.taskStatusStepper.skippedStepTitle": "Skipped";
|
|
207
|
-
readonly "templateEditorPage.customFieldExplorer.preview.title": "Template Spec";
|
|
208
|
-
readonly "templateEditorPage.customFieldExplorer.fieldForm.title": "Field Options";
|
|
209
|
-
readonly "templateEditorPage.customFieldExplorer.fieldForm.applyButtonTitle": "Apply";
|
|
210
|
-
readonly "templateEditorPage.customFieldExplorer.selectFieldLabel": "Choose Custom Field Extension";
|
|
211
|
-
readonly "templateEditorPage.customFieldExplorer.fieldPreview.title": "Field Preview";
|
|
212
|
-
readonly "templateEditorPage.templateEditorBrowser.closeConfirmMessage": "Are you sure? Unsaved changes will be lost";
|
|
213
|
-
readonly "templateEditorPage.templateEditorBrowser.saveIconTooltip": "Save all files";
|
|
214
|
-
readonly "templateEditorPage.templateEditorBrowser.reloadIconTooltip": "Reload directory";
|
|
215
|
-
readonly "templateEditorPage.templateEditorBrowser.closeIconTooltip": "Close directory";
|
|
216
|
-
readonly "templateEditorPage.templateEditorIntro.title": "Get started by choosing one of the options below";
|
|
217
|
-
readonly "templateEditorPage.templateEditorIntro.loadLocal.title": "Load Template Directory";
|
|
218
|
-
readonly "templateEditorPage.templateEditorIntro.loadLocal.description": "Load a local template directory, allowing you to both edit and try executing your own template.";
|
|
219
|
-
readonly "templateEditorPage.templateEditorIntro.loadLocal.unsupportedTooltip": "Only supported in some Chromium-based browsers with the page loaded over HTTPS";
|
|
220
|
-
readonly "templateEditorPage.templateEditorIntro.createLocal.title": "Create New Template";
|
|
221
|
-
readonly "templateEditorPage.templateEditorIntro.createLocal.description": "Create a local template directory, allowing you to both edit and try executing your own template.";
|
|
222
|
-
readonly "templateEditorPage.templateEditorIntro.createLocal.unsupportedTooltip": "Only supported in some Chromium-based browsers with the page loaded over HTTPS";
|
|
223
|
-
readonly "templateEditorPage.templateEditorIntro.formEditor.title": "Template Form Playground";
|
|
224
|
-
readonly "templateEditorPage.templateEditorIntro.formEditor.description": "Preview and edit a template form, either using a sample template or by loading a template from the catalog.";
|
|
225
|
-
readonly "templateEditorPage.templateEditorIntro.fieldExplorer.title": "Custom Field Explorer";
|
|
226
|
-
readonly "templateEditorPage.templateEditorIntro.fieldExplorer.description": "View and play around with available installed custom field extensions.";
|
|
227
|
-
readonly "templateEditorPage.templateEditorTextArea.saveIconTooltip": "Save file";
|
|
228
|
-
readonly "templateEditorPage.templateEditorTextArea.refreshIconTooltip": "Reload file";
|
|
229
|
-
readonly "templateEditorPage.templateEditorTextArea.emptyStateParagraph": "Please select an action on the file menu.";
|
|
230
|
-
readonly "templateEditorPage.templateFormPreviewer.title": "Load Existing Template";
|
|
231
|
-
readonly "templateListPage.title": "Create a new component";
|
|
232
|
-
readonly "templateListPage.subtitle": "Create new software components using standard templates in your organization";
|
|
233
|
-
readonly "templateListPage.pageTitle": "Create a new component";
|
|
234
|
-
readonly "templateListPage.templateGroups.defaultTitle": "Templates";
|
|
235
|
-
readonly "templateListPage.templateGroups.otherTitle": "Other Templates";
|
|
236
|
-
readonly "templateListPage.contentHeader.supportButtonTitle": "Create new software components using standard templates. Different templates create different kinds of components (services, websites, documentation, ...).";
|
|
237
|
-
readonly "templateListPage.contentHeader.registerExistingButtonTitle": "Register Existing Component";
|
|
238
|
-
readonly "templateListPage.additionalLinksForEntity.viewTechDocsTitle": "View TechDocs";
|
|
239
|
-
readonly "templateWizardPage.title": "Create a new component";
|
|
240
|
-
readonly "templateWizardPage.subtitle": "Create new software components using standard templates in your organization";
|
|
241
|
-
readonly "templateWizardPage.pageTitle": "Create a new component";
|
|
242
|
-
readonly "templateWizardPage.templateWithTitle": "Create new {{templateTitle}}";
|
|
243
|
-
readonly "templateWizardPage.pageContextMenu.editConfigurationTitle": "Edit Configuration";
|
|
244
|
-
readonly "templateEditorToolbar.customFieldExplorerTooltip": "Custom Fields Explorer";
|
|
245
|
-
readonly "templateEditorToolbar.installedActionsDocumentationTooltip": "Installed Actions Documentation";
|
|
246
|
-
readonly "templateEditorToolbar.templatingExtensionsDocumentationTooltip": "Templating Extensions Documentation";
|
|
247
|
-
readonly "templateEditorToolbar.addToCatalogButton": "Publish";
|
|
248
|
-
readonly "templateEditorToolbar.addToCatalogDialogTitle": "Publish changes";
|
|
249
|
-
readonly "templateEditorToolbar.addToCatalogDialogContent.stepsIntroduction": "Follow the instructions below to create or update a template:";
|
|
250
|
-
readonly "templateEditorToolbar.addToCatalogDialogContent.stepsListItems": "Save the template files in a local directory\nCreate a pull request to a new or existing git repository\nIf the template already exists, the changes will be reflected in the software catalog once the pull request gets merged\nBut if you are creating a new template, follow the documentation linked below to register the new template repository in software catalog";
|
|
251
|
-
readonly "templateEditorToolbar.addToCatalogDialogActions.documentationUrl": "https://backstage.io/docs/features/software-templates/adding-templates/";
|
|
252
|
-
readonly "templateEditorToolbar.addToCatalogDialogActions.documentationButton": "Go to the documentation";
|
|
253
|
-
readonly "templateEditorToolbarFileMenu.button": "File";
|
|
254
|
-
readonly "templateEditorToolbarFileMenu.options.openDirectory": "Open template directory";
|
|
255
|
-
readonly "templateEditorToolbarFileMenu.options.createDirectory": "Create template directory";
|
|
256
|
-
readonly "templateEditorToolbarFileMenu.options.closeEditor": "Close template editor";
|
|
257
|
-
readonly "templateEditorToolbarTemplatesMenu.button": "Templates";
|
|
258
|
-
}>;
|
|
259
|
-
|
|
260
77
|
/** @alpha */
|
|
261
78
|
interface ScaffolderFormDecoratorsApi {
|
|
262
79
|
getFormDecorators(): Promise<ScaffolderFormDecorator[]>;
|
|
263
80
|
}
|
|
264
81
|
|
|
265
82
|
/** @alpha */
|
|
266
|
-
declare const formDecoratorsApiRef: _backstage_frontend_plugin_api.ApiRef<ScaffolderFormDecoratorsApi
|
|
83
|
+
declare const formDecoratorsApiRef: _backstage_frontend_plugin_api.ApiRef<ScaffolderFormDecoratorsApi> & {
|
|
84
|
+
readonly $$type: "@backstage/ApiRef";
|
|
85
|
+
};
|
|
267
86
|
|
|
268
87
|
/** @alpha */
|
|
269
88
|
declare class DefaultScaffolderFormDecoratorsApi implements ScaffolderFormDecoratorsApi {
|
|
@@ -545,5 +364,191 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
545
364
|
}>;
|
|
546
365
|
}>;
|
|
547
366
|
|
|
367
|
+
/**
|
|
368
|
+
* @alpha
|
|
369
|
+
* @deprecated Import from `@backstage/plugin-scaffolder` instead.
|
|
370
|
+
*/
|
|
371
|
+
declare const scaffolderTranslationRef: _backstage_frontend_plugin_api.TranslationRef<"scaffolder", {
|
|
372
|
+
readonly "fields.entityNamePicker.title": "Name";
|
|
373
|
+
readonly "fields.entityNamePicker.description": "Unique name of the component";
|
|
374
|
+
readonly "fields.entityPicker.title": "Entity";
|
|
375
|
+
readonly "fields.entityPicker.description": "An entity from the catalog";
|
|
376
|
+
readonly "fields.entityTagsPicker.title": "Tags";
|
|
377
|
+
readonly "fields.entityTagsPicker.description": "Add any relevant tags, hit 'Enter' to add new tags. Valid format: [a-z0-9+#] separated by [-], at most 63 characters";
|
|
378
|
+
readonly "fields.multiEntityPicker.title": "Entity";
|
|
379
|
+
readonly "fields.multiEntityPicker.description": "An entity from the catalog";
|
|
380
|
+
readonly "fields.myGroupsPicker.title": "Entity";
|
|
381
|
+
readonly "fields.myGroupsPicker.description": "An entity from the catalog";
|
|
382
|
+
readonly "fields.ownedEntityPicker.title": "Entity";
|
|
383
|
+
readonly "fields.ownedEntityPicker.description": "An entity from the catalog";
|
|
384
|
+
readonly "fields.ownerPicker.title": "Owner";
|
|
385
|
+
readonly "fields.ownerPicker.description": "The owner of the component";
|
|
386
|
+
readonly "fields.azureRepoPicker.organization.title": "Organization";
|
|
387
|
+
readonly "fields.azureRepoPicker.organization.description": "The Organization that this repo will belong to";
|
|
388
|
+
readonly "fields.azureRepoPicker.project.title": "Project";
|
|
389
|
+
readonly "fields.azureRepoPicker.project.description": "The Project that this repo will belong to";
|
|
390
|
+
readonly "fields.bitbucketRepoPicker.project.title": "Allowed Projects";
|
|
391
|
+
readonly "fields.bitbucketRepoPicker.project.description": "The Project that this repo will belong to";
|
|
392
|
+
readonly "fields.bitbucketRepoPicker.project.inputTitle": "Projects";
|
|
393
|
+
readonly "fields.bitbucketRepoPicker.workspaces.title": "Allowed Workspaces";
|
|
394
|
+
readonly "fields.bitbucketRepoPicker.workspaces.description": "The Workspace that this repo will belong to";
|
|
395
|
+
readonly "fields.bitbucketRepoPicker.workspaces.inputTitle": "Workspaces";
|
|
396
|
+
readonly "fields.gerritRepoPicker.parent.title": "Parent";
|
|
397
|
+
readonly "fields.gerritRepoPicker.parent.description": "The project parent that the repo will belong to";
|
|
398
|
+
readonly "fields.gerritRepoPicker.owner.title": "Owner";
|
|
399
|
+
readonly "fields.gerritRepoPicker.owner.description": "The owner of the project (optional)";
|
|
400
|
+
readonly "fields.giteaRepoPicker.owner.title": "Owner Available";
|
|
401
|
+
readonly "fields.giteaRepoPicker.owner.description": "Gitea namespace where this repository will belong to. It can be the name of organization, group, subgroup, user, or the project.";
|
|
402
|
+
readonly "fields.giteaRepoPicker.owner.inputTitle": "Owner";
|
|
403
|
+
readonly "fields.githubRepoPicker.owner.title": "Owner Available";
|
|
404
|
+
readonly "fields.githubRepoPicker.owner.description": "The organization, user or project that this repo will belong to";
|
|
405
|
+
readonly "fields.githubRepoPicker.owner.inputTitle": "Owner";
|
|
406
|
+
readonly "fields.gitlabRepoPicker.owner.title": "Owner Available";
|
|
407
|
+
readonly "fields.gitlabRepoPicker.owner.description": "GitLab namespace where this repository will belong to. It can be the name of organization, group, subgroup, user, or the project.";
|
|
408
|
+
readonly "fields.gitlabRepoPicker.owner.inputTitle": "Owner";
|
|
409
|
+
readonly "fields.repoUrlPicker.host.title": "Host";
|
|
410
|
+
readonly "fields.repoUrlPicker.host.description": "The host where the repository will be created";
|
|
411
|
+
readonly "fields.repoUrlPicker.repository.title": "Repositories Available";
|
|
412
|
+
readonly "fields.repoUrlPicker.repository.description": "The name of the repository";
|
|
413
|
+
readonly "fields.repoUrlPicker.repository.inputTitle": "Repository";
|
|
414
|
+
readonly "fields.repoOwnerPicker.title": "Owner";
|
|
415
|
+
readonly "fields.repoOwnerPicker.description": "The owner of the repository";
|
|
416
|
+
readonly "aboutCard.launchTemplate": "Launch Template";
|
|
417
|
+
readonly "actionsPage.content.emptyState.title": "No information to display";
|
|
418
|
+
readonly "actionsPage.content.emptyState.description": "There are no actions installed or there was an issue communicating with backend.";
|
|
419
|
+
readonly "actionsPage.content.searchFieldPlaceholder": "Search for an action";
|
|
420
|
+
readonly "actionsPage.title": "Installed actions";
|
|
421
|
+
readonly "actionsPage.action.input": "Input";
|
|
422
|
+
readonly "actionsPage.action.output": "Output";
|
|
423
|
+
readonly "actionsPage.action.examples": "Examples";
|
|
424
|
+
readonly "actionsPage.subtitle": "This is the collection of all installed actions";
|
|
425
|
+
readonly "actionsPage.pageTitle": "Create a New Component";
|
|
426
|
+
readonly "listTaskPage.content.emptyState.title": "No information to display";
|
|
427
|
+
readonly "listTaskPage.content.emptyState.description": "There are no tasks or there was an issue communicating with backend.";
|
|
428
|
+
readonly "listTaskPage.content.tableCell.template": "Template";
|
|
429
|
+
readonly "listTaskPage.content.tableCell.status": "Status";
|
|
430
|
+
readonly "listTaskPage.content.tableCell.owner": "Owner";
|
|
431
|
+
readonly "listTaskPage.content.tableCell.created": "Created";
|
|
432
|
+
readonly "listTaskPage.content.tableCell.taskID": "Task ID";
|
|
433
|
+
readonly "listTaskPage.content.tableTitle": "Tasks";
|
|
434
|
+
readonly "listTaskPage.title": "List template tasks";
|
|
435
|
+
readonly "listTaskPage.subtitle": "All tasks that have been started";
|
|
436
|
+
readonly "listTaskPage.pageTitle": "Templates Tasks";
|
|
437
|
+
readonly "ownerListPicker.title": "Task Owner";
|
|
438
|
+
readonly "ownerListPicker.options.all": "All";
|
|
439
|
+
readonly "ownerListPicker.options.owned": "Owned";
|
|
440
|
+
readonly "ongoingTask.title": "Run of";
|
|
441
|
+
readonly "ongoingTask.contextMenu.cancel": "Cancel";
|
|
442
|
+
readonly "ongoingTask.contextMenu.retry": "Retry";
|
|
443
|
+
readonly "ongoingTask.contextMenu.startOver": "Start Over";
|
|
444
|
+
readonly "ongoingTask.contextMenu.hideLogs": "Hide Logs";
|
|
445
|
+
readonly "ongoingTask.contextMenu.showLogs": "Show Logs";
|
|
446
|
+
readonly "ongoingTask.contextMenu.hideButtonBar": "Hide Button Bar";
|
|
447
|
+
readonly "ongoingTask.contextMenu.showButtonBar": "Show Button Bar";
|
|
448
|
+
readonly "ongoingTask.subtitle": "Task {{taskId}}";
|
|
449
|
+
readonly "ongoingTask.pageTitle.hasTemplateName": "Run of {{templateName}}";
|
|
450
|
+
readonly "ongoingTask.pageTitle.noTemplateName": "Scaffolder Run";
|
|
451
|
+
readonly "ongoingTask.cancelButtonTitle": "Cancel";
|
|
452
|
+
readonly "ongoingTask.retryButtonTitle": "Retry";
|
|
453
|
+
readonly "ongoingTask.startOverButtonTitle": "Start Over";
|
|
454
|
+
readonly "ongoingTask.hideLogsButtonTitle": "Hide Logs";
|
|
455
|
+
readonly "ongoingTask.showLogsButtonTitle": "Show Logs";
|
|
456
|
+
readonly "templateEditorForm.stepper.emptyText": "There are no spec parameters in the template to preview.";
|
|
457
|
+
readonly "renderSchema.undefined": "No schema defined";
|
|
458
|
+
readonly "renderSchema.tableCell.name": "Name";
|
|
459
|
+
readonly "renderSchema.tableCell.type": "Type";
|
|
460
|
+
readonly "renderSchema.tableCell.title": "Title";
|
|
461
|
+
readonly "renderSchema.tableCell.description": "Description";
|
|
462
|
+
readonly "templatingExtensions.content.values.title": "Values";
|
|
463
|
+
readonly "templatingExtensions.content.values.notAvailable": "There are no global template values defined.";
|
|
464
|
+
readonly "templatingExtensions.content.emptyState.title": "No information to display";
|
|
465
|
+
readonly "templatingExtensions.content.emptyState.description": "There are no templating extensions available or there was an issue communicating with the backend.";
|
|
466
|
+
readonly "templatingExtensions.content.filters.title": "Filters";
|
|
467
|
+
readonly "templatingExtensions.content.filters.schema.input": "Input";
|
|
468
|
+
readonly "templatingExtensions.content.filters.schema.output": "Output";
|
|
469
|
+
readonly "templatingExtensions.content.filters.schema.arguments": "Arguments";
|
|
470
|
+
readonly "templatingExtensions.content.filters.examples": "Examples";
|
|
471
|
+
readonly "templatingExtensions.content.filters.notAvailable": "There are no template filters defined.";
|
|
472
|
+
readonly "templatingExtensions.content.filters.metadataAbsent": "Filter metadata unavailable";
|
|
473
|
+
readonly "templatingExtensions.content.functions.title": "Functions";
|
|
474
|
+
readonly "templatingExtensions.content.functions.schema.output": "Output";
|
|
475
|
+
readonly "templatingExtensions.content.functions.schema.arguments": "Arguments";
|
|
476
|
+
readonly "templatingExtensions.content.functions.examples": "Examples";
|
|
477
|
+
readonly "templatingExtensions.content.functions.notAvailable": "There are no global template functions defined.";
|
|
478
|
+
readonly "templatingExtensions.content.functions.metadataAbsent": "Function metadata unavailable";
|
|
479
|
+
readonly "templatingExtensions.content.searchFieldPlaceholder": "Search for an extension";
|
|
480
|
+
readonly "templatingExtensions.title": "Templating Extensions";
|
|
481
|
+
readonly "templatingExtensions.subtitle": "This is the collection of available templating extensions";
|
|
482
|
+
readonly "templatingExtensions.pageTitle": "Templating Extensions";
|
|
483
|
+
readonly "templateTypePicker.title": "Categories";
|
|
484
|
+
readonly "templateIntroPage.title": "Manage Templates";
|
|
485
|
+
readonly "templateIntroPage.subtitle": "Edit, preview, and try out templates, forms, and custom fields";
|
|
486
|
+
readonly "templateFormPage.title": "Template Editor";
|
|
487
|
+
readonly "templateFormPage.subtitle": "Edit, preview, and try out templates forms";
|
|
488
|
+
readonly "templateCustomFieldPage.title": "Custom Field Explorer";
|
|
489
|
+
readonly "templateCustomFieldPage.subtitle": "Edit, preview, and try out custom fields";
|
|
490
|
+
readonly "templateEditorPage.title": "Template Editor";
|
|
491
|
+
readonly "templateEditorPage.subtitle": "Edit, preview, and try out templates and template forms";
|
|
492
|
+
readonly "templateEditorPage.dryRunResults.title": "Dry-run results";
|
|
493
|
+
readonly "templateEditorPage.dryRunResultsList.title": "Result {{resultId}}";
|
|
494
|
+
readonly "templateEditorPage.dryRunResultsList.deleteButtonTitle": "Delete result";
|
|
495
|
+
readonly "templateEditorPage.dryRunResultsList.downloadButtonTitle": "Download as .zip";
|
|
496
|
+
readonly "templateEditorPage.dryRunResultsView.tab.output": "Output";
|
|
497
|
+
readonly "templateEditorPage.dryRunResultsView.tab.log": "Log";
|
|
498
|
+
readonly "templateEditorPage.dryRunResultsView.tab.files": "Files";
|
|
499
|
+
readonly "templateEditorPage.taskStatusStepper.skippedStepTitle": "Skipped";
|
|
500
|
+
readonly "templateEditorPage.customFieldExplorer.preview.title": "Template Spec";
|
|
501
|
+
readonly "templateEditorPage.customFieldExplorer.fieldForm.title": "Field Options";
|
|
502
|
+
readonly "templateEditorPage.customFieldExplorer.fieldForm.applyButtonTitle": "Apply";
|
|
503
|
+
readonly "templateEditorPage.customFieldExplorer.selectFieldLabel": "Choose Custom Field Extension";
|
|
504
|
+
readonly "templateEditorPage.customFieldExplorer.fieldPreview.title": "Field Preview";
|
|
505
|
+
readonly "templateEditorPage.templateEditorBrowser.closeConfirmMessage": "Are you sure? Unsaved changes will be lost";
|
|
506
|
+
readonly "templateEditorPage.templateEditorBrowser.saveIconTooltip": "Save all files";
|
|
507
|
+
readonly "templateEditorPage.templateEditorBrowser.reloadIconTooltip": "Reload directory";
|
|
508
|
+
readonly "templateEditorPage.templateEditorBrowser.closeIconTooltip": "Close directory";
|
|
509
|
+
readonly "templateEditorPage.templateEditorIntro.title": "Get started by choosing one of the options below";
|
|
510
|
+
readonly "templateEditorPage.templateEditorIntro.loadLocal.title": "Load Template Directory";
|
|
511
|
+
readonly "templateEditorPage.templateEditorIntro.loadLocal.description": "Load a local template directory, allowing you to both edit and try executing your own template.";
|
|
512
|
+
readonly "templateEditorPage.templateEditorIntro.loadLocal.unsupportedTooltip": "Only supported in some Chromium-based browsers with the page loaded over HTTPS";
|
|
513
|
+
readonly "templateEditorPage.templateEditorIntro.createLocal.title": "Create New Template";
|
|
514
|
+
readonly "templateEditorPage.templateEditorIntro.createLocal.description": "Create a local template directory, allowing you to both edit and try executing your own template.";
|
|
515
|
+
readonly "templateEditorPage.templateEditorIntro.createLocal.unsupportedTooltip": "Only supported in some Chromium-based browsers with the page loaded over HTTPS";
|
|
516
|
+
readonly "templateEditorPage.templateEditorIntro.formEditor.title": "Template Form Playground";
|
|
517
|
+
readonly "templateEditorPage.templateEditorIntro.formEditor.description": "Preview and edit a template form, either using a sample template or by loading a template from the catalog.";
|
|
518
|
+
readonly "templateEditorPage.templateEditorIntro.fieldExplorer.title": "Custom Field Explorer";
|
|
519
|
+
readonly "templateEditorPage.templateEditorIntro.fieldExplorer.description": "View and play around with available installed custom field extensions.";
|
|
520
|
+
readonly "templateEditorPage.templateEditorTextArea.saveIconTooltip": "Save file";
|
|
521
|
+
readonly "templateEditorPage.templateEditorTextArea.refreshIconTooltip": "Reload file";
|
|
522
|
+
readonly "templateEditorPage.templateEditorTextArea.emptyStateParagraph": "Please select an action on the file menu.";
|
|
523
|
+
readonly "templateEditorPage.templateFormPreviewer.title": "Load Existing Template";
|
|
524
|
+
readonly "templateListPage.title": "Create a new component";
|
|
525
|
+
readonly "templateListPage.subtitle": "Create new software components using standard templates in your organization";
|
|
526
|
+
readonly "templateListPage.pageTitle": "Create a new component";
|
|
527
|
+
readonly "templateListPage.templateGroups.defaultTitle": "Templates";
|
|
528
|
+
readonly "templateListPage.templateGroups.otherTitle": "Other Templates";
|
|
529
|
+
readonly "templateListPage.contentHeader.supportButtonTitle": "Create new software components using standard templates. Different templates create different kinds of components (services, websites, documentation, ...).";
|
|
530
|
+
readonly "templateListPage.contentHeader.registerExistingButtonTitle": "Register Existing Component";
|
|
531
|
+
readonly "templateListPage.additionalLinksForEntity.viewTechDocsTitle": "View TechDocs";
|
|
532
|
+
readonly "templateWizardPage.title": "Create a new component";
|
|
533
|
+
readonly "templateWizardPage.subtitle": "Create new software components using standard templates in your organization";
|
|
534
|
+
readonly "templateWizardPage.pageTitle": "Create a new component";
|
|
535
|
+
readonly "templateWizardPage.templateWithTitle": "Create new {{templateTitle}}";
|
|
536
|
+
readonly "templateWizardPage.pageContextMenu.editConfigurationTitle": "Edit Configuration";
|
|
537
|
+
readonly "templateEditorToolbar.customFieldExplorerTooltip": "Custom Fields Explorer";
|
|
538
|
+
readonly "templateEditorToolbar.installedActionsDocumentationTooltip": "Installed Actions Documentation";
|
|
539
|
+
readonly "templateEditorToolbar.templatingExtensionsDocumentationTooltip": "Templating Extensions Documentation";
|
|
540
|
+
readonly "templateEditorToolbar.addToCatalogButton": "Publish";
|
|
541
|
+
readonly "templateEditorToolbar.addToCatalogDialogTitle": "Publish changes";
|
|
542
|
+
readonly "templateEditorToolbar.addToCatalogDialogContent.stepsIntroduction": "Follow the instructions below to create or update a template:";
|
|
543
|
+
readonly "templateEditorToolbar.addToCatalogDialogContent.stepsListItems": "Save the template files in a local directory\nCreate a pull request to a new or existing git repository\nIf the template already exists, the changes will be reflected in the software catalog once the pull request gets merged\nBut if you are creating a new template, follow the documentation linked below to register the new template repository in software catalog";
|
|
544
|
+
readonly "templateEditorToolbar.addToCatalogDialogActions.documentationUrl": "https://backstage.io/docs/features/software-templates/adding-templates/";
|
|
545
|
+
readonly "templateEditorToolbar.addToCatalogDialogActions.documentationButton": "Go to the documentation";
|
|
546
|
+
readonly "templateEditorToolbarFileMenu.button": "File";
|
|
547
|
+
readonly "templateEditorToolbarFileMenu.options.openDirectory": "Open template directory";
|
|
548
|
+
readonly "templateEditorToolbarFileMenu.options.createDirectory": "Create template directory";
|
|
549
|
+
readonly "templateEditorToolbarFileMenu.options.closeEditor": "Close template editor";
|
|
550
|
+
readonly "templateEditorToolbarTemplatesMenu.button": "Templates";
|
|
551
|
+
}>;
|
|
552
|
+
|
|
548
553
|
export { DefaultScaffolderFormDecoratorsApi, _default as default, formDecoratorsApi, formDecoratorsApiRef, scaffolderTranslationRef };
|
|
549
554
|
export type { FormProps, ScaffolderCustomFieldExplorerClassKey, ScaffolderFormDecoratorsApi, ScaffolderTemplateEditorClassKey, ScaffolderTemplateFormPreviewerClassKey, TemplateListPageProps, TemplateWizardPageProps };
|
package/dist/alpha.esm.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
import { scaffolderTranslationRef as scaffolderTranslationRef$1 } from './translation.esm.js';
|
|
2
2
|
export { formDecoratorsApiRef } from './alpha/api/ref.esm.js';
|
|
3
3
|
export { DefaultScaffolderFormDecoratorsApi, formDecoratorsApi } from './alpha/api/FormDecoratorsApi.esm.js';
|
|
4
4
|
import './alpha/formFieldsApi.esm.js';
|
|
5
5
|
export { default } from './alpha/plugin.esm.js';
|
|
6
6
|
export { formFieldsApiRef } from '@backstage/plugin-scaffolder-react/alpha';
|
|
7
|
+
|
|
8
|
+
const scaffolderTranslationRef = scaffolderTranslationRef$1;
|
|
9
|
+
|
|
10
|
+
export { scaffolderTranslationRef };
|
|
7
11
|
//# sourceMappingURL=alpha.esm.js.map
|
package/dist/alpha.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alpha.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"alpha.esm.js","sources":["../src/alpha/index.ts"],"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 */\nexport {\n type FormProps,\n type TemplateListPageProps,\n type TemplateWizardPageProps,\n type ScaffolderCustomFieldExplorerClassKey,\n type ScaffolderTemplateEditorClassKey,\n type ScaffolderTemplateFormPreviewerClassKey,\n} from './components';\n\nimport { scaffolderTranslationRef as _scaffolderTranslationRef } from '../translation';\n\n/**\n * @alpha\n * @deprecated Import from `@backstage/plugin-scaffolder` instead.\n */\nexport const scaffolderTranslationRef = _scaffolderTranslationRef;\nexport * from './api';\nexport {\n formFieldsApiRef,\n type ScaffolderFormFieldsApi,\n} from './formFieldsApi';\n\nexport { default } from './plugin';\n"],"names":["_scaffolderTranslationRef"],"mappings":";;;;;;;AA8BO,MAAM,wBAAA,GAA2BA;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.esm.js","sources":["../../../../src/components/fields/EntityPicker/schema.ts"],"sourcesContent":["/*\n * Copyright 2022 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 */\nimport { z as zod } from 'zod';\nimport { makeFieldSchema } from '@backstage/plugin-scaffolder-react';\n\nexport const createEntityQueryFilterExpressionSchema = (z: typeof zod) =>\n z.record(\n z\n .string()\n .or(z.object({ exists: z.boolean().optional() }))\n .or(z.array(z.string())),\n );\n\n/**\n * @public\n */\nexport const EntityPickerFieldSchema = makeFieldSchema({\n output: z => z.string(),\n uiOptions: z =>\n z.object({\n /**\n * @deprecated Use `catalogFilter` instead.\n */\n allowedKinds: z\n .array(z.string())\n .optional()\n .describe(\n 'DEPRECATED: Use `catalogFilter` instead. List of kinds of entities to derive options from',\n ),\n defaultKind: z\n .string()\n .optional()\n .describe(\n 'The default entity kind. Options of this kind will not be prefixed.',\n ),\n allowArbitraryValues: z\n .boolean()\n .optional()\n .describe('Whether to allow arbitrary user input. Defaults to true'),\n defaultNamespace: z\n .union([z.string(), z.literal(false)])\n .optional()\n .describe(\n 'The default namespace. Options with this namespace will not be prefixed.',\n ),\n catalogFilter: (t => t.or(t.array()))(\n createEntityQueryFilterExpressionSchema(z),\n )\n .optional()\n .describe('List of key-value filter expression for entities'),\n autoSelect: z\n .boolean()\n .optional()\n .describe(\n 'Whether to automatically select an option on blur. Defaults to true.',\n ),\n }),\n});\n\n/**\n * The input props that can be specified under `ui:options` for the\n * `EntityPicker` field extension.\n *\n * @public\n */\nexport type EntityPickerUiOptions = NonNullable<\n (typeof EntityPickerFieldSchema.TProps.uiSchema)['ui:options']\n>;\n\nexport type EntityPickerProps = typeof EntityPickerFieldSchema.TProps;\n\nexport const EntityPickerSchema = EntityPickerFieldSchema.schema;\n\nexport type EntityPickerFilterQuery = zod.TypeOf<\n ReturnType<typeof createEntityQueryFilterExpressionSchema>\n>;\n\nexport type EntityPickerFilterQueryValue =\n EntityPickerFilterQuery[keyof EntityPickerFilterQuery];\n"],"names":[],"mappings":";;AAkBO,MAAM,uCAAA,GAA0C,CAAC,CAAA,KACtD,CAAA,CAAE,MAAA;AAAA,EACA,CAAA,CACG,QAAO,CACP,EAAA,CAAG,EAAE,MAAA,CAAO,EAAE,MAAA,EAAQ,CAAA,CAAE,OAAA,EAAQ,CAAE,UAAS,EAAG,CAAC,CAAA,CAC/C,EAAA,CAAG,EAAE,KAAA,CAAM,CAAA,CAAE,MAAA,EAAQ,CAAC;AAC3B;AAKK,MAAM,0BAA0B,eAAA,CAAgB;AAAA,EACrD,MAAA,EAAQ,CAAA,CAAA,KAAK,CAAA,CAAE,MAAA,EAAO;AAAA,EACtB,SAAA,EAAW,CAAA,CAAA,KACT,CAAA,CAAE,MAAA,CAAO;AAAA;AAAA;AAAA;AAAA,IAIP,YAAA,EAAc,EACX,KAAA,CAAM,CAAA,CAAE,QAAQ,CAAA,CAChB,UAAS,CACT,QAAA;AAAA,MACC;AAAA,KACF;AAAA,IACF,WAAA,EAAa,CAAA,CACV,MAAA,EAAO,CACP,UAAS,CACT,QAAA;AAAA,MACC;AAAA,KACF;AAAA,IACF,sBAAsB,CAAA,CACnB,OAAA,GACA,QAAA,EAAS,CACT,SAAS,yDAAyD,CAAA;AAAA,IACrE,gBAAA,EAAkB,CAAA,CACf,KAAA,CAAM,CAAC,EAAE,MAAA,EAAO,EAAG,CAAA,CAAE,OAAA,CAAQ,KAAK,CAAC,CAAC,CAAA,CACpC,UAAS,CACT,QAAA;AAAA,MACC;AAAA,KACF;AAAA,IACF,gBAAgB,CAAA,CAAA,KAAK,CAAA,CAAE,EAAA,CAAG,CAAA,CAAE,OAAO,CAAA;AAAA,MACjC,wCAAwC,CAAC;AAAA,KAC3C,CACG,QAAA,EAAS,CACT,QAAA,CAAS,kDAAkD,CAAA;AAAA,IAC9D,UAAA,EAAY,CAAA,CACT,OAAA,EAAQ,CACR,UAAS,CACT,QAAA;AAAA,MACC;AAAA;AACF,GACH;AACL,CAAC;AAcM,MAAM,qBAAqB,uBAAA,CAAwB;;;;"}
|
|
1
|
+
{"version":3,"file":"schema.esm.js","sources":["../../../../src/components/fields/EntityPicker/schema.ts"],"sourcesContent":["/*\n * Copyright 2022 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 */\nimport { z as zod } from 'zod/v3';\nimport { makeFieldSchema } from '@backstage/plugin-scaffolder-react';\n\nexport const createEntityQueryFilterExpressionSchema = (z: typeof zod) =>\n z.record(\n z\n .string()\n .or(z.object({ exists: z.boolean().optional() }))\n .or(z.array(z.string())),\n );\n\n/**\n * @public\n */\nexport const EntityPickerFieldSchema = makeFieldSchema({\n output: z => z.string(),\n uiOptions: z =>\n z.object({\n /**\n * @deprecated Use `catalogFilter` instead.\n */\n allowedKinds: z\n .array(z.string())\n .optional()\n .describe(\n 'DEPRECATED: Use `catalogFilter` instead. List of kinds of entities to derive options from',\n ),\n defaultKind: z\n .string()\n .optional()\n .describe(\n 'The default entity kind. Options of this kind will not be prefixed.',\n ),\n allowArbitraryValues: z\n .boolean()\n .optional()\n .describe('Whether to allow arbitrary user input. Defaults to true'),\n defaultNamespace: z\n .union([z.string(), z.literal(false)])\n .optional()\n .describe(\n 'The default namespace. Options with this namespace will not be prefixed.',\n ),\n catalogFilter: (t => t.or(t.array()))(\n createEntityQueryFilterExpressionSchema(z),\n )\n .optional()\n .describe('List of key-value filter expression for entities'),\n autoSelect: z\n .boolean()\n .optional()\n .describe(\n 'Whether to automatically select an option on blur. Defaults to true.',\n ),\n }),\n});\n\n/**\n * The input props that can be specified under `ui:options` for the\n * `EntityPicker` field extension.\n *\n * @public\n */\nexport type EntityPickerUiOptions = NonNullable<\n (typeof EntityPickerFieldSchema.TProps.uiSchema)['ui:options']\n>;\n\nexport type EntityPickerProps = typeof EntityPickerFieldSchema.TProps;\n\nexport const EntityPickerSchema = EntityPickerFieldSchema.schema;\n\nexport type EntityPickerFilterQuery = zod.TypeOf<\n ReturnType<typeof createEntityQueryFilterExpressionSchema>\n>;\n\nexport type EntityPickerFilterQueryValue =\n EntityPickerFilterQuery[keyof EntityPickerFilterQuery];\n"],"names":[],"mappings":";;AAkBO,MAAM,uCAAA,GAA0C,CAAC,CAAA,KACtD,CAAA,CAAE,MAAA;AAAA,EACA,CAAA,CACG,QAAO,CACP,EAAA,CAAG,EAAE,MAAA,CAAO,EAAE,MAAA,EAAQ,CAAA,CAAE,OAAA,EAAQ,CAAE,UAAS,EAAG,CAAC,CAAA,CAC/C,EAAA,CAAG,EAAE,KAAA,CAAM,CAAA,CAAE,MAAA,EAAQ,CAAC;AAC3B;AAKK,MAAM,0BAA0B,eAAA,CAAgB;AAAA,EACrD,MAAA,EAAQ,CAAA,CAAA,KAAK,CAAA,CAAE,MAAA,EAAO;AAAA,EACtB,SAAA,EAAW,CAAA,CAAA,KACT,CAAA,CAAE,MAAA,CAAO;AAAA;AAAA;AAAA;AAAA,IAIP,YAAA,EAAc,EACX,KAAA,CAAM,CAAA,CAAE,QAAQ,CAAA,CAChB,UAAS,CACT,QAAA;AAAA,MACC;AAAA,KACF;AAAA,IACF,WAAA,EAAa,CAAA,CACV,MAAA,EAAO,CACP,UAAS,CACT,QAAA;AAAA,MACC;AAAA,KACF;AAAA,IACF,sBAAsB,CAAA,CACnB,OAAA,GACA,QAAA,EAAS,CACT,SAAS,yDAAyD,CAAA;AAAA,IACrE,gBAAA,EAAkB,CAAA,CACf,KAAA,CAAM,CAAC,EAAE,MAAA,EAAO,EAAG,CAAA,CAAE,OAAA,CAAQ,KAAK,CAAC,CAAC,CAAA,CACpC,UAAS,CACT,QAAA;AAAA,MACC;AAAA,KACF;AAAA,IACF,gBAAgB,CAAA,CAAA,KAAK,CAAA,CAAE,EAAA,CAAG,CAAA,CAAE,OAAO,CAAA;AAAA,MACjC,wCAAwC,CAAC;AAAA,KAC3C,CACG,QAAA,EAAS,CACT,QAAA,CAAS,kDAAkD,CAAA;AAAA,IAC9D,UAAA,EAAY,CAAA,CACT,OAAA,EAAQ,CACR,UAAS,CACT,QAAA;AAAA,MACC;AAAA;AACF,GACH;AACL,CAAC;AAcM,MAAM,qBAAqB,uBAAA,CAAwB;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.esm.js","sources":["../../../../src/components/fields/MultiEntityPicker/schema.ts"],"sourcesContent":["/*\n * Copyright 2022 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 */\nimport { z as zod } from 'zod';\nimport { makeFieldSchema } from '@backstage/plugin-scaffolder-react';\n\nexport const entityQueryFilterExpressionSchema = zod.record(\n zod\n .string()\n .or(zod.object({ exists: zod.boolean().optional() }))\n .or(zod.array(zod.string())),\n);\n\nexport const MultiEntityPickerFieldSchema = makeFieldSchema({\n output: z => z.array(z.string()),\n uiOptions: z =>\n z.object({\n defaultKind: z\n .string()\n .optional()\n .describe(\n 'The default entity kind. Options of this kind will not be prefixed.',\n ),\n allowArbitraryValues: z\n .boolean()\n .optional()\n .describe('Whether to allow arbitrary user input. Defaults to true'),\n defaultNamespace: z\n .union([z.string(), z.literal(false)])\n .optional()\n .describe(\n 'The default namespace. Options with this namespace will not be prefixed.',\n ),\n catalogFilter: z\n .array(entityQueryFilterExpressionSchema)\n .or(entityQueryFilterExpressionSchema)\n .optional()\n .describe('List of key-value filter expression for entities'),\n }),\n});\n\n/**\n * The input props that can be specified under `ui:options` for the\n * `EntityPicker` field extension.\n */\nexport type MultiEntityPickerUiOptions = NonNullable<\n (typeof MultiEntityPickerFieldSchema.TProps.uiSchema)['ui:options']\n>;\n\nexport type MultiEntityPickerProps = typeof MultiEntityPickerFieldSchema.TProps;\n\nexport const MultiEntityPickerSchema = MultiEntityPickerFieldSchema.schema;\n\nexport type MultiEntityPickerFilterQuery = zod.TypeOf<\n typeof entityQueryFilterExpressionSchema\n>;\n\nexport type MultiEntityPickerFilterQueryValue =\n MultiEntityPickerFilterQuery[keyof MultiEntityPickerFilterQuery];\n"],"names":["zod"],"mappings":";;;AAkBO,MAAM,oCAAoCA,CAAA,CAAI,MAAA;AAAA,EACnDA,CAAA,CACG,QAAO,CACP,EAAA,CAAGA,EAAI,MAAA,CAAO,EAAE,MAAA,EAAQA,CAAA,CAAI,OAAA,EAAQ,CAAE,UAAS,EAAG,CAAC,CAAA,CACnD,EAAA,CAAGA,EAAI,KAAA,CAAMA,CAAA,CAAI,MAAA,EAAQ,CAAC;AAC/B;AAEO,MAAM,+BAA+B,eAAA,CAAgB;AAAA,EAC1D,QAAQ,CAAA,CAAA,KAAK,CAAA,CAAE,KAAA,CAAM,CAAA,CAAE,QAAQ,CAAA;AAAA,EAC/B,SAAA,EAAW,CAAA,CAAA,KACT,CAAA,CAAE,MAAA,CAAO;AAAA,IACP,WAAA,EAAa,CAAA,CACV,MAAA,EAAO,CACP,UAAS,CACT,QAAA;AAAA,MACC;AAAA,KACF;AAAA,IACF,sBAAsB,CAAA,CACnB,OAAA,GACA,QAAA,EAAS,CACT,SAAS,yDAAyD,CAAA;AAAA,IACrE,gBAAA,EAAkB,CAAA,CACf,KAAA,CAAM,CAAC,EAAE,MAAA,EAAO,EAAG,CAAA,CAAE,OAAA,CAAQ,KAAK,CAAC,CAAC,CAAA,CACpC,UAAS,CACT,QAAA;AAAA,MACC;AAAA,KACF;AAAA,IACF,aAAA,EAAe,CAAA,CACZ,KAAA,CAAM,iCAAiC,CAAA,CACvC,EAAA,CAAG,iCAAiC,CAAA,CACpC,QAAA,EAAS,CACT,QAAA,CAAS,kDAAkD;AAAA,GAC/D;AACL,CAAC;AAYM,MAAM,0BAA0B,4BAAA,CAA6B;;;;"}
|
|
1
|
+
{"version":3,"file":"schema.esm.js","sources":["../../../../src/components/fields/MultiEntityPicker/schema.ts"],"sourcesContent":["/*\n * Copyright 2022 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 */\nimport { z as zod } from 'zod/v3';\nimport { makeFieldSchema } from '@backstage/plugin-scaffolder-react';\n\nexport const entityQueryFilterExpressionSchema = zod.record(\n zod\n .string()\n .or(zod.object({ exists: zod.boolean().optional() }))\n .or(zod.array(zod.string())),\n);\n\nexport const MultiEntityPickerFieldSchema = makeFieldSchema({\n output: z => z.array(z.string()),\n uiOptions: z =>\n z.object({\n defaultKind: z\n .string()\n .optional()\n .describe(\n 'The default entity kind. Options of this kind will not be prefixed.',\n ),\n allowArbitraryValues: z\n .boolean()\n .optional()\n .describe('Whether to allow arbitrary user input. Defaults to true'),\n defaultNamespace: z\n .union([z.string(), z.literal(false)])\n .optional()\n .describe(\n 'The default namespace. Options with this namespace will not be prefixed.',\n ),\n catalogFilter: z\n .array(entityQueryFilterExpressionSchema)\n .or(entityQueryFilterExpressionSchema)\n .optional()\n .describe('List of key-value filter expression for entities'),\n }),\n});\n\n/**\n * The input props that can be specified under `ui:options` for the\n * `EntityPicker` field extension.\n */\nexport type MultiEntityPickerUiOptions = NonNullable<\n (typeof MultiEntityPickerFieldSchema.TProps.uiSchema)['ui:options']\n>;\n\nexport type MultiEntityPickerProps = typeof MultiEntityPickerFieldSchema.TProps;\n\nexport const MultiEntityPickerSchema = MultiEntityPickerFieldSchema.schema;\n\nexport type MultiEntityPickerFilterQuery = zod.TypeOf<\n typeof entityQueryFilterExpressionSchema\n>;\n\nexport type MultiEntityPickerFilterQueryValue =\n MultiEntityPickerFilterQuery[keyof MultiEntityPickerFilterQuery];\n"],"names":["zod"],"mappings":";;;AAkBO,MAAM,oCAAoCA,CAAA,CAAI,MAAA;AAAA,EACnDA,CAAA,CACG,QAAO,CACP,EAAA,CAAGA,EAAI,MAAA,CAAO,EAAE,MAAA,EAAQA,CAAA,CAAI,OAAA,EAAQ,CAAE,UAAS,EAAG,CAAC,CAAA,CACnD,EAAA,CAAGA,EAAI,KAAA,CAAMA,CAAA,CAAI,MAAA,EAAQ,CAAC;AAC/B;AAEO,MAAM,+BAA+B,eAAA,CAAgB;AAAA,EAC1D,QAAQ,CAAA,CAAA,KAAK,CAAA,CAAE,KAAA,CAAM,CAAA,CAAE,QAAQ,CAAA;AAAA,EAC/B,SAAA,EAAW,CAAA,CAAA,KACT,CAAA,CAAE,MAAA,CAAO;AAAA,IACP,WAAA,EAAa,CAAA,CACV,MAAA,EAAO,CACP,UAAS,CACT,QAAA;AAAA,MACC;AAAA,KACF;AAAA,IACF,sBAAsB,CAAA,CACnB,OAAA,GACA,QAAA,EAAS,CACT,SAAS,yDAAyD,CAAA;AAAA,IACrE,gBAAA,EAAkB,CAAA,CACf,KAAA,CAAM,CAAC,EAAE,MAAA,EAAO,EAAG,CAAA,CAAE,OAAA,CAAQ,KAAK,CAAC,CAAC,CAAA,CACpC,UAAS,CACT,QAAA;AAAA,MACC;AAAA,KACF;AAAA,IACF,aAAA,EAAe,CAAA,CACZ,KAAA,CAAM,iCAAiC,CAAA,CACvC,EAAA,CAAG,iCAAiC,CAAA,CACpC,QAAA,EAAS,CACT,QAAA,CAAS,kDAAkD;AAAA,GAC/D;AACL,CAAC;AAYM,MAAM,0BAA0B,4BAAA,CAA6B;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.esm.js","sources":["../../../src/components/fields/utils.ts"],"sourcesContent":["/*\n * Copyright 2022 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 */\nimport { JSONSchema7 } from 'json-schema';\nimport { z } from 'zod';\nimport zodToJsonSchema from 'zod-to-json-schema';\nimport { FieldSchema as FieldSchemaType } from '@backstage/plugin-scaffolder-react';\n\n/**\n * @public\n * @deprecated - import from {@link @backstage/plugin-scaffolder-react#FieldSchema} instead\n */\nexport interface FieldSchema<T, P> extends FieldSchemaType<T, P> {}\n\n/**\n * @public\n * @deprecated use `makeFieldSchema` instead\n * Utility function to convert zod return and UI options schemas to a\n * CustomFieldExtensionSchema with FieldExtensionComponentProps type inference\n */\n\nexport function makeFieldSchemaFromZod<\n TReturnSchema extends z.ZodType,\n TUiOptionsSchema extends z.ZodType = z.ZodType<any, any, {}>,\n>(\n returnSchema: TReturnSchema,\n uiOptionsSchema?: TUiOptionsSchema,\n): FieldSchema<\n TReturnSchema extends z.ZodType<any, any, infer IReturn> ? IReturn : never,\n TUiOptionsSchema extends z.ZodType<any, any, infer IUiOptions>\n ? IUiOptions\n : never\n> {\n return {\n schema: {\n returnValue: zodToJsonSchema(returnSchema) as JSONSchema7,\n uiOptions: uiOptionsSchema\n ? (zodToJsonSchema(uiOptionsSchema) as JSONSchema7)\n : undefined,\n },\n type: null as any,\n uiOptionsType: null as any,\n TProps: undefined as any,\n TOutput: undefined as any,\n };\n}\n"],"names":[],"mappings":";;AAiCO,SAAS,sBAAA,CAId,cACA,eAAA,EAMA;AACA,EAAA,OAAO;AAAA,IACL,MAAA,EAAQ;AAAA,MACN,WAAA,EAAa,gBAAgB,YAAY,CAAA;AAAA,MACzC,SAAA,EAAW,eAAA,GACN,eAAA,CAAgB,eAAe,CAAA,GAChC;AAAA,KACN;AAAA,IACA,IAAA,EAAM,IAAA;AAAA,IACN,aAAA,EAAe,IAAA;AAAA,IACf,MAAA,EAAQ,MAAA;AAAA,IACR,OAAA,EAAS;AAAA,GACX;AACF;;;;"}
|
|
1
|
+
{"version":3,"file":"utils.esm.js","sources":["../../../src/components/fields/utils.ts"],"sourcesContent":["/*\n * Copyright 2022 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 */\nimport { JSONSchema7 } from 'json-schema';\nimport { z } from 'zod/v3';\nimport zodToJsonSchema from 'zod-to-json-schema';\nimport { FieldSchema as FieldSchemaType } from '@backstage/plugin-scaffolder-react';\n\n/**\n * @public\n * @deprecated - import from {@link @backstage/plugin-scaffolder-react#FieldSchema} instead\n */\nexport interface FieldSchema<T, P> extends FieldSchemaType<T, P> {}\n\n/**\n * @public\n * @deprecated use `makeFieldSchema` instead\n * Utility function to convert zod return and UI options schemas to a\n * CustomFieldExtensionSchema with FieldExtensionComponentProps type inference\n */\n\nexport function makeFieldSchemaFromZod<\n TReturnSchema extends z.ZodType,\n TUiOptionsSchema extends z.ZodType = z.ZodType<any, any, {}>,\n>(\n returnSchema: TReturnSchema,\n uiOptionsSchema?: TUiOptionsSchema,\n): FieldSchema<\n TReturnSchema extends z.ZodType<any, any, infer IReturn> ? IReturn : never,\n TUiOptionsSchema extends z.ZodType<any, any, infer IUiOptions>\n ? IUiOptions\n : never\n> {\n return {\n schema: {\n returnValue: zodToJsonSchema(returnSchema) as JSONSchema7,\n uiOptions: uiOptionsSchema\n ? (zodToJsonSchema(uiOptionsSchema) as JSONSchema7)\n : undefined,\n },\n type: null as any,\n uiOptionsType: null as any,\n TProps: undefined as any,\n TOutput: undefined as any,\n };\n}\n"],"names":[],"mappings":";;AAiCO,SAAS,sBAAA,CAId,cACA,eAAA,EAMA;AACA,EAAA,OAAO;AAAA,IACL,MAAA,EAAQ;AAAA,MACN,WAAA,EAAa,gBAAgB,YAAY,CAAA;AAAA,MACzC,SAAA,EAAW,eAAA,GACN,eAAA,CAAgB,eAAe,CAAA,GAChC;AAAA,KACN;AAAA,IACA,IAAA,EAAM,IAAA;AAAA,IACN,aAAA,EAAe,IAAA;AAAA,IACf,MAAA,EAAQ,MAAA;AAAA,IACR,OAAA,EAAS;AAAA,GACX;AACF;;;;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export { ReviewStepProps } from '@backstage/plugin-scaffolder-react';
|
|
|
8
8
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
9
9
|
import { ApiHolder } from '@backstage/core-plugin-api';
|
|
10
10
|
import { TemplateListPageProps, TemplateWizardPageProps } from '@backstage/plugin-scaffolder/alpha';
|
|
11
|
-
import { z } from 'zod';
|
|
11
|
+
import { z } from 'zod/v3';
|
|
12
12
|
import { FieldValidation } from '@rjsf/utils';
|
|
13
13
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
14
14
|
|
|
@@ -431,7 +431,9 @@ declare const useTemplateSecrets: () => ScaffolderUseTemplateSecrets$1;
|
|
|
431
431
|
* @public
|
|
432
432
|
* @deprecated use import from {@link @backstage/plugin-scaffolder-react#scaffolderApiRef} instead as this has now been moved.
|
|
433
433
|
*/
|
|
434
|
-
declare const scaffolderApiRef: _backstage_frontend_plugin_api.ApiRef<ScaffolderApi$1
|
|
434
|
+
declare const scaffolderApiRef: _backstage_frontend_plugin_api.ApiRef<ScaffolderApi$1> & {
|
|
435
|
+
readonly $$type: "@backstage/ApiRef";
|
|
436
|
+
};
|
|
435
437
|
/**
|
|
436
438
|
* @public
|
|
437
439
|
* @deprecated use import from {@link @backstage/plugin-scaffolder-common#ScaffolderApi} instead as this has now been moved.
|
|
@@ -568,5 +570,188 @@ type TaskPageProps = {
|
|
|
568
570
|
loadingText?: string;
|
|
569
571
|
};
|
|
570
572
|
|
|
571
|
-
|
|
573
|
+
/** @public */
|
|
574
|
+
declare const scaffolderTranslationRef: _backstage_frontend_plugin_api.TranslationRef<"scaffolder", {
|
|
575
|
+
readonly "fields.entityNamePicker.title": "Name";
|
|
576
|
+
readonly "fields.entityNamePicker.description": "Unique name of the component";
|
|
577
|
+
readonly "fields.entityPicker.title": "Entity";
|
|
578
|
+
readonly "fields.entityPicker.description": "An entity from the catalog";
|
|
579
|
+
readonly "fields.entityTagsPicker.title": "Tags";
|
|
580
|
+
readonly "fields.entityTagsPicker.description": "Add any relevant tags, hit 'Enter' to add new tags. Valid format: [a-z0-9+#] separated by [-], at most 63 characters";
|
|
581
|
+
readonly "fields.multiEntityPicker.title": "Entity";
|
|
582
|
+
readonly "fields.multiEntityPicker.description": "An entity from the catalog";
|
|
583
|
+
readonly "fields.myGroupsPicker.title": "Entity";
|
|
584
|
+
readonly "fields.myGroupsPicker.description": "An entity from the catalog";
|
|
585
|
+
readonly "fields.ownedEntityPicker.title": "Entity";
|
|
586
|
+
readonly "fields.ownedEntityPicker.description": "An entity from the catalog";
|
|
587
|
+
readonly "fields.ownerPicker.title": "Owner";
|
|
588
|
+
readonly "fields.ownerPicker.description": "The owner of the component";
|
|
589
|
+
readonly "fields.azureRepoPicker.organization.title": "Organization";
|
|
590
|
+
readonly "fields.azureRepoPicker.organization.description": "The Organization that this repo will belong to";
|
|
591
|
+
readonly "fields.azureRepoPicker.project.title": "Project";
|
|
592
|
+
readonly "fields.azureRepoPicker.project.description": "The Project that this repo will belong to";
|
|
593
|
+
readonly "fields.bitbucketRepoPicker.project.title": "Allowed Projects";
|
|
594
|
+
readonly "fields.bitbucketRepoPicker.project.description": "The Project that this repo will belong to";
|
|
595
|
+
readonly "fields.bitbucketRepoPicker.project.inputTitle": "Projects";
|
|
596
|
+
readonly "fields.bitbucketRepoPicker.workspaces.title": "Allowed Workspaces";
|
|
597
|
+
readonly "fields.bitbucketRepoPicker.workspaces.description": "The Workspace that this repo will belong to";
|
|
598
|
+
readonly "fields.bitbucketRepoPicker.workspaces.inputTitle": "Workspaces";
|
|
599
|
+
readonly "fields.gerritRepoPicker.parent.title": "Parent";
|
|
600
|
+
readonly "fields.gerritRepoPicker.parent.description": "The project parent that the repo will belong to";
|
|
601
|
+
readonly "fields.gerritRepoPicker.owner.title": "Owner";
|
|
602
|
+
readonly "fields.gerritRepoPicker.owner.description": "The owner of the project (optional)";
|
|
603
|
+
readonly "fields.giteaRepoPicker.owner.title": "Owner Available";
|
|
604
|
+
readonly "fields.giteaRepoPicker.owner.description": "Gitea namespace where this repository will belong to. It can be the name of organization, group, subgroup, user, or the project.";
|
|
605
|
+
readonly "fields.giteaRepoPicker.owner.inputTitle": "Owner";
|
|
606
|
+
readonly "fields.githubRepoPicker.owner.title": "Owner Available";
|
|
607
|
+
readonly "fields.githubRepoPicker.owner.description": "The organization, user or project that this repo will belong to";
|
|
608
|
+
readonly "fields.githubRepoPicker.owner.inputTitle": "Owner";
|
|
609
|
+
readonly "fields.gitlabRepoPicker.owner.title": "Owner Available";
|
|
610
|
+
readonly "fields.gitlabRepoPicker.owner.description": "GitLab namespace where this repository will belong to. It can be the name of organization, group, subgroup, user, or the project.";
|
|
611
|
+
readonly "fields.gitlabRepoPicker.owner.inputTitle": "Owner";
|
|
612
|
+
readonly "fields.repoUrlPicker.host.title": "Host";
|
|
613
|
+
readonly "fields.repoUrlPicker.host.description": "The host where the repository will be created";
|
|
614
|
+
readonly "fields.repoUrlPicker.repository.title": "Repositories Available";
|
|
615
|
+
readonly "fields.repoUrlPicker.repository.description": "The name of the repository";
|
|
616
|
+
readonly "fields.repoUrlPicker.repository.inputTitle": "Repository";
|
|
617
|
+
readonly "fields.repoOwnerPicker.title": "Owner";
|
|
618
|
+
readonly "fields.repoOwnerPicker.description": "The owner of the repository";
|
|
619
|
+
readonly "aboutCard.launchTemplate": "Launch Template";
|
|
620
|
+
readonly "actionsPage.content.emptyState.title": "No information to display";
|
|
621
|
+
readonly "actionsPage.content.emptyState.description": "There are no actions installed or there was an issue communicating with backend.";
|
|
622
|
+
readonly "actionsPage.content.searchFieldPlaceholder": "Search for an action";
|
|
623
|
+
readonly "actionsPage.title": "Installed actions";
|
|
624
|
+
readonly "actionsPage.action.input": "Input";
|
|
625
|
+
readonly "actionsPage.action.output": "Output";
|
|
626
|
+
readonly "actionsPage.action.examples": "Examples";
|
|
627
|
+
readonly "actionsPage.subtitle": "This is the collection of all installed actions";
|
|
628
|
+
readonly "actionsPage.pageTitle": "Create a New Component";
|
|
629
|
+
readonly "listTaskPage.content.emptyState.title": "No information to display";
|
|
630
|
+
readonly "listTaskPage.content.emptyState.description": "There are no tasks or there was an issue communicating with backend.";
|
|
631
|
+
readonly "listTaskPage.content.tableCell.template": "Template";
|
|
632
|
+
readonly "listTaskPage.content.tableCell.status": "Status";
|
|
633
|
+
readonly "listTaskPage.content.tableCell.owner": "Owner";
|
|
634
|
+
readonly "listTaskPage.content.tableCell.created": "Created";
|
|
635
|
+
readonly "listTaskPage.content.tableCell.taskID": "Task ID";
|
|
636
|
+
readonly "listTaskPage.content.tableTitle": "Tasks";
|
|
637
|
+
readonly "listTaskPage.title": "List template tasks";
|
|
638
|
+
readonly "listTaskPage.subtitle": "All tasks that have been started";
|
|
639
|
+
readonly "listTaskPage.pageTitle": "Templates Tasks";
|
|
640
|
+
readonly "ownerListPicker.title": "Task Owner";
|
|
641
|
+
readonly "ownerListPicker.options.all": "All";
|
|
642
|
+
readonly "ownerListPicker.options.owned": "Owned";
|
|
643
|
+
readonly "ongoingTask.title": "Run of";
|
|
644
|
+
readonly "ongoingTask.contextMenu.cancel": "Cancel";
|
|
645
|
+
readonly "ongoingTask.contextMenu.retry": "Retry";
|
|
646
|
+
readonly "ongoingTask.contextMenu.startOver": "Start Over";
|
|
647
|
+
readonly "ongoingTask.contextMenu.hideLogs": "Hide Logs";
|
|
648
|
+
readonly "ongoingTask.contextMenu.showLogs": "Show Logs";
|
|
649
|
+
readonly "ongoingTask.contextMenu.hideButtonBar": "Hide Button Bar";
|
|
650
|
+
readonly "ongoingTask.contextMenu.showButtonBar": "Show Button Bar";
|
|
651
|
+
readonly "ongoingTask.subtitle": "Task {{taskId}}";
|
|
652
|
+
readonly "ongoingTask.pageTitle.hasTemplateName": "Run of {{templateName}}";
|
|
653
|
+
readonly "ongoingTask.pageTitle.noTemplateName": "Scaffolder Run";
|
|
654
|
+
readonly "ongoingTask.cancelButtonTitle": "Cancel";
|
|
655
|
+
readonly "ongoingTask.retryButtonTitle": "Retry";
|
|
656
|
+
readonly "ongoingTask.startOverButtonTitle": "Start Over";
|
|
657
|
+
readonly "ongoingTask.hideLogsButtonTitle": "Hide Logs";
|
|
658
|
+
readonly "ongoingTask.showLogsButtonTitle": "Show Logs";
|
|
659
|
+
readonly "templateEditorForm.stepper.emptyText": "There are no spec parameters in the template to preview.";
|
|
660
|
+
readonly "renderSchema.undefined": "No schema defined";
|
|
661
|
+
readonly "renderSchema.tableCell.name": "Name";
|
|
662
|
+
readonly "renderSchema.tableCell.type": "Type";
|
|
663
|
+
readonly "renderSchema.tableCell.title": "Title";
|
|
664
|
+
readonly "renderSchema.tableCell.description": "Description";
|
|
665
|
+
readonly "templatingExtensions.content.values.title": "Values";
|
|
666
|
+
readonly "templatingExtensions.content.values.notAvailable": "There are no global template values defined.";
|
|
667
|
+
readonly "templatingExtensions.content.emptyState.title": "No information to display";
|
|
668
|
+
readonly "templatingExtensions.content.emptyState.description": "There are no templating extensions available or there was an issue communicating with the backend.";
|
|
669
|
+
readonly "templatingExtensions.content.filters.title": "Filters";
|
|
670
|
+
readonly "templatingExtensions.content.filters.schema.input": "Input";
|
|
671
|
+
readonly "templatingExtensions.content.filters.schema.output": "Output";
|
|
672
|
+
readonly "templatingExtensions.content.filters.schema.arguments": "Arguments";
|
|
673
|
+
readonly "templatingExtensions.content.filters.examples": "Examples";
|
|
674
|
+
readonly "templatingExtensions.content.filters.notAvailable": "There are no template filters defined.";
|
|
675
|
+
readonly "templatingExtensions.content.filters.metadataAbsent": "Filter metadata unavailable";
|
|
676
|
+
readonly "templatingExtensions.content.functions.title": "Functions";
|
|
677
|
+
readonly "templatingExtensions.content.functions.schema.output": "Output";
|
|
678
|
+
readonly "templatingExtensions.content.functions.schema.arguments": "Arguments";
|
|
679
|
+
readonly "templatingExtensions.content.functions.examples": "Examples";
|
|
680
|
+
readonly "templatingExtensions.content.functions.notAvailable": "There are no global template functions defined.";
|
|
681
|
+
readonly "templatingExtensions.content.functions.metadataAbsent": "Function metadata unavailable";
|
|
682
|
+
readonly "templatingExtensions.content.searchFieldPlaceholder": "Search for an extension";
|
|
683
|
+
readonly "templatingExtensions.title": "Templating Extensions";
|
|
684
|
+
readonly "templatingExtensions.subtitle": "This is the collection of available templating extensions";
|
|
685
|
+
readonly "templatingExtensions.pageTitle": "Templating Extensions";
|
|
686
|
+
readonly "templateTypePicker.title": "Categories";
|
|
687
|
+
readonly "templateIntroPage.title": "Manage Templates";
|
|
688
|
+
readonly "templateIntroPage.subtitle": "Edit, preview, and try out templates, forms, and custom fields";
|
|
689
|
+
readonly "templateFormPage.title": "Template Editor";
|
|
690
|
+
readonly "templateFormPage.subtitle": "Edit, preview, and try out templates forms";
|
|
691
|
+
readonly "templateCustomFieldPage.title": "Custom Field Explorer";
|
|
692
|
+
readonly "templateCustomFieldPage.subtitle": "Edit, preview, and try out custom fields";
|
|
693
|
+
readonly "templateEditorPage.title": "Template Editor";
|
|
694
|
+
readonly "templateEditorPage.subtitle": "Edit, preview, and try out templates and template forms";
|
|
695
|
+
readonly "templateEditorPage.dryRunResults.title": "Dry-run results";
|
|
696
|
+
readonly "templateEditorPage.dryRunResultsList.title": "Result {{resultId}}";
|
|
697
|
+
readonly "templateEditorPage.dryRunResultsList.deleteButtonTitle": "Delete result";
|
|
698
|
+
readonly "templateEditorPage.dryRunResultsList.downloadButtonTitle": "Download as .zip";
|
|
699
|
+
readonly "templateEditorPage.dryRunResultsView.tab.output": "Output";
|
|
700
|
+
readonly "templateEditorPage.dryRunResultsView.tab.log": "Log";
|
|
701
|
+
readonly "templateEditorPage.dryRunResultsView.tab.files": "Files";
|
|
702
|
+
readonly "templateEditorPage.taskStatusStepper.skippedStepTitle": "Skipped";
|
|
703
|
+
readonly "templateEditorPage.customFieldExplorer.preview.title": "Template Spec";
|
|
704
|
+
readonly "templateEditorPage.customFieldExplorer.fieldForm.title": "Field Options";
|
|
705
|
+
readonly "templateEditorPage.customFieldExplorer.fieldForm.applyButtonTitle": "Apply";
|
|
706
|
+
readonly "templateEditorPage.customFieldExplorer.selectFieldLabel": "Choose Custom Field Extension";
|
|
707
|
+
readonly "templateEditorPage.customFieldExplorer.fieldPreview.title": "Field Preview";
|
|
708
|
+
readonly "templateEditorPage.templateEditorBrowser.closeConfirmMessage": "Are you sure? Unsaved changes will be lost";
|
|
709
|
+
readonly "templateEditorPage.templateEditorBrowser.saveIconTooltip": "Save all files";
|
|
710
|
+
readonly "templateEditorPage.templateEditorBrowser.reloadIconTooltip": "Reload directory";
|
|
711
|
+
readonly "templateEditorPage.templateEditorBrowser.closeIconTooltip": "Close directory";
|
|
712
|
+
readonly "templateEditorPage.templateEditorIntro.title": "Get started by choosing one of the options below";
|
|
713
|
+
readonly "templateEditorPage.templateEditorIntro.loadLocal.title": "Load Template Directory";
|
|
714
|
+
readonly "templateEditorPage.templateEditorIntro.loadLocal.description": "Load a local template directory, allowing you to both edit and try executing your own template.";
|
|
715
|
+
readonly "templateEditorPage.templateEditorIntro.loadLocal.unsupportedTooltip": "Only supported in some Chromium-based browsers with the page loaded over HTTPS";
|
|
716
|
+
readonly "templateEditorPage.templateEditorIntro.createLocal.title": "Create New Template";
|
|
717
|
+
readonly "templateEditorPage.templateEditorIntro.createLocal.description": "Create a local template directory, allowing you to both edit and try executing your own template.";
|
|
718
|
+
readonly "templateEditorPage.templateEditorIntro.createLocal.unsupportedTooltip": "Only supported in some Chromium-based browsers with the page loaded over HTTPS";
|
|
719
|
+
readonly "templateEditorPage.templateEditorIntro.formEditor.title": "Template Form Playground";
|
|
720
|
+
readonly "templateEditorPage.templateEditorIntro.formEditor.description": "Preview and edit a template form, either using a sample template or by loading a template from the catalog.";
|
|
721
|
+
readonly "templateEditorPage.templateEditorIntro.fieldExplorer.title": "Custom Field Explorer";
|
|
722
|
+
readonly "templateEditorPage.templateEditorIntro.fieldExplorer.description": "View and play around with available installed custom field extensions.";
|
|
723
|
+
readonly "templateEditorPage.templateEditorTextArea.saveIconTooltip": "Save file";
|
|
724
|
+
readonly "templateEditorPage.templateEditorTextArea.refreshIconTooltip": "Reload file";
|
|
725
|
+
readonly "templateEditorPage.templateEditorTextArea.emptyStateParagraph": "Please select an action on the file menu.";
|
|
726
|
+
readonly "templateEditorPage.templateFormPreviewer.title": "Load Existing Template";
|
|
727
|
+
readonly "templateListPage.title": "Create a new component";
|
|
728
|
+
readonly "templateListPage.subtitle": "Create new software components using standard templates in your organization";
|
|
729
|
+
readonly "templateListPage.pageTitle": "Create a new component";
|
|
730
|
+
readonly "templateListPage.templateGroups.defaultTitle": "Templates";
|
|
731
|
+
readonly "templateListPage.templateGroups.otherTitle": "Other Templates";
|
|
732
|
+
readonly "templateListPage.contentHeader.supportButtonTitle": "Create new software components using standard templates. Different templates create different kinds of components (services, websites, documentation, ...).";
|
|
733
|
+
readonly "templateListPage.contentHeader.registerExistingButtonTitle": "Register Existing Component";
|
|
734
|
+
readonly "templateListPage.additionalLinksForEntity.viewTechDocsTitle": "View TechDocs";
|
|
735
|
+
readonly "templateWizardPage.title": "Create a new component";
|
|
736
|
+
readonly "templateWizardPage.subtitle": "Create new software components using standard templates in your organization";
|
|
737
|
+
readonly "templateWizardPage.pageTitle": "Create a new component";
|
|
738
|
+
readonly "templateWizardPage.templateWithTitle": "Create new {{templateTitle}}";
|
|
739
|
+
readonly "templateWizardPage.pageContextMenu.editConfigurationTitle": "Edit Configuration";
|
|
740
|
+
readonly "templateEditorToolbar.customFieldExplorerTooltip": "Custom Fields Explorer";
|
|
741
|
+
readonly "templateEditorToolbar.installedActionsDocumentationTooltip": "Installed Actions Documentation";
|
|
742
|
+
readonly "templateEditorToolbar.templatingExtensionsDocumentationTooltip": "Templating Extensions Documentation";
|
|
743
|
+
readonly "templateEditorToolbar.addToCatalogButton": "Publish";
|
|
744
|
+
readonly "templateEditorToolbar.addToCatalogDialogTitle": "Publish changes";
|
|
745
|
+
readonly "templateEditorToolbar.addToCatalogDialogContent.stepsIntroduction": "Follow the instructions below to create or update a template:";
|
|
746
|
+
readonly "templateEditorToolbar.addToCatalogDialogContent.stepsListItems": "Save the template files in a local directory\nCreate a pull request to a new or existing git repository\nIf the template already exists, the changes will be reflected in the software catalog once the pull request gets merged\nBut if you are creating a new template, follow the documentation linked below to register the new template repository in software catalog";
|
|
747
|
+
readonly "templateEditorToolbar.addToCatalogDialogActions.documentationUrl": "https://backstage.io/docs/features/software-templates/adding-templates/";
|
|
748
|
+
readonly "templateEditorToolbar.addToCatalogDialogActions.documentationButton": "Go to the documentation";
|
|
749
|
+
readonly "templateEditorToolbarFileMenu.button": "File";
|
|
750
|
+
readonly "templateEditorToolbarFileMenu.options.openDirectory": "Open template directory";
|
|
751
|
+
readonly "templateEditorToolbarFileMenu.options.createDirectory": "Create template directory";
|
|
752
|
+
readonly "templateEditorToolbarFileMenu.options.closeEditor": "Close template editor";
|
|
753
|
+
readonly "templateEditorToolbarTemplatesMenu.button": "Templates";
|
|
754
|
+
}>;
|
|
755
|
+
|
|
756
|
+
export { EntityNamePickerFieldExtension, EntityPickerFieldExtension, EntityPickerFieldSchema, EntityTagsPickerFieldExtension, EntityTagsPickerFieldSchema, MultiEntityPickerFieldExtension, MyGroupsPickerFieldExtension, MyGroupsPickerFieldSchema, MyGroupsPickerSchema, OwnedEntityPickerFieldExtension, OwnedEntityPickerFieldSchema, OwnerPickerFieldExtension, OwnerPickerFieldSchema, RepoBranchPickerFieldExtension, RepoOwnerPickerFieldExtension, RepoUrlPickerFieldExtension, RepoUrlPickerFieldSchema, ScaffolderClient, ScaffolderFieldExtensions, ScaffolderLayouts, ScaffolderPage, OngoingTask as TaskPage, TemplateTypePicker, createScaffolderFieldExtension, createScaffolderLayout, makeFieldSchemaFromZod, repoPickerValidation, rootRouteRef, scaffolderApiRef, scaffolderPlugin, scaffolderTranslationRef, useTemplateSecrets };
|
|
572
757
|
export type { CustomFieldExtensionSchema, CustomFieldValidator, EntityPickerUiOptions, EntityTagsPickerUiOptions, FieldExtensionComponent, FieldExtensionComponentProps, FieldExtensionOptions, FieldSchema, LayoutOptions, LayoutTemplate, ListActionsResponse, LogEvent, MyGroupsPickerUiOptions, OwnedEntityPickerUiOptions, OwnerPickerUiOptions, RepoUrlPickerUiOptions, RouterProps, ScaffolderApi, ScaffolderDryRunOptions, ScaffolderDryRunResponse, ScaffolderGetIntegrationsListOptions, ScaffolderGetIntegrationsListResponse, ScaffolderOutputlink, ScaffolderScaffoldOptions, ScaffolderScaffoldResponse, ScaffolderStreamLogsOptions, ScaffolderTask, ScaffolderTaskOutput, ScaffolderTaskStatus, ScaffolderUseTemplateSecrets, TaskPageProps, TemplateParameterSchema };
|
package/dist/index.esm.js
CHANGED
|
@@ -12,7 +12,7 @@ import 'react';
|
|
|
12
12
|
import 'react-use/esm/useAsync';
|
|
13
13
|
import './components/fields/VirtualizedListbox.esm.js';
|
|
14
14
|
import '@backstage/core-plugin-api/alpha';
|
|
15
|
-
|
|
15
|
+
export { scaffolderTranslationRef } from './translation.esm.js';
|
|
16
16
|
import '@backstage/plugin-scaffolder-react/alpha';
|
|
17
17
|
export { EntityPickerFieldSchema } from './components/fields/EntityPicker/schema.esm.js';
|
|
18
18
|
import 'react-use/esm/useEffectOnce';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InternalFormDecorator.esm.js","sources":["../../../../../../../packages/scaffolder-internal/src/wiring/InternalFormDecorator.ts"],"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 */\nimport { OpaqueType } from '@internal/opaque';\nimport { z } from 'zod';\n\nimport {\n ScaffolderFormDecorator,\n ScaffolderFormDecoratorContext,\n} from '@backstage/plugin-scaffolder-react/alpha';\nimport { AnyApiRef } from '@backstage/frontend-plugin-api';\n\n/** @alpha */\nexport const OpaqueFormDecorator = OpaqueType.create<{\n public: ScaffolderFormDecorator;\n versions: {\n readonly version: 'v1';\n readonly id: string;\n readonly schema?: {\n input?: {\n [key in string]: (zImpl: typeof z) => z.ZodType;\n };\n };\n readonly deps?: { [key in string]: AnyApiRef };\n readonly decorator: (\n ctx: ScaffolderFormDecoratorContext,\n deps: { [depName in string]: AnyApiRef['T'] },\n ) => Promise<void>;\n };\n}>({ type: '@backstage/scaffolder/FormDecorator', versions: ['v1'] });\n"],"names":[],"mappings":";;AAyBO,MAAM,mBAAA,GAAsB,UAAA,CAAW,MAAA,CAgB3C,EAAE,IAAA,EAAM,uCAAuC,QAAA,EAAU,CAAC,IAAI,CAAA,EAAG;;;;"}
|
|
1
|
+
{"version":3,"file":"InternalFormDecorator.esm.js","sources":["../../../../../../../packages/scaffolder-internal/src/wiring/InternalFormDecorator.ts"],"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 */\nimport { OpaqueType } from '@internal/opaque';\nimport { z } from 'zod/v3';\n\nimport {\n ScaffolderFormDecorator,\n ScaffolderFormDecoratorContext,\n} from '@backstage/plugin-scaffolder-react/alpha';\nimport { AnyApiRef } from '@backstage/frontend-plugin-api';\n\n/** @alpha */\nexport const OpaqueFormDecorator = OpaqueType.create<{\n public: ScaffolderFormDecorator;\n versions: {\n readonly version: 'v1';\n readonly id: string;\n readonly schema?: {\n input?: {\n [key in string]: (zImpl: typeof z) => z.ZodType;\n };\n };\n readonly deps?: { [key in string]: AnyApiRef };\n readonly decorator: (\n ctx: ScaffolderFormDecoratorContext,\n deps: { [depName in string]: AnyApiRef['T'] },\n ) => Promise<void>;\n };\n}>({ type: '@backstage/scaffolder/FormDecorator', versions: ['v1'] });\n"],"names":[],"mappings":";;AAyBO,MAAM,mBAAA,GAAsB,UAAA,CAAW,MAAA,CAgB3C,EAAE,IAAA,EAAM,uCAAuC,QAAA,EAAU,CAAC,IAAI,CAAA,EAAG;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InternalFormField.esm.js","sources":["../../../../../../../packages/scaffolder-internal/src/wiring/InternalFormField.ts"],"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 { OpaqueType } from '@internal/opaque';\nimport { z } from 'zod';\n\nimport {\n FormFieldExtensionData,\n FormField,\n} from '@backstage/plugin-scaffolder-react/alpha';\n\n/** @alpha */\nexport const OpaqueFormField = OpaqueType.create<{\n public: FormField;\n versions: FormFieldExtensionData<z.ZodType, z.ZodType> & {\n readonly version: 'v1';\n };\n}>({ type: '@backstage/scaffolder/FormField', versions: ['v1'] });\n"],"names":[],"mappings":";;AAyBO,MAAM,eAAA,GAAkB,UAAA,CAAW,MAAA,CAKvC,EAAE,IAAA,EAAM,mCAAmC,QAAA,EAAU,CAAC,IAAI,CAAA,EAAG;;;;"}
|
|
1
|
+
{"version":3,"file":"InternalFormField.esm.js","sources":["../../../../../../../packages/scaffolder-internal/src/wiring/InternalFormField.ts"],"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 { OpaqueType } from '@internal/opaque';\nimport { z } from 'zod/v3';\n\nimport {\n FormFieldExtensionData,\n FormField,\n} from '@backstage/plugin-scaffolder-react/alpha';\n\n/** @alpha */\nexport const OpaqueFormField = OpaqueType.create<{\n public: FormField;\n versions: FormFieldExtensionData<z.ZodType, z.ZodType> & {\n readonly version: 'v1';\n };\n}>({ type: '@backstage/scaffolder/FormField', versions: ['v1'] });\n"],"names":[],"mappings":";;AAyBO,MAAM,eAAA,GAAkB,UAAA,CAAW,MAAA,CAKvC,EAAE,IAAA,EAAM,mCAAmC,QAAA,EAAU,CAAC,IAAI,CAAA,EAAG;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var name = "@backstage/plugin-scaffolder";
|
|
2
|
-
var version = "1.
|
|
2
|
+
var version = "1.36.0";
|
|
3
3
|
var description = "The Backstage plugin that helps you create new things";
|
|
4
4
|
var backstage = {
|
|
5
5
|
role: "frontend-plugin",
|
|
@@ -100,7 +100,7 @@ var dependencies = {
|
|
|
100
100
|
"react-use": "^17.2.4",
|
|
101
101
|
"react-window": "^1.8.10",
|
|
102
102
|
yaml: "^2.0.0",
|
|
103
|
-
zod: "^3.25.76",
|
|
103
|
+
zod: "^3.25.76 || ^4.0.0",
|
|
104
104
|
"zod-to-json-schema": "^3.25.1"
|
|
105
105
|
};
|
|
106
106
|
var devDependencies = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"translation.esm.js","sources":["../src/translation.ts"],"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 */\nimport { createTranslationRef } from '@backstage/core-plugin-api/alpha';\n\n/** @alpha */\nexport const scaffolderTranslationRef = createTranslationRef({\n id: 'scaffolder',\n messages: {\n aboutCard: {\n launchTemplate: 'Launch Template',\n },\n actionsPage: {\n title: 'Installed actions',\n pageTitle: 'Create a New Component',\n subtitle: 'This is the collection of all installed actions',\n content: {\n emptyState: {\n title: 'No information to display',\n description:\n 'There are no actions installed or there was an issue communicating with backend.',\n },\n searchFieldPlaceholder: 'Search for an action',\n },\n action: {\n input: 'Input',\n output: 'Output',\n examples: 'Examples',\n },\n },\n fields: {\n entityNamePicker: {\n title: 'Name',\n description: 'Unique name of the component',\n },\n entityPicker: {\n title: 'Entity',\n description: 'An entity from the catalog',\n },\n entityTagsPicker: {\n title: 'Tags',\n description:\n \"Add any relevant tags, hit 'Enter' to add new tags. Valid format: [a-z0-9+#] separated by [-], at most 63 characters\",\n },\n multiEntityPicker: {\n title: 'Entity',\n description: 'An entity from the catalog',\n },\n myGroupsPicker: {\n title: 'Entity',\n description: 'An entity from the catalog',\n },\n ownedEntityPicker: {\n title: 'Entity',\n description: 'An entity from the catalog',\n },\n ownerPicker: {\n title: 'Owner',\n description: 'The owner of the component',\n },\n azureRepoPicker: {\n organization: {\n title: 'Organization',\n description: 'The Organization that this repo will belong to',\n },\n project: {\n title: 'Project',\n description: 'The Project that this repo will belong to',\n },\n },\n bitbucketRepoPicker: {\n workspaces: {\n title: 'Allowed Workspaces',\n inputTitle: 'Workspaces',\n description: 'The Workspace that this repo will belong to',\n },\n project: {\n title: 'Allowed Projects',\n inputTitle: 'Projects',\n description: 'The Project that this repo will belong to',\n },\n },\n gerritRepoPicker: {\n owner: {\n title: 'Owner',\n description: 'The owner of the project (optional)',\n },\n parent: {\n title: 'Parent',\n description: 'The project parent that the repo will belong to',\n },\n },\n giteaRepoPicker: {\n owner: {\n title: 'Owner Available',\n inputTitle: 'Owner',\n description:\n 'Gitea namespace where this repository will belong to. It can be the name of organization, group, subgroup, user, or the project.',\n },\n },\n githubRepoPicker: {\n owner: {\n title: 'Owner Available',\n inputTitle: 'Owner',\n description:\n 'The organization, user or project that this repo will belong to',\n },\n },\n gitlabRepoPicker: {\n owner: {\n title: 'Owner Available',\n inputTitle: 'Owner',\n description:\n 'GitLab namespace where this repository will belong to. It can be the name of organization, group, subgroup, user, or the project.',\n },\n },\n repoUrlPicker: {\n host: {\n title: 'Host',\n description: 'The host where the repository will be created',\n },\n repository: {\n title: 'Repositories Available',\n inputTitle: 'Repository',\n description: 'The name of the repository',\n },\n },\n repoOwnerPicker: {\n title: 'Owner',\n description: 'The owner of the repository',\n },\n },\n listTaskPage: {\n title: 'List template tasks',\n pageTitle: 'Templates Tasks',\n subtitle: 'All tasks that have been started',\n content: {\n emptyState: {\n title: 'No information to display',\n description:\n 'There are no tasks or there was an issue communicating with backend.',\n },\n tableTitle: 'Tasks',\n tableCell: {\n taskID: 'Task ID',\n template: 'Template',\n created: 'Created',\n owner: 'Owner',\n status: 'Status',\n },\n },\n },\n ownerListPicker: {\n title: 'Task Owner',\n options: {\n owned: 'Owned',\n all: 'All',\n },\n },\n ongoingTask: {\n title: 'Run of',\n pageTitle: {\n hasTemplateName: 'Run of {{templateName}}',\n noTemplateName: 'Scaffolder Run',\n },\n subtitle: 'Task {{taskId}}',\n cancelButtonTitle: 'Cancel',\n retryButtonTitle: 'Retry',\n startOverButtonTitle: 'Start Over',\n hideLogsButtonTitle: 'Hide Logs',\n showLogsButtonTitle: 'Show Logs',\n contextMenu: {\n hideLogs: 'Hide Logs',\n showLogs: 'Show Logs',\n hideButtonBar: 'Hide Button Bar',\n retry: 'Retry',\n showButtonBar: 'Show Button Bar',\n startOver: 'Start Over',\n cancel: 'Cancel',\n },\n },\n templateEditorForm: {\n stepper: {\n emptyText: 'There are no spec parameters in the template to preview.',\n },\n },\n renderSchema: {\n tableCell: {\n name: 'Name',\n title: 'Title',\n description: 'Description',\n type: 'Type',\n },\n undefined: 'No schema defined',\n },\n templatingExtensions: {\n title: 'Templating Extensions',\n pageTitle: 'Templating Extensions',\n subtitle: 'This is the collection of available templating extensions',\n content: {\n emptyState: {\n title: 'No information to display',\n description:\n 'There are no templating extensions available or there was an issue communicating with the backend.',\n },\n searchFieldPlaceholder: 'Search for an extension',\n filters: {\n title: 'Filters',\n notAvailable: 'There are no template filters defined.',\n metadataAbsent: 'Filter metadata unavailable',\n schema: {\n input: 'Input',\n arguments: 'Arguments',\n output: 'Output',\n },\n examples: 'Examples',\n },\n functions: {\n title: 'Functions',\n notAvailable: 'There are no global template functions defined.',\n metadataAbsent: 'Function metadata unavailable',\n schema: {\n arguments: 'Arguments',\n output: 'Output',\n },\n examples: 'Examples',\n },\n values: {\n title: 'Values',\n notAvailable: 'There are no global template values defined.',\n },\n },\n },\n templateTypePicker: {\n title: 'Categories',\n },\n templateIntroPage: {\n title: 'Manage Templates',\n subtitle:\n 'Edit, preview, and try out templates, forms, and custom fields',\n },\n templateFormPage: {\n title: 'Template Editor',\n subtitle: 'Edit, preview, and try out templates forms',\n },\n templateCustomFieldPage: {\n title: 'Custom Field Explorer',\n subtitle: 'Edit, preview, and try out custom fields',\n },\n templateEditorPage: {\n title: 'Template Editor',\n subtitle: 'Edit, preview, and try out templates and template forms',\n dryRunResults: {\n title: 'Dry-run results',\n },\n dryRunResultsList: {\n title: 'Result {{resultId}}',\n downloadButtonTitle: 'Download as .zip',\n deleteButtonTitle: 'Delete result',\n },\n dryRunResultsView: {\n tab: {\n files: 'Files',\n log: 'Log',\n output: 'Output',\n },\n },\n taskStatusStepper: {\n skippedStepTitle: 'Skipped',\n },\n customFieldExplorer: {\n selectFieldLabel: 'Choose Custom Field Extension',\n fieldForm: {\n title: 'Field Options',\n applyButtonTitle: 'Apply',\n },\n fieldPreview: {\n title: 'Field Preview',\n },\n preview: {\n title: 'Template Spec',\n },\n },\n templateEditorBrowser: {\n closeConfirmMessage: 'Are you sure? Unsaved changes will be lost',\n saveIconTooltip: 'Save all files',\n reloadIconTooltip: 'Reload directory',\n closeIconTooltip: 'Close directory',\n },\n templateEditorIntro: {\n title: 'Get started by choosing one of the options below',\n loadLocal: {\n title: 'Load Template Directory',\n description:\n 'Load a local template directory, allowing you to both edit and try executing your own template.',\n unsupportedTooltip:\n 'Only supported in some Chromium-based browsers with the page loaded over HTTPS',\n },\n createLocal: {\n title: 'Create New Template',\n description:\n 'Create a local template directory, allowing you to both edit and try executing your own template.',\n unsupportedTooltip:\n 'Only supported in some Chromium-based browsers with the page loaded over HTTPS',\n },\n formEditor: {\n title: 'Template Form Playground',\n description:\n 'Preview and edit a template form, either using a sample template or by loading a template from the catalog.',\n },\n fieldExplorer: {\n title: 'Custom Field Explorer',\n description:\n 'View and play around with available installed custom field extensions.',\n },\n },\n templateEditorTextArea: {\n saveIconTooltip: 'Save file',\n refreshIconTooltip: 'Reload file',\n emptyStateParagraph: 'Please select an action on the file menu.',\n },\n templateFormPreviewer: {\n title: 'Load Existing Template',\n },\n },\n templateListPage: {\n title: 'Create a new component',\n subtitle:\n 'Create new software components using standard templates in your organization',\n pageTitle: 'Create a new component',\n templateGroups: {\n defaultTitle: 'Templates',\n otherTitle: 'Other Templates',\n },\n contentHeader: {\n registerExistingButtonTitle: 'Register Existing Component',\n supportButtonTitle:\n 'Create new software components using standard templates. Different templates create different kinds of components (services, websites, documentation, ...).',\n },\n additionalLinksForEntity: {\n viewTechDocsTitle: 'View TechDocs',\n },\n },\n templateWizardPage: {\n title: 'Create a new component',\n subtitle:\n 'Create new software components using standard templates in your organization',\n pageTitle: 'Create a new component',\n templateWithTitle: 'Create new {{templateTitle}}',\n pageContextMenu: {\n editConfigurationTitle: 'Edit Configuration',\n },\n },\n templateEditorToolbar: {\n customFieldExplorerTooltip: 'Custom Fields Explorer',\n installedActionsDocumentationTooltip: 'Installed Actions Documentation',\n templatingExtensionsDocumentationTooltip:\n 'Templating Extensions Documentation',\n addToCatalogButton: 'Publish',\n addToCatalogDialogTitle: 'Publish changes',\n addToCatalogDialogContent: {\n stepsIntroduction:\n 'Follow the instructions below to create or update a template:',\n stepsListItems:\n 'Save the template files in a local directory\\nCreate a pull request to a new or existing git repository\\nIf the template already exists, the changes will be reflected in the software catalog once the pull request gets merged\\nBut if you are creating a new template, follow the documentation linked below to register the new template repository in software catalog',\n },\n addToCatalogDialogActions: {\n documentationButton: 'Go to the documentation',\n documentationUrl:\n 'https://backstage.io/docs/features/software-templates/adding-templates/',\n },\n },\n templateEditorToolbarFileMenu: {\n button: 'File',\n options: {\n openDirectory: 'Open template directory',\n createDirectory: 'Create template directory',\n closeEditor: 'Close template editor',\n },\n },\n templateEditorToolbarTemplatesMenu: {\n button: 'Templates',\n },\n },\n});\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"translation.esm.js","sources":["../src/translation.ts"],"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 */\nimport { createTranslationRef } from '@backstage/core-plugin-api/alpha';\n\n/** @public */\nexport const scaffolderTranslationRef = createTranslationRef({\n id: 'scaffolder',\n messages: {\n aboutCard: {\n launchTemplate: 'Launch Template',\n },\n actionsPage: {\n title: 'Installed actions',\n pageTitle: 'Create a New Component',\n subtitle: 'This is the collection of all installed actions',\n content: {\n emptyState: {\n title: 'No information to display',\n description:\n 'There are no actions installed or there was an issue communicating with backend.',\n },\n searchFieldPlaceholder: 'Search for an action',\n },\n action: {\n input: 'Input',\n output: 'Output',\n examples: 'Examples',\n },\n },\n fields: {\n entityNamePicker: {\n title: 'Name',\n description: 'Unique name of the component',\n },\n entityPicker: {\n title: 'Entity',\n description: 'An entity from the catalog',\n },\n entityTagsPicker: {\n title: 'Tags',\n description:\n \"Add any relevant tags, hit 'Enter' to add new tags. Valid format: [a-z0-9+#] separated by [-], at most 63 characters\",\n },\n multiEntityPicker: {\n title: 'Entity',\n description: 'An entity from the catalog',\n },\n myGroupsPicker: {\n title: 'Entity',\n description: 'An entity from the catalog',\n },\n ownedEntityPicker: {\n title: 'Entity',\n description: 'An entity from the catalog',\n },\n ownerPicker: {\n title: 'Owner',\n description: 'The owner of the component',\n },\n azureRepoPicker: {\n organization: {\n title: 'Organization',\n description: 'The Organization that this repo will belong to',\n },\n project: {\n title: 'Project',\n description: 'The Project that this repo will belong to',\n },\n },\n bitbucketRepoPicker: {\n workspaces: {\n title: 'Allowed Workspaces',\n inputTitle: 'Workspaces',\n description: 'The Workspace that this repo will belong to',\n },\n project: {\n title: 'Allowed Projects',\n inputTitle: 'Projects',\n description: 'The Project that this repo will belong to',\n },\n },\n gerritRepoPicker: {\n owner: {\n title: 'Owner',\n description: 'The owner of the project (optional)',\n },\n parent: {\n title: 'Parent',\n description: 'The project parent that the repo will belong to',\n },\n },\n giteaRepoPicker: {\n owner: {\n title: 'Owner Available',\n inputTitle: 'Owner',\n description:\n 'Gitea namespace where this repository will belong to. It can be the name of organization, group, subgroup, user, or the project.',\n },\n },\n githubRepoPicker: {\n owner: {\n title: 'Owner Available',\n inputTitle: 'Owner',\n description:\n 'The organization, user or project that this repo will belong to',\n },\n },\n gitlabRepoPicker: {\n owner: {\n title: 'Owner Available',\n inputTitle: 'Owner',\n description:\n 'GitLab namespace where this repository will belong to. It can be the name of organization, group, subgroup, user, or the project.',\n },\n },\n repoUrlPicker: {\n host: {\n title: 'Host',\n description: 'The host where the repository will be created',\n },\n repository: {\n title: 'Repositories Available',\n inputTitle: 'Repository',\n description: 'The name of the repository',\n },\n },\n repoOwnerPicker: {\n title: 'Owner',\n description: 'The owner of the repository',\n },\n },\n listTaskPage: {\n title: 'List template tasks',\n pageTitle: 'Templates Tasks',\n subtitle: 'All tasks that have been started',\n content: {\n emptyState: {\n title: 'No information to display',\n description:\n 'There are no tasks or there was an issue communicating with backend.',\n },\n tableTitle: 'Tasks',\n tableCell: {\n taskID: 'Task ID',\n template: 'Template',\n created: 'Created',\n owner: 'Owner',\n status: 'Status',\n },\n },\n },\n ownerListPicker: {\n title: 'Task Owner',\n options: {\n owned: 'Owned',\n all: 'All',\n },\n },\n ongoingTask: {\n title: 'Run of',\n pageTitle: {\n hasTemplateName: 'Run of {{templateName}}',\n noTemplateName: 'Scaffolder Run',\n },\n subtitle: 'Task {{taskId}}',\n cancelButtonTitle: 'Cancel',\n retryButtonTitle: 'Retry',\n startOverButtonTitle: 'Start Over',\n hideLogsButtonTitle: 'Hide Logs',\n showLogsButtonTitle: 'Show Logs',\n contextMenu: {\n hideLogs: 'Hide Logs',\n showLogs: 'Show Logs',\n hideButtonBar: 'Hide Button Bar',\n retry: 'Retry',\n showButtonBar: 'Show Button Bar',\n startOver: 'Start Over',\n cancel: 'Cancel',\n },\n },\n templateEditorForm: {\n stepper: {\n emptyText: 'There are no spec parameters in the template to preview.',\n },\n },\n renderSchema: {\n tableCell: {\n name: 'Name',\n title: 'Title',\n description: 'Description',\n type: 'Type',\n },\n undefined: 'No schema defined',\n },\n templatingExtensions: {\n title: 'Templating Extensions',\n pageTitle: 'Templating Extensions',\n subtitle: 'This is the collection of available templating extensions',\n content: {\n emptyState: {\n title: 'No information to display',\n description:\n 'There are no templating extensions available or there was an issue communicating with the backend.',\n },\n searchFieldPlaceholder: 'Search for an extension',\n filters: {\n title: 'Filters',\n notAvailable: 'There are no template filters defined.',\n metadataAbsent: 'Filter metadata unavailable',\n schema: {\n input: 'Input',\n arguments: 'Arguments',\n output: 'Output',\n },\n examples: 'Examples',\n },\n functions: {\n title: 'Functions',\n notAvailable: 'There are no global template functions defined.',\n metadataAbsent: 'Function metadata unavailable',\n schema: {\n arguments: 'Arguments',\n output: 'Output',\n },\n examples: 'Examples',\n },\n values: {\n title: 'Values',\n notAvailable: 'There are no global template values defined.',\n },\n },\n },\n templateTypePicker: {\n title: 'Categories',\n },\n templateIntroPage: {\n title: 'Manage Templates',\n subtitle:\n 'Edit, preview, and try out templates, forms, and custom fields',\n },\n templateFormPage: {\n title: 'Template Editor',\n subtitle: 'Edit, preview, and try out templates forms',\n },\n templateCustomFieldPage: {\n title: 'Custom Field Explorer',\n subtitle: 'Edit, preview, and try out custom fields',\n },\n templateEditorPage: {\n title: 'Template Editor',\n subtitle: 'Edit, preview, and try out templates and template forms',\n dryRunResults: {\n title: 'Dry-run results',\n },\n dryRunResultsList: {\n title: 'Result {{resultId}}',\n downloadButtonTitle: 'Download as .zip',\n deleteButtonTitle: 'Delete result',\n },\n dryRunResultsView: {\n tab: {\n files: 'Files',\n log: 'Log',\n output: 'Output',\n },\n },\n taskStatusStepper: {\n skippedStepTitle: 'Skipped',\n },\n customFieldExplorer: {\n selectFieldLabel: 'Choose Custom Field Extension',\n fieldForm: {\n title: 'Field Options',\n applyButtonTitle: 'Apply',\n },\n fieldPreview: {\n title: 'Field Preview',\n },\n preview: {\n title: 'Template Spec',\n },\n },\n templateEditorBrowser: {\n closeConfirmMessage: 'Are you sure? Unsaved changes will be lost',\n saveIconTooltip: 'Save all files',\n reloadIconTooltip: 'Reload directory',\n closeIconTooltip: 'Close directory',\n },\n templateEditorIntro: {\n title: 'Get started by choosing one of the options below',\n loadLocal: {\n title: 'Load Template Directory',\n description:\n 'Load a local template directory, allowing you to both edit and try executing your own template.',\n unsupportedTooltip:\n 'Only supported in some Chromium-based browsers with the page loaded over HTTPS',\n },\n createLocal: {\n title: 'Create New Template',\n description:\n 'Create a local template directory, allowing you to both edit and try executing your own template.',\n unsupportedTooltip:\n 'Only supported in some Chromium-based browsers with the page loaded over HTTPS',\n },\n formEditor: {\n title: 'Template Form Playground',\n description:\n 'Preview and edit a template form, either using a sample template or by loading a template from the catalog.',\n },\n fieldExplorer: {\n title: 'Custom Field Explorer',\n description:\n 'View and play around with available installed custom field extensions.',\n },\n },\n templateEditorTextArea: {\n saveIconTooltip: 'Save file',\n refreshIconTooltip: 'Reload file',\n emptyStateParagraph: 'Please select an action on the file menu.',\n },\n templateFormPreviewer: {\n title: 'Load Existing Template',\n },\n },\n templateListPage: {\n title: 'Create a new component',\n subtitle:\n 'Create new software components using standard templates in your organization',\n pageTitle: 'Create a new component',\n templateGroups: {\n defaultTitle: 'Templates',\n otherTitle: 'Other Templates',\n },\n contentHeader: {\n registerExistingButtonTitle: 'Register Existing Component',\n supportButtonTitle:\n 'Create new software components using standard templates. Different templates create different kinds of components (services, websites, documentation, ...).',\n },\n additionalLinksForEntity: {\n viewTechDocsTitle: 'View TechDocs',\n },\n },\n templateWizardPage: {\n title: 'Create a new component',\n subtitle:\n 'Create new software components using standard templates in your organization',\n pageTitle: 'Create a new component',\n templateWithTitle: 'Create new {{templateTitle}}',\n pageContextMenu: {\n editConfigurationTitle: 'Edit Configuration',\n },\n },\n templateEditorToolbar: {\n customFieldExplorerTooltip: 'Custom Fields Explorer',\n installedActionsDocumentationTooltip: 'Installed Actions Documentation',\n templatingExtensionsDocumentationTooltip:\n 'Templating Extensions Documentation',\n addToCatalogButton: 'Publish',\n addToCatalogDialogTitle: 'Publish changes',\n addToCatalogDialogContent: {\n stepsIntroduction:\n 'Follow the instructions below to create or update a template:',\n stepsListItems:\n 'Save the template files in a local directory\\nCreate a pull request to a new or existing git repository\\nIf the template already exists, the changes will be reflected in the software catalog once the pull request gets merged\\nBut if you are creating a new template, follow the documentation linked below to register the new template repository in software catalog',\n },\n addToCatalogDialogActions: {\n documentationButton: 'Go to the documentation',\n documentationUrl:\n 'https://backstage.io/docs/features/software-templates/adding-templates/',\n },\n },\n templateEditorToolbarFileMenu: {\n button: 'File',\n options: {\n openDirectory: 'Open template directory',\n createDirectory: 'Create template directory',\n closeEditor: 'Close template editor',\n },\n },\n templateEditorToolbarTemplatesMenu: {\n button: 'Templates',\n },\n },\n});\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.36.0",
|
|
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.14.0
|
|
74
|
-
"@backstage/catalog-model": "1.7.
|
|
75
|
-
"@backstage/core-components": "0.18.8
|
|
76
|
-
"@backstage/core-plugin-api": "1.12.4
|
|
77
|
-
"@backstage/errors": "1.2.7",
|
|
78
|
-
"@backstage/frontend-plugin-api": "0.15.0
|
|
79
|
-
"@backstage/integration": "2.0.0
|
|
80
|
-
"@backstage/integration-react": "1.2.16
|
|
81
|
-
"@backstage/plugin-catalog-common": "1.1.8",
|
|
82
|
-
"@backstage/plugin-catalog-react": "2.1.0
|
|
83
|
-
"@backstage/plugin-permission-react": "0.4.41
|
|
84
|
-
"@backstage/plugin-scaffolder-common": "2.0.0
|
|
85
|
-
"@backstage/plugin-scaffolder-react": "1.20.0
|
|
86
|
-
"@backstage/plugin-techdocs-common": "0.1.1",
|
|
87
|
-
"@backstage/plugin-techdocs-react": "1.3.9
|
|
88
|
-
"@backstage/types": "1.2.2",
|
|
73
|
+
"@backstage/catalog-client": "^1.14.0",
|
|
74
|
+
"@backstage/catalog-model": "^1.7.7",
|
|
75
|
+
"@backstage/core-components": "^0.18.8",
|
|
76
|
+
"@backstage/core-plugin-api": "^1.12.4",
|
|
77
|
+
"@backstage/errors": "^1.2.7",
|
|
78
|
+
"@backstage/frontend-plugin-api": "^0.15.0",
|
|
79
|
+
"@backstage/integration": "^2.0.0",
|
|
80
|
+
"@backstage/integration-react": "^1.2.16",
|
|
81
|
+
"@backstage/plugin-catalog-common": "^1.1.8",
|
|
82
|
+
"@backstage/plugin-catalog-react": "^2.1.0",
|
|
83
|
+
"@backstage/plugin-permission-react": "^0.4.41",
|
|
84
|
+
"@backstage/plugin-scaffolder-common": "^2.0.0",
|
|
85
|
+
"@backstage/plugin-scaffolder-react": "^1.20.0",
|
|
86
|
+
"@backstage/plugin-techdocs-common": "^0.1.1",
|
|
87
|
+
"@backstage/plugin-techdocs-react": "^1.3.9",
|
|
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",
|
|
@@ -113,18 +113,18 @@
|
|
|
113
113
|
"react-use": "^17.2.4",
|
|
114
114
|
"react-window": "^1.8.10",
|
|
115
115
|
"yaml": "^2.0.0",
|
|
116
|
-
"zod": "^3.25.76",
|
|
116
|
+
"zod": "^3.25.76 || ^4.0.0",
|
|
117
117
|
"zod-to-json-schema": "^3.25.1"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
|
-
"@backstage/cli": "0.36.0
|
|
121
|
-
"@backstage/core-app-api": "1.19.6
|
|
122
|
-
"@backstage/dev-utils": "1.1.21
|
|
123
|
-
"@backstage/frontend-test-utils": "0.5.1
|
|
124
|
-
"@backstage/plugin-catalog": "2.0.0
|
|
125
|
-
"@backstage/plugin-permission-common": "0.9.
|
|
126
|
-
"@backstage/plugin-techdocs": "1.17.1
|
|
127
|
-
"@backstage/test-utils": "1.7.16
|
|
120
|
+
"@backstage/cli": "^0.36.0",
|
|
121
|
+
"@backstage/core-app-api": "^1.19.6",
|
|
122
|
+
"@backstage/dev-utils": "^1.1.21",
|
|
123
|
+
"@backstage/frontend-test-utils": "^0.5.1",
|
|
124
|
+
"@backstage/plugin-catalog": "^2.0.0",
|
|
125
|
+
"@backstage/plugin-permission-common": "^0.9.7",
|
|
126
|
+
"@backstage/plugin-techdocs": "^1.17.1",
|
|
127
|
+
"@backstage/test-utils": "^1.7.16",
|
|
128
128
|
"@testing-library/dom": "^10.0.0",
|
|
129
129
|
"@testing-library/jest-dom": "^6.0.0",
|
|
130
130
|
"@testing-library/react": "^16.0.0",
|