@sapui5/ts-types 1.108.4 → 1.108.6

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.
Files changed (52) hide show
  1. package/package.json +1 -1
  2. package/types/sap.chart.d.ts +1 -1
  3. package/types/sap.f.d.ts +1 -1
  4. package/types/sap.fe.common.d.ts +1 -1
  5. package/types/sap.fe.core.d.ts +1 -1
  6. package/types/sap.fe.macros.d.ts +3 -3
  7. package/types/sap.fe.navigation.d.ts +1 -1
  8. package/types/sap.fe.templates.d.ts +1 -1
  9. package/types/sap.fe.test.d.ts +1 -1
  10. package/types/sap.gantt.d.ts +35 -1
  11. package/types/sap.insights.d.ts +1 -1
  12. package/types/sap.m.d.ts +115 -19
  13. package/types/sap.makit.d.ts +1 -1
  14. package/types/sap.me.d.ts +1 -1
  15. package/types/sap.ndc.d.ts +95 -29
  16. package/types/sap.ovp.d.ts +125 -1
  17. package/types/sap.rules.ui.d.ts +1 -1
  18. package/types/sap.sac.df.d.ts +1 -1
  19. package/types/sap.sac.grid.d.ts +1 -1
  20. package/types/sap.suite.ui.commons.d.ts +51 -1
  21. package/types/sap.suite.ui.generic.template.d.ts +479 -1
  22. package/types/sap.suite.ui.microchart.d.ts +1 -1
  23. package/types/sap.tnt.d.ts +1 -1
  24. package/types/sap.ui.codeeditor.d.ts +1 -1
  25. package/types/sap.ui.commons.d.ts +1 -1
  26. package/types/sap.ui.comp.d.ts +1 -1
  27. package/types/sap.ui.core.d.ts +1 -1
  28. package/types/sap.ui.dt.d.ts +1 -1
  29. package/types/sap.ui.export.d.ts +1 -1
  30. package/types/sap.ui.fl.d.ts +5 -2
  31. package/types/sap.ui.integration.d.ts +1 -1
  32. package/types/sap.ui.layout.d.ts +1 -1
  33. package/types/sap.ui.mdc.d.ts +1 -1
  34. package/types/sap.ui.richtexteditor.d.ts +19 -10
  35. package/types/sap.ui.rta.d.ts +1 -1
  36. package/types/sap.ui.suite.d.ts +1 -1
  37. package/types/sap.ui.support.d.ts +1 -1
  38. package/types/sap.ui.table.d.ts +1 -1
  39. package/types/sap.ui.testrecorder.d.ts +1 -1
  40. package/types/sap.ui.unified.d.ts +1 -1
  41. package/types/sap.ui.ux3.d.ts +1 -1
  42. package/types/sap.ui.webc.common.d.ts +1 -1
  43. package/types/sap.ui.webc.fiori.d.ts +1 -1
  44. package/types/sap.ui.webc.main.d.ts +1 -1
  45. package/types/sap.uiext.inbox.d.ts +1 -1
  46. package/types/sap.ushell.d.ts +1 -1
  47. package/types/sap.ushell_abap.d.ts +1 -1
  48. package/types/sap.uxap.d.ts +1 -1
  49. package/types/sap.viz.d.ts +1 -1
  50. package/types/sap.zen.commons.d.ts +1 -1
  51. package/types/sap.zen.crosstab.d.ts +1 -1
  52. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.4
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -964,6 +964,482 @@ declare namespace sap {
964
964
  }
965
965
  }
966
966
 
