@openui5/types 1.122.1 → 1.123.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.122.1
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -512,7 +512,11 @@ declare module "sap/f/Avatar" {
512
512
  */
513
513
  static getMetadata(): ElementMetadata;
514
514
  }
515
-
515
+ /**
516
+ * Describes the settings that can be provided to the Avatar constructor.
517
+ *
518
+ * @deprecated (since 1.73) - Use the {@link sap.m.Avatar} instead.
519
+ */
516
520
  export interface $AvatarSettings extends $AvatarSettings1 {}
517
521
  }
518
522
 
@@ -920,7 +924,9 @@ declare module "sap/f/AvatarGroup" {
920
924
  sGroupType?: AvatarGroupType | keyof typeof AvatarGroupType
921
925
  ): this;
922
926
  }
923
-
927
+ /**
928
+ * Describes the settings that can be provided to the AvatarGroup constructor.
929
+ */
924
930
  export interface $AvatarGroupSettings extends $ControlSettings {
925
931
  /**
926
932
  * Defines the mode of the `AvatarGroup`.
@@ -979,6 +985,9 @@ declare module "sap/f/AvatarGroup" {
979
985
  press?: (oEvent: AvatarGroup$PressEvent) => void;
980
986
  }
981
987
 
988
+ /**
989
+ * Parameters of the AvatarGroup#press event.
990
+ */
982
991
  export interface AvatarGroup$PressEventParameters {
983
992
  /**
984
993
  * The `GroupType` of the control.
@@ -996,6 +1005,9 @@ declare module "sap/f/AvatarGroup" {
996
1005
  avatarsDisplayed?: int;
997
1006
  }
998
1007
 
1008
+ /**
1009
+ * Event object of the AvatarGroup#press event.
1010
+ */
999
1011
  export type AvatarGroup$PressEvent = Event<
1000
1012
  AvatarGroup$PressEventParameters,
1001
1013
  AvatarGroup
@@ -1175,7 +1187,12 @@ declare module "sap/f/AvatarGroupItem" {
1175
1187
  sSrc?: URI
1176
1188
  ): this;
1177
1189
  }
1178
-
1190
+ /**
1191
+ * Describes the settings that can be provided to the AvatarGroupItem constructor.
1192
+ *
1193
+ * @experimental (since 1.73) - This class is experimental and provides only limited functionality. Also
1194
+ * the API might be changed in future.
1195
+ */
1179
1196
  export interface $AvatarGroupItemSettings extends $ControlSettings {
1180
1197
  /**
1181
1198
  * Determines the path to the desired image or icon.
@@ -1388,7 +1405,9 @@ declare module "sap/f/Card" {
1388
1405
  sHeaderPosition?: cards.HeaderPosition | keyof typeof cards.HeaderPosition
1389
1406
  ): this;
1390
1407
  }
1391
-
1408
+ /**
1409
+ * Describes the settings that can be provided to the Card constructor.
1410
+ */
1392
1411
  export interface $CardSettings extends $CardBaseSettings {
1393
1412
  /**
1394
1413
  * Defines the position of the Card Header.
@@ -1560,7 +1579,9 @@ declare module "sap/f/CardBase" {
1560
1579
  sWidth?: CSSSize
1561
1580
  ): this;
1562
1581
  }
1563
-
1582
+ /**
1583
+ * Describes the settings that can be provided to the CardBase constructor.
1584
+ */
1564
1585
  export interface $CardBaseSettings extends $ControlSettings {
1565
1586
  /**
1566
1587
  * Defines the width of the card.
@@ -1712,6 +1733,16 @@ declare module "sap/f/cards/BaseHeader" {
1712
1733
  * @returns Value of property `dataTimestamp`
1713
1734
  */
1714
1735
  getDataTimestamp(): string;
1736
+ /**
1737
+ * Gets current value of property {@link #getHref href}.
1738
+ *
1739
+ * Defines the href which the header should open. If set - the header will act and render as a link.
1740
+ *
1741
+ * @experimental (since 1.122) - Do not use this feature outside of sap.ui.integration.widgets.Card.
1742
+ *
1743
+ * @returns Value of property `href`
1744
+ */
1745
+ getHref(): string;
1715
1746
  /**
1716
1747
  * Gets current value of property {@link #getStatusVisible statusVisible}.
1717
1748
  *
@@ -1724,6 +1755,16 @@ declare module "sap/f/cards/BaseHeader" {
1724
1755
  * @returns Value of property `statusVisible`
1725
1756
  */
1726
1757
  getStatusVisible(): boolean;
1758
+ /**
1759
+ * Gets current value of property {@link #getTarget target}.
1760
+ *
1761
+ * Defines the target for the case when `href` is given.
1762
+ *
1763
+ * @experimental (since 1.122) - Do not use this feature outside of sap.ui.integration.widgets.Card.
1764
+ *
1765
+ * @returns Value of property `target`
1766
+ */
1767
+ getTarget(): string;
1727
1768
  /**
1728
1769
  * Gets content of aggregation {@link #getToolbar toolbar}.
1729
1770
  *
@@ -1830,6 +1871,23 @@ declare module "sap/f/cards/BaseHeader" {
1830
1871
  */
1831
1872
  sDataTimestamp?: string
1832
1873
  ): this;
1874
+ /**
1875
+ * Sets a new value for property {@link #getHref href}.
1876
+ *
1877
+ * Defines the href which the header should open. If set - the header will act and render as a link.
1878
+ *
1879
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1880
+ *
1881
+ * @experimental (since 1.122) - Do not use this feature outside of sap.ui.integration.widgets.Card.
1882
+ *
1883
+ * @returns Reference to `this` in order to allow method chaining
1884
+ */
1885
+ setHref(
1886
+ /**
1887
+ * New value for property `href`
1888
+ */
1889
+ sHref: string
1890
+ ): this;
1833
1891
  /**
1834
1892
  * Sets a new value for property {@link #getStatusVisible statusVisible}.
1835
1893
  *
@@ -1849,6 +1907,23 @@ declare module "sap/f/cards/BaseHeader" {
1849
1907
  */
1850
1908
  bStatusVisible?: boolean
1851
1909
  ): this;
1910
+ /**
1911
+ * Sets a new value for property {@link #getTarget target}.
1912
+ *
1913
+ * Defines the target for the case when `href` is given.
1914
+ *
1915
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1916
+ *
1917
+ * @experimental (since 1.122) - Do not use this feature outside of sap.ui.integration.widgets.Card.
1918
+ *
1919
+ * @returns Reference to `this` in order to allow method chaining
1920
+ */
1921
+ setTarget(
1922
+ /**
1923
+ * New value for property `target`
1924
+ */
1925
+ sTarget: string
1926
+ ): this;
1852
1927
  /**
1853
1928
  * Sets the aggregated {@link #getToolbar toolbar}.
1854
1929
  *
@@ -1884,7 +1959,9 @@ declare module "sap/f/cards/BaseHeader" {
1884
1959
  sWrappingType?: WrappingType | keyof typeof WrappingType
1885
1960
  ): this;
1886
1961
  }
1887
-
1962
+ /**
1963
+ * Describes the settings that can be provided to the BaseHeader constructor.
1964
+ */
1888
1965
  export interface $BaseHeaderSettings extends $ControlSettings {
1889
1966
  /**
1890
1967
  * Defines the timestamp of the oldest data in the card. Use this to show to the end user how fresh the
@@ -1916,6 +1993,20 @@ declare module "sap/f/cards/BaseHeader" {
1916
1993
  | PropertyBindingInfo
1917
1994
  | `{${string}}`;
1918
1995
 
1996
+ /**
1997
+ * Defines the href which the header should open. If set - the header will act and render as a link.
1998
+ *
1999
+ * @experimental (since 1.122) - Do not use this feature outside of sap.ui.integration.widgets.Card.
2000
+ */
2001
+ href?: string | PropertyBindingInfo;
2002
+
2003
+ /**
2004
+ * Defines the target for the case when `href` is given.
2005
+ *
2006
+ * @experimental (since 1.122) - Do not use this feature outside of sap.ui.integration.widgets.Card.
2007
+ */
2008
+ target?: string | PropertyBindingInfo;
2009
+
1919
2010
  /**
1920
2011
  * Defines the toolbar.
1921
2012
  *
@@ -2498,7 +2589,9 @@ declare module "sap/f/cards/Header" {
2498
2589
  */
2499
2590
  shouldShowIcon(): boolean;
2500
2591
  }
2501
-
2592
+ /**
2593
+ * Describes the settings that can be provided to the Header constructor.
2594
+ */
2502
2595
  export interface $HeaderSettings extends $BaseHeaderSettings {
2503
2596
  /**
2504
2597
  * Defines the title.
@@ -2587,8 +2680,14 @@ declare module "sap/f/cards/Header" {
2587
2680
  press?: (oEvent: Event) => void;
2588
2681
  }
2589
2682
 
2683
+ /**
2684
+ * Parameters of the Header#press event.
2685
+ */
2590
2686
  export interface Header$PressEventParameters {}
2591
2687
 
2688
+ /**
2689
+ * Event object of the Header#press event.
2690
+ */
2592
2691
  export type Header$PressEvent = Event<Header$PressEventParameters, Header>;
2593
2692
  }
2594
2693
 
@@ -3625,7 +3724,9 @@ declare module "sap/f/cards/NumericHeader" {
3625
3724
  */
3626
3725
  shouldShowIcon(): boolean;
3627
3726
  }
3628
-
3727
+ /**
3728
+ * Describes the settings that can be provided to the NumericHeader constructor.
3729
+ */
3629
3730
  export interface $NumericHeaderSettings extends $BaseHeaderSettings {
3630
3731
  /**
3631
3732
  * The title of the card
@@ -3819,8 +3920,14 @@ declare module "sap/f/cards/NumericHeader" {
3819
3920
  press?: (oEvent: Event) => void;
3820
3921
  }
3821
3922
 
3923
+ /**
3924
+ * Parameters of the NumericHeader#press event.
3925
+ */
3822
3926
  export interface NumericHeader$PressEventParameters {}
3823
3927
 
3928
+ /**
3929
+ * Event object of the NumericHeader#press event.
3930
+ */
3824
3931
  export type NumericHeader$PressEvent = Event<
3825
3932
  NumericHeader$PressEventParameters,
3826
3933
  NumericHeader
@@ -4001,7 +4108,9 @@ declare module "sap/f/cards/NumericSideIndicator" {
4001
4108
  sValue: string
4002
4109
  ): this;
4003
4110
  }
4004
-
4111
+ /**
4112
+ * Describes the settings that can be provided to the NumericSideIndicator constructor.
4113
+ */
4005
4114
  export interface $NumericSideIndicatorSettings extends $ControlSettings {
4006
4115
  /**
4007
4116
  * The title of the indicator
@@ -4060,7 +4169,6 @@ declare module "sap/f/dnd/GridDropInfo" {
4060
4169
  * restrictions.
4061
4170
  *
4062
4171
  * @since 1.68
4063
- * @experimental (since 1.68) - This class is experimental. The API may change.
4064
4172
  */
4065
4173
  export default class GridDropInfo extends DropInfo implements dnd.IDropInfo {
4066
4174
  __implements__sap_ui_core_dnd_IDropInfo: boolean;
@@ -4184,7 +4292,9 @@ declare module "sap/f/dnd/GridDropInfo" {
4184
4292
  } | null
4185
4293
  ): this;
4186
4294
  }
4187
-
4295
+ /**
4296
+ * Describes the settings that can be provided to the GridDropInfo constructor.
4297
+ */
4188
4298
  export interface $GridDropInfoSettings extends $DropInfoSettings {
4189
4299
  /**
4190
4300
  * A function which will define the desired drop indicator size. The drop indicator shows the user how the
@@ -4899,7 +5009,9 @@ declare module "sap/f/DynamicPage" {
4899
5009
  bToggleHeaderOnTitleClick?: boolean
4900
5010
  ): this;
4901
5011
  }
4902
-
5012
+ /**
5013
+ * Describes the settings that can be provided to the DynamicPage constructor.
5014
+ */
4903
5015
  export interface $DynamicPageSettings extends $ControlSettings {
4904
5016
  /**
4905
5017
  * Preserves the current header state when scrolling. For example, if the user expands the header by clicking
@@ -5050,6 +5162,9 @@ declare module "sap/f/DynamicPage" {
5050
5162
  pinnedStateChange?: (oEvent: DynamicPage$PinnedStateChangeEvent) => void;
5051
5163
  }
5052
5164
 
5165
+ /**
5166
+ * Parameters of the DynamicPage#pinnedStateChange event.
5167
+ */
5053
5168
  export interface DynamicPage$PinnedStateChangeEventParameters {
5054
5169
  /**
5055
5170
  * False or True values indicate the new pinned property value.
@@ -5057,6 +5172,9 @@ declare module "sap/f/DynamicPage" {
5057
5172
  pinned?: boolean;
5058
5173
  }
5059
5174
 
5175
+ /**
5176
+ * Event object of the DynamicPage#pinnedStateChange event.
5177
+ */
5060
5178
  export type DynamicPage$PinnedStateChangeEvent = Event<
5061
5179
  DynamicPage$PinnedStateChangeEventParameters,
5062
5180
  DynamicPage
@@ -5409,7 +5527,9 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
5409
5527
  sRootRole?: AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole
5410
5528
  ): this;
5411
5529
  }
5412
-
5530
+ /**
5531
+ * Describes the settings that can be provided to the DynamicPageAccessibleLandmarkInfo constructor.
5532
+ */
5413
5533
  export interface $DynamicPageAccessibleLandmarkInfoSettings
5414
5534
  extends $ElementSettings {
5415
5535
  /**
@@ -5725,7 +5845,9 @@ declare module "sap/f/DynamicPageHeader" {
5725
5845
  bPinnable?: boolean
5726
5846
  ): this;
5727
5847
  }
5728
-
5848
+ /**
5849
+ * Describes the settings that can be provided to the DynamicPageHeader constructor.
5850
+ */
5729
5851
  export interface $DynamicPageHeaderSettings extends $ControlSettings {
5730
5852
  /**
5731
5853
  * Determines whether the header is pinnable.
@@ -6724,7 +6846,9 @@ declare module "sap/f/DynamicPageTitle" {
6724
6846
  oSnappedTitleOnMobile: Title
6725
6847
  ): this;
6726
6848
  }
6727
-
6849
+ /**
6850
+ * Describes the settings that can be provided to the DynamicPageTitle constructor.
6851
+ */
6728
6852
  export interface $DynamicPageTitleSettings extends $ControlSettings {
6729
6853
  /**
6730
6854
  * Determines which of the `DynamicPageTitle` areas (Begin, Middle) is primary.
@@ -6932,6 +7056,9 @@ declare module "sap/f/DynamicPageTitle" {
6932
7056
  stateChange?: (oEvent: DynamicPageTitle$StateChangeEvent) => void;
6933
7057
  }
6934
7058
 
7059
+ /**
7060
+ * Parameters of the DynamicPageTitle#stateChange event.
7061
+ */
6935
7062
  export interface DynamicPageTitle$StateChangeEventParameters {
6936
7063
  /**
6937
7064
  * Whether the title was expanded (true) or collapsed (false).
@@ -6939,6 +7066,9 @@ declare module "sap/f/DynamicPageTitle" {
6939
7066
  isExpanded?: boolean;
6940
7067
  }
6941
7068
 
7069
+ /**
7070
+ * Event object of the DynamicPageTitle#stateChange event.
7071
+ */
6942
7072
  export type DynamicPageTitle$StateChangeEvent = Event<
6943
7073
  DynamicPageTitle$StateChangeEventParameters,
6944
7074
  DynamicPageTitle
@@ -8867,7 +8997,9 @@ declare module "sap/f/FlexibleColumnLayout" {
8867
8997
  oTransitionParameters: object
8868
8998
  ): this;
8869
8999
  }
8870
-
9000
+ /**
9001
+ * Describes the settings that can be provided to the FlexibleColumnLayout constructor.
9002
+ */
8871
9003
  export interface $FlexibleColumnLayoutSettings extends $ControlSettings {
8872
9004
  /**
8873
9005
  * Determines whether the initial focus is set automatically on first rendering and after navigating to
@@ -9073,6 +9205,9 @@ declare module "sap/f/FlexibleColumnLayout" {
9073
9205
  columnResize?: (oEvent: FlexibleColumnLayout$ColumnResizeEvent) => void;
9074
9206
  }
9075
9207
 
9208
+ /**
9209
+ * Parameters of the FlexibleColumnLayout#afterBeginColumnNavigate event.
9210
+ */
9076
9211
  export interface FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters {
9077
9212
  /**
9078
9213
  * The page, which had been displayed before navigation.
@@ -9126,11 +9261,17 @@ declare module "sap/f/FlexibleColumnLayout" {
9126
9261
  direction?: string;
9127
9262
  }
9128
9263
 
9264
+ /**
9265
+ * Event object of the FlexibleColumnLayout#afterBeginColumnNavigate event.
9266
+ */
9129
9267
  export type FlexibleColumnLayout$AfterBeginColumnNavigateEvent = Event<
9130
9268
  FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters,
9131
9269
  FlexibleColumnLayout
9132
9270
  >;
9133
9271
 
9272
+ /**
9273
+ * Parameters of the FlexibleColumnLayout#afterEndColumnNavigate event.
9274
+ */
9134
9275
  export interface FlexibleColumnLayout$AfterEndColumnNavigateEventParameters {
9135
9276
  /**
9136
9277
  * The page, which had been displayed before navigation.
@@ -9184,11 +9325,17 @@ declare module "sap/f/FlexibleColumnLayout" {
9184
9325
  direction?: string;
9185
9326
  }
9186
9327
 
9328
+ /**
9329
+ * Event object of the FlexibleColumnLayout#afterEndColumnNavigate event.
9330
+ */
9187
9331
  export type FlexibleColumnLayout$AfterEndColumnNavigateEvent = Event<
9188
9332
  FlexibleColumnLayout$AfterEndColumnNavigateEventParameters,
9189
9333
  FlexibleColumnLayout
9190
9334
  >;
9191
9335
 
9336
+ /**
9337
+ * Parameters of the FlexibleColumnLayout#afterMidColumnNavigate event.
9338
+ */
9192
9339
  export interface FlexibleColumnLayout$AfterMidColumnNavigateEventParameters {
9193
9340
  /**
9194
9341
  * The page, which had been displayed before navigation.
@@ -9242,11 +9389,17 @@ declare module "sap/f/FlexibleColumnLayout" {
9242
9389
  direction?: string;
9243
9390
  }
9244
9391
 
9392
+ /**
9393
+ * Event object of the FlexibleColumnLayout#afterMidColumnNavigate event.
9394
+ */
9245
9395
  export type FlexibleColumnLayout$AfterMidColumnNavigateEvent = Event<
9246
9396
  FlexibleColumnLayout$AfterMidColumnNavigateEventParameters,
9247
9397
  FlexibleColumnLayout
9248
9398
  >;
9249
9399
 
9400
+ /**
9401
+ * Parameters of the FlexibleColumnLayout#beginColumnNavigate event.
9402
+ */
9250
9403
  export interface FlexibleColumnLayout$BeginColumnNavigateEventParameters {
9251
9404
  /**
9252
9405
  * The page, which was displayed before the current navigation.
@@ -9300,11 +9453,17 @@ declare module "sap/f/FlexibleColumnLayout" {
9300
9453
  direction?: string;
9301
9454
  }
9302
9455
 
9456
+ /**
9457
+ * Event object of the FlexibleColumnLayout#beginColumnNavigate event.
9458
+ */
9303
9459
  export type FlexibleColumnLayout$BeginColumnNavigateEvent = Event<
9304
9460
  FlexibleColumnLayout$BeginColumnNavigateEventParameters,
9305
9461
  FlexibleColumnLayout
9306
9462
  >;
9307
9463
 
9464
+ /**
9465
+ * Parameters of the FlexibleColumnLayout#columnResize event.
9466
+ */
9308
9467
  export interface FlexibleColumnLayout$ColumnResizeEventParameters {
9309
9468
  /**
9310
9469
  * Determines whether `beginColumn` resize has completed.
@@ -9322,11 +9481,17 @@ declare module "sap/f/FlexibleColumnLayout" {
9322
9481
  endColumn?: boolean;
9323
9482
  }
9324
9483
 
9484
+ /**
9485
+ * Event object of the FlexibleColumnLayout#columnResize event.
9486
+ */
9325
9487
  export type FlexibleColumnLayout$ColumnResizeEvent = Event<
9326
9488
  FlexibleColumnLayout$ColumnResizeEventParameters,
9327
9489
  FlexibleColumnLayout
9328
9490
  >;
9329
9491
 
9492
+ /**
9493
+ * Parameters of the FlexibleColumnLayout#endColumnNavigate event.
9494
+ */
9330
9495
  export interface FlexibleColumnLayout$EndColumnNavigateEventParameters {
9331
9496
  /**
9332
9497
  * The page, which was displayed before the current navigation.
@@ -9380,11 +9545,17 @@ declare module "sap/f/FlexibleColumnLayout" {
9380
9545
  direction?: string;
9381
9546
  }
9382
9547
 
9548
+ /**
9549
+ * Event object of the FlexibleColumnLayout#endColumnNavigate event.
9550
+ */
9383
9551
  export type FlexibleColumnLayout$EndColumnNavigateEvent = Event<
9384
9552
  FlexibleColumnLayout$EndColumnNavigateEventParameters,
9385
9553
  FlexibleColumnLayout
9386
9554
  >;
9387
9555
 
9556
+ /**
9557
+ * Parameters of the FlexibleColumnLayout#midColumnNavigate event.
9558
+ */
9388
9559
  export interface FlexibleColumnLayout$MidColumnNavigateEventParameters {
9389
9560
  /**
9390
9561
  * The page, which was displayed before the current navigation.
@@ -9438,11 +9609,17 @@ declare module "sap/f/FlexibleColumnLayout" {
9438
9609
  direction?: string;
9439
9610
  }
9440
9611
 
9612
+ /**
9613
+ * Event object of the FlexibleColumnLayout#midColumnNavigate event.
9614
+ */
9441
9615
  export type FlexibleColumnLayout$MidColumnNavigateEvent = Event<
9442
9616
  FlexibleColumnLayout$MidColumnNavigateEventParameters,
9443
9617
  FlexibleColumnLayout
9444
9618
  >;
9445
9619
 
9620
+ /**
9621
+ * Parameters of the FlexibleColumnLayout#stateChange event.
9622
+ */
9446
9623
  export interface FlexibleColumnLayout$StateChangeEventParameters {
9447
9624
  /**
9448
9625
  * The value of the `layout` property
@@ -9473,6 +9650,9 @@ declare module "sap/f/FlexibleColumnLayout" {
9473
9650
  isResize?: boolean;
9474
9651
  }
9475
9652
 
9653
+ /**
9654
+ * Event object of the FlexibleColumnLayout#stateChange event.
9655
+ */
9476
9656
  export type FlexibleColumnLayout$StateChangeEvent = Event<
9477
9657
  FlexibleColumnLayout$StateChangeEventParameters,
9478
9658
  FlexibleColumnLayout
@@ -9774,7 +9954,9 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
9774
9954
  sMiddleColumnLabel?: string
9775
9955
  ): this;
9776
9956
  }
9777
-
9957
+ /**
9958
+ * Describes the settings that can be provided to the FlexibleColumnLayoutAccessibleLandmarkInfo constructor.
9959
+ */
9778
9960
  export interface $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
9779
9961
  extends $ElementSettings {
9780
9962
  /**
@@ -10581,8 +10763,6 @@ declare module "sap/f/GridContainer" {
10581
10763
  /**
10582
10764
  * Destroys the layoutXS in the aggregation {@link #getLayoutXS layoutXS}.
10583
10765
  *
10584
- * @experimental (since 1.71) - Disclaimer: this property is in a beta state - incompatible API changes
10585
- * may be done before its official public release. Use at your own discretion.
10586
10766
  *
10587
10767
  * @returns Reference to `this` in order to allow method chaining
10588
10768
  */
@@ -10687,7 +10867,7 @@ declare module "sap/f/GridContainer" {
10687
10867
  *
10688
10868
  * **Note:**Should not be called before the `GridContainer` has been rendered.
10689
10869
  *
10690
- * @experimental (since 1.81) - Behavior might change.
10870
+ * @since 1.81
10691
10871
  */
10692
10872
  focusItem(
10693
10873
  /**
@@ -10707,7 +10887,7 @@ declare module "sap/f/GridContainer" {
10707
10887
  *
10708
10888
  * **Note:**Should be called after the rendering of `GridContainer` is ready.
10709
10889
  *
10710
- * @experimental (since 1.85) - Behavior might change.
10890
+ * @since 1.85
10711
10891
  */
10712
10892
  focusItemByDirection(
10713
10893
  /**
@@ -10740,8 +10920,6 @@ declare module "sap/f/GridContainer" {
10740
10920
  *
10741
10921
  * Default value is `false`.
10742
10922
  *
10743
- * @experimental (since 1.66) - Disclaimer: this property is in a beta state - incompatible API changes
10744
- * may be done before its official public release. Use at your own discretion.
10745
10923
  *
10746
10924
  * @returns Value of property `allowDenseFill`
10747
10925
  */
@@ -10777,8 +10955,6 @@ declare module "sap/f/GridContainer" {
10777
10955
  *
10778
10956
  * Default value is `false`.
10779
10957
  *
10780
- * @experimental (since 1.66) - Disclaimer: this property is in a beta state - incompatible API changes
10781
- * may be done before its official public release. Use at your own discretion.
10782
10958
  *
10783
10959
  * @returns Value of property `inlineBlockLayout`
10784
10960
  */
@@ -10829,9 +11005,6 @@ declare module "sap/f/GridContainer" {
10829
11005
  * Gets content of aggregation {@link #getLayoutXS layoutXS}.
10830
11006
  *
10831
11007
  * The sap.f.GridContainerSettings applied for size "XS". Range: up to 374px.
10832
- *
10833
- * @experimental (since 1.71) - Disclaimer: this property is in a beta state - incompatible API changes
10834
- * may be done before its official public release. Use at your own discretion.
10835
11008
  */
10836
11009
  getLayoutXS(): GridContainerSettings;
10837
11010
  /**
@@ -10843,8 +11016,6 @@ declare module "sap/f/GridContainer" {
10843
11016
  *
10844
11017
  * Default value is `"2rem"`.
10845
11018
  *
10846
- * @experimental (since 1.81) - Disclaimer: this property is in a beta state - incompatible API changes
10847
- * may be done before its official public release.
10848
11019
  *
10849
11020
  * @returns Value of property `minHeight`
10850
11021
  */
@@ -10975,8 +11146,6 @@ declare module "sap/f/GridContainer" {
10975
11146
  *
10976
11147
  * Default value is `false`.
10977
11148
  *
10978
- * @experimental (since 1.66) - Disclaimer: this property is in a beta state - incompatible API changes
10979
- * may be done before its official public release. Use at your own discretion.
10980
11149
  *
10981
11150
  * @returns Reference to `this` in order to allow method chaining
10982
11151
  */
@@ -11018,8 +11187,6 @@ declare module "sap/f/GridContainer" {
11018
11187
  *
11019
11188
  * Default value is `false`.
11020
11189
  *
11021
- * @experimental (since 1.66) - Disclaimer: this property is in a beta state - incompatible API changes
11022
- * may be done before its official public release. Use at your own discretion.
11023
11190
  *
11024
11191
  * @returns Reference to `this` in order to allow method chaining
11025
11192
  */
@@ -11092,8 +11259,6 @@ declare module "sap/f/GridContainer" {
11092
11259
  /**
11093
11260
  * Sets the aggregated {@link #getLayoutXS layoutXS}.
11094
11261
  *
11095
- * @experimental (since 1.71) - Disclaimer: this property is in a beta state - incompatible API changes
11096
- * may be done before its official public release. Use at your own discretion.
11097
11262
  *
11098
11263
  * @returns Reference to `this` in order to allow method chaining
11099
11264
  */
@@ -11114,8 +11279,6 @@ declare module "sap/f/GridContainer" {
11114
11279
  *
11115
11280
  * Default value is `"2rem"`.
11116
11281
  *
11117
- * @experimental (since 1.81) - Disclaimer: this property is in a beta state - incompatible API changes
11118
- * may be done before its official public release.
11119
11282
  *
11120
11283
  * @returns Reference to `this` in order to allow method chaining
11121
11284
  */
@@ -11164,7 +11327,9 @@ declare module "sap/f/GridContainer" {
11164
11327
  sWidth?: CSSSize
11165
11328
  ): this;
11166
11329
  }
11167
-
11330
+ /**
11331
+ * Describes the settings that can be provided to the GridContainer constructor.
11332
+ */
11168
11333
  export interface $GridContainerSettings extends $ControlSettings {
11169
11334
  /**
11170
11335
  * Defines the width of the control.
@@ -11175,9 +11340,6 @@ declare module "sap/f/GridContainer" {
11175
11340
  * Defines the minimum height of the grid.
11176
11341
  *
11177
11342
  * Allows an empty grid to be available as a drop target.
11178
- *
11179
- * @experimental (since 1.81) - Disclaimer: this property is in a beta state - incompatible API changes
11180
- * may be done before its official public release.
11181
11343
  */
11182
11344
  minHeight?: CSSSize | PropertyBindingInfo | `{${string}}`;
11183
11345
 
@@ -11199,9 +11361,6 @@ declare module "sap/f/GridContainer" {
11199
11361
  * ignoring their order.
11200
11362
  *
11201
11363
  * **Note:** The order of the items is ignored. An item which is normally at the bottom, can appear on top.
11202
- *
11203
- * @experimental (since 1.66) - Disclaimer: this property is in a beta state - incompatible API changes
11204
- * may be done before its official public release. Use at your own discretion.
11205
11364
  */
11206
11365
  allowDenseFill?: boolean | PropertyBindingInfo | `{${string}}`;
11207
11366
 
@@ -11211,9 +11370,6 @@ declare module "sap/f/GridContainer" {
11211
11370
  *
11212
11371
  * **Note:** If set to `true` the properties `rowSize` for grid layout, and `minRows` and `rows` per item
11213
11372
  * will be ignored.
11214
- *
11215
- * @experimental (since 1.66) - Disclaimer: this property is in a beta state - incompatible API changes
11216
- * may be done before its official public release. Use at your own discretion.
11217
11373
  */
11218
11374
  inlineBlockLayout?: boolean | PropertyBindingInfo | `{${string}}`;
11219
11375
 
@@ -11235,9 +11391,6 @@ declare module "sap/f/GridContainer" {
11235
11391
 
11236
11392
  /**
11237
11393
  * The sap.f.GridContainerSettings applied for size "XS". Range: up to 374px.
11238
- *
11239
- * @experimental (since 1.71) - Disclaimer: this property is in a beta state - incompatible API changes
11240
- * may be done before its official public release. Use at your own discretion.
11241
11394
  */
11242
11395
  layoutXS?: GridContainerSettings;
11243
11396
 
@@ -11287,6 +11440,9 @@ declare module "sap/f/GridContainer" {
11287
11440
  borderReached?: (oEvent: GridContainer$BorderReachedEvent) => void;
11288
11441
  }
11289
11442
 
11443
+ /**
11444
+ * Parameters of the GridContainer#borderReached event.
11445
+ */
11290
11446
  export interface GridContainer$BorderReachedEventParameters {
11291
11447
  /**
11292
11448
  * Event that leads to the focus change.
@@ -11309,11 +11465,17 @@ declare module "sap/f/GridContainer" {
11309
11465
  column?: int;
11310
11466
  }
11311
11467
 
11468
+ /**
11469
+ * Event object of the GridContainer#borderReached event.
11470
+ */
11312
11471
  export type GridContainer$BorderReachedEvent = Event<
11313
11472
  GridContainer$BorderReachedEventParameters,
11314
11473
  GridContainer
11315
11474
  >;
11316
11475
 
11476
+ /**
11477
+ * Parameters of the GridContainer#columnsChange event.
11478
+ */
11317
11479
  export interface GridContainer$ColumnsChangeEventParameters {
11318
11480
  /**
11319
11481
  * The count of the gird columns.
@@ -11321,11 +11483,17 @@ declare module "sap/f/GridContainer" {
11321
11483
  columns?: int;
11322
11484
  }
11323
11485
 
11486
+ /**
11487
+ * Event object of the GridContainer#columnsChange event.
11488
+ */
11324
11489
  export type GridContainer$ColumnsChangeEvent = Event<
11325
11490
  GridContainer$ColumnsChangeEventParameters,
11326
11491
  GridContainer
11327
11492
  >;
11328
11493
 
11494
+ /**
11495
+ * Parameters of the GridContainer#layoutChange event.
11496
+ */
11329
11497
  export interface GridContainer$LayoutChangeEventParameters {
11330
11498
  /**
11331
11499
  * The name of the newly active layout.
@@ -11333,6 +11501,9 @@ declare module "sap/f/GridContainer" {
11333
11501
  layout?: string;
11334
11502
  }
11335
11503
 
11504
+ /**
11505
+ * Event object of the GridContainer#layoutChange event.
11506
+ */
11336
11507
  export type GridContainer$LayoutChangeEvent = Event<
11337
11508
  GridContainer$LayoutChangeEventParameters,
11338
11509
  GridContainer
@@ -11353,7 +11524,6 @@ declare module "sap/f/GridContainerItemLayoutData" {
11353
11524
  * Holds layout data for an item inside a `sap.f.GridContainer`.
11354
11525
  *
11355
11526
  * @since 1.65
11356
- * @experimental (since 1.65) - This class is experimental. The API may change.
11357
11527
  */
11358
11528
  export default class GridContainerItemLayoutData extends LayoutData {
11359
11529
  /**
@@ -11450,9 +11620,9 @@ declare module "sap/f/GridContainerItemLayoutData" {
11450
11620
  /**
11451
11621
  * Gets current value of property {@link #getRows rows}.
11452
11622
  *
11453
- * Specifies the number of rows, which the item should take.
11623
+ * Specifies the number of rows, which the item should take. For more flexible layout in which the number
11624
+ * of rows is determined by the item's height it is recommended to use the "minRows" property instead
11454
11625
  *
11455
- * @experimental (since 1.65) - this property may soon be removed, use minRows instead
11456
11626
  *
11457
11627
  * @returns Value of property `rows`
11458
11628
  */
@@ -11499,11 +11669,11 @@ declare module "sap/f/GridContainerItemLayoutData" {
11499
11669
  /**
11500
11670
  * Sets a new value for property {@link #getRows rows}.
11501
11671
  *
11502
- * Specifies the number of rows, which the item should take.
11672
+ * Specifies the number of rows, which the item should take. For more flexible layout in which the number
11673
+ * of rows is determined by the item's height it is recommended to use the "minRows" property instead
11503
11674
  *
11504
11675
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
11505
11676
  *
11506
- * @experimental (since 1.65) - this property may soon be removed, use minRows instead
11507
11677
  *
11508
11678
  * @returns Reference to `this` in order to allow method chaining
11509
11679
  */
@@ -11514,7 +11684,9 @@ declare module "sap/f/GridContainerItemLayoutData" {
11514
11684
  iRows: int
11515
11685
  ): this;
11516
11686
  }
11517
-
11687
+ /**
11688
+ * Describes the settings that can be provided to the GridContainerItemLayoutData constructor.
11689
+ */
11518
11690
  export interface $GridContainerItemLayoutDataSettings
11519
11691
  extends $LayoutDataSettings {
11520
11692
  /**
@@ -11533,9 +11705,8 @@ declare module "sap/f/GridContainerItemLayoutData" {
11533
11705
  minRows?: int | PropertyBindingInfo | `{${string}}`;
11534
11706
 
11535
11707
  /**
11536
- * Specifies the number of rows, which the item should take.
11537
- *
11538
- * @experimental (since 1.65) - this property may soon be removed, use minRows instead
11708
+ * Specifies the number of rows, which the item should take. For more flexible layout in which the number
11709
+ * of rows is determined by the item's height it is recommended to use the "minRows" property instead
11539
11710
  */
11540
11711
  rows?: int | PropertyBindingInfo | `{${string}}`;
11541
11712
  }
@@ -11559,7 +11730,6 @@ declare module "sap/f/GridContainerSettings" {
11559
11730
  * aggregations of `sap.f.GridContainer`.
11560
11731
  *
11561
11732
  * @since 1.65
11562
- * @experimental (since 1.65) - This class is experimental. The API may change.
11563
11733
  */
11564
11734
  export default class GridContainerSettings extends ManagedObject {
11565
11735
  /**
@@ -11815,7 +11985,9 @@ declare module "sap/f/GridContainerSettings" {
11815
11985
  sRowSize?: CSSSize
11816
11986
  ): this;
11817
11987
  }
11818
-
11988
+ /**
11989
+ * Describes the settings that can be provided to the GridContainerSettings constructor.
11990
+ */
11819
11991
  export interface $GridContainerSettingsSettings
11820
11992
  extends $ManagedObjectSettings {
11821
11993
  /**
@@ -12103,7 +12275,7 @@ declare module "sap/f/GridList" {
12103
12275
  *
12104
12276
  * **Note:**Should be called after the rendering of `GridList` is ready.
12105
12277
  *
12106
- * @experimental (since 1.87) - Behavior might change.
12278
+ * @since 1.87
12107
12279
  */
12108
12280
  focusItemByDirection(
12109
12281
  /**
@@ -12154,7 +12326,9 @@ declare module "sap/f/GridList" {
12154
12326
  oCustomLayout: GridLayoutBase
12155
12327
  ): this;
12156
12328
  }
12157
-
12329
+ /**
12330
+ * Describes the settings that can be provided to the GridList constructor.
12331
+ */
12158
12332
  export interface $GridListSettings extends $ListBaseSettings {
12159
12333
  /**
12160
12334
  * Defines a custom grid layout
@@ -12167,6 +12341,9 @@ declare module "sap/f/GridList" {
12167
12341
  borderReached?: (oEvent: GridList$BorderReachedEvent) => void;
12168
12342
  }
12169
12343
 
12344
+ /**
12345
+ * Parameters of the GridList#borderReached event.
12346
+ */
12170
12347
  export interface GridList$BorderReachedEventParameters {
12171
12348
  /**
12172
12349
  * Event that leads to the focus change.
@@ -12189,6 +12366,9 @@ declare module "sap/f/GridList" {
12189
12366
  column?: int;
12190
12367
  }
12191
12368
 
12369
+ /**
12370
+ * Event object of the GridList#borderReached event.
12371
+ */
12192
12372
  export type GridList$BorderReachedEvent = Event<
12193
12373
  GridList$BorderReachedEventParameters,
12194
12374
  GridList
@@ -12378,7 +12558,9 @@ declare module "sap/f/GridListItem" {
12378
12558
  */
12379
12559
  unbindContent(): this;
12380
12560
  }
12381
-
12561
+ /**
12562
+ * Describes the settings that can be provided to the GridListItem constructor.
12563
+ */
12382
12564
  export interface $GridListItemSettings extends $ListItemBaseSettings {
12383
12565
  /**
12384
12566
  * The content of this list item
@@ -12496,7 +12678,11 @@ declare module "sap/f/IllustratedMessage" {
12496
12678
  */
12497
12679
  static getMetadata(): ElementMetadata;
12498
12680
  }
12499
-
12681
+ /**
12682
+ * Describes the settings that can be provided to the IllustratedMessage constructor.
12683
+ *
12684
+ * @deprecated (since 1.98) - Use the {@link sap.m.IllustratedMessage} instead.
12685
+ */
12500
12686
  export interface $IllustratedMessageSettings
12501
12687
  extends $IllustratedMessageSettings1 {}
12502
12688
  }
@@ -12587,7 +12773,11 @@ declare module "sap/f/Illustration" {
12587
12773
  */
12588
12774
  static getMetadata(): ElementMetadata;
12589
12775
  }
12590
-
12776
+ /**
12777
+ * Describes the settings that can be provided to the Illustration constructor.
12778
+ *
12779
+ * @deprecated (since 1.98) - Use the {@link sap.m.Illustration} instead.
12780
+ */
12591
12781
  export interface $IllustrationSettings extends $IllustrationSettings1 {}
12592
12782
  }
12593
12783
 
@@ -12614,6 +12804,9 @@ declare module "sap/f/IllustrationPool" {
12614
12804
  */
12615
12805
  interface IllustrationPool {}
12616
12806
  const IllustrationPool: IllustrationPool;
12807
+ /**
12808
+ * @deprecated (since 1.98) - Use the {@link sap.m.IllustrationPool} instead.
12809
+ */
12617
12810
  export default IllustrationPool;
12618
12811
  }
12619
12812
 
@@ -12875,7 +13068,12 @@ declare module "sap/f/ProductSwitch" {
12875
13068
  vItem: ID | ProductSwitchItem | null
12876
13069
  ): this;
12877
13070
  }
12878
-
13071
+ /**
13072
+ * Describes the settings that can be provided to the ProductSwitch constructor.
13073
+ *
13074
+ * @experimental (since 1.72) - This class is experimental and provides only limited functionality. Also
13075
+ * the API might be changed in future.
13076
+ */
12879
13077
  export interface $ProductSwitchSettings extends $ControlSettings {
12880
13078
  /**
12881
13079
  * `ProductSwitch` content.
@@ -12897,6 +13095,9 @@ declare module "sap/f/ProductSwitch" {
12897
13095
  change?: (oEvent: ProductSwitch$ChangeEvent) => void;
12898
13096
  }
12899
13097
 
13098
+ /**
13099
+ * Parameters of the ProductSwitch#change event.
13100
+ */
12900
13101
  export interface ProductSwitch$ChangeEventParameters {
12901
13102
  /**
12902
13103
  * Reference to the new item that has been selected.
@@ -12904,6 +13105,9 @@ declare module "sap/f/ProductSwitch" {
12904
13105
  itemPressed?: ProductSwitchItem;
12905
13106
  }
12906
13107
 
13108
+ /**
13109
+ * Event object of the ProductSwitch#change event.
13110
+ */
12907
13111
  export type ProductSwitch$ChangeEvent = Event<
12908
13112
  ProductSwitch$ChangeEventParameters,
12909
13113
  ProductSwitch
@@ -13131,7 +13335,12 @@ declare module "sap/f/ProductSwitchItem" {
13131
13335
  sTitle?: string
13132
13336
  ): this;
13133
13337
  }
13134
-
13338
+ /**
13339
+ * Describes the settings that can be provided to the ProductSwitchItem constructor.
13340
+ *
13341
+ * @experimental (since 1.72) - This class is experimental and provides only limited functionality. Also
13342
+ * the API might be changed in future.
13343
+ */
13135
13344
  export interface $ProductSwitchItemSettings extends $ControlSettings {
13136
13345
  /**
13137
13346
  * Defines the icon to be displayed as graphical element within the `ProductSwitchItem`. It can be an icon
@@ -14352,7 +14561,9 @@ declare module "sap/f/SearchManager" {
14352
14561
  */
14353
14562
  unbindValue(): this;
14354
14563
  }
14355
-
14564
+ /**
14565
+ * Describes the settings that can be provided to the SearchManager constructor.
14566
+ */
14356
14567
  export interface $SearchManagerSettings extends $ElementSettings {
14357
14568
  /**
14358
14569
  * Defines the input value.
@@ -14415,6 +14626,9 @@ declare module "sap/f/SearchManager" {
14415
14626
  suggest?: (oEvent: SearchManager$SuggestEvent) => void;
14416
14627
  }
14417
14628
 
14629
+ /**
14630
+ * Parameters of the SearchManager#liveChange event.
14631
+ */
14418
14632
  export interface SearchManager$LiveChangeEventParameters {
14419
14633
  /**
14420
14634
  * Current search string.
@@ -14422,11 +14636,17 @@ declare module "sap/f/SearchManager" {
14422
14636
  newValue?: string;
14423
14637
  }
14424
14638
 
14639
+ /**
14640
+ * Event object of the SearchManager#liveChange event.
14641
+ */
14425
14642
  export type SearchManager$LiveChangeEvent = Event<
14426
14643
  SearchManager$LiveChangeEventParameters,
14427
14644
  SearchManager
14428
14645
  >;
14429
14646
 
14647
+ /**
14648
+ * Parameters of the SearchManager#search event.
14649
+ */
14430
14650
  export interface SearchManager$SearchEventParameters {
14431
14651
  /**
14432
14652
  * The search query string.
@@ -14439,11 +14659,17 @@ declare module "sap/f/SearchManager" {
14439
14659
  clearButtonPressed?: boolean;
14440
14660
  }
14441
14661
 
14662
+ /**
14663
+ * Event object of the SearchManager#search event.
14664
+ */
14442
14665
  export type SearchManager$SearchEvent = Event<
14443
14666
  SearchManager$SearchEventParameters,
14444
14667
  SearchManager
14445
14668
  >;
14446
14669
 
14670
+ /**
14671
+ * Parameters of the SearchManager#suggest event.
14672
+ */
14447
14673
  export interface SearchManager$SuggestEventParameters {
14448
14674
  /**
14449
14675
  * Current search string of the search field.
@@ -14451,6 +14677,9 @@ declare module "sap/f/SearchManager" {
14451
14677
  suggestValue?: string;
14452
14678
  }
14453
14679
 
14680
+ /**
14681
+ * Event object of the SearchManager#suggest event.
14682
+ */
14454
14683
  export type SearchManager$SuggestEvent = Event<
14455
14684
  SearchManager$SuggestEventParameters,
14456
14685
  SearchManager
@@ -14543,7 +14772,9 @@ declare module "sap/f/semantic/AddAction" {
14543
14772
  */
14544
14773
  static getMetadata(): ElementMetadata;
14545
14774
  }
14546
-
14775
+ /**
14776
+ * Describes the settings that can be provided to the AddAction constructor.
14777
+ */
14547
14778
  export interface $AddActionSettings extends $SemanticButtonSettings {}
14548
14779
  }
14549
14780
 
@@ -14633,7 +14864,9 @@ declare module "sap/f/semantic/CloseAction" {
14633
14864
  */
14634
14865
  static getMetadata(): ElementMetadata;
14635
14866
  }
14636
-
14867
+ /**
14868
+ * Describes the settings that can be provided to the CloseAction constructor.
14869
+ */
14637
14870
  export interface $CloseActionSettings extends $SemanticButtonSettings {}
14638
14871
  }
14639
14872
 
@@ -14723,7 +14956,9 @@ declare module "sap/f/semantic/CopyAction" {
14723
14956
  */
14724
14957
  static getMetadata(): ElementMetadata;
14725
14958
  }
14726
-
14959
+ /**
14960
+ * Describes the settings that can be provided to the CopyAction constructor.
14961
+ */
14727
14962
  export interface $CopyActionSettings extends $SemanticButtonSettings {}
14728
14963
  }
14729
14964
 
@@ -14813,7 +15048,9 @@ declare module "sap/f/semantic/DeleteAction" {
14813
15048
  */
14814
15049
  static getMetadata(): ElementMetadata;
14815
15050
  }
14816
-
15051
+ /**
15052
+ * Describes the settings that can be provided to the DeleteAction constructor.
15053
+ */
14817
15054
  export interface $DeleteActionSettings extends $SemanticButtonSettings {}
14818
15055
  }
14819
15056
 
@@ -14903,7 +15140,9 @@ declare module "sap/f/semantic/DiscussInJamAction" {
14903
15140
  */
14904
15141
  static getMetadata(): ElementMetadata;
14905
15142
  }
14906
-
15143
+ /**
15144
+ * Describes the settings that can be provided to the DiscussInJamAction constructor.
15145
+ */
14907
15146
  export interface $DiscussInJamActionSettings
14908
15147
  extends $SemanticButtonSettings {}
14909
15148
  }
@@ -14994,7 +15233,9 @@ declare module "sap/f/semantic/EditAction" {
14994
15233
  */
14995
15234
  static getMetadata(): ElementMetadata;
14996
15235
  }
14997
-
15236
+ /**
15237
+ * Describes the settings that can be provided to the EditAction constructor.
15238
+ */
14998
15239
  export interface $EditActionSettings extends $SemanticButtonSettings {}
14999
15240
  }
15000
15241
 
@@ -15084,7 +15325,9 @@ declare module "sap/f/semantic/ExitFullScreenAction" {
15084
15325
  */
15085
15326
  static getMetadata(): ElementMetadata;
15086
15327
  }
15087
-
15328
+ /**
15329
+ * Describes the settings that can be provided to the ExitFullScreenAction constructor.
15330
+ */
15088
15331
  export interface $ExitFullScreenActionSettings
15089
15332
  extends $SemanticButtonSettings {}
15090
15333
  }
@@ -15175,7 +15418,9 @@ declare module "sap/f/semantic/FavoriteAction" {
15175
15418
  */
15176
15419
  static getMetadata(): ElementMetadata;
15177
15420
  }
15178
-
15421
+ /**
15422
+ * Describes the settings that can be provided to the FavoriteAction constructor.
15423
+ */
15179
15424
  export interface $FavoriteActionSettings
15180
15425
  extends $SemanticToggleButtonSettings {}
15181
15426
  }
@@ -15266,7 +15511,9 @@ declare module "sap/f/semantic/FlagAction" {
15266
15511
  */
15267
15512
  static getMetadata(): ElementMetadata;
15268
15513
  }
15269
-
15514
+ /**
15515
+ * Describes the settings that can be provided to the FlagAction constructor.
15516
+ */
15270
15517
  export interface $FlagActionSettings extends $SemanticToggleButtonSettings {}
15271
15518
  }
15272
15519
 
@@ -15356,7 +15603,9 @@ declare module "sap/f/semantic/FooterMainAction" {
15356
15603
  */
15357
15604
  static getMetadata(): ElementMetadata;
15358
15605
  }
15359
-
15606
+ /**
15607
+ * Describes the settings that can be provided to the FooterMainAction constructor.
15608
+ */
15360
15609
  export interface $FooterMainActionSettings extends $MainActionSettings {}
15361
15610
  }
15362
15611
 
@@ -15446,7 +15695,9 @@ declare module "sap/f/semantic/FullScreenAction" {
15446
15695
  */
15447
15696
  static getMetadata(): ElementMetadata;
15448
15697
  }
15449
-
15698
+ /**
15699
+ * Describes the settings that can be provided to the FullScreenAction constructor.
15700
+ */
15450
15701
  export interface $FullScreenActionSettings extends $SemanticButtonSettings {}
15451
15702
  }
15452
15703
 
@@ -15557,7 +15808,9 @@ declare module "sap/f/semantic/MainAction" {
15557
15808
  sText?: string
15558
15809
  ): this;
15559
15810
  }
15560
-
15811
+ /**
15812
+ * Describes the settings that can be provided to the MainAction constructor.
15813
+ */
15561
15814
  export interface $MainActionSettings extends $SemanticButtonSettings {
15562
15815
  /**
15563
15816
  * Defines `MainAction` text
@@ -15652,7 +15905,9 @@ declare module "sap/f/semantic/MessagesIndicator" {
15652
15905
  */
15653
15906
  static getMetadata(): ElementMetadata;
15654
15907
  }
15655
-
15908
+ /**
15909
+ * Describes the settings that can be provided to the MessagesIndicator constructor.
15910
+ */
15656
15911
  export interface $MessagesIndicatorSettings extends $SemanticButtonSettings {}
15657
15912
  }
15658
15913
 
@@ -15763,7 +16018,9 @@ declare module "sap/f/semantic/NegativeAction" {
15763
16018
  sText?: string
15764
16019
  ): this;
15765
16020
  }
15766
-
16021
+ /**
16022
+ * Describes the settings that can be provided to the NegativeAction constructor.
16023
+ */
15767
16024
  export interface $NegativeActionSettings extends $SemanticButtonSettings {
15768
16025
  /**
15769
16026
  * Defines `NegativeAction` text. **Note:** the default text is "Reject"
@@ -15879,7 +16136,9 @@ declare module "sap/f/semantic/PositiveAction" {
15879
16136
  sText?: string
15880
16137
  ): this;
15881
16138
  }
15882
-
16139
+ /**
16140
+ * Describes the settings that can be provided to the PositiveAction constructor.
16141
+ */
15883
16142
  export interface $PositiveActionSettings extends $SemanticButtonSettings {
15884
16143
  /**
15885
16144
  * Defines `PositiveAction` text. **Note:** the default text is "Accept"
@@ -15974,7 +16233,9 @@ declare module "sap/f/semantic/PrintAction" {
15974
16233
  */
15975
16234
  static getMetadata(): ElementMetadata;
15976
16235
  }
15977
-
16236
+ /**
16237
+ * Describes the settings that can be provided to the PrintAction constructor.
16238
+ */
15978
16239
  export interface $PrintActionSettings extends $SemanticButtonSettings {}
15979
16240
  }
15980
16241
 
@@ -16062,7 +16323,9 @@ declare module "sap/f/semantic/SemanticButton" {
16062
16323
  */
16063
16324
  static getMetadata(): ElementMetadata;
16064
16325
  }
16065
-
16326
+ /**
16327
+ * Describes the settings that can be provided to the SemanticButton constructor.
16328
+ */
16066
16329
  export interface $SemanticButtonSettings extends $SemanticButtonSettings1 {}
16067
16330
  }
16068
16331
 
@@ -16171,7 +16434,9 @@ declare module "sap/f/semantic/SemanticControl" {
16171
16434
  bVisible?: boolean
16172
16435
  ): this;
16173
16436
  }
16174
-
16437
+ /**
16438
+ * Describes the settings that can be provided to the SemanticControl constructor.
16439
+ */
16175
16440
  export interface $SemanticControlSettings extends $ElementSettings {
16176
16441
  /**
16177
16442
  * Determines whether the `SemanticControl` is visible.
@@ -18188,7 +18453,9 @@ declare module "sap/f/semantic/SemanticPage" {
18188
18453
  bToggleHeaderOnTitleClick?: boolean
18189
18454
  ): this;
18190
18455
  }
18191
-
18456
+ /**
18457
+ * Describes the settings that can be provided to the SemanticPage constructor.
18458
+ */
18192
18459
  export interface $SemanticPageSettings extends $ControlSettings {
18193
18460
  /**
18194
18461
  * Determines whether the header is expanded.
@@ -18764,7 +19031,9 @@ declare module "sap/f/semantic/SemanticToggleButton" {
18764
19031
  */
18765
19032
  static getMetadata(): ElementMetadata;
18766
19033
  }
18767
-
19034
+ /**
19035
+ * Describes the settings that can be provided to the SemanticToggleButton constructor.
19036
+ */
18768
19037
  export interface $SemanticToggleButtonSettings
18769
19038
  extends $SemanticToggleButtonSettings1 {}
18770
19039
  }
@@ -18855,7 +19124,9 @@ declare module "sap/f/semantic/SendEmailAction" {
18855
19124
  */
18856
19125
  static getMetadata(): ElementMetadata;
18857
19126
  }
18858
-
19127
+ /**
19128
+ * Describes the settings that can be provided to the SendEmailAction constructor.
19129
+ */
18859
19130
  export interface $SendEmailActionSettings extends $SemanticButtonSettings {}
18860
19131
  }
18861
19132
 
@@ -18945,7 +19216,9 @@ declare module "sap/f/semantic/SendMessageAction" {
18945
19216
  */
18946
19217
  static getMetadata(): ElementMetadata;
18947
19218
  }
18948
-
19219
+ /**
19220
+ * Describes the settings that can be provided to the SendMessageAction constructor.
19221
+ */
18949
19222
  export interface $SendMessageActionSettings extends $SemanticButtonSettings {}
18950
19223
  }
18951
19224
 
@@ -19035,7 +19308,9 @@ declare module "sap/f/semantic/ShareInJamAction" {
19035
19308
  */
19036
19309
  static getMetadata(): ElementMetadata;
19037
19310
  }
19038
-
19311
+ /**
19312
+ * Describes the settings that can be provided to the ShareInJamAction constructor.
19313
+ */
19039
19314
  export interface $ShareInJamActionSettings extends $SemanticButtonSettings {}
19040
19315
  }
19041
19316
 
@@ -19125,7 +19400,9 @@ declare module "sap/f/semantic/TitleMainAction" {
19125
19400
  */
19126
19401
  static getMetadata(): ElementMetadata;
19127
19402
  }
19128
-
19403
+ /**
19404
+ * Describes the settings that can be provided to the TitleMainAction constructor.
19405
+ */
19129
19406
  export interface $TitleMainActionSettings extends $MainActionSettings {}
19130
19407
  }
19131
19408
 
@@ -20440,7 +20717,9 @@ declare module "sap/f/ShellBar" {
20440
20717
  sTitle?: string
20441
20718
  ): this;
20442
20719
  }
20443
-
20720
+ /**
20721
+ * Describes the settings that can be provided to the ShellBar constructor.
20722
+ */
20444
20723
  export interface $ShellBarSettings extends $ControlSettings {
20445
20724
  /**
20446
20725
  * Defines the main title of the control.
@@ -20575,6 +20854,9 @@ declare module "sap/f/ShellBar" {
20575
20854
  avatarPressed?: (oEvent: ShellBar$AvatarPressedEvent) => void;
20576
20855
  }
20577
20856
 
20857
+ /**
20858
+ * Parameters of the ShellBar#avatarPressed event.
20859
+ */
20578
20860
  export interface ShellBar$AvatarPressedEventParameters {
20579
20861
  /**
20580
20862
  * Reference to the button that has been pressed
@@ -20582,11 +20864,17 @@ declare module "sap/f/ShellBar" {
20582
20864
  avatar?: Avatar;
20583
20865
  }
20584
20866
 
20867
+ /**
20868
+ * Event object of the ShellBar#avatarPressed event.
20869
+ */
20585
20870
  export type ShellBar$AvatarPressedEvent = Event<
20586
20871
  ShellBar$AvatarPressedEventParameters,
20587
20872
  ShellBar
20588
20873
  >;
20589
20874
 
20875
+ /**
20876
+ * Parameters of the ShellBar#copilotPressed event.
20877
+ */
20590
20878
  export interface ShellBar$CopilotPressedEventParameters {
20591
20879
  /**
20592
20880
  * Reference to the button that has been pressed
@@ -20599,11 +20887,17 @@ declare module "sap/f/ShellBar" {
20599
20887
  button?: Button;
20600
20888
  }
20601
20889
 
20890
+ /**
20891
+ * Event object of the ShellBar#copilotPressed event.
20892
+ */
20602
20893
  export type ShellBar$CopilotPressedEvent = Event<
20603
20894
  ShellBar$CopilotPressedEventParameters,
20604
20895
  ShellBar
20605
20896
  >;
20606
20897
 
20898
+ /**
20899
+ * Parameters of the ShellBar#homeIconPressed event.
20900
+ */
20607
20901
  export interface ShellBar$HomeIconPressedEventParameters {
20608
20902
  /**
20609
20903
  * Reference to the image that has been pressed
@@ -20611,11 +20905,17 @@ declare module "sap/f/ShellBar" {
20611
20905
  icon?: Image;
20612
20906
  }
20613
20907
 
20908
+ /**
20909
+ * Event object of the ShellBar#homeIconPressed event.
20910
+ */
20614
20911
  export type ShellBar$HomeIconPressedEvent = Event<
20615
20912
  ShellBar$HomeIconPressedEventParameters,
20616
20913
  ShellBar
20617
20914
  >;
20618
20915
 
20916
+ /**
20917
+ * Parameters of the ShellBar#menuButtonPressed event.
20918
+ */
20619
20919
  export interface ShellBar$MenuButtonPressedEventParameters {
20620
20920
  /**
20621
20921
  * Reference to the button that has been pressed
@@ -20623,11 +20923,17 @@ declare module "sap/f/ShellBar" {
20623
20923
  button?: Button;
20624
20924
  }
20625
20925
 
20926
+ /**
20927
+ * Event object of the ShellBar#menuButtonPressed event.
20928
+ */
20626
20929
  export type ShellBar$MenuButtonPressedEvent = Event<
20627
20930
  ShellBar$MenuButtonPressedEventParameters,
20628
20931
  ShellBar
20629
20932
  >;
20630
20933
 
20934
+ /**
20935
+ * Parameters of the ShellBar#navButtonPressed event.
20936
+ */
20631
20937
  export interface ShellBar$NavButtonPressedEventParameters {
20632
20938
  /**
20633
20939
  * Reference to the button that has been pressed
@@ -20635,11 +20941,17 @@ declare module "sap/f/ShellBar" {
20635
20941
  button?: Button;
20636
20942
  }
20637
20943
 
20944
+ /**
20945
+ * Event object of the ShellBar#navButtonPressed event.
20946
+ */
20638
20947
  export type ShellBar$NavButtonPressedEvent = Event<
20639
20948
  ShellBar$NavButtonPressedEventParameters,
20640
20949
  ShellBar
20641
20950
  >;
20642
20951
 
20952
+ /**
20953
+ * Parameters of the ShellBar#notificationsPressed event.
20954
+ */
20643
20955
  export interface ShellBar$NotificationsPressedEventParameters {
20644
20956
  /**
20645
20957
  * Reference to the button that has been pressed
@@ -20647,11 +20959,17 @@ declare module "sap/f/ShellBar" {
20647
20959
  button?: Button;
20648
20960
  }
20649
20961
 
20962
+ /**
20963
+ * Event object of the ShellBar#notificationsPressed event.
20964
+ */
20650
20965
  export type ShellBar$NotificationsPressedEvent = Event<
20651
20966
  ShellBar$NotificationsPressedEventParameters,
20652
20967
  ShellBar
20653
20968
  >;
20654
20969
 
20970
+ /**
20971
+ * Parameters of the ShellBar#productSwitcherPressed event.
20972
+ */
20655
20973
  export interface ShellBar$ProductSwitcherPressedEventParameters {
20656
20974
  /**
20657
20975
  * Reference to the button that has been pressed
@@ -20659,11 +20977,17 @@ declare module "sap/f/ShellBar" {
20659
20977
  button?: Button;
20660
20978
  }
20661
20979
 
20980
+ /**
20981
+ * Event object of the ShellBar#productSwitcherPressed event.
20982
+ */
20662
20983
  export type ShellBar$ProductSwitcherPressedEvent = Event<
20663
20984
  ShellBar$ProductSwitcherPressedEventParameters,
20664
20985
  ShellBar
20665
20986
  >;
20666
20987
 
20988
+ /**
20989
+ * Parameters of the ShellBar#searchButtonPressed event.
20990
+ */
20667
20991
  export interface ShellBar$SearchButtonPressedEventParameters {
20668
20992
  /**
20669
20993
  * Reference to the button that has been pressed
@@ -20671,6 +20995,9 @@ declare module "sap/f/ShellBar" {
20671
20995
  button?: Button;
20672
20996
  }
20673
20997
 
20998
+ /**
20999
+ * Event object of the ShellBar#searchButtonPressed event.
21000
+ */
20674
21001
  export type ShellBar$SearchButtonPressedEvent = Event<
20675
21002
  ShellBar$SearchButtonPressedEventParameters,
20676
21003
  ShellBar
@@ -21367,7 +21694,9 @@ declare module "sap/f/SidePanel" {
21367
21694
  iSidePanelResizeStep?: int
21368
21695
  ): this;
21369
21696
  }
21370
-
21697
+ /**
21698
+ * Describes the settings that can be provided to the SidePanel constructor.
21699
+ */
21371
21700
  export interface $SidePanelSettings extends $ControlSettings {
21372
21701
  /**
21373
21702
  * Determines whether the action bar is expanded or collapsed.
@@ -21470,6 +21799,9 @@ declare module "sap/f/SidePanel" {
21470
21799
  toggle?: (oEvent: SidePanel$ToggleEvent) => void;
21471
21800
  }
21472
21801
 
21802
+ /**
21803
+ * Parameters of the SidePanel#toggle event.
21804
+ */
21473
21805
  export interface SidePanel$ToggleEventParameters {
21474
21806
  /**
21475
21807
  * The action item that triggers the event.
@@ -21482,6 +21814,9 @@ declare module "sap/f/SidePanel" {
21482
21814
  expanded?: boolean;
21483
21815
  }
21484
21816
 
21817
+ /**
21818
+ * Event object of the SidePanel#toggle event.
21819
+ */
21485
21820
  export type SidePanel$ToggleEvent = Event<
21486
21821
  SidePanel$ToggleEventParameters,
21487
21822
  SidePanel
@@ -21679,7 +22014,9 @@ declare module "sap/f/SidePanelItem" {
21679
22014
  sIcon?: URI
21680
22015
  ): this;
21681
22016
  }
21682
-
22017
+ /**
22018
+ * Describes the settings that can be provided to the SidePanelItem constructor.
22019
+ */
21683
22020
  export interface $SidePanelItemSettings extends $ItemSettings {
21684
22021
  /**
21685
22022
  * Specifies the icon for the item.