@sapui5/types 1.122.2 → 1.123.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 +1 -1
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +408 -32
- package/types/sap.chart.d.ts +58 -6
- package/types/sap.collaboration.d.ts +52 -9
- package/types/sap.esh.search.ui.d.ts +2066 -2
- package/types/sap.f.d.ts +435 -98
- package/types/sap.fe.core.d.ts +9 -3
- package/types/sap.fe.macros.d.ts +1075 -70
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +8 -6
- package/types/sap.fe.test.d.ts +309 -7
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1066 -146
- package/types/sap.insights.d.ts +4 -2
- package/types/sap.m.d.ts +3961 -399
- package/types/sap.makit.d.ts +115 -14
- package/types/sap.me.d.ts +84 -7
- package/types/sap.ndc.d.ts +22 -2
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +44 -11
- package/types/sap.sac.df.d.ts +119 -67
- package/types/sap.suite.ui.commons.d.ts +1146 -2474
- package/types/sap.suite.ui.generic.template.d.ts +10 -2
- package/types/sap.suite.ui.microchart.d.ts +190 -28
- package/types/sap.tnt.d.ts +46 -10
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +797 -121
- package/types/sap.ui.comp.d.ts +964 -124
- package/types/sap.ui.core.d.ts +13204 -12618
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +22 -5
- package/types/sap.ui.fl.d.ts +40 -3
- package/types/sap.ui.generic.app.d.ts +217 -201
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +147 -9
- package/types/sap.ui.layout.d.ts +171 -47
- package/types/sap.ui.mdc.d.ts +554 -71
- package/types/sap.ui.richtexteditor.d.ts +28 -2
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +278 -74
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -42
- package/types/sap.ui.ux3.d.ts +527 -34
- package/types/sap.ui.vbm.d.ts +544 -48
- package/types/sap.ui.vk.d.ts +1588 -133
- package/types/sap.ui.vtm.d.ts +373 -27
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +351 -29
- package/types/sap.ui.webc.main.d.ts +1035 -83
- package/types/sap.uiext.inbox.d.ts +124 -13
- package/types/sap.ushell.d.ts +1081 -383
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +123 -23
- package/types/sap.viz.d.ts +2619 -130
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +35 -15
- package/types/sap.zen.crosstab.d.ts +22 -10
- package/types/sap.zen.dsh.d.ts +64 -9
package/types/sap.fe.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/fe/core/AppComponent" {
|
|
4
4
|
import {
|
|
@@ -50,7 +50,9 @@ declare module "sap/fe/core/AppComponent" {
|
|
|
50
50
|
*/
|
|
51
51
|
initializeFeatureToggles(): Promise<void>;
|
|
52
52
|
}
|
|
53
|
-
|
|
53
|
+
/**
|
|
54
|
+
* Describes the settings that can be provided to the AppComponent constructor.
|
|
55
|
+
*/
|
|
54
56
|
export interface $AppComponentSettings extends $UIComponentSettings {}
|
|
55
57
|
}
|
|
56
58
|
|
|
@@ -347,7 +349,11 @@ declare module "sap/fe/core/buildingBlocks/BuildingBlockBase" {
|
|
|
347
349
|
* @experimental (since 1.121.0)
|
|
348
350
|
*/
|
|
349
351
|
export default class BuildingBlockBase extends Control {}
|
|
350
|
-
|
|
352
|
+
/**
|
|
353
|
+
* Describes the settings that can be provided to the BuildingBlockBase constructor.
|
|
354
|
+
*
|
|
355
|
+
* @experimental (since 1.121.0)
|
|
356
|
+
*/
|
|
351
357
|
export interface $BuildingBlockBaseSettings extends $ControlSettings {}
|
|
352
358
|
}
|
|
353
359
|
|