@sapui5/ts-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 +431 -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 +70 -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 +49 -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 -14
- 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
|
@@ -1269,11 +1269,11 @@ declare namespace sap {
|
|
|
1269
1269
|
/**
|
|
1270
1270
|
* The contextPath to be used for the templating process
|
|
1271
1271
|
*/
|
|
1272
|
-
contextPath
|
|
1272
|
+
contextPath?: string;
|
|
1273
1273
|
/**
|
|
1274
1274
|
* The controller to be attached to the fragment
|
|
1275
1275
|
*/
|
|
1276
|
-
controller
|
|
1276
|
+
controller?: object;
|
|
1277
1277
|
/**
|
|
1278
1278
|
* The ID of the fragment itself
|
|
1279
1279
|
*/
|
|
@@ -1281,7 +1281,7 @@ declare namespace sap {
|
|
|
1281
1281
|
/**
|
|
1282
1282
|
* The initial binding context
|
|
1283
1283
|
*/
|
|
1284
|
-
initialBindingContext
|
|
1284
|
+
initialBindingContext?: sap.ui.model.Context;
|
|
1285
1285
|
/**
|
|
1286
1286
|
* The name of the fragment to be loaded
|
|
1287
1287
|
*/
|
|
@@ -110,11 +110,11 @@ declare namespace sap {
|
|
|
110
110
|
/**
|
|
111
111
|
* The contextPath to be used for the templating process
|
|
112
112
|
*/
|
|
113
|
-
contextPath
|
|
113
|
+
contextPath?: string;
|
|
114
114
|
/**
|
|
115
115
|
* The controller to be attached to the fragment
|
|
116
116
|
*/
|
|
117
|
-
controller
|
|
117
|
+
controller?: object;
|
|
118
118
|
/**
|
|
119
119
|
* The ID of the fragment itself
|
|
120
120
|
*/
|
|
@@ -122,7 +122,7 @@ declare namespace sap {
|
|
|
122
122
|
/**
|
|
123
123
|
* The initial binding context
|
|
124
124
|
*/
|
|
125
|
-
initialBindingContext
|
|
125
|
+
initialBindingContext?: sap.ui.model.Context;
|
|
126
126
|
/**
|
|
127
127
|
* The name of the fragment to be loaded
|
|
128
128
|
*/
|
|
@@ -412,11 +412,11 @@ declare namespace sap {
|
|
|
412
412
|
/**
|
|
413
413
|
* The contextPath to be used for the templating process
|
|
414
414
|
*/
|
|
415
|
-
contextPath
|
|
415
|
+
contextPath?: string;
|
|
416
416
|
/**
|
|
417
417
|
* The controller to be attached to the fragment
|
|
418
418
|
*/
|
|
419
|
-
controller
|
|
419
|
+
controller?: object;
|
|
420
420
|
/**
|
|
421
421
|
* The ID of the fragment itself
|
|
422
422
|
*/
|
|
@@ -424,7 +424,7 @@ declare namespace sap {
|
|
|
424
424
|
/**
|
|
425
425
|
* The initial binding context
|
|
426
426
|
*/
|
|
427
|
-
initialBindingContext
|
|
427
|
+
initialBindingContext?: sap.ui.model.Context;
|
|
428
428
|
/**
|
|
429
429
|
* The name of the fragment to be loaded
|
|
430
430
|
*/
|
package/types/sap.fe.test.d.ts
CHANGED