Merge branch 'master' into add-additional-scaffolder-permissions

Signed-off-by: Frank Kong <50030060+Zaperex@users.noreply.github.com>
This commit is contained in:
Frank Kong
2024-05-02 09:02:19 -04:00
committed by GitHub
384 changed files with 5528 additions and 2449 deletions
+6
View File
@@ -1,5 +1,11 @@
# @backstage/plugin-scaffolder-common
## 1.5.2-next.1
### Patch Changes
- 9156654: Capturing more event clicks for scaffolder
## 1.5.2-next.0
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-scaffolder-common",
"version": "1.5.2-next.0",
"version": "1.5.2-next.1",
"description": "Common functionalities for the scaffolder, to be shared between scaffolder and scaffolder-backend plugin",
"backstage": {
"role": "common-library"
@@ -141,19 +141,25 @@
},
"presentation": {
"type": "object",
"description": "A way to redefine the labels for actionable buttons.",
"description": "A way to redefine the presentation of the scaffolder.",
"properties": {
"backButtonText": {
"type": "string",
"description": "A button which return the user to one step back."
},
"createButtonText": {
"type": "string",
"description": "A button which start the execution of the template."
},
"reviewButtonText": {
"type": "string",
"description": "A button which open the review step to verify the input prior to start the execution."
"buttonLabels": {
"type": "object",
"description": "A way to redefine the labels for actionable buttons.",
"properties": {
"backButtonText": {
"type": "string",
"description": "A button which return the user to one step back."
},
"createButtonText": {
"type": "string",
"description": "A button which start the execution of the template."
},
"reviewButtonText": {
"type": "string",
"description": "A button which open the review step to verify the input prior to start the execution."
}
}
}
}
},