@sap-ux/fe-fpm-writer 0.24.4 → 0.24.5
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
|
@@ -2,7 +2,7 @@ import ControllerExtension from 'sap/ui/core/mvc/ControllerExtension';
|
|
|
2
2
|
import ExtensionAPI from 'sap/fe/<%- typeof extension === "object" ? `templates/${extension.pageType}` : "core" -%>/ExtensionAPI';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
|
-
* @namespace <%- ns
|
|
5
|
+
* @namespace <%- ns %>
|
|
6
6
|
* @controller
|
|
7
7
|
*/
|
|
8
8
|
export default class <%- name %> extends ControllerExtension<ExtensionAPI> {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import Controller from 'sap/ui/core/mvc/Controller'; /** If UI5 version 1.94 or newer can be used, the change the base controller to sap/fe/core/PageController to get full FEv4 FPM support */
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* @namespace <%- ns
|
|
4
|
+
* @namespace <%- ns %>
|
|
5
5
|
*/
|
|
6
6
|
export default class <%- name %> extends Controller {
|
|
7
7
|
|