@openui5/ts-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 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)
@@ -929,6 +970,13 @@ declare namespace sap {
929
970
  */
930
971
  iTitleMaxLines?: int
931
972
  ): this;
973
+ /**
974
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
975
+ *
976
+ *
977
+ * @returns If the icon should be shown.
978
+ */
979
+ shouldShowIcon(): boolean;
932
980
  }
933
981
  /**
934
982
  * @since 1.64
@@ -1745,21 +1793,16 @@ declare namespace sap {
1745
1793
  */
1746
1794
  End = "End",
1747
1795
  }
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
-
1754
- type Header$PressEvent = sap.ui.base.Event<Header$PressEventParameters>;
1755
1796
 
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;
1797
+ type Header$PressEvent = sap.ui.base.Event<
1798
+ Header$PressEventParameters,
1799
+ Header
1800
+ >;
1761
1801
 
1762
- type NumericHeader$PressEvent = sap.ui.base.Event<NumericHeader$PressEventParameters>;
1802
+ type NumericHeader$PressEvent = sap.ui.base.Event<
1803
+ NumericHeader$PressEventParameters,
1804
+ NumericHeader
1805
+ >;
1763
1806
  }
1764
1807
 
1765
1808
  namespace dnd {
@@ -7023,9 +7066,7 @@ declare namespace sap {
7023
7066
  /**
7024
7067
  * Fired when the user clicks or taps on the control.
7025
7068
  */
7026
- press?: (
7027
- oEvent: sap.ui.base.Event<sap.f.AvatarGroup$PressEventParameters>
7028
- ) => void;
7069
+ press?: (oEvent: AvatarGroup$PressEvent) => void;
7029
7070
  }
7030
7071
 
7031
7072
  interface $AvatarGroupItemSettings extends sap.ui.core.$ControlSettings {
@@ -7257,9 +7298,7 @@ declare namespace sap {
7257
7298
  *
7258
7299
  * The event is fired when the `headerPinned` property is changed via user interaction.
7259
7300
  */
7260
- pinnedStateChange?: (
7261
- oEvent: sap.ui.base.Event<sap.f.DynamicPage$PinnedStateChangeEventParameters>
7262
- ) => void;
7301
+ pinnedStateChange?: (oEvent: DynamicPage$PinnedStateChangeEvent) => void;
7263
7302
  }
7264
7303
 
7265
7304
  interface $DynamicPageAccessibleLandmarkInfoSettings
@@ -7581,9 +7620,7 @@ declare namespace sap {
7581
7620
  * Also fired when the developer toggles the title state by programmatically changing the scroll position
7582
7621
  * of the scrollbar of `DynamicPage`.
7583
7622
  */
7584
- stateChange?: (
7585
- oEvent: sap.ui.base.Event<sap.f.DynamicPageTitle$StateChangeEventParameters>
7586
- ) => void;
7623
+ stateChange?: (oEvent: DynamicPageTitle$StateChangeEvent) => void;
7587
7624
  }
7588
7625
 
7589
7626
  interface $FlexibleColumnLayoutSettings
@@ -7736,9 +7773,7 @@ declare namespace sap {
7736
7773
  * **Note: **The event is suppressed while the control has zero width and will be fired the first time
7737
7774
  * it gets a non-zero width
7738
7775
  */
7739
- stateChange?: (
7740
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$StateChangeEventParameters>
7741
- ) => void;
7776
+ stateChange?: (oEvent: FlexibleColumnLayout$StateChangeEvent) => void;
7742
7777
 
7743
7778
  /**
7744
7779
  * Fires when navigation between two pages in the `Begin` column has been triggered. The transition (if
@@ -7746,7 +7781,7 @@ declare namespace sap {
7746
7781
  * which means that there will be no navigation.
7747
7782
  */
7748
7783
  beginColumnNavigate?: (
7749
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$BeginColumnNavigateEventParameters>
7784
+ oEvent: FlexibleColumnLayout$BeginColumnNavigateEvent
7750
7785
  ) => void;
7751
7786
 
7752
7787
  /**
@@ -7755,7 +7790,7 @@ declare namespace sap {
7755
7790
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7756
7791
  */
7757
7792
  afterBeginColumnNavigate?: (
7758
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters>
7793
+ oEvent: FlexibleColumnLayout$AfterBeginColumnNavigateEvent
7759
7794
  ) => void;
7760
7795
 
7761
7796
  /**
@@ -7764,7 +7799,7 @@ declare namespace sap {
7764
7799
  * which means that there will be no navigation.
7765
7800
  */
7766
7801
  midColumnNavigate?: (
7767
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$MidColumnNavigateEventParameters>
7802
+ oEvent: FlexibleColumnLayout$MidColumnNavigateEvent
7768
7803
  ) => void;
7769
7804
 
7770
7805
  /**
@@ -7773,7 +7808,7 @@ declare namespace sap {
7773
7808
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7774
7809
  */
7775
7810
  afterMidColumnNavigate?: (
7776
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$AfterMidColumnNavigateEventParameters>
7811
+ oEvent: FlexibleColumnLayout$AfterMidColumnNavigateEvent
7777
7812
  ) => void;
7778
7813
 
7779
7814
  /**
@@ -7782,7 +7817,7 @@ declare namespace sap {
7782
7817
  * which means that there will be no navigation.
7783
7818
  */
7784
7819
  endColumnNavigate?: (
7785
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$EndColumnNavigateEventParameters>
7820
+ oEvent: FlexibleColumnLayout$EndColumnNavigateEvent
7786
7821
  ) => void;
7787
7822
 
7788
7823
  /**
@@ -7791,7 +7826,7 @@ declare namespace sap {
7791
7826
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7792
7827
  */
7793
7828
  afterEndColumnNavigate?: (
7794
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$AfterEndColumnNavigateEventParameters>
7829
+ oEvent: FlexibleColumnLayout$AfterEndColumnNavigateEvent
7795
7830
  ) => void;
7796
7831
 
7797
7832
  /**
@@ -7799,9 +7834,7 @@ declare namespace sap {
7799
7834
  *
7800
7835
  * Fired when resize of each column has completed.
7801
7836
  */
7802
- columnResize?: (
7803
- oEvent: sap.ui.base.Event<sap.f.FlexibleColumnLayout$ColumnResizeEventParameters>
7804
- ) => void;
7837
+ columnResize?: (oEvent: FlexibleColumnLayout$ColumnResizeEvent) => void;
7805
7838
  }
7806
7839
 
7807
7840
  interface $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
@@ -8004,23 +8037,17 @@ declare namespace sap {
8004
8037
  /**
8005
8038
  * Fired when the currently active GridSettings change.
8006
8039
  */
8007
- layoutChange?: (
8008
- oEvent: sap.ui.base.Event<sap.f.GridContainer$LayoutChangeEventParameters>
8009
- ) => void;
8040
+ layoutChange?: (oEvent: GridContainer$LayoutChangeEvent) => void;
8010
8041
 
8011
8042
  /**
8012
8043
  * Fired when the grid columns count is changed.
8013
8044
  */
8014
- columnsChange?: (
8015
- oEvent: sap.ui.base.Event<sap.f.GridContainer$ColumnsChangeEventParameters>
8016
- ) => void;
8045
+ columnsChange?: (oEvent: GridContainer$ColumnsChangeEvent) => void;
8017
8046
 
8018
8047
  /**
8019
8048
  * Fires if the border of the visualizations is reached so that an application can react on this.
8020
8049
  */
8021
- borderReached?: (
8022
- oEvent: sap.ui.base.Event<sap.f.GridContainer$BorderReachedEventParameters>
8023
- ) => void;
8050
+ borderReached?: (oEvent: GridContainer$BorderReachedEvent) => void;
8024
8051
  }
8025
8052
 
8026
8053
  interface $GridContainerItemLayoutDataSettings
@@ -8129,9 +8156,7 @@ declare namespace sap {
8129
8156
  /**
8130
8157
  * Fires if the border of the visualizations is reached so that an application can react on this.
8131
8158
  */
8132
- borderReached?: (
8133
- oEvent: sap.ui.base.Event<sap.f.GridList$BorderReachedEventParameters>
8134
- ) => void;
8159
+ borderReached?: (oEvent: GridList$BorderReachedEvent) => void;
8135
8160
  }
8136
8161
 
8137
8162
  interface $GridListItemSettings extends sap.m.$ListItemBaseSettings {
@@ -8168,9 +8193,7 @@ declare namespace sap {
8168
8193
  /**
8169
8194
  * Fires when an unselected item is pressed.
8170
8195
  */
8171
- change?: (
8172
- oEvent: sap.ui.base.Event<sap.f.ProductSwitch$ChangeEventParameters>
8173
- ) => void;
8196
+ change?: (oEvent: ProductSwitch$ChangeEvent) => void;
8174
8197
  }
8175
8198
 
8176
8199
  interface $ProductSwitchItemSettings extends sap.ui.core.$ControlSettings {
@@ -8267,27 +8290,21 @@ declare namespace sap {
8267
8290
  /**
8268
8291
  * Fired when the user triggers a search.
8269
8292
  */
8270
- search?: (
8271
- oEvent: sap.ui.base.Event<sap.f.SearchManager$SearchEventParameters>
8272
- ) => void;
8293
+ search?: (oEvent: SearchManager$SearchEvent) => void;
8273
8294
 
8274
8295
  /**
8275
8296
  * Fired when the value of the search field is changed by the user, for example at each key press.
8276
8297
  *
8277
8298
  * **Note:** Do not invalidate or re-render a focused search field, especially during the `liveChange` event.
8278
8299
  */
8279
- liveChange?: (
8280
- oEvent: sap.ui.base.Event<sap.f.SearchManager$LiveChangeEventParameters>
8281
- ) => void;
8300
+ liveChange?: (oEvent: SearchManager$LiveChangeEvent) => void;
8282
8301
 
8283
8302
  /**
8284
8303
  * Fired when the search field is initially focused or its value is changed by the user. This event means
8285
8304
  * that suggestion data should be updated, in case if suggestions are used. Use the value parameter to create
8286
8305
  * new suggestions for it.
8287
8306
  */
8288
- suggest?: (
8289
- oEvent: sap.ui.base.Event<sap.f.SearchManager$SuggestEventParameters>
8290
- ) => void;
8307
+ suggest?: (oEvent: SearchManager$SuggestEvent) => void;
8291
8308
  }
8292
8309
 
8293
8310
  interface $ShellBarSettings extends sap.ui.core.$ControlSettings {
@@ -8407,58 +8424,46 @@ declare namespace sap {
8407
8424
  /**
8408
8425
  * Fired when the `homeIcon` is pressed.
8409
8426
  */
8410
- homeIconPressed?: (
8411
- oEvent: sap.ui.base.Event<sap.f.ShellBar$HomeIconPressedEventParameters>
8412
- ) => void;
8427
+ homeIconPressed?: (oEvent: ShellBar$HomeIconPressedEvent) => void;
8413
8428
 
8414
8429
  /**
8415
8430
  * Fired when the alternative menu button is pressed.
8416
8431
  */
8417
- menuButtonPressed?: (
8418
- oEvent: sap.ui.base.Event<sap.f.ShellBar$MenuButtonPressedEventParameters>
8419
- ) => void;
8432
+ menuButtonPressed?: (oEvent: ShellBar$MenuButtonPressedEvent) => void;
8420
8433
 
8421
8434
  /**
8422
8435
  * Fired when the navigation/back button is pressed.
8423
8436
  */
8424
- navButtonPressed?: (
8425
- oEvent: sap.ui.base.Event<sap.f.ShellBar$NavButtonPressedEventParameters>
8426
- ) => void;
8437
+ navButtonPressed?: (oEvent: ShellBar$NavButtonPressedEvent) => void;
8427
8438
 
8428
8439
  /**
8429
8440
  * Fired when the SAP CoPilot icon is pressed.
8430
8441
  */
8431
- copilotPressed?: (
8432
- oEvent: sap.ui.base.Event<sap.f.ShellBar$CopilotPressedEventParameters>
8433
- ) => void;
8442
+ copilotPressed?: (oEvent: ShellBar$CopilotPressedEvent) => void;
8434
8443
 
8435
8444
  /**
8436
8445
  * Fired when the search button is pressed.
8437
8446
  */
8438
- searchButtonPressed?: (
8439
- oEvent: sap.ui.base.Event<sap.f.ShellBar$SearchButtonPressedEventParameters>
8440
- ) => void;
8447
+ searchButtonPressed?: (oEvent: ShellBar$SearchButtonPressedEvent) => void;
8441
8448
 
8442
8449
  /**
8443
8450
  * Fired when the notifications button is pressed.
8444
8451
  */
8445
8452
  notificationsPressed?: (
8446
- oEvent: sap.ui.base.Event<sap.f.ShellBar$NotificationsPressedEventParameters>
8453
+ oEvent: ShellBar$NotificationsPressedEvent
8447
8454
  ) => void;
8448
8455
 
8449
8456
  /**
8450
8457
  * Fired when the product switcher button is pressed.
8451
8458
  */
8452
8459
  productSwitcherPressed?: (
8453
- oEvent: sap.ui.base.Event<sap.f.ShellBar$ProductSwitcherPressedEventParameters>
8460
+ oEvent: ShellBar$ProductSwitcherPressedEvent
8454
8461
  ) => void;
8455
8462
 
8456
8463
  /**
8457
8464
  * Fired when the profile avatar is pressed.
8458
8465
  */
8459
- avatarPressed?: (
8460
- oEvent: sap.ui.base.Event<sap.f.ShellBar$AvatarPressedEventParameters>
8461
- ) => void;
8466
+ avatarPressed?: (oEvent: ShellBar$AvatarPressedEvent) => void;
8462
8467
  }
8463
8468
 
8464
8469
  interface $SidePanelSettings extends sap.ui.core.$ControlSettings {
@@ -8585,9 +8590,7 @@ declare namespace sap {
8585
8590
  * of a different action item, the selection will be cancelled, and the next event (for expansion of a new
8586
8591
  * action item) will not be fired and the new side content will not be displayed.
8587
8592
  */
8588
- toggle?: (
8589
- oEvent: sap.ui.base.Event<sap.f.SidePanel$ToggleEventParameters>
8590
- ) => void;
8593
+ toggle?: (oEvent: SidePanel$ToggleEvent) => void;
8591
8594
  }
8592
8595
 
8593
8596
  interface $SidePanelItemSettings extends sap.ui.core.$ItemSettings {
@@ -10474,7 +10477,7 @@ declare namespace sap {
10474
10477
  */
10475
10478
  getPreserveHeaderStateOnScroll(): boolean;
10476
10479
  /**
10477
- * Returns the `sap.ui.core.ScrollEnablement` delegate which is used with this control.
10480
+ * Returns the `sap.ui.core.delegate.ScrollEnablement` delegate which is used with this control.
10478
10481
  *
10479
10482
  * @returns The scroll delegate instance
10480
10483
  */
@@ -18677,10 +18680,10 @@ declare namespace sap {
18677
18680
  * - [Enter] - set the expanded side panel width to the default value defined in `sidePanelWidth` property
18678
18681
  *
18679
18682
  * - [Shift]+[F10] or [Context menu] - show the resize context menu
18680
- * - [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded side panel with the regular
18681
- * step
18682
- * - [Shift] + [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded side panel with
18683
- * the larger step
18683
+ * - [Arrow Left] or [Arrow Up] / [Arrow Right] or [Arrow Down] - increase/decrease the width of the expanded
18684
+ * side panel with the regular step
18685
+ * - [Shift] + [Arrow Left] or [Shift] + [Arrow Up] / [Shift] + [Arrow Right] or [Shift] + [Arrow Down]
18686
+ * - increase/decrease the width of the expanded side panel with the larger step
18684
18687
  */
18685
18688
  class SidePanel extends sap.ui.core.Control {
18686
18689
  /**
@@ -19686,229 +19689,145 @@ declare namespace sap {
19686
19689
  */
19687
19690
  type IllustratedMessageType = sap.m.IllustratedMessageType;
19688
19691
 
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
- type AvatarGroup$PressEvent = sap.ui.base.Event<AvatarGroup$PressEventParameters>;
19696
-
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
- type DynamicPage$PinnedStateChangeEvent = sap.ui.base.Event<DynamicPage$PinnedStateChangeEventParameters>;
19704
-
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
- type DynamicPageTitle$StateChangeEvent = sap.ui.base.Event<DynamicPageTitle$StateChangeEventParameters>;
19712
-
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
- type FlexibleColumnLayout$AfterBeginColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters>;
19720
-
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
- type FlexibleColumnLayout$AfterEndColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$AfterEndColumnNavigateEventParameters>;
19728
-
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
- type FlexibleColumnLayout$AfterMidColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$AfterMidColumnNavigateEventParameters>;
19736
-
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
- type FlexibleColumnLayout$BeginColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$BeginColumnNavigateEventParameters>;
19744
-
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
- type FlexibleColumnLayout$ColumnResizeEvent = sap.ui.base.Event<FlexibleColumnLayout$ColumnResizeEventParameters>;
19752
-
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
- type FlexibleColumnLayout$EndColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$EndColumnNavigateEventParameters>;
19760
-
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
- type FlexibleColumnLayout$MidColumnNavigateEvent = sap.ui.base.Event<FlexibleColumnLayout$MidColumnNavigateEventParameters>;
19768
-
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
- type FlexibleColumnLayout$StateChangeEvent = sap.ui.base.Event<FlexibleColumnLayout$StateChangeEventParameters>;
19776
-
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
- type GridContainer$BorderReachedEvent = sap.ui.base.Event<GridContainer$BorderReachedEventParameters>;
19784
-
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
- type GridContainer$ColumnsChangeEvent = sap.ui.base.Event<GridContainer$ColumnsChangeEventParameters>;
19792
-
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
- type GridContainer$LayoutChangeEvent = sap.ui.base.Event<GridContainer$LayoutChangeEventParameters>;
19800
-
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
- type GridList$BorderReachedEvent = sap.ui.base.Event<GridList$BorderReachedEventParameters>;
19808
-
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
- type ProductSwitch$ChangeEvent = sap.ui.base.Event<ProductSwitch$ChangeEventParameters>;
19816
-
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
- type SearchManager$LiveChangeEvent = sap.ui.base.Event<SearchManager$LiveChangeEventParameters>;
19824
-
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
- type SearchManager$SearchEvent = sap.ui.base.Event<SearchManager$SearchEventParameters>;
19832
-
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
- type SearchManager$SuggestEvent = sap.ui.base.Event<SearchManager$SuggestEventParameters>;
19840
-
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
- type ShellBar$AvatarPressedEvent = sap.ui.base.Event<ShellBar$AvatarPressedEventParameters>;
19848
-
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
- type ShellBar$CopilotPressedEvent = sap.ui.base.Event<ShellBar$CopilotPressedEventParameters>;
19856
-
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
- type ShellBar$HomeIconPressedEvent = sap.ui.base.Event<ShellBar$HomeIconPressedEventParameters>;
19864
-
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
- type ShellBar$MenuButtonPressedEvent = sap.ui.base.Event<ShellBar$MenuButtonPressedEventParameters>;
19872
-
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
- type ShellBar$NavButtonPressedEvent = sap.ui.base.Event<ShellBar$NavButtonPressedEventParameters>;
19880
-
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
- type ShellBar$NotificationsPressedEvent = sap.ui.base.Event<ShellBar$NotificationsPressedEventParameters>;
19888
-
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
- type ShellBar$ProductSwitcherPressedEvent = sap.ui.base.Event<ShellBar$ProductSwitcherPressedEventParameters>;
19896
-
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
- type ShellBar$SearchButtonPressedEvent = sap.ui.base.Event<ShellBar$SearchButtonPressedEventParameters>;
19904
-
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
- type SidePanel$ToggleEvent = sap.ui.base.Event<SidePanel$ToggleEventParameters>;
19692
+ type AvatarGroup$PressEvent = sap.ui.base.Event<
19693
+ AvatarGroup$PressEventParameters,
19694
+ AvatarGroup
19695
+ >;
19696
+
19697
+ type DynamicPage$PinnedStateChangeEvent = sap.ui.base.Event<
19698
+ DynamicPage$PinnedStateChangeEventParameters,
19699
+ DynamicPage
19700
+ >;
19701
+
19702
+ type DynamicPageTitle$StateChangeEvent = sap.ui.base.Event<
19703
+ DynamicPageTitle$StateChangeEventParameters,
19704
+ DynamicPageTitle
19705
+ >;
19706
+
19707
+ type FlexibleColumnLayout$AfterBeginColumnNavigateEvent = sap.ui.base.Event<
19708
+ FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters,
19709
+ FlexibleColumnLayout
19710
+ >;
19711
+
19712
+ type FlexibleColumnLayout$AfterEndColumnNavigateEvent = sap.ui.base.Event<
19713
+ FlexibleColumnLayout$AfterEndColumnNavigateEventParameters,
19714
+ FlexibleColumnLayout
19715
+ >;
19716
+
19717
+ type FlexibleColumnLayout$AfterMidColumnNavigateEvent = sap.ui.base.Event<
19718
+ FlexibleColumnLayout$AfterMidColumnNavigateEventParameters,
19719
+ FlexibleColumnLayout
19720
+ >;
19721
+
19722
+ type FlexibleColumnLayout$BeginColumnNavigateEvent = sap.ui.base.Event<
19723
+ FlexibleColumnLayout$BeginColumnNavigateEventParameters,
19724
+ FlexibleColumnLayout
19725
+ >;
19726
+
19727
+ type FlexibleColumnLayout$ColumnResizeEvent = sap.ui.base.Event<
19728
+ FlexibleColumnLayout$ColumnResizeEventParameters,
19729
+ FlexibleColumnLayout
19730
+ >;
19731
+
19732
+ type FlexibleColumnLayout$EndColumnNavigateEvent = sap.ui.base.Event<
19733
+ FlexibleColumnLayout$EndColumnNavigateEventParameters,
19734
+ FlexibleColumnLayout
19735
+ >;
19736
+
19737
+ type FlexibleColumnLayout$MidColumnNavigateEvent = sap.ui.base.Event<
19738
+ FlexibleColumnLayout$MidColumnNavigateEventParameters,
19739
+ FlexibleColumnLayout
19740
+ >;
19741
+
19742
+ type FlexibleColumnLayout$StateChangeEvent = sap.ui.base.Event<
19743
+ FlexibleColumnLayout$StateChangeEventParameters,
19744
+ FlexibleColumnLayout
19745
+ >;
19746
+
19747
+ type GridContainer$BorderReachedEvent = sap.ui.base.Event<
19748
+ GridContainer$BorderReachedEventParameters,
19749
+ GridContainer
19750
+ >;
19751
+
19752
+ type GridContainer$ColumnsChangeEvent = sap.ui.base.Event<
19753
+ GridContainer$ColumnsChangeEventParameters,
19754
+ GridContainer
19755
+ >;
19756
+
19757
+ type GridContainer$LayoutChangeEvent = sap.ui.base.Event<
19758
+ GridContainer$LayoutChangeEventParameters,
19759
+ GridContainer
19760
+ >;
19761
+
19762
+ type GridList$BorderReachedEvent = sap.ui.base.Event<
19763
+ GridList$BorderReachedEventParameters,
19764
+ GridList
19765
+ >;
19766
+
19767
+ type ProductSwitch$ChangeEvent = sap.ui.base.Event<
19768
+ ProductSwitch$ChangeEventParameters,
19769
+ ProductSwitch
19770
+ >;
19771
+
19772
+ type SearchManager$LiveChangeEvent = sap.ui.base.Event<
19773
+ SearchManager$LiveChangeEventParameters,
19774
+ SearchManager
19775
+ >;
19776
+
19777
+ type SearchManager$SearchEvent = sap.ui.base.Event<
19778
+ SearchManager$SearchEventParameters,
19779
+ SearchManager
19780
+ >;
19781
+
19782
+ type SearchManager$SuggestEvent = sap.ui.base.Event<
19783
+ SearchManager$SuggestEventParameters,
19784
+ SearchManager
19785
+ >;
19786
+
19787
+ type ShellBar$AvatarPressedEvent = sap.ui.base.Event<
19788
+ ShellBar$AvatarPressedEventParameters,
19789
+ ShellBar
19790
+ >;
19791
+
19792
+ type ShellBar$CopilotPressedEvent = sap.ui.base.Event<
19793
+ ShellBar$CopilotPressedEventParameters,
19794
+ ShellBar
19795
+ >;
19796
+
19797
+ type ShellBar$HomeIconPressedEvent = sap.ui.base.Event<
19798
+ ShellBar$HomeIconPressedEventParameters,
19799
+ ShellBar
19800
+ >;
19801
+
19802
+ type ShellBar$MenuButtonPressedEvent = sap.ui.base.Event<
19803
+ ShellBar$MenuButtonPressedEventParameters,
19804
+ ShellBar
19805
+ >;
19806
+
19807
+ type ShellBar$NavButtonPressedEvent = sap.ui.base.Event<
19808
+ ShellBar$NavButtonPressedEventParameters,
19809
+ ShellBar
19810
+ >;
19811
+
19812
+ type ShellBar$NotificationsPressedEvent = sap.ui.base.Event<
19813
+ ShellBar$NotificationsPressedEventParameters,
19814
+ ShellBar
19815
+ >;
19816
+
19817
+ type ShellBar$ProductSwitcherPressedEvent = sap.ui.base.Event<
19818
+ ShellBar$ProductSwitcherPressedEventParameters,
19819
+ ShellBar
19820
+ >;
19821
+
19822
+ type ShellBar$SearchButtonPressedEvent = sap.ui.base.Event<
19823
+ ShellBar$SearchButtonPressedEventParameters,
19824
+ ShellBar
19825
+ >;
19826
+
19827
+ type SidePanel$ToggleEvent = sap.ui.base.Event<
19828
+ SidePanel$ToggleEventParameters,
19829
+ SidePanel
19830
+ >;
19912
19831
  }
19913
19832
 
19914
19833
  namespace tnt {