@sapui5/ts-types 1.113.0 → 1.115.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.
Files changed (64) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +0 -1
  3. package/types/sap.apf.d.ts +2 -2
  4. package/types/sap.ca.ui.d.ts +135 -67
  5. package/types/sap.chart.d.ts +154 -125
  6. package/types/sap.collaboration.d.ts +80 -78
  7. package/types/sap.esh.search.ui.d.ts +137 -1
  8. package/types/sap.f.d.ts +1357 -926
  9. package/types/sap.fe.core.d.ts +45 -155
  10. package/types/sap.fe.macros.d.ts +80 -9
  11. package/types/sap.fe.navigation.d.ts +34 -27
  12. package/types/sap.fe.templates.d.ts +8 -275
  13. package/types/sap.fe.test.d.ts +4 -10
  14. package/types/sap.feedback.ui.d.ts +1 -1
  15. package/types/sap.gantt.d.ts +1716 -1087
  16. package/types/sap.insights.d.ts +1 -1
  17. package/types/sap.landvisz.d.ts +35 -9
  18. package/types/sap.m.d.ts +7689 -5451
  19. package/types/sap.makit.d.ts +17 -5
  20. package/types/sap.me.d.ts +122 -63
  21. package/types/sap.ndc.d.ts +99 -39
  22. package/types/sap.ovp.d.ts +1 -2
  23. package/types/sap.rules.ui.d.ts +43 -19
  24. package/types/sap.sac.df.d.ts +31 -579
  25. package/types/sap.suite.ui.commons.d.ts +2060 -1282
  26. package/types/sap.suite.ui.generic.template.d.ts +29 -40
  27. package/types/sap.suite.ui.microchart.d.ts +188 -136
  28. package/types/sap.tnt.d.ts +134 -54
  29. package/types/sap.ui.codeeditor.d.ts +51 -29
  30. package/types/sap.ui.commons.d.ts +1017 -599
  31. package/types/sap.ui.comp.d.ts +2755 -1772
  32. package/types/sap.ui.core.d.ts +5398 -3172
  33. package/types/sap.ui.dt.d.ts +1 -1
  34. package/types/sap.ui.export.d.ts +32 -29
  35. package/types/sap.ui.fl.d.ts +123 -82
  36. package/types/sap.ui.generic.app.d.ts +41 -40
  37. package/types/sap.ui.generic.template.d.ts +1 -1
  38. package/types/sap.ui.integration.d.ts +344 -163
  39. package/types/sap.ui.layout.d.ts +312 -355
  40. package/types/sap.ui.mdc.d.ts +21839 -8
  41. package/types/sap.ui.richtexteditor.d.ts +61 -49
  42. package/types/sap.ui.rta.d.ts +1 -2
  43. package/types/sap.ui.suite.d.ts +9 -9
  44. package/types/sap.ui.support.d.ts +5 -7
  45. package/types/sap.ui.table.d.ts +713 -452
  46. package/types/sap.ui.testrecorder.d.ts +1 -1
  47. package/types/sap.ui.unified.d.ts +1077 -727
  48. package/types/sap.ui.ux3.d.ts +1038 -549
  49. package/types/sap.ui.vbm.d.ts +1262 -710
  50. package/types/sap.ui.vk.d.ts +3020 -1751
  51. package/types/sap.ui.vtm.d.ts +704 -457
  52. package/types/sap.ui.webc.common.d.ts +1 -1
  53. package/types/sap.ui.webc.fiori.d.ts +532 -301
  54. package/types/sap.ui.webc.main.d.ts +1222 -720
  55. package/types/sap.uiext.inbox.d.ts +47 -24
  56. package/types/sap.ushell.d.ts +360 -174
  57. package/types/sap.ushell_abap.d.ts +1 -1
  58. package/types/sap.uxap.d.ts +287 -199
  59. package/types/sap.viz.d.ts +678 -391
  60. package/types/sap.webanalytics.core.d.ts +1 -1
  61. package/types/sap.zen.commons.d.ts +5 -5
  62. package/types/sap.zen.crosstab.d.ts +1 -1
  63. package/types/sap.zen.dsh.d.ts +147 -81
  64. package/types/sap.sac.grid.d.ts +0 -760
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.113.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.113.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -161,6 +161,10 @@ declare namespace sap {
161
161
  }
