@openui5/types 1.115.1 → 1.116.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.1
1
+ // For Library Version: 1.116.0
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -937,7 +937,7 @@ declare module "sap/f/AvatarGroup" {
937
937
  /**
938
938
  * Fired when the user clicks or taps on the control.
939
939
  */
940
- press?: (oEvent: Event<AvatarGroup$PressEventParameters>) => void;
940
+ press?: (oEvent: AvatarGroup$PressEvent) => void;
941
941
  }
942
942
 
943
943
  export interface AvatarGroup$PressEventParameters {
@@ -957,12 +957,6 @@ declare module "sap/f/AvatarGroup" {
957
957
  avatarsDisplayed?: int;
958
958
  }
959
959
 
960
- /**
961
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'AvatarGroup$PressEventParameters'
962
- * in 1.115.1 and any later releases.
963
- */
964
- export type $AvatarGroupPressEventParameters = AvatarGroup$PressEventParameters;
965
-
966
960
  export type AvatarGroup$PressEvent = Event<AvatarGroup$PressEventParameters>;
967
961
  }
968
962
 
@@ -1616,6 +1610,18 @@ declare module "sap/f/cards/BaseHeader" {
1616
1610
  * @returns Value of property `dataTimestamp`
1617
1611
  */
1618
1612
  getDataTimestamp(): string;
1613
+ /**
1614
+ * @experimental (since 1.116) - this feature is experimental and the API may change.
1615
+ *
1616
+ * Gets current value of property {@link #getStatusVisible statusVisible}.
1617
+ *
1618
+ * Defines the status text visibility.
1619
+ *
1620
+ * Default value is `true`.
1621
+ *
1622
+ * @returns Value of property `statusVisible`
1623
+ */
1624
+ getStatusVisible(): boolean;
1619
1625
  /**
1620
1626
  * @since 1.86
1621
1627
  * @experimental (since 1.86)
@@ -1625,6 +1631,25 @@ declare module "sap/f/cards/BaseHeader" {
1625
1631
  * Defines the toolbar.
1626
1632
  */
1627
1633
  getToolbar(): Control;
1634
+ /**
1635
+ * @experimental (since 1.116) - this feature is experimental and the API may change.
1636
+ *
1637
+ * Sets a new value for property {@link #getStatusVisible statusVisible}.
1638
+ *
1639
+ * Defines the status text visibility.
1640
+ *
1641
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1642
+ *
1643
+ * Default value is `true`.
1644
+ *
1645
+ * @returns Reference to `this` in order to allow method chaining
1646
+ */
1647
+ setStatusVisible(
1648
+ /**
1649
+ * New value for property `statusVisible`
1650
+ */
1651
+ bStatusVisible?: boolean
1652
+ ): this;
1628
1653
  /**
1629
1654
  * @since 1.86
1630
1655
  * @experimental (since 1.86)
@@ -1654,6 +1679,13 @@ declare module "sap/f/cards/BaseHeader" {
1654
1679
  */
1655
1680
  dataTimestamp?: string | PropertyBindingInfo;
1656
1681
 
1682
+ /**
1683
+ * @experimental (since 1.116) - this feature is experimental and the API may change.
1684
+ *
1685
+ * Defines the status text visibility.
1686
+ */
1687
+ statusVisible?: boolean | PropertyBindingInfo | `{${string}}`;
1688
+
1657
1689
  /**
1658
1690
  * @since 1.86
1659
1691
  * @experimental (since 1.86)
@@ -2253,12 +2285,6 @@ declare module "sap/f/cards/Header" {
2253
2285
 
2254
2286
  export interface Header$PressEventParameters {}
2255
2287
 
2256
- /**
2257
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressEventParameters'
2258
- * in 1.115.1 and any later releases.
2259
- */
2260
- export type $HeaderPressEventParameters = Header$PressEventParameters;
2261
-
2262
2288
  export type Header$PressEvent = Event<Header$PressEventParameters>;
2263
2289
  }
2264
2290
 
@@ -3077,12 +3103,6 @@ declare module "sap/f/cards/NumericHeader" {
3077
3103
 
3078
3104
  export interface NumericHeader$PressEventParameters {}
3079
3105
 
3080
- /**
3081
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'NumericHeader$PressEventParameters'
3082
- * in 1.115.1 and any later releases.
3083
- */
3084
- export type $NumericHeaderPressEventParameters = NumericHeader$PressEventParameters;
3085
-
3086
3106
  export type NumericHeader$PressEvent = Event<NumericHeader$PressEventParameters>;
3087
3107
  }
