@openui5/types 1.115.1 → 1.117.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.117.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,13 +957,10 @@ 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
- export type AvatarGroup$PressEvent = Event<AvatarGroup$PressEventParameters>;
960
+ export type AvatarGroup$PressEvent = Event<
961
+ AvatarGroup$PressEventParameters,
962
+ AvatarGroup
963
+ >;
967
964
  }
968
965
 
969
966
  declare module "sap/f/AvatarGroupItem" {
@@ -1616,6 +1613,18 @@ declare module "sap/f/cards/BaseHeader" {
1616
1613
  * @returns Value of property `dataTimestamp`
1617
1614
  */
1618
1615
  getDataTimestamp(): string;
1616
+ /**
1617
+ * @experimental (since 1.116) - this feature is experimental and the API may change.
1618
+ *
1619
+ * Gets current value of property {@link #getStatusVisible statusVisible}.
1620
+ *
1621
+ * Defines the status text visibility.
1622
+ *
1623
+ * Default value is `true`.
1624
+ *
1625
+ * @returns Value of property `statusVisible`
1626
+ */
1627
+ getStatusVisible(): boolean;
1619
1628
  /**
1620
1629
  * @since 1.86
1621
1630
  * @experimental (since 1.86)
@@ -1625,6 +1634,25 @@ declare module "sap/f/cards/BaseHeader" {
1625
1634
  * Defines the toolbar.
1626
1635
  */
1627
1636
  getToolbar(): Control;
1637
+ /**
1638
+ * @experimental (since 1.116) - this feature is experimental and the API may change.
1639
+ *
1640
+ * Sets a new value for property {@link #getStatusVisible statusVisible}.
1641
+ *
1642
+ * Defines the status text visibility.
1643
+ *
1644
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1645
+ *
1646
+ * Default value is `true`.
1647
+ *
1648
+ * @returns Reference to `this` in order to allow method chaining
1649
+ */
1650
+ setStatusVisible(
1651
+ /**
1652
+ * New value for property `statusVisible`
1653
+ */
1654
+ bStatusVisible?: boolean
1655
+ ): this;
1628
1656
  /**
1629
1657
  * @since 1.86
1630
1658
  * @experimental (since 1.86)
@@ -1654,6 +1682,13 @@ declare module "sap/f/cards/BaseHeader" {
1654
1682
  */
1655
1683
  dataTimestamp?: string | PropertyBindingInfo;
1656
1684
 
1685
+ /**
1686
+ * @experimental (since 1.116) - this feature is experimental and the API may change.
1687
+ *
1688
+ * Defines the status text visibility.
1689
+ */
1690
+ statusVisible?: boolean | PropertyBindingInfo | `{${string}}`;
1691
+
1657
1692
  /**
1658
1693
  * @since 1.86
1659
1694
  * @experimental (since 1.86)
@@ -2171,6 +2206,13 @@ declare module "sap/f/cards/Header" {
2171
2206
  */
2172
2207
  iTitleMaxLines?: int
2173
2208
  ): this;
2209
+ /**
2210
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2211
+ *
2212
+ *
2213
+ * @returns If the icon should be shown.
2214
+ */
2215
+ shouldShowIcon(): boolean;
2174
2216
  }
2175
2217
 