162
162
  }
163
163
 
164
+ interface $ExportBaseBeforeExportEventParameters {}
165
+
166
+ interface $SpreadsheetBeforeSaveEventParameters {}
167
+
164
168
  /**
165
169
  * @SINCE 1.96
166
170
  *
@@ -353,7 +357,7 @@ declare namespace sap {
353
357
  * thread of the browser. The status of the process is visually presented to the user in a progress dialog
354
358
  * that can be suppressed. The user can cancel the process with the Cancel button of the dialog.
355
359
  *
356
- * This class provides a low level API for spreadsheet export. The {@link sap.ui.comp.smarttable.SmartTable}
360
+ * This class provides a low level API for spreadsheet export. The {@link sap.ui.comp.smarttable.SmartTable }
357
361
  * control implements it internally and provides the export functionality out of the box. For special cases,
358
362
  * please refer to details below.
359
363
  *
@@ -370,23 +374,23 @@ declare namespace sap {
370
374
  * `label` (string) - Column header text
371
375
  * - `property` (string) - Field name or Array of field names in the data source feed
372
376
  * - `type` (string) - Optional data type of the field. See {@link sap.ui.export.EdmType} for the list
373
- * of supported types. If this property is omitted, the property is processed as a string field.
377
+ * of supported types. If this property is omitted, the property is processed as a string field.
374
378
  * - `width` (number) - Optional width of the column in characters. There is no 1:1 correspondence between
375
- * character widths in the exported spreadsheet and CSS units.The width of one character is approximately
376
- * 0.5em in CSS units, depending on the fonts that are used in the table and in the resulting spreadsheet.
377
- * The default value is 10 characters.
379
+ * character widths in the exported spreadsheet and CSS units.The width of one character is approximately
380
+ * 0.5em in CSS units, depending on the fonts that are used in the table and in the resulting spreadsheet.
381
+ * The default value is 10 characters.
378
382
  * - `textAlign` (string) - Horizontal alignment of cell contents. The following values of the CSS `text-align`
379
- * property are accepted: `[left, right, center, begin, end]`. If not specified, the columns are horizontally
380
- * aligned based on the property type.
383
+ * property are accepted: `[left, right, center, begin, end]`. If not specified, the columns are horizontally
384
+ * aligned based on the property type.
381
385
  * - `scale` (number) - Number of digits after decimal point for numeric values
382
386
  * - `delimiter` (boolean) - Set to `true` to display thousands separators in numeric values. The default
383
- * value is `false`.
387
+ * value is `false`.
384
388
  * - `unit` (string) - Text to display as the unit of measurement or currency next to the numeric value.
385
- * It is treated as a string and has no influence on the value itself. For example, a value of 150 with
386
- * the unit "%" is still 150 and not 1.5, as a user may expect.
389
+ * It is treated as a string and has no influence on the value itself. For example, a value of 150 with
390
+ * the unit "%" is still 150 and not 1.5, as a user may expect.
387
391
  * - `unitProperty` (string) - Name of the data source field that contains the unit/currency text
388
392
  * - `displayUnit` (boolean) - The property applies to currency values only and defines if the currency
389
- * is shown in the column. The default value is `true`.
393
+ * is shown in the column. The default value is `true`.
390
394
  * - `trueValue` (string) - Textual representation of a boolean type that has the value `true`
391
395
  * - `falseValue` (string) - Textual representation of a boolean type that has the value `false`
392
396
  * - `template` (string) - Formatting template that supports indexed placeholders within curly brackets
@@ -394,45 +398,45 @@ declare namespace sap {
394
398
  * - `inputFormat` (string) - Formatting template for string formatted dates
395
399
  * - `utc` (boolean) - Defines whether the `DateTime` is displayed as UTC or local time
396
400
  * - `valueMap` (string) - Mapping object or Map containing the values that should be mapped to a particular
397
- * key
401
+ * key
398
402
  * - `wrap` (boolean) - Indicates if wrapping is enabled for this particular column
399
403
  * - `workbook.context` - Context object that will be applied to the generated file. It may contain the
400
- * following fields:
404
+ * following fields:
401
405
  * - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
402
406
  * - `version` (string) - Application version that creates the XLSX document (default: "${version}")
403
407
  * - `title` (string) - Title of the XLSX document (NOT the filename)
404
408
  * - `modifiedBy` (string) - User context for the XLSX document
405
409
  * - `sheetName` (string) - The label of the data sheet
406
410
  * - `metaSheetName` (string) - The label of the metadata sheet. The sheet will not be shown unless metadata
407
- * entries are provided
411
+ * entries are provided
408
412
  * - `metainfo` (Array) - An Array of metadata groups. Each group has a name property and an items Array
409
- * which contains key/value pairs
413
+ * which contains key/value pairs
410
414
  * - `workbook.hierarchyLevel` - Name of the property that contains the hierarchy level information of
411
- * each line item
415
+ * each line item
412
416
  * - `dataSource` - Source of spreadsheet data. It can be a JSON array with row data, an URL or an OData
413
- * properties object with the following fields:
417
+ * properties object with the following fields:
414
418
  * `type` (string) - Type of the data source. Currently, only OData is supported and the value have to
415
419
  * be set to `"odata"`.
416
420
  * - `dataUrl` (string) - URL to table data on the server, including all select, filter, and search query
417
- * parameters
421
+ * parameters
418
422
  * - `serviceUrl` (string) - URL to the OData service. The parameter is required for OData batch requests.
419
423
  *
420
424
  * - `count` (number) - Count of available records on the server
421
425
  * - `useBatch` (boolean) - Set to `true` if OData batch requests are used to fetch the spreadsheet data.
422
- * In this case, `serviceUrl` and `headers` have to be specified, too.
426
+ * In this case, `serviceUrl` and `headers` have to be specified, too.
423
427
  * - `headers` (object) - Map of HTTP request header properties. They should correspond to the HTTP request
424
- * headers that are used to obtain table data for display in the browser.
428
+ * headers that are used to obtain table data for display in the browser.
425
429
  * - `sizeLimit` (number) - Maximal allowed number of records that can be obtained from the service in
426
- * a single request
430
+ * a single request
427
431
  * - `count` (number) - The maximal number of records to export. If not specified, all data from the data
428
- * source is fetched.
432
+ * source is fetched.
429
433
  * - `worker` (boolean) - Run export process in a worker thread. Set to `false` to disable worker and
430
- * run export in a main thread. This is needed, for example, if a mock server is used to provide spreadsheet
431
- * data.
434
+ * run export in a main thread. This is needed, for example, if a mock server is used to provide spreadsheet
435
+ * data.
432
436
  * **Note:** In case of a strict content security policy, it is not always possible to create an export
433
437
  * worker. In this case, export runs in a main thread disregarding the `worker` value.
434
438
  * - `fileName` (string) - Optional file name for the exported file. If not specified, the spreadsheet
435
- * is exported as `export.xlsx`.
439
+ * is exported as `export.xlsx`.
436
440
  * - `showProgress` (boolean) - Set to `false` to suppress the progress dialog
437
441
  *
438
442
  * Usage: To start export, create a new `sap.ui.export.Spreadsheet` object and call the `build` method.
@@ -518,8 +522,7 @@ declare namespace sap {
518
522
  * ```
519
523
  *
520
524
  *
521
- * Restrictions: For a complete list of restrictions, see: {@link topic:2c641481649f44de9c1c22c9c3c49d13
522
- * Spreadsheet Export Restrictions}
525
+ * Restrictions: For a complete list of restrictions, see: {@link https://ui5.sap.com/#/topic/2c641481649f44de9c1c22c9c3c49d13 Spreadsheet Export Restrictions}
523
526
  *
524
527
  * You can export only the primitive cell data types that are listed in {@link sap.ui.export.EdmType}. Icons,
525
528
  * images, check boxes, and complex controls in UI5 table cells are not supported.
@@ -550,7 +553,7 @@ declare namespace sap {
550
553
  * The properties sheetName and metaSheetName on the workbook.context object are limited to 31 characters
551
554
  * each. If their value exceeds this maximum length, the value will be truncated.
552
555
  * See:
553
- * {@link topic:2691788a08fc43f7bf269ea7c6336caf Spreadsheet}
556
+ * {@link https://ui5.sap.com/#/topic/2691788a08fc43f7bf269ea7c6336caf Spreadsheet}
554
557
  */
