@sap-ux/fiori-generator-shared 0.13.44 → 0.13.46
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/dist/types/app-gen.d.ts +2 -0
- package/package.json +6 -6
- package/templates/README.md +2 -1
package/dist/types/app-gen.d.ts
CHANGED
|
@@ -68,6 +68,8 @@ export interface AppGenInfo {
|
|
|
68
68
|
showMockDataInfo?: boolean;
|
|
69
69
|
/** Text used to launch the application */
|
|
70
70
|
launchText?: string;
|
|
71
|
+
/** Flag indicating whether value help metadata was downloaded */
|
|
72
|
+
valueHelpDownloaded?: boolean;
|
|
71
73
|
/**
|
|
72
74
|
* An array used to store information on the various entities, e.g main, navigation entity, and filter entity type.
|
|
73
75
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/fiori-generator-shared",
|
|
3
3
|
"description": "Commonly used shared functionality and types to support the fiori generator.",
|
|
4
|
-
"version": "0.13.
|
|
4
|
+
"version": "0.13.46",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"os-name": "4.0.1",
|
|
26
26
|
"semver": "7.5.4",
|
|
27
27
|
"@sap-ux/btp-utils": "1.1.6",
|
|
28
|
-
"@sap-ux/project-access": "1.
|
|
29
|
-
"@sap-ux/telemetry": "0.6.
|
|
28
|
+
"@sap-ux/project-access": "1.33.0",
|
|
29
|
+
"@sap-ux/telemetry": "0.6.50"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/mem-fs-editor": "7.0.1",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"@types/semver": "7.5.2",
|
|
35
35
|
"@types/vscode": "1.73.1",
|
|
36
36
|
"@types/yeoman-environment": "2.10.11",
|
|
37
|
-
"@sap-ux/axios-extension": "1.
|
|
38
|
-
"@sap-ux/logger": "0.
|
|
39
|
-
"@sap-ux/store": "1.4.
|
|
37
|
+
"@sap-ux/axios-extension": "1.25.2",
|
|
38
|
+
"@sap-ux/logger": "0.8.0",
|
|
39
|
+
"@sap-ux/store": "1.4.2"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=20.x"
|
package/templates/README.md
CHANGED
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
|**UI5 Theme**<br><%= locals.ui5Theme ? locals.ui5Theme : '' %>|
|
|
16
16
|
|**UI5 Version**<br><%= locals.ui5Version ? locals.ui5Version : '' %>|
|
|
17
17
|
|**Enable TypeScript**<br><% if(locals.enableTypeScript === true) { %><%= "True" %><% } else { %><%= "False" %><% }%>|
|
|
18
|
-
|**Add Eslint configuration**<br><% if(locals.enableEslint === true) { %><%= "True, see https://www.npmjs.com/package/eslint-plugin-fiori-custom for the eslint rules." %><% } else { %><%= "False" %><% }%>|<% if
|
|
18
|
+
|**Add Eslint configuration**<br><% if(locals.enableEslint === true) { %><%= "True, see https://www.npmjs.com/package/eslint-plugin-fiori-custom for the eslint rules." %><% } else { %><%= "False" %><% }%>|<% if(locals.valueHelpDownloaded === true) { %>
|
|
19
|
+
|**Value Help Metadata**<br>Downloaded for external services|<% } %><% if (locals.entityRelatedConfig) locals.entityRelatedConfig.forEach(entry => { %>
|
|
19
20
|
|**<%= entry.type %>**<br><%= entry.value %>|<%})%>
|
|
20
21
|
|
|
21
22
|
## <%= appName %>
|