@sapui5/types 1.116.0 → 1.117.1
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/index.d.ts +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +114 -30
- package/types/sap.chart.d.ts +29 -8
- package/types/sap.collaboration.d.ts +5 -2
- package/types/sap.esh.search.ui.d.ts +9 -3
- package/types/sap.f.d.ts +130 -36
- package/types/sap.fe.core.d.ts +21 -11
- package/types/sap.fe.macros.d.ts +160 -9
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.optimisticBatch.d.ts +3 -0
- package/types/sap.fe.test.d.ts +1 -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 +282 -1118
- package/types/sap.insights.d.ts +248 -2
- package/types/sap.landvisz.d.ts +53 -14
- package/types/sap.m.d.ts +1793 -403
- package/types/sap.makit.d.ts +22 -7
- package/types/sap.me.d.ts +33 -9
- package/types/sap.ndc.d.ts +20 -15
- package/types/sap.ovp.d.ts +7 -97
- package/types/sap.rules.ui.d.ts +17 -5
- package/types/sap.sac.df.d.ts +90 -1
- package/types/sap.suite.ui.commons.d.ts +439 -108
- package/types/sap.suite.ui.generic.template.d.ts +5 -2
- package/types/sap.suite.ui.microchart.d.ts +69 -18
- package/types/sap.tnt.d.ts +13 -4
- package/types/sap.ui.codeeditor.d.ts +9 -3
- package/types/sap.ui.commons.d.ts +236 -68
- package/types/sap.ui.comp.d.ts +544 -169
- package/types/sap.ui.core.d.ts +929 -259
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +204 -3
- package/types/sap.ui.fl.d.ts +21 -6
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +71 -13
- package/types/sap.ui.layout.d.ts +95 -30
- package/types/sap.ui.mdc.d.ts +296 -98
- package/types/sap.ui.richtexteditor.d.ts +17 -5
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +118 -24
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +209 -53
- package/types/sap.ui.ux3.d.ts +220 -61
- package/types/sap.ui.vbm.d.ts +184 -61
- package/types/sap.ui.vk.d.ts +544 -139
- package/types/sap.ui.vtm.d.ts +130 -37
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +137 -35
- package/types/sap.ui.webc.main.d.ts +331 -100
- package/types/sap.uiext.inbox.d.ts +50 -14
- package/types/sap.ushell.d.ts +625 -46
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +42 -12
- package/types/sap.viz.d.ts +521 -137
- 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 +29 -8
package/types/sap.makit.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/makit/library" {
|
|
4
4
|
/**
|
|
@@ -1896,15 +1896,21 @@ declare module "sap/makit/Chart" {
|
|
|
1896
1896
|
|
|
1897
1897
|
export interface Chart$DoubletapEventParameters {}
|
|
1898
1898
|
|
|
1899
|
-
export type Chart$DoubletapEvent = Event<
|
|
1899
|
+
export type Chart$DoubletapEvent = Event<
|
|
1900
|
+
Chart$DoubletapEventParameters,
|
|
1901
|
+
Chart
|
|
1902
|
+
>;
|
|
1900
1903
|
|
|
1901
1904
|
export interface Chart$LongpressEventParameters {}
|
|
1902
1905
|
|
|
1903
|
-
export type Chart$LongpressEvent = Event<
|
|
1906
|
+
export type Chart$LongpressEvent = Event<
|
|
1907
|
+
Chart$LongpressEventParameters,
|
|
1908
|
+
Chart
|
|
1909
|
+
>;
|
|
1904
1910
|
|
|
1905
1911
|
export interface Chart$TapEventParameters {}
|
|
1906
1912
|
|
|
1907
|
-
export type Chart$TapEvent = Event<Chart$TapEventParameters>;
|
|
1913
|
+
export type Chart$TapEvent = Event<Chart$TapEventParameters, Chart>;
|
|
1908
1914
|
}
|
|
1909
1915
|
|
|
1910
1916
|
declare module "sap/makit/Column" {
|
|
@@ -2911,15 +2917,24 @@ declare module "sap/makit/CombinationChart" {
|
|
|
2911
2917
|
|
|
2912
2918
|
export interface CombinationChart$DoubletapEventParameters {}
|
|
2913
2919
|
|
|
2914
|
-
export type CombinationChart$DoubletapEvent = Event<
|
|
2920
|
+
export type CombinationChart$DoubletapEvent = Event<
|
|
2921
|
+
CombinationChart$DoubletapEventParameters,
|
|
2922
|
+
CombinationChart
|
|
2923
|
+
>;
|
|
2915
2924
|
|
|
2916
2925
|
export interface CombinationChart$LongpressEventParameters {}
|
|
2917
2926
|
|
|
2918
|
-
export type CombinationChart$LongpressEvent = Event<
|
|
2927
|
+
export type CombinationChart$LongpressEvent = Event<
|
|
2928
|
+
CombinationChart$LongpressEventParameters,
|
|
2929
|
+
CombinationChart
|
|
2930
|
+
>;
|
|
2919
2931
|
|
|
2920
2932
|
export interface CombinationChart$TapEventParameters {}
|
|
2921
2933
|
|
|
2922
|
-
export type CombinationChart$TapEvent = Event<
|
|
2934
|
+
export type CombinationChart$TapEvent = Event<
|
|
2935
|
+
CombinationChart$TapEventParameters,
|
|
2936
|
+
CombinationChart
|
|
2937
|
+
>;
|
|
2923
2938
|
}
|
|
2924
2939
|
|
|
2925
2940
|
declare module "sap/makit/Layer" {
|
package/types/sap.me.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/me/library" {
|
|
4
4
|
/**
|
|
@@ -1111,7 +1111,10 @@ declare module "sap/me/Calendar" {
|
|
|
1111
1111
|
currentDate?: string;
|
|
1112
1112
|
}
|
|
1113
1113
|
|
|
1114
|
-
export type Calendar$ChangeCurrentDateEvent = Event<
|
|
1114
|
+
export type Calendar$ChangeCurrentDateEvent = Event<
|
|
1115
|
+
Calendar$ChangeCurrentDateEventParameters,
|
|
1116
|
+
Calendar
|
|
1117
|
+
>;
|
|
1115
1118
|
|
|
1116
1119
|
export interface Calendar$ChangeRangeEventParameters {
|
|
1117
1120
|
/**
|
|
@@ -1125,7 +1128,10 @@ declare module "sap/me/Calendar" {
|
|
|
1125
1128
|
toDate?: string;
|
|
1126
1129
|
}
|
|
1127
1130
|
|
|
1128
|
-
export type Calendar$ChangeRangeEvent = Event<
|
|
1131
|
+
export type Calendar$ChangeRangeEvent = Event<
|
|
1132
|
+
Calendar$ChangeRangeEventParameters,
|
|
1133
|
+
Calendar
|
|
1134
|
+
>;
|
|
1129
1135
|
|
|
1130
1136
|
export interface Calendar$TapOnDateEventParameters {
|
|
1131
1137
|
/**
|
|
@@ -1139,7 +1145,10 @@ declare module "sap/me/Calendar" {
|
|
|
1139
1145
|
didSelect?: boolean;
|
|
1140
1146
|
}
|
|
1141
1147
|
|
|
1142
|
-
export type Calendar$TapOnDateEvent = Event<
|
|
1148
|
+
export type Calendar$TapOnDateEvent = Event<
|
|
1149
|
+
Calendar$TapOnDateEventParameters,
|
|
1150
|
+
Calendar
|
|
1151
|
+
>;
|
|
1143
1152
|
}
|
|
1144
1153
|
|
|
1145
1154
|
declare module "sap/me/CalendarLegend" {
|
|
@@ -2213,7 +2222,10 @@ declare module "sap/me/OverlapCalendar" {
|
|
|
2213
2222
|
lastDate?: object;
|
|
2214
2223
|
}
|
|
2215
2224
|
|
|
2216
|
-
export type OverlapCalendar$ChangeDateEvent = Event<
|
|
2225
|
+
export type OverlapCalendar$ChangeDateEvent = Event<
|
|
2226
|
+
OverlapCalendar$ChangeDateEventParameters,
|
|
2227
|
+
OverlapCalendar
|
|
2228
|
+
>;
|
|
2217
2229
|
|
|
2218
2230
|
export interface OverlapCalendar$EndOfDataEventParameters {
|
|
2219
2231
|
/**
|
|
@@ -2222,7 +2234,10 @@ declare module "sap/me/OverlapCalendar" {
|
|
|
2222
2234
|
before?: boolean;
|
|
2223
2235
|
}
|
|
2224
2236
|
|
|
2225
|
-
export type OverlapCalendar$EndOfDataEvent = Event<
|
|
2237
|
+
export type OverlapCalendar$EndOfDataEvent = Event<
|
|
2238
|
+
OverlapCalendar$EndOfDataEventParameters,
|
|
2239
|
+
OverlapCalendar
|
|
2240
|
+
>;
|
|
2226
2241
|
}
|
|
2227
2242
|
|
|
2228
2243
|
declare module "sap/me/OverlapCalendarEvent" {
|
|
@@ -3670,15 +3685,24 @@ declare module "sap/me/TabContainer" {
|
|
|
3670
3685
|
|
|
3671
3686
|
export interface TabContainer$CollapseEventParameters {}
|
|
3672
3687
|
|
|
3673
|
-
export type TabContainer$CollapseEvent = Event<
|
|
3688
|
+
export type TabContainer$CollapseEvent = Event<
|
|
3689
|
+
TabContainer$CollapseEventParameters,
|
|
3690
|
+
TabContainer
|
|
3691
|
+
>;
|
|
3674
3692
|
|
|
3675
3693
|
export interface TabContainer$ExpandEventParameters {}
|
|
3676
3694
|
|
|
3677
|
-
export type TabContainer$ExpandEvent = Event<
|
|
3695
|
+
export type TabContainer$ExpandEvent = Event<
|
|
3696
|
+
TabContainer$ExpandEventParameters,
|
|
3697
|
+
TabContainer
|
|
3698
|
+
>;
|
|
3678
3699
|
|
|
3679
3700
|
export interface TabContainer$SelectEventParameters {}
|
|
3680
3701
|
|
|
3681
|
-
export type TabContainer$SelectEvent = Event<
|
|
3702
|
+
export type TabContainer$SelectEvent = Event<
|
|
3703
|
+
TabContainer$SelectEventParameters,
|
|
3704
|
+
TabContainer
|
|
3705
|
+
>;
|
|
3682
3706
|
}
|
|
3683
3707
|
|
|
3684
3708
|
declare namespace sap {
|
package/types/sap.ndc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ndc/library" {}
|
|
4
4
|
|
|
@@ -86,7 +86,7 @@ declare module "sap/ndc/BarcodeScanner" {
|
|
|
86
86
|
/**
|
|
87
87
|
* Returns the scanner API info that will be used to scan the barcode.
|
|
88
88
|
*
|
|
89
|
-
* @returns The Barcode Scanner API info. (e.g. ZebraEnterpriseBrowser, Cordova, ZXingCPP
|
|
89
|
+
* @returns The Barcode Scanner API info. (e.g. ZebraEnterpriseBrowser, Cordova, ZXingCPP or unknown)
|
|
90
90
|
*/
|
|
91
91
|
getScanAPIInfo(): string;
|
|
92
92
|
/**
|
|
@@ -111,10 +111,6 @@ declare module "sap/ndc/BarcodeScanner" {
|
|
|
111
111
|
* {
|
|
112
112
|
* key: "ZXingCPP",
|
|
113
113
|
* status: "Available"
|
|
114
|
-
* },
|
|
115
|
-
* {
|
|
116
|
-
* key: "ZXing",
|
|
117
|
-
* status: "Initial"
|
|
118
114
|
* }
|
|
119
115
|
* ]
|
|
120
116
|
* }
|
|
@@ -244,17 +240,17 @@ declare module "sap/ndc/BarcodeScanner" {
|
|
|
244
240
|
/**
|
|
245
241
|
* Set the scanner API info that will be used to scan the barcode.
|
|
246
242
|
*
|
|
247
|
-
* IMPORTANT: The status of the scanner API must be **"Available"**(for ZXingCPP
|
|
248
|
-
*
|
|
249
|
-
*
|
|
250
|
-
* > Cordova > ZXingCPP
|
|
243
|
+
* IMPORTANT: The status of the scanner API must be **"Available"**(for ZXingCPP, status is **NOT "UnAvailable"**),
|
|
244
|
+
* or will return False. Scanner APIs with status value can be got by using {@link #getStatusModel}. By
|
|
245
|
+
* default, Barcode Scanner will select the scanner API(Available) with priority: ZebraEnterpriseBrowser
|
|
246
|
+
* > Cordova > ZXingCPP.
|
|
251
247
|
*
|
|
252
248
|
* @returns Return True if set success.
|
|
253
249
|
*/
|
|
254
250
|
setScanAPIInfo(
|
|
255
251
|
/**
|
|
256
|
-
* Defines the scanner API to scan the barcode. Scanner API can be "ZebraEnterpriseBrowser", "Cordova"
|
|
257
|
-
* "ZXingCPP"
|
|
252
|
+
* Defines the scanner API to scan the barcode. Scanner API can be "ZebraEnterpriseBrowser", "Cordova" or
|
|
253
|
+
* "ZXingCPP".
|
|
258
254
|
*/
|
|
259
255
|
scannerAPI?: string
|
|
260
256
|
): boolean;
|
|
@@ -807,11 +803,17 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
807
803
|
newValue?: string;
|
|
808
804
|
}
|
|
809
805
|
|
|
810
|
-
export type BarcodeScannerButton$InputLiveUpdateEvent = Event<
|
|
806
|
+
export type BarcodeScannerButton$InputLiveUpdateEvent = Event<
|
|
807
|
+
BarcodeScannerButton$InputLiveUpdateEventParameters,
|
|
808
|
+
BarcodeScannerButton
|
|
809
|
+
>;
|
|
811
810
|
|
|
812
811
|
export interface BarcodeScannerButton$ScanFailEventParameters {}
|
|
813
812
|
|
|
814
|
-
export type BarcodeScannerButton$ScanFailEvent = Event<
|
|
813
|
+
export type BarcodeScannerButton$ScanFailEvent = Event<
|
|
814
|
+
BarcodeScannerButton$ScanFailEventParameters,
|
|
815
|
+
BarcodeScannerButton
|
|
816
|
+
>;
|
|
815
817
|
|
|
816
818
|
export interface BarcodeScannerButton$ScanSuccessEventParameters {
|
|
817
819
|
/**
|
|
@@ -830,7 +832,10 @@ declare module "sap/ndc/BarcodeScannerButton" {
|
|
|
830
832
|
cancelled?: boolean;
|
|
831
833
|
}
|
|
832
834
|
|
|
833
|
-
export type BarcodeScannerButton$ScanSuccessEvent = Event<
|
|
835
|
+
export type BarcodeScannerButton$ScanSuccessEvent = Event<
|
|
836
|
+
BarcodeScannerButton$ScanSuccessEventParameters,
|
|
837
|
+
BarcodeScannerButton
|
|
838
|
+
>;
|
|
834
839
|
}
|
|
835
840
|
|
|
836
841
|
declare namespace sap {
|
package/types/sap.ovp.d.ts
CHANGED
|
@@ -1,30 +1,14 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ovp/library" {}
|
|
4
4
|
|
|
5
5
|
declare module "sap/ovp/app/Component" {
|
|
6
|
-
import {
|
|
7
|
-
default as AppComponent,
|
|
8
|
-
$AppComponentSettings,
|
|
9
|
-
} from "sap/fe/core/AppComponent";
|
|
10
|
-
|
|
11
6
|
import ComponentMetadata from "sap/ui/core/ComponentMetadata";
|
|
12
7
|
|
|
13
|
-
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
14
|
-
|
|
15
8
|
/**
|
|
16
9
|
* Overview Page Application Component
|
|
17
10
|
*/
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* Main class used for Overview Page Application Component
|
|
21
|
-
*
|
|
22
|
-
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
23
|
-
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
24
|
-
* of the syntax of the settings object.
|
|
25
|
-
*/
|
|
26
|
-
constructor();
|
|
27
|
-
|
|
11
|
+
interface Component {
|
|
28
12
|
/**
|
|
29
13
|
* Creates a new subclass of class sap.ovp.app.Component with name `sClassName` and enriches it with the
|
|
30
14
|
* information contained in `oClassInfo`.
|
|
@@ -33,7 +17,7 @@ declare module "sap/ovp/app/Component" {
|
|
|
33
17
|
*
|
|
34
18
|
* @returns Created class / constructor function
|
|
35
19
|
*/
|
|
36
|
-
|
|
20
|
+
extend(
|
|
37
21
|
/**
|
|
38
22
|
* Name of the class being created
|
|
39
23
|
*/
|
|
@@ -41,7 +25,7 @@ declare module "sap/ovp/app/Component" {
|
|
|
41
25
|
/**
|
|
42
26
|
* Object literal with information about the class
|
|
43
27
|
*/
|
|
44
|
-
oClassInfo?:
|
|
28
|
+
oClassInfo?: object,
|
|
45
29
|
/**
|
|
46
30
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
47
31
|
* used by this class
|
|
@@ -53,84 +37,10 @@ declare module "sap/ovp/app/Component" {
|
|
|
53
37
|
*
|
|
54
38
|
* @returns Metadata object describing this class
|
|
55
39
|
*/
|
|
56
|
-
|
|
57
|
-
/**
|
|
58
|
-
* Gets current value of property {@link #getCardContainerFragment cardContainerFragment}.
|
|
59
|
-
*
|
|
60
|
-
* Default value is `"sap.ovp.app.CardContainer"`.
|
|
61
|
-
*
|
|
62
|
-
* @returns Value of property `cardContainerFragment`
|
|
63
|
-
*/
|
|
64
|
-
getCardContainerFragment(): string;
|
|
65
|
-
/**
|
|
66
|
-
* Gets current value of property {@link #getDashboardLayoutUtil dashboardLayoutUtil}.
|
|
67
|
-
*
|
|
68
|
-
* @returns Value of property `dashboardLayoutUtil`
|
|
69
|
-
*/
|
|
70
|
-
getDashboardLayoutUtil(): /* was: sap.ovp.ui.DashboardLayoutUtil */ any;
|
|
71
|
-
/**
|
|
72
|
-
* Gets current value of property {@link #getDesigntimePath designtimePath}.
|
|
73
|
-
*
|
|
74
|
-
* Default value is `"sap/ovp/ui/OVPWrapper.designtime"`.
|
|
75
|
-
*
|
|
76
|
-
* @returns Value of property `designtimePath`
|
|
77
|
-
*/
|
|
78
|
-
getDesigntimePath(): string;
|
|
79
|
-
/**
|
|
80
|
-
* Sets a new value for property {@link #getCardContainerFragment cardContainerFragment}.
|
|
81
|
-
*
|
|
82
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
83
|
-
*
|
|
84
|
-
* Default value is `"sap.ovp.app.CardContainer"`.
|
|
85
|
-
*
|
|
86
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
87
|
-
*/
|
|
88
|
-
setCardContainerFragment(
|
|
89
|
-
/**
|
|
90
|
-
* New value for property `cardContainerFragment`
|
|
91
|
-
*/
|
|
92
|
-
sCardContainerFragment?: string
|
|
93
|
-
): this;
|
|
94
|
-
/**
|
|
95
|
-
* Sets a new value for property {@link #getDashboardLayoutUtil dashboardLayoutUtil}.
|
|
96
|
-
*
|
|
97
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
98
|
-
*
|
|
99
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
100
|
-
*/
|
|
101
|
-
setDashboardLayoutUtil(
|
|
102
|
-
/**
|
|
103
|
-
* New value for property `dashboardLayoutUtil`
|
|
104
|
-
*/
|
|
105
|
-
sDashboardLayoutUtil: /* was: sap.ovp.ui.DashboardLayoutUtil */ any
|
|
106
|
-
): this;
|
|
107
|
-
/**
|
|
108
|
-
* Sets a new value for property {@link #getDesigntimePath designtimePath}.
|
|
109
|
-
*
|
|
110
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
111
|
-
*
|
|
112
|
-
* Default value is `"sap/ovp/ui/OVPWrapper.designtime"`.
|
|
113
|
-
*
|
|
114
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
115
|
-
*/
|
|
116
|
-
setDesigntimePath(
|
|
117
|
-
/**
|
|
118
|
-
* New value for property `designtimePath`
|
|
119
|
-
*/
|
|
120
|
-
sDesigntimePath?: string
|
|
121
|
-
): this;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
export interface $ComponentSettings extends $AppComponentSettings {
|
|
125
|
-
cardContainerFragment?: string | PropertyBindingInfo;
|
|
126
|
-
|
|
127
|
-
dashboardLayoutUtil?: /* was: sap.ovp.ui.DashboardLayoutUtil */
|
|
128
|
-
| any
|
|
129
|
-
| PropertyBindingInfo
|
|
130
|
-
| `{${string}}`;
|
|
131
|
-
|
|
132
|
-
designtimePath?: string | PropertyBindingInfo;
|
|
40
|
+
getMetadata(): ComponentMetadata;
|
|
133
41
|
}
|
|
42
|
+
const Component: Component;
|
|
43
|
+
export default Component;
|
|
134
44
|
}
|
|
135
45
|
|
|
136
46
|
declare module "sap/ovp/app/TemplateBaseExtension" {
|
package/types/sap.rules.ui.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/rules/ui/library" {
|
|
4
4
|
/**
|
|
@@ -523,7 +523,10 @@ declare module "sap/rules/ui/DecisionTableConfiguration" {
|
|
|
523
523
|
value?: undefined;
|
|
524
524
|
}
|
|
525
525
|
|
|
526
|
-
export type DecisionTableConfiguration$ChangeEvent = Event<
|
|
526
|
+
export type DecisionTableConfiguration$ChangeEvent = Event<
|
|
527
|
+
DecisionTableConfiguration$ChangeEventParameters,
|
|
528
|
+
DecisionTableConfiguration
|
|
529
|
+
>;
|
|
527
530
|
}
|
|
528
531
|
|
|
529
532
|
declare module "sap/rules/ui/RuleBuilder" {
|
|
@@ -975,7 +978,10 @@ declare module "sap/rules/ui/services/AstExpressionLanguage" {
|
|
|
975
978
|
|
|
976
979
|
export interface AstExpressionLanguage$DataChangeEventParameters {}
|
|
977
980
|
|
|
978
|
-
export type AstExpressionLanguage$DataChangeEvent = Event<
|
|
981
|
+
export type AstExpressionLanguage$DataChangeEvent = Event<
|
|
982
|
+
AstExpressionLanguage$DataChangeEventParameters,
|
|
983
|
+
AstExpressionLanguage
|
|
984
|
+
>;
|
|
979
985
|
}
|
|
980
986
|
|
|
981
987
|
declare module "sap/rules/ui/services/ExpressionLanguage" {
|
|
@@ -1173,7 +1179,10 @@ declare module "sap/rules/ui/services/ExpressionLanguage" {
|
|
|
1173
1179
|
|
|
1174
1180
|
export interface ExpressionLanguage$DataChangeEventParameters {}
|
|
1175
1181
|
|
|
1176
|
-
export type ExpressionLanguage$DataChangeEvent = Event<
|
|
1182
|
+
export type ExpressionLanguage$DataChangeEvent = Event<
|
|
1183
|
+
ExpressionLanguage$DataChangeEventParameters,
|
|
1184
|
+
ExpressionLanguage
|
|
1185
|
+
>;
|
|
1177
1186
|
}
|
|
1178
1187
|
|
|
1179
1188
|
declare module "sap/rules/ui/TextRuleConfiguration" {
|
|
@@ -1467,7 +1476,10 @@ declare module "sap/rules/ui/TextRuleConfiguration" {
|
|
|
1467
1476
|
value?: undefined;
|
|
1468
1477
|
}
|
|
1469
1478
|
|
|
1470
|
-
export type TextRuleConfiguration$ChangeEvent = Event<
|
|
1479
|
+
export type TextRuleConfiguration$ChangeEvent = Event<
|
|
1480
|
+
TextRuleConfiguration$ChangeEventParameters,
|
|
1481
|
+
TextRuleConfiguration
|
|
1482
|
+
>;
|
|
1471
1483
|
}
|
|
1472
1484
|
|
|
1473
1485
|
declare namespace sap {
|
package/types/sap.sac.df.d.ts
CHANGED
|
@@ -1,7 +1,71 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/sac/df/library" {}
|
|
4
4
|
|
|
5
|
+
declare module "sap/sac/df/controls/MultiDimControl" {
|
|
6
|
+
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
7
|
+
|
|
8
|
+
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* @experimental
|
|
12
|
+
*
|
|
13
|
+
* Enables users to view, navigate and change multidimensional data exposed via InA.
|
|
14
|
+
*
|
|
15
|
+
* Overview:
|
|
16
|
+
*
|
|
17
|
+
* The user can view the data in a Table, navigate in the data via a context menu or builder panels The
|
|
18
|
+
* data source that the FlexAnalysis consumes or renders has to be provided as a property value.
|
|
19
|
+
*/
|
|
20
|
+
export default class MultiDimControl extends Control {
|
|
21
|
+
/**
|
|
22
|
+
* Constructor for a new `MultiDimControl`.
|
|
23
|
+
*
|
|
24
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
25
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
26
|
+
* of the syntax of the settings object.
|
|
27
|
+
*/
|
|
28
|
+
constructor(
|
|
29
|
+
/**
|
|
30
|
+
* ID for the new control, generated automatically if no ID is given
|
|
31
|
+
*/
|
|
32
|
+
sId?: string
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Creates a new subclass of class sap.sac.df.controls.MultiDimControl with name `sClassName` and enriches
|
|
37
|
+
* it with the information contained in `oClassInfo`.
|
|
38
|
+
*
|
|
39
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
40
|
+
*
|
|
41
|
+
* @returns Created class / constructor function
|
|
42
|
+
*/
|
|
43
|
+
static extend<T extends Record<string, unknown>>(
|
|
44
|
+
/**
|
|
45
|
+
* Name of the class being created
|
|
46
|
+
*/
|
|
47
|
+
sClassName: string,
|
|
48
|
+
/**
|
|
49
|
+
* Object literal with information about the class
|
|
50
|
+
*/
|
|
51
|
+
oClassInfo?: sap.ClassInfo<T, MultiDimControl>,
|
|
52
|
+
/**
|
|
53
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
54
|
+
* used by this class
|
|
55
|
+
*/
|
|
56
|
+
FNMetaImpl?: Function
|
|
57
|
+
): Function;
|
|
58
|
+
/**
|
|
59
|
+
* Returns a metadata object for class sap.sac.df.controls.MultiDimControl.
|
|
60
|
+
*
|
|
61
|
+
* @returns Metadata object describing this class
|
|
62
|
+
*/
|
|
63
|
+
static getMetadata(): ElementMetadata;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export interface $MultiDimControlSettings extends $ControlSettings {}
|
|
67
|
+
}
|
|
68
|
+
|
|
5
69
|
declare module "sap/sac/df/FlexAnalysis" {
|
|
6
70
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
7
71
|
|
|
@@ -1621,6 +1685,10 @@ declare module "sap/sac/df/olap/MultiDimModel" {
|
|
|
1621
1685
|
* Constructor for a new OlapMode.
|
|
1622
1686
|
*
|
|
1623
1687
|
* The Olap Model allows to access and change data from servers providing the InA Protocol.
|
|
1688
|
+
*
|
|
1689
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1690
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1691
|
+
* of the syntax of the settings object.
|
|
1624
1692
|
*/
|
|
1625
1693
|
constructor();
|
|
1626
1694
|
|
|
@@ -1653,6 +1721,25 @@ declare module "sap/sac/df/olap/MultiDimModel" {
|
|
|
1653
1721
|
* @returns Metadata object describing this class
|
|
1654
1722
|
*/
|
|
1655
1723
|
static getMetadata(): Metadata;
|
|
1724
|
+
/**
|
|
1725
|
+
* Gets current value of property {@link #getApi api}.
|
|
1726
|
+
*
|
|
1727
|
+
* @returns Value of property `api`
|
|
1728
|
+
*/
|
|
1729
|
+
getApi(): undefined;
|
|
1730
|
+
/**
|
|
1731
|
+
* Sets a new value for property {@link #getApi api}.
|
|
1732
|
+
*
|
|
1733
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1734
|
+
*
|
|
1735
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1736
|
+
*/
|
|
1737
|
+
setApi(
|
|
1738
|
+
/**
|
|
1739
|
+
* New value for property `api`
|
|
1740
|
+
*/
|
|
1741
|
+
sApi: undefined
|
|
1742
|
+
): this;
|
|
1656
1743
|
}
|
|
1657
1744
|
}
|
|
1658
1745
|
|
|
@@ -1683,6 +1770,8 @@ declare module "sap/sac/df/types/SystemType" {
|
|
|
1683
1770
|
|
|
1684
1771
|
declare namespace sap {
|
|
1685
1772
|
interface IUI5DefineDependencyNames {
|
|
1773
|
+
"sap/sac/df/controls/MultiDimControl": undefined;
|
|
1774
|
+
|
|
1686
1775
|
"sap/sac/df/FlexAnalysis": undefined;
|
|
1687
1776
|
|
|
1688
1777
|
"sap/sac/df/FlexAnalysisPanel": undefined;
|