@sap-ux/adp-tooling 0.11.9 → 0.11.11
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.d.ts
CHANGED
|
@@ -30,6 +30,8 @@ export interface OnpremApp {
|
|
|
30
30
|
title?: string;
|
|
31
31
|
/** Optional: Application variant change content. */
|
|
32
32
|
content?: Content[];
|
|
33
|
+
/** Optional: Description about i18n.properties. */
|
|
34
|
+
i18nDescription?: string;
|
|
33
35
|
}
|
|
34
36
|
export interface CloudApp extends OnpremApp {
|
|
35
37
|
/** bspName associated with the ABAP Cloud repository name of the base application. */
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"bugs": {
|
|
10
10
|
"url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Aadp-tooling"
|
|
11
11
|
},
|
|
12
|
-
"version": "0.11.
|
|
12
|
+
"version": "0.11.11",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"author": "@SAP/ux-tools-team",
|
|
15
15
|
"main": "dist/index.js",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
<% if(!app.i18nDescription){%># This is the resource bundle for <%- app.id %>
|
|
2
2
|
|
|
3
|
-
#Texts for manifest.json
|
|
3
|
+
#Texts for manifest.json<% } else { %><%- app.i18nDescription %><% } %>
|
|
4
4
|
|
|
5
5
|
#XTIT: Application name
|
|
6
6
|
<%- app.id %>_sap.app.title=<%- app.title %>
|
|
@@ -16,17 +16,6 @@
|
|
|
16
16
|
"texts": {
|
|
17
17
|
"i18n": "i18n/i18n.properties"
|
|
18
18
|
}
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"changeType": "appdescr_ui5_addNewModelEnhanceWith",
|
|
22
|
-
"content": {
|
|
23
|
-
"modelId": "i18n",
|
|
24
|
-
"bundleUrl": "i18n/i18n.properties",
|
|
25
|
-
"supportedLocales": [
|
|
26
|
-
""
|
|
27
|
-
],
|
|
28
|
-
"fallbackLocale": ""
|
|
29
|
-
}
|
|
30
19
|
}
|
|
31
20
|
]
|
|
32
21
|
}
|