3088
3108
 
@@ -4273,9 +4293,7 @@ declare module "sap/f/DynamicPage" {
4273
4293
  *
4274
4294
  * The event is fired when the `headerPinned` property is changed via user interaction.
4275
4295
  */
4276
- pinnedStateChange?: (
4277
- oEvent: Event<DynamicPage$PinnedStateChangeEventParameters>
4278
- ) => void;
4296
+ pinnedStateChange?: (oEvent: DynamicPage$PinnedStateChangeEvent) => void;
4279
4297
  }
4280
4298
 
4281
4299
  export interface DynamicPage$PinnedStateChangeEventParameters {
@@ -4285,12 +4303,6 @@ declare module "sap/f/DynamicPage" {
4285
4303
  pinned?: boolean;
4286
4304
  }
4287
4305
 
4288
- /**
4289
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DynamicPage$PinnedStateChangeEventParameters'
4290
- * in 1.115.1 and any later releases.
4291
- */
4292
- export type $DynamicPagePinnedStateChangeEventParameters = DynamicPage$PinnedStateChangeEventParameters;
4293
-
4294
4306
  export type DynamicPage$PinnedStateChangeEvent = Event<DynamicPage$PinnedStateChangeEventParameters>;
4295
4307
  }
4296
4308
 
@@ -6110,9 +6122,7 @@ declare module "sap/f/DynamicPageTitle" {
6110
6122
  * Also fired when the developer toggles the title state by programmatically changing the scroll position
6111
6123
  * of the scrollbar of `DynamicPage`.
6112
6124
  */
6113
- stateChange?: (
6114
- oEvent: Event<DynamicPageTitle$StateChangeEventParameters>
6115
- ) => void;
6125
+ stateChange?: (oEvent: DynamicPageTitle$StateChangeEvent) => void;
6116
6126
  }
6117
6127
 
6118
6128
  export interface DynamicPageTitle$StateChangeEventParameters {
@@ -6122,12 +6132,6 @@ declare module "sap/f/DynamicPageTitle" {
6122
6132
  isExpanded?: boolean;
6123
6133
  }
6124
6134
 
6125
- /**
6126
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DynamicPageTitle$StateChangeEventParameters'
6127
- * in 1.115.1 and any later releases.
6128
- */
6129
- export type $DynamicPageTitleStateChangeEventParameters = DynamicPageTitle$StateChangeEventParameters;
6130
-
6131
6135
  export type DynamicPageTitle$StateChangeEvent = Event<DynamicPageTitle$StateChangeEventParameters>;
6132
6136
  }
6133
6137
 
@@ -8120,9 +8124,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8120
8124
  * **Note: **The event is suppressed while the control has zero width and will be fired the first time
8121
8125
  * it gets a non-zero width
8122
8126
  */
8123
- stateChange?: (
8124
- oEvent: Event<FlexibleColumnLayout$StateChangeEventParameters>
8125
- ) => void;
8127
+ stateChange?: (oEvent: FlexibleColumnLayout$StateChangeEvent) => void;
8126
8128
 
8127
8129
  /**
8128
8130
  * Fires when navigation between two pages in the `Begin` column has been triggered. The transition (if
@@ -8130,7 +8132,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8130
8132
  * which means that there will be no navigation.
8131
8133
  */
8132
8134
  beginColumnNavigate?: (
8133
- oEvent: Event<FlexibleColumnLayout$BeginColumnNavigateEventParameters>
8135
+ oEvent: FlexibleColumnLayout$BeginColumnNavigateEvent
8134
8136
  ) => void;
8135
8137
 
8136
8138
  /**
@@ -8139,7 +8141,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8139
8141
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
8140
8142
  */
8141
8143
  afterBeginColumnNavigate?: (
8142
- oEvent: Event<FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters>
8144
+ oEvent: FlexibleColumnLayout$AfterBeginColumnNavigateEvent
8143
8145
  ) => void;
8144
8146
 
8145
8147
  /**
@@ -8148,7 +8150,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8148
8150
  * which means that there will be no navigation.
8149
8151
  */
8150
8152
  midColumnNavigate?: (
8151
- oEvent: Event<FlexibleColumnLayout$MidColumnNavigateEventParameters>
8153
+ oEvent: FlexibleColumnLayout$MidColumnNavigateEvent
8152
8154
  ) => void;