555
558
  constructor(
556
559
  /**
@@ -1,11 +1,11 @@
1
- // For Library Version: 1.113.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
5
5
  /**
6
6
  * This is the library for SAPUI5 flexibility. It includes the handling of changes made on applications,
7
7
  * such as descriptor changes, app variants, UI changes, control variants (a.k.a. views), and personalization,
8
- * as well as APIs for consumers. In addition, it provides the {@link sap.ui.fl.variants.VariantManagement}
8
+ * as well as APIs for consumers. In addition, it provides the {@link sap.ui.fl.variants.VariantManagement }
9
9
  * control, which enables applications to use control variants (views).
10
10
  */
11
11
  namespace fl {
@@ -136,7 +136,9 @@ declare namespace sap {
136
136
  * This event is fired when the Save View dialog or the Save As dialog is closed with the
137
137
  * save button.
138
138
  */
139
- save?: (oEvent: sap.ui.base.Event) => void;
139
+ save?: (
140
+ oEvent: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSaveEventParameters>
141
+ ) => void;
140
142
 
141
143
  /**
142
144
  * This event is fired when users presses the cancel button inside Save As dialog.
@@ -146,12 +148,89 @@ declare namespace sap {
146
148
  /**
147
149
  * This event is fired when users apply changes to variants in the Manage Views dialog.
148
150
  */
149
- manage?: (oEvent: sap.ui.base.Event) => void;
151
+ manage?: (
152
+ oEvent: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementManageEventParameters>
153
+ ) => void;
150
154
 
151
155
  /**
152
156
  * This event is fired when a new variant is selected.
153
157
  */
154
- select?: (oEvent: sap.ui.base.Event) => void;
158
+ select?: (
159
+ oEvent: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSelectEventParameters>
160
+ ) => void;
161
+ }
162
+
163
+ interface $VariantManagementCancelEventParameters {}
164
+
165
+ interface $VariantManagementInitializedEventParameters {}
166
+
167
+ interface $VariantManagementManageEventParameters {
168
+ /**
169
+ * List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
170
+ * of the variant
171
+ */
172
+ renamed?: object[];
173
+
174
+ /**
175
+ * List of deleted variant keys
176
+ */
177
+ deleted?: string[];
178
+
179
+ /**
180
+ * List of variant keys and the associated Execute on Selection indicator
181
+ */
182
+ exe?: object[];
183
+
184
+ /**
185
+ * The default variant key
186
+ */
187
+ def?: string;
188
+ }
189
+
190
+ interface $VariantManagementSaveEventParameters {
191
+ /**
192
+ * Variant title
193
+ */
194
+ name?: string;
195
+
196
+ /**
197
+ * Indicates if an existing variant is overwritten or if a new variant is created.
198
+ */
199
+ overwrite?: boolean;
200
+
201
+ /**
202
+ * Variant key
203
+ */
204
+ key?: string;
205
+
206
+ /**
207
+ * Apply Automatically indicator
208
+ */
209
+ execute?: boolean;
210
+
211
+ /**
212
+ * Indicates the check box state for 'Public'.
213
+ */
214
+ public?: boolean;
215
+
216
+ /**
217
+ * The default variant indicator
218
+ */
219
+ def?: boolean;
220
+
221
+ /**
222
+ * Indicates the check box state for 'Create Tile'.
223
+ * Note:
224
+ * This event parameter is used only internally.
225
+ */
226
+ tile?: boolean;
227
+ }
228
+
229
+ interface $VariantManagementSelectEventParameters {
230
+ /**
231
+ * Variant key
232
+ */
233
+ key?: string;
155
234
  }
156
235
 
157
236
  /**
@@ -177,7 +256,7 @@ declare namespace sap {
177
256
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
178
257
  * of the syntax of the settings object.
179
258
  * See:
180
- * {@link topic:f1430c0337534d469da3a56307ff76af Key User Adaptation: Enable Your App}
259
+ * {@link https://ui5.sap.com/#/topic/f1430c0337534d469da3a56307ff76af Key User Adaptation: Enable Your App}
181
260
  */
182
261
  constructor(
183
262
  /**
@@ -192,7 +271,7 @@ declare namespace sap {
192
271
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
193
272
  * of the syntax of the settings object.
194
273
  * See:
195
- * {@link topic:f1430c0337534d469da3a56307ff76af Key User Adaptation: Enable Your App}
274
+ * {@link https://ui5.sap.com/#/topic/f1430c0337534d469da3a56307ff76af Key User Adaptation: Enable Your App}
196
275
  */
197
276
  constructor(
198
277
  /**
@@ -358,7 +437,9 @@ declare namespace sap {
358
437
  /**
359
438
  * The function to be called when the event occurs
360
439
  */
361
- fnFunction: (p1: sap.ui.base.Event) => void,
440
+ fnFunction: (
441
+ p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementManageEventParameters>
442
+ ) => void,
362
443
  /**
363
444
  * Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
364
445
  * itself
@@ -379,7 +460,9 @@ declare namespace sap {
379
460
  /**
380
461
  * The function to be called when the event occurs
381
462
  */
382
- fnFunction: (p1: sap.ui.base.Event) => void,
463
+ fnFunction: (
464
+ p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementManageEventParameters>
465
+ ) => void,
383
466
  /**
384
467
  * Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
385
468
  * itself
@@ -406,7 +489,9 @@ declare namespace sap {
406
489
  /**
407
490
  * The function to be called when the event occurs
408
491
  */
409
- fnFunction: (p1: sap.ui.base.Event) => void,
492
+ fnFunction: (
493
+ p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSaveEventParameters>
494
+ ) => void,
410
495
  /**
411
496
  * Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
412
497
  * itself
@@ -428,7 +513,9 @@ declare namespace sap {
428
513
  /**
429
514
  * The function to be called when the event occurs
430
515
  */
431
- fnFunction: (p1: sap.ui.base.Event) => void,
516
+ fnFunction: (
517
+ p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSaveEventParameters>
518
+ ) => void,
432
519
  /**
433
520
  * Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
434
521
  * itself
@@ -454,7 +541,9 @@ declare namespace sap {
454
541
  /**
455
542
  * The function to be called when the event occurs
456
543
  */
457
- fnFunction: (p1: sap.ui.base.Event) => void,
544
+ fnFunction: (
545
+ p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSelectEventParameters>
546
+ ) => void,
458
547
  /**
459
548
  * Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
460
549
  * itself
@@ -475,7 +564,9 @@ declare namespace sap {
475
564
  /**
476
565
  * The function to be called when the event occurs
477
566
  */
478
- fnFunction: (p1: sap.ui.base.Event) => void,
567
+ fnFunction: (
568
+ p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSelectEventParameters>
569
+ ) => void,
479
570
  /**
480
571
  * Context object to call the event handler with. Defaults to this `sap.ui.fl.variants.VariantManagement`
481
572
  * itself
@@ -527,7 +618,9 @@ declare namespace sap {
527
618
  /**
528
619
  * The function to be called, when the event occurs
529
620
  */
530
- fnFunction: (p1: sap.ui.base.Event) => void,
621
+ fnFunction: (
622
+ p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementManageEventParameters>
623
+ ) => void,
531
624
  /**
532
625
  * Context object on which the given function had to be called
533
626
  */
@@ -544,7 +637,9 @@ declare namespace sap {
544
637
  /**
545
638
  * The function to be called, when the event occurs
546
639
  */
547
- fnFunction: (p1: sap.ui.base.Event) => void,
640
+ fnFunction: (
641
+ p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSaveEventParameters>
642
+ ) => void,
548
643
  /**
549
644
  * Context object on which the given function had to be called
550
645
  */
@@ -561,7 +656,9 @@ declare namespace sap {
561
656
  /**
562
657
  * The function to be called, when the event occurs
563
658
  */
564
- fnFunction: (p1: sap.ui.base.Event) => void,
659
+ fnFunction: (
660
+ p1: sap.ui.base.Event<sap.ui.fl.variants.$VariantManagementSelectEventParameters>
661
+ ) => void,
565
662
  /**
566
663
  * Context object on which the given function had to be called
567
664
  */
@@ -604,25 +701,7 @@ declare namespace sap {
604
701
  /**
605
702
  * Parameters to pass along with the event
606
703
  */
607
- mParameters?: {
608
- /**
609
- * List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
610
- * of the variant
611
- */
612
- renamed?: object[];
613
- /**
614
- * List of deleted variant keys
615
- */
616
- deleted?: string[];
617
- /**
618
- * List of variant keys and the associated Execute on Selection indicator
619
- */
620
- exe?: object[];
621
- /**
622
- * The default variant key
623
- */
624
- def?: string;
625
- }
704
+ mParameters?: sap.ui.fl.variants.$VariantManagementManageEventParameters
626
705
  ): this;
627
706
  /**
628
707
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -635,38 +714,7 @@ declare namespace sap {
635
714
  /**
636
715
  * Parameters to pass along with the event
637
716
  */
638
- mParameters?: {
639
- /**
640
- * Variant title
641
- */
642
- name?: string;
643
- /**
644
- * Indicates if an existing variant is overwritten or if a new variant is created.
645
- */
646
- overwrite?: boolean;
647
- /**
648
- * Variant key
649
- */
650
- key?: string;
651
- /**
652
- * Apply Automatically indicator
653
- */
654
- execute?: boolean;
655
- /**
656
- * Indicates the check box state for 'Public'.
657
- */
658
- public?: boolean;
659
- /**
660
- * The default variant indicator
661
- */
662
- def?: boolean;
663
- /**
664
- * Indicates the check box state for 'Create Tile'.
665
- * Note:
666
- * This event parameter is used only internally.
667
- */
668
- tile?: boolean;
669
- }
717
+ mParameters?: sap.ui.fl.variants.$VariantManagementSaveEventParameters
670
718
  ): this;
671
719
  /**
672
720
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -679,12 +727,7 @@ declare namespace sap {
679
727
  /**
680
728
  * Parameters to pass along with the event
681
729
  */
682
- mParameters?: {
683
- /**
684
- * Variant key
685
- */
686
- key?: string;
687
- }
730
+ mParameters?: sap.ui.fl.variants.$VariantManagementSelectEventParameters
688
731
  ): this;
689
732
  /**
690
733
  * Gets the currently selected variant key.
@@ -725,8 +768,7 @@ declare namespace sap {
725
768
  */
726
769
  getExecuteOnSelectionForStandardDefault(): boolean;
727
770
  /**
728
- * Returns array of IDs of the elements which are the current targets of the association {@link #getFor
729
- * for}.
771
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getFor for}.
730
772
  */
731
773
  getFor(): sap.ui.core.ID[];
732
774
  /**
@@ -1127,7 +1169,6 @@ declare namespace sap {
1127
1169
  */
1128
1170
  isKeyUser(): Promise<boolean>;
1129
1171
  }
1130
- const FeaturesAPI: FeaturesAPI;
1131
1172
  }
1132
1173
  }
1133
1174
 
@@ -1150,8 +1191,8 @@ declare namespace sap {
1150
1191
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1151
1192
  * of the syntax of the settings object.
1152
1193
  *
1153
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Dialog#constructor
1154
- * sap.m.Dialog} can be used.
1194
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Dialog#constructor sap.m.Dialog }
1195
+ * can be used.
1155
1196
  */
1156
1197
  constructor(
1157
1198
  /**
@@ -1166,8 +1207,8 @@ declare namespace sap {
1166
1207
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1167
1208
  * of the syntax of the settings object.
1168
1209
  *
1169
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Dialog#constructor
1170
- * sap.m.Dialog} can be used.
1210
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Dialog#constructor sap.m.Dialog }
1211
+ * can be used.
1171
1212
  */
1172
1213
  constructor(
1173
1214
  /**
@@ -1299,6 +1340,8 @@ declare namespace sap {
1299
1340
 
1300
1341
  "sap/ui/fl/apply/_internal/flexState/UI2Personalization/UI2PersonalizationState": undefined;
1301
1342
 
1343
+ "sap/ui/fl/apply/_internal/preprocessors/ComponentLifecycleHooks": undefined;
1344
+
1302
1345
  "sap/ui/fl/apply/_internal/preprocessors/ControllerExtension": undefined;
1303
1346
 
1304
1347
  "sap/ui/fl/apply/_internal/preprocessors/EventHistory": undefined;
@@ -1327,8 +1370,6 @@ declare namespace sap {
1327
1370
 
1328
1371
  "sap/ui/fl/FlexControllerFactory": undefined;
1329
1372
 
1330
- "sap/ui/fl/initial/_internal/changeHandlers/ChangeRegistryItem": undefined;
1331
-
1332
1373
  "sap/ui/fl/initial/_internal/connectors/BackendConnector": undefined;
1333
1374
 
1334
1375
  "sap/ui/fl/initial/_internal/connectors/KeyUserConnector": undefined;