@sapui5/ts-types 1.116.0 → 1.117.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/index.d.ts +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +144 -57
- 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 +160 -63
- package/types/sap.fe.core.d.ts +21 -35
- package/types/sap.fe.macros.d.ts +148 -16
- 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 +344 -1208
- package/types/sap.insights.d.ts +251 -11
- package/types/sap.landvisz.d.ts +64 -25
- package/types/sap.m.d.ts +2259 -806
- package/types/sap.makit.d.ts +22 -7
- package/types/sap.me.d.ts +40 -16
- package/types/sap.ndc.d.ts +20 -15
- package/types/sap.ovp.d.ts +24 -111
- package/types/sap.rules.ui.d.ts +17 -5
- package/types/sap.sac.df.d.ts +87 -1
- package/types/sap.suite.ui.commons.d.ts +531 -182
- package/types/sap.suite.ui.generic.template.d.ts +5 -2
- package/types/sap.suite.ui.microchart.d.ts +85 -34
- package/types/sap.tnt.d.ts +13 -4
- package/types/sap.ui.codeeditor.d.ts +9 -3
- package/types/sap.ui.commons.d.ts +297 -116
- package/types/sap.ui.comp.d.ts +631 -256
- package/types/sap.ui.core.d.ts +976 -286
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +193 -3
- package/types/sap.ui.fl.d.ts +25 -10
- 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 +90 -23
- package/types/sap.ui.layout.d.ts +93 -30
- package/types/sap.ui.mdc.d.ts +6507 -6291
- 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 +149 -43
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +265 -103
- package/types/sap.ui.ux3.d.ts +300 -120
- package/types/sap.ui.vbm.d.ts +288 -120
- package/types/sap.ui.vk.d.ts +685 -271
- package/types/sap.ui.vtm.d.ts +177 -72
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +170 -68
- package/types/sap.ui.webc.main.d.ts +495 -198
- package/types/sap.uiext.inbox.d.ts +64 -25
- package/types/sap.ushell.d.ts +658 -47
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +51 -21
- package/types/sap.viz.d.ts +675 -267
- 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 +35 -14
package/types/sap.makit.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -4480,17 +4480,32 @@ declare namespace sap {
|
|
|
4480
4480
|
Top = "Top",
|
|
4481
4481
|
}
|
|
4482
4482
|
|
|
4483
|
-
type Chart$DoubletapEvent = sap.ui.base.Event<
|
|
4483
|
+
type Chart$DoubletapEvent = sap.ui.base.Event<
|
|
4484
|
+
Chart$DoubletapEventParameters,
|
|
4485
|
+
Chart
|
|
4486
|
+
>;
|
|
4484
4487
|
|
|
4485
|
-
type Chart$LongpressEvent = sap.ui.base.Event<
|
|
4488
|
+
type Chart$LongpressEvent = sap.ui.base.Event<
|
|
4489
|
+
Chart$LongpressEventParameters,
|
|
4490
|
+
Chart
|
|
4491
|
+
>;
|
|
4486
4492
|
|
|
4487
|
-
type Chart$TapEvent = sap.ui.base.Event<Chart$TapEventParameters>;
|
|
4493
|
+
type Chart$TapEvent = sap.ui.base.Event<Chart$TapEventParameters, Chart>;
|
|
4488
4494
|
|
|
4489
|
-
type CombinationChart$DoubletapEvent = sap.ui.base.Event<
|
|
4495
|
+
type CombinationChart$DoubletapEvent = sap.ui.base.Event<
|
|
4496
|
+
CombinationChart$DoubletapEventParameters,
|
|
4497
|
+
CombinationChart
|
|
4498
|
+
>;
|
|
4490
4499
|
|
|
4491
|
-
type CombinationChart$LongpressEvent = sap.ui.base.Event<
|
|
4500
|
+
type CombinationChart$LongpressEvent = sap.ui.base.Event<
|
|
4501
|
+
CombinationChart$LongpressEventParameters,
|
|
4502
|
+
CombinationChart
|
|
4503
|
+
>;
|
|
4492
4504
|
|
|
4493
|
-
type CombinationChart$TapEvent = sap.ui.base.Event<
|
|
4505
|
+
type CombinationChart$TapEvent = sap.ui.base.Event<
|
|
4506
|
+
CombinationChart$TapEventParameters,
|
|
4507
|
+
CombinationChart
|
|
4508
|
+
>;
|
|
4494
4509
|
}
|
|
4495
4510
|
|
|
4496
4511
|
interface IUI5DefineDependencyNames {
|
package/types/sap.me.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -3717,21 +3717,45 @@ declare namespace sap {
|
|
|
3717
3717
|
SINGLE = "SINGLE",
|
|
3718
3718
|
}
|
|
3719
3719
|
|
|
3720
|
-
type Calendar$ChangeCurrentDateEvent = sap.ui.base.Event<
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
type
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
|
|
3720
|
+
type Calendar$ChangeCurrentDateEvent = sap.ui.base.Event<
|
|
3721
|
+
Calendar$ChangeCurrentDateEventParameters,
|
|
3722
|
+
Calendar
|
|
3723
|
+
>;
|
|
3724
|
+
|
|
3725
|
+
type Calendar$ChangeRangeEvent = sap.ui.base.Event<
|
|
3726
|
+
Calendar$ChangeRangeEventParameters,
|
|
3727
|
+
Calendar
|
|
3728
|
+
>;
|
|
3729
|
+
|
|
3730
|
+
type Calendar$TapOnDateEvent = sap.ui.base.Event<
|
|
3731
|
+
Calendar$TapOnDateEventParameters,
|
|
3732
|
+
Calendar
|
|
3733
|
+
>;
|
|
3734
|
+
|
|
3735
|
+
type OverlapCalendar$ChangeDateEvent = sap.ui.base.Event<
|
|
3736
|
+
OverlapCalendar$ChangeDateEventParameters,
|
|
3737
|
+
OverlapCalendar
|
|
3738
|
+
>;
|
|
3739
|
+
|
|
3740
|
+
type OverlapCalendar$EndOfDataEvent = sap.ui.base.Event<
|
|
3741
|
+
OverlapCalendar$EndOfDataEventParameters,
|
|
3742
|
+
OverlapCalendar
|
|
3743
|
+
>;
|
|
3744
|
+
|
|
3745
|
+
type TabContainer$CollapseEvent = sap.ui.base.Event<
|
|
3746
|
+
TabContainer$CollapseEventParameters,
|
|
3747
|
+
TabContainer
|
|
3748
|
+
>;
|
|
3749
|
+
|
|
3750
|
+
type TabContainer$ExpandEvent = sap.ui.base.Event<
|
|
3751
|
+
TabContainer$ExpandEventParameters,
|
|
3752
|
+
TabContainer
|
|
3753
|
+
>;
|
|
3754
|
+
|
|
3755
|
+
type TabContainer$SelectEvent = sap.ui.base.Event<
|
|
3756
|
+
TabContainer$SelectEventParameters,
|
|
3757
|
+
TabContainer
|
|
3758
|
+
>;
|
|
3735
3759
|
}
|
|
3736
3760
|
|
|
3737
3761
|
interface IUI5DefineDependencyNames {
|
package/types/sap.ndc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -186,7 +186,7 @@ declare namespace sap {
|
|
|
186
186
|
/**
|
|
187
187
|
* Returns the scanner API info that will be used to scan the barcode.
|
|
188
188
|
*
|
|
189
|
-
* @returns The Barcode Scanner API info. (e.g. ZebraEnterpriseBrowser, Cordova, ZXingCPP
|
|
189
|
+
* @returns The Barcode Scanner API info. (e.g. ZebraEnterpriseBrowser, Cordova, ZXingCPP or unknown)
|
|
190
190
|
*/
|
|
191
191
|
getScanAPIInfo(): string;
|
|
192
192
|
/**
|
|
@@ -211,10 +211,6 @@ declare namespace sap {
|
|
|
211
211
|
* {
|
|
212
212
|
* key: "ZXingCPP",
|
|
213
213
|
* status: "Available"
|
|
214
|
-
* },
|
|
215
|
-
* {
|
|
216
|
-
* key: "ZXing",
|
|
217
|
-
* status: "Initial"
|
|
218
214
|
* }
|
|
219
215
|
* ]
|
|
220
216
|
* }
|
|
@@ -344,17 +340,17 @@ declare namespace sap {
|
|
|
344
340
|
/**
|
|
345
341
|
* Set the scanner API info that will be used to scan the barcode.
|
|
346
342
|
*
|
|
347
|
-
* IMPORTANT: The status of the scanner API must be **"Available"**(for ZXingCPP
|
|
348
|
-
*
|
|
349
|
-
*
|
|
350
|
-
* > Cordova > ZXingCPP
|
|
343
|
+
* IMPORTANT: The status of the scanner API must be **"Available"**(for ZXingCPP, status is **NOT "UnAvailable"**),
|
|
344
|
+
* or will return False. Scanner APIs with status value can be got by using {@link #getStatusModel}. By
|
|
345
|
+
* default, Barcode Scanner will select the scanner API(Available) with priority: ZebraEnterpriseBrowser
|
|
346
|
+
* > Cordova > ZXingCPP.
|
|
351
347
|
*
|
|
352
348
|
* @returns Return True if set success.
|
|
353
349
|
*/
|
|
354
350
|
setScanAPIInfo(
|
|
355
351
|
/**
|
|
356
|
-
* Defines the scanner API to scan the barcode. Scanner API can be "ZebraEnterpriseBrowser", "Cordova"
|
|
357
|
-
* "ZXingCPP"
|
|
352
|
+
* Defines the scanner API to scan the barcode. Scanner API can be "ZebraEnterpriseBrowser", "Cordova" or
|
|
353
|
+
* "ZXingCPP".
|
|
358
354
|
*/
|
|
359
355
|
scannerAPI?: string
|
|
360
356
|
): boolean;
|
|
@@ -831,11 +827,20 @@ declare namespace sap {
|
|
|
831
827
|
): this;
|
|
832
828
|
}
|
|
833
829
|
|
|
834
|
-
type BarcodeScannerButton$InputLiveUpdateEvent = sap.ui.base.Event<
|
|
830
|
+
type BarcodeScannerButton$InputLiveUpdateEvent = sap.ui.base.Event<
|
|
831
|
+
BarcodeScannerButton$InputLiveUpdateEventParameters,
|
|
832
|
+
BarcodeScannerButton
|
|
833
|
+
>;
|
|
835
834
|
|
|
836
|
-
type BarcodeScannerButton$ScanFailEvent = sap.ui.base.Event<
|
|
835
|
+
type BarcodeScannerButton$ScanFailEvent = sap.ui.base.Event<
|
|
836
|
+
BarcodeScannerButton$ScanFailEventParameters,
|
|
837
|
+
BarcodeScannerButton
|
|
838
|
+
>;
|
|
837
839
|
|
|
838
|
-
type BarcodeScannerButton$ScanSuccessEvent = sap.ui.base.Event<
|
|
840
|
+
type BarcodeScannerButton$ScanSuccessEvent = sap.ui.base.Event<
|
|
841
|
+
BarcodeScannerButton$ScanSuccessEventParameters,
|
|
842
|
+
BarcodeScannerButton
|
|
843
|
+
>;
|
|
839
844
|
}
|
|
840
845
|
|
|
841
846
|
interface IUI5DefineDependencyNames {
|
package/types/sap.ovp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -6,34 +6,15 @@ declare namespace sap {
|
|
|
6
6
|
*/
|
|
7
7
|
namespace ovp {
|
|
8
8
|
namespace app {
|
|
9
|
-
interface $ComponentSettings extends sap.fe.core.$AppComponentSettings {
|
|
10
|
-
cardContainerFragment?:
|
|
11
|
-
| string
|
|
12
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13
|
-
|
|
14
|
-
dashboardLayoutUtil?: /* was: sap.ovp.ui.DashboardLayoutUtil */
|
|
15
|
-
| any
|
|
16
|
-
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
17
|
-
| `{${string}}`;
|
|
18
|
-
|
|
19
|
-
designtimePath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
9
|
/**
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
* This class contains all extension functions that can be implemented by the application developers in
|
|
26
|
-
* their extension code. Application developers must not override any methods that are not mentioned in
|
|
27
|
-
* this documentation.
|
|
10
|
+
* Overview Page Application Component
|
|
28
11
|
*/
|
|
29
|
-
interface
|
|
12
|
+
interface Component {
|
|
30
13
|
/**
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
* Creates a new subclass of class sap.ovp.app.TemplateBaseExtension with name `sClassName` and enriches
|
|
34
|
-
* it with the information contained in `oClassInfo`.
|
|
14
|
+
* Creates a new subclass of class sap.ovp.app.Component with name `sClassName` and enriches it with the
|
|
15
|
+
* information contained in `oClassInfo`.
|
|
35
16
|
*
|
|
36
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.
|
|
17
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.fe.core.AppComponent.extend}.
|
|
37
18
|
*
|
|
38
19
|
* @returns Created class / constructor function
|
|
39
20
|
*/
|
|
@@ -53,37 +34,32 @@ declare namespace sap {
|
|
|
53
34
|
FNMetaImpl?: Function
|
|
54
35
|
): Function;
|
|
55
36
|
/**
|
|
56
|
-
*
|
|
57
|
-
*
|
|
58
|
-
* Returns a metadata object for class sap.ovp.app.TemplateBaseExtension.
|
|
37
|
+
* Returns a metadata object for class sap.ovp.app.Component.
|
|
59
38
|
*
|
|
60
39
|
* @returns Metadata object describing this class
|
|
61
40
|
*/
|
|
62
|
-
getMetadata(): sap.ui.
|
|
41
|
+
getMetadata(): sap.ui.core.ComponentMetadata;
|
|
63
42
|
}
|
|
64
43
|
|
|
65
44
|
/**
|
|
66
|
-
*
|
|
45
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
46
|
+
*
|
|
47
|
+
* This class contains all extension functions that can be implemented by the application developers in
|
|
48
|
+
* their extension code. Application developers must not override any methods that are not mentioned in
|
|
49
|
+
* this documentation.
|
|
67
50
|
*/
|
|
68
|
-
|
|
51
|
+
interface TemplateBaseExtension {
|
|
69
52
|
/**
|
|
70
|
-
*
|
|
53
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
71
54
|
*
|
|
72
|
-
*
|
|
73
|
-
*
|
|
74
|
-
* of the syntax of the settings object.
|
|
75
|
-
*/
|
|
76
|
-
constructor();
|
|
77
|
-
|
|
78
|
-
/**
|
|
79
|
-
* Creates a new subclass of class sap.ovp.app.Component with name `sClassName` and enriches it with the
|
|
80
|
-
* information contained in `oClassInfo`.
|
|
55
|
+
* Creates a new subclass of class sap.ovp.app.TemplateBaseExtension with name `sClassName` and enriches
|
|
56
|
+
* it with the information contained in `oClassInfo`.
|
|
81
57
|
*
|
|
82
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.
|
|
58
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.mvc.ControllerExtension.extend}.
|
|
83
59
|
*
|
|
84
60
|
* @returns Created class / constructor function
|
|
85
61
|
*/
|
|
86
|
-
|
|
62
|
+
extend(
|
|
87
63
|
/**
|
|
88
64
|
* Name of the class being created
|
|
89
65
|
*/
|
|
@@ -91,7 +67,7 @@ declare namespace sap {
|
|
|
91
67
|
/**
|
|
92
68
|
* Object literal with information about the class
|
|
93
69
|
*/
|
|
94
|
-
oClassInfo?:
|
|
70
|
+
oClassInfo?: object,
|
|
95
71
|
/**
|
|
96
72
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
97
73
|
* used by this class
|
|
@@ -99,76 +75,13 @@ declare namespace sap {
|
|
|
99
75
|
FNMetaImpl?: Function
|
|
100
76
|
): Function;
|
|
101
77
|
/**
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
* @returns Metadata object describing this class
|
|
105
|
-
*/
|
|
106
|
-
static getMetadata(): sap.ui.core.ComponentMetadata;
|
|
107
|
-
/**
|
|
108
|
-
* Gets current value of property {@link #getCardContainerFragment cardContainerFragment}.
|
|
109
|
-
*
|
|
110
|
-
* Default value is `"sap.ovp.app.CardContainer"`.
|
|
111
|
-
*
|
|
112
|
-
* @returns Value of property `cardContainerFragment`
|
|
113
|
-
*/
|
|
114
|
-
getCardContainerFragment(): string;
|
|
115
|
-
/**
|
|
116
|
-
* Gets current value of property {@link #getDashboardLayoutUtil dashboardLayoutUtil}.
|
|
117
|
-
*
|
|
118
|
-
* @returns Value of property `dashboardLayoutUtil`
|
|
119
|
-
*/
|
|
120
|
-
getDashboardLayoutUtil(): /* was: sap.ovp.ui.DashboardLayoutUtil */ any;
|
|
121
|
-
/**
|
|
122
|
-
* Gets current value of property {@link #getDesigntimePath designtimePath}.
|
|
123
|
-
*
|
|
124
|
-
* Default value is `"sap/ovp/ui/OVPWrapper.designtime"`.
|
|
125
|
-
*
|
|
126
|
-
* @returns Value of property `designtimePath`
|
|
127
|
-
*/
|
|
128
|
-
getDesigntimePath(): string;
|
|
129
|
-
/**
|
|
130
|
-
* Sets a new value for property {@link #getCardContainerFragment cardContainerFragment}.
|
|
131
|
-
*
|
|
132
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
133
|
-
*
|
|
134
|
-
* Default value is `"sap.ovp.app.CardContainer"`.
|
|
135
|
-
*
|
|
136
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
137
|
-
*/
|
|
138
|
-
setCardContainerFragment(
|
|
139
|
-
/**
|
|
140
|
-
* New value for property `cardContainerFragment`
|
|
141
|
-
*/
|
|
142
|
-
sCardContainerFragment?: string
|
|
143
|
-
): this;
|
|
144
|
-
/**
|
|
145
|
-
* Sets a new value for property {@link #getDashboardLayoutUtil dashboardLayoutUtil}.
|
|
146
|
-
*
|
|
147
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
148
|
-
*
|
|
149
|
-
* @returns Reference to `this` in order to allow method chaining
|
|
150
|
-
*/
|
|
151
|
-
setDashboardLayoutUtil(
|
|
152
|
-
/**
|
|
153
|
-
* New value for property `dashboardLayoutUtil`
|
|
154
|
-
*/
|
|
155
|
-
sDashboardLayoutUtil: /* was: sap.ovp.ui.DashboardLayoutUtil */ any
|
|
156
|
-
): this;
|
|
157
|
-
/**
|
|
158
|
-
* Sets a new value for property {@link #getDesigntimePath designtimePath}.
|
|
159
|
-
*
|
|
160
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
78
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
161
79
|
*
|
|
162
|
-
*
|
|
80
|
+
* Returns a metadata object for class sap.ovp.app.TemplateBaseExtension.
|
|
163
81
|
*
|
|
164
|
-
* @returns
|
|
82
|
+
* @returns Metadata object describing this class
|
|
165
83
|
*/
|
|
166
|
-
|
|
167
|
-
/**
|
|
168
|
-
* New value for property `designtimePath`
|
|
169
|
-
*/
|
|
170
|
-
sDesigntimePath?: string
|
|
171
|
-
): this;
|
|
84
|
+
getMetadata(): sap.ui.base.Metadata;
|
|
172
85
|
}
|
|
173
86
|
}
|
|
174
87
|
}
|
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 namespace sap {
|
|
4
4
|
namespace rules {
|
|
@@ -359,9 +359,15 @@ declare namespace sap {
|
|
|
359
359
|
): this;
|
|
360
360
|
}
|
|
361
361
|
|
|
362
|
-
type AstExpressionLanguage$DataChangeEvent = sap.ui.base.Event<
|
|
362
|
+
type AstExpressionLanguage$DataChangeEvent = sap.ui.base.Event<
|
|
363
|
+
AstExpressionLanguage$DataChangeEventParameters,
|
|
364
|
+
AstExpressionLanguage
|
|
365
|
+
>;
|
|
363
366
|
|
|
364
|
-
type ExpressionLanguage$DataChangeEvent = sap.ui.base.Event<
|
|
367
|
+
type ExpressionLanguage$DataChangeEvent = sap.ui.base.Event<
|
|
368
|
+
ExpressionLanguage$DataChangeEventParameters,
|
|
369
|
+
ExpressionLanguage
|
|
370
|
+
>;
|
|
365
371
|
}
|
|
366
372
|
|
|
367
373
|
interface $DecisionTableConfigurationSettings
|
|
@@ -1465,9 +1471,15 @@ declare namespace sap {
|
|
|
1465
1471
|
TextRule = "TextRule",
|
|
1466
1472
|
}
|
|
1467
1473
|
|
|
1468
|
-
type DecisionTableConfiguration$ChangeEvent = sap.ui.base.Event<
|
|
1474
|
+
type DecisionTableConfiguration$ChangeEvent = sap.ui.base.Event<
|
|
1475
|
+
DecisionTableConfiguration$ChangeEventParameters,
|
|
1476
|
+
DecisionTableConfiguration
|
|
1477
|
+
>;
|
|
1469
1478
|
|
|
1470
|
-
type TextRuleConfiguration$ChangeEvent = sap.ui.base.Event<
|
|
1479
|
+
type TextRuleConfiguration$ChangeEvent = sap.ui.base.Event<
|
|
1480
|
+
TextRuleConfiguration$ChangeEventParameters,
|
|
1481
|
+
TextRuleConfiguration
|
|
1482
|
+
>;
|
|
1471
1483
|
}
|
|
1472
1484
|
}
|
|
1473
1485
|
|
package/types/sap.sac.df.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace sac {
|
|
@@ -9,6 +9,67 @@ declare namespace sap {
|
|
|
9
9
|
* library
|
|
10
10
|
*/
|
|
11
11
|
namespace df {
|
|
12
|
+
namespace controls {
|
|
13
|
+
interface $MultiDimControlSettings
|
|
14
|
+
extends sap.ui.core.$ControlSettings {}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* @experimental
|
|
18
|
+
*
|
|
19
|
+
* Enables users to view, navigate and change multidimensional data exposed via InA.
|
|
20
|
+
*
|
|
21
|
+
* Overview:
|
|
22
|
+
*
|
|
23
|
+
* The user can view the data in a Table, navigate in the data via a context menu or builder panels The
|
|
24
|
+
* data source that the FlexAnalysis consumes or renders has to be provided as a property value.
|
|
25
|
+
*/
|
|
26
|
+
class MultiDimControl extends sap.ui.core.Control {
|
|
27
|
+
/**
|
|
28
|
+
* Constructor for a new `MultiDimControl`.
|
|
29
|
+
*
|
|
30
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
31
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
32
|
+
* of the syntax of the settings object.
|
|
33
|
+
*/
|
|
34
|
+
constructor(
|
|
35
|
+
/**
|
|
36
|
+
* ID for the new control, generated automatically if no ID is given
|
|
37
|
+
*/
|
|
38
|
+
sId?: string
|
|
39
|
+
);
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Creates a new subclass of class sap.sac.df.controls.MultiDimControl with name `sClassName` and enriches
|
|
43
|
+
* it with the information contained in `oClassInfo`.
|
|
44
|
+
*
|
|
45
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
46
|
+
*
|
|
47
|
+
* @returns Created class / constructor function
|
|
48
|
+
*/
|
|
49
|
+
static extend<T extends Record<string, unknown>>(
|
|
50
|
+
/**
|
|
51
|
+
* Name of the class being created
|
|
52
|
+
*/
|
|
53
|
+
sClassName: string,
|
|
54
|
+
/**
|
|
55
|
+
* Object literal with information about the class
|
|
56
|
+
*/
|
|
57
|
+
oClassInfo?: sap.ClassInfo<T, sap.sac.df.controls.MultiDimControl>,
|
|
58
|
+
/**
|
|
59
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
60
|
+
* used by this class
|
|
61
|
+
*/
|
|
62
|
+
FNMetaImpl?: Function
|
|
63
|
+
): Function;
|
|
64
|
+
/**
|
|
65
|
+
* Returns a metadata object for class sap.sac.df.controls.MultiDimControl.
|
|
66
|
+
*
|
|
67
|
+
* @returns Metadata object describing this class
|
|
68
|
+
*/
|
|
69
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
12
73
|
namespace olap {
|
|
13
74
|
/**
|
|
14
75
|
* @experimental
|
|
@@ -442,6 +503,10 @@ declare namespace sap {
|
|
|
442
503
|
* Constructor for a new OlapMode.
|
|
443
504
|
*
|
|
444
505
|
* The Olap Model allows to access and change data from servers providing the InA Protocol.
|
|
506
|
+
*
|
|
507
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
508
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
509
|
+
* of the syntax of the settings object.
|
|
445
510
|
*/
|
|
446
511
|
constructor();
|
|
447
512
|
|
|
@@ -474,6 +539,25 @@ declare namespace sap {
|
|
|
474
539
|
* @returns Metadata object describing this class
|
|
475
540
|
*/
|
|
476
541
|
static getMetadata(): sap.ui.base.Metadata;
|
|
542
|
+
/**
|
|
543
|
+
* Gets current value of property {@link #getApi api}.
|
|
544
|
+
*
|
|
545
|
+
* @returns Value of property `api`
|
|
546
|
+
*/
|
|
547
|
+
getApi(): undefined;
|
|
548
|
+
/**
|
|
549
|
+
* Sets a new value for property {@link #getApi api}.
|
|
550
|
+
*
|
|
551
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
552
|
+
*
|
|
553
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
554
|
+
*/
|
|
555
|
+
setApi(
|
|
556
|
+
/**
|
|
557
|
+
* New value for property `api`
|
|
558
|
+
*/
|
|
559
|
+
sApi: undefined
|
|
560
|
+
): this;
|
|
477
561
|
}
|
|
478
562
|
}
|
|
479
563
|
|
|
@@ -1715,6 +1799,8 @@ declare namespace sap {
|
|
|
1715
1799
|
}
|
|
1716
1800
|
|
|
1717
1801
|
interface IUI5DefineDependencyNames {
|
|
1802
|
+
"sap/sac/df/controls/MultiDimControl": undefined;
|
|
1803
|
+
|
|
1718
1804
|
"sap/sac/df/FlexAnalysis": undefined;
|
|
1719
1805
|
|
|
1720
1806
|
"sap/sac/df/FlexAnalysisPanel": undefined;
|