Skip to content

Commit bc249d4

Browse files
feat: enable questions with guiOptions.type = "label" (#91)
1 parent 7fe80fe commit bc249d4

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "code-snippet",
3-
"version": "0.0.28",
3+
"version": "0.0.29",
44
"displayName": "Code Snippet",
55
"publisher": "SAPOSS",
66
"author": {

frontend/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "code-snippet-frontend",
33
"displayName": "Code Snippet Frontend",
4-
"version": "0.0.5",
4+
"version": "0.0.6",
55
"publisher": "SAP",
66
"license": "Apache 2.0",
77
"description": "Frontend for the Code Snippet framework",
@@ -21,6 +21,7 @@
2121
"@sap-devx/inquirer-gui-folder-browser-plugin": "0.0.3",
2222
"@sap-devx/inquirer-gui-login-plugin": "0.0.4",
2323
"@sap-devx/inquirer-gui-tiles-plugin": "0.0.8",
24+
"@sap-devx/inquirer-gui-label-plugin": "0.0.1",
2425
"core-js": "3.6.5",
2526
"lodash": "4.17.20",
2627
"material-design-icons-iconfont": "6.1.0",

frontend/src/App.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ import FileBrowserPlugin from "@sap-devx/inquirer-gui-file-browser-plugin";
7070
import FolderBrowserPlugin from "@sap-devx/inquirer-gui-folder-browser-plugin";
7171
import LoginPlugin from "@sap-devx/inquirer-gui-login-plugin";
7272
import TilesPlugin from "@sap-devx/inquirer-gui-tiles-plugin";
73+
import LabelPlugin from "@sap-devx/inquirer-gui-label-plugin";
7374
7475
const FUNCTION = "__Function";
7576
const PENDING = "pending";
@@ -322,6 +323,7 @@ export default {
322323
this.registerPlugin(FolderBrowserPlugin);
323324
this.registerPlugin(LoginPlugin);
324325
this.registerPlugin(TilesPlugin);
326+
this.registerPlugin(LabelPlugin);
325327
326328
this.isInVsCode()
327329
? (this.consoleClass = "consoleClassHidden")

0 commit comments

Comments
 (0)