@sapui5/ts-types 1.122.2 → 1.123.1

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 (66) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +5 -5
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +404 -3
  5. package/types/sap.chart.d.ts +58 -3
  6. package/types/sap.collaboration.d.ts +52 -3
  7. package/types/sap.esh.search.ui.d.ts +2152 -2
  8. package/types/sap.f.d.ts +432 -46
  9. package/types/sap.fe.core.d.ts +20 -15
  10. package/types/sap.fe.macros.d.ts +1048 -21
  11. package/types/sap.fe.navigation.d.ts +1 -1
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  14. package/types/sap.fe.templates.d.ts +8 -6
  15. package/types/sap.fe.test.d.ts +288 -7
  16. package/types/sap.fe.tools.d.ts +1 -1
  17. package/types/sap.feedback.ui.d.ts +1 -1
  18. package/types/sap.gantt.d.ts +1067 -15
  19. package/types/sap.insights.d.ts +4 -1
  20. package/types/{mobile-1.122.0-d.ts → sap.m.d.ts} +3962 -124
  21. package/types/sap.makit.d.ts +115 -2
  22. package/types/sap.me.d.ts +84 -2
  23. package/types/sap.ndc.d.ts +22 -1
  24. package/types/sap.ovp.d.ts +1 -1
  25. package/types/sap.rules.ui.d.ts +44 -8
  26. package/types/sap.sac.df.d.ts +111 -60
  27. package/types/sap.suite.ui.commons.d.ts +1148 -2174
  28. package/types/sap.suite.ui.generic.template.d.ts +10 -1
  29. package/types/sap.suite.ui.microchart.d.ts +190 -2
  30. package/types/sap.tnt.d.ts +46 -2
  31. package/types/sap.ui.codeeditor.d.ts +16 -1
  32. package/types/{commons-1.122.0-d.ts → sap.ui.commons.d.ts} +792 -30
  33. package/types/sap.ui.comp.d.ts +964 -86
  34. package/types/{core-1.122.0-d.ts → sap.ui.core.d.ts} +2194 -1540
  35. package/types/sap.ui.dt.d.ts +3 -0
  36. package/types/sap.ui.export.d.ts +22 -4
  37. package/types/sap.ui.fl.d.ts +40 -1
  38. package/types/sap.ui.generic.app.d.ts +217 -203
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +147 -5
  41. package/types/sap.ui.layout.d.ts +171 -8
  42. package/types/sap.ui.mdc.d.ts +554 -33
  43. package/types/sap.ui.richtexteditor.d.ts +28 -2
  44. package/types/sap.ui.rta.d.ts +1 -1
  45. package/types/sap.ui.suite.d.ts +27 -2
  46. package/types/sap.ui.support.d.ts +1 -1
  47. package/types/sap.ui.table.d.ts +278 -57
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +481 -9
  50. package/types/{ux3-1.122.0-d.ts → sap.ui.ux3.d.ts} +527 -5
  51. package/types/sap.ui.vbm.d.ts +544 -2
  52. package/types/sap.ui.vk.d.ts +1580 -39
  53. package/types/sap.ui.vtm.d.ts +373 -2
  54. package/types/sap.ui.webc.common.d.ts +7 -2
  55. package/types/sap.ui.webc.fiori.d.ts +351 -2
  56. package/types/sap.ui.webc.main.d.ts +1035 -2
  57. package/types/sap.uiext.inbox.d.ts +124 -2
  58. package/types/sap.ushell.d.ts +1001 -322
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +123 -6
  61. package/types/sap.viz.d.ts +2619 -5
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +35 -10
  64. package/types/sap.zen.crosstab.d.ts +22 -7
  65. package/types/sap.zen.dsh.d.ts +64 -8
  66. package/types/dt-1.122.0-d.ts +0 -3
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.122.0
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -33,6 +33,11 @@ declare namespace sap {
33
33
  __implements__sap_ui_ux3_DataSetView: boolean;
34
34
  }
35
35
 
