@sap-ux/ui5-application-writer 0.24.2 → 0.25.0
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/package.json
CHANGED
|
@@ -147,7 +147,7 @@ function registerSAPFonts() {
|
|
|
147
147
|
};
|
|
148
148
|
//Registering to the icon pool
|
|
149
149
|
IconPool.registerFont(bSuiteTheme);
|
|
150
|
-
})
|
|
150
|
+
});
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
/*eslint-disable fiori-custom/sap-browser-api-warning, fiori-custom/sap-no-dom-access*/
|
|
@@ -182,7 +182,7 @@ sap.registerComponentDependencyPaths(manifestUri)
|
|
|
182
182
|
if (componentName && componentName.length > 0) {
|
|
183
183
|
if (useMockserver && useMockserver === "true") {
|
|
184
184
|
sap.ui.getCore().attachInit(function () {
|
|
185
|
-
registerSAPFonts()
|
|
185
|
+
registerSAPFonts();
|
|
186
186
|
sap.ui.require([componentName.replace(/\./g, "/") + "/localService/mockserver"], function (server) {
|
|
187
187
|
// set up test service for local testing
|
|
188
188
|
server.init();
|
|
@@ -196,7 +196,7 @@ sap.registerComponentDependencyPaths(manifestUri)
|
|
|
196
196
|
|
|
197
197
|
// setting the app title with the i18n text
|
|
198
198
|
sap.ui.getCore().attachInit(function () {
|
|
199
|
-
registerSAPFonts()
|
|
199
|
+
registerSAPFonts();
|
|
200
200
|
var sLocale = sap.ui.getCore().getConfiguration().getLanguage();
|
|
201
201
|
sap.ui.require(["sap/base/i18n/ResourceBundle"], function (ResourceBundle) {
|
|
202
202
|
var oResourceBundle = ResourceBundle.create({
|
|
@@ -209,7 +209,7 @@ sap.registerComponentDependencyPaths(manifestUri)
|
|
|
209
209
|
}
|
|
210
210
|
} else {
|
|
211
211
|
sap.ui.getCore().attachInit(function () {
|
|
212
|
-
registerSAPFonts()
|
|
212
|
+
registerSAPFonts();
|
|
213
213
|
// initialize the ushell sandbox component
|
|
214
214
|
sap.ushell.Container.createRenderer().placeAt("content");
|
|
215
215
|
});
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"devDependencies": {
|
|
9
9
|
"<%- ui5.typesPackage %>": "<%- ui5.typesVersion %>",
|
|
10
10
|
"ui5-tooling-transpile": "^0.7.10",
|
|
11
|
-
"typescript": "^
|
|
11
|
+
"typescript": "^5.1.6",
|
|
12
12
|
"@typescript-eslint/eslint-plugin": "^5.59.0",
|
|
13
13
|
"@typescript-eslint/parser": "^5.59.0",
|
|
14
14
|
"@sap-ux/eslint-plugin-fiori-tools": "^0.2.0"
|
|
15
15
|
}
|
|
16
|
-
}
|
|
16
|
+
}
|