@openui5/ts-types-esm 1.96.2 → 1.98.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 -1
- package/types/sap.f.d.ts +112 -577
- package/types/sap.m.d.ts +4229 -1333
- package/types/sap.tnt.d.ts +31 -1
- package/types/sap.ui.codeeditor.d.ts +7 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1219 -392
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +14 -5
- package/types/sap.ui.integration.d.ts +60 -1
- package/types/sap.ui.layout.d.ts +4 -4
- package/types/sap.ui.mdc.d.ts +31 -15
- package/types/sap.ui.rta.d.ts +7 -13
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -6
- package/types/sap.ui.table.d.ts +37 -4
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +41 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +862 -276
- package/types/sap.ui.webc.main.d.ts +1002 -496
- package/types/sap.uxap.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.98.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/webc/fiori/library" {
|
|
4
4
|
/**
|
|
@@ -99,8 +99,28 @@ declare module "sap/ui/webc/fiori/library" {
|
|
|
99
99
|
TwoColumnsStartExpanded = "TwoColumnsStartExpanded",
|
|
100
100
|
}
|
|
101
101
|
/**
|
|
102
|
-
* @SINCE 1.
|
|
103
|
-
* @EXPERIMENTAL (since 1.
|
|
102
|
+
* @SINCE 1.97.0
|
|
103
|
+
* @EXPERIMENTAL (since 1.97.0)
|
|
104
|
+
*
|
|
105
|
+
* Interface for components that may be slotted inside `ui5-view-settings-dialog` as filter items
|
|
106
|
+
*/
|
|
107
|
+
export interface IFilterItem {
|
|
108
|
+
__implements__sap_ui_webc_fiori_IFilterItem: boolean;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* @SINCE 1.97.0
|
|
113
|
+
* @EXPERIMENTAL (since 1.97.0)
|
|
114
|
+
*
|
|
115
|
+
* Interface for components that may be slotted inside `ui5-filter-item` as values
|
|
116
|
+
*/
|
|
117
|
+
export interface IFilterItemOption {
|
|
118
|
+
__implements__sap_ui_webc_fiori_IFilterItemOption: boolean;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* @SINCE 1.95.0
|
|
123
|
+
* @EXPERIMENTAL (since 1.95.0)
|
|
104
124
|
*
|
|
105
125
|
* Different illustration types of Illustrated Message.
|
|
106
126
|
*/
|
|
@@ -141,6 +161,78 @@ declare module "sap/ui/webc/fiori/library" {
|
|
|
141
161
|
* "NoTasks" illustration type.
|
|
142
162
|
*/
|
|
143
163
|
NoTasks = "NoTasks",
|
|
164
|
+
/**
|
|
165
|
+
* "TntCodePlaceholder" illustration type.
|
|
166
|
+
*/
|
|
167
|
+
TntCodePlaceholder = "TntCodePlaceholder",
|
|
168
|
+
/**
|
|
169
|
+
* "TntCompany" illustration type.
|
|
170
|
+
*/
|
|
171
|
+
TntCompany = "TntCompany",
|
|
172
|
+
/**
|
|
173
|
+
* "TntExternalLink" illustration type.
|
|
174
|
+
*/
|
|
175
|
+
TntExternalLink = "TntExternalLink",
|
|
176
|
+
/**
|
|
177
|
+
* "TntFaceID" illustration type.
|
|
178
|
+
*/
|
|
179
|
+
TntFaceID = "TntFaceID",
|
|
180
|
+
/**
|
|
181
|
+
* "TntFingerprint" illustration type.
|
|
182
|
+
*/
|
|
183
|
+
TntFingerprint = "TntFingerprint",
|
|
184
|
+
/**
|
|
185
|
+
* "TntLock" illustration type.
|
|
186
|
+
*/
|
|
187
|
+
TntLock = "TntLock",
|
|
188
|
+
/**
|
|
189
|
+
* "TntMission" illustration type.
|
|
190
|
+
*/
|
|
191
|
+
TntMission = "TntMission",
|
|
192
|
+
/**
|
|
193
|
+
* "TntNoApplications" illustration type.
|
|
194
|
+
*/
|
|
195
|
+
TntNoApplications = "TntNoApplications",
|
|
196
|
+
/**
|
|
197
|
+
* "TntNoFlows" illustration type.
|
|
198
|
+
*/
|
|
199
|
+
TntNoFlows = "TntNoFlows",
|
|
200
|
+
/**
|
|
201
|
+
* "TntNoUsers" illustration type.
|
|
202
|
+
*/
|
|
203
|
+
TntNoUsers = "TntNoUsers",
|
|
204
|
+
/**
|
|
205
|
+
* "TntRadar" illustration type.
|
|
206
|
+
*/
|
|
207
|
+
TntRadar = "TntRadar",
|
|
208
|
+
/**
|
|
209
|
+
* "TntServices" illustration type.
|
|
210
|
+
*/
|
|
211
|
+
TntServices = "TntServices",
|
|
212
|
+
/**
|
|
213
|
+
* "TntSessionExpired" illustration type.
|
|
214
|
+
*/
|
|
215
|
+
TntSessionExpired = "TntSessionExpired",
|
|
216
|
+
/**
|
|
217
|
+
* "TntSessionExpiring" illustration type.
|
|
218
|
+
*/
|
|
219
|
+
TntSessionExpiring = "TntSessionExpiring",
|
|
220
|
+
/**
|
|
221
|
+
* "TntSuccess" illustration type.
|
|
222
|
+
*/
|
|
223
|
+
TntSuccess = "TntSuccess",
|
|
224
|
+
/**
|
|
225
|
+
* "TntSuccessfulAuth" illustration type.
|
|
226
|
+
*/
|
|
227
|
+
TntSuccessfulAuth = "TntSuccessfulAuth",
|
|
228
|
+
/**
|
|
229
|
+
* "TntUnlock" illustration type.
|
|
230
|
+
*/
|
|
231
|
+
TntUnlock = "TntUnlock",
|
|
232
|
+
/**
|
|
233
|
+
* "TntUnsuccessfulAuth" illustration type.
|
|
234
|
+
*/
|
|
235
|
+
TntUnsuccessfulAuth = "TntUnsuccessfulAuth",
|
|
144
236
|
/**
|
|
145
237
|
* "UnableToLoad" illustration type.
|
|
146
238
|
*/
|
|
@@ -210,6 +302,16 @@ declare module "sap/ui/webc/fiori/library" {
|
|
|
210
302
|
__implements__sap_ui_webc_fiori_ISideNavigationSubItem: boolean;
|
|
211
303
|
}
|
|
212
304
|
|
|
305
|
+
/**
|
|
306
|
+
* @SINCE 1.97.0
|
|
307
|
+
* @EXPERIMENTAL (since 1.97.0)
|
|
308
|
+
*
|
|
309
|
+
* Interface for components that may be slotted inside `ui5-view-settings-dialog` as sort items
|
|
310
|
+
*/
|
|
311
|
+
export interface ISortItem {
|
|
312
|
+
__implements__sap_ui_webc_fiori_ISortItem: boolean;
|
|
313
|
+
}
|
|
314
|
+
|
|
213
315
|
/**
|
|
214
316
|
* @SINCE 1.92.0
|
|
215
317
|
* @EXPERIMENTAL (since 1.92.0)
|
|
@@ -686,8 +788,8 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
|
|
|
686
788
|
import WebComponentMetadata from "sap/ui/webc/common/WebComponentMetadata";
|
|
687
789
|
|
|
688
790
|
/**
|
|
689
|
-
* @SINCE 1.
|
|
690
|
-
* @EXPERIMENTAL (since 1.
|
|
791
|
+
* @SINCE 1.95.0
|
|
792
|
+
* @EXPERIMENTAL (since 1.95.0)
|
|
691
793
|
*
|
|
692
794
|
* Overview:
|
|
693
795
|
*
|
|
@@ -897,37 +999,356 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
|
|
|
897
999
|
/**
|
|
898
1000
|
* Fires event {@link #event:scanSuccess scanSuccess} to attached listeners.
|
|
899
1001
|
*/
|
|
900
|
-
fireScanSuccess(
|
|
1002
|
+
fireScanSuccess(
|
|
1003
|
+
/**
|
|
1004
|
+
* Parameters to pass along with the event
|
|
1005
|
+
*/
|
|
1006
|
+
mParameters?: {
|
|
1007
|
+
/**
|
|
1008
|
+
* the scan result as string
|
|
1009
|
+
*/
|
|
1010
|
+
text?: string;
|
|
1011
|
+
/**
|
|
1012
|
+
* the scan result as a Uint8Array
|
|
1013
|
+
*/
|
|
1014
|
+
rawBytes?: object;
|
|
1015
|
+
}
|
|
1016
|
+
): this;
|
|
1017
|
+
/**
|
|
1018
|
+
* Shows a dialog with the camera videostream. Starts a scan session.
|
|
1019
|
+
*/
|
|
1020
|
+
show(): void;
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
export interface $BarcodeScannerDialogSettings extends $WebComponentSettings {
|
|
1024
|
+
/**
|
|
1025
|
+
* Fires when the scan fails with error.
|
|
1026
|
+
*/
|
|
1027
|
+
scanError?: (oEvent: Event) => void;
|
|
1028
|
+
|
|
1029
|
+
/**
|
|
1030
|
+
* Fires when the scan is completed successfuuly.
|
|
1031
|
+
*/
|
|
1032
|
+
scanSuccess?: (oEvent: Event) => void;
|
|
1033
|
+
}
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
declare module "sap/ui/webc/fiori/FilterItem" {
|
|
1037
|
+
import {
|
|
1038
|
+
default as WebComponent,
|
|
1039
|
+
$WebComponentSettings,
|
|
1040
|
+
} from "sap/ui/webc/common/WebComponent";
|
|
1041
|
+
|
|
1042
|
+
import { IFilterItem, IFilterItemOption } from "sap/ui/webc/fiori/library";
|
|
1043
|
+
|
|
1044
|
+
import WebComponentMetadata from "sap/ui/webc/common/WebComponentMetadata";
|
|
1045
|
+
|
|
1046
|
+
import {
|
|
1047
|
+
PropertyBindingInfo,
|
|
1048
|
+
AggregationBindingInfo,
|
|
1049
|
+
} from "sap/ui/base/ManagedObject";
|
|
1050
|
+
|
|
1051
|
+
/**
|
|
1052
|
+
* @SINCE 1.97.0
|
|
1053
|
+
* @EXPERIMENTAL (since 1.97.0)
|
|
1054
|
+
*
|
|
1055
|
+
* Overview:
|
|
1056
|
+
*
|
|
1057
|
+
* Usage:
|
|
1058
|
+
*/
|
|
1059
|
+
export default class FilterItem extends WebComponent implements IFilterItem {
|
|
1060
|
+
__implements__sap_ui_webc_fiori_IFilterItem: boolean;
|
|
1061
|
+
/**
|
|
1062
|
+
* Constructor for a new `FilterItem`.
|
|
1063
|
+
*
|
|
1064
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1065
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1066
|
+
* of the syntax of the settings object.
|
|
1067
|
+
*/
|
|
1068
|
+
constructor(
|
|
1069
|
+
/**
|
|
1070
|
+
* Initial settings for the new control
|
|
1071
|
+
*/
|
|
1072
|
+
mSettings?: $FilterItemSettings
|
|
1073
|
+
);
|
|
1074
|
+
/**
|
|
1075
|
+
* Constructor for a new `FilterItem`.
|
|
1076
|
+
*
|
|
1077
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1078
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1079
|
+
* of the syntax of the settings object.
|
|
1080
|
+
*/
|
|
1081
|
+
constructor(
|
|
1082
|
+
/**
|
|
1083
|
+
* ID for the new control, generated automatically if no ID is given
|
|
1084
|
+
*/
|
|
1085
|
+
sId?: string,
|
|
1086
|
+
/**
|
|
1087
|
+
* Initial settings for the new control
|
|
1088
|
+
*/
|
|
1089
|
+
mSettings?: $FilterItemSettings
|
|
1090
|
+
);
|
|
1091
|
+
|
|
1092
|
+
/**
|
|
1093
|
+
* Creates a new subclass of class sap.ui.webc.fiori.FilterItem with name `sClassName` and enriches it with
|
|
1094
|
+
* the information contained in `oClassInfo`.
|
|
1095
|
+
*
|
|
1096
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
1097
|
+
*/
|
|
1098
|
+
static extend<T extends Record<string, unknown>>(
|
|
1099
|
+
/**
|
|
1100
|
+
* Name of the class being created
|
|
1101
|
+
*/
|
|
1102
|
+
sClassName: string,
|
|
1103
|
+
/**
|
|
1104
|
+
* Object literal with information about the class
|
|
1105
|
+
*/
|
|
1106
|
+
oClassInfo?: sap.ClassInfo<T, FilterItem>,
|
|
1107
|
+
/**
|
|
1108
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1109
|
+
* used by this class
|
|
1110
|
+
*/
|
|
1111
|
+
FNMetaImpl?: Function
|
|
1112
|
+
): Function;
|
|
1113
|
+
/**
|
|
1114
|
+
* Returns a metadata object for class sap.ui.webc.fiori.FilterItem.
|
|
1115
|
+
*/
|
|
1116
|
+
static getMetadata(): WebComponentMetadata;
|
|
1117
|
+
/**
|
|
1118
|
+
* Adds some value to the aggregation {@link #getValues values}.
|
|
1119
|
+
*/
|
|
1120
|
+
addValue(
|
|
1121
|
+
/**
|
|
1122
|
+
* The value to add; if empty, nothing is inserted
|
|
1123
|
+
*/
|
|
1124
|
+
oValue: IFilterItemOption
|
|
1125
|
+
): this;
|
|
1126
|
+
/**
|
|
1127
|
+
* Destroys all the values in the aggregation {@link #getValues values}.
|
|
1128
|
+
*/
|
|
1129
|
+
destroyValues(): this;
|
|
1130
|
+
/**
|
|
1131
|
+
* Gets current value of property {@link #getText text}.
|
|
1132
|
+
*
|
|
1133
|
+
* Defines the text of the component.
|
|
1134
|
+
*
|
|
1135
|
+
* Default value is `empty string`.
|
|
1136
|
+
*/
|
|
1137
|
+
getText(): string;
|
|
1138
|
+
/**
|
|
1139
|
+
* Gets content of aggregation {@link #getValues values}.
|
|
1140
|
+
*
|
|
1141
|
+
* Defines the `values` list.
|
|
1142
|
+
*/
|
|
1143
|
+
getValues(): IFilterItemOption[];
|
|
1144
|
+
/**
|
|
1145
|
+
* Checks for the provided `sap.ui.webc.fiori.IFilterItemOption` in the aggregation {@link #getValues values}.
|
|
1146
|
+
* and returns its index if found or -1 otherwise.
|
|
1147
|
+
*/
|
|
1148
|
+
indexOfValue(
|
|
1149
|
+
/**
|
|
1150
|
+
* The value whose index is looked for
|
|
1151
|
+
*/
|
|
1152
|
+
oValue: IFilterItemOption
|
|
1153
|
+
): int;
|
|
1154
|
+
/**
|
|
1155
|
+
* Inserts a value into the aggregation {@link #getValues values}.
|
|
1156
|
+
*/
|
|
1157
|
+
insertValue(
|
|
1158
|
+
/**
|
|
1159
|
+
* The value to insert; if empty, nothing is inserted
|
|
1160
|
+
*/
|
|
1161
|
+
oValue: IFilterItemOption,
|
|
1162
|
+
/**
|
|
1163
|
+
* The `0`-based index the value should be inserted at; for a negative value of `iIndex`, the value is inserted
|
|
1164
|
+
* at position 0; for a value greater than the current size of the aggregation, the value is inserted at
|
|
1165
|
+
* the last position
|
|
1166
|
+
*/
|
|
1167
|
+
iIndex: int
|
|
1168
|
+
): this;
|
|
1169
|
+
/**
|
|
1170
|
+
* Removes all the controls from the aggregation {@link #getValues values}.
|
|
1171
|
+
*
|
|
1172
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
1173
|
+
*/
|
|
1174
|
+
removeAllValues(): IFilterItemOption[];
|
|
1175
|
+
/**
|
|
1176
|
+
* Removes a value from the aggregation {@link #getValues values}.
|
|
1177
|
+
*/
|
|
1178
|
+
removeValue(
|
|
1179
|
+
/**
|
|
1180
|
+
* The value to remove or its index or id
|
|
1181
|
+
*/
|
|
1182
|
+
vValue: int | string | IFilterItemOption
|
|
1183
|
+
): IFilterItemOption;
|
|
1184
|
+
/**
|
|
1185
|
+
* Sets a new value for property {@link #getText text}.
|
|
1186
|
+
*
|
|
1187
|
+
* Defines the text of the component.
|
|
1188
|
+
*
|
|
1189
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1190
|
+
*
|
|
1191
|
+
* Default value is `empty string`.
|
|
1192
|
+
*/
|
|
1193
|
+
setText(
|
|
1194
|
+
/**
|
|
1195
|
+
* New value for property `text`
|
|
1196
|
+
*/
|
|
1197
|
+
sText?: string
|
|
1198
|
+
): this;
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
export interface $FilterItemSettings extends $WebComponentSettings {
|
|
1202
|
+
/**
|
|
1203
|
+
* Defines the text of the component.
|
|
1204
|
+
*/
|
|
1205
|
+
text?: string | PropertyBindingInfo;
|
|
1206
|
+
|
|
1207
|
+
/**
|
|
1208
|
+
* Defines the `values` list.
|
|
1209
|
+
*/
|
|
1210
|
+
values?: IFilterItemOption[] | IFilterItemOption | AggregationBindingInfo;
|
|
1211
|
+
}
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
declare module "sap/ui/webc/fiori/FilterItemOption" {
|
|
1215
|
+
import {
|
|
1216
|
+
default as WebComponent,
|
|
1217
|
+
$WebComponentSettings,
|
|
1218
|
+
} from "sap/ui/webc/common/WebComponent";
|
|
1219
|
+
|
|
1220
|
+
import { IFilterItemOption } from "sap/ui/webc/fiori/library";
|
|
1221
|
+
|
|
1222
|
+
import WebComponentMetadata from "sap/ui/webc/common/WebComponentMetadata";
|
|
1223
|
+
|
|
1224
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1225
|
+
|
|
1226
|
+
/**
|
|
1227
|
+
* @SINCE 1.97.0
|
|
1228
|
+
* @EXPERIMENTAL (since 1.97.0)
|
|
1229
|
+
*
|
|
1230
|
+
* Overview:
|
|
1231
|
+
*
|
|
1232
|
+
* Usage:
|
|
1233
|
+
*/
|
|
1234
|
+
export default class FilterItemOption
|
|
1235
|
+
extends WebComponent
|
|
1236
|
+
implements IFilterItemOption {
|
|
1237
|
+
__implements__sap_ui_webc_fiori_IFilterItemOption: boolean;
|
|
1238
|
+
/**
|
|
1239
|
+
* Constructor for a new `FilterItemOption`.
|
|
1240
|
+
*
|
|
1241
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1242
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1243
|
+
* of the syntax of the settings object.
|
|
1244
|
+
*/
|
|
1245
|
+
constructor(
|
|
1246
|
+
/**
|
|
1247
|
+
* Initial settings for the new control
|
|
1248
|
+
*/
|
|
1249
|
+
mSettings?: $FilterItemOptionSettings
|
|
1250
|
+
);
|
|
1251
|
+
/**
|
|
1252
|
+
* Constructor for a new `FilterItemOption`.
|
|
1253
|
+
*
|
|
1254
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1255
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1256
|
+
* of the syntax of the settings object.
|
|
1257
|
+
*/
|
|
1258
|
+
constructor(
|
|
1259
|
+
/**
|
|
1260
|
+
* ID for the new control, generated automatically if no ID is given
|
|
1261
|
+
*/
|
|
1262
|
+
sId?: string,
|
|
1263
|
+
/**
|
|
1264
|
+
* Initial settings for the new control
|
|
1265
|
+
*/
|
|
1266
|
+
mSettings?: $FilterItemOptionSettings
|
|
1267
|
+
);
|
|
1268
|
+
|
|
1269
|
+
/**
|
|
1270
|
+
* Creates a new subclass of class sap.ui.webc.fiori.FilterItemOption with name `sClassName` and enriches
|
|
1271
|
+
* it with the information contained in `oClassInfo`.
|
|
1272
|
+
*
|
|
1273
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
1274
|
+
*/
|
|
1275
|
+
static extend<T extends Record<string, unknown>>(
|
|
1276
|
+
/**
|
|
1277
|
+
* Name of the class being created
|
|
1278
|
+
*/
|
|
1279
|
+
sClassName: string,
|
|
1280
|
+
/**
|
|
1281
|
+
* Object literal with information about the class
|
|
1282
|
+
*/
|
|
1283
|
+
oClassInfo?: sap.ClassInfo<T, FilterItemOption>,
|
|
1284
|
+
/**
|
|
1285
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1286
|
+
* used by this class
|
|
1287
|
+
*/
|
|
1288
|
+
FNMetaImpl?: Function
|
|
1289
|
+
): Function;
|
|
1290
|
+
/**
|
|
1291
|
+
* Returns a metadata object for class sap.ui.webc.fiori.FilterItemOption.
|
|
1292
|
+
*/
|
|
1293
|
+
static getMetadata(): WebComponentMetadata;
|
|
1294
|
+
/**
|
|
1295
|
+
* Gets current value of property {@link #getSelected selected}.
|
|
1296
|
+
*
|
|
1297
|
+
* Defines whether the option is selected
|
|
1298
|
+
*
|
|
1299
|
+
* Default value is `false`.
|
|
1300
|
+
*/
|
|
1301
|
+
getSelected(): boolean;
|
|
1302
|
+
/**
|
|
1303
|
+
* Gets current value of property {@link #getText text}.
|
|
1304
|
+
*
|
|
1305
|
+
* Defines the text of the component.
|
|
1306
|
+
*
|
|
1307
|
+
* Default value is `empty string`.
|
|
1308
|
+
*/
|
|
1309
|
+
getText(): string;
|
|
1310
|
+
/**
|
|
1311
|
+
* Sets a new value for property {@link #getSelected selected}.
|
|
1312
|
+
*
|
|
1313
|
+
* Defines whether the option is selected
|
|
1314
|
+
*
|
|
1315
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1316
|
+
*
|
|
1317
|
+
* Default value is `false`.
|
|
1318
|
+
*/
|
|
1319
|
+
setSelected(
|
|
1320
|
+
/**
|
|
1321
|
+
* New value for property `selected`
|
|
1322
|
+
*/
|
|
1323
|
+
bSelected?: boolean
|
|
1324
|
+
): this;
|
|
1325
|
+
/**
|
|
1326
|
+
* Sets a new value for property {@link #getText text}.
|
|
1327
|
+
*
|
|
1328
|
+
* Defines the text of the component.
|
|
1329
|
+
*
|
|
1330
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1331
|
+
*
|
|
1332
|
+
* Default value is `empty string`.
|
|
1333
|
+
*/
|
|
1334
|
+
setText(
|
|
901
1335
|
/**
|
|
902
|
-
*
|
|
1336
|
+
* New value for property `text`
|
|
903
1337
|
*/
|
|
904
|
-
|
|
905
|
-
/**
|
|
906
|
-
* the scan result as string
|
|
907
|
-
*/
|
|
908
|
-
text?: string;
|
|
909
|
-
/**
|
|
910
|
-
* the scan result as a Uint8Array
|
|
911
|
-
*/
|
|
912
|
-
rawBytes?: object;
|
|
913
|
-
}
|
|
1338
|
+
sText?: string
|
|
914
1339
|
): this;
|
|
915
|
-
/**
|
|
916
|
-
* Shows a dialog with the camera videostream. Starts a scan session.
|
|
917
|
-
*/
|
|
918
|
-
show(): void;
|
|
919
1340
|
}
|
|
920
1341
|
|
|
921
|
-
export interface $
|
|
1342
|
+
export interface $FilterItemOptionSettings extends $WebComponentSettings {
|
|
922
1343
|
/**
|
|
923
|
-
*
|
|
1344
|
+
* Defines whether the option is selected
|
|
924
1345
|
*/
|
|
925
|
-
|
|
1346
|
+
selected?: boolean | PropertyBindingInfo;
|
|
926
1347
|
|
|
927
1348
|
/**
|
|
928
|
-
*
|
|
1349
|
+
* Defines the text of the component.
|
|
929
1350
|
*/
|
|
930
|
-
|
|
1351
|
+
text?: string | PropertyBindingInfo;
|
|
931
1352
|
}
|
|
932
1353
|
}
|
|
933
1354
|
|
|
@@ -939,12 +1360,12 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
|
|
|
939
1360
|
|
|
940
1361
|
import Event from "sap/ui/base/Event";
|
|
941
1362
|
|
|
1363
|
+
import { FCLLayout } from "sap/ui/webc/fiori/library";
|
|
1364
|
+
|
|
942
1365
|
import Control from "sap/ui/core/Control";
|
|
943
1366
|
|
|
944
1367
|
import { CSSSize } from "sap/ui/core/library";
|
|
945
1368
|
|
|
946
|
-
import { FCLLayout } from "sap/ui/webc/fiori/library";
|
|
947
|
-
|
|
948
1369
|
import WebComponentMetadata from "sap/ui/webc/common/WebComponentMetadata";
|
|
949
1370
|
|
|
950
1371
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
@@ -1119,7 +1540,7 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
|
|
|
1119
1540
|
/**
|
|
1120
1541
|
* The current layout
|
|
1121
1542
|
*/
|
|
1122
|
-
layout?: FCLLayout;
|
|
1543
|
+
layout?: FCLLayout | keyof typeof FCLLayout;
|
|
1123
1544
|
/**
|
|
1124
1545
|
* The effective column layout, f.e [67%, 33%, 0]
|
|
1125
1546
|
*/
|
|
@@ -1149,7 +1570,7 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
|
|
|
1149
1570
|
/**
|
|
1150
1571
|
* Gets current value of property {@link #getAccessibilityTexts accessibilityTexts}.
|
|
1151
1572
|
*
|
|
1152
|
-
*
|
|
1573
|
+
* An object of strings that defines several additional accessibility texts for even further customization.
|
|
1153
1574
|
*
|
|
1154
1575
|
* It supports the following fields: - `startColumnAccessibleName`: the accessibility name for the `startColumn`
|
|
1155
1576
|
* region - `midColumnAccessibleName`: the accessibility name for the `midColumn` region - `endColumnAccessibleName`:
|
|
@@ -1252,7 +1673,7 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
|
|
|
1252
1673
|
/**
|
|
1253
1674
|
* Sets a new value for property {@link #getAccessibilityTexts accessibilityTexts}.
|
|
1254
1675
|
*
|
|
1255
|
-
*
|
|
1676
|
+
* An object of strings that defines several additional accessibility texts for even further customization.
|
|
1256
1677
|
*
|
|
1257
1678
|
* It supports the following fields: - `startColumnAccessibleName`: the accessibility name for the `startColumn`
|
|
1258
1679
|
* region - `midColumnAccessibleName`: the accessibility name for the `midColumn` region - `endColumnAccessibleName`:
|
|
@@ -1377,7 +1798,7 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
|
|
|
1377
1798
|
|
|
1378
1799
|
export interface $FlexibleColumnLayoutSettings extends $WebComponentSettings {
|
|
1379
1800
|
/**
|
|
1380
|
-
*
|
|
1801
|
+
* An object of strings that defines several additional accessibility texts for even further customization.
|
|
1381
1802
|
*
|
|
1382
1803
|
* It supports the following fields: - `startColumnAccessibleName`: the accessibility name for the `startColumn`
|
|
1383
1804
|
* region - `midColumnAccessibleName`: the accessibility name for the `midColumn` region - `endColumnAccessibleName`:
|
|
@@ -1470,8 +1891,8 @@ declare module "sap/ui/webc/fiori/IllustratedMessage" {
|
|
|
1470
1891
|
} from "sap/ui/base/ManagedObject";
|
|
1471
1892
|
|
|
1472
1893
|
/**
|
|
1473
|
-
* @SINCE 1.
|
|
1474
|
-
* @EXPERIMENTAL (since 1.
|
|
1894
|
+
* @SINCE 1.95.0
|
|
1895
|
+
* @EXPERIMENTAL (since 1.95.0)
|
|
1475
1896
|
*
|
|
1476
1897
|
* Overview: An IllustratedMessage is a recommended combination of a solution-oriented message, an engaging
|
|
1477
1898
|
* illustration, and conversational tone to better communicate an empty or a success state than just show
|
|
@@ -4298,10 +4719,6 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
4298
4719
|
* - profile
|
|
4299
4720
|
* - product-switch
|
|
4300
4721
|
*
|
|
4301
|
-
* In the context of `sap.ui.webc.fiori.ShellBar`, you can provide a custom stable DOM refs for:
|
|
4302
|
-
* - Every `sap.ui.webc.fiori.ShellBarItem` that you provide. Example: `
|
|
4303
|
-
* `
|
|
4304
|
-
*
|
|
4305
4722
|
* CSS Shadow Parts:
|
|
4306
4723
|
*
|
|
4307
4724
|
* CSS Shadow Parts
|
|
@@ -4850,6 +5267,10 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
4850
5267
|
targetRef?: HTMLElement;
|
|
4851
5268
|
}
|
|
4852
5269
|
): this;
|
|
5270
|
+
/**
|
|
5271
|
+
* Returns the `copilot` DOM ref.
|
|
5272
|
+
*/
|
|
5273
|
+
getCopilotDomRef(): void;
|
|
4853
5274
|
/**
|
|
4854
5275
|
* Gets content of aggregation {@link #getItems items}.
|
|
4855
5276
|
*
|
|
@@ -4865,6 +5286,10 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
4865
5286
|
* or `img` elements as logo.
|
|
4866
5287
|
*/
|
|
4867
5288
|
getLogo(): IAvatar;
|
|
5289
|
+
/**
|
|
5290
|
+
* Returns the `logo` DOM ref.
|
|
5291
|
+
*/
|
|
5292
|
+
getLogoDomRef(): void;
|
|
4868
5293
|
/**
|
|
4869
5294
|
* Gets content of aggregation {@link #getMenuItems menuItems}.
|
|
4870
5295
|
*
|
|
@@ -4881,6 +5306,14 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
4881
5306
|
* Default value is `empty string`.
|
|
4882
5307
|
*/
|
|
4883
5308
|
getNotificationsCount(): string;
|
|
5309
|
+
/**
|
|
5310
|
+
* Returns the `notifications` icon DOM ref.
|
|
5311
|
+
*/
|
|
5312
|
+
getNotificationsDomRef(): void;
|
|
5313
|
+
/**
|
|
5314
|
+
* Returns the `overflow` icon DOM ref.
|
|
5315
|
+
*/
|
|
5316
|
+
getOverflowDomRef(): void;
|
|
4884
5317
|
/**
|
|
4885
5318
|
* Gets current value of property {@link #getPrimaryTitle primaryTitle}.
|
|
4886
5319
|
*
|
|
@@ -4891,6 +5324,10 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
4891
5324
|
* Default value is `empty string`.
|
|
4892
5325
|
*/
|
|
4893
5326
|
getPrimaryTitle(): string;
|
|
5327
|
+
/**
|
|
5328
|
+
* Returns the `product-switch` icon DOM ref.
|
|
5329
|
+
*/
|
|
5330
|
+
getProductSwitchDomRef(): void;
|
|
4894
5331
|
/**
|
|
4895
5332
|
* Gets content of aggregation {@link #getProfile profile}.
|
|
4896
5333
|
*
|
|
@@ -4901,6 +5338,10 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
4901
5338
|
* specific size by design in the context of `sap.ui.webc.fiori.ShellBar` profile.
|
|
4902
5339
|
*/
|
|
4903
5340
|
getProfile(): IAvatar;
|
|
5341
|
+
/**
|
|
5342
|
+
* Returns the `profile` icon DOM ref.
|
|
5343
|
+
*/
|
|
5344
|
+
getProfileDomRef(): void;
|
|
4904
5345
|
/**
|
|
4905
5346
|
* Gets content of aggregation {@link #getSearchField searchField}.
|
|
4906
5347
|
*
|
|
@@ -5354,14 +5795,14 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
|
|
|
5354
5795
|
*/
|
|
5355
5796
|
static getMetadata(): WebComponentMetadata;
|
|
5356
5797
|
/**
|
|
5357
|
-
* Attaches event handler `fnFunction` to the {@link #event:
|
|
5798
|
+
* Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.fiori.ShellBarItem`.
|
|
5358
5799
|
*
|
|
5359
5800
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5360
5801
|
* otherwise it will be bound to this `sap.ui.webc.fiori.ShellBarItem` itself.
|
|
5361
5802
|
*
|
|
5362
5803
|
* Fired, when the item is pressed.
|
|
5363
5804
|
*/
|
|
5364
|
-
|
|
5805
|
+
attachClick(
|
|
5365
5806
|
/**
|
|
5366
5807
|
* An application-specific payload object that will be passed to the event handler along with the event
|
|
5367
5808
|
* object when firing the event
|
|
@@ -5377,14 +5818,14 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
|
|
|
5377
5818
|
oListener?: object
|
|
5378
5819
|
): this;
|
|
5379
5820
|
/**
|
|
5380
|
-
* Attaches event handler `fnFunction` to the {@link #event:
|
|
5821
|
+
* Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.fiori.ShellBarItem`.
|
|
5381
5822
|
*
|
|
5382
5823
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5383
5824
|
* otherwise it will be bound to this `sap.ui.webc.fiori.ShellBarItem` itself.
|
|
5384
5825
|
*
|
|
5385
5826
|
* Fired, when the item is pressed.
|
|
5386
5827
|
*/
|
|
5387
|
-
|
|
5828
|
+
attachClick(
|
|
5388
5829
|
/**
|
|
5389
5830
|
* The function to be called when the event occurs
|
|
5390
5831
|
*/
|
|
@@ -5395,11 +5836,11 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
|
|
|
5395
5836
|
oListener?: object
|
|
5396
5837
|
): this;
|
|
5397
5838
|
/**
|
|
5398
|
-
* Detaches event handler `fnFunction` from the {@link #event:
|
|
5839
|
+
* Detaches event handler `fnFunction` from the {@link #event:click click} event of this `sap.ui.webc.fiori.ShellBarItem`.
|
|
5399
5840
|
*
|
|
5400
5841
|
* The passed function and listener object must match the ones used for event registration.
|
|
5401
5842
|
*/
|
|
5402
|
-
|
|
5843
|
+
detachClick(
|
|
5403
5844
|
/**
|
|
5404
5845
|
* The function to be called, when the event occurs
|
|
5405
5846
|
*/
|
|
@@ -5410,12 +5851,12 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
|
|
|
5410
5851
|
oListener?: object
|
|
5411
5852
|
): this;
|
|
5412
5853
|
/**
|
|
5413
|
-
* Fires event {@link #event:
|
|
5854
|
+
* Fires event {@link #event:click click} to attached listeners.
|
|
5414
5855
|
*
|
|
5415
5856
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
5416
5857
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
5417
5858
|
*/
|
|
5418
|
-
|
|
5859
|
+
fireClick(
|
|
5419
5860
|
/**
|
|
5420
5861
|
* Parameters to pass along with the event
|
|
5421
5862
|
*/
|
|
@@ -5516,7 +5957,7 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
|
|
|
5516
5957
|
/**
|
|
5517
5958
|
* Fired, when the item is pressed.
|
|
5518
5959
|
*/
|
|
5519
|
-
|
|
5960
|
+
click?: (oEvent: Event) => void;
|
|
5520
5961
|
}
|
|
5521
5962
|
}
|
|
5522
5963
|
|
|
@@ -6217,22 +6658,224 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
|
|
|
6217
6658
|
*
|
|
6218
6659
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6219
6660
|
*
|
|
6220
|
-
* Default value is `false`.
|
|
6661
|
+
* Default value is `false`.
|
|
6662
|
+
*/
|
|
6663
|
+
setWholeItemToggleable(
|
|
6664
|
+
/**
|
|
6665
|
+
* New value for property `wholeItemToggleable`
|
|
6666
|
+
*/
|
|
6667
|
+
bWholeItemToggleable?: boolean
|
|
6668
|
+
): this;
|
|
6669
|
+
}
|
|
6670
|
+
|
|
6671
|
+
export interface $SideNavigationItemSettings extends $WebComponentSettings {
|
|
6672
|
+
/**
|
|
6673
|
+
* Defines if the item is expanded
|
|
6674
|
+
*/
|
|
6675
|
+
expanded?: boolean | PropertyBindingInfo;
|
|
6676
|
+
|
|
6677
|
+
/**
|
|
6678
|
+
* Defines the icon of the item.
|
|
6679
|
+
*
|
|
6680
|
+
*
|
|
6681
|
+
*
|
|
6682
|
+
* The SAP-icons font provides numerous options.
|
|
6683
|
+
* See all the available icons in the Icon Explorer.
|
|
6684
|
+
*/
|
|
6685
|
+
icon?: string | PropertyBindingInfo;
|
|
6686
|
+
|
|
6687
|
+
/**
|
|
6688
|
+
* Defines whether the subitem is selected
|
|
6689
|
+
*/
|
|
6690
|
+
selected?: boolean | PropertyBindingInfo;
|
|
6691
|
+
|
|
6692
|
+
/**
|
|
6693
|
+
* Defines the text of the item.
|
|
6694
|
+
*/
|
|
6695
|
+
text?: string | PropertyBindingInfo;
|
|
6696
|
+
|
|
6697
|
+
/**
|
|
6698
|
+
* Defines whether pressing the whole item or only pressing the icon will show/hide the items's sub items(if
|
|
6699
|
+
* present). If set to true, pressing the whole item will toggle the sub items, and it won't fire the `click`
|
|
6700
|
+
* event. By default, only pressing the arrow icon will toggle the sub items & the click event will be fired
|
|
6701
|
+
* if the item is pressed outside of the icon.
|
|
6702
|
+
*/
|
|
6703
|
+
wholeItemToggleable?: boolean | PropertyBindingInfo;
|
|
6704
|
+
|
|
6705
|
+
/**
|
|
6706
|
+
* If you wish to nest menus, you can pass inner menu items to the default slot.
|
|
6707
|
+
*/
|
|
6708
|
+
items?:
|
|
6709
|
+
| ISideNavigationSubItem[]
|
|
6710
|
+
| ISideNavigationSubItem
|
|
6711
|
+
| AggregationBindingInfo;
|
|
6712
|
+
}
|
|
6713
|
+
}
|
|
6714
|
+
|
|
6715
|
+
declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
6716
|
+
import {
|
|
6717
|
+
default as WebComponent,
|
|
6718
|
+
$WebComponentSettings,
|
|
6719
|
+
} from "sap/ui/webc/common/WebComponent";
|
|
6720
|
+
|
|
6721
|
+
import { ISideNavigationSubItem } from "sap/ui/webc/fiori/library";
|
|
6722
|
+
|
|
6723
|
+
import WebComponentMetadata from "sap/ui/webc/common/WebComponentMetadata";
|
|
6724
|
+
|
|
6725
|
+
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6726
|
+
|
|
6727
|
+
/**
|
|
6728
|
+
* @SINCE 1.92.0
|
|
6729
|
+
* @EXPERIMENTAL (since 1.92.0)
|
|
6730
|
+
*
|
|
6731
|
+
* Overview:
|
|
6732
|
+
*
|
|
6733
|
+
* The `sap.ui.webc.fiori.SideNavigationSubItem` is intended to be used inside a `sap.ui.webc.fiori.SideNavigationItem`
|
|
6734
|
+
* only.
|
|
6735
|
+
*/
|
|
6736
|
+
export default class SideNavigationSubItem
|
|
6737
|
+
extends WebComponent
|
|
6738
|
+
implements ISideNavigationSubItem {
|
|
6739
|
+
__implements__sap_ui_webc_fiori_ISideNavigationSubItem: boolean;
|
|
6740
|
+
/**
|
|
6741
|
+
* Constructor for a new `SideNavigationSubItem`.
|
|
6742
|
+
*
|
|
6743
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
6744
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
6745
|
+
* of the syntax of the settings object.
|
|
6746
|
+
*/
|
|
6747
|
+
constructor(
|
|
6748
|
+
/**
|
|
6749
|
+
* Initial settings for the new control
|
|
6750
|
+
*/
|
|
6751
|
+
mSettings?: $SideNavigationSubItemSettings
|
|
6752
|
+
);
|
|
6753
|
+
/**
|
|
6754
|
+
* Constructor for a new `SideNavigationSubItem`.
|
|
6755
|
+
*
|
|
6756
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
6757
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
6758
|
+
* of the syntax of the settings object.
|
|
6759
|
+
*/
|
|
6760
|
+
constructor(
|
|
6761
|
+
/**
|
|
6762
|
+
* ID for the new control, generated automatically if no ID is given
|
|
6763
|
+
*/
|
|
6764
|
+
sId?: string,
|
|
6765
|
+
/**
|
|
6766
|
+
* Initial settings for the new control
|
|
6767
|
+
*/
|
|
6768
|
+
mSettings?: $SideNavigationSubItemSettings
|
|
6769
|
+
);
|
|
6770
|
+
|
|
6771
|
+
/**
|
|
6772
|
+
* Creates a new subclass of class sap.ui.webc.fiori.SideNavigationSubItem with name `sClassName` and enriches
|
|
6773
|
+
* it with the information contained in `oClassInfo`.
|
|
6774
|
+
*
|
|
6775
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
6776
|
+
*/
|
|
6777
|
+
static extend<T extends Record<string, unknown>>(
|
|
6778
|
+
/**
|
|
6779
|
+
* Name of the class being created
|
|
6780
|
+
*/
|
|
6781
|
+
sClassName: string,
|
|
6782
|
+
/**
|
|
6783
|
+
* Object literal with information about the class
|
|
6784
|
+
*/
|
|
6785
|
+
oClassInfo?: sap.ClassInfo<T, SideNavigationSubItem>,
|
|
6786
|
+
/**
|
|
6787
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6788
|
+
* used by this class
|
|
6789
|
+
*/
|
|
6790
|
+
FNMetaImpl?: Function
|
|
6791
|
+
): Function;
|
|
6792
|
+
/**
|
|
6793
|
+
* Returns a metadata object for class sap.ui.webc.fiori.SideNavigationSubItem.
|
|
6794
|
+
*/
|
|
6795
|
+
static getMetadata(): WebComponentMetadata;
|
|
6796
|
+
/**
|
|
6797
|
+
* Gets current value of property {@link #getIcon icon}.
|
|
6798
|
+
*
|
|
6799
|
+
* Defines the icon of the item.
|
|
6800
|
+
*
|
|
6801
|
+
*
|
|
6802
|
+
*
|
|
6803
|
+
* The SAP-icons font provides numerous options.
|
|
6804
|
+
* See all the available icons in the Icon Explorer.
|
|
6805
|
+
*
|
|
6806
|
+
* Default value is `empty string`.
|
|
6807
|
+
*/
|
|
6808
|
+
getIcon(): string;
|
|
6809
|
+
/**
|
|
6810
|
+
* Gets current value of property {@link #getSelected selected}.
|
|
6811
|
+
*
|
|
6812
|
+
* Defines whether the subitem is selected.
|
|
6813
|
+
*
|
|
6814
|
+
* Default value is `false`.
|
|
6815
|
+
*/
|
|
6816
|
+
getSelected(): boolean;
|
|
6817
|
+
/**
|
|
6818
|
+
* Gets current value of property {@link #getText text}.
|
|
6819
|
+
*
|
|
6820
|
+
* Defines the text of the item.
|
|
6821
|
+
*
|
|
6822
|
+
* Default value is `empty string`.
|
|
6823
|
+
*/
|
|
6824
|
+
getText(): string;
|
|
6825
|
+
/**
|
|
6826
|
+
* Sets a new value for property {@link #getIcon icon}.
|
|
6827
|
+
*
|
|
6828
|
+
* Defines the icon of the item.
|
|
6829
|
+
*
|
|
6830
|
+
*
|
|
6831
|
+
*
|
|
6832
|
+
* The SAP-icons font provides numerous options.
|
|
6833
|
+
* See all the available icons in the Icon Explorer.
|
|
6834
|
+
*
|
|
6835
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6836
|
+
*
|
|
6837
|
+
* Default value is `empty string`.
|
|
6838
|
+
*/
|
|
6839
|
+
setIcon(
|
|
6840
|
+
/**
|
|
6841
|
+
* New value for property `icon`
|
|
6842
|
+
*/
|
|
6843
|
+
sIcon?: string
|
|
6844
|
+
): this;
|
|
6845
|
+
/**
|
|
6846
|
+
* Sets a new value for property {@link #getSelected selected}.
|
|
6847
|
+
*
|
|
6848
|
+
* Defines whether the subitem is selected.
|
|
6849
|
+
*
|
|
6850
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6851
|
+
*
|
|
6852
|
+
* Default value is `false`.
|
|
6853
|
+
*/
|
|
6854
|
+
setSelected(
|
|
6855
|
+
/**
|
|
6856
|
+
* New value for property `selected`
|
|
6857
|
+
*/
|
|
6858
|
+
bSelected?: boolean
|
|
6859
|
+
): this;
|
|
6860
|
+
/**
|
|
6861
|
+
* Sets a new value for property {@link #getText text}.
|
|
6862
|
+
*
|
|
6863
|
+
* Defines the text of the item.
|
|
6864
|
+
*
|
|
6865
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6866
|
+
*
|
|
6867
|
+
* Default value is `empty string`.
|
|
6221
6868
|
*/
|
|
6222
|
-
|
|
6869
|
+
setText(
|
|
6223
6870
|
/**
|
|
6224
|
-
* New value for property `
|
|
6871
|
+
* New value for property `text`
|
|
6225
6872
|
*/
|
|
6226
|
-
|
|
6873
|
+
sText?: string
|
|
6227
6874
|
): this;
|
|
6228
6875
|
}
|
|
6229
6876
|
|
|
6230
|
-
export interface $
|
|
6231
|
-
|
|
6232
|
-
* Defines if the item is expanded
|
|
6233
|
-
*/
|
|
6234
|
-
expanded?: boolean | PropertyBindingInfo;
|
|
6235
|
-
|
|
6877
|
+
export interface $SideNavigationSubItemSettings
|
|
6878
|
+
extends $WebComponentSettings {
|
|
6236
6879
|
/**
|
|
6237
6880
|
* Defines the icon of the item.
|
|
6238
6881
|
*
|
|
@@ -6244,7 +6887,7 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
|
|
|
6244
6887
|
icon?: string | PropertyBindingInfo;
|
|
6245
6888
|
|
|
6246
6889
|
/**
|
|
6247
|
-
* Defines whether the subitem is selected
|
|
6890
|
+
* Defines whether the subitem is selected.
|
|
6248
6891
|
*/
|
|
6249
6892
|
selected?: boolean | PropertyBindingInfo;
|
|
6250
6893
|
|
|
@@ -6252,52 +6895,33 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
|
|
|
6252
6895
|
* Defines the text of the item.
|
|
6253
6896
|
*/
|
|
6254
6897
|
text?: string | PropertyBindingInfo;
|
|
6255
|
-
|
|
6256
|
-
/**
|
|
6257
|
-
* Defines whether pressing the whole item or only pressing the icon will show/hide the items's sub items(if
|
|
6258
|
-
* present). If set to true, pressing the whole item will toggle the sub items, and it won't fire the `click`
|
|
6259
|
-
* event. By default, only pressing the arrow icon will toggle the sub items & the click event will be fired
|
|
6260
|
-
* if the item is pressed outside of the icon.
|
|
6261
|
-
*/
|
|
6262
|
-
wholeItemToggleable?: boolean | PropertyBindingInfo;
|
|
6263
|
-
|
|
6264
|
-
/**
|
|
6265
|
-
* If you wish to nest menus, you can pass inner menu items to the default slot.
|
|
6266
|
-
*/
|
|
6267
|
-
items?:
|
|
6268
|
-
| ISideNavigationSubItem[]
|
|
6269
|
-
| ISideNavigationSubItem
|
|
6270
|
-
| AggregationBindingInfo;
|
|
6271
6898
|
}
|
|
6272
6899
|
}
|
|
6273
6900
|
|
|
6274
|
-
declare module "sap/ui/webc/fiori/
|
|
6901
|
+
declare module "sap/ui/webc/fiori/SortItem" {
|
|
6275
6902
|
import {
|
|
6276
6903
|
default as WebComponent,
|
|
6277
6904
|
$WebComponentSettings,
|
|
6278
6905
|
} from "sap/ui/webc/common/WebComponent";
|
|
6279
6906
|
|
|
6280
|
-
import {
|
|
6907
|
+
import { ISortItem } from "sap/ui/webc/fiori/library";
|
|
6281
6908
|
|
|
6282
6909
|
import WebComponentMetadata from "sap/ui/webc/common/WebComponentMetadata";
|
|
6283
6910
|
|
|
6284
6911
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6285
6912
|
|
|
6286
6913
|
/**
|
|
6287
|
-
* @SINCE 1.
|
|
6288
|
-
* @EXPERIMENTAL (since 1.
|
|
6914
|
+
* @SINCE 1.97.0
|
|
6915
|
+
* @EXPERIMENTAL (since 1.97.0)
|
|
6289
6916
|
*
|
|
6290
6917
|
* Overview:
|
|
6291
6918
|
*
|
|
6292
|
-
*
|
|
6293
|
-
* only.
|
|
6919
|
+
* Usage:
|
|
6294
6920
|
*/
|
|
6295
|
-
export default class
|
|
6296
|
-
|
|
6297
|
-
implements ISideNavigationSubItem {
|
|
6298
|
-
__implements__sap_ui_webc_fiori_ISideNavigationSubItem: boolean;
|
|
6921
|
+
export default class SortItem extends WebComponent implements ISortItem {
|
|
6922
|
+
__implements__sap_ui_webc_fiori_ISortItem: boolean;
|
|
6299
6923
|
/**
|
|
6300
|
-
* Constructor for a new `
|
|
6924
|
+
* Constructor for a new `SortItem`.
|
|
6301
6925
|
*
|
|
6302
6926
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
6303
6927
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -6307,10 +6931,10 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
|
6307
6931
|
/**
|
|
6308
6932
|
* Initial settings for the new control
|
|
6309
6933
|
*/
|
|
6310
|
-
mSettings?: $
|
|
6934
|
+
mSettings?: $SortItemSettings
|
|
6311
6935
|
);
|
|
6312
6936
|
/**
|
|
6313
|
-
* Constructor for a new `
|
|
6937
|
+
* Constructor for a new `SortItem`.
|
|
6314
6938
|
*
|
|
6315
6939
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
6316
6940
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -6324,12 +6948,12 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
|
6324
6948
|
/**
|
|
6325
6949
|
* Initial settings for the new control
|
|
6326
6950
|
*/
|
|
6327
|
-
mSettings?: $
|
|
6951
|
+
mSettings?: $SortItemSettings
|
|
6328
6952
|
);
|
|
6329
6953
|
|
|
6330
6954
|
/**
|
|
6331
|
-
* Creates a new subclass of class sap.ui.webc.fiori.
|
|
6332
|
-
*
|
|
6955
|
+
* Creates a new subclass of class sap.ui.webc.fiori.SortItem with name `sClassName` and enriches it with
|
|
6956
|
+
* the information contained in `oClassInfo`.
|
|
6333
6957
|
*
|
|
6334
6958
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
6335
6959
|
*/
|
|
@@ -6341,7 +6965,7 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
|
6341
6965
|
/**
|
|
6342
6966
|
* Object literal with information about the class
|
|
6343
6967
|
*/
|
|
6344
|
-
oClassInfo?: sap.ClassInfo<T,
|
|
6968
|
+
oClassInfo?: sap.ClassInfo<T, SortItem>,
|
|
6345
6969
|
/**
|
|
6346
6970
|
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6347
6971
|
* used by this class
|
|
@@ -6349,26 +6973,13 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
|
6349
6973
|
FNMetaImpl?: Function
|
|
6350
6974
|
): Function;
|
|
6351
6975
|
/**
|
|
6352
|
-
* Returns a metadata object for class sap.ui.webc.fiori.
|
|
6976
|
+
* Returns a metadata object for class sap.ui.webc.fiori.SortItem.
|
|
6353
6977
|
*/
|
|
6354
6978
|
static getMetadata(): WebComponentMetadata;
|
|
6355
|
-
/**
|
|
6356
|
-
* Gets current value of property {@link #getIcon icon}.
|
|
6357
|
-
*
|
|
6358
|
-
* Defines the icon of the item.
|
|
6359
|
-
*
|
|
6360
|
-
*
|
|
6361
|
-
*
|
|
6362
|
-
* The SAP-icons font provides numerous options.
|
|
6363
|
-
* See all the available icons in the Icon Explorer.
|
|
6364
|
-
*
|
|
6365
|
-
* Default value is `empty string`.
|
|
6366
|
-
*/
|
|
6367
|
-
getIcon(): string;
|
|
6368
6979
|
/**
|
|
6369
6980
|
* Gets current value of property {@link #getSelected selected}.
|
|
6370
6981
|
*
|
|
6371
|
-
* Defines
|
|
6982
|
+
* Defines if the component is selected.
|
|
6372
6983
|
*
|
|
6373
6984
|
* Default value is `false`.
|
|
6374
6985
|
*/
|
|
@@ -6376,35 +6987,15 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
|
6376
6987
|
/**
|
|
6377
6988
|
* Gets current value of property {@link #getText text}.
|
|
6378
6989
|
*
|
|
6379
|
-
* Defines the text of the
|
|
6990
|
+
* Defines the text of the component.
|
|
6380
6991
|
*
|
|
6381
6992
|
* Default value is `empty string`.
|
|
6382
6993
|
*/
|
|
6383
6994
|
getText(): string;
|
|
6384
|
-
/**
|
|
6385
|
-
* Sets a new value for property {@link #getIcon icon}.
|
|
6386
|
-
*
|
|
6387
|
-
* Defines the icon of the item.
|
|
6388
|
-
*
|
|
6389
|
-
*
|
|
6390
|
-
*
|
|
6391
|
-
* The SAP-icons font provides numerous options.
|
|
6392
|
-
* See all the available icons in the Icon Explorer.
|
|
6393
|
-
*
|
|
6394
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6395
|
-
*
|
|
6396
|
-
* Default value is `empty string`.
|
|
6397
|
-
*/
|
|
6398
|
-
setIcon(
|
|
6399
|
-
/**
|
|
6400
|
-
* New value for property `icon`
|
|
6401
|
-
*/
|
|
6402
|
-
sIcon?: string
|
|
6403
|
-
): this;
|
|
6404
6995
|
/**
|
|
6405
6996
|
* Sets a new value for property {@link #getSelected selected}.
|
|
6406
6997
|
*
|
|
6407
|
-
* Defines
|
|
6998
|
+
* Defines if the component is selected.
|
|
6408
6999
|
*
|
|
6409
7000
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6410
7001
|
*
|
|
@@ -6419,7 +7010,7 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
|
6419
7010
|
/**
|
|
6420
7011
|
* Sets a new value for property {@link #getText text}.
|
|
6421
7012
|
*
|
|
6422
|
-
* Defines the text of the
|
|
7013
|
+
* Defines the text of the component.
|
|
6423
7014
|
*
|
|
6424
7015
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6425
7016
|
*
|
|
@@ -6433,25 +7024,14 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
|
6433
7024
|
): this;
|
|
6434
7025
|
}
|
|
6435
7026
|
|
|
6436
|
-
export interface $
|
|
6437
|
-
extends $WebComponentSettings {
|
|
6438
|
-
/**
|
|
6439
|
-
* Defines the icon of the item.
|
|
6440
|
-
*
|
|
6441
|
-
*
|
|
6442
|
-
*
|
|
6443
|
-
* The SAP-icons font provides numerous options.
|
|
6444
|
-
* See all the available icons in the Icon Explorer.
|
|
6445
|
-
*/
|
|
6446
|
-
icon?: string | PropertyBindingInfo;
|
|
6447
|
-
|
|
7027
|
+
export interface $SortItemSettings extends $WebComponentSettings {
|
|
6448
7028
|
/**
|
|
6449
|
-
* Defines
|
|
7029
|
+
* Defines if the component is selected.
|
|
6450
7030
|
*/
|
|
6451
7031
|
selected?: boolean | PropertyBindingInfo;
|
|
6452
7032
|
|
|
6453
7033
|
/**
|
|
6454
|
-
* Defines the text of the
|
|
7034
|
+
* Defines the text of the component.
|
|
6455
7035
|
*/
|
|
6456
7036
|
text?: string | PropertyBindingInfo;
|
|
6457
7037
|
}
|
|
@@ -7440,10 +8020,21 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
7440
8020
|
selectedItems?: any[];
|
|
7441
8021
|
}
|
|
7442
8022
|
): this;
|
|
8023
|
+
/**
|
|
8024
|
+
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
8025
|
+
*
|
|
8026
|
+
* Sets the accessible aria name of the component.
|
|
8027
|
+
*
|
|
8028
|
+
* Default value is `empty string`.
|
|
8029
|
+
*/
|
|
8030
|
+
getAccessibleName(): string;
|
|
7443
8031
|
/**
|
|
7444
8032
|
* Gets content of aggregation {@link #getHeader header}.
|
|
7445
8033
|
*
|
|
7446
8034
|
* Defines the `sap.ui.webc.fiori.UploadCollection` header.
|
|
8035
|
+
*
|
|
8036
|
+
* **Note:** If `header` slot is provided, the labelling of the `UploadCollection` is a responsibility
|
|
8037
|
+
* of the application developer. `accessibleName` should be used.
|
|
7447
8038
|
*/
|
|
7448
8039
|
getHeader(): Control[];
|
|
7449
8040
|
/**
|
|
@@ -7589,6 +8180,21 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
7589
8180
|
*/
|
|
7590
8181
|
vItem: int | string | IUploadCollectionItem
|
|
7591
8182
|
): IUploadCollectionItem;
|
|
8183
|
+
/**
|
|
8184
|
+
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
8185
|
+
*
|
|
8186
|
+
* Sets the accessible aria name of the component.
|
|
8187
|
+
*
|
|
8188
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8189
|
+
*
|
|
8190
|
+
* Default value is `empty string`.
|
|
8191
|
+
*/
|
|
8192
|
+
setAccessibleName(
|
|
8193
|
+
/**
|
|
8194
|
+
* New value for property `accessibleName`
|
|
8195
|
+
*/
|
|
8196
|
+
sAccessibleName?: string
|
|
8197
|
+
): this;
|
|
7592
8198
|
/**
|
|
7593
8199
|
* Sets a new value for property {@link #getHeight height}.
|
|
7594
8200
|
*
|
|
@@ -7690,6 +8296,11 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
7690
8296
|
}
|
|
7691
8297
|
|
|
7692
8298
|
export interface $UploadCollectionSettings extends $WebComponentSettings {
|
|
8299
|
+
/**
|
|
8300
|
+
* Sets the accessible aria name of the component.
|
|
8301
|
+
*/
|
|
8302
|
+
accessibleName?: string | PropertyBindingInfo;
|
|
8303
|
+
|
|
7693
8304
|
/**
|
|
7694
8305
|
* Defines the height of the control
|
|
7695
8306
|
*/
|
|
@@ -7734,6 +8345,9 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
7734
8345
|
|
|
7735
8346
|
/**
|
|
7736
8347
|
* Defines the `sap.ui.webc.fiori.UploadCollection` header.
|
|
8348
|
+
*
|
|
8349
|
+
* **Note:** If `header` slot is provided, the labelling of the `UploadCollection` is a responsibility
|
|
8350
|
+
* of the application developer. `accessibleName` should be used.
|
|
7737
8351
|
*/
|
|
7738
8352
|
header?: Control[] | Control | AggregationBindingInfo;
|
|
7739
8353
|
|
|
@@ -8510,7 +9124,7 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
8510
9124
|
$WebComponentSettings,
|
|
8511
9125
|
} from "sap/ui/webc/common/WebComponent";
|
|
8512
9126
|
|
|
8513
|
-
import {
|
|
9127
|
+
import { IFilterItem, ISortItem } from "sap/ui/webc/fiori/library";
|
|
8514
9128
|
|
|
8515
9129
|
import Event from "sap/ui/base/Event";
|
|
8516
9130
|
|
|
@@ -8522,12 +9136,13 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
8522
9136
|
} from "sap/ui/base/ManagedObject";
|
|
8523
9137
|
|
|
8524
9138
|
/**
|
|
8525
|
-
* @SINCE 1.
|
|
8526
|
-
* @EXPERIMENTAL (since 1.
|
|
9139
|
+
* @SINCE 1.95.0
|
|
9140
|
+
* @EXPERIMENTAL (since 1.95.0)
|
|
8527
9141
|
*
|
|
8528
9142
|
* Overview: The `sap.ui.webc.fiori.ViewSettingsDialog` component helps the user to sort data within a list
|
|
8529
|
-
* or a table. It consists of several lists like `Sort order` which is built-in and `Sort By`
|
|
8530
|
-
*
|
|
9143
|
+
* or a table. It consists of several lists like `Sort order` which is built-in and `Sort By` and `Filter
|
|
9144
|
+
* By` lists, for which you must be provide items(`sap.ui.webc.fiori.SortItem` & `sap.ui.webc.fiori.FilterItem`
|
|
9145
|
+
* respectively) These options can be used to create sorters for a table.
|
|
8531
9146
|
*
|
|
8532
9147
|
* The `sap.ui.webc.fiori.ViewSettingsDialog` interrupts the current application processing as it is the
|
|
8533
9148
|
* only focused UI element and the main screen is dimmed/blocked. The `sap.ui.webc.fiori.ViewSettingsDialog`
|
|
@@ -8595,6 +9210,15 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
8595
9210
|
* Returns a metadata object for class sap.ui.webc.fiori.ViewSettingsDialog.
|
|
8596
9211
|
*/
|
|
8597
9212
|
static getMetadata(): WebComponentMetadata;
|
|
9213
|
+
/**
|
|
9214
|
+
* Adds some filterItem to the aggregation {@link #getFilterItems filterItems}.
|
|
9215
|
+
*/
|
|
9216
|
+
addFilterItem(
|
|
9217
|
+
/**
|
|
9218
|
+
* The filterItem to add; if empty, nothing is inserted
|
|
9219
|
+
*/
|
|
9220
|
+
oFilterItem: IFilterItem
|
|
9221
|
+
): this;
|
|
8598
9222
|
/**
|
|
8599
9223
|
* Adds some sortItem to the aggregation {@link #getSortItems sortItems}.
|
|
8600
9224
|
*/
|
|
@@ -8602,7 +9226,7 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
8602
9226
|
/**
|
|
8603
9227
|
* The sortItem to add; if empty, nothing is inserted
|
|
8604
9228
|
*/
|
|
8605
|
-
oSortItem:
|
|
9229
|
+
oSortItem: ISortItem
|
|
8606
9230
|
): this;
|
|
8607
9231
|
/**
|
|
8608
9232
|
* Attaches event handler `fnFunction` to the {@link #event:cancel cancel} event of this `sap.ui.webc.fiori.ViewSettingsDialog`.
|
|
@@ -8690,6 +9314,10 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
8690
9314
|
*/
|
|
8691
9315
|
oListener?: object
|
|
8692
9316
|
): this;
|
|
9317
|
+
/**
|
|
9318
|
+
* Destroys all the filterItems in the aggregation {@link #getFilterItems filterItems}.
|
|
9319
|
+
*/
|
|
9320
|
+
destroyFilterItems(): this;
|
|
8693
9321
|
/**
|
|
8694
9322
|
* Destroys all the sortItems in the aggregation {@link #getSortItems sortItems}.
|
|
8695
9323
|
*/
|
|
@@ -8737,7 +9365,7 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
8737
9365
|
*/
|
|
8738
9366
|
sortOrder?: string;
|
|
8739
9367
|
/**
|
|
8740
|
-
* The
|
|
9368
|
+
* The currently selected `sap.ui.webc.fiori.SortItem` text attribute.
|
|
8741
9369
|
*/
|
|
8742
9370
|
sortBy?: string;
|
|
8743
9371
|
}
|
|
@@ -8755,11 +9383,15 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
8755
9383
|
*/
|
|
8756
9384
|
sortOrder?: string;
|
|
8757
9385
|
/**
|
|
8758
|
-
* The
|
|
9386
|
+
* The currently selected `sap.ui.webc.fiori.SortItem` text attribute.
|
|
8759
9387
|
*/
|
|
8760
9388
|
sortBy?: string;
|
|
8761
9389
|
}
|
|
8762
9390
|
): this;
|
|
9391
|
+
/**
|
|
9392
|
+
* Gets content of aggregation {@link #getFilterItems filterItems}.
|
|
9393
|
+
*/
|
|
9394
|
+
getFilterItems(): IFilterItem[];
|
|
8763
9395
|
/**
|
|
8764
9396
|
* Gets current value of property {@link #getSortDescending sortDescending}.
|
|
8765
9397
|
*
|
|
@@ -8770,20 +9402,43 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
8770
9402
|
getSortDescending(): boolean;
|
|
8771
9403
|
/**
|
|
8772
9404
|
* Gets content of aggregation {@link #getSortItems sortItems}.
|
|
8773
|
-
*
|
|
8774
|
-
* Defines the `sortItems` list.
|
|
8775
9405
|
*/
|
|
8776
|
-
getSortItems():
|
|
9406
|
+
getSortItems(): ISortItem[];
|
|
9407
|
+
/**
|
|
9408
|
+
* Checks for the provided `sap.ui.webc.fiori.IFilterItem` in the aggregation {@link #getFilterItems filterItems}.
|
|
9409
|
+
* and returns its index if found or -1 otherwise.
|
|
9410
|
+
*/
|
|
9411
|
+
indexOfFilterItem(
|
|
9412
|
+
/**
|
|
9413
|
+
* The filterItem whose index is looked for
|
|
9414
|
+
*/
|
|
9415
|
+
oFilterItem: IFilterItem
|
|
9416
|
+
): int;
|
|
8777
9417
|
/**
|
|
8778
|
-
* Checks for the provided `sap.ui.webc.
|
|
9418
|
+
* Checks for the provided `sap.ui.webc.fiori.ISortItem` in the aggregation {@link #getSortItems sortItems}.
|
|
8779
9419
|
* and returns its index if found or -1 otherwise.
|
|
8780
9420
|
*/
|
|
8781
9421
|
indexOfSortItem(
|
|
8782
9422
|
/**
|
|
8783
9423
|
* The sortItem whose index is looked for
|
|
8784
9424
|
*/
|
|
8785
|
-
oSortItem:
|
|
9425
|
+
oSortItem: ISortItem
|
|
8786
9426
|
): int;
|
|
9427
|
+
/**
|
|
9428
|
+
* Inserts a filterItem into the aggregation {@link #getFilterItems filterItems}.
|
|
9429
|
+
*/
|
|
9430
|
+
insertFilterItem(
|
|
9431
|
+
/**
|
|
9432
|
+
* The filterItem to insert; if empty, nothing is inserted
|
|
9433
|
+
*/
|
|
9434
|
+
oFilterItem: IFilterItem,
|
|
9435
|
+
/**
|
|
9436
|
+
* The `0`-based index the filterItem should be inserted at; for a negative value of `iIndex`, the filterItem
|
|
9437
|
+
* is inserted at position 0; for a value greater than the current size of the aggregation, the filterItem
|
|
9438
|
+
* is inserted at the last position
|
|
9439
|
+
*/
|
|
9440
|
+
iIndex: int
|
|
9441
|
+
): this;
|
|
8787
9442
|
/**
|
|
8788
9443
|
* Inserts a sortItem into the aggregation {@link #getSortItems sortItems}.
|
|
8789
9444
|
*/
|
|
@@ -8791,7 +9446,7 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
8791
9446
|
/**
|
|
8792
9447
|
* The sortItem to insert; if empty, nothing is inserted
|
|
8793
9448
|
*/
|
|
8794
|
-
oSortItem:
|
|
9449
|
+
oSortItem: ISortItem,
|
|
8795
9450
|
/**
|
|
8796
9451
|
* The `0`-based index the sortItem should be inserted at; for a negative value of `iIndex`, the sortItem
|
|
8797
9452
|
* is inserted at position 0; for a value greater than the current size of the aggregation, the sortItem
|
|
@@ -8799,12 +9454,27 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
8799
9454
|
*/
|
|
8800
9455
|
iIndex: int
|
|
8801
9456
|
): this;
|
|
9457
|
+
/**
|
|
9458
|
+
* Removes all the controls from the aggregation {@link #getFilterItems filterItems}.
|
|
9459
|
+
*
|
|
9460
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
9461
|
+
*/
|
|
9462
|
+
removeAllFilterItems(): IFilterItem[];
|
|
8802
9463
|
/**
|
|
8803
9464
|
* Removes all the controls from the aggregation {@link #getSortItems sortItems}.
|
|
8804
9465
|
*
|
|
8805
9466
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
8806
9467
|
*/
|
|
8807
|
-
removeAllSortItems():
|
|
9468
|
+
removeAllSortItems(): ISortItem[];
|
|
9469
|
+
/**
|
|
9470
|
+
* Removes a filterItem from the aggregation {@link #getFilterItems filterItems}.
|
|
9471
|
+
*/
|
|
9472
|
+
removeFilterItem(
|
|
9473
|
+
/**
|
|
9474
|
+
* The filterItem to remove or its index or id
|
|
9475
|
+
*/
|
|
9476
|
+
vFilterItem: int | string | IFilterItem
|
|
9477
|
+
): IFilterItem;
|
|
8808
9478
|
/**
|
|
8809
9479
|
* Removes a sortItem from the aggregation {@link #getSortItems sortItems}.
|
|
8810
9480
|
*/
|
|
@@ -8812,8 +9482,8 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
8812
9482
|
/**
|
|
8813
9483
|
* The sortItem to remove or its index or id
|
|
8814
9484
|
*/
|
|
8815
|
-
vSortItem: int | string |
|
|
8816
|
-
):
|
|
9485
|
+
vSortItem: int | string | ISortItem
|
|
9486
|
+
): ISortItem;
|
|
8817
9487
|
/**
|
|
8818
9488
|
* Sets a new value for property {@link #getSortDescending sortDescending}.
|
|
8819
9489
|
*
|
|
@@ -8841,10 +9511,9 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
8841
9511
|
*/
|
|
8842
9512
|
sortDescending?: boolean | PropertyBindingInfo;
|
|
8843
9513
|
|
|
8844
|
-
|
|
8845
|
-
|
|
8846
|
-
|
|
8847
|
-
sortItems?: IListItem[] | IListItem | AggregationBindingInfo;
|
|
9514
|
+
filterItems?: IFilterItem[] | IFilterItem | AggregationBindingInfo;
|
|
9515
|
+
|
|
9516
|
+
sortItems?: ISortItem[] | ISortItem | AggregationBindingInfo;
|
|
8848
9517
|
|
|
8849
9518
|
/**
|
|
8850
9519
|
* Fired when cancel button is activated.
|
|
@@ -8883,16 +9552,16 @@ declare module "sap/ui/webc/fiori/Wizard" {
|
|
|
8883
9552
|
*
|
|
8884
9553
|
* Overview:
|
|
8885
9554
|
*
|
|
8886
|
-
* The `sap.ui.webc.fiori.Wizard` helps users complete a complex task by dividing it into sections and
|
|
8887
|
-
*
|
|
8888
|
-
* a content area below it.
|
|
9555
|
+
* The `sap.ui.webc.fiori.Wizard` helps users to complete a complex task by dividing it into sections and
|
|
9556
|
+
* guiding them through it. It has two main areas - a navigation area at the top showing the step sequence
|
|
9557
|
+
* and a content area below it.
|
|
8889
9558
|
*
|
|
8890
9559
|
* Structure: Navigation area: The top most area of the `sap.ui.webc.fiori.Wizard` is occupied by the navigation
|
|
8891
9560
|
* area. It shows the sequence of steps, where the recommended number of steps is between 3 and 8 steps.
|
|
8892
9561
|
*
|
|
8893
9562
|
* - Steps can have different visual representations - numbers or icons. Steps might have labels
|
|
8894
9563
|
* for better readability - titleText and subTitleText.
|
|
8895
|
-
* - Steps are defined by using the `sap.ui.webc.fiori.WizardStep` as slotted element within the `sap.ui.webc.fiori.Wizard
|
|
9564
|
+
* - Steps are defined by using the `sap.ui.webc.fiori.WizardStep` as slotted element within the `sap.ui.webc.fiori.Wizard`.
|
|
8896
9565
|
*
|
|
8897
9566
|
*
|
|
8898
9567
|
* **Note:** If no selected step is defined, the first step will be auto selected.
|
|
@@ -8919,7 +9588,7 @@ declare module "sap/ui/webc/fiori/Wizard" {
|
|
|
8919
9588
|
*
|
|
8920
9589
|
* Moving to next step: The `sap.ui.webc.fiori.WizardStep` provides the necessary API and it's up to the
|
|
8921
9590
|
* user of the component to use it to move to the next step. You have to set its `selected` property (and
|
|
8922
|
-
* remove the `disabled` one if set) to `true`.
|
|
9591
|
+
* remove the `disabled` one if set) to `true`. The `sap.ui.webc.fiori.Wizard` will automatically scroll
|
|
8923
9592
|
* to the content of the newly selected step.
|
|
8924
9593
|
*
|
|
8925
9594
|
*
|
|
@@ -8928,13 +9597,14 @@ declare module "sap/ui/webc/fiori/Wizard" {
|
|
|
8928
9597
|
* or any other type of element to trigger step change, inside the `sap.ui.webc.fiori.WizardStep`, and show/hide
|
|
8929
9598
|
* it when certain fields are filled or user defined criteria is met.
|
|
8930
9599
|
*
|
|
8931
|
-
* Usage: When to use:: When the user has to accomplish a long
|
|
9600
|
+
* Usage: When to use:: When the user has to accomplish a long or unfamiliar task.
|
|
8932
9601
|
*
|
|
8933
9602
|
* When not to use:: When the task has less than 3 steps.
|
|
8934
9603
|
*
|
|
8935
9604
|
* Responsive Behavior: On small widths the step's titleText, subtitleText and separators in the navigation
|
|
8936
|
-
* area
|
|
8937
|
-
*
|
|
9605
|
+
* area shrink and from particular point the steps are grouped together and overlap. Tapping on them will
|
|
9606
|
+
* show a popover to select the step to navigate to. On mobile device, the grouped steps are presented within
|
|
9607
|
+
* a dialog.
|
|
8938
9608
|
*/
|
|
8939
9609
|
export default class Wizard extends WebComponent {
|
|
8940
9610
|
/**
|
|
@@ -9073,27 +9743,19 @@ declare module "sap/ui/webc/fiori/Wizard" {
|
|
|
9073
9743
|
*/
|
|
9074
9744
|
mParameters?: {
|
|
9075
9745
|
/**
|
|
9076
|
-
*
|
|
9746
|
+
* The new step.
|
|
9077
9747
|
*/
|
|
9078
9748
|
step?: HTMLElement;
|
|
9079
9749
|
/**
|
|
9080
|
-
*
|
|
9750
|
+
* The previous step.
|
|
9081
9751
|
*/
|
|
9082
9752
|
previousStep?: HTMLElement;
|
|
9083
9753
|
/**
|
|
9084
|
-
*
|
|
9754
|
+
* The step change occurs due to user's click or 'Enter'/'Space' key press on step within the navigation.
|
|
9085
9755
|
*/
|
|
9086
9756
|
changeWithClick?: boolean;
|
|
9087
9757
|
}
|
|
9088
9758
|
): this;
|
|
9089
|
-
/**
|
|
9090
|
-
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
9091
|
-
*
|
|
9092
|
-
* Sets the accessible aria name of the component.
|
|
9093
|
-
*
|
|
9094
|
-
* Default value is `undefined`.
|
|
9095
|
-
*/
|
|
9096
|
-
getAccessibleName(): string;
|
|
9097
9759
|
/**
|
|
9098
9760
|
* Gets current value of property {@link #getHeight height}.
|
|
9099
9761
|
*
|
|
@@ -9148,21 +9810,6 @@ declare module "sap/ui/webc/fiori/Wizard" {
|
|
|
9148
9810
|
*/
|
|
9149
9811
|
vStep: int | string | IWizardStep
|
|
9150
9812
|
): IWizardStep;
|
|
9151
|
-
/**
|
|
9152
|
-
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
9153
|
-
*
|
|
9154
|
-
* Sets the accessible aria name of the component.
|
|
9155
|
-
*
|
|
9156
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9157
|
-
*
|
|
9158
|
-
* Default value is `undefined`.
|
|
9159
|
-
*/
|
|
9160
|
-
setAccessibleName(
|
|
9161
|
-
/**
|
|
9162
|
-
* New value for property `accessibleName`
|
|
9163
|
-
*/
|
|
9164
|
-
sAccessibleName?: string
|
|
9165
|
-
): this;
|
|
9166
9813
|
/**
|
|
9167
9814
|
* Sets a new value for property {@link #getHeight height}.
|
|
9168
9815
|
*
|
|
@@ -9179,11 +9826,6 @@ declare module "sap/ui/webc/fiori/Wizard" {
|
|
|
9179
9826
|
}
|
|
9180
9827
|
|
|
9181
9828
|
export interface $WizardSettings extends $WebComponentSettings {
|
|
9182
|
-
/**
|
|
9183
|
-
* Sets the accessible aria name of the component.
|
|
9184
|
-
*/
|
|
9185
|
-
accessibleName?: string | PropertyBindingInfo;
|
|
9186
|
-
|
|
9187
9829
|
/**
|
|
9188
9830
|
* Defines the height of the control
|
|
9189
9831
|
*/
|
|
@@ -9228,13 +9870,13 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
9228
9870
|
* Overview:
|
|
9229
9871
|
*
|
|
9230
9872
|
* A component that represents a logical step as part of the `sap.ui.webc.fiori.Wizard`. It is meant to
|
|
9231
|
-
* aggregate arbitrary HTML elements that
|
|
9873
|
+
* aggregate arbitrary HTML elements that form the content of a single step.
|
|
9232
9874
|
*
|
|
9233
9875
|
* Structure:
|
|
9234
|
-
* - Each wizard step has arbitrary content
|
|
9235
|
-
* - Each wizard step might have texts - defined by the `titleText` and `subtitleText` properties
|
|
9236
|
-
* - Each wizard step might have an icon - defined by the `icon` property
|
|
9237
|
-
* - Each wizard step might display a number in place of the `icon`, when it's missing
|
|
9876
|
+
* - Each wizard step has arbitrary content.
|
|
9877
|
+
* - Each wizard step might have texts - defined by the `titleText` and `subtitleText` properties.
|
|
9878
|
+
* - Each wizard step might have an icon - defined by the `icon` property.
|
|
9879
|
+
* - Each wizard step might display a number in place of the `icon`, when it's missing.
|
|
9238
9880
|
*
|
|
9239
9881
|
* Usage: The `sap.ui.webc.fiori.WizardStep` component should be used only as slot of the `sap.ui.webc.fiori.Wizard`
|
|
9240
9882
|
* component and should not be used standalone.
|
|
@@ -9310,22 +9952,6 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
9310
9952
|
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
9311
9953
|
*/
|
|
9312
9954
|
destroyContent(): this;
|
|
9313
|
-
/**
|
|
9314
|
-
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
9315
|
-
*
|
|
9316
|
-
* Sets the accessible aria name of the component.
|
|
9317
|
-
*
|
|
9318
|
-
* Default value is `empty string`.
|
|
9319
|
-
*/
|
|
9320
|
-
getAccessibleName(): string;
|
|
9321
|
-
/**
|
|
9322
|
-
* Gets current value of property {@link #getAccessibleNameRef accessibleNameRef}.
|
|
9323
|
-
*
|
|
9324
|
-
* Defines the aria-labelledby of the step.
|
|
9325
|
-
*
|
|
9326
|
-
* Default value is `empty string`.
|
|
9327
|
-
*/
|
|
9328
|
-
getAccessibleNameRef(): string;
|
|
9329
9955
|
/**
|
|
9330
9956
|
* Gets current value of property {@link #getBranching branching}.
|
|
9331
9957
|
*
|
|
@@ -9367,7 +9993,7 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
9367
9993
|
*
|
|
9368
9994
|
*
|
|
9369
9995
|
*
|
|
9370
|
-
* **Note:**
|
|
9996
|
+
* **Note:** The icon is displayed in the `sap.ui.webc.fiori.Wizard` navigation header.
|
|
9371
9997
|
*
|
|
9372
9998
|
*
|
|
9373
9999
|
*
|
|
@@ -9397,7 +10023,6 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
9397
10023
|
*
|
|
9398
10024
|
*
|
|
9399
10025
|
* **Note:** the text is displayed in the `sap.ui.webc.fiori.Wizard` navigation header.
|
|
9400
|
-
* **Note:** the text will hide on small sizes (about 559 px).
|
|
9401
10026
|
*
|
|
9402
10027
|
* Default value is `empty string`.
|
|
9403
10028
|
*/
|
|
@@ -9409,8 +10034,7 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
9409
10034
|
*
|
|
9410
10035
|
*
|
|
9411
10036
|
*
|
|
9412
|
-
* **Note:**
|
|
9413
|
-
* **Note:** the text will hide on small sizes (about 559 px).
|
|
10037
|
+
* **Note:** The text is displayed in the `sap.ui.webc.fiori.Wizard` navigation header.
|
|
9414
10038
|
*
|
|
9415
10039
|
* Default value is `empty string`.
|
|
9416
10040
|
*/
|
|
@@ -9455,36 +10079,6 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
9455
10079
|
*/
|
|
9456
10080
|
vContent: int | string | Control
|
|
9457
10081
|
): Control;
|
|
9458
|
-
/**
|
|
9459
|
-
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
9460
|
-
*
|
|
9461
|
-
* Sets the accessible aria name of the component.
|
|
9462
|
-
*
|
|
9463
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9464
|
-
*
|
|
9465
|
-
* Default value is `empty string`.
|
|
9466
|
-
*/
|
|
9467
|
-
setAccessibleName(
|
|
9468
|
-
/**
|
|
9469
|
-
* New value for property `accessibleName`
|
|
9470
|
-
*/
|
|
9471
|
-
sAccessibleName?: string
|
|
9472
|
-
): this;
|
|
9473
|
-
/**
|
|
9474
|
-
* Sets a new value for property {@link #getAccessibleNameRef accessibleNameRef}.
|
|
9475
|
-
*
|
|
9476
|
-
* Defines the aria-labelledby of the step.
|
|
9477
|
-
*
|
|
9478
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9479
|
-
*
|
|
9480
|
-
* Default value is `empty string`.
|
|
9481
|
-
*/
|
|
9482
|
-
setAccessibleNameRef(
|
|
9483
|
-
/**
|
|
9484
|
-
* New value for property `accessibleNameRef`
|
|
9485
|
-
*/
|
|
9486
|
-
sAccessibleNameRef?: string
|
|
9487
|
-
): this;
|
|
9488
10082
|
/**
|
|
9489
10083
|
* Sets a new value for property {@link #getBranching branching}.
|
|
9490
10084
|
*
|
|
@@ -9534,7 +10128,7 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
9534
10128
|
*
|
|
9535
10129
|
*
|
|
9536
10130
|
*
|
|
9537
|
-
* **Note:**
|
|
10131
|
+
* **Note:** The icon is displayed in the `sap.ui.webc.fiori.Wizard` navigation header.
|
|
9538
10132
|
*
|
|
9539
10133
|
*
|
|
9540
10134
|
*
|
|
@@ -9578,7 +10172,6 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
9578
10172
|
*
|
|
9579
10173
|
*
|
|
9580
10174
|
* **Note:** the text is displayed in the `sap.ui.webc.fiori.Wizard` navigation header.
|
|
9581
|
-
* **Note:** the text will hide on small sizes (about 559 px).
|
|
9582
10175
|
*
|
|
9583
10176
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9584
10177
|
*
|
|
@@ -9597,8 +10190,7 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
9597
10190
|
*
|
|
9598
10191
|
*
|
|
9599
10192
|
*
|
|
9600
|
-
* **Note:**
|
|
9601
|
-
* **Note:** the text will hide on small sizes (about 559 px).
|
|
10193
|
+
* **Note:** The text is displayed in the `sap.ui.webc.fiori.Wizard` navigation header.
|
|
9602
10194
|
*
|
|
9603
10195
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9604
10196
|
*
|
|
@@ -9613,16 +10205,6 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
9613
10205
|
}
|
|
9614
10206
|
|
|
9615
10207
|
export interface $WizardStepSettings extends $WebComponentSettings {
|
|
9616
|
-
/**
|
|
9617
|
-
* Sets the accessible aria name of the component.
|
|
9618
|
-
*/
|
|
9619
|
-
accessibleName?: string | PropertyBindingInfo;
|
|
9620
|
-
|
|
9621
|
-
/**
|
|
9622
|
-
* Defines the aria-labelledby of the step.
|
|
9623
|
-
*/
|
|
9624
|
-
accessibleNameRef?: string | PropertyBindingInfo;
|
|
9625
|
-
|
|
9626
10208
|
/**
|
|
9627
10209
|
* When `branching` is enabled a dashed line would be displayed after the step, meant to indicate that the
|
|
9628
10210
|
* next step is not yet known and depends on user choice in the current step.
|
|
@@ -9650,7 +10232,7 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
9650
10232
|
*
|
|
9651
10233
|
*
|
|
9652
10234
|
*
|
|
9653
|
-
* **Note:**
|
|
10235
|
+
* **Note:** The icon is displayed in the `sap.ui.webc.fiori.Wizard` navigation header.
|
|
9654
10236
|
*
|
|
9655
10237
|
*
|
|
9656
10238
|
*
|
|
@@ -9674,7 +10256,6 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
9674
10256
|
*
|
|
9675
10257
|
*
|
|
9676
10258
|
* **Note:** the text is displayed in the `sap.ui.webc.fiori.Wizard` navigation header.
|
|
9677
|
-
* **Note:** the text will hide on small sizes (about 559 px).
|
|
9678
10259
|
*/
|
|
9679
10260
|
subtitleText?: string | PropertyBindingInfo;
|
|
9680
10261
|
|
|
@@ -9683,8 +10264,7 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
9683
10264
|
*
|
|
9684
10265
|
*
|
|
9685
10266
|
*
|
|
9686
|
-
* **Note:**
|
|
9687
|
-
* **Note:** the text will hide on small sizes (about 559 px).
|
|
10267
|
+
* **Note:** The text is displayed in the `sap.ui.webc.fiori.Wizard` navigation header.
|
|
9688
10268
|
*/
|
|
9689
10269
|
titleText?: string | PropertyBindingInfo;
|
|
9690
10270
|
|
|
@@ -9701,6 +10281,10 @@ declare namespace sap {
|
|
|
9701
10281
|
|
|
9702
10282
|
"sap/ui/webc/fiori/BarcodeScannerDialog": undefined;
|
|
9703
10283
|
|
|
10284
|
+
"sap/ui/webc/fiori/FilterItem": undefined;
|
|
10285
|
+
|
|
10286
|
+
"sap/ui/webc/fiori/FilterItemOption": undefined;
|
|
10287
|
+
|
|
9704
10288
|
"sap/ui/webc/fiori/FlexibleColumnLayout": undefined;
|
|
9705
10289
|
|
|
9706
10290
|
"sap/ui/webc/fiori/IllustratedMessage": undefined;
|
|
@@ -9729,6 +10313,8 @@ declare namespace sap {
|
|
|
9729
10313
|
|
|
9730
10314
|
"sap/ui/webc/fiori/SideNavigationSubItem": undefined;
|
|
9731
10315
|
|
|
10316
|
+
"sap/ui/webc/fiori/SortItem": undefined;
|
|
10317
|
+
|
|
9732
10318
|
"sap/ui/webc/fiori/Timeline": undefined;
|
|
9733
10319
|
|
|
9734
10320
|
"sap/ui/webc/fiori/TimelineItem": undefined;
|