36
+ /**
37
+ * Describes the settings that can be provided to the ActionBar constructor.
38
+ *
39
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Toolbar` or `sap.m.OverflowToolbar` control.
40
+ */
36
41
  interface $ActionBarSettings extends sap.ui.core.$ControlSettings {
37
42
  /**
38
43
  * Keeps track of the actionBars Follow/Unfollow button’s state. Its value is one of - FollowActionState.Default
@@ -159,6 +164,11 @@ declare namespace sap {
159
164
  feedSubmit?: (oEvent: ActionBar$FeedSubmitEvent) => void;
160
165
  }
161
166
 
167
+ /**
168
+ * Describes the settings that can be provided to the Collection constructor.
169
+ *
170
+ * @deprecated (since 1.38)
171
+ */
162
172
  interface $CollectionSettings extends sap.ui.core.$ElementSettings {
163
173
  /**
164
174
  * Name for the collection
@@ -206,6 +216,11 @@ declare namespace sap {
206
216
  propertyChanged?: (oEvent: sap.ui.base.Event) => void;
207
217
  }
208
218
 
219
+ /**
220
+ * Describes the settings that can be provided to the CollectionInspector constructor.
221
+ *
222
+ * @deprecated (since 1.38)
223
+ */
209
224
  interface $CollectionInspectorSettings
210
225
  extends sap.ui.core.$ControlSettings {
211
226
  /**
@@ -263,6 +278,11 @@ declare namespace sap {
263
278
  editCollection?: (oEvent: sap.ui.base.Event) => void;
264
279
  }
265
280
 
281
+ /**
282
+ * Describes the settings that can be provided to the DataSet constructor.
283
+ *
284
+ * @deprecated (since 1.38) - Use a container by choice from the {@link sap.m} library, instead.
285
+ */
266
286
  interface $DataSetSettings extends sap.ui.core.$ControlSettings {
267
287
  /**
268
288
  * show Toolbar
@@ -339,6 +359,11 @@ declare namespace sap {
339
359
  search?: (oEvent: DataSet$SearchEvent) => void;
340
360
  }
341
361
 
362
+ /**
363
+ * Describes the settings that can be provided to the DataSetItem constructor.
364
+ *
365
+ * @deprecated (since 1.38)
366
+ */
342
367
  interface $DataSetItemSettings extends sap.ui.core.$ElementSettings {
343
368
  /**
344
369
  * image
@@ -372,6 +397,11 @@ declare namespace sap {
372
397
  selected?: (oEvent: DataSetItem$SelectedEvent) => void;
373
398
  }
374
399
 
400
+ /**
401
+ * Describes the settings that can be provided to the DataSetSimpleView constructor.
402
+ *
403
+ * @deprecated (since 1.38) - Use a layout by choice from the {@link sap.m} library, instead.
404
+ */
375
405
  interface $DataSetSimpleViewSettings
376
406
  extends sap.ui.core.$ControlSettings {
377
407
  /**
@@ -483,6 +513,12 @@ declare namespace sap {
483
513
  template?: sap.ui.core.Control;
484
514
  }
485
515
 
516
+ /**
517
+ * Describes the settings that can be provided to the Exact constructor.
518
+ *
519
+ * @deprecated (since 1.38)
520
+ * @experimental (since 1.2) - API is not yet finished and might change completely
521
+ */
486
522
  interface $ExactSettings extends sap.ui.core.$ControlSettings {
487
523
  /**
488
524
  * A title text which is displayed above the result section
@@ -514,6 +550,12 @@ declare namespace sap {
514
550
  refineSearch?: (oEvent: Exact$RefineSearchEvent) => void;
515
551
  }
516
552
 
553
+ /**
554
+ * Describes the settings that can be provided to the ExactArea constructor.
555
+ *
556
+ * @deprecated (since 1.38)
557
+ * @experimental (since 1.6) - API is not yet finished and might change completely
558
+ */
517
559
  interface $ExactAreaSettings extends sap.ui.core.$ControlSettings {
518
560
  /**
519
561
  * Specifies whether the tool bar shall be visible
@@ -542,6 +584,11 @@ declare namespace sap {
542
584
  | `{${string}}`;
543
585
  }
544
586
 
587
+ /**
588
+ * Describes the settings that can be provided to the ExactAttribute constructor.
589
+ *
590
+ * @deprecated (since 1.38)
591
+ */
545
592
  interface $ExactAttributeSettings extends sap.ui.core.$ElementSettings {
546
593
  /**
547
594
  * The attribute name
@@ -636,6 +683,11 @@ declare namespace sap {
636
683
  ) => void;
637
684
  }
638
685
 
686
+ /**
687
+ * Describes the settings that can be provided to the ExactBrowser constructor.
688
+ *
689
+ * @deprecated (since 1.38)
690
+ */
639
691
  interface $ExactBrowserSettings extends sap.ui.core.$ControlSettings {
640
692
  /**
641
693
  * Title text in the list area of the Exact Browser. The title is not shown when the property showTopList
@@ -754,6 +806,11 @@ declare namespace sap {
754
806
  save?: (oEvent: sap.ui.base.Event) => void;
755
807
  }
756
808
 
809
+ /**
810
+ * Describes the settings that can be provided to the ExactList constructor.
811
+ *
812
+ * @deprecated (since 1.38)
813
+ */
757
814
  interface $ExactListSettings extends sap.ui.core.$ControlSettings {
758
815
  /**
759
816
  * Defines whether the close icon shall be displayed in the header.
@@ -797,6 +854,11 @@ declare namespace sap {
797
854
  attributeSelected?: (oEvent: ExactList$AttributeSelectedEvent) => void;
798
855
  }
799
856
 
857
+ /**
858
+ * Describes the settings that can be provided to the FacetFilter constructor.
859
+ *
860
+ * @deprecated (since 1.38) - replaced by {@link sap.m.FacetFilter}
861
+ */
800
862
  interface $FacetFilterSettings extends sap.ui.core.$ControlSettings {
801
863
  /**
802
864
  * If the value is "Auto" - the Facet Filter takes the whole available height. If "Fixed" , then the default
@@ -817,6 +879,11 @@ declare namespace sap {
817
879
  | `{${string}}`;
818
880
  }
819
881
 
882
+ /**
883
+ * Describes the settings that can be provided to the FacetFilterList constructor.
884
+ *
885
+ * @deprecated (since 1.38) - replaced by {@link sap.m.FacetFilter}
886
+ */
820
887
  interface $FacetFilterListSettings extends sap.ui.core.$ControlSettings {
821
888
  /**
822
889
  * The title of this list.
@@ -873,6 +940,14 @@ declare namespace sap {
873
940
  select?: (oEvent: FacetFilterList$SelectEvent) => void;
874
941
  }
875
942
 
943
+ /**
944
+ * Describes the settings that can be provided to the Feed constructor.
945
+ *
946
+ * @deprecated (since 1.38) - Instead, use **any** `sap.ui.layout` container control.
947
+ * @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
948
+ * are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
949
+ * Feed model topic is still open.
950
+ */
876
951
  interface $FeedSettings extends sap.ui.core.$ControlSettings {
877
952
  /**
878
953
  * The path to the thumbnail image used for the feeder
@@ -953,6 +1028,14 @@ declare namespace sap {
953
1028
  toggleLive?: (oEvent: Feed$ToggleLiveEvent) => void;
954
1029
  }
955
1030
 
1031
+ /**
1032
+ * Describes the settings that can be provided to the FeedChunk constructor.
1033
+ *
1034
+ * @deprecated (since 1.38) - Instead, use the `sap.m.FeedListItem` control.
1035
+ * @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
1036
+ * are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
1037
+ * Feed model topic is still open.
1038
+ */
956
1039
  interface $FeedChunkSettings extends sap.ui.core.$ControlSettings {
957
1040
  /**
958
1041
  * URL to the thumbnail image.
@@ -1146,6 +1229,14 @@ declare namespace sap {
1146
1229
  ) => void;
1147
1230
  }
1148
1231
 
1232
+ /**
1233
+ * Describes the settings that can be provided to the Feeder constructor.
1234
+ *
1235
+ * @deprecated (since 1.38) - Instead, use the `sap.m.FeedInput` control.
1236
+ * @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
1237
+ * are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
1238
+ * Feed model topic is still open.
1239
+ */
1149
1240
  interface $FeederSettings extends sap.ui.core.$ControlSettings {
1150
1241
  /**
1151
1242
  * URL to the thumb nail image This property is optional if the feeder is a sub-control of a feed or a feedChunk
@@ -1183,6 +1274,12 @@ declare namespace sap {
1183
1274
  submit?: (oEvent: Feeder$SubmitEvent) => void;
1184
1275
  }
1185
1276
 
1277
+ /**
1278
+ * Describes the settings that can be provided to the NavigationBar constructor.
1279
+ *
1280
+ * @deprecated (since 1.38) - Instead, use the `sap.m.IconTabBar`, `sap.m.TabContainer` or `sap.uxap.ObjectPageLayout`
1281
+ * control.
1282
+ */
1186
1283
  interface $NavigationBarSettings extends sap.ui.core.$ControlSettings {
1187
1284
  /**
1188
1285
  * Defines whether the navigation bar shall have top-level appearance
@@ -1230,6 +1327,12 @@ declare namespace sap {
1230
1327
  select?: (oEvent: NavigationBar$SelectEvent) => void;
1231
1328
  }
1232
1329
 
1330
+ /**
1331
+ * Describes the settings that can be provided to the NavigationItem constructor.
1332
+ *
1333
+ * @deprecated (since 1.38) - Instead, use the `sap.m.IconTabBar`, `sap.m.TabContainer` or `sap.uxap.ObjectPageLayout`
1334
+ * control.
1335
+ */
1233
1336
  interface $NavigationItemSettings extends sap.ui.core.$ItemSettings {
1234
1337
  /**
1235
1338
  * Whether the NavigationItem is currently visible. When making NavigationItems invisible at runtime it
@@ -1266,6 +1369,11 @@ declare namespace sap {
1266
1369
  | `{${string}}`;
1267
1370
  }
1268
1371
 
1372
+ /**
1373
+ * Describes the settings that can be provided to the NotificationBar constructor.
1374
+ *
1375
+ * @deprecated (since 1.38) - Instead, use the `sap.m.MessagePopover` control.
1376
+ */
1269
1377
  interface $NotificationBarSettings extends sap.ui.core.$ControlSettings {
1270
1378
  /**
1271
1379
  * This property displays the bar corresponding to given status
@@ -1323,6 +1431,11 @@ declare namespace sap {
1323
1431
  resize?: (oEvent: NotificationBar$ResizeEvent) => void;
1324
1432
  }
1325
1433
 
1434
+ /**
1435
+ * Describes the settings that can be provided to the Notifier constructor.
1436
+ *
1437
+ * @deprecated (since 1.38)
1438
+ */
1326
1439
  interface $NotifierSettings extends sap.ui.core.$ElementSettings {
1327
1440
  /**
1328
1441
  * Icon of the control that should be displayed within the corresponding bar
@@ -1352,6 +1465,11 @@ declare namespace sap {
1352
1465
  messageSelected?: (oEvent: Notifier$MessageSelectedEvent) => void;
1353
1466
  }
1354
1467
 
1468
+ /**
1469
+ * Describes the settings that can be provided to the Overlay constructor.
1470
+ *
1471
+ * @deprecated (since 1.38) - the concept has been discarded.
1472
+ */
1355
1473
  interface $OverlaySettings extends sap.ui.core.$ControlSettings {
1356
1474
  /**
1357
1475
  * Defines whether the 'Open' button shall be visible.
@@ -1390,6 +1508,11 @@ declare namespace sap {
1390
1508
  open?: (oEvent: Overlay$OpenEvent) => void;
1391
1509
  }
1392
1510
 
1511
+ /**
1512
+ * Describes the settings that can be provided to the OverlayContainer constructor.
1513
+ *
1514
+ * @deprecated (since 1.38) - the concept has been discarded.
1515
+ */
1393
1516
  interface $OverlayContainerSettings extends sap.ui.ux3.$OverlaySettings {
1394
1517
  /**
1395
1518
  * Aggregation for content
@@ -1401,6 +1524,11 @@ declare namespace sap {
1401
1524
  | `{${string}}`;
1402
1525
  }
1403
1526
 
1527
+ /**
1528
+ * Describes the settings that can be provided to the OverlayDialog constructor.
1529
+ *
1530
+ * @deprecated (since 1.38) - replaced by {@link sap.m.Dialog}
1531
+ */
1404
1532
  interface $OverlayDialogSettings extends sap.ui.ux3.$OverlaySettings {
1405
1533
  /**
1406
1534
  * Determines the width of the Overlay Dialog. If the width is set to "auto" it is always 50% of the overlay
@@ -1430,6 +1558,11 @@ declare namespace sap {
1430
1558
  | `{${string}}`;
1431
1559
  }
1432
1560
 
1561
+ /**
1562
+ * Describes the settings that can be provided to the QuickView constructor.
1563
+ *
1564
+ * @deprecated (since 1.38) - Instead, use the `sap.m.QuickView` control.
1565
+ */
1433
1566
  interface $QuickViewSettings extends sap.ui.commons.$CalloutBaseSettings {
1434
1567
  /**
1435
1568
  * Thing type (mandatory) like Account, Material, Employee etc. is displayed in a header at the top part
@@ -1582,6 +1715,11 @@ declare namespace sap {
1582
1715
  navigate?: (oEvent: QuickView$NavigateEvent) => void;
1583
1716
  }
1584
1717
 
1718
+ /**
1719
+ * Describes the settings that can be provided to the Shell constructor.
1720
+ *
1721
+ * @deprecated (since 1.38) - replaced by {@link sap.m.Shell}
1722
+ */
1585
1723
  interface $ShellSettings extends sap.ui.core.$ControlSettings {
1586
1724
  /**
1587
1725
  * The application title to appear in the left part of the header, usually a company and/or product name.
@@ -1838,6 +1976,11 @@ declare namespace sap {
1838
1976
  paneClosed?: (oEvent: Shell$PaneClosedEvent) => void;
1839
1977
  }
1840
1978
 
1979
+ /**
1980
+ * Describes the settings that can be provided to the ThingAction constructor.
1981
+ *
1982
+ * @deprecated (since 1.38)
1983
+ */
1841
1984
  interface $ThingActionSettings extends sap.ui.core.$ElementSettings {
1842
1985
  /**
1843
1986
  * text of action
@@ -1858,6 +2001,11 @@ declare namespace sap {
1858
2001
  select?: (oEvent: ThingAction$SelectEvent) => void;
1859
2002
  }
1860
2003
 
2004
+ /**
2005
+ * Describes the settings that can be provided to the ThingGroup constructor.
2006
+ *
2007
+ * @deprecated (since 1.38)
2008
+ */
1861
2009
  interface $ThingGroupSettings extends sap.ui.core.$ElementSettings {
1862
2010
  /**
1863
2011
  * Title of Group
@@ -1891,6 +2039,11 @@ declare namespace sap {
1891
2039
  | `{${string}}`;
1892
2040
  }
1893
2041
 
2042
+ /**
2043
+ * Describes the settings that can be provided to the ThingInspector constructor.
2044
+ *
2045
+ * @deprecated (since 1.38) - There is not an exact replacement.
2046
+ */
1894
2047
  interface $ThingInspectorSettings extends sap.ui.ux3.$OverlaySettings {
1895
2048
  /**
1896
2049
  * First Line of the Thing Inspector Title
@@ -2044,6 +2197,11 @@ declare namespace sap {
2044
2197
  feedSubmit?: (oEvent: ThingInspector$FeedSubmitEvent) => void;
2045
2198
  }
2046
2199
 
2200
+ /**
2201
+ * Describes the settings that can be provided to the ThingViewer constructor.
2202
+ *
2203
+ * @deprecated (since 1.38) - There is not an exact replacement.
2204
+ */
2047
2205
  interface $ThingViewerSettings extends sap.ui.core.$ControlSettings {
2048
2206
  /**
2049
2207
  * Title of the Thing Inspector
@@ -2138,6 +2296,11 @@ declare namespace sap {
2138
2296
  facetSelected?: (oEvent: ThingViewer$FacetSelectedEvent) => void;
2139
2297
  }
2140
2298
 
2299
+ /**
2300
+ * Describes the settings that can be provided to the ToolPopup constructor.
2301
+ *
2302
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Popover` control.
2303
+ */
2141
2304
  interface $ToolPopupSettings extends sap.ui.core.$ControlSettings {
2142
2305
  /**
2143
2306
  * Determines the title displayed in the pop up window
@@ -2323,6 +2486,9 @@ declare namespace sap {
2323
2486
  opened?: (oEvent: sap.ui.base.Event) => void;
2324
2487
  }
2325
2488
 
2489
+ /**
2490
+ * Parameters of the ActionBar#actionSelected event.
2491
+ */
2326
2492
  interface ActionBar$ActionSelectedEventParameters {
2327
2493
  /**
2328
2494
  * Id of selected ThingAction
@@ -2341,6 +2507,9 @@ declare namespace sap {
2341
2507
  newState?: string;
2342
2508
  }
2343
2509
 
2510
+ /**
2511
+ * Parameters of the ActionBar#feedSubmit event.
2512
+ */
2344
2513
  interface ActionBar$FeedSubmitEventParameters {
2345
2514
  /**
2346
2515
  * Feed text
@@ -2348,16 +2517,34 @@ declare namespace sap {
2348
2517
  text?: string;
2349
2518
  }
2350
2519
 
2520
+ /**
2521
+ * Parameters of the Collection#propertyChanged event.
2522
+ */
2351
2523
  interface Collection$PropertyChangedEventParameters {}
2352
2524
 
2525
+ /**
2526
+ * Parameters of the Collection#selectionChanged event.
2527
+ */
2353
2528
  interface Collection$SelectionChangedEventParameters {}
2354
2529
 
2530
+ /**
2531
+ * Parameters of the CollectionInspector#collectionSelected event.
2532
+ */
2355
2533
  interface CollectionInspector$CollectionSelectedEventParameters {}
2356
2534
 
2535
+ /**
2536
+ * Parameters of the CollectionInspector#editCollection event.
2537
+ */
2357
2538
  interface CollectionInspector$EditCollectionEventParameters {}
2358
2539
 
2540
+ /**
2541
+ * Parameters of the CollectionInspector#itemSelectionChanged event.
2542
+ */
2359
2543
  interface CollectionInspector$ItemSelectionChangedEventParameters {}
2360
2544
 
2545
+ /**
2546
+ * Parameters of the DataSet#search event.
2547
+ */
2361
2548
  interface DataSet$SearchEventParameters {
2362
2549
  /**
2363
2550
  * The search query
@@ -2365,6 +2552,9 @@ declare namespace sap {
2365
2552
  query?: string;
2366
2553
  }
2367
2554
 
2555
+ /**
2556
+ * Parameters of the DataSet#selectionChanged event.
2557
+ */
2368
2558
  interface DataSet$SelectionChangedEventParameters {
2369
2559
  /**
2370
2560
  * Old lead selected index
@@ -2377,6 +2567,9 @@ declare namespace sap {
2377
2567
  newLeadSelectedIndex?: int;
2378
2568
  }
2379
2569
 
2570
+ /**
2571
+ * Parameters of the DataSetItem#selected event.
2572
+ */
2380
2573
  interface DataSetItem$SelectedEventParameters {
2381
2574
  /**
2382
2575
  * Id of the selected Datset item
@@ -2384,6 +2577,9 @@ declare namespace sap {
2384
2577
  itemId?: string;
2385
2578
  }
2386
2579
 
2580
+ /**
2581
+ * Parameters of the Exact#refineSearch event.
2582
+ */
2387
2583
  interface Exact$RefineSearchEventParameters {
2388
2584
  /**
2389
2585
  * The query string which was entered in the search field
@@ -2401,6 +2597,9 @@ declare namespace sap {
2401
2597
  allSelectedAttributes?: object;
2402
2598
  }
2403
2599
 
2600
+ /**
2601
+ * Parameters of the Exact#search event.
2602
+ */
2404
2603
  interface Exact$SearchEventParameters {
2405
2604
  /**
2406
2605
  * The query string which was entered in the search field.
@@ -2408,6 +2607,9 @@ declare namespace sap {
2408
2607
  query?: string;
2409
2608
  }
2410
2609
 
2610
+ /**
2611
+ * Parameters of the ExactAttribute#supplyAttributes event.
2612
+ */
2411
2613
  interface ExactAttribute$SupplyAttributesEventParameters {
2412
2614
  /**
2413
2615
  * The ExactAttribute
@@ -2415,6 +2617,9 @@ declare namespace sap {
2415
2617
  attribute?: sap.ui.ux3.ExactAttribute;
2416
2618
  }
2417
2619
 
2620
+ /**
2621
+ * Parameters of the ExactBrowser#attributeSelected event.
2622
+ */
2418
2623
  interface ExactBrowser$AttributeSelectedEventParameters {
2419
2624
  /**
2420
2625
  * The attribute which was selected or unselected recently
@@ -2427,8 +2632,14 @@ declare namespace sap {
2427
2632
  allAttributes?: object;
2428
2633
  }
2429
2634
 
2635
+ /**
2636
+ * Parameters of the ExactBrowser#save event.
2637
+ */
2430
2638
  interface ExactBrowser$SaveEventParameters {}
2431
2639
 
2640
+ /**
2641
+ * Parameters of the ExactList#attributeSelected event.
2642
+ */
2432
2643
  interface ExactList$AttributeSelectedEventParameters {
2433
2644
  /**
2434
2645
  * The attribute which was selected/unselected recently
@@ -2441,6 +2652,9 @@ declare namespace sap {
2441
2652
  allAttributes?: object;
2442
2653
  }
2443
2654
 
2655
+ /**
2656
+ * Parameters of the FacetFilterList#select event.
2657
+ */
2444
2658
  interface FacetFilterList$SelectEventParameters {
2445
2659
  /**
2446
2660
  * Id of the FacetFilterList taht fires the event.
@@ -2464,6 +2678,9 @@ declare namespace sap {
2464
2678
  all?: boolean;
2465
2679
  }
2466
2680
 
2681
+ /**
2682
+ * Parameters of the Feed#chunkAdded event.
2683
+ */
2467
2684
  interface Feed$ChunkAddedEventParameters {
2468
2685
  /**
2469
2686
  * New chunk
@@ -2471,6 +2688,9 @@ declare namespace sap {
2471
2688
  chunk?: sap.ui.ux3.FeedChunk;
2472
2689
  }
2473
2690
 
2691
+ /**
2692
+ * Parameters of the Feed#filterChange event.
2693
+ */
2474
2694
  interface Feed$FilterChangeEventParameters {
2475
2695
  /**
2476
2696
  * The new/changed value of the filter
@@ -2478,6 +2698,9 @@ declare namespace sap {
2478
2698
  newValue?: string;
2479
2699
  }
2480
2700
 
2701
+ /**
2702
+ * Parameters of the Feed#search event.
2703
+ */
2481
2704
  interface Feed$SearchEventParameters {
2482
2705
  /**
2483
2706
  * The search query
@@ -2485,6 +2708,9 @@ declare namespace sap {
2485
2708
  query?: string;
2486
2709
  }
2487
2710
 
2711
+ /**
2712
+ * Parameters of the Feed#toggleLive event.
2713
+ */
2488
2714
  interface Feed$ToggleLiveEventParameters {
2489
2715
  /**
2490
2716
  * Current live indicator
@@ -2492,6 +2718,9 @@ declare namespace sap {
2492
2718
  live?: boolean;
2493
2719
  }
2494
2720
 
2721
+ /**
2722
+ * Parameters of the Feed#toolsItemSelected event.
2723
+ */
2495
2724
  interface Feed$ToolsItemSelectedEventParameters {
2496
2725
  /**
2497
2726
  * The Id of the selected item
@@ -2504,6 +2733,9 @@ declare namespace sap {
2504
2733
  item?: sap.ui.unified.MenuItemBase;
2505
2734
  }
2506
2735
 
2736
+ /**
2737
+ * Parameters of the FeedChunk#actionItemSelected event.
2738
+ */
2507
2739
  interface FeedChunk$ActionItemSelectedEventParameters {
2508
2740
  /**
2509
2741
  * The Id of the selected item
@@ -2516,6 +2748,9 @@ declare namespace sap {
2516
2748
  item?: sap.ui.unified.MenuItemBase;
2517
2749
  }
2518
2750
 
2751
+ /**
2752
+ * Parameters of the FeedChunk#commentAdded event.
2753
+ */
2519
2754
  interface FeedChunk$CommentAddedEventParameters {
2520
2755
  /**
2521
2756
  * New comment chunk
@@ -2523,10 +2758,19 @@ declare namespace sap {
2523
2758
  comment?: sap.ui.ux3.FeedChunk;
2524
2759
  }
2525
2760
 
2761
+ /**
2762
+ * Parameters of the FeedChunk#deleted event.
2763
+ */
2526
2764
  interface FeedChunk$DeletedEventParameters {}
2527
2765
 
2766
+ /**
2767
+ * Parameters of the FeedChunk#inspect event.
2768
+ */
2528
2769
  interface FeedChunk$InspectEventParameters {}
2529
2770
 
2771
+ /**
2772
+ * Parameters of the FeedChunk#referenceClicked event.
2773
+ */
2530
2774
  interface FeedChunk$ReferenceClickedEventParameters {
2531
2775
  /**
2532
2776
  * Text of the @-reference
@@ -2534,8 +2778,14 @@ declare namespace sap {
2534
2778
  text?: string;
2535
2779
  }
2536
2780
 
2781
+ /**
2782
+ * Parameters of the FeedChunk#senderClicked event.
2783
+ */
2537
2784
  interface FeedChunk$SenderClickedEventParameters {}
2538
2785
 
2786
+ /**
2787
+ * Parameters of the FeedChunk#toggleFavorite event.
2788
+ */
2539
2789
  interface FeedChunk$ToggleFavoriteEventParameters {
2540
2790
  /**
2541
2791
  * Current favorite state
@@ -2543,6 +2793,9 @@ declare namespace sap {
2543
2793
  favorite?: boolean;
2544
2794
  }
2545
2795
 
2796
+ /**
2797
+ * Parameters of the FeedChunk#toggleFlagged event.
2798
+ */
2546
2799
  interface FeedChunk$ToggleFlaggedEventParameters {
2547
2800
  /**
2548
2801
  * Current flagged state
@@ -2550,6 +2803,9 @@ declare namespace sap {
2550
2803
  flagged?: boolean;
2551
2804
  }
2552
2805
 
2806
+ /**
2807
+ * Parameters of the FeedChunk#toggleShared event.
2808
+ */
2553
2809
  interface FeedChunk$ToggleSharedEventParameters {
2554
2810
  /**
2555
2811
  * Current shared state
@@ -2557,6 +2813,9 @@ declare namespace sap {
2557
2813
  shareed?: boolean;
2558
2814
  }
2559
2815
 
2816
+ /**
2817
+ * Parameters of the Feeder#submit event.
2818
+ */
2560
2819
  interface Feeder$SubmitEventParameters {
2561
2820
  /**
2562
2821
  * The text that is submitted
@@ -2564,6 +2823,9 @@ declare namespace sap {
2564
2823
  text?: string;
2565
2824
  }
2566
2825
 
2826
+ /**
2827
+ * Parameters of the NavigationBar#select event.
2828
+ */
2567
2829
  interface NavigationBar$SelectEventParameters {
2568
2830
  /**
2569
2831
  * The ID of the newly selected NavigationItem.
@@ -2576,6 +2838,9 @@ declare namespace sap {
2576
2838
  item?: sap.ui.ux3.NavigationItem;
2577
2839
  }
2578
2840
 
2841
+ /**
2842
+ * Parameters of the NotificationBar#display event.
2843
+ */
2579
2844
  interface NotificationBar$DisplayEventParameters {
2580
2845
  /**
2581
2846
  * Indicates if the bar wants to be shown or hidden
@@ -2583,6 +2848,9 @@ declare namespace sap {
2583
2848
  show?: boolean;
2584
2849
  }
2585
2850
 
2851
+ /**
2852
+ * Parameters of the NotificationBar#resize event.
2853
+ */
2586
2854
  interface NotificationBar$ResizeEventParameters {
2587
2855
  /**
2588
2856
  * The corresponding status to which the bar was resized. The corresponding heights can be taken for the
@@ -2591,6 +2859,9 @@ declare namespace sap {
2591
2859
  status?: sap.ui.ux3.NotificationBarStatus;
2592
2860
  }
2593
2861
 
2862
+ /**
2863
+ * Parameters of the Notifier#messageSelected event.
2864
+ */
2594
2865
  interface Notifier$MessageSelectedEventParameters {
2595
2866
  /**
2596
2867
  * The message that was selected
@@ -2603,6 +2874,9 @@ declare namespace sap {
2603
2874
  notifier?: sap.ui.ux3.Notifier;
2604
2875
  }
2605
2876
 
2877
+ /**
2878
+ * Parameters of the Overlay#close event.
2879
+ */
2606
2880
  interface Overlay$CloseEventParameters {
2607
2881
  /**
2608
2882
  * The ID of the Overlay instance.
@@ -2610,6 +2884,9 @@ declare namespace sap {
2610
2884
  id?: string;
2611
2885
  }
2612
2886
 
2887
+ /**
2888
+ * Parameters of the Overlay#closed event.
2889
+ */
2613
2890
  interface Overlay$ClosedEventParameters {
2614
2891
  /**
2615
2892
  * The ID of the Overlay instance.
@@ -2617,6 +2894,9 @@ declare namespace sap {
2617
2894
  id?: string;
2618
2895
  }
2619
2896
 
2897
+ /**
2898
+ * Parameters of the Overlay#open event.
2899
+ */
2620
2900
  interface Overlay$OpenEventParameters {
2621
2901
  /**
2622
2902
  * The ID of the Overlay instance
@@ -2624,6 +2904,9 @@ declare namespace sap {
2624
2904
  id?: string;
2625
2905
  }
2626
2906
 
2907
+ /**
2908
+ * Parameters of the Overlay#openNew event.
2909
+ */
2627
2910
  interface Overlay$OpenNewEventParameters {
2628
2911
  /**
2629
2912
  * The ID of the Overlay instance.
@@ -2631,6 +2914,9 @@ declare namespace sap {
2631
2914
  id?: string;
2632
2915
  }
2633
2916
 
2917
+ /**
2918
+ * Parameters of the QuickView#actionSelected event.
2919
+ */
2634
2920
  interface QuickView$ActionSelectedEventParameters {
2635
2921
  /**
2636
2922
  * Id of selected ThingAction
@@ -2649,6 +2935,9 @@ declare namespace sap {
2649
2935
  newState?: string;
2650
2936
  }
2651
2937
 
2938
+ /**
2939
+ * Parameters of the QuickView#feedSubmit event.
2940
+ */
2652
2941
  interface QuickView$FeedSubmitEventParameters {
2653
2942
  /**
2654
2943
  * Feed text
@@ -2656,6 +2945,9 @@ declare namespace sap {
2656
2945
  text?: string;
2657
2946
  }
2658
2947
 
2948
+ /**
2949
+ * Parameters of the QuickView#navigate event.
2950
+ */
2659
2951
  interface QuickView$NavigateEventParameters {
2660
2952
  /**
2661
2953
  * URI of the Thing Inspector application.
@@ -2663,10 +2955,19 @@ declare namespace sap {
2663
2955
  href?: string;
2664
2956
  }
2665
2957
 
2958
+ /**
2959
+ * Parameters of the Shell#feedSubmit event.
2960
+ */
2666
2961
  interface Shell$FeedSubmitEventParameters {}
2667
2962
 
2963
+ /**
2964
+ * Parameters of the Shell#logout event.
2965
+ */
2668
2966
  interface Shell$LogoutEventParameters {}
2669
2967
 
2968
+ /**
2969
+ * Parameters of the Shell#paneBarItemSelected event.
2970
+ */
2670
2971
  interface Shell$PaneBarItemSelectedEventParameters {
2671
2972
  /**
2672
2973
  * The ID of the selected PaneBarItem.
@@ -2684,6 +2985,9 @@ declare namespace sap {
2684
2985
  key?: string;
2685
2986
  }
2686
2987
 
2988
+ /**
2989
+ * Parameters of the Shell#paneClosed event.
2990
+ */
2687
2991
  interface Shell$PaneClosedEventParameters {
2688
2992
  /**
2689
2993
  * The id of the PaneBarItem to which the closed pane belonged.
@@ -2691,8 +2995,14 @@ declare namespace sap {
2691
2995
  id?: string;
2692
2996
  }
2693
2997
 
2998
+ /**
2999
+ * Parameters of the Shell#search event.
3000
+ */
2694
3001
  interface Shell$SearchEventParameters {}
2695
3002
 
3003
+ /**
3004
+ * Parameters of the Shell#worksetItemSelected event.
3005
+ */
2696
3006
  interface Shell$WorksetItemSelectedEventParameters {
2697
3007
  /**
2698
3008
  * The id of the workset item that has been newly selected by the user. If a top-level item has been clicked
@@ -2711,6 +3021,9 @@ declare namespace sap {
2711
3021
  key?: string;
2712
3022
  }
2713
3023
 
3024
+ /**
3025
+ * Parameters of the ThingAction#select event.
3026
+ */
2714
3027
  interface ThingAction$SelectEventParameters {
2715
3028
  /**
2716
3029
  * Id of selected action
@@ -2723,6 +3036,9 @@ declare namespace sap {
2723
3036
  action?: sap.ui.ux3.ThingAction;
2724
3037
  }
2725
3038
 
3039
+ /**
3040
+ * Parameters of the ThingInspector#actionSelected event.
3041
+ */
2726
3042
  interface ThingInspector$ActionSelectedEventParameters {
2727
3043
  /**
2728
3044
  * Id of selected ThingAction
@@ -2735,6 +3051,9 @@ declare namespace sap {
2735
3051
  action?: sap.ui.ux3.ThingAction;
2736
3052
  }
2737
3053
 
3054
+ /**
3055
+ * Parameters of the ThingInspector#facetSelected event.
3056
+ */
2738
3057
  interface ThingInspector$FacetSelectedEventParameters {
2739
3058
  /**
2740
3059
  * Id of selected NavigationItem
@@ -2752,6 +3071,9 @@ declare namespace sap {
2752
3071
  key?: string;
2753
3072
  }
2754
3073
 
3074
+ /**
3075
+ * Parameters of the ThingInspector#feedSubmit event.
3076
+ */
2755
3077
  interface ThingInspector$FeedSubmitEventParameters {
2756
3078
  /**
2757
3079
  * Feed text
@@ -2759,6 +3081,9 @@ declare namespace sap {
2759
3081
  text?: string;
2760
3082
  }
2761
3083
 
3084
+ /**
3085
+ * Parameters of the ThingViewer#facetSelected event.
3086
+ */
2762
3087
  interface ThingViewer$FacetSelectedEventParameters {
2763
3088
  /**
2764
3089
  * Id of selected NavigationItem
@@ -2776,10 +3101,19 @@ declare namespace sap {
2776
3101
  key?: string;
2777
3102
  }
2778
3103
 
3104
+ /**
3105
+ * Parameters of the ToolPopup#close event.
3106
+ */
2779
3107
  interface ToolPopup$CloseEventParameters {}
2780
3108
 
3109
+ /**
3110
+ * Parameters of the ToolPopup#closed event.
3111
+ */
2781
3112
  interface ToolPopup$ClosedEventParameters {}
2782
3113
 
3114
+ /**
3115
+ * Parameters of the ToolPopup#enter event.
3116
+ */
2783
3117
  interface ToolPopup$EnterEventParameters {
2784
3118
  /**
2785
3119
  * The onsapenter event, received by the pop up
@@ -2792,10 +3126,19 @@ declare namespace sap {
2792
3126
  originalSrcControl?: sap.ui.core.Control;
2793
3127
  }
2794
3128
 
3129
+ /**
3130
+ * Parameters of the ToolPopup#iconChanged event.
3131
+ */
2795
3132
  interface ToolPopup$IconChangedEventParameters {}
2796
3133
 
3134
+ /**
3135
+ * Parameters of the ToolPopup#open event.
3136
+ */
2797
3137
  interface ToolPopup$OpenEventParameters {}
2798
3138
 
3139
+ /**
3140
+ * Parameters of the ToolPopup#opened event.
3141
+ */
2799
3142
  interface ToolPopup$OpenedEventParameters {}
2800
3143
 
2801
3144
  /**
@@ -12310,7 +12653,7 @@ declare namespace sap {
12310
12653
  /**
12311
12654
  * Overlay Control
12312
12655
  *
12313
- * @deprecated (since 1.38)
12656
+ * @deprecated (since 1.38) - the concept has been discarded.
12314
12657
  */
12315
12658
  class Overlay
12316
12659
  extends sap.ui.core.Control
@@ -12775,7 +13118,7 @@ declare namespace sap {
12775
13118
  /**
12776
13119
  * Is to be embedded into the Overlay control as content container
12777
13120
  *
12778
- * @deprecated (since 1.38)
13121
+ * @deprecated (since 1.38) - the concept has been discarded.
12779
13122
  */
12780
13123
  class OverlayContainer extends sap.ui.ux3.Overlay {
12781
13124
  /**
@@ -12922,7 +13265,7 @@ declare namespace sap {
12922
13265
  * Dialog implementation based on the Overlay. If used in a Shell it leaves the Tool-Palette, Pane-Bar and
12923
13266
  * Header-Items accessible.
12924
13267
  *
12925
- * @deprecated (since 1.38)
13268
+ * @deprecated (since 1.38) - replaced by {@link sap.m.Dialog}
12926
13269
  */
12927
13270
  class OverlayDialog extends sap.ui.ux3.Overlay {
12928
13271
  /**
@@ -19079,302 +19422,481 @@ declare namespace sap {
19079
19422
  */
19080
19423
  Fixed = "Fixed",
19081
19424
  }
19082
-
19425
+ /**
19426
+ * Event object of the ActionBar#actionSelected event.
19427
+ */
19083
19428
  type ActionBar$ActionSelectedEvent = sap.ui.base.Event<
19084
19429
  ActionBar$ActionSelectedEventParameters,
19085
19430
  ActionBar
19086
19431
  >;
19087
19432
 
19433
+ /**
19434
+ * Event object of the ActionBar#feedSubmit event.
19435
+ */
19088
19436
  type ActionBar$FeedSubmitEvent = sap.ui.base.Event<
19089
19437
  ActionBar$FeedSubmitEventParameters,
19090
19438
  ActionBar
19091
19439
  >;
19092
19440
 
19441
+ /**
19442
+ * Event object of the Collection#propertyChanged event.
19443
+ */
19093
19444
  type Collection$PropertyChangedEvent = sap.ui.base.Event<
19094
19445
  Collection$PropertyChangedEventParameters,
19095
19446
  Collection
19096
19447
  >;
19097
19448
 
19449
+ /**
19450
+ * Event object of the Collection#selectionChanged event.
19451
+ */
19098
19452
  type Collection$SelectionChangedEvent = sap.ui.base.Event<
19099
19453
  Collection$SelectionChangedEventParameters,
19100
19454
  Collection
19101
19455
  >;
19102
19456
 
19457
+ /**
19458
+ * Event object of the CollectionInspector#collectionSelected event.
19459
+ */
19103
19460
  type CollectionInspector$CollectionSelectedEvent = sap.ui.base.Event<
19104
19461
  CollectionInspector$CollectionSelectedEventParameters,
19105
19462
  CollectionInspector
19106
19463
  >;
19107
19464
 
19465
+ /**
19466
+ * Event object of the CollectionInspector#editCollection event.
19467
+ */
19108
19468
  type CollectionInspector$EditCollectionEvent = sap.ui.base.Event<
19109
19469
  CollectionInspector$EditCollectionEventParameters,
19110
19470
  CollectionInspector
19111
19471
  >;
19112
19472
 
19473
+ /**
19474
+ * Event object of the CollectionInspector#itemSelectionChanged event.
19475
+ */
19113
19476
  type CollectionInspector$ItemSelectionChangedEvent = sap.ui.base.Event<
19114
19477
  CollectionInspector$ItemSelectionChangedEventParameters,
19115
19478
  CollectionInspector
19116
19479
  >;
19117
19480
 
19481
+ /**
19482
+ * Event object of the DataSet#search event.
19483
+ */
19118
19484
  type DataSet$SearchEvent = sap.ui.base.Event<
19119
19485
  DataSet$SearchEventParameters,
19120
19486
  DataSet
19121
19487
  >;
19122
19488
 
19489
+ /**
19490
+ * Event object of the DataSet#selectionChanged event.
19491
+ */
19123
19492
  type DataSet$SelectionChangedEvent = sap.ui.base.Event<
19124
19493
  DataSet$SelectionChangedEventParameters,
19125
19494
  DataSet
19126
19495
  >;
19127
19496
 
19497
+ /**
19498
+ * Event object of the DataSetItem#selected event.
19499
+ */
19128
19500
  type DataSetItem$SelectedEvent = sap.ui.base.Event<
19129
19501
  DataSetItem$SelectedEventParameters,
19130
19502
  DataSetItem
19131
19503
  >;
19132
19504
 
19505
+ /**
19506
+ * Event object of the Exact#refineSearch event.
19507
+ */
19133
19508
  type Exact$RefineSearchEvent = sap.ui.base.Event<
19134
19509
  Exact$RefineSearchEventParameters,
19135
19510
  Exact
19136
19511
  >;
19137
19512
 
19513
+ /**
19514
+ * Event object of the Exact#search event.
19515
+ */
19138
19516
  type Exact$SearchEvent = sap.ui.base.Event<
19139
19517
  Exact$SearchEventParameters,
19140
19518
  Exact
19141
19519
  >;
19142
19520
 
19521
+ /**
19522
+ * Event object of the ExactAttribute#supplyAttributes event.
19523
+ */
19143
19524
  type ExactAttribute$SupplyAttributesEvent = sap.ui.base.Event<
19144
19525
  ExactAttribute$SupplyAttributesEventParameters,
19145
19526
  ExactAttribute
19146
19527
  >;
19147
19528
 
19529
+ /**
19530
+ * Event object of the ExactBrowser#attributeSelected event.
19531
+ */
19148
19532
  type ExactBrowser$AttributeSelectedEvent = sap.ui.base.Event<
19149
19533
  ExactBrowser$AttributeSelectedEventParameters,
19150
19534
  ExactBrowser
19151
19535
  >;
19152
19536
 
19537
+ /**
19538
+ * Event object of the ExactBrowser#save event.
19539
+ */
19153
19540
  type ExactBrowser$SaveEvent = sap.ui.base.Event<
19154
19541
  ExactBrowser$SaveEventParameters,
19155
19542
  ExactBrowser
19156
19543
  >;
19157
19544
 
19545
+ /**
19546
+ * Event object of the ExactList#attributeSelected event.
19547
+ */
19158
19548
  type ExactList$AttributeSelectedEvent = sap.ui.base.Event<
19159
19549
  ExactList$AttributeSelectedEventParameters,
19160
19550
  ExactList
19161
19551
  >;
19162
19552
 
19553
+ /**
19554
+ * Event object of the FacetFilterList#select event.
19555
+ */
19163
19556
  type FacetFilterList$SelectEvent = sap.ui.base.Event<
19164
19557
  FacetFilterList$SelectEventParameters,
19165
19558
  FacetFilterList
19166
19559
  >;
19167
19560
 
19561
+ /**
19562
+ * Event object of the Feed#chunkAdded event.
19563
+ */
19168
19564
  type Feed$ChunkAddedEvent = sap.ui.base.Event<
19169
19565
  Feed$ChunkAddedEventParameters,
19170
19566
  Feed
19171
19567
  >;
19172
19568
 
19569
+ /**
19570
+ * Event object of the Feed#filterChange event.
19571
+ */
19173
19572
  type Feed$FilterChangeEvent = sap.ui.base.Event<
19174
19573
  Feed$FilterChangeEventParameters,
19175
19574
  Feed
19176
19575
  >;
19177
19576
 
19577
+ /**
19578
+ * Event object of the Feed#search event.
19579
+ */
19178
19580
  type Feed$SearchEvent = sap.ui.base.Event<
19179
19581
  Feed$SearchEventParameters,
19180
19582
  Feed
19181
19583
  >;
19182
19584
 
19585
+ /**
19586
+ * Event object of the Feed#toggleLive event.
19587
+ */
19183
19588
  type Feed$ToggleLiveEvent = sap.ui.base.Event<
19184
19589
  Feed$ToggleLiveEventParameters,
19185
19590
  Feed
19186
19591
  >;
19187
19592
 
19593
+ /**
19594
+ * Event object of the Feed#toolsItemSelected event.
19595
+ */
19188
19596
  type Feed$ToolsItemSelectedEvent = sap.ui.base.Event<
19189
19597
  Feed$ToolsItemSelectedEventParameters,
19190
19598
  Feed
19191
19599
  >;
19192
19600
 
19601
+ /**
19602
+ * Event object of the FeedChunk#actionItemSelected event.
19603
+ */
19193
19604
  type FeedChunk$ActionItemSelectedEvent = sap.ui.base.Event<
19194
19605
  FeedChunk$ActionItemSelectedEventParameters,
19195
19606
  FeedChunk
19196
19607
  >;
19197
19608
 
19609
+ /**
19610
+ * Event object of the FeedChunk#commentAdded event.
19611
+ */
19198
19612
  type FeedChunk$CommentAddedEvent = sap.ui.base.Event<
19199
19613
  FeedChunk$CommentAddedEventParameters,
19200
19614
  FeedChunk
19201
19615
  >;
19202
19616
 
19617
+ /**
19618
+ * Event object of the FeedChunk#deleted event.
19619
+ */
19203
19620
  type FeedChunk$DeletedEvent = sap.ui.base.Event<
19204
19621
  FeedChunk$DeletedEventParameters,
19205
19622
  FeedChunk
19206
19623
  >;
19207
19624
 
19625
+ /**
19626
+ * Event object of the FeedChunk#inspect event.
19627
+ */
19208
19628
  type FeedChunk$InspectEvent = sap.ui.base.Event<
19209
19629
  FeedChunk$InspectEventParameters,
19210
19630
  FeedChunk
19211
19631
  >;
19212
19632
 
19633
+ /**
19634
+ * Event object of the FeedChunk#referenceClicked event.
19635
+ */
19213
19636
  type FeedChunk$ReferenceClickedEvent = sap.ui.base.Event<
19214
19637
  FeedChunk$ReferenceClickedEventParameters,
19215
19638
  FeedChunk
19216
19639
  >;
19217
19640
 
19641
+ /**
19642
+ * Event object of the FeedChunk#senderClicked event.
19643
+ */
19218
19644
  type FeedChunk$SenderClickedEvent = sap.ui.base.Event<
19219
19645
  FeedChunk$SenderClickedEventParameters,
19220
19646
  FeedChunk
19221
19647
  >;
19222
19648
 
19649
+ /**
19650
+ * Event object of the FeedChunk#toggleFavorite event.
19651
+ */
19223
19652
  type FeedChunk$ToggleFavoriteEvent = sap.ui.base.Event<
19224
19653
  FeedChunk$ToggleFavoriteEventParameters,
19225
19654
  FeedChunk
19226
19655
  >;
19227
19656
 
19657
+ /**
19658
+ * Event object of the FeedChunk#toggleFlagged event.
19659
+ */
19228
19660
  type FeedChunk$ToggleFlaggedEvent = sap.ui.base.Event<
19229
19661
  FeedChunk$ToggleFlaggedEventParameters,
19230
19662
  FeedChunk
19231
19663
  >;
19232
19664
 
19665
+ /**
19666
+ * Event object of the FeedChunk#toggleShared event.
19667
+ */
19233
19668
  type FeedChunk$ToggleSharedEvent = sap.ui.base.Event<
19234
19669
  FeedChunk$ToggleSharedEventParameters,
19235
19670
  FeedChunk
19236
19671
  >;
19237
19672
 
19673
+ /**
19674
+ * Event object of the Feeder#submit event.
19675
+ */
19238
19676
  type Feeder$SubmitEvent = sap.ui.base.Event<
19239
19677
  Feeder$SubmitEventParameters,
19240
19678
  Feeder
19241
19679
  >;
19242
19680
 
19681
+ /**
19682
+ * Event object of the NavigationBar#select event.
19683
+ */
19243
19684
  type NavigationBar$SelectEvent = sap.ui.base.Event<
19244
19685
  NavigationBar$SelectEventParameters,
19245
19686
  NavigationBar
19246
19687
  >;
19247
19688
 
19689
+ /**
19690
+ * Event object of the NotificationBar#display event.
19691
+ */
19248
19692
  type NotificationBar$DisplayEvent = sap.ui.base.Event<
19249
19693
  NotificationBar$DisplayEventParameters,
19250
19694
  NotificationBar
19251
19695
  >;
19252
19696
 
19697
+ /**
19698
+ * Event object of the NotificationBar#resize event.
19699
+ */
19253
19700
  type NotificationBar$ResizeEvent = sap.ui.base.Event<
19254
19701
  NotificationBar$ResizeEventParameters,
19255
19702
  NotificationBar
19256
19703
  >;
19257
19704
 
19705
+ /**
19706
+ * Event object of the Notifier#messageSelected event.
19707
+ */
19258
19708
  type Notifier$MessageSelectedEvent = sap.ui.base.Event<
19259
19709
  Notifier$MessageSelectedEventParameters,
19260
19710
  Notifier
19261
19711
  >;
19262
19712
 
19713
+ /**
19714
+ * Event object of the Overlay#close event.
19715
+ */
19263
19716
  type Overlay$CloseEvent = sap.ui.base.Event<
19264
19717
  Overlay$CloseEventParameters,
19265
19718
  Overlay
19266
19719
  >;
19267
19720
 
19721
+ /**
19722
+ * Event object of the Overlay#closed event.
19723
+ */
19268
19724
  type Overlay$ClosedEvent = sap.ui.base.Event<
19269
19725
  Overlay$ClosedEventParameters,
19270
19726
  Overlay
19271
19727
  >;
19272
19728
 
19729
+ /**
19730
+ * Event object of the Overlay#open event.
19731
+ */
19273
19732
  type Overlay$OpenEvent = sap.ui.base.Event<
19274
19733
  Overlay$OpenEventParameters,
19275
19734
  Overlay
19276
19735
  >;
19277
19736
 
19737
+ /**
19738
+ * Event object of the Overlay#openNew event.
19739
+ */
19278
19740
  type Overlay$OpenNewEvent = sap.ui.base.Event<
19279
19741
  Overlay$OpenNewEventParameters,
19280
19742
  Overlay
19281
19743
  >;
19282
19744
 
19745
+ /**
19746
+ * Event object of the QuickView#actionSelected event.
19747
+ */
19283
19748
  type QuickView$ActionSelectedEvent = sap.ui.base.Event<
19284
19749
  QuickView$ActionSelectedEventParameters,
19285
19750
  QuickView
19286
19751
  >;
19287
19752
 
19753
+ /**
19754
+ * Event object of the QuickView#feedSubmit event.
19755
+ */
19288
19756
  type QuickView$FeedSubmitEvent = sap.ui.base.Event<
19289
19757
  QuickView$FeedSubmitEventParameters,
19290
19758
  QuickView
19291
19759
  >;
19292
19760
 
19761
+ /**
19762
+ * Event object of the QuickView#navigate event.
19763
+ */
19293
19764
  type QuickView$NavigateEvent = sap.ui.base.Event<
19294
19765
  QuickView$NavigateEventParameters,
19295
19766
  QuickView
19296
19767
  >;
19297
19768
 
19769
+ /**
19770
+ * Event object of the Shell#feedSubmit event.
19771
+ */
19298
19772
  type Shell$FeedSubmitEvent = sap.ui.base.Event<
19299
19773
  Shell$FeedSubmitEventParameters,
19300
19774
  Shell
19301
19775
  >;
19302
19776
 
19777
+ /**
19778
+ * Event object of the Shell#logout event.
19779
+ */
19303
19780
  type Shell$LogoutEvent = sap.ui.base.Event<
19304
19781
  Shell$LogoutEventParameters,
19305
19782
  Shell
19306
19783
  >;
19307
19784
 
19785
+ /**
19786
+ * Event object of the Shell#paneBarItemSelected event.
19787
+ */
19308
19788
  type Shell$PaneBarItemSelectedEvent = sap.ui.base.Event<
19309
19789
  Shell$PaneBarItemSelectedEventParameters,
19310
19790
  Shell
19311
19791
  >;
19312
19792
 
19793
+ /**
19794
+ * Event object of the Shell#paneClosed event.
19795
+ */
19313
19796
  type Shell$PaneClosedEvent = sap.ui.base.Event<
19314
19797
  Shell$PaneClosedEventParameters,
19315
19798
  Shell
19316
19799
  >;
19317
19800
 
19801
+ /**
19802
+ * Event object of the Shell#search event.
19803
+ */
19318
19804
  type Shell$SearchEvent = sap.ui.base.Event<
19319
19805
  Shell$SearchEventParameters,
19320
19806
  Shell
19321
19807
  >;
19322
19808
 
19809
+ /**
19810
+ * Event object of the Shell#worksetItemSelected event.
19811
+ */
19323
19812
  type Shell$WorksetItemSelectedEvent = sap.ui.base.Event<
19324
19813
  Shell$WorksetItemSelectedEventParameters,
19325
19814
  Shell
19326
19815
  >;
19327
19816
 
19817
+ /**
19818
+ * Event object of the ThingAction#select event.
19819
+ */
19328
19820
  type ThingAction$SelectEvent = sap.ui.base.Event<
19329
19821
  ThingAction$SelectEventParameters,
19330
19822
  ThingAction
19331
19823
  >;
19332
19824
 
19825
+ /**
19826
+ * Event object of the ThingInspector#actionSelected event.
19827
+ */
19333
19828
  type ThingInspector$ActionSelectedEvent = sap.ui.base.Event<
19334
19829
  ThingInspector$ActionSelectedEventParameters,
19335
19830
  ThingInspector
19336
19831
  >;
19337
19832
 
19833
+ /**
19834
+ * Event object of the ThingInspector#facetSelected event.
19835
+ */
19338
19836
  type ThingInspector$FacetSelectedEvent = sap.ui.base.Event<
19339
19837
  ThingInspector$FacetSelectedEventParameters,
19340
19838
  ThingInspector
19341
19839
  >;
19342
19840
 
19841
+ /**
19842
+ * Event object of the ThingInspector#feedSubmit event.
19843
+ */
19343
19844
  type ThingInspector$FeedSubmitEvent = sap.ui.base.Event<
19344
19845
  ThingInspector$FeedSubmitEventParameters,
19345
19846
  ThingInspector
19346
19847
  >;
19347
19848
 
19849
+ /**
19850
+ * Event object of the ThingViewer#facetSelected event.
19851
+ */
19348
19852
  type ThingViewer$FacetSelectedEvent = sap.ui.base.Event<
19349
19853
  ThingViewer$FacetSelectedEventParameters,
19350
19854
  ThingViewer
19351
19855
  >;
19352
19856
 
19857
+ /**
19858
+ * Event object of the ToolPopup#close event.
19859
+ */
19353
19860
  type ToolPopup$CloseEvent = sap.ui.base.Event<
19354
19861
  ToolPopup$CloseEventParameters,
19355
19862
  ToolPopup
19356
19863
  >;
19357
19864
 
19865
+ /**
19866
+ * Event object of the ToolPopup#closed event.
19867
+ */
19358
19868
  type ToolPopup$ClosedEvent = sap.ui.base.Event<
19359
19869
  ToolPopup$ClosedEventParameters,
19360
19870
  ToolPopup
19361
19871
  >;
19362
19872
 
19873
+ /**
19874
+ * Event object of the ToolPopup#enter event.
19875
+ */
19363
19876
  type ToolPopup$EnterEvent = sap.ui.base.Event<
19364
19877
  ToolPopup$EnterEventParameters,
19365
19878
  ToolPopup
19366
19879
  >;
19367
19880
 
19881
+ /**
19882
+ * Event object of the ToolPopup#iconChanged event.
19883
+ */
19368
19884
  type ToolPopup$IconChangedEvent = sap.ui.base.Event<
19369
19885
  ToolPopup$IconChangedEventParameters,
19370
19886
  ToolPopup
19371
19887
  >;
19372
19888
 
19889
+ /**
19890
+ * Event object of the ToolPopup#open event.
19891
+ */
19373
19892
  type ToolPopup$OpenEvent = sap.ui.base.Event<
19374
19893
  ToolPopup$OpenEventParameters,
19375
19894
  ToolPopup
19376
19895
  >;
19377
19896
 
19897
+ /**
19898
+ * Event object of the ToolPopup#opened event.
19899
+ */
19378
19900
  type ToolPopup$OpenedEvent = sap.ui.base.Event<
19379
19901
  ToolPopup$OpenedEventParameters,
19380
19902
  ToolPopup