@sapui5/types 1.141.3 → 1.141.4
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.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- 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 +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.sac.df.d.ts +7 -9
- 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.fe.ariba.d.ts
CHANGED
package/types/sap.fe.base.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.ina.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.sac.df.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.141.
|
|
1
|
+
// For Library Version: 1.141.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/sac/df/library" {}
|
|
4
4
|
|
|
@@ -83,8 +83,6 @@ declare module "sap/sac/df/DataAnalyzer" {
|
|
|
83
83
|
|
|
84
84
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
85
85
|
|
|
86
|
-
import DataAnalyzerPanelName from "sap/sac/df/types/DataAnalyzerPanelName";
|
|
87
|
-
|
|
88
86
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
89
87
|
|
|
90
88
|
/**
|
|
@@ -145,12 +143,12 @@ declare module "sap/sac/df/DataAnalyzer" {
|
|
|
145
143
|
/**
|
|
146
144
|
* Gets current value of property {@link #getSelectedPanel selectedPanel}.
|
|
147
145
|
*
|
|
148
|
-
* Selected panel item
|
|
146
|
+
* Selected panel item of type {@link sap.sac.df.types.DataAnalyzerPanelName DataAnalyzerPanelName}
|
|
149
147
|
*
|
|
150
148
|
*
|
|
151
149
|
* @returns Value of property `selectedPanel`
|
|
152
150
|
*/
|
|
153
|
-
getSelectedPanel():
|
|
151
|
+
getSelectedPanel(): string;
|
|
154
152
|
/**
|
|
155
153
|
* Gets current value of property {@link #getShowTitle showTitle}.
|
|
156
154
|
*
|
|
@@ -199,7 +197,7 @@ declare module "sap/sac/df/DataAnalyzer" {
|
|
|
199
197
|
/**
|
|
200
198
|
* Sets a new value for property {@link #getSelectedPanel selectedPanel}.
|
|
201
199
|
*
|
|
202
|
-
* Selected panel item
|
|
200
|
+
* Selected panel item of type {@link sap.sac.df.types.DataAnalyzerPanelName DataAnalyzerPanelName}
|
|
203
201
|
*
|
|
204
202
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
205
203
|
*
|
|
@@ -210,7 +208,7 @@ declare module "sap/sac/df/DataAnalyzer" {
|
|
|
210
208
|
/**
|
|
211
209
|
* New value for property `selectedPanel`
|
|
212
210
|
*/
|
|
213
|
-
sSelectedPanel:
|
|
211
|
+
sSelectedPanel: string
|
|
214
212
|
): this;
|
|
215
213
|
/**
|
|
216
214
|
* Sets a new value for property {@link #getShowTitle showTitle}.
|
|
@@ -275,9 +273,9 @@ declare module "sap/sac/df/DataAnalyzer" {
|
|
|
275
273
|
metaPath?: string | PropertyBindingInfo;
|
|
276
274
|
|
|
277
275
|
/**
|
|
278
|
-
* Selected panel item
|
|
276
|
+
* Selected panel item of type {@link sap.sac.df.types.DataAnalyzerPanelName DataAnalyzerPanelName}
|
|
279
277
|
*/
|
|
280
|
-
selectedPanel?:
|
|
278
|
+
selectedPanel?: string | PropertyBindingInfo;
|
|
281
279
|
|
|
282
280
|
/**
|
|
283
281
|
* Show visualization type
|
package/types/sap.zen.dsh.d.ts
CHANGED