@backstage/plugin-scaffolder 1.35.5-next.2 → 1.36.1
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 +36 -0
- package/README.md +61 -53
- package/dist/alpha/components/EditorSubPage.esm.js +71 -0
- package/dist/alpha/components/EditorSubPage.esm.js.map +1 -0
- package/dist/alpha/components/TasksSubPage.esm.js +21 -0
- package/dist/alpha/components/TasksSubPage.esm.js.map +1 -0
- package/dist/alpha/components/TemplateWizardPage/TemplateWizardPage.esm.js +54 -4
- package/dist/alpha/components/TemplateWizardPage/TemplateWizardPage.esm.js.map +1 -1
- package/dist/alpha/components/TemplatesSubPage.esm.js +128 -0
- package/dist/alpha/components/TemplatesSubPage.esm.js.map +1 -0
- package/dist/alpha/extensions.esm.js +55 -14
- package/dist/alpha/extensions.esm.js.map +1 -1
- package/dist/alpha/formFieldsApi.esm.js +25 -8
- package/dist/alpha/formFieldsApi.esm.js.map +1 -1
- package/dist/alpha/plugin.esm.js +7 -2
- package/dist/alpha/plugin.esm.js.map +1 -1
- package/dist/alpha.d.ts +316 -185
- package/dist/alpha.esm.js +5 -1
- package/dist/alpha.esm.js.map +1 -1
- package/dist/components/ActionsPage/index.esm.js +2 -0
- package/dist/components/ActionsPage/index.esm.js.map +1 -0
- package/dist/components/ListTasksPage/ListTasksPage.esm.js +1 -1
- package/dist/components/ListTasksPage/ListTasksPage.esm.js.map +1 -1
- package/dist/components/OngoingTask/OngoingTask.esm.js +283 -101
- package/dist/components/OngoingTask/OngoingTask.esm.js.map +1 -1
- package/dist/components/OngoingTask/OngoingTaskContextMenu.esm.js +97 -0
- package/dist/components/OngoingTask/OngoingTaskContextMenu.esm.js.map +1 -0
- package/dist/components/TemplatingExtensionsPage/index.esm.js +2 -0
- package/dist/components/TemplatingExtensionsPage/index.esm.js.map +1 -0
- 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 +189 -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 +4 -2
- package/dist/plugins/scaffolder/package.json.esm.js.map +1 -1
- package/dist/translation.esm.js +1 -0
- package/dist/translation.esm.js.map +1 -1
- package/package.json +28 -26
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 {
|
|
@@ -543,6 +362,318 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
543
362
|
field: () => Promise<_backstage_plugin_scaffolder_react_alpha.FormField>;
|
|
544
363
|
};
|
|
545
364
|
}>;
|
|
365
|
+
"sub-page:scaffolder/actions": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
366
|
+
kind: "sub-page";
|
|
367
|
+
name: "actions";
|
|
368
|
+
config: {
|
|
369
|
+
path: string | undefined;
|
|
370
|
+
title: string | undefined;
|
|
371
|
+
};
|
|
372
|
+
configInput: {
|
|
373
|
+
title?: string | undefined;
|
|
374
|
+
path?: string | undefined;
|
|
375
|
+
};
|
|
376
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
377
|
+
optional: true;
|
|
378
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
|
|
379
|
+
optional: true;
|
|
380
|
+
}>;
|
|
381
|
+
inputs: {};
|
|
382
|
+
params: {
|
|
383
|
+
path: string;
|
|
384
|
+
title: string;
|
|
385
|
+
icon?: _backstage_frontend_plugin_api.IconElement;
|
|
386
|
+
loader: () => Promise<JSX.Element>;
|
|
387
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
388
|
+
};
|
|
389
|
+
}>;
|
|
390
|
+
"sub-page:scaffolder/editor": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
391
|
+
kind: "sub-page";
|
|
392
|
+
name: "editor";
|
|
393
|
+
config: {
|
|
394
|
+
path: string | undefined;
|
|
395
|
+
title: string | undefined;
|
|
396
|
+
};
|
|
397
|
+
configInput: {
|
|
398
|
+
title?: string | undefined;
|
|
399
|
+
path?: string | undefined;
|
|
400
|
+
};
|
|
401
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
402
|
+
optional: true;
|
|
403
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
|
|
404
|
+
optional: true;
|
|
405
|
+
}>;
|
|
406
|
+
inputs: {};
|
|
407
|
+
params: {
|
|
408
|
+
path: string;
|
|
409
|
+
title: string;
|
|
410
|
+
icon?: _backstage_frontend_plugin_api.IconElement;
|
|
411
|
+
loader: () => Promise<JSX.Element>;
|
|
412
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
413
|
+
};
|
|
414
|
+
}>;
|
|
415
|
+
"sub-page:scaffolder/tasks": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
416
|
+
kind: "sub-page";
|
|
417
|
+
name: "tasks";
|
|
418
|
+
config: {
|
|
419
|
+
path: string | undefined;
|
|
420
|
+
title: string | undefined;
|
|
421
|
+
};
|
|
422
|
+
configInput: {
|
|
423
|
+
title?: string | undefined;
|
|
424
|
+
path?: string | undefined;
|
|
425
|
+
};
|
|
426
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
427
|
+
optional: true;
|
|
428
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
|
|
429
|
+
optional: true;
|
|
430
|
+
}>;
|
|
431
|
+
inputs: {};
|
|
432
|
+
params: {
|
|
433
|
+
path: string;
|
|
434
|
+
title: string;
|
|
435
|
+
icon?: _backstage_frontend_plugin_api.IconElement;
|
|
436
|
+
loader: () => Promise<JSX.Element>;
|
|
437
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
438
|
+
};
|
|
439
|
+
}>;
|
|
440
|
+
"sub-page:scaffolder/templates": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
441
|
+
config: {
|
|
442
|
+
path: string | undefined;
|
|
443
|
+
title: string | undefined;
|
|
444
|
+
};
|
|
445
|
+
configInput: {
|
|
446
|
+
title?: string | undefined;
|
|
447
|
+
path?: string | undefined;
|
|
448
|
+
};
|
|
449
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
450
|
+
optional: true;
|
|
451
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
|
|
452
|
+
optional: true;
|
|
453
|
+
}>;
|
|
454
|
+
inputs: {};
|
|
455
|
+
kind: "sub-page";
|
|
456
|
+
name: "templates";
|
|
457
|
+
params: {
|
|
458
|
+
path: string;
|
|
459
|
+
title: string;
|
|
460
|
+
icon?: _backstage_frontend_plugin_api.IconElement;
|
|
461
|
+
loader: () => Promise<JSX.Element>;
|
|
462
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
463
|
+
};
|
|
464
|
+
}>;
|
|
465
|
+
"sub-page:scaffolder/templating-extensions": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
466
|
+
kind: "sub-page";
|
|
467
|
+
name: "templating-extensions";
|
|
468
|
+
config: {
|
|
469
|
+
path: string | undefined;
|
|
470
|
+
title: string | undefined;
|
|
471
|
+
};
|
|
472
|
+
configInput: {
|
|
473
|
+
title?: string | undefined;
|
|
474
|
+
path?: string | undefined;
|
|
475
|
+
};
|
|
476
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
477
|
+
optional: true;
|
|
478
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
|
|
479
|
+
optional: true;
|
|
480
|
+
}>;
|
|
481
|
+
inputs: {};
|
|
482
|
+
params: {
|
|
483
|
+
path: string;
|
|
484
|
+
title: string;
|
|
485
|
+
icon?: _backstage_frontend_plugin_api.IconElement;
|
|
486
|
+
loader: () => Promise<JSX.Element>;
|
|
487
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
488
|
+
};
|
|
489
|
+
}>;
|
|
490
|
+
}>;
|
|
491
|
+
|
|
492
|
+
/**
|
|
493
|
+
* @alpha
|
|
494
|
+
* @deprecated Import from `@backstage/plugin-scaffolder` instead.
|
|
495
|
+
*/
|
|
496
|
+
declare const scaffolderTranslationRef: _backstage_frontend_plugin_api.TranslationRef<"scaffolder", {
|
|
497
|
+
readonly "fields.entityNamePicker.title": "Name";
|
|
498
|
+
readonly "fields.entityNamePicker.description": "Unique name of the component";
|
|
499
|
+
readonly "fields.entityPicker.title": "Entity";
|
|
500
|
+
readonly "fields.entityPicker.description": "An entity from the catalog";
|
|
501
|
+
readonly "fields.entityTagsPicker.title": "Tags";
|
|
502
|
+
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";
|
|
503
|
+
readonly "fields.multiEntityPicker.title": "Entity";
|
|
504
|
+
readonly "fields.multiEntityPicker.description": "An entity from the catalog";
|
|
505
|
+
readonly "fields.myGroupsPicker.title": "Entity";
|
|
506
|
+
readonly "fields.myGroupsPicker.description": "An entity from the catalog";
|
|
507
|
+
readonly "fields.ownedEntityPicker.title": "Entity";
|
|
508
|
+
readonly "fields.ownedEntityPicker.description": "An entity from the catalog";
|
|
509
|
+
readonly "fields.ownerPicker.title": "Owner";
|
|
510
|
+
readonly "fields.ownerPicker.description": "The owner of the component";
|
|
511
|
+
readonly "fields.azureRepoPicker.organization.title": "Organization";
|
|
512
|
+
readonly "fields.azureRepoPicker.organization.description": "The Organization that this repo will belong to";
|
|
513
|
+
readonly "fields.azureRepoPicker.project.title": "Project";
|
|
514
|
+
readonly "fields.azureRepoPicker.project.description": "The Project that this repo will belong to";
|
|
515
|
+
readonly "fields.bitbucketRepoPicker.project.title": "Allowed Projects";
|
|
516
|
+
readonly "fields.bitbucketRepoPicker.project.description": "The Project that this repo will belong to";
|
|
517
|
+
readonly "fields.bitbucketRepoPicker.project.inputTitle": "Projects";
|
|
518
|
+
readonly "fields.bitbucketRepoPicker.workspaces.title": "Allowed Workspaces";
|
|
519
|
+
readonly "fields.bitbucketRepoPicker.workspaces.description": "The Workspace that this repo will belong to";
|
|
520
|
+
readonly "fields.bitbucketRepoPicker.workspaces.inputTitle": "Workspaces";
|
|
521
|
+
readonly "fields.gerritRepoPicker.parent.title": "Parent";
|
|
522
|
+
readonly "fields.gerritRepoPicker.parent.description": "The project parent that the repo will belong to";
|
|
523
|
+
readonly "fields.gerritRepoPicker.owner.title": "Owner";
|
|
524
|
+
readonly "fields.gerritRepoPicker.owner.description": "The owner of the project (optional)";
|
|
525
|
+
readonly "fields.giteaRepoPicker.owner.title": "Owner Available";
|
|
526
|
+
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.";
|
|
527
|
+
readonly "fields.giteaRepoPicker.owner.inputTitle": "Owner";
|
|
528
|
+
readonly "fields.githubRepoPicker.owner.title": "Owner Available";
|
|
529
|
+
readonly "fields.githubRepoPicker.owner.description": "The organization, user or project that this repo will belong to";
|
|
530
|
+
readonly "fields.githubRepoPicker.owner.inputTitle": "Owner";
|
|
531
|
+
readonly "fields.gitlabRepoPicker.owner.title": "Owner Available";
|
|
532
|
+
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.";
|
|
533
|
+
readonly "fields.gitlabRepoPicker.owner.inputTitle": "Owner";
|
|
534
|
+
readonly "fields.repoUrlPicker.host.title": "Host";
|
|
535
|
+
readonly "fields.repoUrlPicker.host.description": "The host where the repository will be created";
|
|
536
|
+
readonly "fields.repoUrlPicker.repository.title": "Repositories Available";
|
|
537
|
+
readonly "fields.repoUrlPicker.repository.description": "The name of the repository";
|
|
538
|
+
readonly "fields.repoUrlPicker.repository.inputTitle": "Repository";
|
|
539
|
+
readonly "fields.repoOwnerPicker.title": "Owner";
|
|
540
|
+
readonly "fields.repoOwnerPicker.description": "The owner of the repository";
|
|
541
|
+
readonly "aboutCard.launchTemplate": "Launch Template";
|
|
542
|
+
readonly "actionsPage.content.emptyState.title": "No information to display";
|
|
543
|
+
readonly "actionsPage.content.emptyState.description": "There are no actions installed or there was an issue communicating with backend.";
|
|
544
|
+
readonly "actionsPage.content.searchFieldPlaceholder": "Search for an action";
|
|
545
|
+
readonly "actionsPage.title": "Installed actions";
|
|
546
|
+
readonly "actionsPage.action.input": "Input";
|
|
547
|
+
readonly "actionsPage.action.output": "Output";
|
|
548
|
+
readonly "actionsPage.action.examples": "Examples";
|
|
549
|
+
readonly "actionsPage.subtitle": "This is the collection of all installed actions";
|
|
550
|
+
readonly "actionsPage.pageTitle": "Create a New Component";
|
|
551
|
+
readonly "listTaskPage.content.emptyState.title": "No information to display";
|
|
552
|
+
readonly "listTaskPage.content.emptyState.description": "There are no tasks or there was an issue communicating with backend.";
|
|
553
|
+
readonly "listTaskPage.content.tableCell.template": "Template";
|
|
554
|
+
readonly "listTaskPage.content.tableCell.status": "Status";
|
|
555
|
+
readonly "listTaskPage.content.tableCell.owner": "Owner";
|
|
556
|
+
readonly "listTaskPage.content.tableCell.created": "Created";
|
|
557
|
+
readonly "listTaskPage.content.tableCell.taskID": "Task ID";
|
|
558
|
+
readonly "listTaskPage.content.tableTitle": "Tasks";
|
|
559
|
+
readonly "listTaskPage.title": "List template tasks";
|
|
560
|
+
readonly "listTaskPage.subtitle": "All tasks that have been started";
|
|
561
|
+
readonly "listTaskPage.pageTitle": "Templates Tasks";
|
|
562
|
+
readonly "ownerListPicker.title": "Task Owner";
|
|
563
|
+
readonly "ownerListPicker.options.all": "All";
|
|
564
|
+
readonly "ownerListPicker.options.owned": "Owned";
|
|
565
|
+
readonly "ongoingTask.title": "Run of";
|
|
566
|
+
readonly "ongoingTask.contextMenu.cancel": "Cancel";
|
|
567
|
+
readonly "ongoingTask.contextMenu.retry": "Retry";
|
|
568
|
+
readonly "ongoingTask.contextMenu.startOver": "Start Over";
|
|
569
|
+
readonly "ongoingTask.contextMenu.moreOptions": "More options";
|
|
570
|
+
readonly "ongoingTask.contextMenu.hideLogs": "Hide Logs";
|
|
571
|
+
readonly "ongoingTask.contextMenu.showLogs": "Show Logs";
|
|
572
|
+
readonly "ongoingTask.contextMenu.hideButtonBar": "Hide Button Bar";
|
|
573
|
+
readonly "ongoingTask.contextMenu.showButtonBar": "Show Button Bar";
|
|
574
|
+
readonly "ongoingTask.subtitle": "Task {{taskId}}";
|
|
575
|
+
readonly "ongoingTask.pageTitle.hasTemplateName": "Run of {{templateName}}";
|
|
576
|
+
readonly "ongoingTask.pageTitle.noTemplateName": "Scaffolder Run";
|
|
577
|
+
readonly "ongoingTask.cancelButtonTitle": "Cancel";
|
|
578
|
+
readonly "ongoingTask.retryButtonTitle": "Retry";
|
|
579
|
+
readonly "ongoingTask.startOverButtonTitle": "Start Over";
|
|
580
|
+
readonly "ongoingTask.hideLogsButtonTitle": "Hide Logs";
|
|
581
|
+
readonly "ongoingTask.showLogsButtonTitle": "Show Logs";
|
|
582
|
+
readonly "templateEditorForm.stepper.emptyText": "There are no spec parameters in the template to preview.";
|
|
583
|
+
readonly "renderSchema.undefined": "No schema defined";
|
|
584
|
+
readonly "renderSchema.tableCell.name": "Name";
|
|
585
|
+
readonly "renderSchema.tableCell.type": "Type";
|
|
586
|
+
readonly "renderSchema.tableCell.title": "Title";
|
|
587
|
+
readonly "renderSchema.tableCell.description": "Description";
|
|
588
|
+
readonly "templatingExtensions.content.values.title": "Values";
|
|
589
|
+
readonly "templatingExtensions.content.values.notAvailable": "There are no global template values defined.";
|
|
590
|
+
readonly "templatingExtensions.content.emptyState.title": "No information to display";
|
|
591
|
+
readonly "templatingExtensions.content.emptyState.description": "There are no templating extensions available or there was an issue communicating with the backend.";
|
|
592
|
+
readonly "templatingExtensions.content.filters.title": "Filters";
|
|
593
|
+
readonly "templatingExtensions.content.filters.schema.input": "Input";
|
|
594
|
+
readonly "templatingExtensions.content.filters.schema.output": "Output";
|
|
595
|
+
readonly "templatingExtensions.content.filters.schema.arguments": "Arguments";
|
|
596
|
+
readonly "templatingExtensions.content.filters.examples": "Examples";
|
|
597
|
+
readonly "templatingExtensions.content.filters.notAvailable": "There are no template filters defined.";
|
|
598
|
+
readonly "templatingExtensions.content.filters.metadataAbsent": "Filter metadata unavailable";
|
|
599
|
+
readonly "templatingExtensions.content.functions.title": "Functions";
|
|
600
|
+
readonly "templatingExtensions.content.functions.schema.output": "Output";
|
|
601
|
+
readonly "templatingExtensions.content.functions.schema.arguments": "Arguments";
|
|
602
|
+
readonly "templatingExtensions.content.functions.examples": "Examples";
|
|
603
|
+
readonly "templatingExtensions.content.functions.notAvailable": "There are no global template functions defined.";
|
|
604
|
+
readonly "templatingExtensions.content.functions.metadataAbsent": "Function metadata unavailable";
|
|
605
|
+
readonly "templatingExtensions.content.searchFieldPlaceholder": "Search for an extension";
|
|
606
|
+
readonly "templatingExtensions.title": "Templating Extensions";
|
|
607
|
+
readonly "templatingExtensions.subtitle": "This is the collection of available templating extensions";
|
|
608
|
+
readonly "templatingExtensions.pageTitle": "Templating Extensions";
|
|
609
|
+
readonly "templateTypePicker.title": "Categories";
|
|
610
|
+
readonly "templateIntroPage.title": "Manage Templates";
|
|
611
|
+
readonly "templateIntroPage.subtitle": "Edit, preview, and try out templates, forms, and custom fields";
|
|
612
|
+
readonly "templateFormPage.title": "Template Editor";
|
|
613
|
+
readonly "templateFormPage.subtitle": "Edit, preview, and try out templates forms";
|
|
614
|
+
readonly "templateCustomFieldPage.title": "Custom Field Explorer";
|
|
615
|
+
readonly "templateCustomFieldPage.subtitle": "Edit, preview, and try out custom fields";
|
|
616
|
+
readonly "templateEditorPage.title": "Template Editor";
|
|
617
|
+
readonly "templateEditorPage.subtitle": "Edit, preview, and try out templates and template forms";
|
|
618
|
+
readonly "templateEditorPage.dryRunResults.title": "Dry-run results";
|
|
619
|
+
readonly "templateEditorPage.dryRunResultsList.title": "Result {{resultId}}";
|
|
620
|
+
readonly "templateEditorPage.dryRunResultsList.deleteButtonTitle": "Delete result";
|
|
621
|
+
readonly "templateEditorPage.dryRunResultsList.downloadButtonTitle": "Download as .zip";
|
|
622
|
+
readonly "templateEditorPage.dryRunResultsView.tab.output": "Output";
|
|
623
|
+
readonly "templateEditorPage.dryRunResultsView.tab.log": "Log";
|
|
624
|
+
readonly "templateEditorPage.dryRunResultsView.tab.files": "Files";
|
|
625
|
+
readonly "templateEditorPage.taskStatusStepper.skippedStepTitle": "Skipped";
|
|
626
|
+
readonly "templateEditorPage.customFieldExplorer.preview.title": "Template Spec";
|
|
627
|
+
readonly "templateEditorPage.customFieldExplorer.fieldForm.title": "Field Options";
|
|
628
|
+
readonly "templateEditorPage.customFieldExplorer.fieldForm.applyButtonTitle": "Apply";
|
|
629
|
+
readonly "templateEditorPage.customFieldExplorer.selectFieldLabel": "Choose Custom Field Extension";
|
|
630
|
+
readonly "templateEditorPage.customFieldExplorer.fieldPreview.title": "Field Preview";
|
|
631
|
+
readonly "templateEditorPage.templateEditorBrowser.closeConfirmMessage": "Are you sure? Unsaved changes will be lost";
|
|
632
|
+
readonly "templateEditorPage.templateEditorBrowser.saveIconTooltip": "Save all files";
|
|
633
|
+
readonly "templateEditorPage.templateEditorBrowser.reloadIconTooltip": "Reload directory";
|
|
634
|
+
readonly "templateEditorPage.templateEditorBrowser.closeIconTooltip": "Close directory";
|
|
635
|
+
readonly "templateEditorPage.templateEditorIntro.title": "Get started by choosing one of the options below";
|
|
636
|
+
readonly "templateEditorPage.templateEditorIntro.loadLocal.title": "Load Template Directory";
|
|
637
|
+
readonly "templateEditorPage.templateEditorIntro.loadLocal.description": "Load a local template directory, allowing you to both edit and try executing your own template.";
|
|
638
|
+
readonly "templateEditorPage.templateEditorIntro.loadLocal.unsupportedTooltip": "Only supported in some Chromium-based browsers with the page loaded over HTTPS";
|
|
639
|
+
readonly "templateEditorPage.templateEditorIntro.createLocal.title": "Create New Template";
|
|
640
|
+
readonly "templateEditorPage.templateEditorIntro.createLocal.description": "Create a local template directory, allowing you to both edit and try executing your own template.";
|
|
641
|
+
readonly "templateEditorPage.templateEditorIntro.createLocal.unsupportedTooltip": "Only supported in some Chromium-based browsers with the page loaded over HTTPS";
|
|
642
|
+
readonly "templateEditorPage.templateEditorIntro.formEditor.title": "Template Form Playground";
|
|
643
|
+
readonly "templateEditorPage.templateEditorIntro.formEditor.description": "Preview and edit a template form, either using a sample template or by loading a template from the catalog.";
|
|
644
|
+
readonly "templateEditorPage.templateEditorIntro.fieldExplorer.title": "Custom Field Explorer";
|
|
645
|
+
readonly "templateEditorPage.templateEditorIntro.fieldExplorer.description": "View and play around with available installed custom field extensions.";
|
|
646
|
+
readonly "templateEditorPage.templateEditorTextArea.saveIconTooltip": "Save file";
|
|
647
|
+
readonly "templateEditorPage.templateEditorTextArea.refreshIconTooltip": "Reload file";
|
|
648
|
+
readonly "templateEditorPage.templateEditorTextArea.emptyStateParagraph": "Please select an action on the file menu.";
|
|
649
|
+
readonly "templateEditorPage.templateFormPreviewer.title": "Load Existing Template";
|
|
650
|
+
readonly "templateListPage.title": "Create a new component";
|
|
651
|
+
readonly "templateListPage.subtitle": "Create new software components using standard templates in your organization";
|
|
652
|
+
readonly "templateListPage.pageTitle": "Create a new component";
|
|
653
|
+
readonly "templateListPage.templateGroups.defaultTitle": "Templates";
|
|
654
|
+
readonly "templateListPage.templateGroups.otherTitle": "Other Templates";
|
|
655
|
+
readonly "templateListPage.contentHeader.supportButtonTitle": "Create new software components using standard templates. Different templates create different kinds of components (services, websites, documentation, ...).";
|
|
656
|
+
readonly "templateListPage.contentHeader.registerExistingButtonTitle": "Register Existing Component";
|
|
657
|
+
readonly "templateListPage.additionalLinksForEntity.viewTechDocsTitle": "View TechDocs";
|
|
658
|
+
readonly "templateWizardPage.title": "Create a new component";
|
|
659
|
+
readonly "templateWizardPage.subtitle": "Create new software components using standard templates in your organization";
|
|
660
|
+
readonly "templateWizardPage.pageTitle": "Create a new component";
|
|
661
|
+
readonly "templateWizardPage.templateWithTitle": "Create new {{templateTitle}}";
|
|
662
|
+
readonly "templateWizardPage.pageContextMenu.editConfigurationTitle": "Edit Configuration";
|
|
663
|
+
readonly "templateEditorToolbar.customFieldExplorerTooltip": "Custom Fields Explorer";
|
|
664
|
+
readonly "templateEditorToolbar.installedActionsDocumentationTooltip": "Installed Actions Documentation";
|
|
665
|
+
readonly "templateEditorToolbar.templatingExtensionsDocumentationTooltip": "Templating Extensions Documentation";
|
|
666
|
+
readonly "templateEditorToolbar.addToCatalogButton": "Publish";
|
|
667
|
+
readonly "templateEditorToolbar.addToCatalogDialogTitle": "Publish changes";
|
|
668
|
+
readonly "templateEditorToolbar.addToCatalogDialogContent.stepsIntroduction": "Follow the instructions below to create or update a template:";
|
|
669
|
+
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";
|
|
670
|
+
readonly "templateEditorToolbar.addToCatalogDialogActions.documentationUrl": "https://backstage.io/docs/features/software-templates/adding-templates/";
|
|
671
|
+
readonly "templateEditorToolbar.addToCatalogDialogActions.documentationButton": "Go to the documentation";
|
|
672
|
+
readonly "templateEditorToolbarFileMenu.button": "File";
|
|
673
|
+
readonly "templateEditorToolbarFileMenu.options.openDirectory": "Open template directory";
|
|
674
|
+
readonly "templateEditorToolbarFileMenu.options.createDirectory": "Create template directory";
|
|
675
|
+
readonly "templateEditorToolbarFileMenu.options.closeEditor": "Close template editor";
|
|
676
|
+
readonly "templateEditorToolbarTemplatesMenu.button": "Templates";
|
|
546
677
|
}>;
|
|
547
678
|
|
|
548
679
|
export { DefaultScaffolderFormDecoratorsApi, _default as default, formDecoratorsApi, formDecoratorsApiRef, scaffolderTranslationRef };
|
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;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|