2176
2218
  export interface $HeaderSettings extends $BaseHeaderSettings {
@@ -2253,13 +2295,7 @@ declare module "sap/f/cards/Header" {
2253
2295
 
2254
2296
  export interface Header$PressEventParameters {}
2255
2297
 
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
- export type Header$PressEvent = Event<Header$PressEventParameters>;
2298
+ export type Header$PressEvent = Event<Header$PressEventParameters, Header>;
2263
2299
  }
2264
2300
 
2265
2301
  declare module "sap/f/cards/loading/PlaceholderBaseRenderer" {
@@ -3077,13 +3113,10 @@ declare module "sap/f/cards/NumericHeader" {
3077
3113
 
3078
3114
  export interface NumericHeader$PressEventParameters {}
3079
3115
 
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
- export type NumericHeader$PressEvent = Event<NumericHeader$PressEventParameters>;
3116
+ export type NumericHeader$PressEvent = Event<
3117
+ NumericHeader$PressEventParameters,
3118
+ NumericHeader
3119
+ >;
3087
3120
  }
3088
3121
 
3089
3122
  declare module "sap/f/cards/NumericSideIndicator" {
@@ -3848,7 +3881,7 @@ declare module "sap/f/DynamicPage" {
3848
3881
  */
3849
3882
  getPreserveHeaderStateOnScroll(): boolean;
3850
3883
  /**
3851
- * Returns the `sap.ui.core.ScrollEnablement` delegate which is used with this control.
3884
+ * Returns the `sap.ui.core.delegate.ScrollEnablement` delegate which is used with this control.
3852
3885
  *
3853
3886
  * @returns The scroll delegate instance
3854
3887
  */
@@ -4273,9 +4306,7 @@ declare module "sap/f/DynamicPage" {
4273
4306
  *
4274
4307
  * The event is fired when the `headerPinned` property is changed via user interaction.
4275
4308
  */
4276
- pinnedStateChange?: (
4277
- oEvent: Event<DynamicPage$PinnedStateChangeEventParameters>
4278
- ) => void;
4309
+ pinnedStateChange?: (oEvent: DynamicPage$PinnedStateChangeEvent) => void;
4279
4310
  }
4280
4311
 
4281
4312
  export interface DynamicPage$PinnedStateChangeEventParameters {
@@ -4285,13 +4316,10 @@ declare module "sap/f/DynamicPage" {
4285
4316
  pinned?: boolean;
4286
4317
  }
4287
4318
 
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
- export type DynamicPage$PinnedStateChangeEvent = Event<DynamicPage$PinnedStateChangeEventParameters>;
4319
+ export type DynamicPage$PinnedStateChangeEvent = Event<
4320
+ DynamicPage$PinnedStateChangeEventParameters,
4321
+ DynamicPage
4322
+ >;
4295
4323
  }
4296
4324
 
4297
4325
  declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
@@ -6110,9 +6138,7 @@ declare module "sap/f/DynamicPageTitle" {
6110
6138
  * Also fired when the developer toggles the title state by programmatically changing the scroll position
6111
6139
  * of the scrollbar of `DynamicPage`.
6112
6140
  */
6113
- stateChange?: (
6114
- oEvent: Event<DynamicPageTitle$StateChangeEventParameters>
6115
- ) => void;
6141
+ stateChange?: (oEvent: DynamicPageTitle$StateChangeEvent) => void;
6116
6142
  }
6117
6143
 
6118
6144
  export interface DynamicPageTitle$StateChangeEventParameters {
@@ -6122,13 +6148,10 @@ declare module "sap/f/DynamicPageTitle" {
6122
6148
  isExpanded?: boolean;
6123
6149
  }
6124
6150
 
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
- export type DynamicPageTitle$StateChangeEvent = Event<DynamicPageTitle$StateChangeEventParameters>;
6151
+ export type DynamicPageTitle$StateChangeEvent = Event<
6152
+ DynamicPageTitle$StateChangeEventParameters,
6153
+ DynamicPageTitle
6154
+ >;
6132
6155
  }
6133
6156
 
6134
6157
  declare module "sap/f/FlexibleColumnLayout" {
@@ -8120,9 +8143,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8120
8143
  * **Note: **The event is suppressed while the control has zero width and will be fired the first time
8121
8144
  * it gets a non-zero width
8122
8145
  */
8123
- stateChange?: (
8124
- oEvent: Event<FlexibleColumnLayout$StateChangeEventParameters>
8125
- ) => void;
8146
+ stateChange?: (oEvent: FlexibleColumnLayout$StateChangeEvent) => void;
8126
8147
 
8127
8148
  /**
8128
8149
  * Fires when navigation between two pages in the `Begin` column has been triggered. The transition (if
@@ -8130,7 +8151,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8130
8151
  * which means that there will be no navigation.
8131
8152
  */
8132
8153
  beginColumnNavigate?: (
8133
- oEvent: Event<FlexibleColumnLayout$BeginColumnNavigateEventParameters>
8154
+ oEvent: FlexibleColumnLayout$BeginColumnNavigateEvent
8134
8155
  ) => void;
8135
8156
 
8136
8157
  /**
@@ -8139,7 +8160,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8139
8160
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
8140
8161
  */
8141
8162
  afterBeginColumnNavigate?: (
8142
- oEvent: Event<FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters>
8163
+ oEvent: FlexibleColumnLayout$AfterBeginColumnNavigateEvent
8143
8164
  ) => void;
8144
8165
 
8145
8166
  /**
@@ -8148,7 +8169,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8148
8169
  * which means that there will be no navigation.
8149
8170
  */
8150
8171
  midColumnNavigate?: (
8151
- oEvent: Event<FlexibleColumnLayout$MidColumnNavigateEventParameters>
8172
+ oEvent: FlexibleColumnLayout$MidColumnNavigateEvent
8152
8173
  ) => void;
8153
8174
 
8154
8175
  /**
@@ -8157,7 +8178,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8157
8178
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
8158
8179
  */
8159
8180
  afterMidColumnNavigate?: (
8160
- oEvent: Event<FlexibleColumnLayout$AfterMidColumnNavigateEventParameters>
8181
+ oEvent: FlexibleColumnLayout$AfterMidColumnNavigateEvent
8161
8182
  ) => void;
8162
8183
 
8163
8184
  /**
@@ -8166,7 +8187,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8166
8187
  * which means that there will be no navigation.
8167
8188
  */
8168
8189
  endColumnNavigate?: (
8169
- oEvent: Event<FlexibleColumnLayout$EndColumnNavigateEventParameters>
8190
+ oEvent: FlexibleColumnLayout$EndColumnNavigateEvent
8170
8191
  ) => void;
8171
8192
 
8172
8193
  /**
@@ -8175,7 +8196,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8175
8196
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
8176
8197
  */
8177
8198
  afterEndColumnNavigate?: (
8178
- oEvent: Event<FlexibleColumnLayout$AfterEndColumnNavigateEventParameters>
8199
+ oEvent: FlexibleColumnLayout$AfterEndColumnNavigateEvent
8179
8200
  ) => void;
8180
8201
 
8181
8202
  /**
@@ -8183,9 +8204,7 @@ declare module "sap/f/FlexibleColumnLayout" {
8183
8204
  *
8184
8205
  * Fired when resize of each column has completed.
8185
8206
  */
8186
- columnResize?: (
8187
- oEvent: Event<FlexibleColumnLayout$ColumnResizeEventParameters>
8188
- ) => void;
8207
+ columnResize?: (oEvent: FlexibleColumnLayout$ColumnResizeEvent) => void;
8189
8208
  }
8190
8209
 
8191
8210
  export interface FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters {
@@ -8241,13 +8260,10 @@ declare module "sap/f/FlexibleColumnLayout" {
8241
8260
  direction?: string;
8242
8261
  }
8243
8262
 
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
- export type FlexibleColumnLayout$AfterBeginColumnNavigateEvent = Event<FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters>;
8263
+ export type FlexibleColumnLayout$AfterBeginColumnNavigateEvent = Event<
8264
+ FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters,
8265
+ FlexibleColumnLayout
8266
+ >;
8251
8267
 
8252
8268
  export interface FlexibleColumnLayout$AfterEndColumnNavigateEventParameters {
8253
8269
  /**
@@ -8302,13 +8318,10 @@ declare module "sap/f/FlexibleColumnLayout" {
8302
8318
  direction?: string;
8303
8319
  }
8304
8320
 
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
- export type FlexibleColumnLayout$AfterEndColumnNavigateEvent = Event<FlexibleColumnLayout$AfterEndColumnNavigateEventParameters>;
8321
+ export type FlexibleColumnLayout$AfterEndColumnNavigateEvent = Event<
8322
+ FlexibleColumnLayout$AfterEndColumnNavigateEventParameters,
8323
+ FlexibleColumnLayout
8324
+ >;
8312
8325
 
8313
8326
  export interface FlexibleColumnLayout$AfterMidColumnNavigateEventParameters {
8314
8327
  /**
@@ -8363,13 +8376,10 @@ declare module "sap/f/FlexibleColumnLayout" {
8363
8376
  direction?: string;
8364
8377
  }
8365
8378
 
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
- export type FlexibleColumnLayout$AfterMidColumnNavigateEvent = Event<FlexibleColumnLayout$AfterMidColumnNavigateEventParameters>;
8379
+ export type FlexibleColumnLayout$AfterMidColumnNavigateEvent = Event<
8380
+ FlexibleColumnLayout$AfterMidColumnNavigateEventParameters,
8381
+ FlexibleColumnLayout
8382
+ >;
8373
8383
 
8374
8384
  export interface FlexibleColumnLayout$BeginColumnNavigateEventParameters {
8375
8385
  /**
@@ -8424,13 +8434,10 @@ declare module "sap/f/FlexibleColumnLayout" {
8424
8434
  direction?: string;
8425
8435
  }
8426
8436
 
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
- export type FlexibleColumnLayout$BeginColumnNavigateEvent = Event<FlexibleColumnLayout$BeginColumnNavigateEventParameters>;
8437
+ export type FlexibleColumnLayout$BeginColumnNavigateEvent = Event<
8438
+ FlexibleColumnLayout$BeginColumnNavigateEventParameters,
8439
+ FlexibleColumnLayout
8440
+ >;
8434
8441
 
8435
8442
  export interface FlexibleColumnLayout$ColumnResizeEventParameters {
8436
8443
  /**
@@ -8449,13 +8456,10 @@ declare module "sap/f/FlexibleColumnLayout" {
8449
8456
  endColumn?: boolean;
8450
8457
  }
8451
8458
 
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
- export type FlexibleColumnLayout$ColumnResizeEvent = Event<FlexibleColumnLayout$ColumnResizeEventParameters>;
8459
+ export type FlexibleColumnLayout$ColumnResizeEvent = Event<
8460
+ FlexibleColumnLayout$ColumnResizeEventParameters,
8461
+ FlexibleColumnLayout
8462
+ >;
8459
8463
 
8460
8464
  export interface FlexibleColumnLayout$EndColumnNavigateEventParameters {
8461
8465
  /**
@@ -8510,13 +8514,10 @@ declare module "sap/f/FlexibleColumnLayout" {
8510
8514
  direction?: string;
8511
8515
  }
8512
8516
 
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
- export type FlexibleColumnLayout$EndColumnNavigateEvent = Event<FlexibleColumnLayout$EndColumnNavigateEventParameters>;
8517
+ export type FlexibleColumnLayout$EndColumnNavigateEvent = Event<
8518
+ FlexibleColumnLayout$EndColumnNavigateEventParameters,
8519
+ FlexibleColumnLayout
8520
+ >;
8520
8521
 
8521
8522
  export interface FlexibleColumnLayout$MidColumnNavigateEventParameters {
8522
8523
  /**
@@ -8571,13 +8572,10 @@ declare module "sap/f/FlexibleColumnLayout" {
8571
8572
  direction?: string;
8572
8573
  }
8573
8574
 
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
- export type FlexibleColumnLayout$MidColumnNavigateEvent = Event<FlexibleColumnLayout$MidColumnNavigateEventParameters>;
8575
+ export type FlexibleColumnLayout$MidColumnNavigateEvent = Event<
8576
+ FlexibleColumnLayout$MidColumnNavigateEventParameters,
8577
+ FlexibleColumnLayout
8578
+ >;
8581
8579
 
8582
8580
  export interface FlexibleColumnLayout$StateChangeEventParameters {
8583
8581
  /**
@@ -8607,13 +8605,10 @@ declare module "sap/f/FlexibleColumnLayout" {
8607
8605
  isResize?: boolean;
8608
8606
  }
8609
8607
 
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
- export type FlexibleColumnLayout$StateChangeEvent = Event<FlexibleColumnLayout$StateChangeEventParameters>;
8608
+ export type FlexibleColumnLayout$StateChangeEvent = Event<
8609
+ FlexibleColumnLayout$StateChangeEventParameters,
8610
+ FlexibleColumnLayout
8611
+ >;
8617
8612
  }
8618
8613
 
8619
8614
  declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
@@ -10351,23 +10346,17 @@ declare module "sap/f/GridContainer" {
10351
10346
  /**
10352
10347
  * Fired when the currently active GridSettings change.
10353
10348
  */
10354
- layoutChange?: (
10355
- oEvent: Event<GridContainer$LayoutChangeEventParameters>
10356
- ) => void;
10349
+ layoutChange?: (oEvent: GridContainer$LayoutChangeEvent) => void;
10357
10350
 
10358
10351
  /**
10359
10352
  * Fired when the grid columns count is changed.
10360
10353
  */
10361
- columnsChange?: (
10362
- oEvent: Event<GridContainer$ColumnsChangeEventParameters>
10363
- ) => void;
10354
+ columnsChange?: (oEvent: GridContainer$ColumnsChangeEvent) => void;
10364
10355
 
10365
10356
  /**
10366
10357
  * Fires if the border of the visualizations is reached so that an application can react on this.
10367
10358
  */
10368
- borderReached?: (
10369
- oEvent: Event<GridContainer$BorderReachedEventParameters>
10370
- ) => void;
10359
+ borderReached?: (oEvent: GridContainer$BorderReachedEvent) => void;
10371
10360
  }
10372
10361
 
10373
10362
  export interface GridContainer$BorderReachedEventParameters {
@@ -10392,13 +10381,10 @@ declare module "sap/f/GridContainer" {
10392
10381
  column?: int;
10393
10382
  }
10394
10383
 
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
- export type GridContainer$BorderReachedEvent = Event<GridContainer$BorderReachedEventParameters>;
10384
+ export type GridContainer$BorderReachedEvent = Event<
10385
+ GridContainer$BorderReachedEventParameters,
10386
+ GridContainer
10387
+ >;
10402
10388
 
10403
10389
  export interface GridContainer$ColumnsChangeEventParameters {
10404
10390
  /**
@@ -10407,13 +10393,10 @@ declare module "sap/f/GridContainer" {
10407
10393
  columns?: int;
10408
10394
  }
10409
10395
 
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
- export type GridContainer$ColumnsChangeEvent = Event<GridContainer$ColumnsChangeEventParameters>;
10396
+ export type GridContainer$ColumnsChangeEvent = Event<
10397
+ GridContainer$ColumnsChangeEventParameters,
10398
+ GridContainer
10399
+ >;
10417
10400
 
10418
10401
  export interface GridContainer$LayoutChangeEventParameters {
10419
10402
  /**
@@ -10422,13 +10405,10 @@ declare module "sap/f/GridContainer" {
10422
10405
  layout?: string;
10423
10406
  }
10424
10407
 
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
- export type GridContainer$LayoutChangeEvent = Event<GridContainer$LayoutChangeEventParameters>;
10408
+ export type GridContainer$LayoutChangeEvent = Event<
10409
+ GridContainer$LayoutChangeEventParameters,
10410
+ GridContainer
10411
+ >;
10432
10412
  }
10433
10413
 
10434
10414
  declare module "sap/f/GridContainerItemLayoutData" {
@@ -11229,9 +11209,7 @@ declare module "sap/f/GridList" {
11229
11209
  /**
11230
11210
  * Fires if the border of the visualizations is reached so that an application can react on this.
11231
11211
  */
11232
- borderReached?: (
11233
- oEvent: Event<GridList$BorderReachedEventParameters>
11234
- ) => void;
11212
+ borderReached?: (oEvent: GridList$BorderReachedEvent) => void;
11235
11213
  }
11236
11214
 
11237
11215
  export interface GridList$BorderReachedEventParameters {
@@ -11256,13 +11234,10 @@ declare module "sap/f/GridList" {
11256
11234
  column?: int;
11257
11235
  }
11258
11236
 
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
- export type GridList$BorderReachedEvent = Event<GridList$BorderReachedEventParameters>;
11237
+ export type GridList$BorderReachedEvent = Event<
11238
+ GridList$BorderReachedEventParameters,
11239
+ GridList
11240
+ >;
11266
11241
  }
11267
11242
 
11268
11243
  declare module "sap/f/GridListItem" {
@@ -11938,7 +11913,7 @@ declare module "sap/f/ProductSwitch" {
11938
11913
  /**
11939
11914
  * Fires when an unselected item is pressed.
11940
11915
  */
11941
- change?: (oEvent: Event<ProductSwitch$ChangeEventParameters>) => void;
11916
+ change?: (oEvent: ProductSwitch$ChangeEvent) => void;
11942
11917
  }
11943
11918
 
11944
11919
  export interface ProductSwitch$ChangeEventParameters {
@@ -11948,13 +11923,10 @@ declare module "sap/f/ProductSwitch" {
11948
11923
  itemPressed?: ProductSwitchItem;
11949
11924
  }
11950
11925
 
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
- export type ProductSwitch$ChangeEvent = Event<ProductSwitch$ChangeEventParameters>;
11926
+ export type ProductSwitch$ChangeEvent = Event<
11927
+ ProductSwitch$ChangeEventParameters,
11928
+ ProductSwitch
11929
+ >;
11958
11930
  }
11959
11931
 
11960
11932
  declare module "sap/f/ProductSwitchItem" {
@@ -13394,23 +13366,21 @@ declare module "sap/f/SearchManager" {
13394
13366
  /**
13395
13367
  * Fired when the user triggers a search.
13396
13368
  */
13397
- search?: (oEvent: Event<SearchManager$SearchEventParameters>) => void;
13369
+ search?: (oEvent: SearchManager$SearchEvent) => void;
13398
13370
 
13399
13371
  /**
13400
13372
  * Fired when the value of the search field is changed by the user, for example at each key press.
13401
13373
  *
13402
13374
  * **Note:** Do not invalidate or re-render a focused search field, especially during the `liveChange` event.
13403
13375
  */
13404
- liveChange?: (
13405
- oEvent: Event<SearchManager$LiveChangeEventParameters>
13406
- ) => void;
13376
+ liveChange?: (oEvent: SearchManager$LiveChangeEvent) => void;
13407
13377
 
13408
13378
  /**
13409
13379
  * Fired when the search field is initially focused or its value is changed by the user. This event means
13410
13380
  * that suggestion data should be updated, in case if suggestions are used. Use the value parameter to create
13411
13381
  * new suggestions for it.
13412
13382
  */
13413
- suggest?: (oEvent: Event<SearchManager$SuggestEventParameters>) => void;
13383
+ suggest?: (oEvent: SearchManager$SuggestEvent) => void;
13414
13384
  }
13415
13385
 
13416
13386
  export interface SearchManager$LiveChangeEventParameters {
@@ -13420,13 +13390,10 @@ declare module "sap/f/SearchManager" {
13420
13390
  newValue?: string;
13421
13391
  }
13422
13392
 
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
- export type SearchManager$LiveChangeEvent = Event<SearchManager$LiveChangeEventParameters>;
13393
+ export type SearchManager$LiveChangeEvent = Event<
13394
+ SearchManager$LiveChangeEventParameters,
13395
+ SearchManager
13396
+ >;
13430
13397
 
13431
13398
  export interface SearchManager$SearchEventParameters {
13432
13399
  /**
@@ -13440,13 +13407,10 @@ declare module "sap/f/SearchManager" {
13440
13407
  clearButtonPressed?: boolean;
13441
13408
  }
13442
13409
 
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
- export type SearchManager$SearchEvent = Event<SearchManager$SearchEventParameters>;
13410
+ export type SearchManager$SearchEvent = Event<
13411
+ SearchManager$SearchEventParameters,
13412
+ SearchManager
13413
+ >;
13450
13414
 
13451
13415
  export interface SearchManager$SuggestEventParameters {
13452
13416
  /**
@@ -13455,13 +13419,10 @@ declare module "sap/f/SearchManager" {
13455
13419
  suggestValue?: string;
13456
13420
  }
13457
13421
 
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
- export type SearchManager$SuggestEvent = Event<SearchManager$SuggestEventParameters>;
13422
+ export type SearchManager$SuggestEvent = Event<
13423
+ SearchManager$SuggestEventParameters,
13424
+ SearchManager
13425
+ >;
13465
13426
  }
13466
13427
 
13467
13428
  declare module "sap/f/semantic/AddAction" {
@@ -19317,58 +19278,44 @@ declare module "sap/f/ShellBar" {
19317
19278
  /**
19318
19279
  * Fired when the `homeIcon` is pressed.
19319
19280
  */
19320
- homeIconPressed?: (
19321
- oEvent: Event<ShellBar$HomeIconPressedEventParameters>
19322
- ) => void;
19281
+ homeIconPressed?: (oEvent: ShellBar$HomeIconPressedEvent) => void;
19323
19282
 
19324
19283
  /**
19325
19284
  * Fired when the alternative menu button is pressed.
19326
19285
  */
19327
- menuButtonPressed?: (
19328
- oEvent: Event<ShellBar$MenuButtonPressedEventParameters>
19329
- ) => void;
19286
+ menuButtonPressed?: (oEvent: ShellBar$MenuButtonPressedEvent) => void;
19330
19287
 
19331
19288
  /**
19332
19289
  * Fired when the navigation/back button is pressed.
19333
19290
  */
19334
- navButtonPressed?: (
19335
- oEvent: Event<ShellBar$NavButtonPressedEventParameters>
19336
- ) => void;
19291
+ navButtonPressed?: (oEvent: ShellBar$NavButtonPressedEvent) => void;
19337
19292
 
19338
19293
  /**
19339
19294
  * Fired when the SAP CoPilot icon is pressed.
19340
19295
  */
19341
- copilotPressed?: (
19342
- oEvent: Event<ShellBar$CopilotPressedEventParameters>
19343
- ) => void;
19296
+ copilotPressed?: (oEvent: ShellBar$CopilotPressedEvent) => void;
19344
19297
 
19345
19298
  /**
19346
19299
  * Fired when the search button is pressed.
19347
19300
  */
19348
- searchButtonPressed?: (
19349
- oEvent: Event<ShellBar$SearchButtonPressedEventParameters>
19350
- ) => void;
19301
+ searchButtonPressed?: (oEvent: ShellBar$SearchButtonPressedEvent) => void;
19351
19302
 
19352
19303
  /**
19353
19304
  * Fired when the notifications button is pressed.
19354
19305
  */
19355
- notificationsPressed?: (
19356
- oEvent: Event<ShellBar$NotificationsPressedEventParameters>
19357
- ) => void;
19306
+ notificationsPressed?: (oEvent: ShellBar$NotificationsPressedEvent) => void;
19358
19307
 
19359
19308
  /**
19360
19309
  * Fired when the product switcher button is pressed.
19361
19310
  */
19362
19311
  productSwitcherPressed?: (
19363
- oEvent: Event<ShellBar$ProductSwitcherPressedEventParameters>
19312
+ oEvent: ShellBar$ProductSwitcherPressedEvent
19364
19313
  ) => void;
19365
19314
 
19366
19315
  /**
19367
19316
  * Fired when the profile avatar is pressed.
19368
19317
  */
19369
- avatarPressed?: (
19370
- oEvent: Event<ShellBar$AvatarPressedEventParameters>
19371
- ) => void;
19318
+ avatarPressed?: (oEvent: ShellBar$AvatarPressedEvent) => void;
19372
19319
  }
19373
19320
 
19374
19321
  export interface ShellBar$AvatarPressedEventParameters {
@@ -19378,13 +19325,10 @@ declare module "sap/f/ShellBar" {
19378
19325
  avatar?: Avatar;
19379
19326
  }
19380
19327
 
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
- export type ShellBar$AvatarPressedEvent = Event<ShellBar$AvatarPressedEventParameters>;
19328
+ export type ShellBar$AvatarPressedEvent = Event<
19329
+ ShellBar$AvatarPressedEventParameters,
19330
+ ShellBar
19331
+ >;
19388
19332
 
19389
19333
  export interface ShellBar$CopilotPressedEventParameters {
19390
19334
  /**
@@ -19393,13 +19337,10 @@ declare module "sap/f/ShellBar" {
19393
19337
  image?: Image;
19394
19338
  }
19395
19339
 
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
- export type ShellBar$CopilotPressedEvent = Event<ShellBar$CopilotPressedEventParameters>;
19340
+ export type ShellBar$CopilotPressedEvent = Event<
19341
+ ShellBar$CopilotPressedEventParameters,
19342
+ ShellBar
19343
+ >;
19403
19344
 
19404
19345
  export interface ShellBar$HomeIconPressedEventParameters {
19405
19346
  /**
@@ -19408,13 +19349,10 @@ declare module "sap/f/ShellBar" {
19408
19349
  icon?: Image;
19409
19350
  }
19410
19351
 
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
- export type ShellBar$HomeIconPressedEvent = Event<ShellBar$HomeIconPressedEventParameters>;
19352
+ export type ShellBar$HomeIconPressedEvent = Event<
19353
+ ShellBar$HomeIconPressedEventParameters,
19354
+ ShellBar
19355
+ >;
19418
19356
 
19419
19357
  export interface ShellBar$MenuButtonPressedEventParameters {
19420
19358
  /**
@@ -19423,13 +19361,10 @@ declare module "sap/f/ShellBar" {
19423
19361
  button?: Button;
19424
19362
  }
19425
19363
 
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
- export type ShellBar$MenuButtonPressedEvent = Event<ShellBar$MenuButtonPressedEventParameters>;
19364
+ export type ShellBar$MenuButtonPressedEvent = Event<
19365
+ ShellBar$MenuButtonPressedEventParameters,
19366
+ ShellBar
19367
+ >;
19433
19368
 
19434
19369
  export interface ShellBar$NavButtonPressedEventParameters {
19435
19370
  /**
@@ -19438,13 +19373,10 @@ declare module "sap/f/ShellBar" {
19438
19373
  button?: Button;
19439
19374
  }
19440
19375
 
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
- export type ShellBar$NavButtonPressedEvent = Event<ShellBar$NavButtonPressedEventParameters>;
19376
+ export type ShellBar$NavButtonPressedEvent = Event<
19377
+ ShellBar$NavButtonPressedEventParameters,
19378
+ ShellBar
19379
+ >;
19448
19380
 
19449
19381
  export interface ShellBar$NotificationsPressedEventParameters {
19450
19382
  /**
@@ -19453,13 +19385,10 @@ declare module "sap/f/ShellBar" {
19453
19385
  button?: Button;
19454
19386
  }
19455
19387
 
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
- export type ShellBar$NotificationsPressedEvent = Event<ShellBar$NotificationsPressedEventParameters>;
19388
+ export type ShellBar$NotificationsPressedEvent = Event<
19389
+ ShellBar$NotificationsPressedEventParameters,
19390
+ ShellBar
19391
+ >;
19463
19392
 
19464
19393
  export interface ShellBar$ProductSwitcherPressedEventParameters {
19465
19394
  /**
@@ -19468,13 +19397,10 @@ declare module "sap/f/ShellBar" {
19468
19397
  button?: Button;
19469
19398
  }
19470
19399
 
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
- export type ShellBar$ProductSwitcherPressedEvent = Event<ShellBar$ProductSwitcherPressedEventParameters>;
19400
+ export type ShellBar$ProductSwitcherPressedEvent = Event<
19401
+ ShellBar$ProductSwitcherPressedEventParameters,
19402
+ ShellBar
19403
+ >;
19478
19404
 
19479
19405
  export interface ShellBar$SearchButtonPressedEventParameters {
19480
19406
  /**
@@ -19483,13 +19409,10 @@ declare module "sap/f/ShellBar" {
19483
19409
  button?: Button;
19484
19410
  }
19485
19411
 
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
- export type ShellBar$SearchButtonPressedEvent = Event<ShellBar$SearchButtonPressedEventParameters>;
19412
+ export type ShellBar$SearchButtonPressedEvent = Event<
19413
+ ShellBar$SearchButtonPressedEventParameters,
19414
+ ShellBar
19415
+ >;
19493
19416
  }
19494
19417
 
19495
19418
  declare module "sap/f/SidePanel" {
@@ -19584,10 +19507,10 @@ declare module "sap/f/SidePanel" {
19584
19507
  * - [Enter] - set the expanded side panel width to the default value defined in `sidePanelWidth` property
19585
19508
  *
19586
19509
  * - [Shift]+[F10] or [Context menu] - show the resize context menu
19587
- * - [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded side panel with the regular
19588
- * step
19589
- * - [Shift] + [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded side panel with
19590
- * the larger step
19510
+ * - [Arrow Left] or [Arrow Up] / [Arrow Right] or [Arrow Down] - increase/decrease the width of the expanded
19511
+ * side panel with the regular step
19512
+ * - [Shift] + [Arrow Left] or [Shift] + [Arrow Up] / [Shift] + [Arrow Right] or [Shift] + [Arrow Down]
19513
+ * - increase/decrease the width of the expanded side panel with the larger step
19591
19514
  */
19592
19515
  export default class SidePanel extends Control {
19593
19516
  /**
@@ -20256,7 +20179,7 @@ declare module "sap/f/SidePanel" {
20256
20179
  * of a different action item, the selection will be cancelled, and the next event (for expansion of a new
20257
20180
  * action item) will not be fired and the new side content will not be displayed.
20258
20181
  */
20259
- toggle?: (oEvent: Event<SidePanel$ToggleEventParameters>) => void;
20182
+ toggle?: (oEvent: SidePanel$ToggleEvent) => void;
20260
20183
  }
20261
20184
 
20262
20185
  export interface SidePanel$ToggleEventParameters {
@@ -20271,13 +20194,10 @@ declare module "sap/f/SidePanel" {
20271
20194
  expanded?: boolean;
20272
20195
  }
20273
20196
 
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
- export type SidePanel$ToggleEvent = Event<SidePanel$ToggleEventParameters>;
20197
+ export type SidePanel$ToggleEvent = Event<
20198
+ SidePanel$ToggleEventParameters,
20199
+ SidePanel
20200
+ >;
20281
20201
  }
20282
20202
 
20283
20203
  declare module "sap/f/SidePanelItem" {