@sapui5/types 1.114.0 → 1.114.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 +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.core.d.ts +3 -3
- package/types/sap.fe.templates.d.ts +6 -6
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.gantt.d.ts +428 -11
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +7 -9
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +75 -5
- package/types/sap.suite.ui.generic.template.d.ts +2 -2
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +55 -13
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +90 -1
- package/types/sap.ui.core.d.ts +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -1
- package/types/sap.ui.generic.app.d.ts +7 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -16
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +4 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
|
@@ -198,11 +198,11 @@ declare module "sap/fe/core/ExtensionAPI" {
|
|
|
198
198
|
/**
|
|
199
199
|
* The contextPath to be used for the templating process
|
|
200
200
|
*/
|
|
201
|
-
contextPath
|
|
201
|
+
contextPath?: string;
|
|
202
202
|
/**
|
|
203
203
|
* The controller to be attached to the fragment
|
|
204
204
|
*/
|
|
205
|
-
controller
|
|
205
|
+
controller?: object;
|
|
206
206
|
/**
|
|
207
207
|
* The ID of the fragment itself
|
|
208
208
|
*/
|
|
@@ -210,7 +210,7 @@ declare module "sap/fe/core/ExtensionAPI" {
|
|
|
210
210
|
/**
|
|
211
211
|
* The initial binding context
|
|
212
212
|
*/
|
|
213
|
-
initialBindingContext
|
|
213
|
+
initialBindingContext?: Context;
|
|
214
214
|
/**
|
|
215
215
|
* The name of the fragment to be loaded
|
|
216
216
|
*/
|
|
@@ -112,11 +112,11 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
112
112
|
/**
|
|
113
113
|
* The contextPath to be used for the templating process
|
|
114
114
|
*/
|
|
115
|
-
contextPath
|
|
115
|
+
contextPath?: string;
|
|
116
116
|
/**
|
|
117
117
|
* The controller to be attached to the fragment
|
|
118
118
|
*/
|
|
119
|
-
controller
|
|
119
|
+
controller?: object;
|
|
120
120
|
/**
|
|
121
121
|
* The ID of the fragment itself
|
|
122
122
|
*/
|
|
@@ -124,7 +124,7 @@ declare module "sap/fe/templates/ListReport/ExtensionAPI" {
|
|
|
124
124
|
/**
|
|
125
125
|
* The initial binding context
|
|
126
126
|
*/
|
|
127
|
-
initialBindingContext
|
|
127
|
+
initialBindingContext?: Context;
|
|
128
128
|
/**
|
|
129
129
|
* The name of the fragment to be loaded
|
|
130
130
|
*/
|
|
@@ -423,11 +423,11 @@ declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
|
423
423
|
/**
|
|
424
424
|
* The contextPath to be used for the templating process
|
|
425
425
|
*/
|
|
426
|
-
contextPath
|
|
426
|
+
contextPath?: string;
|
|
427
427
|
/**
|
|
428
428
|
* The controller to be attached to the fragment
|
|
429
429
|
*/
|
|
430
|
-
controller
|
|
430
|
+
controller?: object;
|
|
431
431
|
/**
|
|
432
432
|
* The ID of the fragment itself
|
|
433
433
|
*/
|
|
@@ -435,7 +435,7 @@ declare module "sap/fe/templates/ObjectPage/ExtensionAPI" {
|
|
|
435
435
|
/**
|
|
436
436
|
* The initial binding context
|
|
437
437
|
*/
|
|
438
|
-
initialBindingContext
|
|
438
|
+
initialBindingContext?: Context;
|
|
439
439
|
/**
|
|
440
440
|
* The name of the fragment to be loaded
|
|
441
441
|
*/
|
package/types/sap.fe.test.d.ts
CHANGED