@openui5/ts-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/README.md CHANGED
@@ -4,23 +4,13 @@
4
4
 
5
5
  This npm package contains the types signatures (based on deprecated globals, see below) for all the OpenUI5 libraries.
6
6
 
7
- These signatures can be used to:
7
+ <b>NOTE:</b> "based on globals" means that it supports the usage of the global "sap" object and the huge tree below this global object containing all modules and controls. But this usage is <b>no longer recommended</b>. In traditional JavaScript, UI5 application code should use the asynchronous `sap.ui.define()`/`sap.ui.require()` calls instead and for TypeScript code we recommend using ES6 module syntax provided by the [@openui5/types](https://www.npmjs.com/package/@openui5/types) package. So better use that one instead of this package.
8
8
 
9
- 1. Enable advanced content assist in IDEs, e.g: (VSCode / IntelliJ / Webstorm) for OpenUI5.
10
- 1. Integrate type checking for OpenUI5 applications using the TypeScript compiler.
11
-
12
- These two capabilities are available both for OpenUI5 apps written in TypeScript **and** in JavaScript.
13
-
14
- <b>NOTE:</b> "based on globals" means that it supports the usage of the global "sap" object and the huge tree below this global object containing all modules and controls. But this usage is <b>no longer recommended</b>. In traditional JavaScript, UI5 application code should use the asynchronous sap.ui.define()/sap.ui.require() calls instead and for TypeScript code we recommend using ES6 module syntax provided by the [@openui5/ts-types-esm](https://www.npmjs.com/package/@openui5/ts-types-esm) package. So better use that one instead of this package.
9
+ The central entry point for all information about using UI5 with TypeScript (incl. sample apps and templates) is at https://sap.github.io/ui5-typescript.
15
10
 
16
11
  ## Status
17
12
 
18
- This project is in an experimental **_Beta State_**. Significant changes are likely to occur,
19
- including potential **breaking changes**.
20
-
21
- For information on changes in the type definitions, in particular ones which require adaptation, please refer to the [Release Notes](https://sap.github.io/ui5-typescript/releasenotes.html).
22
-
23
- The central entry point for all information about using UI5 with TypeScript (incl. sample apps and templates) is at https://sap.github.io/ui5-typescript.
13
+ This project **deprecated**. Please use [@openui5/types](https://www.npmjs.com/package/@openui5/types) instead.
24
14
 
25
15
  ## License
26
- OpenUI5 is licensed under [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
16
+ OpenUI5 and the type definitions in this package are copyright by SAP and contributors and licensed under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types",
3
- "version": "1.115.1",
3
+ "version": "1.116.0",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/index.d.ts CHANGED
@@ -16,9 +16,15 @@
16
16
  */
17
17
 
18
18
  /**
19
- * This is a Beta version of the OpenUI5 TypeScript signatures.
20
- * Significant changes may occur in future versions,
21
- * including potential breaking changes.
19
+ * We encourage you to use SAPUI5 with TypeScript productively for an
20
+ * improved development efficiency and experience. TypeScript itself keeps
21
+ * evolving and we try to further improve the UI5 type definitions, so there
22
+ * could be potential incompatible changes between versions of the type
23
+ * definitions. However, such incompatibilities would only affect the
24
+ * compilation of your code but will not cause runtime issues in your
25
+ * application. Plus, there are various ways to easily deal with them:
26
+ * you can, for example, simply keep using the previous version of the
27
+ * UI5 type definitions together with an updated UI5 runtime.
22
28
  */
23
29
  /// <reference path="./sap.ui.codeeditor.d.ts"/>
24
30
  /// <reference path="./sap.ui.commons.d.ts"/>
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 namespace sap {
4
4
  /**
@@ -70,6 +70,16 @@ declare namespace sap {
70
70
  */
71
71
  dataTimestamp?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
72
72
 
73
+ /**
74
+ * @experimental (since 1.116) - this feature is experimental and the API may change.
75
+ *
76
+ * Defines the status text visibility.
77
+ */
78
+ statusVisible?:
79
+ | boolean
80
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
81
+ | `{${string}}`;
82
+
73
83
  /**
74
84
  * @since 1.86
75
85
  * @experimental (since 1.86)
@@ -418,6 +428,18 @@ declare namespace sap {
418
428
  * @returns Value of property `dataTimestamp`
419
429
  */
420
430
  getDataTimestamp(): string;
431
+ /**
432
+ * @experimental (since 1.116) - this feature is experimental and the API may change.
433
+ *
434
+ * Gets current value of property {@link #getStatusVisible statusVisible}.
435
+ *
436
+ * Defines the status text visibility.
437
+ *
438
+ * Default value is `true`.
439
+ *
440
+ * @returns Value of property `statusVisible`
441
+ */
442
+ getStatusVisible(): boolean;
421
443
  /**
422
444
  * @since 1.86
423
445
  * @experimental (since 1.86)
@@ -427,6 +449,25 @@ declare namespace sap {
427
449
  * Defines the toolbar.
428
450
  */
429
451
  getToolbar(): sap.ui.core.Control;
452
+ /**
453
+ * @experimental (since 1.116) - this feature is experimental and the API may change.
454
+ *
455
+ * Sets a new value for property {@link #getStatusVisible statusVisible}.
456
+ *
457
+ * Defines the status text visibility.
458
+ *
459
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
460
+ *
461
+ * Default value is `true`.
462
+ *
463
+ * @returns Reference to `this` in order to allow method chaining
464
+ */
465
+ setStatusVisible(
466
+ /**
467
+ * New value for property `statusVisible`
468
+ */
469
+ bStatusVisible?: boolean
470
+ ): this;
430
471
  /**
431
472
  * @since 1.86
432
473
  * @experimental (since 1.86)
@@ -1745,20 +1786,9 @@ declare namespace sap {
1745
1786
  */
1746
1787
  End = "End",
1747
1788
  }
1748
- /**
1749
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Header$PressEventParameters'
1750
- * in 1.115.1 and any later releases.
1751
- */
1752
- type $HeaderPressEventParameters = sap.f.cards.Header$PressEventParameters;
1753
1789
 
1754
1790
  type Header$PressEvent = sap.ui.base.Event<Header$PressEventParameters>;
1755
1791
 
1756
- /**
1757
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'NumericHeader$PressEventParameters'
1758
- * in 1.115.1 and any later releases.
1759
- */
1760
- type $NumericHeaderPressEventParameters = sap.f.cards.NumericHeader$PressEventParameters;
1761
-
1762
1792
  type NumericHeader$PressEvent = sap.ui.base.Event<NumericHeader$PressEventParameters>;
1763
1793
  }
1764
1794
 
@@ -7023,9 +7053,7 @@ declare namespace sap {
7023
7053
  /**
7024
7054
  * Fired when the user clicks or taps on the control.
7025
7055
  */
7026
- press?: (
7027
- oEvent: sap.ui.base.Event<sap.f.AvatarGroup$PressEventParameters>
7028
- ) => void;
7056
+ press?: (oEvent: AvatarGroup$PressEvent) => void;
7029
7057
  }
7030
7058
 
7031
7059
  interface $AvatarGroupItemSettings extends sap.ui.core.$ControlSettings {
@@ -7257,9 +7285,7 @@ declare namespace sap {
7257
7285
  *
7258
7286
  * The event is fired when the `headerPinned` property is changed via user interaction.
7259
7287
  */
7260
- pinnedStateChange?: (
7261
- oEvent: sap.ui.base.Event<sap.f.DynamicPage$PinnedStateChangeEventParameters>
7262
- ) => void;
7288
+ pinnedStateChange?: (oEvent: DynamicPage$PinnedStateChangeEvent) => void;
7263
7289
  }
7264
7290
 
7265
7291
  interface $DynamicPageAccessibleLandmarkInfoSettings
@@ -7581,9 +7607,7 @@ declare namespace sap {
7581
7607
  * Also fired when the developer toggles the title state by programmatically changing the scroll position
7582
7608
  * of the scrollbar of `DynamicPage`.
7583
7609
  */
7584
- stateChange?: (
7585
- oEvent: sap.ui.base.Event<sap.f.DynamicPageTitle$StateChangeEventParameters>
7586
- ) => void;
7610
+ stateChange?: (oEvent: DynamicPageTitle$StateChangeEvent) => void;
7587
7611
  }
7588
7612
 
7589
7613
  interface $FlexibleColumnLayoutSettings
@@ -7736,9 +7760,7 @@ declare namespace sap {
7736
7760
  * **Note: **The event is suppressed while the control has zero width and will be fired the first time
7737
7761
  * it gets a non-zero width
7738
7762
  */
7739
- stateChange?: (
7740
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$StateChangeEventParameters>
7741
- ) => void;
7763
+ stateChange?: (oEvent: FlexibleColumnLayout$StateChangeEvent) => void;
7742
7764
 
7743
7765
  /**
7744
7766
  * Fires when navigation between two pages in the `Begin` column has been triggered. The transition (if
@@ -7746,7 +7768,7 @@ declare namespace sap {
7746
7768
  * which means that there will be no navigation.
7747
7769
  */
7748
7770
  beginColumnNavigate?: (
7749
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$BeginColumnNavigateEventParameters>
7771
+ oEvent: FlexibleColumnLayout$BeginColumnNavigateEvent
7750
7772
  ) => void;
7751
7773
 
7752
7774
  /**
@@ -7755,7 +7777,7 @@ declare namespace sap {
7755
7777
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7756
7778
  */
7757
7779
  afterBeginColumnNavigate?: (
7758
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters>
7780
+ oEvent: FlexibleColumnLayout$AfterBeginColumnNavigateEvent
7759
7781
  ) => void;
7760
7782
 
7761
7783
  /**
@@ -7764,7 +7786,7 @@ declare namespace sap {
7764
7786
  * which means that there will be no navigation.
7765
7787
  */
7766
7788
  midColumnNavigate?: (
7767
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$MidColumnNavigateEventParameters>
7789
+ oEvent: FlexibleColumnLayout$MidColumnNavigateEvent
7768
7790
  ) => void;
7769
7791
 
7770
7792
  /**
@@ -7773,7 +7795,7 @@ declare namespace sap {
7773
7795
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7774
7796
  */
7775
7797
  afterMidColumnNavigate?: (
7776
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$AfterMidColumnNavigateEventParameters>
7798
+ oEvent: FlexibleColumnLayout$AfterMidColumnNavigateEvent
7777
7799
  ) => void;
7778
7800
 
7779
7801
  /**
@@ -7782,7 +7804,7 @@ declare namespace sap {
7782
7804
  * which means that there will be no navigation.
7783
7805
  */
7784
7806
  endColumnNavigate?: (
7785
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$EndColumnNavigateEventParameters>
7807
+ oEvent: FlexibleColumnLayout$EndColumnNavigateEvent
7786
7808
  ) => void;
7787
7809
 
7788
7810
  /**
@@ -7791,7 +7813,7 @@ declare namespace sap {
7791
7813
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7792
7814
  */
7793
7815
  afterEndColumnNavigate?: (
7794
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$AfterEndColumnNavigateEventParameters>
7816
+ oEvent: FlexibleColumnLayout$AfterEndColumnNavigateEvent
7795
7817
  ) => void;
7796
7818
 
7797
7819
  /**
@@ -7799,9 +7821,7 @@ declare namespace sap {
7799
7821
  *
7800
7822
  * Fired when resize of each column has completed.
7801
7823
  */
7802
- columnResize?: (
7803
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$ColumnResizeEventParameters>
7804
- ) => void;
7824
+ columnResize?: (oEvent: FlexibleColumnLayout$ColumnResizeEvent) => void;
7805
7825
  }
7806
7826
 
7807
7827
  interface $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
@@ -8004,23 +8024,17 @@ declare namespace sap {
8004
8024
  /**
8005
8025
  * Fired when the currently active GridSettings change.
8006
8026
  */
8007
- layoutChange?: (
8008
- oEvent: sap.ui.base.Event<sap.f.GridContainer$LayoutChangeEventParameters>
8009
- ) => void;
8027
+ layoutChange?: (oEvent: GridContainer$LayoutChangeEvent) => void;
8010
8028
 
8011
8029
  /**
8012
8030
  * Fired when the grid columns count is changed.
8013
8031
  */
8014
- columnsChange?: (
8015
- oEvent: sap.ui.base.Event<sap.f.GridContainer$ColumnsChangeEventParameters>
8016
- ) => void;
8032
+ columnsChange?: (oEvent: GridContainer$ColumnsChangeEvent) => void;
8017
8033
 
8018
8034
  /**
8019
8035
  * Fires if the border of the visualizations is reached so that an application can react on this.
8020
8036
  */
8021
- borderReached?: (
8022
- oEvent: sap.ui.base.Event<sap.f.GridContainer$BorderReachedEventParameters>
8023
- ) => void;
8037
+ borderReached?: (oEvent: GridContainer$BorderReachedEvent) => void;
8024
8038
  }
8025
8039
 
8026
8040
  interface $GridContainerItemLayoutDataSettings
@@ -8129,9 +8143,7 @@ declare namespace sap {
8129
8143
  /**
8130
8144
  * Fires if the border of the visualizations is reached so that an application can react on this.
8131
8145
  */
8132
- borderReached?: (
8133
- oEvent: sap.ui.base.Event<sap.f.GridList$BorderReachedEventParameters>
8134
- ) => void;
8146
+ borderReached?: (oEvent: GridList$BorderReachedEvent) => void;
8135
8147
  }
8136
8148
 
8137
8149
  interface $GridListItemSettings extends sap.m.$ListItemBaseSettings {
@@ -8168,9 +8180,7 @@ declare namespace sap {
8168
8180
  /**
8169
8181
  * Fires when an unselected item is pressed.
8170
8182
  */
8171
- change?: (
8172
- oEvent: sap.ui.base.Event<sap.f.ProductSwitch$ChangeEventParameters>
8173
- ) => void;
8183
+ change?: (oEvent: ProductSwitch$ChangeEvent) => void;
8174
8184
  }
8175
8185
 
8176
8186
  interface $ProductSwitchItemSettings extends sap.ui.core.$ControlSettings {
@@ -8267,27 +8277,21 @@ declare namespace sap {
8267
8277
  /**
8268
8278
  * Fired when the user triggers a search.
8269
8279
  */
8270
- search?: (
8271
- oEvent: sap.ui.base.Event<sap.f.SearchManager$SearchEventParameters>
8272
- ) => void;
8280
+ search?: (oEvent: SearchManager$SearchEvent) => void;
8273
8281
 
8274
8282
  /**
8275
8283
  * Fired when the value of the search field is changed by the user, for example at each key press.
8276
8284
  *
8277
8285
  * **Note:** Do not invalidate or re-render a focused search field, especially during the `liveChange` event.
8278
8286
  */
8279
- liveChange?: (
8280
- oEvent: sap.ui.base.Event<sap.f.SearchManager$LiveChangeEventParameters>
8281
- ) => void;
8287
+ liveChange?: (oEvent: SearchManager$LiveChangeEvent) => void;
8282
8288
 
8283
8289
  /**
8284
8290
  * Fired when the search field is initially focused or its value is changed by the user. This event means
8285
8291
  * that suggestion data should be updated, in case if suggestions are used. Use the value parameter to create
8286
8292
  * new suggestions for it.
8287
8293
  */
8288
- suggest?: (
8289
- oEvent: sap.ui.base.Event<sap.f.SearchManager$SuggestEventParameters>
8290
- ) => void;
8294
+ suggest?: (oEvent: SearchManager$SuggestEvent) => void;
8291
8295
  }
8292
8296
 
8293
8297
  interface $ShellBarSettings extends sap.ui.core.$ControlSettings {
@@ -8407,58 +8411,46 @@ declare namespace sap {
8407
8411
  /**
8408
8412
  * Fired when the `homeIcon` is pressed.
8409
8413
  */
8410
- homeIconPressed?: (
8411
- oEvent: sap.ui.base.Event<sap.f.ShellBar$HomeIconPressedEventParameters>
8412
- ) => void;
8414
+ homeIconPressed?: (oEvent: ShellBar$HomeIconPressedEvent) => void;
8413
8415
 
8414
8416
  /**
8415
8417
  * Fired when the alternative menu button is pressed.
8416
8418
  */
8417
- menuButtonPressed?: (
8418
- oEvent: sap.ui.base.Event<sap.f.ShellBar$MenuButtonPressedEventParameters>
8419
- ) => void;
8419
+ menuButtonPressed?: (oEvent: ShellBar$MenuButtonPressedEvent) => void;
8420
8420
 
8421
8421
  /**
8422
8422
  * Fired when the navigation/back button is pressed.
8423
8423
  */
8424
- navButtonPressed?: (
8425
- oEvent: sap.ui.base.Event<sap.f.ShellBar$NavButtonPressedEventParameters>
8426
- ) => void;
8424
+ navButtonPressed?: (oEvent: ShellBar$NavButtonPressedEvent) => void;
8427
8425
 
8428
8426
  /**
8429
8427
  * Fired when the SAP CoPilot icon is pressed.
8430
8428
  */
8431
- copilotPressed?: (
8432
- oEvent: sap.ui.base.Event<sap.f.ShellBar$CopilotPressedEventParameters>
8433
- ) => void;
8429
+ copilotPressed?: (oEvent: ShellBar$CopilotPressedEvent) => void;
8434
8430
 
8435
8431
  /**
8436
8432
  * Fired when the search button is pressed.
8437
8433
  */
8438
- searchButtonPressed?: (
8439
- oEvent: sap.ui.base.Event<sap.f.ShellBar$SearchButtonPressedEventParameters>
8440
- ) => void;
8434
+ searchButtonPressed?: (oEvent: ShellBar$SearchButtonPressedEvent) => void;
8441
8435
 
8442
8436
  /**
8443
8437
  * Fired when the notifications button is pressed.
8444
8438
  */
8445
8439
  notificationsPressed?: (
8446
- oEvent: sap.ui.base.Event<sap.f.ShellBar$NotificationsPressedEventParameters>
8440
+ oEvent: ShellBar$NotificationsPressedEvent
8447
8441
  ) => void;
8448
8442
 
8449
8443
  /**
8450
8444
  * Fired when the product switcher button is pressed.
8451
8445
  */
8452
8446
  productSwitcherPressed?: (
8453
- oEvent: sap.ui.base.Event<sap.f.ShellBar$ProductSwitcherPressedEventParameters>
8447
+ oEvent: ShellBar$ProductSwitcherPressedEvent
8454
8448
  ) => void;
8455
8449
 
8456
8450
  /**
8457
8451
  * Fired when the profile avatar is pressed.
8458
8452
  */
8459
- avatarPressed?: (
8460
- oEvent: sap.ui.base.Event<sap.f.ShellBar$AvatarPressedEventParameters>
8461
- ) => void;
8453
+ avatarPressed?: (oEvent: ShellBar$AvatarPressedEvent) => void;
8462
8454
  }
8463
8455
 
8464
8456
  interface $SidePanelSettings extends sap.ui.core.$ControlSettings {
@@ -8585,9 +8577,7 @@ declare namespace sap {
8585
8577
  * of a different action item, the selection will be cancelled, and the next event (for expansion of a new
8586
8578
  * action item) will not be fired and the new side content will not be displayed.
8587
8579
  */
8588
- toggle?: (
8589
- oEvent: sap.ui.base.Event<sap.f.SidePanel$ToggleEventParameters>
8590
- ) => void;
8580
+ toggle?: (oEvent: SidePanel$ToggleEvent) => void;
8591
8581
  }
8592
8582
 
8593
8583
  interface $SidePanelItemSettings extends sap.ui.core.$ItemSettings {
@@ -19686,228 +19676,60 @@ declare namespace sap {
19686
19676
  */
19687
19677
  type IllustratedMessageType = sap.m.IllustratedMessageType;
19688
19678
 
19689
- /**
19690
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'AvatarGroup$PressEventParameters'
19691
- * in 1.115.1 and any later releases.
19692
- */
19693
- type $AvatarGroupPressEventParameters = sap.f.AvatarGroup$PressEventParameters;
19694
-
19695
19679
  type AvatarGroup$PressEvent = sap.ui.base.Event<AvatarGroup$PressEventParameters>;
19696
19680
 
19697
- /**
19698
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DynamicPage$PinnedStateChangeEventParameters'
19699
- * in 1.115.1 and any later releases.
19700
- */
19701
- type $DynamicPagePinnedStateChangeEventParameters = sap.f.DynamicPage$PinnedStateChangeEventParameters;
19702
-
19703
19681
  type DynamicPage$PinnedStateChangeEvent = sap.ui.base.Event<DynamicPage$PinnedStateChangeEventParameters>;
19704
19682
 
19705
- /**
19706
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DynamicPageTitle$StateChangeEventParameters'
19707
- * in 1.115.1 and any later releases.
19708
- */
19709
- type $DynamicPageTitleStateChangeEventParameters = sap.f.DynamicPageTitle$StateChangeEventParameters;
19710
-
19711
19683
  type DynamicPageTitle$StateChangeEvent = sap.ui.base.Event<DynamicPageTitle$StateChangeEventParameters>;
19712
19684
 
19713
- /**
19714
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters'
19715
- * in 1.115.1 and any later releases.
19716
- */
19717
- type $FlexibleColumnLayoutAfterBeginColumnNavigateEventParameters = sap.f.FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters;
19718
-
19719
19685
  type FlexibleColumnLayout$AfterBeginColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters>;
19720
19686
 
19721
- /**
19722
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$AfterEndColumnNavigateEventParameters'
19723
- * in 1.115.1 and any later releases.
19724
- */
19725
- type $FlexibleColumnLayoutAfterEndColumnNavigateEventParameters = sap.f.FlexibleColumnLayout$AfterEndColumnNavigateEventParameters;
19726
-
19727
19687
  type FlexibleColumnLayout$AfterEndColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$AfterEndColumnNavigateEventParameters>;
19728
19688
 
19729
- /**
19730
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$AfterMidColumnNavigateEventParameters'
19731
- * in 1.115.1 and any later releases.
19732
- */
19733
- type $FlexibleColumnLayoutAfterMidColumnNavigateEventParameters = sap.f.FlexibleColumnLayout$AfterMidColumnNavigateEventParameters;
19734
-
19735
19689
  type FlexibleColumnLayout$AfterMidColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$AfterMidColumnNavigateEventParameters>;
19736
19690
 
19737
- /**
19738
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$BeginColumnNavigateEventParameters'
19739
- * in 1.115.1 and any later releases.
19740
- */
19741
- type $FlexibleColumnLayoutBeginColumnNavigateEventParameters = sap.f.FlexibleColumnLayout$BeginColumnNavigateEventParameters;
19742
-
19743
19691
  type FlexibleColumnLayout$BeginColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$BeginColumnNavigateEventParameters>;
19744
19692
 
19745
- /**
19746
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$ColumnResizeEventParameters'
19747
- * in 1.115.1 and any later releases.
19748
- */
19749
- type $FlexibleColumnLayoutColumnResizeEventParameters = sap.f.FlexibleColumnLayout$ColumnResizeEventParameters;
19750
-
19751
19693
  type FlexibleColumnLayout$ColumnResizeEvent = sap.ui.base.Event<FlexibleColumnLayout$ColumnResizeEventParameters>;
19752
19694
 
19753
- /**
19754
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$EndColumnNavigateEventParameters'
19755
- * in 1.115.1 and any later releases.
19756
- */
19757
- type $FlexibleColumnLayoutEndColumnNavigateEventParameters = sap.f.FlexibleColumnLayout$EndColumnNavigateEventParameters;
19758
-
19759
19695
  type FlexibleColumnLayout$EndColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$EndColumnNavigateEventParameters>;
19760
19696
 
19761
- /**
19762
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$MidColumnNavigateEventParameters'
19763
- * in 1.115.1 and any later releases.
19764
- */
19765
- type $FlexibleColumnLayoutMidColumnNavigateEventParameters = sap.f.FlexibleColumnLayout$MidColumnNavigateEventParameters;
19766
-
19767
19697
  type FlexibleColumnLayout$MidColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$MidColumnNavigateEventParameters>;
19768
19698
 
19769
- /**
19770
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FlexibleColumnLayout$StateChangeEventParameters'
19771
- * in 1.115.1 and any later releases.
19772
- */
19773
- type $FlexibleColumnLayoutStateChangeEventParameters = sap.f.FlexibleColumnLayout$StateChangeEventParameters;
19774
-
19775
19699
  type FlexibleColumnLayout$StateChangeEvent = sap.ui.base.Event<FlexibleColumnLayout$StateChangeEventParameters>;
19776
19700
 
19777
- /**
19778
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'GridContainer$BorderReachedEventParameters'
19779
- * in 1.115.1 and any later releases.
19780
- */
19781
- type $GridContainerBorderReachedEventParameters = sap.f.GridContainer$BorderReachedEventParameters;
19782
-
19783
19701
  type GridContainer$BorderReachedEvent = sap.ui.base.Event<GridContainer$BorderReachedEventParameters>;
19784
19702
 
19785
- /**
19786
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'GridContainer$ColumnsChangeEventParameters'
19787
- * in 1.115.1 and any later releases.
19788
- */
19789
- type $GridContainerColumnsChangeEventParameters = sap.f.GridContainer$ColumnsChangeEventParameters;
19790
-
19791
19703
  type GridContainer$ColumnsChangeEvent = sap.ui.base.Event<GridContainer$ColumnsChangeEventParameters>;
19792
19704
 
19793
- /**
19794
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'GridContainer$LayoutChangeEventParameters'
19795
- * in 1.115.1 and any later releases.
19796
- */
19797
- type $GridContainerLayoutChangeEventParameters = sap.f.GridContainer$LayoutChangeEventParameters;
19798
-
19799
19705
  type GridContainer$LayoutChangeEvent = sap.ui.base.Event<GridContainer$LayoutChangeEventParameters>;
19800
19706
 
19801
- /**
19802
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'GridList$BorderReachedEventParameters'
19803
- * in 1.115.1 and any later releases.
19804
- */
19805
- type $GridListBorderReachedEventParameters = sap.f.GridList$BorderReachedEventParameters;
19806
-
19807
19707
  type GridList$BorderReachedEvent = sap.ui.base.Event<GridList$BorderReachedEventParameters>;
19808
19708
 
19809
- /**
19810
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ProductSwitch$ChangeEventParameters'
19811
- * in 1.115.1 and any later releases.
19812
- */
19813
- type $ProductSwitchChangeEventParameters = sap.f.ProductSwitch$ChangeEventParameters;
19814
-
19815
19709
  type ProductSwitch$ChangeEvent = sap.ui.base.Event<ProductSwitch$ChangeEventParameters>;
19816
19710
 
19817
- /**
19818
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SearchManager$LiveChangeEventParameters'
19819
- * in 1.115.1 and any later releases.
19820
- */
19821
- type $SearchManagerLiveChangeEventParameters = sap.f.SearchManager$LiveChangeEventParameters;
19822
-
19823
19711
  type SearchManager$LiveChangeEvent = sap.ui.base.Event<SearchManager$LiveChangeEventParameters>;
19824
19712
 
19825
- /**
19826
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SearchManager$SearchEventParameters'
19827
- * in 1.115.1 and any later releases.
19828
- */
19829
- type $SearchManagerSearchEventParameters = sap.f.SearchManager$SearchEventParameters;
19830
-
19831
19713
  type SearchManager$SearchEvent = sap.ui.base.Event<SearchManager$SearchEventParameters>;
19832
19714
 
19833
- /**
19834
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SearchManager$SuggestEventParameters'
19835
- * in 1.115.1 and any later releases.
19836
- */
19837
- type $SearchManagerSuggestEventParameters = sap.f.SearchManager$SuggestEventParameters;
19838
-
19839
19715
  type SearchManager$SuggestEvent = sap.ui.base.Event<SearchManager$SuggestEventParameters>;
19840
19716
 
19841
- /**
19842
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$AvatarPressedEventParameters'
19843
- * in 1.115.1 and any later releases.
19844
- */
19845
- type $ShellBarAvatarPressedEventParameters = sap.f.ShellBar$AvatarPressedEventParameters;
19846
-
19847
19717
  type ShellBar$AvatarPressedEvent = sap.ui.base.Event<ShellBar$AvatarPressedEventParameters>;
19848
19718
 
19849
- /**
19850
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$CopilotPressedEventParameters'
19851
- * in 1.115.1 and any later releases.
19852
- */
19853
- type $ShellBarCopilotPressedEventParameters = sap.f.ShellBar$CopilotPressedEventParameters;
19854
-
19855
19719
  type ShellBar$CopilotPressedEvent = sap.ui.base.Event<ShellBar$CopilotPressedEventParameters>;
19856
19720
 
19857
- /**
19858
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$HomeIconPressedEventParameters'
19859
- * in 1.115.1 and any later releases.
19860
- */
19861
- type $ShellBarHomeIconPressedEventParameters = sap.f.ShellBar$HomeIconPressedEventParameters;
19862
-
19863
19721
  type ShellBar$HomeIconPressedEvent = sap.ui.base.Event<ShellBar$HomeIconPressedEventParameters>;
19864
19722
 
19865
- /**
19866
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$MenuButtonPressedEventParameters'
19867
- * in 1.115.1 and any later releases.
19868
- */
19869
- type $ShellBarMenuButtonPressedEventParameters = sap.f.ShellBar$MenuButtonPressedEventParameters;
19870
-
19871
19723
  type ShellBar$MenuButtonPressedEvent = sap.ui.base.Event<ShellBar$MenuButtonPressedEventParameters>;
19872
19724
 
19873
- /**
19874
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$NavButtonPressedEventParameters'
19875
- * in 1.115.1 and any later releases.
19876
- */
19877
- type $ShellBarNavButtonPressedEventParameters = sap.f.ShellBar$NavButtonPressedEventParameters;
19878
-
19879
19725
  type ShellBar$NavButtonPressedEvent = sap.ui.base.Event<ShellBar$NavButtonPressedEventParameters>;
19880
19726
 
19881
- /**
19882
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$NotificationsPressedEventParameters'
19883
- * in 1.115.1 and any later releases.
19884
- */
19885
- type $ShellBarNotificationsPressedEventParameters = sap.f.ShellBar$NotificationsPressedEventParameters;
19886
-
19887
19727
  type ShellBar$NotificationsPressedEvent = sap.ui.base.Event<ShellBar$NotificationsPressedEventParameters>;
19888
19728
 
19889
- /**
19890
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$ProductSwitcherPressedEventParameters'
19891
- * in 1.115.1 and any later releases.
19892
- */
19893
- type $ShellBarProductSwitcherPressedEventParameters = sap.f.ShellBar$ProductSwitcherPressedEventParameters;
19894
-
19895
19729
  type ShellBar$ProductSwitcherPressedEvent = sap.ui.base.Event<ShellBar$ProductSwitcherPressedEventParameters>;
19896
19730
 
19897
- /**
19898
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellBar$SearchButtonPressedEventParameters'
19899
- * in 1.115.1 and any later releases.
19900
- */
19901
- type $ShellBarSearchButtonPressedEventParameters = sap.f.ShellBar$SearchButtonPressedEventParameters;
19902
-
19903
19731
  type ShellBar$SearchButtonPressedEvent = sap.ui.base.Event<ShellBar$SearchButtonPressedEventParameters>;
19904
19732
 
19905
- /**
19906
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SidePanel$ToggleEventParameters'
19907
- * in 1.115.1 and any later releases.
19908
- */
19909
- type $SidePanelToggleEventParameters = sap.f.SidePanel$ToggleEventParameters;
19910
-
19911
19733
  type SidePanel$ToggleEvent = sap.ui.base.Event<SidePanel$ToggleEventParameters>;
19912
19734
  }
19913
19735