@sapui5/ts-types 1.144.1 → 1.146.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 +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +172 -99
- package/types/sap.f.d.ts +71 -528
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +300 -28
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +165 -4
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1137 -290
- 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 +12 -1
- package/types/sap.fe.test.d.ts +150 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +181 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +356 -29
- 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.ovp.d.ts +32 -2
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +403 -21
- package/types/sap.suite.ui.generic.template.d.ts +46 -1
- package/types/sap.suite.ui.microchart.d.ts +2 -1
- package/types/sap.tnt.d.ts +27 -26
- 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 +76 -2
- package/types/sap.ui.core.d.ts +1173 -456
- 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 +9 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.geomap.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +65 -265
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +357 -50
- package/types/sap.ui.richtexteditor.d.ts +33 -11
- 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 +5 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +77 -3
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +390 -2
- package/types/sap.ui.vtm.d.ts +2 -2
- 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 +188 -131
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +18 -8
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.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/types/sap.ovp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -9,7 +9,12 @@ declare namespace sap {
|
|
|
9
9
|
/**
|
|
10
10
|
* Describes the settings that can be provided to the Component constructor.
|
|
11
11
|
*/
|
|
12
|
-
interface $ComponentSettings extends sap.fe.core.$AppComponentSettings {
|
|
12
|
+
interface $ComponentSettings extends sap.fe.core.$AppComponentSettings {
|
|
13
|
+
renderLeanView?:
|
|
14
|
+
| boolean
|
|
15
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
16
|
+
| `{${string}}`;
|
|
17
|
+
}
|
|
13
18
|
|
|
14
19
|
/**
|
|
15
20
|
* This class contains all extension functions that can be implemented by the application developers in
|
|
@@ -107,6 +112,31 @@ declare namespace sap {
|
|
|
107
112
|
* @returns Metadata object describing this class
|
|
108
113
|
*/
|
|
109
114
|
static getMetadata(): sap.ui.core.ComponentMetadata;
|
|
115
|
+
/**
|
|
116
|
+
* Gets current value of property {@link #getRenderLeanView renderLeanView}.
|
|
117
|
+
*
|
|
118
|
+
* Default value is `true`.
|
|
119
|
+
*
|
|
120
|
+
*
|
|
121
|
+
* @returns Value of property `renderLeanView`
|
|
122
|
+
*/
|
|
123
|
+
getRenderLeanView(): boolean;
|
|
124
|
+
/**
|
|
125
|
+
* Sets a new value for property {@link #getRenderLeanView renderLeanView}.
|
|
126
|
+
*
|
|
127
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
128
|
+
*
|
|
129
|
+
* Default value is `true`.
|
|
130
|
+
*
|
|
131
|
+
*
|
|
132
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
133
|
+
*/
|
|
134
|
+
setRenderLeanView(
|
|
135
|
+
/**
|
|
136
|
+
* New value for property `renderLeanView`
|
|
137
|
+
*/
|
|
138
|
+
bRenderLeanView?: boolean
|
|
139
|
+
): this;
|
|
110
140
|
}
|
|
111
141
|
}
|
|
112
142
|
}
|
package/types/sap.rules.ui.d.ts
CHANGED
package/types/sap.sac.df.d.ts
CHANGED