@sapui5/ts-types 1.102.1 → 1.103.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 +11 -11
- package/types/sap.chart.d.ts +2 -2
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +164 -24
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +29 -1159
- package/types/sap.fe.macros.d.ts +52 -627
- package/types/sap.fe.navigation.d.ts +1 -1309
- package/types/sap.fe.templates.d.ts +2 -161
- package/types/sap.fe.test.d.ts +12 -244
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +343 -63
- package/types/sap.insights.d.ts +2 -61
- package/types/sap.landvisz.d.ts +15 -15
- package/types/sap.m.d.ts +513 -284
- package/types/sap.makit.d.ts +5 -5
- package/types/sap.me.d.ts +2 -2
- package/types/sap.ndc.d.ts +75 -3
- package/types/sap.ovp.d.ts +6 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +163 -1
- package/types/sap.sac.grid.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +59 -59
- package/types/sap.suite.ui.generic.template.d.ts +98 -12
- package/types/sap.suite.ui.microchart.d.ts +14 -14
- package/types/sap.tnt.d.ts +5 -5
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +36 -36
- package/types/sap.ui.comp.d.ts +113 -28
- package/types/sap.ui.core.d.ts +294 -92
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +3 -1
- package/types/sap.ui.generic.app.d.ts +13 -6
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +3 -3
- package/types/sap.ui.layout.d.ts +33 -41
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +2 -2
- 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 +9 -9
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +35 -35
- package/types/sap.ui.ux3.d.ts +43 -43
- package/types/sap.ui.vbm.d.ts +130 -55
- package/types/sap.ui.vk.d.ts +25 -25
- package/types/sap.ui.vtm.d.ts +15 -12
- package/types/sap.uiext.inbox.d.ts +3 -3
- package/types/sap.ushell.d.ts +14 -12
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +13 -13
- package/types/sap.viz.d.ts +8 -8
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +4 -4
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.103.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -167,25 +167,32 @@ declare namespace sap {
|
|
|
167
167
|
*/
|
|
168
168
|
setCustomMessage(
|
|
169
169
|
/**
|
|
170
|
-
* custom message along with type to set on table
|
|
170
|
+
* custom message along with type to set on table. If this parameter is faulty an existing message will
|
|
171
|
+
* be removed.
|
|
171
172
|
*/
|
|
172
|
-
oMessage
|
|
173
|
+
oMessage?: {
|
|
173
174
|
/**
|
|
174
175
|
* message string to display
|
|
175
176
|
*/
|
|
176
|
-
message
|
|
177
|
+
message: string;
|
|
177
178
|
/**
|
|
178
179
|
* indicates type of message (sap.ui.core.MessageType) whether it's sap.ui.core.MessageType.Success, sap.ui.core.MessageType.Warning,
|
|
179
180
|
* sap.ui.core.MessageType.Error or sap.ui.core.MessageType.Information.
|
|
180
181
|
*/
|
|
181
|
-
type
|
|
182
|
+
type: string;
|
|
182
183
|
},
|
|
183
184
|
/**
|
|
184
185
|
* If switching between different table views is enabled, this parameter can be used to identify the views
|
|
185
186
|
* which are affected by this call. Faulty values indicate that all views should be affected. Otherwise
|
|
186
187
|
* the value should either be one string or an array of strings identifying the affected variant items.
|
|
187
188
|
*/
|
|
188
|
-
vTabKey?: any[] | string
|
|
189
|
+
vTabKey?: any[] | string,
|
|
190
|
+
/**
|
|
191
|
+
* A function that is called when the user closes the message bar. Note that the messages for all tabs specified
|
|
192
|
+
* via `vTabKey` will be considered to be obsolete when the user closes the message bar while one of them
|
|
193
|
+
* is active.
|
|
194
|
+
*/
|
|
195
|
+
onClose?: Function
|
|
189
196
|
): void;
|
|
190
197
|
}
|
|
191
198
|
}
|
|
@@ -937,7 +944,7 @@ declare namespace sap {
|
|
|
937
944
|
* This gives the provision to the application developer to chosse between "display"/"edit" mode for target
|
|
938
945
|
* page
|
|
939
946
|
*/
|
|
940
|
-
displayMode?:
|
|
947
|
+
displayMode?: sap.suite.ui.generic.template.displayMode;
|
|
941
948
|
}
|
|
942
949
|
): void;
|
|
943
950
|
}
|
|
@@ -1172,25 +1179,32 @@ declare namespace sap {
|
|
|
1172
1179
|
*/
|
|
1173
1180
|
setCustomMessage(
|
|
1174
1181
|
/**
|
|
1175
|
-
* custom message along with type to set on table
|
|
1182
|
+
* custom message along with type to set on table. If this parameter is faulty an existing message will
|
|
1183
|
+
* be removed.
|
|
1176
1184
|
*/
|
|
1177
|
-
oMessage
|
|
1185
|
+
oMessage?: {
|
|
1178
1186
|
/**
|
|
1179
1187
|
* message string to display
|
|
1180
1188
|
*/
|
|
1181
|
-
message
|
|
1189
|
+
message: string;
|
|
1182
1190
|
/**
|
|
1183
1191
|
* indicates type of message (sap.ui.core.MessageType) whether it's sap.ui.core.MessageType.Success, sap.ui.core.MessageType.Warning,
|
|
1184
1192
|
* sap.ui.core.MessageType.Error or sap.ui.core.MessageType.Information.
|
|
1185
1193
|
*/
|
|
1186
|
-
type
|
|
1194
|
+
type: string;
|
|
1187
1195
|
},
|
|
1188
1196
|
/**
|
|
1189
1197
|
* If switching between different table views is enabled, this parameter can be used to identify the views
|
|
1190
1198
|
* which are affected by this call. Faulty values indicate that all views should be affected. Otherwise
|
|
1191
1199
|
* the value should either be one string or an array of strings identifying the affected variant items.
|
|
1192
1200
|
*/
|
|
1193
|
-
vTabKey?: any[] | string
|
|
1201
|
+
vTabKey?: any[] | string,
|
|
1202
|
+
/**
|
|
1203
|
+
* A function that is called when the user closes the message bar. Note that the messages for all tabs specified
|
|
1204
|
+
* via `vTabKey` will be considered to be obsolete when the user closes the message bar while one of them
|
|
1205
|
+
* is active.
|
|
1206
|
+
*/
|
|
1207
|
+
onClose?: Function
|
|
1194
1208
|
): void;
|
|
1195
1209
|
/**
|
|
1196
1210
|
* @EXPERIMENTAL
|
|
@@ -2076,6 +2090,56 @@ declare namespace sap {
|
|
|
2076
2090
|
sActionLabel?: string;
|
|
2077
2091
|
}
|
|
2078
2092
|
): Promise<any>;
|
|
2093
|
+
/**
|
|
2094
|
+
* Provide an option for showing an own message in the message bar above the OP table
|
|
2095
|
+
*/
|
|
2096
|
+
setCustomMessage(
|
|
2097
|
+
/**
|
|
2098
|
+
* the entitySet identifying the table to set custom message
|
|
2099
|
+
*/
|
|
2100
|
+
vTabKey: any[] | string,
|
|
2101
|
+
/**
|
|
2102
|
+
* custom message along with type to set on table
|
|
2103
|
+
*/
|
|
2104
|
+
oMessage: {
|
|
2105
|
+
/**
|
|
2106
|
+
* message string to display
|
|
2107
|
+
*/
|
|
2108
|
+
message?: string;
|
|
2109
|
+
/**
|
|
2110
|
+
* indicates type of message (sap.ui.core.MessageType) whether it's sap.ui.core.MessageType.Success, sap.ui.core.MessageType.Warning,
|
|
2111
|
+
* sap.ui.core.MessageType.Error or sap.ui.core.MessageType.Information.
|
|
2112
|
+
*/
|
|
2113
|
+
type?: string;
|
|
2114
|
+
},
|
|
2115
|
+
/**
|
|
2116
|
+
* Id of the table for which message should be set
|
|
2117
|
+
*/
|
|
2118
|
+
sSmartTableId: string
|
|
2119
|
+
): void;
|
|
2120
|
+
/**
|
|
2121
|
+
* Provide an option for showing an own message in the message bar above the OP table
|
|
2122
|
+
*/
|
|
2123
|
+
setCustomMessage(
|
|
2124
|
+
/**
|
|
2125
|
+
* custom message along with type to set on table
|
|
2126
|
+
*/
|
|
2127
|
+
oMessage: {
|
|
2128
|
+
/**
|
|
2129
|
+
* message string to display
|
|
2130
|
+
*/
|
|
2131
|
+
message?: string;
|
|
2132
|
+
/**
|
|
2133
|
+
* indicates type of message (sap.ui.core.MessageType) whether it's sap.ui.core.MessageType.Success, sap.ui.core.MessageType.Warning,
|
|
2134
|
+
* sap.ui.core.MessageType.Error or sap.ui.core.MessageType.Information.
|
|
2135
|
+
*/
|
|
2136
|
+
type?: string;
|
|
2137
|
+
},
|
|
2138
|
+
/**
|
|
2139
|
+
* Id of the table for which message should be set
|
|
2140
|
+
*/
|
|
2141
|
+
sSmartTableId: string
|
|
2142
|
+
): void;
|
|
2079
2143
|
/**
|
|
2080
2144
|
* @EXPERIMENTAL
|
|
2081
2145
|
*
|
|
@@ -2444,6 +2508,28 @@ declare namespace sap {
|
|
|
2444
2508
|
}
|
|
2445
2509
|
const controllerFrameworkExtensions: controllerFrameworkExtensions;
|
|
2446
2510
|
}
|
|
2511
|
+
|
|
2512
|
+
/**
|
|
2513
|
+
* A static enumeration type which indicates the mode of targeted page while using navigateInternal extensionAPI
|
|
2514
|
+
*/
|
|
2515
|
+
enum displayMode {
|
|
2516
|
+
/**
|
|
2517
|
+
* Navigating in create mode
|
|
2518
|
+
*/
|
|
2519
|
+
create = "create",
|
|
2520
|
+
/**
|
|
2521
|
+
* Navigating in read-only mode
|
|
2522
|
+
*/
|
|
2523
|
+
display = "display",
|
|
2524
|
+
/**
|
|
2525
|
+
* Navigating in draft mode
|
|
2526
|
+
*/
|
|
2527
|
+
edit = "edit",
|
|
2528
|
+
/**
|
|
2529
|
+
* Navigating with a mode which is not yet decided (fallback condition)
|
|
2530
|
+
*/
|
|
2531
|
+
undefined = "undefined",
|
|
2532
|
+
}
|
|
2447
2533
|
}
|
|
2448
2534
|
}
|
|
2449
2535
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.103.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -2625,7 +2625,7 @@ declare namespace sap {
|
|
|
2625
2625
|
* The line to remove or its index or id
|
|
2626
2626
|
*/
|
|
2627
2627
|
vLine: int | string | sap.suite.ui.microchart.AreaMicroChartItem
|
|
2628
|
-
): sap.suite.ui.microchart.AreaMicroChartItem;
|
|
2628
|
+
): sap.suite.ui.microchart.AreaMicroChartItem | null;
|
|
2629
2629
|
/**
|
|
2630
2630
|
* Sets the aggregated {@link #getChart chart}.
|
|
2631
2631
|
*
|
|
@@ -3142,7 +3142,7 @@ declare namespace sap {
|
|
|
3142
3142
|
* The point to remove or its index or id
|
|
3143
3143
|
*/
|
|
3144
3144
|
vPoint: int | string | sap.suite.ui.microchart.AreaMicroChartPoint
|
|
3145
|
-
): sap.suite.ui.microchart.AreaMicroChartPoint;
|
|
3145
|
+
): sap.suite.ui.microchart.AreaMicroChartPoint | null;
|
|
3146
3146
|
/**
|
|
3147
3147
|
* Sets a new value for property {@link #getColor color}.
|
|
3148
3148
|
*
|
|
@@ -3963,7 +3963,7 @@ declare namespace sap {
|
|
|
3963
3963
|
| int
|
|
3964
3964
|
| string
|
|
3965
3965
|
| sap.suite.ui.microchart.BulletMicroChartData
|
|
3966
|
-
): sap.suite.ui.microchart.BulletMicroChartData;
|
|
3966
|
+
): sap.suite.ui.microchart.BulletMicroChartData | null;
|
|
3967
3967
|
/**
|
|
3968
3968
|
* Sets the aggregated {@link #getActual actual}.
|
|
3969
3969
|
*
|
|
@@ -4897,7 +4897,7 @@ declare namespace sap {
|
|
|
4897
4897
|
* The column to remove or its index or id
|
|
4898
4898
|
*/
|
|
4899
4899
|
vColumn: int | string | sap.suite.ui.microchart.ColumnMicroChartData
|
|
4900
|
-
): sap.suite.ui.microchart.ColumnMicroChartData;
|
|
4900
|
+
): sap.suite.ui.microchart.ColumnMicroChartData | null;
|
|
4901
4901
|
/**
|
|
4902
4902
|
* @SINCE 1.60.0
|
|
4903
4903
|
*
|
|
@@ -5853,7 +5853,7 @@ declare namespace sap {
|
|
|
5853
5853
|
| int
|
|
5854
5854
|
| string
|
|
5855
5855
|
| sap.suite.ui.microchart.ComparisonMicroChartData
|
|
5856
|
-
): sap.suite.ui.microchart.ComparisonMicroChartData;
|
|
5856
|
+
): sap.suite.ui.microchart.ComparisonMicroChartData | null;
|
|
5857
5857
|
/**
|
|
5858
5858
|
* Sets a new value for property {@link #getColorPalette colorPalette}.
|
|
5859
5859
|
*
|
|
@@ -7276,7 +7276,7 @@ declare namespace sap {
|
|
|
7276
7276
|
| int
|
|
7277
7277
|
| string
|
|
7278
7278
|
| sap.suite.ui.microchart.HarveyBallMicroChartItem
|
|
7279
|
-
): sap.suite.ui.microchart.HarveyBallMicroChartItem;
|
|
7279
|
+
): sap.suite.ui.microchart.HarveyBallMicroChartItem | null;
|
|
7280
7280
|
/**
|
|
7281
7281
|
* @SINCE 1.62.0
|
|
7282
7282
|
*
|
|
@@ -8157,7 +8157,7 @@ declare namespace sap {
|
|
|
8157
8157
|
* The bar to remove or its index or id
|
|
8158
8158
|
*/
|
|
8159
8159
|
vBar: int | string | sap.suite.ui.microchart.InteractiveBarChartBar
|
|
8160
|
-
): sap.suite.ui.microchart.InteractiveBarChartBar;
|
|
8160
|
+
): sap.suite.ui.microchart.InteractiveBarChartBar | null;
|
|
8161
8161
|
/**
|
|
8162
8162
|
* Sets a new value for property {@link #getDisplayedBars displayedBars}.
|
|
8163
8163
|
*
|
|
@@ -8916,7 +8916,7 @@ declare namespace sap {
|
|
|
8916
8916
|
| int
|
|
8917
8917
|
| string
|
|
8918
8918
|
| sap.suite.ui.microchart.InteractiveDonutChartSegment
|
|
8919
|
-
): sap.suite.ui.microchart.InteractiveDonutChartSegment;
|
|
8919
|
+
): sap.suite.ui.microchart.InteractiveDonutChartSegment | null;
|
|
8920
8920
|
/**
|
|
8921
8921
|
* Sets a new value for property {@link #getDisplayedSegments displayedSegments}.
|
|
8922
8922
|
*
|
|
@@ -9650,7 +9650,7 @@ declare namespace sap {
|
|
|
9650
9650
|
| int
|
|
9651
9651
|
| string
|
|
9652
9652
|
| sap.suite.ui.microchart.InteractiveLineChartPoint
|
|
9653
|
-
): sap.suite.ui.microchart.InteractiveLineChartPoint;
|
|
9653
|
+
): sap.suite.ui.microchart.InteractiveLineChartPoint | null;
|
|
9654
9654
|
/**
|
|
9655
9655
|
* Sets a new value for property {@link #getDisplayedPoints displayedPoints}.
|
|
9656
9656
|
*
|
|
@@ -10566,7 +10566,7 @@ declare namespace sap {
|
|
|
10566
10566
|
* The line to remove or its index or id
|
|
10567
10567
|
*/
|
|
10568
10568
|
vLine: int | string | sap.suite.ui.microchart.LineMicroChartLine
|
|
10569
|
-
): sap.suite.ui.microchart.LineMicroChartLine;
|
|
10569
|
+
): sap.suite.ui.microchart.LineMicroChartLine | null;
|
|
10570
10570
|
/**
|
|
10571
10571
|
* Removes a point from the aggregation {@link #getPoints points}.
|
|
10572
10572
|
*
|
|
@@ -10577,7 +10577,7 @@ declare namespace sap {
|
|
|
10577
10577
|
* The point to remove or its index or id
|
|
10578
10578
|
*/
|
|
10579
10579
|
vPoint: int | string | sap.suite.ui.microchart.LineMicroChartPoint
|
|
10580
|
-
): sap.suite.ui.microchart.LineMicroChartPoint;
|
|
10580
|
+
): sap.suite.ui.microchart.LineMicroChartPoint | null;
|
|
10581
10581
|
/**
|
|
10582
10582
|
* Sets a new value for property {@link #getColor color}.
|
|
10583
10583
|
*
|
|
@@ -11269,7 +11269,7 @@ declare namespace sap {
|
|
|
11269
11269
|
* The point to remove or its index or id
|
|
11270
11270
|
*/
|
|
11271
11271
|
vPoint: int | string | sap.suite.ui.microchart.LineMicroChartPoint
|
|
11272
|
-
): sap.suite.ui.microchart.LineMicroChartPoint;
|
|
11272
|
+
): sap.suite.ui.microchart.LineMicroChartPoint | null;
|
|
11273
11273
|
/**
|
|
11274
11274
|
* Sets a new value for property {@link #getColor color}.
|
|
11275
11275
|
*
|
|
@@ -12239,7 +12239,7 @@ declare namespace sap {
|
|
|
12239
12239
|
* The bar to remove or its index or id
|
|
12240
12240
|
*/
|
|
12241
12241
|
vBar: int | string | sap.suite.ui.microchart.StackedBarMicroChartBar
|
|
12242
|
-
): sap.suite.ui.microchart.StackedBarMicroChartBar;
|
|
12242
|
+
): sap.suite.ui.microchart.StackedBarMicroChartBar | null;
|
|
12243
12243
|
/**
|
|
12244
12244
|
* @SINCE 1.76
|
|
12245
12245
|
*
|
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.103.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -825,7 +825,7 @@ declare namespace sap {
|
|
|
825
825
|
/**
|
|
826
826
|
* Gets the currently selected `NavigationListItem`.
|
|
827
827
|
*
|
|
828
|
-
* @returns The selected item or null if nothing is selected
|
|
828
|
+
* @returns The selected item or `null` if nothing is selected
|
|
829
829
|
*/
|
|
830
830
|
getSelectedItem(): sap.tnt.NavigationListItem | null;
|
|
831
831
|
/**
|
|
@@ -927,7 +927,7 @@ declare namespace sap {
|
|
|
927
927
|
* The item to remove or its index or id
|
|
928
928
|
*/
|
|
929
929
|
vItem: int | string | sap.tnt.NavigationListItem
|
|
930
|
-
): sap.tnt.NavigationListItem;
|
|
930
|
+
): sap.tnt.NavigationListItem | null;
|
|
931
931
|
/**
|
|
932
932
|
* Sets a new value for property {@link #getExpanded expanded}.
|
|
933
933
|
*
|
|
@@ -1261,7 +1261,7 @@ declare namespace sap {
|
|
|
1261
1261
|
* The item to remove or its index or id
|
|
1262
1262
|
*/
|
|
1263
1263
|
vItem: int | string | sap.tnt.NavigationListItem
|
|
1264
|
-
): sap.tnt.NavigationListItem;
|
|
1264
|
+
): sap.tnt.NavigationListItem | null;
|
|
1265
1265
|
/**
|
|
1266
1266
|
* Sets a new value for property {@link #getExpanded expanded}.
|
|
1267
1267
|
*
|
|
@@ -2071,7 +2071,7 @@ declare namespace sap {
|
|
|
2071
2071
|
* The mainContent to remove or its index or id
|
|
2072
2072
|
*/
|
|
2073
2073
|
vMainContent: int | string | sap.ui.core.Control
|
|
2074
|
-
): sap.ui.core.Control;
|
|
2074
|
+
): sap.ui.core.Control | null;
|
|
2075
2075
|
/**
|
|
2076
2076
|
* Sets the aggregated {@link #getHeader header}.
|
|
2077
2077
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.103.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -2187,7 +2187,7 @@ declare namespace sap {
|
|
|
2187
2187
|
* The content to remove or its index or id
|
|
2188
2188
|
*/
|
|
2189
2189
|
vContent: int | string | sap.ui.core.Control
|
|
2190
|
-
): sap.ui.core.Control;
|
|
2190
|
+
): sap.ui.core.Control | null;
|
|
2191
2191
|
/**
|
|
2192
2192
|
* @deprecated (since 1.3.3) - Redundant to the aggregation by the parent border layout.
|
|
2193
2193
|
*
|
|
@@ -2571,7 +2571,7 @@ declare namespace sap {
|
|
|
2571
2571
|
* The row to remove or its index or id
|
|
2572
2572
|
*/
|
|
2573
2573
|
vRow: int | string | sap.ui.commons.layout.MatrixLayoutRow
|
|
2574
|
-
): sap.ui.commons.layout.MatrixLayoutRow;
|
|
2574
|
+
): sap.ui.commons.layout.MatrixLayoutRow | null;
|
|
2575
2575
|
/**
|
|
2576
2576
|
* Sets a new value for property {@link #getColumns columns}.
|
|
2577
2577
|
*
|
|
@@ -2918,7 +2918,7 @@ declare namespace sap {
|
|
|
2918
2918
|
* The content to remove or its index or id
|
|
2919
2919
|
*/
|
|
2920
2920
|
vContent: int | string | sap.ui.core.Control
|
|
2921
|
-
): sap.ui.core.Control;
|
|
2921
|
+
): sap.ui.core.Control | null;
|
|
2922
2922
|
/**
|
|
2923
2923
|
* Removes the given string from the list of custom style classes that have been set previously. Regular
|
|
2924
2924
|
* style classes like "sapUiBtn" cannot be removed.
|
|
@@ -3250,7 +3250,7 @@ declare namespace sap {
|
|
|
3250
3250
|
* The cell to remove or its index or id
|
|
3251
3251
|
*/
|
|
3252
3252
|
vCell: int | string | sap.ui.commons.layout.MatrixLayoutCell
|
|
3253
|
-
): sap.ui.commons.layout.MatrixLayoutCell;
|
|
3253
|
+
): sap.ui.commons.layout.MatrixLayoutCell | null;
|
|
3254
3254
|
/**
|
|
3255
3255
|
* Removes the given string from the list of custom style classes that have been set previously. Regular
|
|
3256
3256
|
* style classes like "sapUiBtn" cannot be removed.
|
|
@@ -8017,7 +8017,7 @@ declare namespace sap {
|
|
|
8017
8017
|
* The section to remove or its index or id
|
|
8018
8018
|
*/
|
|
8019
8019
|
vSection: int | string | sap.ui.commons.AccordionSection
|
|
8020
|
-
): sap.ui.commons.AccordionSection;
|
|
8020
|
+
): sap.ui.commons.AccordionSection | null;
|
|
8021
8021
|
/**
|
|
8022
8022
|
* Redefinition of the method to add additional handling
|
|
8023
8023
|
*
|
|
@@ -8306,7 +8306,7 @@ declare namespace sap {
|
|
|
8306
8306
|
* The content to remove or its index or id
|
|
8307
8307
|
*/
|
|
8308
8308
|
vContent: int | string | sap.ui.core.Control
|
|
8309
|
-
): sap.ui.core.Control;
|
|
8309
|
+
): sap.ui.core.Control | null;
|
|
8310
8310
|
/**
|
|
8311
8311
|
* Property setter for the "collapsed" state
|
|
8312
8312
|
*
|
|
@@ -9691,7 +9691,7 @@ declare namespace sap {
|
|
|
9691
9691
|
* The content to remove or its index or id
|
|
9692
9692
|
*/
|
|
9693
9693
|
vContent: int | string | sap.ui.core.Control
|
|
9694
|
-
): sap.ui.core.Control;
|
|
9694
|
+
): sap.ui.core.Control | null;
|
|
9695
9695
|
}
|
|
9696
9696
|
/**
|
|
9697
9697
|
* @deprecated (since 1.38)
|
|
@@ -10359,7 +10359,7 @@ declare namespace sap {
|
|
|
10359
10359
|
* The content to remove or its index or id
|
|
10360
10360
|
*/
|
|
10361
10361
|
vContent: int | string | sap.ui.core.Control
|
|
10362
|
-
): sap.ui.core.Control;
|
|
10362
|
+
): sap.ui.core.Control | null;
|
|
10363
10363
|
/**
|
|
10364
10364
|
* Sets a new value for property {@link #getAnimationDuration animationDuration}.
|
|
10365
10365
|
*
|
|
@@ -11210,11 +11210,11 @@ declare namespace sap {
|
|
|
11210
11210
|
*/
|
|
11211
11211
|
getDisplaySecondaryValues(): boolean;
|
|
11212
11212
|
/**
|
|
11213
|
-
* Returns the
|
|
11213
|
+
* Returns the DOM element which represents the icon for value help. Could be overwritten in child-classes.
|
|
11214
11214
|
*
|
|
11215
|
-
* @returns The F4-element's DOM reference or null
|
|
11215
|
+
* @returns The F4-element's DOM reference or `null`
|
|
11216
11216
|
*/
|
|
11217
|
-
getF4ButtonDomRef(): Element;
|
|
11217
|
+
getF4ButtonDomRef(): Element | null;
|
|
11218
11218
|
/**
|
|
11219
11219
|
* Gets content of aggregation {@link #getItems items}.
|
|
11220
11220
|
*
|
|
@@ -11353,7 +11353,7 @@ declare namespace sap {
|
|
|
11353
11353
|
* The item to remove or its index or id
|
|
11354
11354
|
*/
|
|
11355
11355
|
vItem: int | string | sap.ui.core.ListItem
|
|
11356
|
-
): sap.ui.core.ListItem;
|
|
11356
|
+
): sap.ui.core.ListItem | null;
|
|
11357
11357
|
/**
|
|
11358
11358
|
* Sets a new value for property {@link #getDisplaySecondaryValues displaySecondaryValues}.
|
|
11359
11359
|
*
|
|
@@ -12107,7 +12107,7 @@ declare namespace sap {
|
|
|
12107
12107
|
* The button to remove or its index or id
|
|
12108
12108
|
*/
|
|
12109
12109
|
vButton: int | string | sap.ui.core.Control
|
|
12110
|
-
): sap.ui.core.Control;
|
|
12110
|
+
): sap.ui.core.Control | null;
|
|
12111
12111
|
/**
|
|
12112
12112
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
12113
12113
|
*
|
|
@@ -12118,7 +12118,7 @@ declare namespace sap {
|
|
|
12118
12118
|
* The content to remove or its index or id
|
|
12119
12119
|
*/
|
|
12120
12120
|
vContent: int | string | sap.ui.core.Control
|
|
12121
|
-
): sap.ui.core.Control;
|
|
12121
|
+
): sap.ui.core.Control | null;
|
|
12122
12122
|
/**
|
|
12123
12123
|
* Sets a new value for property {@link #getAccessibleRole accessibleRole}.
|
|
12124
12124
|
*
|
|
@@ -13158,7 +13158,7 @@ declare namespace sap {
|
|
|
13158
13158
|
* The control to remove or its index or id
|
|
13159
13159
|
*/
|
|
13160
13160
|
vControl: int | string | sap.ui.core.Control
|
|
13161
|
-
): sap.ui.core.Control;
|
|
13161
|
+
): sap.ui.core.Control | null;
|
|
13162
13162
|
/**
|
|
13163
13163
|
* Sets a new value for property {@link #getAccessibleRole accessibleRole}.
|
|
13164
13164
|
*
|
|
@@ -13885,7 +13885,7 @@ declare namespace sap {
|
|
|
13885
13885
|
* The area to remove or its index or id
|
|
13886
13886
|
*/
|
|
13887
13887
|
vArea: int | string | sap.ui.commons.Area
|
|
13888
|
-
): sap.ui.commons.Area;
|
|
13888
|
+
): sap.ui.commons.Area | null;
|
|
13889
13889
|
/**
|
|
13890
13890
|
* Sets a new value for property {@link #getName name}.
|
|
13891
13891
|
*
|
|
@@ -15523,7 +15523,7 @@ declare namespace sap {
|
|
|
15523
15523
|
* The item to remove or its index or id
|
|
15524
15524
|
*/
|
|
15525
15525
|
vItem: int | string | sap.ui.core.Item
|
|
15526
|
-
): sap.ui.core.Item;
|
|
15526
|
+
): sap.ui.core.Item | null;
|
|
15527
15527
|
/**
|
|
15528
15528
|
* Removes the given index from this selection. When the index is invalid or not selected, the call is ignored.
|
|
15529
15529
|
*
|
|
@@ -16058,7 +16058,7 @@ declare namespace sap {
|
|
|
16058
16058
|
* The item to remove or its index or id
|
|
16059
16059
|
*/
|
|
16060
16060
|
vItem: int | string | sap.ui.unified.MenuItem
|
|
16061
|
-
): sap.ui.unified.MenuItem;
|
|
16061
|
+
): sap.ui.unified.MenuItem | null;
|
|
16062
16062
|
/**
|
|
16063
16063
|
* Sets a new value for property {@link #getDesign design}.
|
|
16064
16064
|
*
|
|
@@ -17867,7 +17867,7 @@ declare namespace sap {
|
|
|
17867
17867
|
* The button to remove or its index or id
|
|
17868
17868
|
*/
|
|
17869
17869
|
vButton: int | string | sap.ui.commons.Button
|
|
17870
|
-
): sap.ui.commons.Button;
|
|
17870
|
+
): sap.ui.commons.Button | null;
|
|
17871
17871
|
/**
|
|
17872
17872
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
17873
17873
|
*
|
|
@@ -17878,7 +17878,7 @@ declare namespace sap {
|
|
|
17878
17878
|
* The content to remove or its index or id
|
|
17879
17879
|
*/
|
|
17880
17880
|
vContent: int | string | sap.ui.core.Control
|
|
17881
|
-
): sap.ui.core.Control;
|
|
17881
|
+
): sap.ui.core.Control | null;
|
|
17882
17882
|
/**
|
|
17883
17883
|
* Property setter for the padding
|
|
17884
17884
|
*
|
|
@@ -19190,7 +19190,7 @@ declare namespace sap {
|
|
|
19190
19190
|
* The item to remove or its index or id
|
|
19191
19191
|
*/
|
|
19192
19192
|
vItem: int | string | sap.ui.core.Item
|
|
19193
|
-
): sap.ui.core.Item;
|
|
19193
|
+
): sap.ui.core.Item | null;
|
|
19194
19194
|
/**
|
|
19195
19195
|
* Sets a new value for property {@link #getColumns columns}.
|
|
19196
19196
|
*
|
|
@@ -20115,7 +20115,7 @@ declare namespace sap {
|
|
|
20115
20115
|
* The range to remove or its index or id
|
|
20116
20116
|
*/
|
|
20117
20117
|
vRange: int | string | sap.ui.commons.ResponsiveContainerRange
|
|
20118
|
-
): sap.ui.commons.ResponsiveContainerRange;
|
|
20118
|
+
): sap.ui.commons.ResponsiveContainerRange | null;
|
|
20119
20119
|
/**
|
|
20120
20120
|
* Sets the associated {@link #getDefaultContent defaultContent}.
|
|
20121
20121
|
*
|
|
@@ -20821,7 +20821,7 @@ declare namespace sap {
|
|
|
20821
20821
|
* The step to remove or its index or id
|
|
20822
20822
|
*/
|
|
20823
20823
|
vStep: int | string | sap.ui.commons.RoadMapStep
|
|
20824
|
-
): sap.ui.commons.RoadMapStep;
|
|
20824
|
+
): sap.ui.commons.RoadMapStep | null;
|
|
20825
20825
|
/**
|
|
20826
20826
|
* Sets a new value for property {@link #getFirstVisibleStep firstVisibleStep}.
|
|
20827
20827
|
*
|
|
@@ -21084,7 +21084,7 @@ declare namespace sap {
|
|
|
21084
21084
|
* The subStep to remove or its index or id
|
|
21085
21085
|
*/
|
|
21086
21086
|
vSubStep: int | string | sap.ui.commons.RoadMapStep
|
|
21087
|
-
): sap.ui.commons.RoadMapStep;
|
|
21087
|
+
): sap.ui.commons.RoadMapStep | null;
|
|
21088
21088
|
/**
|
|
21089
21089
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
21090
21090
|
*
|
|
@@ -21864,7 +21864,7 @@ declare namespace sap {
|
|
|
21864
21864
|
* The filter to remove or its index or id
|
|
21865
21865
|
*/
|
|
21866
21866
|
vFilter: int | string | sap.ui.commons.RowRepeaterFilter
|
|
21867
|
-
): sap.ui.commons.RowRepeaterFilter;
|
|
21867
|
+
): sap.ui.commons.RowRepeaterFilter | null;
|
|
21868
21868
|
/**
|
|
21869
21869
|
* Removes a row from the aggregation {@link #getRows rows}.
|
|
21870
21870
|
*
|
|
@@ -21875,7 +21875,7 @@ declare namespace sap {
|
|
|
21875
21875
|
* The row to remove or its index or id
|
|
21876
21876
|
*/
|
|
21877
21877
|
vRow: int | string | sap.ui.core.Control
|
|
21878
|
-
): sap.ui.core.Control;
|
|
21878
|
+
): sap.ui.core.Control | null;
|
|
21879
21879
|
/**
|
|
21880
21880
|
* Removes a sorter from the aggregation {@link #getSorters sorters}.
|
|
21881
21881
|
*
|
|
@@ -21886,7 +21886,7 @@ declare namespace sap {
|
|
|
21886
21886
|
* The sorter to remove or its index or id
|
|
21887
21887
|
*/
|
|
21888
21888
|
vSorter: int | string | sap.ui.commons.RowRepeaterSorter
|
|
21889
|
-
): sap.ui.commons.RowRepeaterSorter;
|
|
21889
|
+
): sap.ui.commons.RowRepeaterSorter | null;
|
|
21890
21890
|
/**
|
|
21891
21891
|
* Resizes the row repeater by changing the number of displayed rows. This method will only resize the RowRepeater
|
|
21892
21892
|
* if the property showMoreSteps is set.
|
|
@@ -23451,7 +23451,7 @@ declare namespace sap {
|
|
|
23451
23451
|
* The button to remove or its index or id
|
|
23452
23452
|
*/
|
|
23453
23453
|
vButton: int | string | sap.ui.commons.Button
|
|
23454
|
-
): sap.ui.commons.Button;
|
|
23454
|
+
): sap.ui.commons.Button | null;
|
|
23455
23455
|
/**
|
|
23456
23456
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
23457
23457
|
*
|
|
@@ -24399,7 +24399,7 @@ declare namespace sap {
|
|
|
24399
24399
|
* The firstPaneContent to remove or its index or id
|
|
24400
24400
|
*/
|
|
24401
24401
|
vFirstPaneContent: int | string | sap.ui.core.Control
|
|
24402
|
-
): sap.ui.core.Control;
|
|
24402
|
+
): sap.ui.core.Control | null;
|
|
24403
24403
|
/**
|
|
24404
24404
|
* Removes a secondPaneContent from the aggregation {@link #getSecondPaneContent secondPaneContent}.
|
|
24405
24405
|
*
|
|
@@ -24410,7 +24410,7 @@ declare namespace sap {
|
|
|
24410
24410
|
* The secondPaneContent to remove or its index or id
|
|
24411
24411
|
*/
|
|
24412
24412
|
vSecondPaneContent: int | string | sap.ui.core.Control
|
|
24413
|
-
): sap.ui.core.Control;
|
|
24413
|
+
): sap.ui.core.Control | null;
|
|
24414
24414
|
/**
|
|
24415
24415
|
* Sets a new value for property {@link #getHeight height}.
|
|
24416
24416
|
*
|
|
@@ -25092,7 +25092,7 @@ declare namespace sap {
|
|
|
25092
25092
|
* The tab to remove or its index or id
|
|
25093
25093
|
*/
|
|
25094
25094
|
vTab: int | string | sap.ui.commons.Tab
|
|
25095
|
-
): sap.ui.commons.Tab;
|
|
25095
|
+
): sap.ui.commons.Tab | null;
|
|
25096
25096
|
/**
|
|
25097
25097
|
* Sets whether tab reordering is enabled.
|
|
25098
25098
|
*
|
|
@@ -27062,7 +27062,7 @@ declare namespace sap {
|
|
|
27062
27062
|
* The item to remove or its index or id
|
|
27063
27063
|
*/
|
|
27064
27064
|
vItem: int | string | sap.ui.commons.ToolbarItem
|
|
27065
|
-
): sap.ui.commons.ToolbarItem;
|
|
27065
|
+
): sap.ui.commons.ToolbarItem | null;
|
|
27066
27066
|
/**
|
|
27067
27067
|
* Removes a rightItem from the aggregation {@link #getRightItems rightItems}.
|
|
27068
27068
|
*
|
|
@@ -27073,7 +27073,7 @@ declare namespace sap {
|
|
|
27073
27073
|
* The rightItem to remove or its index or id
|
|
27074
27074
|
*/
|
|
27075
27075
|
vRightItem: int | string | sap.ui.commons.ToolbarItem
|
|
27076
|
-
): sap.ui.commons.ToolbarItem;
|
|
27076
|
+
): sap.ui.commons.ToolbarItem | null;
|
|
27077
27077
|
/**
|
|
27078
27078
|
* Sets a new value for property {@link #getDesign design}.
|
|
27079
27079
|
*
|
|
@@ -27667,7 +27667,7 @@ declare namespace sap {
|
|
|
27667
27667
|
* The node to remove or its index or id
|
|
27668
27668
|
*/
|
|
27669
27669
|
vNode: int | string | sap.ui.commons.TreeNode
|
|
27670
|
-
): sap.ui.commons.TreeNode;
|
|
27670
|
+
): sap.ui.commons.TreeNode | null;
|
|
27671
27671
|
/**
|
|
27672
27672
|
* Sets a new value for property {@link #getHeight height}.
|
|
27673
27673
|
*
|
|
@@ -28246,7 +28246,7 @@ declare namespace sap {
|
|
|
28246
28246
|
* The node to remove or its index or id
|
|
28247
28247
|
*/
|
|
28248
28248
|
vNode: int | string | sap.ui.commons.TreeNode
|
|
28249
|
-
): sap.ui.commons.TreeNode;
|
|
28249
|
+
): sap.ui.commons.TreeNode | null;
|
|
28250
28250
|
/**
|
|
28251
28251
|
* Select the node, and if any, deselects the previously selected node
|
|
28252
28252
|
*/
|