8153
8155
 
8154
8156
  /**
@@ -8157,7 +8159,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8157
8159
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
8158
8160
  */
8159
8161
  afterMidColumnNavigate?: (
8160
- oEvent: Event<FlexibleColumnLayout$AfterMidColumnNavigateEventParameters>
8162
+ oEvent: FlexibleColumnLayout$AfterMidColumnNavigateEvent
8161
8163
  ) => void;
8162
8164
 
8163
8165
  /**
@@ -8166,7 +8168,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8166
8168
  * which means that there will be no navigation.
8167
8169
  */
8168
8170
  endColumnNavigate?: (
8169
- oEvent: Event<FlexibleColumnLayout$EndColumnNavigateEventParameters>
8171
+ oEvent: FlexibleColumnLayout$EndColumnNavigateEvent
8170
8172
  ) => void;
8171
8173
 
8172
8174
  /**
@@ -8175,7 +8177,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8175
8177
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
8176
8178
  */
8177
8179
  afterEndColumnNavigate?: (
8178
- oEvent: Event<FlexibleColumnLayout$AfterEndColumnNavigateEventParameters>
8180
+ oEvent: FlexibleColumnLayout$AfterEndColumnNavigateEvent
8179
8181
  ) => void;
8180
8182
 
8181
8183
  /**
@@ -8183,9 +8185,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8183
8185
  *
8184
8186
  * Fired when resize of each column has completed.
8185
8187
  */
8186
- columnResize?: (
8187
- oEvent: Event<FlexibleColumnLayout$ColumnResizeEventParameters>
8188
- ) => void;
8188
+ columnResize?: (oEvent: FlexibleColumnLayout$ColumnResizeEvent) => void;
8189
8189
  }
8190
8190
 
