@sap-ux/fe-fpm-writer 0.28.0 → 0.28.2

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sap-ux/fe-fpm-writer",
3
3
  "description": "SAP Fiori elements flexible programming model writer",
4
- "version": "0.28.0",
4
+ "version": "0.28.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/SAP/open-ux-tools.git",
@@ -31,8 +31,8 @@
31
31
  "semver": "7.5.4",
32
32
  "xml-formatter": "2.6.1",
33
33
  "xpath": "0.0.33",
34
- "@sap-ux/fiori-annotation-api": "0.1.38",
35
- "@sap-ux/project-access": "1.26.9"
34
+ "@sap-ux/fiori-annotation-api": "0.1.39",
35
+ "@sap-ux/project-access": "1.27.0"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/inquirer": "8.2.6",
@@ -42,7 +42,7 @@
42
42
  "@types/mem-fs-editor": "7.0.1",
43
43
  "@types/semver": "7.5.2",
44
44
  "@types/vinyl": "2.0.7",
45
- "@sap-ux/ui-prompting": "0.1.5"
45
+ "@sap-ux/ui-prompting": "0.1.7"
46
46
  },
47
47
  "engines": {
48
48
  "node": ">=18.x"
@@ -12,7 +12,7 @@ sap.ui.define(
12
12
  * @memberOf <%- ns %>.<%- name %>
13
13
  */
14
14
  // onInit: function () {
15
- //
15
+ // PageController.prototype.onInit.apply(this, arguments); // needs to be called to properly initialize the page controller
16
16
  // },
17
17
 
18
18
  /**
@@ -11,7 +11,7 @@ export default class <%- name %> extends Controller {
11
11
  * @memberOf <%- ns %>.<%- name %>
12
12
  */
13
13
  // public onInit(): void {
14
- //
14
+ // super.onInit(); // needs to be called to properly initialize the page controller
15
15
  //}
16
16
 
17
17
  /**
@@ -12,7 +12,7 @@ sap.ui.define(
12
12
  * @memberOf <%- ns %>.<%- name %>
13
13
  */
14
14
  // onInit: function () {
15
- //
15
+ // PageController.prototype.onInit.apply(this, arguments); // needs to be called to properly initialize the page controller
16
16
  // },
17
17
 
18
18
  /**
@@ -11,7 +11,7 @@ export default class <%- name %> extends Controller {
11
11
  * @memberOf <%- ns %>.<%- name %>
12
12
  */
13
13
  // public onInit(): void {
14
- //
14
+ // super.onInit(); // needs to be called to properly initialize the page controller
15
15
  //}
16
16
 
17
17
  /**