967
+ namespace lib {
968
+ interface $AppComponentSettings
969
+ extends sap.ui.core.$UIComponentSettings {
970
+ forceGlobalRefresh?:
971
+ | boolean
972
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
973
+ | `{${string}}`;
974
+
975
+ considerAnalyticalParameters?:
976
+ | boolean
977
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
978
+ | `{${string}}`;
979
+
980
+ showDraftToggle?:
981
+ | boolean
982
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
983
+ | `{${string}}`;
984
+
985
+ objectPageHeaderType?:
986
+ | string
987
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
988
+
989
+ objectPageVariantManagement?:
990
+ | string
991
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
992
+
993
+ flexibleColumnLayout?:
994
+ | object
995
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
996
+ | `{${string}}`;
997
+
998
+ inboundParameters?:
999
+ | object
1000
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1001
+ | `{${string}}`;
1002
+
1003
+ tableColumnVerticalAlignment?:
1004
+ | string
1005
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
1006
+
1007
+ useColumnLayoutForSmartForm?:
1008
+ | boolean
1009
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1010
+ | `{${string}}`;
1011
+
1012
+ objectPageColumns?:
1013
+ | object
1014
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1015
+ | `{${string}}`;
1016
+
1017
+ statePreservationMode?:
1018
+ | string
1019
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
1020
+
1021
+ enableAutoColumnWidthForSmartTable?:
1022
+ | boolean
1023
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1024
+ | `{${string}}`;
1025
+
1026
+ draftDiscardConfirmationSettings?:
1027
+ | object
1028
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1029
+ | `{${string}}`;
1030
+
1031
+ pageDataLoaded?: (oEvent: sap.ui.base.Event) => void;
1032
+ }
1033
+
1034
+ /**
1035
+ * Smart Templates Application Component
1036
+ */
1037
+ class AppComponent extends sap.ui.core.UIComponent {
1038
+ /**
1039
+ * Main class used for Smart Template(Fiori elements V2) Application Component
1040
+ *
1041
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
1042
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1043
+ * of the syntax of the settings object.
1044
+ */
1045
+ constructor();
1046
+
1047
+ /**
1048
+ * Creates a new subclass of class sap.suite.ui.generic.template.lib.AppComponent with name `sClassName`
1049
+ * and enriches it with the information contained in `oClassInfo`.
1050
+ *
1051
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
1052
+ *
1053
+ * @returns Created class / constructor function
1054
+ */
1055
+ static extend<T extends Record<string, unknown>>(
1056
+ /**
1057
+ * Name of the class being created
1058
+ */
1059
+ sClassName: string,
1060
+ /**
1061
+ * Object literal with information about the class
1062
+ */
1063
+ oClassInfo?: sap.ClassInfo<
1064
+ T,
1065
+ sap.suite.ui.generic.template.lib.AppComponent
1066
+ >,
1067
+ /**
1068
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1069
+ * used by this class
1070
+ */
1071
+ FNMetaImpl?: Function
1072
+ ): Function;
1073
+ /**
1074
+ * Returns a metadata object for class sap.suite.ui.generic.template.lib.AppComponent.
1075
+ *
1076
+ * @returns Metadata object describing this class
1077
+ */
1078
+ static getMetadata(): sap.ui.core.ComponentMetadata;
1079
+ /**
1080
+ * Attaches event handler `fnFunction` to the {@link #event:pageDataLoaded pageDataLoaded} event of this
1081
+ * `sap.suite.ui.generic.template.lib.AppComponent`.
1082
+ *
1083
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1084
+ * otherwise it will be bound to this `sap.suite.ui.generic.template.lib.AppComponent` itself.
1085
+ *
1086
+ * @returns Reference to `this` in order to allow method chaining
1087
+ */
1088
+ attachPageDataLoaded(
1089
+ /**
1090
+ * An application-specific payload object that will be passed to the event handler along with the event
1091
+ * object when firing the event
1092
+ */
1093
+ oData: object,
1094
+ /**
1095
+ * The function to be called when the event occurs
1096
+ */
1097
+ fnFunction: (p1: sap.ui.base.Event) => void,
1098
+ /**
1099
+ * Context object to call the event handler with. Defaults to this `sap.suite.ui.generic.template.lib.AppComponent`
1100
+ * itself
1101
+ */
1102
+ oListener?: object
1103
+ ): this;
1104
+ /**
1105
+ * Attaches event handler `fnFunction` to the {@link #event:pageDataLoaded pageDataLoaded} event of this
1106
+ * `sap.suite.ui.generic.template.lib.AppComponent`.
1107
+ *
1108
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
1109
+ * otherwise it will be bound to this `sap.suite.ui.generic.template.lib.AppComponent` itself.
1110
+ *
1111
+ * @returns Reference to `this` in order to allow method chaining
1112
+ */
1113
+ attachPageDataLoaded(
1114
+ /**
1115
+ * The function to be called when the event occurs
1116
+ */
1117
+ fnFunction: (p1: sap.ui.base.Event) => void,
1118
+ /**
1119
+ * Context object to call the event handler with. Defaults to this `sap.suite.ui.generic.template.lib.AppComponent`
1120
+ * itself
1121
+ */
1122
+ oListener?: object
1123
+ ): this;
1124
+ /**
1125
+ * Detaches event handler `fnFunction` from the {@link #event:pageDataLoaded pageDataLoaded} event of this
1126
+ * `sap.suite.ui.generic.template.lib.AppComponent`.
1127
+ *
1128
+ * The passed function and listener object must match the ones used for event registration.
1129
+ *
1130
+ * @returns Reference to `this` in order to allow method chaining
1131
+ */
1132
+ detachPageDataLoaded(
1133
+ /**
1134
+ * The function to be called, when the event occurs
1135
+ */
1136
+ fnFunction: (p1: sap.ui.base.Event) => void,
1137
+ /**
1138
+ * Context object on which the given function had to be called
1139
+ */
1140
+ oListener?: object
1141
+ ): this;
1142
+ /**
1143
+ * Fires event {@link #event:pageDataLoaded pageDataLoaded} to attached listeners.
1144
+ *
1145
+ * @returns Reference to `this` in order to allow method chaining
1146
+ */
1147
+ firePageDataLoaded(
1148
+ /**
1149
+ * Parameters to pass along with the event
1150
+ */
1151
+ mParameters?: object
1152
+ ): this;
1153
+ /**
1154
+ * Gets current value of property {@link #getConsiderAnalyticalParameters considerAnalyticalParameters}.
1155
+ *
1156
+ * Default value is `false`.
1157
+ *
1158
+ * @returns Value of property `considerAnalyticalParameters`
1159
+ */
1160
+ getConsiderAnalyticalParameters(): boolean;
1161
+ /**
1162
+ * Gets current value of property {@link #getDraftDiscardConfirmationSettings draftDiscardConfirmationSettings}.
1163
+ *
1164
+ * Default value is `...see text or source`.
1165
+ *
1166
+ * @returns Value of property `draftDiscardConfirmationSettings`
1167
+ */
1168
+ getDraftDiscardConfirmationSettings(): object;
1169
+ /**
1170
+ * Gets current value of property {@link #getEnableAutoColumnWidthForSmartTable enableAutoColumnWidthForSmartTable}.
1171
+ *
1172
+ * Default value is `true`.
1173
+ *
1174
+ * @returns Value of property `enableAutoColumnWidthForSmartTable`
1175
+ */
1176
+ getEnableAutoColumnWidthForSmartTable(): boolean;
1177
+ /**
1178
+ * Gets current value of property {@link #getFlexibleColumnLayout flexibleColumnLayout}.
1179
+ *
1180
+ * @returns Value of property `flexibleColumnLayout`
1181
+ */
1182
+ getFlexibleColumnLayout(): object;
1183
+ /**
1184
+ * Gets current value of property {@link #getForceGlobalRefresh forceGlobalRefresh}.
1185
+ *
1186
+ * Default value is `false`.
1187
+ *
1188
+ * @returns Value of property `forceGlobalRefresh`
1189
+ */
1190
+ getForceGlobalRefresh(): boolean;
1191
+ /**
1192
+ * Gets current value of property {@link #getInboundParameters inboundParameters}.
1193
+ *
1194
+ * @returns Value of property `inboundParameters`
1195
+ */
1196
+ getInboundParameters(): object;
1197
+ /**
1198
+ * Gets current value of property {@link #getObjectPageColumns objectPageColumns}.
1199
+ *
1200
+ * @returns Value of property `objectPageColumns`
1201
+ */
1202
+ getObjectPageColumns(): object;
1203
+ /**
1204
+ * Gets current value of property {@link #getObjectPageHeaderType objectPageHeaderType}.
1205
+ *
1206
+ * Default value is `"Static"`.
1207
+ *
1208
+ * @returns Value of property `objectPageHeaderType`
1209
+ */
1210
+ getObjectPageHeaderType(): string;
1211
+ /**
1212
+ * Gets current value of property {@link #getObjectPageVariantManagement objectPageVariantManagement}.
1213
+ *
1214
+ * Default value is `"None"`.
1215
+ *
1216
+ * @returns Value of property `objectPageVariantManagement`
1217
+ */
1218
+ getObjectPageVariantManagement(): string;
1219
+ /**
1220
+ * Gets current value of property {@link #getShowDraftToggle showDraftToggle}.
1221
+ *
1222
+ * Default value is `true`.
1223
+ *
1224
+ * @returns Value of property `showDraftToggle`
1225
+ */
1226
+ getShowDraftToggle(): boolean;
1227
+ /**
1228
+ * Gets current value of property {@link #getStatePreservationMode statePreservationMode}.
1229
+ *
1230
+ * Default value is `"auto"`.
1231
+ *
1232
+ * @returns Value of property `statePreservationMode`
1233
+ */
1234
+ getStatePreservationMode(): string;
1235
+ /**
1236
+ * Gets current value of property {@link #getTableColumnVerticalAlignment tableColumnVerticalAlignment}.
1237
+ *
1238
+ * Default value is `"Middle"`.
1239
+ *
1240
+ * @returns Value of property `tableColumnVerticalAlignment`
1241
+ */
1242
+ getTableColumnVerticalAlignment(): string;
1243
+ /**
1244
+ * Gets current value of property {@link #getUseColumnLayoutForSmartForm useColumnLayoutForSmartForm}.
1245
+ *
1246
+ * Default value is `true`.
1247
+ *
1248
+ * @returns Value of property `useColumnLayoutForSmartForm`
1249
+ */
1250
+ getUseColumnLayoutForSmartForm(): boolean;
1251
+ /**
1252
+ * Sets a new value for property {@link #getConsiderAnalyticalParameters considerAnalyticalParameters}.
1253
+ *
1254
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1255
+ *
1256
+ * Default value is `false`.
1257
+ *
1258
+ * @returns Reference to `this` in order to allow method chaining
1259
+ */
1260
+ setConsiderAnalyticalParameters(
1261
+ /**
1262
+ * New value for property `considerAnalyticalParameters`
1263
+ */
1264
+ bConsiderAnalyticalParameters?: boolean
1265
+ ): this;
1266
+ /**
1267
+ * Sets a new value for property {@link #getDraftDiscardConfirmationSettings draftDiscardConfirmationSettings}.
1268
+ *
1269
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1270
+ *
1271
+ * Default value is `...see text or source`.
1272
+ *
1273
+ * @returns Reference to `this` in order to allow method chaining
1274
+ */
1275
+ setDraftDiscardConfirmationSettings(
1276
+ /**
1277
+ * New value for property `draftDiscardConfirmationSettings`
1278
+ */
1279
+ oDraftDiscardConfirmationSettings?: object
1280
+ ): this;
1281
+ /**
1282
+ * Sets a new value for property {@link #getEnableAutoColumnWidthForSmartTable enableAutoColumnWidthForSmartTable}.
1283
+ *
1284
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1285
+ *
1286
+ * Default value is `true`.
1287
+ *
1288
+ * @returns Reference to `this` in order to allow method chaining
1289
+ */
1290
+ setEnableAutoColumnWidthForSmartTable(
1291
+ /**
1292
+ * New value for property `enableAutoColumnWidthForSmartTable`
1293
+ */
1294
+ bEnableAutoColumnWidthForSmartTable?: boolean
1295
+ ): this;
1296
+ /**
1297
+ * Sets a new value for property {@link #getFlexibleColumnLayout flexibleColumnLayout}.
1298
+ *
1299
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1300
+ *
1301
+ * @returns Reference to `this` in order to allow method chaining
1302
+ */
1303
+ setFlexibleColumnLayout(
1304
+ /**
1305
+ * New value for property `flexibleColumnLayout`
1306
+ */
1307
+ oFlexibleColumnLayout?: object
1308
+ ): this;
1309
+ /**
1310
+ * Sets a new value for property {@link #getForceGlobalRefresh forceGlobalRefresh}.
1311
+ *
1312
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1313
+ *
1314
+ * Default value is `false`.
1315
+ *
1316
+ * @returns Reference to `this` in order to allow method chaining
1317
+ */
1318
+ setForceGlobalRefresh(
1319
+ /**
1320
+ * New value for property `forceGlobalRefresh`
1321
+ */
1322
+ bForceGlobalRefresh?: boolean
1323
+ ): this;
1324
+ /**
1325
+ * Sets a new value for property {@link #getInboundParameters inboundParameters}.
1326
+ *
1327
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1328
+ *
1329
+ * @returns Reference to `this` in order to allow method chaining
1330
+ */
1331
+ setInboundParameters(
1332
+ /**
1333
+ * New value for property `inboundParameters`
1334
+ */
1335
+ oInboundParameters?: object
1336
+ ): this;
1337
+ /**
1338
+ * Sets a new value for property {@link #getObjectPageColumns objectPageColumns}.
1339
+ *
1340
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1341
+ *
1342
+ * @returns Reference to `this` in order to allow method chaining
1343
+ */
1344
+ setObjectPageColumns(
1345
+ /**
1346
+ * New value for property `objectPageColumns`
1347
+ */
1348
+ oObjectPageColumns: object
1349
+ ): this;
1350
+ /**
1351
+ * Sets a new value for property {@link #getObjectPageHeaderType objectPageHeaderType}.
1352
+ *
1353
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1354
+ *
1355
+ * Default value is `"Static"`.
1356
+ *
1357
+ * @returns Reference to `this` in order to allow method chaining
1358
+ */
1359
+ setObjectPageHeaderType(
1360
+ /**
1361
+ * New value for property `objectPageHeaderType`
1362
+ */
1363
+ sObjectPageHeaderType?: string
1364
+ ): this;
1365
+ /**
1366
+ * Sets a new value for property {@link #getObjectPageVariantManagement objectPageVariantManagement}.
1367
+ *
1368
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1369
+ *
1370
+ * Default value is `"None"`.
1371
+ *
1372
+ * @returns Reference to `this` in order to allow method chaining
1373
+ */
1374
+ setObjectPageVariantManagement(
1375
+ /**
1376
+ * New value for property `objectPageVariantManagement`
1377
+ */
1378
+ sObjectPageVariantManagement?: string
1379
+ ): this;
1380
+ /**
1381
+ * Sets a new value for property {@link #getShowDraftToggle showDraftToggle}.
1382
+ *
1383
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1384
+ *
1385
+ * Default value is `true`.
1386
+ *
1387
+ * @returns Reference to `this` in order to allow method chaining
1388
+ */
1389
+ setShowDraftToggle(
1390
+ /**
1391
+ * New value for property `showDraftToggle`
1392
+ */
1393
+ bShowDraftToggle?: boolean
1394
+ ): this;
1395
+ /**
1396
+ * Sets a new value for property {@link #getStatePreservationMode statePreservationMode}.
1397
+ *
1398
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1399
+ *
1400
+ * Default value is `"auto"`.
1401
+ *
1402
+ * @returns Reference to `this` in order to allow method chaining
1403
+ */
1404
+ setStatePreservationMode(
1405
+ /**
1406
+ * New value for property `statePreservationMode`
1407
+ */
1408
+ sStatePreservationMode?: string
1409
+ ): this;
1410
+ /**
1411
+ * Sets a new value for property {@link #getTableColumnVerticalAlignment tableColumnVerticalAlignment}.
1412
+ *
1413
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1414
+ *
1415
+ * Default value is `"Middle"`.
1416
+ *
1417
+ * @returns Reference to `this` in order to allow method chaining
1418
+ */
1419
+ setTableColumnVerticalAlignment(
1420
+ /**
1421
+ * New value for property `tableColumnVerticalAlignment`
1422
+ */
1423
+ sTableColumnVerticalAlignment?: string
1424
+ ): this;
1425
+ /**
1426
+ * Sets a new value for property {@link #getUseColumnLayoutForSmartForm useColumnLayoutForSmartForm}.
1427
+ *
1428
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1429
+ *
1430
+ * Default value is `true`.
1431
+ *
1432
+ * @returns Reference to `this` in order to allow method chaining
1433
+ */
1434
+ setUseColumnLayoutForSmartForm(
1435
+ /**
1436
+ * New value for property `useColumnLayoutForSmartForm`
1437
+ */
1438
+ bUseColumnLayoutForSmartForm?: boolean
1439
+ ): this;
1440
+ }
1441
+ }
1442
+
967
1443
  namespace ListReport {
968
1444
  namespace extensionAPI {
969
1445
  class ExtensionAPI extends sap.ui.base.Object {
@@ -2582,6 +3058,8 @@ declare namespace sap {
2582
3058
 
2583
3059
  "sap/suite/ui/generic/template/extensionAPI/ReuseComponentSupport": undefined;
2584
3060
 
3061
+ "sap/suite/ui/generic/template/lib/AppComponent": undefined;
3062
+
2585
3063
  "sap/suite/ui/generic/template/library": undefined;
2586
3064
 
2587
3065
  "sap/suite/ui/generic/template/ListReport/controllerFrameworkExtensions": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
264
264
  ): jQuery;
265
265
  }
266
266
 
267
- // For Library Version: 1.108.2
267
+ // For Library Version: 1.108.3
268
268
 
269
269
  declare module "sap/base/assert" {
270
270
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.3
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -143,8 +143,11 @@ declare namespace sap {
143
143
  */
144
144
  class VariantManagement
145
145
  extends sap.ui.core.Control
146
- implements sap.m.IOverflowToolbarContent {
146
+ implements
147
+ sap.m.IOverflowToolbarContent,
148
+ /* was: sap.m.IToolbarInteractiveControl */ Object {
147
149
  __implements__sap_m_IOverflowToolbarContent: boolean;
150
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
148
151
  /**
149
152
  * Constructor for a new `VariantManagement`.
150
153
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.3
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -42,7 +42,8 @@ declare namespace sap {
42
42
 
43
43
  /**
44
44
  * Height of RichTextEditor control in CSS units. **Note:** If the height property results in a value smaller
45
- * than 200px, the minimum height of 200px will be applied.
45
+ * than 200px, the minimum height of 200px will be applied. **Note:** If the "autoresize" TinyMCE plugin
46
+ * is used, the height property is not taken into account.
46
47
  */
47
48
  height?:
48
49
  | sap.ui.core.CSSSize
@@ -292,9 +293,11 @@ declare namespace sap {
292
293
 
293
294
  /**
294
295
  * This event is fired right before the TinyMCE instance is created and can be used to change the settings
295
- * object that will be given to TinyMCE. The parameter "configuration" is the javascript oject that will
296
+ * object that will be given to TinyMCE. The parameter "configuration" is the javascript object that will
296
297
  * be given to TinyMCE upon first instantiation. The configuration parameter contains a map that can be
297
- * changed in the case of TinyMCE.
298
+ * changed in the case of TinyMCE. **Note:** In order to add plugins to the `RichTextEditor` control, you
299
+ * have to use the `addPlugin` method. Adding plugins through the settings object may lead to synchronizing
300
+ * issues between TinyMCE and `RichTextEditor` control.
298
301
  */
299
302
  beforeEditorInit?: (oEvent: sap.ui.base.Event) => void;
300
303
  }
@@ -533,9 +536,11 @@ declare namespace sap {
533
536
  * otherwise it will be bound to this `sap.ui.richtexteditor.RichTextEditor` itself.
534
537
  *
535
538
  * This event is fired right before the TinyMCE instance is created and can be used to change the settings
536
- * object that will be given to TinyMCE. The parameter "configuration" is the javascript oject that will
539
+ * object that will be given to TinyMCE. The parameter "configuration" is the javascript object that will
537
540
  * be given to TinyMCE upon first instantiation. The configuration parameter contains a map that can be
538
- * changed in the case of TinyMCE.
541
+ * changed in the case of TinyMCE. **Note:** In order to add plugins to the `RichTextEditor` control, you
542
+ * have to use the `addPlugin` method. Adding plugins through the settings object may lead to synchronizing
543
+ * issues between TinyMCE and `RichTextEditor` control.
539
544
  *
540
545
  * @returns Reference to `this` in order to allow method chaining
541
546
  */
@@ -563,9 +568,11 @@ declare namespace sap {
563
568
  * otherwise it will be bound to this `sap.ui.richtexteditor.RichTextEditor` itself.
564
569
  *
565
570
  * This event is fired right before the TinyMCE instance is created and can be used to change the settings
566
- * object that will be given to TinyMCE. The parameter "configuration" is the javascript oject that will
571
+ * object that will be given to TinyMCE. The parameter "configuration" is the javascript object that will
567
572
  * be given to TinyMCE upon first instantiation. The configuration parameter contains a map that can be
568
- * changed in the case of TinyMCE.
573
+ * changed in the case of TinyMCE. **Note:** In order to add plugins to the `RichTextEditor` control, you
574
+ * have to use the `addPlugin` method. Adding plugins through the settings object may lead to synchronizing
575
+ * issues between TinyMCE and `RichTextEditor` control.
569
576
  *
570
577
  * @returns Reference to `this` in order to allow method chaining
571
578
  */
@@ -958,7 +965,8 @@ declare namespace sap {
958
965
  * Gets current value of property {@link #getHeight height}.
959
966
  *
960
967
  * Height of RichTextEditor control in CSS units. **Note:** If the height property results in a value smaller
961
- * than 200px, the minimum height of 200px will be applied.
968
+ * than 200px, the minimum height of 200px will be applied. **Note:** If the "autoresize" TinyMCE plugin
969
+ * is used, the height property is not taken into account.
962
970
  *
963
971
  * @returns Value of property `height`
964
972
  */
@@ -1351,7 +1359,8 @@ declare namespace sap {
1351
1359
  * Sets a new value for property {@link #getHeight height}.
1352
1360
  *
1353
1361
  * Height of RichTextEditor control in CSS units. **Note:** If the height property results in a value smaller
1354
- * than 200px, the minimum height of 200px will be applied.
1362
+ * than 200px, the minimum height of 200px will be applied. **Note:** If the "autoresize" TinyMCE plugin
1363
+ * is used, the height property is not taken into account.
1355
1364
  *
1356
1365
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1357
1366
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.2
1
+ // For Library Version: 1.108.3
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**