@openui5/types 1.120.11 → 1.120.13

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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.11
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -849,7 +849,11 @@ declare module "sap/ui/ux3/ActionBar" {
849
849
  bUpdateState?: boolean
850
850
  ): this;
851
851
  }
852
-
852
+ /**
853
+ * Describes the settings that can be provided to the ActionBar constructor.
854
+ *
855
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Toolbar` or `sap.m.OverflowToolbar` control.
856
+ */
853
857
  export interface $ActionBarSettings extends $ControlSettings {
854
858
  /**
855
859
  * Keeps track of the actionBars Follow/Unfollow button’s state. Its value is one of - FollowActionState.Default
@@ -943,6 +947,9 @@ declare module "sap/ui/ux3/ActionBar" {
943
947
  feedSubmit?: (oEvent: ActionBar$FeedSubmitEvent) => void;
944
948
  }
945
949
 
950
+ /**
951
+ * Parameters of the ActionBar#actionSelected event.
952
+ */
946
953
  export interface ActionBar$ActionSelectedEventParameters {
947
954
  /**
948
955
  * Id of selected ThingAction
@@ -961,11 +968,17 @@ declare module "sap/ui/ux3/ActionBar" {
961
968
  newState?: string;
962
969
  }
963
970
 
971
+ /**
972
+ * Event object of the ActionBar#actionSelected event.
973
+ */
964
974
  export type ActionBar$ActionSelectedEvent = Event<
965
975
  ActionBar$ActionSelectedEventParameters,
966
976
  ActionBar
967
977
  >;
968
978
 
979
+ /**
980
+ * Parameters of the ActionBar#feedSubmit event.
981
+ */
969
982
  export interface ActionBar$FeedSubmitEventParameters {
970
983
  /**
971
984
  * Feed text
@@ -973,6 +986,9 @@ declare module "sap/ui/ux3/ActionBar" {
973
986
  text?: string;
974
987
  }
975
988
 
989
+ /**
990
+ * Event object of the ActionBar#feedSubmit event.
991
+ */
976
992
  export type ActionBar$FeedSubmitEvent = Event<
977
993
  ActionBar$FeedSubmitEventParameters,
978
994
  ActionBar
@@ -1417,7 +1433,11 @@ declare module "sap/ui/ux3/Collection" {
1417
1433
  sTitle?: string
1418
1434
  ): this;
1419
1435
  }
1420
-
1436
+ /**
1437
+ * Describes the settings that can be provided to the Collection constructor.
1438
+ *
1439
+ * @deprecated (since 1.38)
1440
+ */
1421
1441
  export interface $CollectionSettings extends $ElementSettings {
1422
1442
  /**
1423
1443
  * Name for the collection
@@ -1455,15 +1475,27 @@ declare module "sap/ui/ux3/Collection" {
1455
1475
  propertyChanged?: (oEvent: Event) => void;
1456
1476
  }
1457
1477
 
1478
+ /**
1479
+ * Parameters of the Collection#propertyChanged event.
1480
+ */
1458
1481
  export interface Collection$PropertyChangedEventParameters {}
1459
1482
 
1483
+ /**
1484
+ * Event object of the Collection#propertyChanged event.
1485
+ */
1460
1486
  export type Collection$PropertyChangedEvent = Event<
1461
1487
  Collection$PropertyChangedEventParameters,
1462
1488
  Collection
1463
1489
  >;
1464
1490
 
1491
+ /**
1492
+ * Parameters of the Collection#selectionChanged event.
1493
+ */
1465
1494
  export interface Collection$SelectionChangedEventParameters {}
1466
1495
 
1496
+ /**
1497
+ * Event object of the Collection#selectionChanged event.
1498
+ */
1467
1499
  export type Collection$SelectionChangedEvent = Event<
1468
1500
  Collection$SelectionChangedEventParameters,
1469
1501
  Collection
@@ -2039,7 +2071,11 @@ declare module "sap/ui/ux3/CollectionInspector" {
2039
2071
  bSidebarVisible?: boolean
2040
2072
  ): this;
2041
2073
  }
2042
-
2074
+ /**
2075
+ * Describes the settings that can be provided to the CollectionInspector constructor.
2076
+ *
2077
+ * @deprecated (since 1.38)
2078
+ */
2043
2079
  export interface $CollectionInspectorSettings extends $ControlSettings {
2044
2080
  /**
2045
2081
  * Defines if the list of collection items is visible on the left
@@ -2086,22 +2122,40 @@ declare module "sap/ui/ux3/CollectionInspector" {
2086
2122
  editCollection?: (oEvent: Event) => void;
2087
2123
  }
2088
2124
 
2125
+ /**
2126
+ * Parameters of the CollectionInspector#collectionSelected event.
2127
+ */
2089
2128
  export interface CollectionInspector$CollectionSelectedEventParameters {}
2090
2129
 
2130
+ /**
2131
+ * Event object of the CollectionInspector#collectionSelected event.
2132
+ */
2091
2133
  export type CollectionInspector$CollectionSelectedEvent = Event<
2092
2134
  CollectionInspector$CollectionSelectedEventParameters,
2093
2135
  CollectionInspector
2094
2136
  >;
2095
2137
 
2138
+ /**
2139
+ * Parameters of the CollectionInspector#editCollection event.
2140
+ */
2096
2141
  export interface CollectionInspector$EditCollectionEventParameters {}
2097
2142
 
2143
+ /**
2144
+ * Event object of the CollectionInspector#editCollection event.
2145
+ */
2098
2146
  export type CollectionInspector$EditCollectionEvent = Event<
2099
2147
  CollectionInspector$EditCollectionEventParameters,
2100
2148
  CollectionInspector
2101
2149
  >;
2102
2150
 
2151
+ /**
2152
+ * Parameters of the CollectionInspector#itemSelectionChanged event.
2153
+ */
2103
2154
  export interface CollectionInspector$ItemSelectionChangedEventParameters {}
2104
2155
 
2156
+ /**
2157
+ * Event object of the CollectionInspector#itemSelectionChanged event.
2158
+ */
2105
2159
  export type CollectionInspector$ItemSelectionChangedEvent = Event<
2106
2160
  CollectionInspector$ItemSelectionChangedEventParameters,
2107
2161
  CollectionInspector
@@ -2833,7 +2887,11 @@ declare module "sap/ui/ux3/DataSet" {
2833
2887
  */
2834
2888
  unbindItems(): this;
2835
2889
  }
2836
-
2890
+ /**
2891
+ * Describes the settings that can be provided to the DataSet constructor.
2892
+ *
2893
+ * @deprecated (since 1.38) - Use a container by choice from the {@link sap.m} library, instead.
2894
+ */
2837
2895
  export interface $DataSetSettings extends $ControlSettings {
2838
2896
  /**
2839
2897
  * show Toolbar
@@ -2894,6 +2952,9 @@ declare module "sap/ui/ux3/DataSet" {
2894
2952
  search?: (oEvent: DataSet$SearchEvent) => void;
2895
2953
  }
2896
2954
 
2955
+ /**
2956
+ * Parameters of the DataSet#search event.
2957
+ */
2897
2958
  export interface DataSet$SearchEventParameters {
2898
2959
  /**
2899
2960
  * The search query
@@ -2901,11 +2962,17 @@ declare module "sap/ui/ux3/DataSet" {
2901
2962
  query?: string;
2902
2963
  }
2903
2964
 
2965
+ /**
2966
+ * Event object of the DataSet#search event.
2967
+ */
2904
2968
  export type DataSet$SearchEvent = Event<
2905
2969
  DataSet$SearchEventParameters,
2906
2970
  DataSet
2907
2971
  >;
2908
2972
 
2973
+ /**
2974
+ * Parameters of the DataSet#selectionChanged event.
2975
+ */
2909
2976
  export interface DataSet$SelectionChangedEventParameters {
2910
2977
  /**
2911
2978
  * Old lead selected index
@@ -2918,6 +2985,9 @@ declare module "sap/ui/ux3/DataSet" {
2918
2985
  newLeadSelectedIndex?: int;
2919
2986
  }
2920
2987
 
2988
+ /**
2989
+ * Event object of the DataSet#selectionChanged event.
2990
+ */
2921
2991
  export type DataSet$SelectionChangedEvent = Event<
2922
2992
  DataSet$SelectionChangedEventParameters,
2923
2993
  DataSet
@@ -3194,7 +3264,11 @@ declare module "sap/ui/ux3/DataSetItem" {
3194
3264
  sTitle?: string
3195
3265
  ): this;
3196
3266
  }
3197
-
3267
+ /**
3268
+ * Describes the settings that can be provided to the DataSetItem constructor.
3269
+ *
3270
+ * @deprecated (since 1.38)
3271
+ */
3198
3272
  export interface $DataSetItemSettings extends $ElementSettings {
3199
3273
  /**
3200
3274
  * image
@@ -3222,6 +3296,9 @@ declare module "sap/ui/ux3/DataSetItem" {
3222
3296
  selected?: (oEvent: DataSetItem$SelectedEvent) => void;
3223
3297
  }
3224
3298
 
3299
+ /**
3300
+ * Parameters of the DataSetItem#selected event.
3301
+ */
3225
3302
  export interface DataSetItem$SelectedEventParameters {
3226
3303
  /**
3227
3304
  * Id of the selected Datset item
@@ -3229,6 +3306,9 @@ declare module "sap/ui/ux3/DataSetItem" {
3229
3306
  itemId?: string;
3230
3307
  }
3231
3308
 
3309
+ /**
3310
+ * Event object of the DataSetItem#selected event.
3311
+ */
3232
3312
  export type DataSetItem$SelectedEvent = Event<
3233
3313
  DataSetItem$SelectedEventParameters,
3234
3314
  DataSetItem
@@ -3709,7 +3789,11 @@ declare module "sap/ui/ux3/DataSetSimpleView" {
3709
3789
  aDiff: DataSetItem[]
3710
3790
  ): void;
3711
3791
  }
3712
-
3792
+ /**
3793
+ * Describes the settings that can be provided to the DataSetSimpleView constructor.
3794
+ *
3795
+ * @deprecated (since 1.38) - Use a layout by choice from the {@link sap.m} library, instead.
3796
+ */
3713
3797
  export interface $DataSetSimpleViewSettings extends $ControlSettings {
3714
3798
  /**
3715
3799
  * When true the DatSet items are floating containers. When set to false The Items are rendered in a 1 column
@@ -4173,7 +4257,12 @@ declare module "sap/ui/ux3/Exact" {
4173
4257
  oSettingsMenu: Menu
4174
4258
  ): this;
4175
4259
  }
4176
-
4260
+ /**
4261
+ * Describes the settings that can be provided to the Exact constructor.
4262
+ *
4263
+ * @deprecated (since 1.38)
4264
+ * @experimental (since 1.2) - API is not yet finished and might change completely
4265
+ */
4177
4266
  export interface $ExactSettings extends $ControlSettings {
4178
4267
  /**
4179
4268
  * A title text which is displayed above the result section
@@ -4205,6 +4294,9 @@ declare module "sap/ui/ux3/Exact" {
4205
4294
  refineSearch?: (oEvent: Exact$RefineSearchEvent) => void;
4206
4295
  }
4207
4296
 
4297
+ /**
4298
+ * Parameters of the Exact#refineSearch event.
4299
+ */
4208
4300
  export interface Exact$RefineSearchEventParameters {
4209
4301
  /**
4210
4302
  * The query string which was entered in the search field
@@ -4222,11 +4314,17 @@ declare module "sap/ui/ux3/Exact" {
4222
4314
  allSelectedAttributes?: object;
4223
4315
  }
4224
4316
 
4317
+ /**
4318
+ * Event object of the Exact#refineSearch event.
4319
+ */
4225
4320
  export type Exact$RefineSearchEvent = Event<
4226
4321
  Exact$RefineSearchEventParameters,
4227
4322
  Exact
4228
4323
  >;
4229
4324
 
4325
+ /**
4326
+ * Parameters of the Exact#search event.
4327
+ */
4230
4328
  export interface Exact$SearchEventParameters {
4231
4329
  /**
4232
4330
  * The query string which was entered in the search field.
@@ -4234,6 +4332,9 @@ declare module "sap/ui/ux3/Exact" {
4234
4332
  query?: string;
4235
4333
  }
4236
4334
 
4335
+ /**
4336
+ * Event object of the Exact#search event.
4337
+ */
4237
4338
  export type Exact$SearchEvent = Event<Exact$SearchEventParameters, Exact>;
4238
4339
  }
4239
4340
 
@@ -4503,7 +4604,12 @@ declare module "sap/ui/ux3/ExactArea" {
4503
4604
  bToolbarVisible?: boolean
4504
4605
  ): this;
4505
4606
  }
4506
-
4607
+ /**
4608
+ * Describes the settings that can be provided to the ExactArea constructor.
4609
+ *
4610
+ * @deprecated (since 1.38)
4611
+ * @experimental (since 1.6) - API is not yet finished and might change completely
4612
+ */
4507
4613
  export interface $ExactAreaSettings extends $ControlSettings {
4508
4614
  /**
4509
4615
  * Specifies whether the tool bar shall be visible
@@ -5052,7 +5158,11 @@ declare module "sap/ui/ux3/ExactAttribute" {
5052
5158
  iWidth?: int
5053
5159
  ): this;
5054
5160
  }
5055
-
5161
+ /**
5162
+ * Describes the settings that can be provided to the ExactAttribute constructor.
5163
+ *
5164
+ * @deprecated (since 1.38)
5165
+ */
5056
5166
  export interface $ExactAttributeSettings extends $ElementSettings {
5057
5167
  /**
5058
5168
  * The attribute name
@@ -5127,6 +5237,9 @@ declare module "sap/ui/ux3/ExactAttribute" {
5127
5237
  supplyAttributes?: (oEvent: ExactAttribute$SupplyAttributesEvent) => void;
5128
5238
  }
5129
5239
 
5240
+ /**
5241
+ * Parameters of the ExactAttribute#supplyAttributes event.
5242
+ */
5130
5243
  export interface ExactAttribute$SupplyAttributesEventParameters {
5131
5244
  /**
5132
5245
  * The ExactAttribute
@@ -5134,6 +5247,9 @@ declare module "sap/ui/ux3/ExactAttribute" {
5134
5247
  attribute?: ExactAttribute;
5135
5248
  }
5136
5249
 
5250
+ /**
5251
+ * Event object of the ExactAttribute#supplyAttributes event.
5252
+ */
5137
5253
  export type ExactAttribute$SupplyAttributesEvent = Event<
5138
5254
  ExactAttribute$SupplyAttributesEventParameters,
5139
5255
  ExactAttribute
@@ -5810,7 +5926,11 @@ declare module "sap/ui/ux3/ExactBrowser" {
5810
5926
  iTopListWidth?: int
5811
5927
  ): this;
5812
5928
  }
5813
-
5929
+ /**
5930
+ * Describes the settings that can be provided to the ExactBrowser constructor.
5931
+ *
5932
+ * @deprecated (since 1.38)
5933
+ */
5814
5934
  export interface $ExactBrowserSettings extends $ControlSettings {
5815
5935
  /**
5816
5936
  * Title text in the list area of the Exact Browser. The title is not shown when the property showTopList
@@ -5906,6 +6026,9 @@ declare module "sap/ui/ux3/ExactBrowser" {
5906
6026
  save?: (oEvent: Event) => void;
5907
6027
  }
5908
6028
 
6029
+ /**
6030
+ * Parameters of the ExactBrowser#attributeSelected event.
6031
+ */
5909
6032
  export interface ExactBrowser$AttributeSelectedEventParameters {
5910
6033
  /**
5911
6034
  * The attribute which was selected or unselected recently
@@ -5918,13 +6041,22 @@ declare module "sap/ui/ux3/ExactBrowser" {
5918
6041
  allAttributes?: object;
5919
6042
  }
5920
6043
 
6044
+ /**
6045
+ * Event object of the ExactBrowser#attributeSelected event.
6046
+ */
5921
6047
  export type ExactBrowser$AttributeSelectedEvent = Event<
5922
6048
  ExactBrowser$AttributeSelectedEventParameters,
5923
6049
  ExactBrowser
5924
6050
  >;
5925
6051
 
6052
+ /**
6053
+ * Parameters of the ExactBrowser#save event.
6054
+ */
5926
6055
  export interface ExactBrowser$SaveEventParameters {}
5927
6056
 
6057
+ /**
6058
+ * Event object of the ExactBrowser#save event.
6059
+ */
5928
6060
  export type ExactBrowser$SaveEvent = Event<
5929
6061
  ExactBrowser$SaveEventParameters,
5930
6062
  ExactBrowser
@@ -6276,7 +6408,11 @@ declare module "sap/ui/ux3/ExactList" {
6276
6408
  sTopTitle?: string
6277
6409
  ): this;
6278
6410
  }
6279
-
6411
+ /**
6412
+ * Describes the settings that can be provided to the ExactList constructor.
6413
+ *
6414
+ * @deprecated (since 1.38)
6415
+ */
6280
6416
  export interface $ExactListSettings extends $ControlSettings {
6281
6417
  /**
6282
6418
  * Defines whether the close icon shall be displayed in the header.
@@ -6310,6 +6446,9 @@ declare module "sap/ui/ux3/ExactList" {
6310
6446
  attributeSelected?: (oEvent: ExactList$AttributeSelectedEvent) => void;
6311
6447
  }
6312
6448
 
6449
+ /**
6450
+ * Parameters of the ExactList#attributeSelected event.
6451
+ */
6313
6452
  export interface ExactList$AttributeSelectedEventParameters {
6314
6453
  /**
6315
6454
  * The attribute which was selected/unselected recently
@@ -6322,6 +6461,9 @@ declare module "sap/ui/ux3/ExactList" {
6322
6461
  allAttributes?: object;
6323
6462
  }
6324
6463
 
6464
+ /**
6465
+ * Event object of the ExactList#attributeSelected event.
6466
+ */
6325
6467
  export type ExactList$AttributeSelectedEvent = Event<
6326
6468
  ExactList$AttributeSelectedEventParameters,
6327
6469
  ExactList
@@ -6523,7 +6665,11 @@ declare module "sap/ui/ux3/FacetFilter" {
6523
6665
  | keyof typeof VisibleItemCountMode
6524
6666
  ): this;
6525
6667
  }
6526
-
6668
+ /**
6669
+ * Describes the settings that can be provided to the FacetFilter constructor.
6670
+ *
6671
+ * @deprecated (since 1.38) - replaced by {@link sap.m.FacetFilter}
6672
+ */
6527
6673
  export interface $FacetFilterSettings extends $ControlSettings {
6528
6674
  /**
6529
6675
  * If the value is "Auto" - the Facet Filter takes the whole available height. If "Fixed" , then the default
@@ -6924,7 +7070,11 @@ declare module "sap/ui/ux3/FacetFilterList" {
6924
7070
  sTitle?: string
6925
7071
  ): this;
6926
7072
  }
6927
-
7073
+ /**
7074
+ * Describes the settings that can be provided to the FacetFilterList constructor.
7075
+ *
7076
+ * @deprecated (since 1.38) - replaced by {@link sap.m.FacetFilter}
7077
+ */
6928
7078
  export interface $FacetFilterListSettings extends $ControlSettings {
6929
7079
  /**
6930
7080
  * The title of this list.
@@ -6965,6 +7115,9 @@ declare module "sap/ui/ux3/FacetFilterList" {
6965
7115
  select?: (oEvent: FacetFilterList$SelectEvent) => void;
6966
7116
  }
6967
7117
 
7118
+ /**
7119
+ * Parameters of the FacetFilterList#select event.
7120
+ */
6968
7121
  export interface FacetFilterList$SelectEventParameters {
6969
7122
  /**
6970
7123
  * Id of the FacetFilterList taht fires the event.
@@ -6988,6 +7141,9 @@ declare module "sap/ui/ux3/FacetFilterList" {
6988
7141
  all?: boolean;
6989
7142
  }
6990
7143
 
7144
+ /**
7145
+ * Event object of the FacetFilterList#select event.
7146
+ */
6991
7147
  export type FacetFilterList$SelectEvent = Event<
6992
7148
  FacetFilterList$SelectEventParameters,
6993
7149
  FacetFilterList
@@ -7882,7 +8038,14 @@ declare module "sap/ui/ux3/Feed" {
7882
8038
  */
7883
8039
  unbindToolsMenuItems(): this;
7884
8040
  }
7885
-
8041
+ /**
8042
+ * Describes the settings that can be provided to the Feed constructor.
8043
+ *
8044
+ * @deprecated (since 1.38) - Instead, use **any** `sap.ui.layout` container control.
8045
+ * @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
8046
+ * are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
8047
+ * Feed model topic is still open.
8048
+ */
7886
8049
  export interface $FeedSettings extends $ControlSettings {
7887
8050
  /**
7888
8051
  * The path to the thumbnail image used for the feeder
@@ -7953,6 +8116,9 @@ declare module "sap/ui/ux3/Feed" {
7953
8116
  toggleLive?: (oEvent: Feed$ToggleLiveEvent) => void;
7954
8117
  }
7955
8118
 
8119
+ /**
8120
+ * Parameters of the Feed#chunkAdded event.
8121
+ */
7956
8122
  export interface Feed$ChunkAddedEventParameters {
7957
8123
  /**
7958
8124
  * New chunk
@@ -7960,11 +8126,17 @@ declare module "sap/ui/ux3/Feed" {
7960
8126
  chunk?: FeedChunk;
7961
8127
  }
7962
8128
 
8129
+ /**
8130
+ * Event object of the Feed#chunkAdded event.
8131
+ */
7963
8132
  export type Feed$ChunkAddedEvent = Event<
7964
8133
  Feed$ChunkAddedEventParameters,
7965
8134
  Feed
7966
8135
  >;
7967
8136
 
8137
+ /**
8138
+ * Parameters of the Feed#filterChange event.
8139
+ */
7968
8140
  export interface Feed$FilterChangeEventParameters {
7969
8141
  /**
7970
8142
  * The new/changed value of the filter
@@ -7972,11 +8144,17 @@ declare module "sap/ui/ux3/Feed" {
7972
8144
  newValue?: string;
7973
8145
  }
7974
8146
 
8147
+ /**
8148
+ * Event object of the Feed#filterChange event.
8149
+ */
7975
8150
  export type Feed$FilterChangeEvent = Event<
7976
8151
  Feed$FilterChangeEventParameters,
7977
8152
  Feed
7978
8153
  >;
7979
8154
 
8155
+ /**
8156
+ * Parameters of the Feed#search event.
8157
+ */
7980
8158
  export interface Feed$SearchEventParameters {
7981
8159
  /**
7982
8160
  * The search query
@@ -7984,8 +8162,14 @@ declare module "sap/ui/ux3/Feed" {
7984
8162
  query?: string;
7985
8163
  }
7986
8164
 
8165
+ /**
8166
+ * Event object of the Feed#search event.
8167
+ */
7987
8168
  export type Feed$SearchEvent = Event<Feed$SearchEventParameters, Feed>;
7988
8169
 
8170
+ /**
8171
+ * Parameters of the Feed#toggleLive event.
8172
+ */
7989
8173
  export interface Feed$ToggleLiveEventParameters {
7990
8174
  /**
7991
8175
  * Current live indicator
@@ -7993,11 +8177,17 @@ declare module "sap/ui/ux3/Feed" {
7993
8177
  live?: boolean;
7994
8178
  }
7995
8179
 
8180
+ /**
8181
+ * Event object of the Feed#toggleLive event.
8182
+ */
7996
8183
  export type Feed$ToggleLiveEvent = Event<
7997
8184
  Feed$ToggleLiveEventParameters,
7998
8185
  Feed
7999
8186
  >;
8000
8187
 
8188
+ /**
8189
+ * Parameters of the Feed#toolsItemSelected event.
8190
+ */
8001
8191
  export interface Feed$ToolsItemSelectedEventParameters {
8002
8192
  /**
8003
8193
  * The Id of the selected item
@@ -8010,6 +8200,9 @@ declare module "sap/ui/ux3/Feed" {
8010
8200
  item?: MenuItemBase;
8011
8201
  }
8012
8202
 
8203
+ /**
8204
+ * Event object of the Feed#toolsItemSelected event.
8205
+ */
8013
8206
  export type Feed$ToolsItemSelectedEvent = Event<
8014
8207
  Feed$ToolsItemSelectedEventParameters,
8015
8208
  Feed
@@ -9473,7 +9666,14 @@ declare module "sap/ui/ux3/FeedChunk" {
9473
9666
  */
9474
9667
  unbindComments(): this;
9475
9668
  }
9476
-
9669
+ /**
9670
+ * Describes the settings that can be provided to the FeedChunk constructor.
9671
+ *
9672
+ * @deprecated (since 1.38) - Instead, use the `sap.m.FeedListItem` control.
9673
+ * @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
9674
+ * are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
9675
+ * Feed model topic is still open.
9676
+ */
9477
9677
  export interface $FeedChunkSettings extends $ControlSettings {
9478
9678
  /**
9479
9679
  * URL to the thumbnail image.
@@ -9625,6 +9825,9 @@ declare module "sap/ui/ux3/FeedChunk" {
9625
9825
  actionItemSelected?: (oEvent: FeedChunk$ActionItemSelectedEvent) => void;
9626
9826
  }
9627
9827
 
9828
+ /**
9829
+ * Parameters of the FeedChunk#actionItemSelected event.
9830
+ */
9628
9831
  export interface FeedChunk$ActionItemSelectedEventParameters {
9629
9832
  /**
9630
9833
  * The Id of the selected item
@@ -9637,11 +9840,17 @@ declare module "sap/ui/ux3/FeedChunk" {
9637
9840
  item?: MenuItemBase;
9638
9841
  }
9639
9842
 
9843
+ /**
9844
+ * Event object of the FeedChunk#actionItemSelected event.
9845
+ */
9640
9846
  export type FeedChunk$ActionItemSelectedEvent = Event<
9641
9847
  FeedChunk$ActionItemSelectedEventParameters,
9642
9848
  FeedChunk
9643
9849
  >;
9644
9850
 
9851
+ /**
9852
+ * Parameters of the FeedChunk#commentAdded event.
9853
+ */
9645
9854
  export interface FeedChunk$CommentAddedEventParameters {
9646
9855
  /**
9647
9856
  * New comment chunk
@@ -9649,25 +9858,43 @@ declare module "sap/ui/ux3/FeedChunk" {
9649
9858
  comment?: FeedChunk;
9650
9859
  }
9651
9860
 
9861
+ /**
9862
+ * Event object of the FeedChunk#commentAdded event.
9863
+ */
9652
9864
  export type FeedChunk$CommentAddedEvent = Event<
9653
9865
  FeedChunk$CommentAddedEventParameters,
9654
9866
  FeedChunk
9655
9867
  >;
9656
9868
 
9869
+ /**
9870
+ * Parameters of the FeedChunk#deleted event.
9871
+ */
9657
9872
  export interface FeedChunk$DeletedEventParameters {}
9658
9873
 
9874
+ /**
9875
+ * Event object of the FeedChunk#deleted event.
9876
+ */
9659
9877
  export type FeedChunk$DeletedEvent = Event<
9660
9878
  FeedChunk$DeletedEventParameters,
9661
9879
  FeedChunk
9662
9880
  >;
9663
9881
 
9882
+ /**
9883
+ * Parameters of the FeedChunk#inspect event.
9884
+ */
9664
9885
  export interface FeedChunk$InspectEventParameters {}
9665
9886
 
9887
+ /**
9888
+ * Event object of the FeedChunk#inspect event.
9889
+ */
9666
9890
  export type FeedChunk$InspectEvent = Event<
9667
9891
  FeedChunk$InspectEventParameters,
9668
9892
  FeedChunk
9669
9893
  >;
9670
9894
 
9895
+ /**
9896
+ * Parameters of the FeedChunk#referenceClicked event.
9897
+ */
9671
9898
  export interface FeedChunk$ReferenceClickedEventParameters {
9672
9899
  /**
9673
9900
  * Text of the @-reference
@@ -9675,18 +9902,30 @@ declare module "sap/ui/ux3/FeedChunk" {
9675
9902
  text?: string;
9676
9903
  }
9677
9904
 
9905
+ /**
9906
+ * Event object of the FeedChunk#referenceClicked event.
9907
+ */
9678
9908
  export type FeedChunk$ReferenceClickedEvent = Event<
9679
9909
  FeedChunk$ReferenceClickedEventParameters,
9680
9910
  FeedChunk
9681
9911
  >;
9682
9912
 
9913
+ /**
9914
+ * Parameters of the FeedChunk#senderClicked event.
9915
+ */
9683
9916
  export interface FeedChunk$SenderClickedEventParameters {}
9684
9917
 
9918
+ /**
9919
+ * Event object of the FeedChunk#senderClicked event.
9920
+ */
9685
9921
  export type FeedChunk$SenderClickedEvent = Event<
9686
9922
  FeedChunk$SenderClickedEventParameters,
9687
9923
  FeedChunk
9688
9924
  >;
9689
9925
 
9926
+ /**
9927
+ * Parameters of the FeedChunk#toggleFavorite event.
9928
+ */
9690
9929
  export interface FeedChunk$ToggleFavoriteEventParameters {
9691
9930
  /**
9692
9931
  * Current favorite state
@@ -9694,11 +9933,17 @@ declare module "sap/ui/ux3/FeedChunk" {
9694
9933
  favorite?: boolean;
9695
9934
  }
9696
9935
 
9936
+ /**
9937
+ * Event object of the FeedChunk#toggleFavorite event.
9938
+ */
9697
9939
  export type FeedChunk$ToggleFavoriteEvent = Event<
9698
9940
  FeedChunk$ToggleFavoriteEventParameters,
9699
9941
  FeedChunk
9700
9942
  >;
9701
9943
 
9944
+ /**
9945
+ * Parameters of the FeedChunk#toggleFlagged event.
9946
+ */
9702
9947
  export interface FeedChunk$ToggleFlaggedEventParameters {
9703
9948
  /**
9704
9949
  * Current flagged state
@@ -9706,11 +9951,17 @@ declare module "sap/ui/ux3/FeedChunk" {
9706
9951
  flagged?: boolean;
9707
9952
  }
9708
9953
 
9954
+ /**
9955
+ * Event object of the FeedChunk#toggleFlagged event.
9956
+ */
9709
9957
  export type FeedChunk$ToggleFlaggedEvent = Event<
9710
9958
  FeedChunk$ToggleFlaggedEventParameters,
9711
9959
  FeedChunk
9712
9960
  >;
9713
9961
 
9962
+ /**
9963
+ * Parameters of the FeedChunk#toggleShared event.
9964
+ */
9714
9965
  export interface FeedChunk$ToggleSharedEventParameters {
9715
9966
  /**
9716
9967
  * Current shared state
@@ -9718,6 +9969,9 @@ declare module "sap/ui/ux3/FeedChunk" {
9718
9969
  shareed?: boolean;
9719
9970
  }
9720
9971
 
9972
+ /**
9973
+ * Event object of the FeedChunk#toggleShared event.
9974
+ */
9721
9975
  export type FeedChunk$ToggleSharedEvent = Event<
9722
9976
  FeedChunk$ToggleSharedEventParameters,
9723
9977
  FeedChunk
@@ -9997,7 +10251,14 @@ declare module "sap/ui/ux3/Feeder" {
9997
10251
  sType?: FeederType | keyof typeof FeederType
9998
10252
  ): this;
9999
10253
  }
10000
-
10254
+ /**
10255
+ * Describes the settings that can be provided to the Feeder constructor.
10256
+ *
10257
+ * @deprecated (since 1.38) - Instead, use the `sap.m.FeedInput` control.
10258
+ * @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
10259
+ * are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
10260
+ * Feed model topic is still open.
10261
+ */
10001
10262
  export interface $FeederSettings extends $ControlSettings {
10002
10263
  /**
10003
10264
  * URL to the thumb nail image This property is optional if the feeder is a sub-control of a feed or a feedChunk
@@ -10030,6 +10291,9 @@ declare module "sap/ui/ux3/Feeder" {
10030
10291
  submit?: (oEvent: Feeder$SubmitEvent) => void;
10031
10292
  }
10032
10293
 
10294
+ /**
10295
+ * Parameters of the Feeder#submit event.
10296
+ */
10033
10297
  export interface Feeder$SubmitEventParameters {
10034
10298
  /**
10035
10299
  * The text that is submitted
@@ -10037,6 +10301,9 @@ declare module "sap/ui/ux3/Feeder" {
10037
10301
  text?: string;
10038
10302
  }
10039
10303
 
10304
+ /**
10305
+ * Event object of the Feeder#submit event.
10306
+ */
10040
10307
  export type Feeder$SubmitEvent = Event<Feeder$SubmitEventParameters, Feeder>;
10041
10308
  }
10042
10309
 
@@ -10417,7 +10684,12 @@ declare module "sap/ui/ux3/NavigationBar" {
10417
10684
  bToplevelVariant?: boolean
10418
10685
  ): this;
10419
10686
  }
10420
-
10687
+ /**
10688
+ * Describes the settings that can be provided to the NavigationBar constructor.
10689
+ *
10690
+ * @deprecated (since 1.38) - Instead, use the `sap.m.IconTabBar`, `sap.m.TabContainer` or `sap.uxap.ObjectPageLayout`
10691
+ * control.
10692
+ */
10421
10693
  export interface $NavigationBarSettings extends $ControlSettings {
10422
10694
  /**
10423
10695
  * Defines whether the navigation bar shall have top-level appearance
@@ -10459,6 +10731,9 @@ declare module "sap/ui/ux3/NavigationBar" {
10459
10731
  select?: (oEvent: NavigationBar$SelectEvent) => void;
10460
10732
  }
10461
10733
 
10734
+ /**
10735
+ * Parameters of the NavigationBar#select event.
10736
+ */
10462
10737
  export interface NavigationBar$SelectEventParameters {
10463
10738
  /**
10464
10739
  * The ID of the newly selected NavigationItem.
@@ -10471,6 +10746,9 @@ declare module "sap/ui/ux3/NavigationBar" {
10471
10746
  item?: NavigationItem;
10472
10747
  }
10473
10748
 
10749
+ /**
10750
+ * Event object of the NavigationBar#select event.
10751
+ */
10474
10752
  export type NavigationBar$SelectEvent = Event<
10475
10753
  NavigationBar$SelectEventParameters,
10476
10754
  NavigationBar
@@ -10706,7 +10984,12 @@ declare module "sap/ui/ux3/NavigationItem" {
10706
10984
  bVisible?: boolean
10707
10985
  ): this;
10708
10986
  }
10709
-
10987
+ /**
10988
+ * Describes the settings that can be provided to the NavigationItem constructor.
10989
+ *
10990
+ * @deprecated (since 1.38) - Instead, use the `sap.m.IconTabBar`, `sap.m.TabContainer` or `sap.uxap.ObjectPageLayout`
10991
+ * control.
10992
+ */
10710
10993
  export interface $NavigationItemSettings extends $ItemSettings {
10711
10994
  /**
10712
10995
  * Whether the NavigationItem is currently visible. When making NavigationItems invisible at runtime it
@@ -11184,7 +11467,11 @@ declare module "sap/ui/ux3/NotificationBar" {
11184
11467
  | keyof typeof NotificationBarStatus
11185
11468
  ): this;
11186
11469
  }
11187
-
11470
+ /**
11471
+ * Describes the settings that can be provided to the NotificationBar constructor.
11472
+ *
11473
+ * @deprecated (since 1.38) - Instead, use the `sap.m.MessagePopover` control.
11474
+ */
11188
11475
  export interface $NotificationBarSettings extends $ControlSettings {
11189
11476
  /**
11190
11477
  * This property displays the bar corresponding to given status
@@ -11236,6 +11523,9 @@ declare module "sap/ui/ux3/NotificationBar" {
11236
11523
  resize?: (oEvent: NotificationBar$ResizeEvent) => void;
11237
11524
  }
11238
11525
 
11526
+ /**
11527
+ * Parameters of the NotificationBar#display event.
11528
+ */
11239
11529
  export interface NotificationBar$DisplayEventParameters {
11240
11530
  /**
11241
11531
  * Indicates if the bar wants to be shown or hidden
@@ -11243,11 +11533,17 @@ declare module "sap/ui/ux3/NotificationBar" {
11243
11533
  show?: boolean;
11244
11534
  }
11245
11535
 
11536
+ /**
11537
+ * Event object of the NotificationBar#display event.
11538
+ */
11246
11539
  export type NotificationBar$DisplayEvent = Event<
11247
11540
  NotificationBar$DisplayEventParameters,
11248
11541
  NotificationBar
11249
11542
  >;
11250
11543
 
11544
+ /**
11545
+ * Parameters of the NotificationBar#resize event.
11546
+ */
11251
11547
  export interface NotificationBar$ResizeEventParameters {
11252
11548
  /**
11253
11549
  * The corresponding status to which the bar was resized. The corresponding heights can be taken for the
@@ -11256,6 +11552,9 @@ declare module "sap/ui/ux3/NotificationBar" {
11256
11552
  status?: NotificationBarStatus | keyof typeof NotificationBarStatus;
11257
11553
  }
11258
11554
 
11555
+ /**
11556
+ * Event object of the NotificationBar#resize event.
11557
+ */
11259
11558
  export type NotificationBar$ResizeEvent = Event<
11260
11559
  NotificationBar$ResizeEventParameters,
11261
11560
  NotificationBar
@@ -11559,7 +11858,11 @@ declare module "sap/ui/ux3/Notifier" {
11559
11858
  sTitle?: string
11560
11859
  ): this;
11561
11860
  }
11562
-
11861
+ /**
11862
+ * Describes the settings that can be provided to the Notifier constructor.
11863
+ *
11864
+ * @deprecated (since 1.38)
11865
+ */
11563
11866
  export interface $NotifierSettings extends $ElementSettings {
11564
11867
  /**
11565
11868
  * Icon of the control that should be displayed within the corresponding bar
@@ -11582,6 +11885,9 @@ declare module "sap/ui/ux3/Notifier" {
11582
11885
  messageSelected?: (oEvent: Notifier$MessageSelectedEvent) => void;
11583
11886
  }
11584
11887
 
11888
+ /**
11889
+ * Parameters of the Notifier#messageSelected event.
11890
+ */
11585
11891
  export interface Notifier$MessageSelectedEventParameters {
11586
11892
  /**
11587
11893
  * The message that was selected
@@ -11594,6 +11900,9 @@ declare module "sap/ui/ux3/Notifier" {
11594
11900
  notifier?: Notifier;
11595
11901
  }
11596
11902
 
11903
+ /**
11904
+ * Event object of the Notifier#messageSelected event.
11905
+ */
11597
11906
  export type Notifier$MessageSelectedEvent = Event<
11598
11907
  Notifier$MessageSelectedEventParameters,
11599
11908
  Notifier
@@ -12074,7 +12383,11 @@ declare module "sap/ui/ux3/Overlay" {
12074
12383
  bOpenButtonVisible?: boolean
12075
12384
  ): this;
12076
12385
  }
12077
-
12386
+ /**
12387
+ * Describes the settings that can be provided to the Overlay constructor.
12388
+ *
12389
+ * @deprecated (since 1.38)
12390
+ */
12078
12391
  export interface $OverlaySettings extends $ControlSettings {
12079
12392
  /**
12080
12393
  * Defines whether the 'Open' button shall be visible.
@@ -12107,6 +12420,9 @@ declare module "sap/ui/ux3/Overlay" {
12107
12420
  open?: (oEvent: Overlay$OpenEvent) => void;
12108
12421
  }
12109
12422
 
12423
+ /**
12424
+ * Parameters of the Overlay#close event.
12425
+ */
12110
12426
  export interface Overlay$CloseEventParameters {
12111
12427
  /**
12112
12428
  * The ID of the Overlay instance.
@@ -12114,8 +12430,14 @@ declare module "sap/ui/ux3/Overlay" {
12114
12430
  id?: string;
12115
12431
  }
12116
12432
 
12433
+ /**
12434
+ * Event object of the Overlay#close event.
12435
+ */
12117
12436
  export type Overlay$CloseEvent = Event<Overlay$CloseEventParameters, Overlay>;
12118
12437
 
12438
+ /**
12439
+ * Parameters of the Overlay#closed event.
12440
+ */
12119
12441
  export interface Overlay$ClosedEventParameters {
12120
12442
  /**
12121
12443
  * The ID of the Overlay instance.
@@ -12123,11 +12445,17 @@ declare module "sap/ui/ux3/Overlay" {
12123
12445
  id?: string;
12124
12446
  }
12125
12447
 
12448
+ /**
12449
+ * Event object of the Overlay#closed event.
12450
+ */
12126
12451
  export type Overlay$ClosedEvent = Event<
12127
12452
  Overlay$ClosedEventParameters,
12128
12453
  Overlay
12129
12454
  >;
12130
12455
 
12456
+ /**
12457
+ * Parameters of the Overlay#open event.
12458
+ */
12131
12459
  export interface Overlay$OpenEventParameters {
12132
12460
  /**
12133
12461
  * The ID of the Overlay instance
@@ -12135,8 +12463,14 @@ declare module "sap/ui/ux3/Overlay" {
12135
12463
  id?: string;
12136
12464
  }
12137
12465
 
12466
+ /**
12467
+ * Event object of the Overlay#open event.
12468
+ */
12138
12469
  export type Overlay$OpenEvent = Event<Overlay$OpenEventParameters, Overlay>;
12139
12470
 
12471
+ /**
12472
+ * Parameters of the Overlay#openNew event.
12473
+ */
12140
12474
  export interface Overlay$OpenNewEventParameters {
12141
12475
  /**
12142
12476
  * The ID of the Overlay instance.
@@ -12144,6 +12478,9 @@ declare module "sap/ui/ux3/Overlay" {
12144
12478
  id?: string;
12145
12479
  }
12146
12480
 
12481
+ /**
12482
+ * Event object of the Overlay#openNew event.
12483
+ */
12147
12484
  export type Overlay$OpenNewEvent = Event<
12148
12485
  Overlay$OpenNewEventParameters,
12149
12486
  Overlay
@@ -12305,7 +12642,11 @@ declare module "sap/ui/ux3/OverlayContainer" {
12305
12642
  vContent: int | string | Control
12306
12643
  ): Control | null;
12307
12644
  }
12308
-
12645
+ /**
12646
+ * Describes the settings that can be provided to the OverlayContainer constructor.
12647
+ *
12648
+ * @deprecated (since 1.38)
12649
+ */
12309
12650
  export interface $OverlayContainerSettings extends $OverlaySettings {
12310
12651
  /**
12311
12652
  * Aggregation for content
@@ -12514,7 +12855,11 @@ declare module "sap/ui/ux3/OverlayDialog" {
12514
12855
  */
12515
12856
  setWidth(sWidth: CSSSize): void;
12516
12857
  }
12517
-
12858
+ /**
12859
+ * Describes the settings that can be provided to the OverlayDialog constructor.
12860
+ *
12861
+ * @deprecated (since 1.38)
12862
+ */
12518
12863
  export interface $OverlayDialogSettings extends $OverlaySettings {
12519
12864
  /**
12520
12865
  * Determines the width of the Overlay Dialog. If the width is set to "auto" it is always 50% of the overlay
@@ -13467,7 +13812,11 @@ declare module "sap/ui/ux3/QuickView" {
13467
13812
  sWidth?: CSSSize
13468
13813
  ): this;
13469
13814
  }
13470
-
13815
+ /**
13816
+ * Describes the settings that can be provided to the QuickView constructor.
13817
+ *
13818
+ * @deprecated (since 1.38) - Instead, use the `sap.m.QuickView` control.
13819
+ */
13471
13820
  export interface $QuickViewSettings extends $CalloutBaseSettings {
13472
13821
  /**
13473
13822
  * Thing type (mandatory) like Account, Material, Employee etc. is displayed in a header at the top part
@@ -13590,6 +13939,9 @@ declare module "sap/ui/ux3/QuickView" {
13590
13939
  navigate?: (oEvent: QuickView$NavigateEvent) => void;
13591
13940
  }
13592
13941
 
13942
+ /**
13943
+ * Parameters of the QuickView#actionSelected event.
13944
+ */
13593
13945
  export interface QuickView$ActionSelectedEventParameters {
13594
13946
  /**
13595
13947
  * Id of selected ThingAction
@@ -13608,11 +13960,17 @@ declare module "sap/ui/ux3/QuickView" {
13608
13960
  newState?: string;
13609
13961
  }
13610
13962
 
13963
+ /**
13964
+ * Event object of the QuickView#actionSelected event.
13965
+ */
13611
13966
  export type QuickView$ActionSelectedEvent = Event<
13612
13967
  QuickView$ActionSelectedEventParameters,
13613
13968
  QuickView
13614
13969
  >;
13615
13970
 
13971
+ /**
13972
+ * Parameters of the QuickView#feedSubmit event.
13973
+ */
13616
13974
  export interface QuickView$FeedSubmitEventParameters {
13617
13975
  /**
13618
13976
  * Feed text
@@ -13620,11 +13978,17 @@ declare module "sap/ui/ux3/QuickView" {
13620
13978
  text?: string;
13621
13979
  }
13622
13980
 
13981
+ /**
13982
+ * Event object of the QuickView#feedSubmit event.
13983
+ */
13623
13984
  export type QuickView$FeedSubmitEvent = Event<
13624
13985
  QuickView$FeedSubmitEventParameters,
13625
13986
  QuickView
13626
13987
  >;
13627
13988
 
13989
+ /**
13990
+ * Parameters of the QuickView#navigate event.
13991
+ */
13628
13992
  export interface QuickView$NavigateEventParameters {
13629
13993
  /**
13630
13994
  * URI of the Thing Inspector application.
@@ -13632,6 +13996,9 @@ declare module "sap/ui/ux3/QuickView" {
13632
13996
  href?: string;
13633
13997
  }
13634
13998
 
13999
+ /**
14000
+ * Event object of the QuickView#navigate event.
14001
+ */
13635
14002
  export type QuickView$NavigateEvent = Event<
13636
14003
  QuickView$NavigateEventParameters,
13637
14004
  QuickView
@@ -15324,7 +15691,11 @@ declare module "sap/ui/ux3/Shell" {
15324
15691
  bShowTools?: boolean
15325
15692
  ): this;
15326
15693
  }
15327
-
15694
+ /**
15695
+ * Describes the settings that can be provided to the Shell constructor.
15696
+ *
15697
+ * @deprecated (since 1.38) - replaced by {@link sap.m.Shell}
15698
+ */
15328
15699
  export interface $ShellSettings extends $ControlSettings {
15329
15700
  /**
15330
15701
  * The application title to appear in the left part of the header, usually a company and/or product name.
@@ -15530,17 +15901,32 @@ declare module "sap/ui/ux3/Shell" {
15530
15901
  paneClosed?: (oEvent: Shell$PaneClosedEvent) => void;
15531
15902
  }
15532
15903
 
15904
+ /**
15905
+ * Parameters of the Shell#feedSubmit event.
15906
+ */
15533
15907
  export interface Shell$FeedSubmitEventParameters {}
15534
15908
 
15909
+ /**
15910
+ * Event object of the Shell#feedSubmit event.
15911
+ */
15535
15912
  export type Shell$FeedSubmitEvent = Event<
15536
15913
  Shell$FeedSubmitEventParameters,
15537
15914
  Shell
15538
15915
  >;
15539
15916
 
15917
+ /**
15918
+ * Parameters of the Shell#logout event.
15919
+ */
15540
15920
  export interface Shell$LogoutEventParameters {}
15541
15921
 
15922
+ /**
15923
+ * Event object of the Shell#logout event.
15924
+ */
15542
15925
  export type Shell$LogoutEvent = Event<Shell$LogoutEventParameters, Shell>;
15543
15926
 
15927
+ /**
15928
+ * Parameters of the Shell#paneBarItemSelected event.
15929
+ */
15544
15930
  export interface Shell$PaneBarItemSelectedEventParameters {
15545
15931
  /**
15546
15932
  * The ID of the selected PaneBarItem.
@@ -15558,11 +15944,17 @@ declare module "sap/ui/ux3/Shell" {
15558
15944
  key?: string;
15559
15945
  }
15560
15946
 
15947
+ /**
15948
+ * Event object of the Shell#paneBarItemSelected event.
15949
+ */
15561
15950
  export type Shell$PaneBarItemSelectedEvent = Event<
15562
15951
  Shell$PaneBarItemSelectedEventParameters,
15563
15952
  Shell
15564
15953
  >;
15565
15954
 
15955
+ /**
15956
+ * Parameters of the Shell#paneClosed event.
15957
+ */
15566
15958
  export interface Shell$PaneClosedEventParameters {
15567
15959
  /**
15568
15960
  * The id of the PaneBarItem to which the closed pane belonged.
@@ -15570,15 +15962,27 @@ declare module "sap/ui/ux3/Shell" {
15570
15962
  id?: string;
15571
15963
  }
15572
15964
 
15965
+ /**
15966
+ * Event object of the Shell#paneClosed event.
15967
+ */
15573
15968
  export type Shell$PaneClosedEvent = Event<
15574
15969
  Shell$PaneClosedEventParameters,
15575
15970
  Shell
15576
15971
  >;
15577
15972
 
15973
+ /**
15974
+ * Parameters of the Shell#search event.
15975
+ */
15578
15976
  export interface Shell$SearchEventParameters {}
15579
15977
 
15978
+ /**
15979
+ * Event object of the Shell#search event.
15980
+ */
15580
15981
  export type Shell$SearchEvent = Event<Shell$SearchEventParameters, Shell>;
15581
15982
 
15983
+ /**
15984
+ * Parameters of the Shell#worksetItemSelected event.
15985
+ */
15582
15986
  export interface Shell$WorksetItemSelectedEventParameters {
15583
15987
  /**
15584
15988
  * The id of the workset item that has been newly selected by the user. If a top-level item has been clicked
@@ -15597,6 +16001,9 @@ declare module "sap/ui/ux3/Shell" {
15597
16001
  key?: string;
15598
16002
  }
15599
16003
 
16004
+ /**
16005
+ * Event object of the Shell#worksetItemSelected event.
16006
+ */
15600
16007
  export type Shell$WorksetItemSelectedEvent = Event<
15601
16008
  Shell$WorksetItemSelectedEventParameters,
15602
16009
  Shell
@@ -15813,7 +16220,11 @@ declare module "sap/ui/ux3/ThingAction" {
15813
16220
  sText?: string
15814
16221
  ): this;
15815
16222
  }
15816
-
16223
+ /**
16224
+ * Describes the settings that can be provided to the ThingAction constructor.
16225
+ *
16226
+ * @deprecated (since 1.38)
16227
+ */
15817
16228
  export interface $ThingActionSettings extends $ElementSettings {
15818
16229
  /**
15819
16230
  * text of action
@@ -15831,6 +16242,9 @@ declare module "sap/ui/ux3/ThingAction" {
15831
16242
  select?: (oEvent: ThingAction$SelectEvent) => void;
15832
16243
  }
15833
16244
 
16245
+ /**
16246
+ * Parameters of the ThingAction#select event.
16247
+ */
15834
16248
  export interface ThingAction$SelectEventParameters {
15835
16249
  /**
15836
16250
  * Id of selected action
@@ -15843,6 +16257,9 @@ declare module "sap/ui/ux3/ThingAction" {
15843
16257
  action?: ThingAction;
15844
16258
  }
15845
16259
 
16260
+ /**
16261
+ * Event object of the ThingAction#select event.
16262
+ */
15846
16263
  export type ThingAction$SelectEvent = Event<
15847
16264
  ThingAction$SelectEventParameters,
15848
16265
  ThingAction
@@ -16138,7 +16555,11 @@ declare module "sap/ui/ux3/ThingGroup" {
16138
16555
  sTitle?: string
16139
16556
  ): this;
16140
16557
  }
16141
-
16558
+ /**
16559
+ * Describes the settings that can be provided to the ThingGroup constructor.
16560
+ *
16561
+ * @deprecated (since 1.38)
16562
+ */
16142
16563
  export interface $ThingGroupSettings extends $ElementSettings {
16143
16564
  /**
16144
16565
  * Title of Group
@@ -17191,7 +17612,11 @@ declare module "sap/ui/ux3/ThingInspector" {
17191
17612
  bUpdateActionEnabled?: boolean
17192
17613
  ): this;
17193
17614
  }
17194
-
17615
+ /**
17616
+ * Describes the settings that can be provided to the ThingInspector constructor.
17617
+ *
17618
+ * @deprecated (since 1.38) - There is not an exact replacement.
17619
+ */
17195
17620
  export interface $ThingInspectorSettings extends $OverlaySettings {
17196
17621
  /**
17197
17622
  * First Line of the Thing Inspector Title
@@ -17324,6 +17749,9 @@ declare module "sap/ui/ux3/ThingInspector" {
17324
17749
  feedSubmit?: (oEvent: ThingInspector$FeedSubmitEvent) => void;
17325
17750
  }
17326
17751
 
17752
+ /**
17753
+ * Parameters of the ThingInspector#actionSelected event.
17754
+ */
17327
17755
  export interface ThingInspector$ActionSelectedEventParameters {
17328
17756
  /**
17329
17757
  * Id of selected ThingAction
@@ -17336,11 +17764,17 @@ declare module "sap/ui/ux3/ThingInspector" {
17336
17764
  action?: ThingAction;
17337
17765
  }
17338
17766
 
17767
+ /**
17768
+ * Event object of the ThingInspector#actionSelected event.
17769
+ */
17339
17770
  export type ThingInspector$ActionSelectedEvent = Event<
17340
17771
  ThingInspector$ActionSelectedEventParameters,
17341
17772
  ThingInspector
17342
17773
  >;
17343
17774
 
17775
+ /**
17776
+ * Parameters of the ThingInspector#facetSelected event.
17777
+ */
17344
17778
  export interface ThingInspector$FacetSelectedEventParameters {
17345
17779
  /**
17346
17780
  * Id of selected NavigationItem
@@ -17358,11 +17792,17 @@ declare module "sap/ui/ux3/ThingInspector" {
17358
17792
  key?: string;
17359
17793
  }
17360
17794
 
17795
+ /**
17796
+ * Event object of the ThingInspector#facetSelected event.
17797
+ */
17361
17798
  export type ThingInspector$FacetSelectedEvent = Event<
17362
17799
  ThingInspector$FacetSelectedEventParameters,
17363
17800
  ThingInspector
17364
17801
  >;
17365
17802
 
17803
+ /**
17804
+ * Parameters of the ThingInspector#feedSubmit event.
17805
+ */
17366
17806
  export interface ThingInspector$FeedSubmitEventParameters {
17367
17807
  /**
17368
17808
  * Feed text
@@ -17370,6 +17810,9 @@ declare module "sap/ui/ux3/ThingInspector" {
17370
17810
  text?: string;
17371
17811
  }
17372
17812
 
17813
+ /**
17814
+ * Event object of the ThingInspector#feedSubmit event.
17815
+ */
17373
17816
  export type ThingInspector$FeedSubmitEvent = Event<
17374
17817
  ThingInspector$FeedSubmitEventParameters,
17375
17818
  ThingInspector
@@ -18017,7 +18460,11 @@ declare module "sap/ui/ux3/ThingViewer" {
18017
18460
  sWidth?: CSSSize
18018
18461
  ): this;
18019
18462
  }
18020
-
18463
+ /**
18464
+ * Describes the settings that can be provided to the ThingViewer constructor.
18465
+ *
18466
+ * @deprecated (since 1.38) - There is not an exact replacement.
18467
+ */
18021
18468
  export interface $ThingViewerSettings extends $ControlSettings {
18022
18469
  /**
18023
18470
  * Title of the Thing Inspector
@@ -18103,6 +18550,9 @@ declare module "sap/ui/ux3/ThingViewer" {
18103
18550
  facetSelected?: (oEvent: ThingViewer$FacetSelectedEvent) => void;
18104
18551
  }
18105
18552
 
18553
+ /**
18554
+ * Parameters of the ThingViewer#facetSelected event.
18555
+ */
18106
18556
  export interface ThingViewer$FacetSelectedEventParameters {
18107
18557
  /**
18108
18558
  * Id of selected NavigationItem
@@ -18120,6 +18570,9 @@ declare module "sap/ui/ux3/ThingViewer" {
18120
18570
  key?: string;
18121
18571
  }
18122
18572
 
18573
+ /**
18574
+ * Event object of the ThingViewer#facetSelected event.
18575
+ */
18123
18576
  export type ThingViewer$FacetSelectedEvent = Event<
18124
18577
  ThingViewer$FacetSelectedEventParameters,
18125
18578
  ThingViewer
@@ -19246,7 +19699,11 @@ declare module "sap/ui/ux3/ToolPopup" {
19246
19699
  sTitle?: string
19247
19700
  ): this;
19248
19701
  }
19249
-
19702
+ /**
19703
+ * Describes the settings that can be provided to the ToolPopup constructor.
19704
+ *
19705
+ * @deprecated (since 1.38) - Instead, use the `sap.m.Popover` control.
19706
+ */
19250
19707
  export interface $ToolPopupSettings extends $ControlSettings {
19251
19708
  /**
19252
19709
  * Determines the title displayed in the pop up window
@@ -19394,20 +19851,35 @@ declare module "sap/ui/ux3/ToolPopup" {
19394
19851
  opened?: (oEvent: Event) => void;
19395
19852
  }
19396
19853
 
19854
+ /**
19855
+ * Parameters of the ToolPopup#close event.
19856
+ */
19397
19857
  export interface ToolPopup$CloseEventParameters {}
19398
19858
 
19859
+ /**
19860
+ * Event object of the ToolPopup#close event.
19861
+ */
19399
19862
  export type ToolPopup$CloseEvent = Event<
19400
19863
  ToolPopup$CloseEventParameters,
19401
19864
  ToolPopup
19402
19865
  >;
19403
19866
 
19867
+ /**
19868
+ * Parameters of the ToolPopup#closed event.
19869
+ */
19404
19870
  export interface ToolPopup$ClosedEventParameters {}
19405
19871
 
19872
+ /**
19873
+ * Event object of the ToolPopup#closed event.
19874
+ */
19406
19875
  export type ToolPopup$ClosedEvent = Event<
19407
19876
  ToolPopup$ClosedEventParameters,
19408
19877
  ToolPopup
19409
19878
  >;
19410
19879
 
19880
+ /**
19881
+ * Parameters of the ToolPopup#enter event.
19882
+ */
19411
19883
  export interface ToolPopup$EnterEventParameters {
19412
19884
  /**
19413
19885
  * The onsapenter event, received by the pop up
@@ -19420,27 +19892,48 @@ declare module "sap/ui/ux3/ToolPopup" {
19420
19892
  originalSrcControl?: Control;
19421
19893
  }
19422
19894
 
19895
+ /**
19896
+ * Event object of the ToolPopup#enter event.
19897
+ */
19423
19898
  export type ToolPopup$EnterEvent = Event<
19424
19899
  ToolPopup$EnterEventParameters,
19425
19900
  ToolPopup
19426
19901
  >;
19427
19902
 
19903
+ /**
19904
+ * Parameters of the ToolPopup#iconChanged event.
19905
+ */
19428
19906
  export interface ToolPopup$IconChangedEventParameters {}
19429
19907
 
19908
+ /**
19909
+ * Event object of the ToolPopup#iconChanged event.
19910
+ */
19430
19911
  export type ToolPopup$IconChangedEvent = Event<
19431
19912
  ToolPopup$IconChangedEventParameters,
19432
19913
  ToolPopup
19433
19914
  >;
19434
19915
 
19916
+ /**
19917
+ * Parameters of the ToolPopup#open event.
19918
+ */
19435
19919
  export interface ToolPopup$OpenEventParameters {}
19436
19920
 
19921
+ /**
19922
+ * Event object of the ToolPopup#open event.
19923
+ */
19437
19924
  export type ToolPopup$OpenEvent = Event<
19438
19925
  ToolPopup$OpenEventParameters,
19439
19926
  ToolPopup
19440
19927
  >;
19441
19928
 
19929
+ /**
19930
+ * Parameters of the ToolPopup#opened event.
19931
+ */
19442
19932
  export interface ToolPopup$OpenedEventParameters {}
19443
19933
 
19934
+ /**
19935
+ * Event object of the ToolPopup#opened event.
19936
+ */
19444
19937
  export type ToolPopup$OpenedEvent = Event<
19445
19938
  ToolPopup$OpenedEventParameters,
19446
19939
  ToolPopup