8191
8191
  export interface FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters {
@@ -8241,12 +8241,6 @@ declare module "sap/f/FlexibleColumnLayout" {
8241
8241
  direction?: string;
8242
8242
  }
8243
8243
 
8244
- /**
8245
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters'
8246
- * in 1.115.1 and any later releases.
8247
- */
8248
- export type $FlexibleColumnLayoutAfterBeginColumnNavigateEventParameters = FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters;
8249
-
8250
8244
  export type FlexibleColumnLayout$AfterBeginColumnNavigateEvent = Event<FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters>;
8251
8245
 
8252
8246
  export interface FlexibleColumnLayout$AfterEndColumnNavigateEventParameters {
@@ -8302,12 +8296,6 @@ declare module "sap/f/FlexibleColumnLayout" {
8302
8296
  direction?: string;
8303
8297
  }
8304
8298
 
8305
- /**
8306
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$AfterEndColumnNavigateEventParameters'
8307
- * in 1.115.1 and any later releases.
8308
- */
8309
- export type $FlexibleColumnLayoutAfterEndColumnNavigateEventParameters = FlexibleColumnLayout$AfterEndColumnNavigateEventParameters;
8310
-
8311
8299
  export type FlexibleColumnLayout$AfterEndColumnNavigateEvent = Event<FlexibleColumnLayout$AfterEndColumnNavigateEventParameters>;
8312
8300
 
8313
8301
  export interface FlexibleColumnLayout$AfterMidColumnNavigateEventParameters {
@@ -8363,12 +8351,6 @@ declare module "sap/f/FlexibleColumnLayout" {
8363
8351
  direction?: string;
8364
8352
  }
8365
8353
 
8366
- /**
8367
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$AfterMidColumnNavigateEventParameters'
8368
- * in 1.115.1 and any later releases.
8369
- */
8370
- export type $FlexibleColumnLayoutAfterMidColumnNavigateEventParameters = FlexibleColumnLayout$AfterMidColumnNavigateEventParameters;
8371
-
8372
8354
  export type FlexibleColumnLayout$AfterMidColumnNavigateEvent = Event<FlexibleColumnLayout$AfterMidColumnNavigateEventParameters>;
8373
8355
 
8374
8356
  export interface FlexibleColumnLayout$BeginColumnNavigateEventParameters {
@@ -8424,12 +8406,6 @@ declare module "sap/f/FlexibleColumnLayout" {
8424
8406
  direction?: string;
8425
8407
  }
8426
8408
 
8427
- /**
8428
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$BeginColumnNavigateEventParameters'
8429
- * in 1.115.1 and any later releases.
8430
- */
8431
- export type $FlexibleColumnLayoutBeginColumnNavigateEventParameters = FlexibleColumnLayout$BeginColumnNavigateEventParameters;
8432
-
8433
8409
  export type FlexibleColumnLayout$BeginColumnNavigateEvent = Event<FlexibleColumnLayout$BeginColumnNavigateEventParameters>;
8434
8410
 
8435
8411
  export interface FlexibleColumnLayout$ColumnResizeEventParameters {
@@ -8449,12 +8425,6 @@ declare module "sap/f/FlexibleColumnLayout" {
8449
8425
  endColumn?: boolean;
8450
8426
  }
8451
8427
 
8452
- /**
8453
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$ColumnResizeEventParameters'
8454
- * in 1.115.1 and any later releases.
8455
- */
8456
- export type $FlexibleColumnLayoutColumnResizeEventParameters = FlexibleColumnLayout$ColumnResizeEventParameters;
8457
-
8458
8428
  export type FlexibleColumnLayout$ColumnResizeEvent = Event<FlexibleColumnLayout$ColumnResizeEventParameters>;
8459
8429
 
8460
8430
  export interface FlexibleColumnLayout$EndColumnNavigateEventParameters {
@@ -8510,12 +8480,6 @@ declare module "sap/f/FlexibleColumnLayout" {
8510
8480
  direction?: string;
8511
8481
  }
8512
8482
 
8513
- /**
8514
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$EndColumnNavigateEventParameters'
8515
- * in 1.115.1 and any later releases.
8516
- */
8517
- export type $FlexibleColumnLayoutEndColumnNavigateEventParameters = FlexibleColumnLayout$EndColumnNavigateEventParameters;
8518
-
8519
8483
  export type FlexibleColumnLayout$EndColumnNavigateEvent = Event<FlexibleColumnLayout$EndColumnNavigateEventParameters>;
8520
8484
 
8521
8485
  export interface FlexibleColumnLayout$MidColumnNavigateEventParameters {
@@ -8571,12 +8535,6 @@ declare module "sap/f/FlexibleColumnLayout" {
8571
8535
  direction?: string;
8572
8536
  }
8573
8537
 
8574
- /**
8575
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$MidColumnNavigateEventParameters'
8576
- * in 1.115.1 and any later releases.
8577
- */
8578
- export type $FlexibleColumnLayoutMidColumnNavigateEventParameters = FlexibleColumnLayout$MidColumnNavigateEventParameters;
8579
-
8580
8538
  export type FlexibleColumnLayout$MidColumnNavigateEvent = Event<FlexibleColumnLayout$MidColumnNavigateEventParameters>;
8581
8539
 
8582
8540
  export interface FlexibleColumnLayout$StateChangeEventParameters {
@@ -8607,12 +8565,6 @@ declare module "sap/f/FlexibleColumnLayout" {
8607
8565
  isResize?: boolean;
8608
8566
  }
8609
8567
 
8610
- /**
8611
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$StateChangeEventParameters'
8612
- * in 1.115.1 and any later releases.
8613
- */
8614
- export type $FlexibleColumnLayoutStateChangeEventParameters = FlexibleColumnLayout$StateChangeEventParameters;
8615
-
8616
8568
  export type FlexibleColumnLayout$StateChangeEvent = Event<FlexibleColumnLayout$StateChangeEventParameters>;
8617
8569
  }
8618
8570
 
@@ -10351,23 +10303,17 @@ declare module "sap/f/GridContainer" {
10351
10303
  /**
10352
10304
  * Fired when the currently active GridSettings change.
10353
10305
  */
10354
- layoutChange?: (
10355
- oEvent: Event<GridContainer$LayoutChangeEventParameters>
10356
- ) => void;
10306
+ layoutChange?: (oEvent: GridContainer$LayoutChangeEvent) => void;
10357
10307
 
10358
10308
  /**
10359
10309
  * Fired when the grid columns count is changed.
10360
10310
  */
10361
- columnsChange?: (
10362
- oEvent: Event<GridContainer$ColumnsChangeEventParameters>
10363
- ) => void;
10311
+ columnsChange?: (oEvent: GridContainer$ColumnsChangeEvent) => void;
10364
10312
 
10365
10313
  /**
10366
10314
  * Fires if the border of the visualizations is reached so that an application can react on this.
10367
10315
  */
10368
- borderReached?: (
10369
- oEvent: Event<GridContainer$BorderReachedEventParameters>
10370
- ) => void;
10316
+ borderReached?: (oEvent: GridContainer$BorderReachedEvent) => void;
10371
10317
  }
10372
10318
 
10373
10319
  export interface GridContainer$BorderReachedEventParameters {
@@ -10392,12 +10338,6 @@ declare module "sap/f/GridContainer" {
10392
10338
  column?: int;
10393
10339
  }
10394
10340
 
10395
- /**
10396
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'GridContainer$BorderReachedEventParameters'
10397
- * in 1.115.1 and any later releases.
10398
- */
10399
- export type $GridContainerBorderReachedEventParameters = GridContainer$BorderReachedEventParameters;
10400
-
10401
10341
  export type GridContainer$BorderReachedEvent = Event<GridContainer$BorderReachedEventParameters>;
10402
10342
 
10403
10343
  export interface GridContainer$ColumnsChangeEventParameters {
@@ -10407,12 +10347,6 @@ declare module "sap/f/GridContainer" {
10407
10347
  columns?: int;
10408
10348
  }
10409
10349
 
10410
- /**
10411
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'GridContainer$ColumnsChangeEventParameters'
10412
- * in 1.115.1 and any later releases.
10413
- */
10414
- export type $GridContainerColumnsChangeEventParameters = GridContainer$ColumnsChangeEventParameters;
10415
-
10416
10350
  export type GridContainer$ColumnsChangeEvent = Event<GridContainer$ColumnsChangeEventParameters>;
10417
10351
 
10418
10352
  export interface GridContainer$LayoutChangeEventParameters {
@@ -10422,12 +10356,6 @@ declare module "sap/f/GridContainer" {
10422
10356
  layout?: string;
10423
10357
  }
10424
10358
 
10425
- /**
10426
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'GridContainer$LayoutChangeEventParameters'
10427
- * in 1.115.1 and any later releases.
10428
- */
10429
- export type $GridContainerLayoutChangeEventParameters = GridContainer$LayoutChangeEventParameters;
10430
-
10431
10359
  export type GridContainer$LayoutChangeEvent = Event<GridContainer$LayoutChangeEventParameters>;
10432
10360
  }
10433
10361
 
@@ -11229,9 +11157,7 @@ declare module "sap/f/GridList" {
11229
11157
  /**
11230
11158
  * Fires if the border of the visualizations is reached so that an application can react on this.
11231
11159
  */
11232
- borderReached?: (
11233
- oEvent: Event<GridList$BorderReachedEventParameters>
11234
- ) => void;
11160
+ borderReached?: (oEvent: GridList$BorderReachedEvent) => void;
11235
11161
  }
11236
11162
 
11237
11163
  export interface GridList$BorderReachedEventParameters {
@@ -11256,12 +11182,6 @@ declare module "sap/f/GridList" {
11256
11182
  column?: int;
11257
11183
  }
11258
11184
 
11259
- /**
11260
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'GridList$BorderReachedEventParameters'
11261
- * in 1.115.1 and any later releases.
11262
- */
11263
- export type $GridListBorderReachedEventParameters = GridList$BorderReachedEventParameters;
11264
-
11265
11185
  export type GridList$BorderReachedEvent = Event<GridList$BorderReachedEventParameters>;
11266
11186
  }
11267
11187
 
@@ -11938,7 +11858,7 @@ declare module "sap/f/ProductSwitch" {
11938
11858
  /**
11939
11859
  * Fires when an unselected item is pressed.
11940
11860
  */
11941
- change?: (oEvent: Event<ProductSwitch$ChangeEventParameters>) => void;
11861
+ change?: (oEvent: ProductSwitch$ChangeEvent) => void;
11942
11862
  }
11943
11863
 
11944
11864
  export interface ProductSwitch$ChangeEventParameters {
@@ -11948,12 +11868,6 @@ declare module "sap/f/ProductSwitch" {
11948
11868
  itemPressed?: ProductSwitchItem;
11949
11869
  }
11950
11870
 
11951
- /**
11952
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ProductSwitch$ChangeEventParameters'
11953
- * in 1.115.1 and any later releases.
11954
- */
11955
- export type $ProductSwitchChangeEventParameters = ProductSwitch$ChangeEventParameters;
11956
-
11957
11871
  export type ProductSwitch$ChangeEvent = Event<ProductSwitch$ChangeEventParameters>;
11958
11872
  }
11959
11873
 
@@ -13394,23 +13308,21 @@ declare module "sap/f/SearchManager" {
13394
13308
  /**
13395
13309
  * Fired when the user triggers a search.
13396
13310
  */
13397
- search?: (oEvent: Event<SearchManager$SearchEventParameters>) => void;
13311
+ search?: (oEvent: SearchManager$SearchEvent) => void;
13398
13312
 
13399
13313
  /**
13400
13314
  * Fired when the value of the search field is changed by the user, for example at each key press.
13401
13315
  *
13402
13316
  * **Note:** Do not invalidate or re-render a focused search field, especially during the `liveChange` event.
13403
13317
  */
13404
- liveChange?: (
13405
- oEvent: Event<SearchManager$LiveChangeEventParameters>
13406
- ) => void;
13318
+ liveChange?: (oEvent: SearchManager$LiveChangeEvent) => void;
13407
13319
 
13408
13320
  /**
13409
13321
  * Fired when the search field is initially focused or its value is changed by the user. This event means
13410
13322
  * that suggestion data should be updated, in case if suggestions are used. Use the value parameter to create
13411
13323
  * new suggestions for it.
13412
13324
  */
13413
- suggest?: (oEvent: Event<SearchManager$SuggestEventParameters>) => void;
13325
+ suggest?: (oEvent: SearchManager$SuggestEvent) => void;
13414
13326
  }
13415
13327
 
13416
13328
  export interface SearchManager$LiveChangeEventParameters {
@@ -13420,12 +13332,6 @@ declare module "sap/f/SearchManager" {
13420
13332
  newValue?: string;
13421
13333
  }
13422
13334
 
13423
- /**
13424
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SearchManager$LiveChangeEventParameters'
13425
- * in 1.115.1 and any later releases.
13426
- */
13427
- export type $SearchManagerLiveChangeEventParameters = SearchManager$LiveChangeEventParameters;
13428
-
13429
13335
  export type SearchManager$LiveChangeEvent = Event<SearchManager$LiveChangeEventParameters>;
13430
13336
 
13431
13337
  export interface SearchManager$SearchEventParameters {
@@ -13440,12 +13346,6 @@ declare module "sap/f/SearchManager" {
13440
13346
  clearButtonPressed?: boolean;
13441
13347
  }
13442
13348
 
13443
- /**
13444
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SearchManager$SearchEventParameters'
13445
- * in 1.115.1 and any later releases.
13446
- */
13447
- export type $SearchManagerSearchEventParameters = SearchManager$SearchEventParameters;
13448
-
13449
13349
  export type SearchManager$SearchEvent = Event<SearchManager$SearchEventParameters>;
13450
13350
 
13451
13351
  export interface SearchManager$SuggestEventParameters {
@@ -13455,12 +13355,6 @@ declare module "sap/f/SearchManager" {
13455
13355
  suggestValue?: string;
13456
13356
  }
13457
13357
 
13458
- /**
13459
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SearchManager$SuggestEventParameters'
13460
- * in 1.115.1 and any later releases.
13461
- */
13462
- export type $SearchManagerSuggestEventParameters = SearchManager$SuggestEventParameters;
13463
-
13464
13358
  export type SearchManager$SuggestEvent = Event<SearchManager$SuggestEventParameters>;
13465
13359
  }
13466
13360
 
@@ -19317,58 +19211,44 @@ declare module "sap/f/ShellBar" {
19317
19211
  /**
19318
19212
  * Fired when the `homeIcon` is pressed.
19319
19213
  */
19320
- homeIconPressed?: (
19321
- oEvent: Event<ShellBar$HomeIconPressedEventParameters>
19322
- ) => void;
19214
+ homeIconPressed?: (oEvent: ShellBar$HomeIconPressedEvent) => void;
19323
19215
 
19324
19216
  /**
19325
19217
  * Fired when the alternative menu button is pressed.
19326
19218
  */
19327
- menuButtonPressed?: (
19328
- oEvent: Event<ShellBar$MenuButtonPressedEventParameters>
19329
- ) => void;
19219
+ menuButtonPressed?: (oEvent: ShellBar$MenuButtonPressedEvent) => void;
19330
19220
 
19331
19221
  /**
19332
19222
  * Fired when the navigation/back button is pressed.
19333
19223
  */
19334
- navButtonPressed?: (
19335
- oEvent: Event<ShellBar$NavButtonPressedEventParameters>
19336
- ) => void;
19224
+ navButtonPressed?: (oEvent: ShellBar$NavButtonPressedEvent) => void;
19337
19225
 
19338
19226
  /**
19339
19227
  * Fired when the SAP CoPilot icon is pressed.
19340
19228
  */
19341
- copilotPressed?: (
19342
- oEvent: Event<ShellBar$CopilotPressedEventParameters>
19343
- ) => void;
19229
+ copilotPressed?: (oEvent: ShellBar$CopilotPressedEvent) => void;
19344
19230
 
19345
19231
  /**
19346
19232
  * Fired when the search button is pressed.
19347
19233
  */
19348
- searchButtonPressed?: (
19349
- oEvent: Event<ShellBar$SearchButtonPressedEventParameters>
19350
- ) => void;
19234
+ searchButtonPressed?: (oEvent: ShellBar$SearchButtonPressedEvent) => void;
19351
19235
 
19352
19236
  /**
19353
19237
  * Fired when the notifications button is pressed.
19354
19238
  */
19355
- notificationsPressed?: (
19356
- oEvent: Event<ShellBar$NotificationsPressedEventParameters>
19357
- ) => void;
19239
+ notificationsPressed?: (oEvent: ShellBar$NotificationsPressedEvent) => void;
19358
19240
 
19359
19241
  /**
19360
19242
  * Fired when the product switcher button is pressed.
19361
19243
  */
19362
19244
  productSwitcherPressed?: (
19363
- oEvent: Event<ShellBar$ProductSwitcherPressedEventParameters>
19245
+ oEvent: ShellBar$ProductSwitcherPressedEvent
19364
19246
  ) => void;
19365
19247
 
19366
19248
  /**
19367
19249
  * Fired when the profile avatar is pressed.
19368
19250
  */
19369
- avatarPressed?: (
19370
- oEvent: Event<ShellBar$AvatarPressedEventParameters>
19371
- ) => void;
19251
+ avatarPressed?: (oEvent: ShellBar$AvatarPressedEvent) => void;
19372
19252
  }
19373
19253
 
19374
19254
  export interface ShellBar$AvatarPressedEventParameters {
@@ -19378,12 +19258,6 @@ declare module "sap/f/ShellBar" {
19378
19258
  avatar?: Avatar;
19379
19259
  }
19380
19260
 
19381
- /**
19382
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$AvatarPressedEventParameters'
19383
- * in 1.115.1 and any later releases.
19384
- */
19385
- export type $ShellBarAvatarPressedEventParameters = ShellBar$AvatarPressedEventParameters;
19386
-
19387
19261
  export type ShellBar$AvatarPressedEvent = Event<ShellBar$AvatarPressedEventParameters>;
19388
19262
 
19389
19263
  export interface ShellBar$CopilotPressedEventParameters {
@@ -19393,12 +19267,6 @@ declare module "sap/f/ShellBar" {
19393
19267
  image?: Image;
19394
19268
  }
19395
19269
 
19396
- /**
19397
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$CopilotPressedEventParameters'
19398
- * in 1.115.1 and any later releases.
19399
- */
19400
- export type $ShellBarCopilotPressedEventParameters = ShellBar$CopilotPressedEventParameters;
19401
-
19402
19270
  export type ShellBar$CopilotPressedEvent = Event<ShellBar$CopilotPressedEventParameters>;
19403
19271
 
19404
19272
  export interface ShellBar$HomeIconPressedEventParameters {
@@ -19408,12 +19276,6 @@ declare module "sap/f/ShellBar" {
19408
19276
  icon?: Image;
19409
19277
  }
19410
19278
 
19411
- /**
19412
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$HomeIconPressedEventParameters'
19413
- * in 1.115.1 and any later releases.
19414
- */
19415
- export type $ShellBarHomeIconPressedEventParameters = ShellBar$HomeIconPressedEventParameters;
19416
-
19417
19279
  export type ShellBar$HomeIconPressedEvent = Event<ShellBar$HomeIconPressedEventParameters>;
19418
19280
 
19419
19281
  export interface ShellBar$MenuButtonPressedEventParameters {
@@ -19423,12 +19285,6 @@ declare module "sap/f/ShellBar" {
19423
19285
  button?: Button;
19424
19286
  }
19425
19287
 
19426
- /**
19427
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$MenuButtonPressedEventParameters'
19428
- * in 1.115.1 and any later releases.
19429
- */
19430
- export type $ShellBarMenuButtonPressedEventParameters = ShellBar$MenuButtonPressedEventParameters;
19431
-
19432
19288
  export type ShellBar$MenuButtonPressedEvent = Event<ShellBar$MenuButtonPressedEventParameters>;
19433
19289
 
19434
19290
  export interface ShellBar$NavButtonPressedEventParameters {
@@ -19438,12 +19294,6 @@ declare module "sap/f/ShellBar" {
19438
19294
  button?: Button;
19439
19295
  }
19440
19296
 
19441
- /**
19442
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$NavButtonPressedEventParameters'
19443
- * in 1.115.1 and any later releases.
19444
- */
19445
- export type $ShellBarNavButtonPressedEventParameters = ShellBar$NavButtonPressedEventParameters;
19446
-
19447
19297
  export type ShellBar$NavButtonPressedEvent = Event<ShellBar$NavButtonPressedEventParameters>;
19448
19298
 
19449
19299
  export interface ShellBar$NotificationsPressedEventParameters {
@@ -19453,12 +19303,6 @@ declare module "sap/f/ShellBar" {
19453
19303
  button?: Button;
19454
19304
  }
19455
19305
 
19456
- /**
19457
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$NotificationsPressedEventParameters'
19458
- * in 1.115.1 and any later releases.
19459
- */
19460
- export type $ShellBarNotificationsPressedEventParameters = ShellBar$NotificationsPressedEventParameters;
19461
-
19462
19306
  export type ShellBar$NotificationsPressedEvent = Event<ShellBar$NotificationsPressedEventParameters>;
19463
19307
 
19464
19308
  export interface ShellBar$ProductSwitcherPressedEventParameters {
@@ -19468,12 +19312,6 @@ declare module "sap/f/ShellBar" {
19468
19312
  button?: Button;
19469
19313
  }
19470
19314
 
19471
- /**
19472
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$ProductSwitcherPressedEventParameters'
19473
- * in 1.115.1 and any later releases.
19474
- */
19475
- export type $ShellBarProductSwitcherPressedEventParameters = ShellBar$ProductSwitcherPressedEventParameters;
19476
-
19477
19315
  export type ShellBar$ProductSwitcherPressedEvent = Event<ShellBar$ProductSwitcherPressedEventParameters>;
19478
19316
 
19479
19317
  export interface ShellBar$SearchButtonPressedEventParameters {
@@ -19483,12 +19321,6 @@ declare module "sap/f/ShellBar" {
19483
19321
  button?: Button;
19484
19322
  }
19485
19323
 
19486
- /**
19487
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$SearchButtonPressedEventParameters'
19488
- * in 1.115.1 and any later releases.
19489
- */
19490
- export type $ShellBarSearchButtonPressedEventParameters = ShellBar$SearchButtonPressedEventParameters;
19491
-
19492
19324
  export type ShellBar$SearchButtonPressedEvent = Event<ShellBar$SearchButtonPressedEventParameters>;
19493
19325
  }
19494
19326
 
@@ -20256,7 +20088,7 @@ declare module "sap/f/SidePanel" {
20256
20088
  * of a different action item, the selection will be cancelled, and the next event (for expansion of a new
20257
20089
  * action item) will not be fired and the new side content will not be displayed.
20258
20090
  */
20259
- toggle?: (oEvent: Event<SidePanel$ToggleEventParameters>) => void;
20091
+ toggle?: (oEvent: SidePanel$ToggleEvent) => void;
20260
20092
  }
20261
20093
 
20262
20094
  export interface SidePanel$ToggleEventParameters {
@@ -20271,12 +20103,6 @@ declare module "sap/f/SidePanel" {
20271
20103
  expanded?: boolean;
20272
20104
  }
20273
20105
 
20274
- /**
20275
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SidePanel$ToggleEventParameters'
20276
- * in 1.115.1 and any later releases.
20277
- */
20278
- export type $SidePanelToggleEventParameters = SidePanel$ToggleEventParameters;
20279
-
20280
20106
  export type SidePanel$ToggleEvent = Event<SidePanel$ToggleEventParameters>;
20281
20107
  }
20282
20108