@openui5/ts-types 1.92.0 → 1.93.3

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.92.0
1
+ // For Library Version: 1.93.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -94,7 +94,7 @@ declare namespace sap {
94
94
  /**
95
95
  * Fires when the user presses the control.
96
96
  */
97
- press?: Function;
97
+ press?: (oEvent: sap.ui.base.Event) => void;
98
98
  }
99
99
 
100
100
  interface $NumericHeaderSettings extends sap.f.cards.$BaseHeaderSettings {
@@ -166,7 +166,7 @@ declare namespace sap {
166
166
  /**
167
167
  * Fires when the user presses the control.
168
168
  */
169
- press?: Function;
169
+ press?: (oEvent: sap.ui.base.Event) => void;
170
170
  }
171
171
 
172
172
  interface $NumericSideIndicatorSettings
@@ -224,13 +224,6 @@ declare namespace sap {
224
224
  mSettings?: sap.f.cards.$BaseHeaderSettings
225
225
  );
226
226
 
227
- /**
228
- * @SINCE 1.86
229
- * @EXPERIMENTAL (since 1.86)
230
- *
231
- * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
232
- */
233
- destroyToolbar(): this;
234
227
  /**
235
228
  * Creates a new subclass of class sap.f.cards.BaseHeader with name `sClassName` and enriches it with the
236
229
  * information contained in `oClassInfo`.
@@ -252,6 +245,17 @@ declare namespace sap {
252
245
  */
253
246
  FNMetaImpl?: Function
254
247
  ): Function;
248
+ /**
249
+ * Returns a metadata object for class sap.f.cards.BaseHeader.
250
+ */
251
+ static getMetadata(): sap.ui.core.ElementMetadata;
252
+ /**
253
+ * @SINCE 1.86
254
+ * @EXPERIMENTAL (since 1.86)
255
+ *
256
+ * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
257
+ */
258
+ destroyToolbar(): this;
255
259
  /**
256
260
  * @EXPERIMENTAL (since 1.89)
257
261
  *
@@ -267,10 +271,6 @@ declare namespace sap {
267
271
  * Default value is `empty string`.
268
272
  */
269
273
  getDataTimestamp(): string;
270
- /**
271
- * Returns a metadata object for class sap.f.cards.BaseHeader.
272
- */
273
- static getMetadata(): sap.ui.core.ElementMetadata;
274
274
  /**
275
275
  * @SINCE 1.86
276
276
  * @EXPERIMENTAL (since 1.86)
@@ -339,6 +339,31 @@ declare namespace sap {
339
339
  mSettings?: sap.f.cards.$HeaderSettings
340
340
  );
341
341
 
342
+ /**
343
+ * Creates a new subclass of class sap.f.cards.Header with name `sClassName` and enriches it with the information
344
+ * contained in `oClassInfo`.
345
+ *
346
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.f.cards.BaseHeader.extend}.
347
+ */
348
+ static extend<T extends Record<string, unknown>>(
349
+ /**
350
+ * Name of the class being created
351
+ */
352
+ sClassName: string,
353
+ /**
354
+ * Object literal with information about the class
355
+ */
356
+ oClassInfo?: sap.ClassInfo<T, sap.f.cards.Header>,
357
+ /**
358
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
359
+ * used by this class
360
+ */
361
+ FNMetaImpl?: Function
362
+ ): Function;
363
+ /**
364
+ * Returns a metadata object for class sap.f.cards.Header.
365
+ */
366
+ static getMetadata(): sap.ui.core.ElementMetadata;
342
367
  /**
343
368
  * Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.f.cards.Header`.
344
369
  *
@@ -395,27 +420,6 @@ declare namespace sap {
395
420
  */
396
421
  oListener?: object
397
422
  ): this;
398
- /**
399
- * Creates a new subclass of class sap.f.cards.Header with name `sClassName` and enriches it with the information
400
- * contained in `oClassInfo`.
401
- *
402
- * `oClassInfo` might contain the same kind of information as described in {@link sap.f.cards.BaseHeader.extend}.
403
- */
404
- static extend<T extends Record<string, unknown>>(
405
- /**
406
- * Name of the class being created
407
- */
408
- sClassName: string,
409
- /**
410
- * Object literal with information about the class
411
- */
412
- oClassInfo?: sap.ClassInfo<T, sap.f.cards.Header>,
413
- /**
414
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
415
- * used by this class
416
- */
417
- FNMetaImpl?: Function
418
- ): Function;
419
423
  /**
420
424
  * Fires event {@link #event:press press} to attached listeners.
421
425
  */
@@ -469,10 +473,6 @@ declare namespace sap {
469
473
  * Default value is `empty string`.
470
474
  */
471
475
  getIconSrc(): sap.ui.core.URI;
472
- /**
473
- * Returns a metadata object for class sap.f.cards.Header.
474
- */
475
- static getMetadata(): sap.ui.core.ElementMetadata;
476
476
  /**
477
477
  * Gets current value of property {@link #getStatusText statusText}.
478
478
  *
@@ -671,6 +671,31 @@ declare namespace sap {
671
671
  mSettings?: sap.f.cards.$NumericHeaderSettings
672
672
  );
673
673
 
674
+ /**
675
+ * Creates a new subclass of class sap.f.cards.NumericHeader with name `sClassName` and enriches it with
676
+ * the information contained in `oClassInfo`.
677
+ *
678
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.f.cards.BaseHeader.extend}.
679
+ */
680
+ static extend<T extends Record<string, unknown>>(
681
+ /**
682
+ * Name of the class being created
683
+ */
684
+ sClassName: string,
685
+ /**
686
+ * Object literal with information about the class
687
+ */
688
+ oClassInfo?: sap.ClassInfo<T, sap.f.cards.NumericHeader>,
689
+ /**
690
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
691
+ * used by this class
692
+ */
693
+ FNMetaImpl?: Function
694
+ ): Function;
695
+ /**
696
+ * Returns a metadata object for class sap.f.cards.NumericHeader.
697
+ */
698
+ static getMetadata(): sap.ui.core.ElementMetadata;
674
699
  /**
675
700
  * Adds some sideIndicator to the aggregation {@link #getSideIndicators sideIndicators}.
676
701
  */
@@ -740,27 +765,6 @@ declare namespace sap {
740
765
  */
741
766
  oListener?: object
742
767
  ): this;
743
- /**
744
- * Creates a new subclass of class sap.f.cards.NumericHeader with name `sClassName` and enriches it with
745
- * the information contained in `oClassInfo`.
746
- *
747
- * `oClassInfo` might contain the same kind of information as described in {@link sap.f.cards.BaseHeader.extend}.
748
- */
749
- static extend<T extends Record<string, unknown>>(
750
- /**
751
- * Name of the class being created
752
- */
753
- sClassName: string,
754
- /**
755
- * Object literal with information about the class
756
- */
757
- oClassInfo?: sap.ClassInfo<T, sap.f.cards.NumericHeader>,
758
- /**
759
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
760
- * used by this class
761
- */
762
- FNMetaImpl?: Function
763
- ): Function;
764
768
  /**
765
769
  * Fires event {@link #event:press press} to attached listeners.
766
770
  */
@@ -776,10 +780,6 @@ declare namespace sap {
776
780
  * Additional text which adds more details to what is shown in the numeric header.
777
781
  */
778
782
  getDetails(): string;
779
- /**
780
- * Returns a metadata object for class sap.f.cards.NumericHeader.
781
- */
782
- static getMetadata(): sap.ui.core.ElementMetadata;
783
783
  /**
784
784
  * Gets current value of property {@link #getNumber number}.
785
785
  *
@@ -1206,6 +1206,10 @@ declare namespace sap {
1206
1206
  */
1207
1207
  FNMetaImpl?: Function
1208
1208
  ): Function;
1209
+ /**
1210
+ * Returns a metadata object for class sap.f.dnd.GridDropInfo.
1211
+ */
1212
+ static getMetadata(): sap.ui.core.ElementMetadata;
1209
1213
  /**
1210
1214
  * Gets current value of property {@link #getDropIndicatorSize dropIndicatorSize}.
1211
1215
  *
@@ -1223,10 +1227,6 @@ declare namespace sap {
1223
1227
  * columns: }` or `null`.
1224
1228
  */
1225
1229
  getDropIndicatorSize(): Function;
1226
- /**
1227
- * Returns a metadata object for class sap.f.dnd.GridDropInfo.
1228
- */
1229
- static getMetadata(): sap.ui.core.ElementMetadata;
1230
1230
  /**
1231
1231
  * Sets a new value for property {@link #getDropIndicatorSize dropIndicatorSize}.
1232
1232
  *
@@ -1362,14 +1362,14 @@ declare namespace sap {
1362
1362
  */
1363
1363
  FNMetaImpl?: Function
1364
1364
  ): Function;
1365
- /**
1366
- * Gets if a navigation should close dialogs.
1367
- */
1368
- getCloseDialogs(): boolean;
1369
1365
  /**
1370
1366
  * Returns a metadata object for class sap.f.routing.TargetHandler.
1371
1367
  */
1372
1368
  static getMetadata(): sap.ui.base.Metadata;
1369
+ /**
1370
+ * Gets if a navigation should close dialogs.
1371
+ */
1372
+ getCloseDialogs(): boolean;
1373
1373
  /**
1374
1374
  * Sets if a navigation should close dialogs.
1375
1375
  */
@@ -3815,6 +3815,31 @@ declare namespace sap {
3815
3815
  mSettings?: sap.f.semantic.$SemanticPageSettings
3816
3816
  );
3817
3817
 
3818
+ /**
3819
+ * Creates a new subclass of class sap.f.semantic.SemanticPage with name `sClassName` and enriches it with
3820
+ * the information contained in `oClassInfo`.
3821
+ *
3822
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3823
+ */
3824
+ static extend<T extends Record<string, unknown>>(
3825
+ /**
3826
+ * Name of the class being created
3827
+ */
3828
+ sClassName: string,
3829
+ /**
3830
+ * Object literal with information about the class
3831
+ */
3832
+ oClassInfo?: sap.ClassInfo<T, sap.f.semantic.SemanticPage>,
3833
+ /**
3834
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3835
+ * used by this class
3836
+ */
3837
+ FNMetaImpl?: Function
3838
+ ): Function;
3839
+ /**
3840
+ * Returns a metadata object for class sap.f.semantic.SemanticPage.
3841
+ */
3842
+ static getMetadata(): sap.ui.core.ElementMetadata;
3818
3843
  /**
3819
3844
  * Adds some customShareAction to the aggregation {@link #getCustomShareActions customShareActions}.
3820
3845
  */
@@ -4047,27 +4072,6 @@ declare namespace sap {
4047
4072
  * Destroys the titleSnappedOnMobile in the aggregation {@link #getTitleSnappedOnMobile titleSnappedOnMobile}.
4048
4073
  */
4049
4074
  destroyTitleSnappedOnMobile(): this;
4050
- /**
4051
- * Creates a new subclass of class sap.f.semantic.SemanticPage with name `sClassName` and enriches it with
4052
- * the information contained in `oClassInfo`.
4053
- *
4054
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4055
- */
4056
- static extend<T extends Record<string, unknown>>(
4057
- /**
4058
- * Name of the class being created
4059
- */
4060
- sClassName: string,
4061
- /**
4062
- * Object literal with information about the class
4063
- */
4064
- oClassInfo?: sap.ClassInfo<T, sap.f.semantic.SemanticPage>,
4065
- /**
4066
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4067
- * used by this class
4068
- */
4069
- FNMetaImpl?: Function
4070
- ): Function;
4071
4075
  /**
4072
4076
  * Gets content of aggregation {@link #getAddAction addAction}.
4073
4077
  *
@@ -4289,10 +4293,6 @@ declare namespace sap {
4289
4293
  * first action.
4290
4294
  */
4291
4295
  getMessagesIndicator(): sap.f.semantic.MessagesIndicator;
4292
- /**
4293
- * Returns a metadata object for class sap.f.semantic.SemanticPage.
4294
- */
4295
- static getMetadata(): sap.ui.core.ElementMetadata;
4296
4296
  /**
4297
4297
  * Gets content of aggregation {@link #getNegativeAction negativeAction}.
4298
4298
  *
@@ -5797,7 +5797,7 @@ declare namespace sap {
5797
5797
  /**
5798
5798
  * Fired when the user clicks or taps on the control.
5799
5799
  */
5800
- press?: Function;
5800
+ press?: (oEvent: sap.ui.base.Event) => void;
5801
5801
  }
5802
5802
 
5803
5803
  interface $AvatarGroupItemSettings extends sap.ui.core.$ControlSettings {
@@ -5881,6 +5881,24 @@ declare namespace sap {
5881
5881
  */
5882
5882
  headerExpanded?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
5883
5883
 
5884
+ /**
5885
+ * @SINCE 1.93
5886
+ *
5887
+ * Determines whether the `DynamicPageHeader` is pinned.
5888
+ *
5889
+ * The property can be changed programmatically or in the occurrence of the following user interactions:
5890
+ *
5891
+ * - Toggling the pin/unpin button of `DynamicPageHeader`
5892
+ * - Snapping the `DynamicPageHeader` by explicitly clicking on the `DynamicPageTitle`
5893
+ *
5894
+ * **Note: ** The property will only apply if the header is effectively pinnable, i.e. if the following
5895
+ * conditions are met:
5896
+ * - `DynamicPageHeader` `pinnable` property is `true`
5897
+ * - `DynamicPageHeader` is expanded
5898
+ * - `DynamicPage` `preserveHeaderStateOnScroll` property is effectively disabled
5899
+ */
5900
+ headerPinned?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
5901
+
5884
5902
  /**
5885
5903
  * Determines whether the user can switch between the expanded/collapsed states of the `DynamicPageHeader`
5886
5904
  * by clicking on the `DynamicPageTitle` or by using the expand/collapse visual indicators, positioned at
@@ -5986,6 +6004,13 @@ declare namespace sap {
5986
6004
  * content have to implement the `sap.f.IDynamicPageStickyContent` interface.
5987
6005
  */
5988
6006
  stickySubheaderProvider?: sap.f.IDynamicPageStickyContent | string;
6007
+
6008
+ /**
6009
+ * @SINCE 1.93
6010
+ *
6011
+ * The event is fired when the `headerPinned` property is changed via user interaction.
6012
+ */
6013
+ pinnedStateChange?: (oEvent: sap.ui.base.Event) => void;
5989
6014
  }
5990
6015
 
5991
6016
  interface $DynamicPageAccessibleLandmarkInfoSettings
@@ -6290,7 +6315,7 @@ declare namespace sap {
6290
6315
  * Also fired when the developer toggles the title state by programmatically changing the scroll position
6291
6316
  * of the scrollbar of `DynamicPage`.
6292
6317
  */
6293
- stateChange?: Function;
6318
+ stateChange?: (oEvent: sap.ui.base.Event) => void;
6294
6319
  }
6295
6320
 
6296
6321
  interface $FlexibleColumnLayoutSettings
@@ -6422,56 +6447,56 @@ declare namespace sap {
6422
6447
  * **Note: **The event is suppressed while the control has zero width and will be fired the first time
6423
6448
  * it gets a non-zero width
6424
6449
  */
6425
- stateChange?: Function;
6450
+ stateChange?: (oEvent: sap.ui.base.Event) => void;
6426
6451
 
6427
6452
  /**
6428
6453
  * Fires when navigation between two pages in the `Begin` column has been triggered. The transition (if
6429
6454
  * any) to the new page has not started yet. This event can be aborted by the application with preventDefault(),
6430
6455
  * which means that there will be no navigation.
6431
6456
  */
6432
- beginColumnNavigate?: Function;
6457
+ beginColumnNavigate?: (oEvent: sap.ui.base.Event) => void;
6433
6458
 
6434
6459
  /**
6435
6460
  * Fires when navigation between two pages in the `Begin` column has completed.
6436
6461
  *
6437
6462
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
6438
6463
  */
6439
- afterBeginColumnNavigate?: Function;
6464
+ afterBeginColumnNavigate?: (oEvent: sap.ui.base.Event) => void;
6440
6465
 
6441
6466
  /**
6442
6467
  * Fires when navigation between two pages in the `Mid` column has been triggered. The transition (if any)
6443
6468
  * to the new page has not started yet. This event can be aborted by the application with preventDefault(),
6444
6469
  * which means that there will be no navigation.
6445
6470
  */
6446
- midColumnNavigate?: Function;
6471
+ midColumnNavigate?: (oEvent: sap.ui.base.Event) => void;
6447
6472
 
6448
6473
  /**
6449
6474
  * Fires when navigation between two pages in the `Mid` column has completed.
6450
6475
  *
6451
6476
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
6452
6477
  */
6453
- afterMidColumnNavigate?: Function;
6478
+ afterMidColumnNavigate?: (oEvent: sap.ui.base.Event) => void;
6454
6479
 
6455
6480
  /**
6456
6481
  * Fires when navigation between two pages in the `End` column has been triggered. The transition (if any)
6457
6482
  * to the new page has not started yet. This event can be aborted by the application with preventDefault(),
6458
6483
  * which means that there will be no navigation.
6459
6484
  */
6460
- endColumnNavigate?: Function;
6485
+ endColumnNavigate?: (oEvent: sap.ui.base.Event) => void;
6461
6486
 
6462
6487
  /**
6463
6488
  * Fires when navigation between two pages in the `End` column has completed.
6464
6489
  *
6465
6490
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
6466
6491
  */
6467
- afterEndColumnNavigate?: Function;
6492
+ afterEndColumnNavigate?: (oEvent: sap.ui.base.Event) => void;
6468
6493
 
6469
6494
  /**
6470
6495
  * @SINCE 1.76
6471
6496
  *
6472
6497
  * Fired when resize of each column has completed.
6473
6498
  */
6474
- columnResize?: Function;
6499
+ columnResize?: (oEvent: sap.ui.base.Event) => void;
6475
6500
  }
6476
6501
 
6477
6502
  interface $GridContainerSettings extends sap.ui.core.$ControlSettings {
@@ -6578,17 +6603,17 @@ declare namespace sap {
6578
6603
  /**
6579
6604
  * Fired when the currently active GridSettings change.
6580
6605
  */
6581
- layoutChange?: Function;
6606
+ layoutChange?: (oEvent: sap.ui.base.Event) => void;
6582
6607
 
6583
6608
  /**
6584
6609
  * Fired when the grid columns count is changed.
6585
6610
  */
6586
- columnsChange?: Function;
6611
+ columnsChange?: (oEvent: sap.ui.base.Event) => void;
6587
6612
 
6588
6613
  /**
6589
6614
  * Fires if the border of the visualizations is reached so that an application can react on this.
6590
6615
  */
6591
- borderReached?: Function;
6616
+ borderReached?: (oEvent: sap.ui.base.Event) => void;
6592
6617
  }
6593
6618
 
6594
6619
  interface $GridContainerItemLayoutDataSettings
@@ -6678,7 +6703,7 @@ declare namespace sap {
6678
6703
  /**
6679
6704
  * Fires if the border of the visualizations is reached so that an application can react on this.
6680
6705
  */
6681
- borderReached?: Function;
6706
+ borderReached?: (oEvent: sap.ui.base.Event) => void;
6682
6707
  }
6683
6708
 
6684
6709
  interface $GridListItemSettings extends sap.m.$ListItemBaseSettings {
@@ -6804,7 +6829,7 @@ declare namespace sap {
6804
6829
  /**
6805
6830
  * Fires when an unselected item is pressed.
6806
6831
  */
6807
- change?: Function;
6832
+ change?: (oEvent: sap.ui.base.Event) => void;
6808
6833
  }
6809
6834
 
6810
6835
  interface $ProductSwitchItemSettings extends sap.ui.core.$ControlSettings {
@@ -6886,21 +6911,21 @@ declare namespace sap {
6886
6911
  /**
6887
6912
  * Fired when the user triggers a search.
6888
6913
  */
6889
- search?: Function;
6914
+ search?: (oEvent: sap.ui.base.Event) => void;
6890
6915
 
6891
6916
  /**
6892
6917
  * Fired when the value of the search field is changed by the user, for example at each key press.
6893
6918
  *
6894
6919
  * **Note:** Do not invalidate or re-render a focused search field, especially during the `liveChange` event.
6895
6920
  */
6896
- liveChange?: Function;
6921
+ liveChange?: (oEvent: sap.ui.base.Event) => void;
6897
6922
 
6898
6923
  /**
6899
6924
  * Fired when the search field is initially focused or its value is changed by the user. This event means
6900
6925
  * that suggestion data should be updated, in case if suggestions are used. Use the value parameter to create
6901
6926
  * new suggestions for it.
6902
6927
  */
6903
- suggest?: Function;
6928
+ suggest?: (oEvent: sap.ui.base.Event) => void;
6904
6929
  }
6905
6930
 
6906
6931
  interface $ShellBarSettings extends sap.ui.core.$ControlSettings {
@@ -7004,42 +7029,42 @@ declare namespace sap {
7004
7029
  /**
7005
7030
  * Fired when the `homeIcon` is pressed.
7006
7031
  */
7007
- homeIconPressed?: Function;
7032
+ homeIconPressed?: (oEvent: sap.ui.base.Event) => void;
7008
7033
 
7009
7034
  /**
7010
7035
  * Fired when the alternative menu button is pressed.
7011
7036
  */
7012
- menuButtonPressed?: Function;
7037
+ menuButtonPressed?: (oEvent: sap.ui.base.Event) => void;
7013
7038
 
7014
7039
  /**
7015
7040
  * Fired when the navigation/back button is pressed.
7016
7041
  */
7017
- navButtonPressed?: Function;
7042
+ navButtonPressed?: (oEvent: sap.ui.base.Event) => void;
7018
7043
 
7019
7044
  /**
7020
7045
  * Fired when the SAP CoPilot icon is pressed.
7021
7046
  */
7022
- copilotPressed?: Function;
7047
+ copilotPressed?: (oEvent: sap.ui.base.Event) => void;
7023
7048
 
7024
7049
  /**
7025
7050
  * Fired when the search button is pressed.
7026
7051
  */
7027
- searchButtonPressed?: Function;
7052
+ searchButtonPressed?: (oEvent: sap.ui.base.Event) => void;
7028
7053
 
7029
7054
  /**
7030
7055
  * Fired when the notifications button is pressed.
7031
7056
  */
7032
- notificationsPressed?: Function;
7057
+ notificationsPressed?: (oEvent: sap.ui.base.Event) => void;
7033
7058
 
7034
7059
  /**
7035
7060
  * Fired when the product switcher button is pressed.
7036
7061
  */
7037
- productSwitcherPressed?: Function;
7062
+ productSwitcherPressed?: (oEvent: sap.ui.base.Event) => void;
7038
7063
 
7039
7064
  /**
7040
7065
  * Fired when the profile avatar is pressed.
7041
7066
  */
7042
- avatarPressed?: Function;
7067
+ avatarPressed?: (oEvent: sap.ui.base.Event) => void;
7043
7068
  }
7044
7069
 
7045
7070
  /**
@@ -7261,6 +7286,31 @@ declare namespace sap {
7261
7286
  mSettings?: sap.f.$AvatarGroupSettings
7262
7287
  );
7263
7288
 
7289
+ /**
7290
+ * Creates a new subclass of class sap.f.AvatarGroup with name `sClassName` and enriches it with the information
7291
+ * contained in `oClassInfo`.
7292
+ *
7293
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
7294
+ */
7295
+ static extend<T extends Record<string, unknown>>(
7296
+ /**
7297
+ * Name of the class being created
7298
+ */
7299
+ sClassName: string,
7300
+ /**
7301
+ * Object literal with information about the class
7302
+ */
7303
+ oClassInfo?: sap.ClassInfo<T, sap.f.AvatarGroup>,
7304
+ /**
7305
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7306
+ * used by this class
7307
+ */
7308
+ FNMetaImpl?: Function
7309
+ ): Function;
7310
+ /**
7311
+ * Returns a metadata object for class sap.f.AvatarGroup.
7312
+ */
7313
+ static getMetadata(): sap.ui.core.ElementMetadata;
7264
7314
  /**
7265
7315
  * Adds some item to the aggregation {@link #getItems items}.
7266
7316
  */
@@ -7330,27 +7380,6 @@ declare namespace sap {
7330
7380
  */
7331
7381
  oListener?: object
7332
7382
  ): this;
7333
- /**
7334
- * Creates a new subclass of class sap.f.AvatarGroup with name `sClassName` and enriches it with the information
7335
- * contained in `oClassInfo`.
7336
- *
7337
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
7338
- */
7339
- static extend<T extends Record<string, unknown>>(
7340
- /**
7341
- * Name of the class being created
7342
- */
7343
- sClassName: string,
7344
- /**
7345
- * Object literal with information about the class
7346
- */
7347
- oClassInfo?: sap.ClassInfo<T, sap.f.AvatarGroup>,
7348
- /**
7349
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7350
- * used by this class
7351
- */
7352
- FNMetaImpl?: Function
7353
- ): Function;
7354
7383
  /**
7355
7384
  * Fires event {@link #event:press press} to attached listeners.
7356
7385
  */
@@ -7395,10 +7424,6 @@ declare namespace sap {
7395
7424
  * The `AvatarGroupItems` contained by the control.
7396
7425
  */
7397
7426
  getItems(): sap.f.AvatarGroupItem[];
7398
- /**
7399
- * Returns a metadata object for class sap.f.AvatarGroup.
7400
- */
7401
- static getMetadata(): sap.ui.core.ElementMetadata;
7402
7427
  /**
7403
7428
  * Checks for the provided `sap.f.AvatarGroupItem` in the aggregation {@link #getItems items}. and returns
7404
7429
  * its index if found or -1 otherwise.
@@ -7532,6 +7557,10 @@ declare namespace sap {
7532
7557
  */
7533
7558
  FNMetaImpl?: Function
7534
7559
  ): Function;
7560
+ /**
7561
+ * Returns a metadata object for class sap.f.AvatarGroupItem.
7562
+ */
7563
+ static getMetadata(): sap.ui.core.ElementMetadata;
7535
7564
  /**
7536
7565
  * Returns the color of the avatar.
7537
7566
  */
@@ -7552,10 +7581,6 @@ declare namespace sap {
7552
7581
  * Defines the displayed initials.
7553
7582
  */
7554
7583
  getInitials(): string;
7555
- /**
7556
- * Returns a metadata object for class sap.f.AvatarGroupItem.
7557
- */
7558
- static getMetadata(): sap.ui.core.ElementMetadata;
7559
7584
  /**
7560
7585
  * Gets current value of property {@link #getSrc src}.
7561
7586
  *
@@ -7670,14 +7695,6 @@ declare namespace sap {
7670
7695
  mSettings?: sap.f.$CardSettings
7671
7696
  );
7672
7697
 
7673
- /**
7674
- * Destroys the content in the aggregation {@link #getContent content}.
7675
- */
7676
- destroyContent(): this;
7677
- /**
7678
- * Destroys the header in the aggregation {@link #getHeader header}.
7679
- */
7680
- destroyHeader(): this;
7681
7698
  /**
7682
7699
  * Creates a new subclass of class sap.f.Card with name `sClassName` and enriches it with the information
7683
7700
  * contained in `oClassInfo`.
@@ -7699,6 +7716,18 @@ declare namespace sap {
7699
7716
  */
7700
7717
  FNMetaImpl?: Function
7701
7718
  ): Function;
7719
+ /**
7720
+ * Returns a metadata object for class sap.f.Card.
7721
+ */
7722
+ static getMetadata(): sap.ui.core.ElementMetadata;
7723
+ /**
7724
+ * Destroys the content in the aggregation {@link #getContent content}.
7725
+ */
7726
+ destroyContent(): this;
7727
+ /**
7728
+ * Destroys the header in the aggregation {@link #getHeader header}.
7729
+ */
7730
+ destroyHeader(): this;
7702
7731
  /**
7703
7732
  * Implements sap.f.ICard interface.
7704
7733
  */
@@ -7735,10 +7764,6 @@ declare namespace sap {
7735
7764
  * Default value is `Top`.
7736
7765
  */
7737
7766
  getHeaderPosition(): sap.f.cards.HeaderPosition;
7738
- /**
7739
- * Returns a metadata object for class sap.f.Card.
7740
- */
7741
- static getMetadata(): sap.ui.core.ElementMetadata;
7742
7767
  /**
7743
7768
  * Sets the aggregated {@link #getContent content}.
7744
7769
  */
@@ -7835,6 +7860,10 @@ declare namespace sap {
7835
7860
  */
7836
7861
  FNMetaImpl?: Function
7837
7862
  ): Function;
7863
+ /**
7864
+ * Returns a metadata object for class sap.f.CardBase.
7865
+ */
7866
+ static getMetadata(): sap.ui.core.ElementMetadata;
7838
7867
  /**
7839
7868
  * Implements sap.f.ICard interface.
7840
7869
  */
@@ -7861,10 +7890,6 @@ declare namespace sap {
7861
7890
  * Default value is `"auto"`.
7862
7891
  */
7863
7892
  getHeight(): sap.ui.core.CSSSize;
7864
- /**
7865
- * Returns a metadata object for class sap.f.CardBase.
7866
- */
7867
- static getMetadata(): sap.ui.core.ElementMetadata;
7868
7893
  /**
7869
7894
  * Gets current value of property {@link #getWidth width}.
7870
7895
  *
@@ -7991,6 +8016,78 @@ declare namespace sap {
7991
8016
  mSettings?: sap.f.$DynamicPageSettings
7992
8017
  );
7993
8018
 
8019
+ /**
8020
+ * Creates a new subclass of class sap.f.DynamicPage with name `sClassName` and enriches it with the information
8021
+ * contained in `oClassInfo`.
8022
+ *
8023
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8024
+ */
8025
+ static extend<T extends Record<string, unknown>>(
8026
+ /**
8027
+ * Name of the class being created
8028
+ */
8029
+ sClassName: string,
8030
+ /**
8031
+ * Object literal with information about the class
8032
+ */
8033
+ oClassInfo?: sap.ClassInfo<T, sap.f.DynamicPage>,
8034
+ /**
8035
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8036
+ * used by this class
8037
+ */
8038
+ FNMetaImpl?: Function
8039
+ ): Function;
8040
+ /**
8041
+ * Returns a metadata object for class sap.f.DynamicPage.
8042
+ */
8043
+ static getMetadata(): sap.ui.core.ElementMetadata;
8044
+ /**
8045
+ * @SINCE 1.93
8046
+ *
8047
+ * Attaches event handler `fnFunction` to the {@link #event:pinnedStateChange pinnedStateChange} event of
8048
+ * this `sap.f.DynamicPage`.
8049
+ *
8050
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
8051
+ * otherwise it will be bound to this `sap.f.DynamicPage` itself.
8052
+ *
8053
+ * The event is fired when the `headerPinned` property is changed via user interaction.
8054
+ */
8055
+ attachPinnedStateChange(
8056
+ /**
8057
+ * An application-specific payload object that will be passed to the event handler along with the event
8058
+ * object when firing the event
8059
+ */
8060
+ oData: object,
8061
+ /**
8062
+ * The function to be called when the event occurs
8063
+ */
8064
+ fnFunction: (p1: sap.ui.base.Event) => void,
8065
+ /**
8066
+ * Context object to call the event handler with. Defaults to this `sap.f.DynamicPage` itself
8067
+ */
8068
+ oListener?: object
8069
+ ): this;
8070
+ /**
8071
+ * @SINCE 1.93
8072
+ *
8073
+ * Attaches event handler `fnFunction` to the {@link #event:pinnedStateChange pinnedStateChange} event of
8074
+ * this `sap.f.DynamicPage`.
8075
+ *
8076
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
8077
+ * otherwise it will be bound to this `sap.f.DynamicPage` itself.
8078
+ *
8079
+ * The event is fired when the `headerPinned` property is changed via user interaction.
8080
+ */
8081
+ attachPinnedStateChange(
8082
+ /**
8083
+ * The function to be called when the event occurs
8084
+ */
8085
+ fnFunction: (p1: sap.ui.base.Event) => void,
8086
+ /**
8087
+ * Context object to call the event handler with. Defaults to this `sap.f.DynamicPage` itself
8088
+ */
8089
+ oListener?: object
8090
+ ): this;
7994
8091
  /**
7995
8092
  * Destroys the content in the aggregation {@link #getContent content}.
7996
8093
  */
@@ -8014,26 +8111,39 @@ declare namespace sap {
8014
8111
  */
8015
8112
  destroyTitle(): this;
8016
8113
  /**
8017
- * Creates a new subclass of class sap.f.DynamicPage with name `sClassName` and enriches it with the information
8018
- * contained in `oClassInfo`.
8114
+ * @SINCE 1.93
8019
8115
  *
8020
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
8116
+ * Detaches event handler `fnFunction` from the {@link #event:pinnedStateChange pinnedStateChange} event
8117
+ * of this `sap.f.DynamicPage`.
8118
+ *
8119
+ * The passed function and listener object must match the ones used for event registration.
8021
8120
  */
8022
- static extend<T extends Record<string, unknown>>(
8121
+ detachPinnedStateChange(
8023
8122
  /**
8024
- * Name of the class being created
8123
+ * The function to be called, when the event occurs
8025
8124
  */
8026
- sClassName: string,
8125
+ fnFunction: (p1: sap.ui.base.Event) => void,
8027
8126
  /**
8028
- * Object literal with information about the class
8127
+ * Context object on which the given function had to be called
8029
8128
  */
8030
- oClassInfo?: sap.ClassInfo<T, sap.f.DynamicPage>,
8129
+ oListener?: object
8130
+ ): this;
8131
+ /**
8132
+ * @SINCE 1.93
8133
+ *
8134
+ * Fires event {@link #event:pinnedStateChange pinnedStateChange} to attached listeners.
8135
+ */
8136
+ firePinnedStateChange(
8031
8137
  /**
8032
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8033
- * used by this class
8138
+ * Parameters to pass along with the event
8034
8139
  */
8035
- FNMetaImpl?: Function
8036
- ): Function;
8140
+ mParameters?: {
8141
+ /**
8142
+ * False or True values indicate the new pinned property value.
8143
+ */
8144
+ pinned?: boolean;
8145
+ }
8146
+ ): this;
8037
8147
  /**
8038
8148
  * @SINCE 1.68
8039
8149
  *
@@ -8121,6 +8231,27 @@ declare namespace sap {
8121
8231
  * Default value is `true`.
8122
8232
  */
8123
8233
  getHeaderExpanded(): boolean;
8234
+ /**
8235
+ * @SINCE 1.93
8236
+ *
8237
+ * Gets current value of property {@link #getHeaderPinned headerPinned}.
8238
+ *
8239
+ * Determines whether the `DynamicPageHeader` is pinned.
8240
+ *
8241
+ * The property can be changed programmatically or in the occurrence of the following user interactions:
8242
+ *
8243
+ * - Toggling the pin/unpin button of `DynamicPageHeader`
8244
+ * - Snapping the `DynamicPageHeader` by explicitly clicking on the `DynamicPageTitle`
8245
+ *
8246
+ * **Note: ** The property will only apply if the header is effectively pinnable, i.e. if the following
8247
+ * conditions are met:
8248
+ * - `DynamicPageHeader` `pinnable` property is `true`
8249
+ * - `DynamicPageHeader` is expanded
8250
+ * - `DynamicPage` `preserveHeaderStateOnScroll` property is effectively disabled
8251
+ *
8252
+ * Default value is `false`.
8253
+ */
8254
+ getHeaderPinned(): boolean;
8124
8255
  /**
8125
8256
  * @SINCE 1.61
8126
8257
  *
@@ -8131,10 +8262,6 @@ declare namespace sap {
8131
8262
  * If not set, no landmarks will be written.
8132
8263
  */
8133
8264
  getLandmarkInfo(): sap.f.DynamicPageAccessibleLandmarkInfo;
8134
- /**
8135
- * Returns a metadata object for class sap.f.DynamicPage.
8136
- */
8137
- static getMetadata(): sap.ui.core.ElementMetadata;
8138
8265
  /**
8139
8266
  * Gets current value of property {@link #getPreserveHeaderStateOnScroll preserveHeaderStateOnScroll}.
8140
8267
  *
@@ -8275,6 +8402,34 @@ declare namespace sap {
8275
8402
  */
8276
8403
  bHeaderExpanded?: boolean
8277
8404
  ): this;
8405
+ /**
8406
+ * @SINCE 1.93
8407
+ *
8408
+ * Sets a new value for property {@link #getHeaderPinned headerPinned}.
8409
+ *
8410
+ * Determines whether the `DynamicPageHeader` is pinned.
8411
+ *
8412
+ * The property can be changed programmatically or in the occurrence of the following user interactions:
8413
+ *
8414
+ * - Toggling the pin/unpin button of `DynamicPageHeader`
8415
+ * - Snapping the `DynamicPageHeader` by explicitly clicking on the `DynamicPageTitle`
8416
+ *
8417
+ * **Note: ** The property will only apply if the header is effectively pinnable, i.e. if the following
8418
+ * conditions are met:
8419
+ * - `DynamicPageHeader` `pinnable` property is `true`
8420
+ * - `DynamicPageHeader` is expanded
8421
+ * - `DynamicPage` `preserveHeaderStateOnScroll` property is effectively disabled
8422
+ *
8423
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8424
+ *
8425
+ * Default value is `false`.
8426
+ */
8427
+ setHeaderPinned(
8428
+ /**
8429
+ * New value for property `headerPinned`
8430
+ */
8431
+ bHeaderPinned?: boolean
8432
+ ): this;
8278
8433
  /**
8279
8434
  * @SINCE 1.61
8280
8435
  *
@@ -8427,6 +8582,10 @@ declare namespace sap {
8427
8582
  */
8428
8583
  FNMetaImpl?: Function
8429
8584
  ): Function;
8585
+ /**
8586
+ * Returns a metadata object for class sap.f.DynamicPageAccessibleLandmarkInfo.
8587
+ */
8588
+ static getMetadata(): sap.ui.core.ElementMetadata;
8430
8589
  /**
8431
8590
  * Gets current value of property {@link #getContentLabel contentLabel}.
8432
8591
  *
@@ -8484,10 +8643,6 @@ declare namespace sap {
8484
8643
  * Default value is `"None"`.
8485
8644
  */
8486
8645
  getHeaderRole(): sap.ui.core.AccessibleLandmarkRole;
8487
- /**
8488
- * Returns a metadata object for class sap.f.DynamicPageAccessibleLandmarkInfo.
8489
- */
8490
- static getMetadata(): sap.ui.core.ElementMetadata;
8491
8646
  /**
8492
8647
  * Gets current value of property {@link #getRootLabel rootLabel}.
8493
8648
  *
@@ -8696,19 +8851,6 @@ declare namespace sap {
8696
8851
  mSettings?: sap.f.$DynamicPageHeaderSettings
8697
8852
  );
8698
8853
 
8699
- /**
8700
- * Adds some content to the aggregation {@link #getContent content}.
8701
- */
8702
- addContent(
8703
- /**
8704
- * The content to add; if empty, nothing is inserted
8705
- */
8706
- oContent: sap.ui.core.Control
8707
- ): this;
8708
- /**
8709
- * Destroys all the content in the aggregation {@link #getContent content}.
8710
- */
8711
- destroyContent(): this;
8712
8854
  /**
8713
8855
  * Creates a new subclass of class sap.f.DynamicPageHeader with name `sClassName` and enriches it with the
8714
8856
  * information contained in `oClassInfo`.
@@ -8730,6 +8872,23 @@ declare namespace sap {
8730
8872
  */
8731
8873
  FNMetaImpl?: Function
8732
8874
  ): Function;
8875
+ /**
8876
+ * Returns a metadata object for class sap.f.DynamicPageHeader.
8877
+ */
8878
+ static getMetadata(): sap.ui.core.ElementMetadata;
8879
+ /**
8880
+ * Adds some content to the aggregation {@link #getContent content}.
8881
+ */
8882
+ addContent(
8883
+ /**
8884
+ * The content to add; if empty, nothing is inserted
8885
+ */
8886
+ oContent: sap.ui.core.Control
8887
+ ): this;
8888
+ /**
8889
+ * Destroys all the content in the aggregation {@link #getContent content}.
8890
+ */
8891
+ destroyContent(): this;
8733
8892
  /**
8734
8893
  * @SINCE 1.58
8735
8894
  *
@@ -8747,10 +8906,6 @@ declare namespace sap {
8747
8906
  * The content of the header.
8748
8907
  */
8749
8908
  getContent(): sap.ui.core.Control[];
8750
- /**
8751
- * Returns a metadata object for class sap.f.DynamicPageHeader.
8752
- */
8753
- static getMetadata(): sap.ui.core.ElementMetadata;
8754
8909
  /**
8755
8910
  * Gets current value of property {@link #getPinnable pinnable}.
8756
8911
  *
@@ -8895,6 +9050,31 @@ declare namespace sap {
8895
9050
  mSettings?: sap.f.$DynamicPageTitleSettings
8896
9051
  );
8897
9052
 
9053
+ /**
9054
+ * Creates a new subclass of class sap.f.DynamicPageTitle with name `sClassName` and enriches it with the
9055
+ * information contained in `oClassInfo`.
9056
+ *
9057
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9058
+ */
9059
+ static extend<T extends Record<string, unknown>>(
9060
+ /**
9061
+ * Name of the class being created
9062
+ */
9063
+ sClassName: string,
9064
+ /**
9065
+ * Object literal with information about the class
9066
+ */
9067
+ oClassInfo?: sap.ClassInfo<T, sap.f.DynamicPageTitle>,
9068
+ /**
9069
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9070
+ * used by this class
9071
+ */
9072
+ FNMetaImpl?: Function
9073
+ ): Function;
9074
+ /**
9075
+ * Returns a metadata object for class sap.f.DynamicPageTitle.
9076
+ */
9077
+ static getMetadata(): sap.ui.core.ElementMetadata;
8898
9078
  /**
8899
9079
  * Adds some action to the aggregation {@link #getActions actions}.
8900
9080
  */
@@ -9077,27 +9257,6 @@ declare namespace sap {
9077
9257
  */
9078
9258
  oListener?: object
9079
9259
  ): this;
9080
- /**
9081
- * Creates a new subclass of class sap.f.DynamicPageTitle with name `sClassName` and enriches it with the
9082
- * information contained in `oClassInfo`.
9083
- *
9084
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9085
- */
9086
- static extend<T extends Record<string, unknown>>(
9087
- /**
9088
- * Name of the class being created
9089
- */
9090
- sClassName: string,
9091
- /**
9092
- * Object literal with information about the class
9093
- */
9094
- oClassInfo?: sap.ClassInfo<T, sap.f.DynamicPageTitle>,
9095
- /**
9096
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9097
- * used by this class
9098
- */
9099
- FNMetaImpl?: Function
9100
- ): Function;
9101
9260
  /**
9102
9261
  * @SINCE 1.54
9103
9262
  *
@@ -9223,10 +9382,6 @@ declare namespace sap {
9223
9382
  * state.
9224
9383
  */
9225
9384
  getHeading(): sap.ui.core.Control;
9226
- /**
9227
- * Returns a metadata object for class sap.f.DynamicPageTitle.
9228
- */
9229
- static getMetadata(): sap.ui.core.ElementMetadata;
9230
9385
  /**
9231
9386
  * @SINCE 1.52
9232
9387
  *
@@ -9738,20 +9893,45 @@ declare namespace sap {
9738
9893
  );
9739
9894
 
9740
9895
  /**
9741
- * Adds some beginColumnPage to the aggregation {@link #getBeginColumnPages beginColumnPages}.
9896
+ * Creates a new subclass of class sap.f.FlexibleColumnLayout with name `sClassName` and enriches it with
9897
+ * the information contained in `oClassInfo`.
9898
+ *
9899
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9742
9900
  */
9743
- addBeginColumnPage(
9901
+ static extend<T extends Record<string, unknown>>(
9744
9902
  /**
9745
- * The beginColumnPage to add; if empty, nothing is inserted
9903
+ * Name of the class being created
9746
9904
  */
9747
- oBeginColumnPage: sap.ui.core.Control
9748
- ): this;
9749
- /**
9750
- * Adds some endColumnPage to the aggregation {@link #getEndColumnPages endColumnPages}.
9751
- */
9752
- addEndColumnPage(
9905
+ sClassName: string,
9753
9906
  /**
9754
- * The endColumnPage to add; if empty, nothing is inserted
9907
+ * Object literal with information about the class
9908
+ */
9909
+ oClassInfo?: sap.ClassInfo<T, sap.f.FlexibleColumnLayout>,
9910
+ /**
9911
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9912
+ * used by this class
9913
+ */
9914
+ FNMetaImpl?: Function
9915
+ ): Function;
9916
+ /**
9917
+ * Returns a metadata object for class sap.f.FlexibleColumnLayout.
9918
+ */
9919
+ static getMetadata(): sap.ui.core.ElementMetadata;
9920
+ /**
9921
+ * Adds some beginColumnPage to the aggregation {@link #getBeginColumnPages beginColumnPages}.
9922
+ */
9923
+ addBeginColumnPage(
9924
+ /**
9925
+ * The beginColumnPage to add; if empty, nothing is inserted
9926
+ */
9927
+ oBeginColumnPage: sap.ui.core.Control
9928
+ ): this;
9929
+ /**
9930
+ * Adds some endColumnPage to the aggregation {@link #getEndColumnPages endColumnPages}.
9931
+ */
9932
+ addEndColumnPage(
9933
+ /**
9934
+ * The endColumnPage to add; if empty, nothing is inserted
9755
9935
  */
9756
9936
  oEndColumnPage: sap.ui.core.Control
9757
9937
  ): this;
@@ -10432,27 +10612,6 @@ declare namespace sap {
10432
10612
  */
10433
10613
  oListener?: object
10434
10614
  ): this;
10435
- /**
10436
- * Creates a new subclass of class sap.f.FlexibleColumnLayout with name `sClassName` and enriches it with
10437
- * the information contained in `oClassInfo`.
10438
- *
10439
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
10440
- */
10441
- static extend<T extends Record<string, unknown>>(
10442
- /**
10443
- * Name of the class being created
10444
- */
10445
- sClassName: string,
10446
- /**
10447
- * Object literal with information about the class
10448
- */
10449
- oClassInfo?: sap.ClassInfo<T, sap.f.FlexibleColumnLayout>,
10450
- /**
10451
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10452
- * used by this class
10453
- */
10454
- FNMetaImpl?: Function
10455
- ): Function;
10456
10615
  /**
10457
10616
  * Fires event {@link #event:afterBeginColumnNavigate afterBeginColumnNavigate} to attached listeners.
10458
10617
  */
@@ -10939,10 +11098,6 @@ declare namespace sap {
10939
11098
  * Returns the maximum number of columns that can be displayed at once based on the control width
10940
11099
  */
10941
11100
  getMaxColumnsCount(): number;
10942
- /**
10943
- * Returns a metadata object for class sap.f.FlexibleColumnLayout.
10944
- */
10945
- static getMetadata(): sap.ui.core.ElementMetadata;
10946
11101
  /**
10947
11102
  * Gets content of aggregation {@link #getMidColumnPages midColumnPages}.
10948
11103
  *
@@ -11668,6 +11823,21 @@ declare namespace sap {
11668
11823
  }
11669
11824
  );
11670
11825
 
11826
+ /**
11827
+ * Returns an instance of the `sap.f.FlexibleColumnLayoutSemanticHelper` class for a given `sap.f.FlexibleColumnLayout`
11828
+ * object.
11829
+ */
11830
+ static getInstanceFor(
11831
+ /**
11832
+ * The `sap.f.FlexibleColumnLayout` object to get a semantic helper instance for
11833
+ */
11834
+ oFlexibleColumnLayout: sap.f.FlexibleColumnLayout,
11835
+ /**
11836
+ * An optional settings object to be used when creating the instance. **Note:** will be considered only
11837
+ * for the first `getInstanceFor` call for the given `sap.f.FlexibleColumnLayout` object.
11838
+ */
11839
+ oSettings?: object
11840
+ ): sap.f.FlexibleColumnLayoutSemanticHelper;
11671
11841
  /**
11672
11842
  * Returns an object, describing the current state of the control and the expected action buttons for each
11673
11843
  * column.
@@ -11747,21 +11917,6 @@ declare namespace sap {
11747
11917
  * be shown side by side
11748
11918
  */
11749
11919
  getDefaultLayouts(): object;
11750
- /**
11751
- * Returns an instance of the `sap.f.FlexibleColumnLayoutSemanticHelper` class for a given `sap.f.FlexibleColumnLayout`
11752
- * object.
11753
- */
11754
- static getInstanceFor(
11755
- /**
11756
- * The `sap.f.FlexibleColumnLayout` object to get a semantic helper instance for
11757
- */
11758
- oFlexibleColumnLayout: sap.f.FlexibleColumnLayout,
11759
- /**
11760
- * An optional settings object to be used when creating the instance. **Note:** will be considered only
11761
- * for the first `getInstanceFor` call for the given `sap.f.FlexibleColumnLayout` object.
11762
- */
11763
- oSettings?: object
11764
- ): sap.f.FlexibleColumnLayoutSemanticHelper;
11765
11920
  /**
11766
11921
  * Returns an object, describing the state that the control will have after navigating to a different view
11767
11922
  * level.
@@ -11923,6 +12078,31 @@ declare namespace sap {
11923
12078
  mSettings?: sap.f.$GridContainerSettings
11924
12079
  );
11925
12080
 
12081
+ /**
12082
+ * Creates a new subclass of class sap.f.GridContainer with name `sClassName` and enriches it with the information
12083
+ * contained in `oClassInfo`.
12084
+ *
12085
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
12086
+ */
12087
+ static extend<T extends Record<string, unknown>>(
12088
+ /**
12089
+ * Name of the class being created
12090
+ */
12091
+ sClassName: string,
12092
+ /**
12093
+ * Object literal with information about the class
12094
+ */
12095
+ oClassInfo?: sap.ClassInfo<T, sap.f.GridContainer>,
12096
+ /**
12097
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
12098
+ * used by this class
12099
+ */
12100
+ FNMetaImpl?: Function
12101
+ ): Function;
12102
+ /**
12103
+ * Returns a metadata object for class sap.f.GridContainer.
12104
+ */
12105
+ static getMetadata(): sap.ui.core.ElementMetadata;
11926
12106
  /**
11927
12107
  * Adds some item to the aggregation {@link #getItems items}.
11928
12108
  */
@@ -12132,27 +12312,6 @@ declare namespace sap {
12132
12312
  */
12133
12313
  oListener?: object
12134
12314
  ): this;
12135
- /**
12136
- * Creates a new subclass of class sap.f.GridContainer with name `sClassName` and enriches it with the information
12137
- * contained in `oClassInfo`.
12138
- *
12139
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
12140
- */
12141
- static extend<T extends Record<string, unknown>>(
12142
- /**
12143
- * Name of the class being created
12144
- */
12145
- sClassName: string,
12146
- /**
12147
- * Object literal with information about the class
12148
- */
12149
- oClassInfo?: sap.ClassInfo<T, sap.f.GridContainer>,
12150
- /**
12151
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
12152
- * used by this class
12153
- */
12154
- FNMetaImpl?: Function
12155
- ): Function;
12156
12315
  /**
12157
12316
  * Fires event {@link #event:borderReached borderReached} to attached listeners.
12158
12317
  */
@@ -12338,10 +12497,6 @@ declare namespace sap {
12338
12497
  * The sap.f.GridContainerSettings applied for size "XS". Range: up to 374px.
12339
12498
  */
12340
12499
  getLayoutXS(): sap.f.GridContainerSettings;
12341
- /**
12342
- * Returns a metadata object for class sap.f.GridContainer.
12343
- */
12344
- static getMetadata(): sap.ui.core.ElementMetadata;
12345
12500
  /**
12346
12501
  * @EXPERIMENTAL (since 1.81)
12347
12502
  *
@@ -12640,6 +12795,10 @@ declare namespace sap {
12640
12795
  */
12641
12796
  FNMetaImpl?: Function
12642
12797
  ): Function;
12798
+ /**
12799
+ * Returns a metadata object for class sap.f.GridContainerItemLayoutData.
12800
+ */
12801
+ static getMetadata(): sap.ui.core.ElementMetadata;
12643
12802
  /**
12644
12803
  * Gets current value of property {@link #getColumns columns}.
12645
12804
  *
@@ -12653,10 +12812,6 @@ declare namespace sap {
12653
12812
  * Default value is `1`.
12654
12813
  */
12655
12814
  getColumns(): int;
12656
- /**
12657
- * Returns a metadata object for class sap.f.GridContainerItemLayoutData.
12658
- */
12659
- static getMetadata(): sap.ui.core.ElementMetadata;
12660
12815
  /**
12661
12816
  * Gets current value of property {@link #getMinRows minRows}.
12662
12817
  *
@@ -12786,6 +12941,10 @@ declare namespace sap {
12786
12941
  */
12787
12942
  FNMetaImpl?: Function
12788
12943
  ): Function;
12944
+ /**
12945
+ * Returns a metadata object for class sap.f.GridContainerSettings.
12946
+ */
12947
+ static getMetadata(): sap.ui.base.ManagedObjectMetadata;
12789
12948
  /**
12790
12949
  * Gets current value of property {@link #getColumns columns}.
12791
12950
  *
@@ -12821,10 +12980,6 @@ declare namespace sap {
12821
12980
  * **Note:** Will not work in combination with `columnSize`.
12822
12981
  */
12823
12982
  getMaxColumnSize(): sap.ui.core.CSSSize;
12824
- /**
12825
- * Returns a metadata object for class sap.f.GridContainerSettings.
12826
- */
12827
- static getMetadata(): sap.ui.base.ManagedObjectMetadata;
12828
12983
  /**
12829
12984
  * Gets current value of property {@link #getMinColumnSize minColumnSize}.
12830
12985
  *
@@ -13043,11 +13198,32 @@ declare namespace sap {
13043
13198
  */
13044
13199
  mSettings?: sap.f.$GridListSettings
13045
13200
  );
13201
+
13046
13202
  /**
13047
- * Implements IGridConfigurable interface.
13203
+ * Creates a new subclass of class sap.f.GridList with name `sClassName` and enriches it with the information
13204
+ * contained in `oClassInfo`.
13205
+ *
13206
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.ListBase.extend}.
13048
13207
  */
13049
- getGridLayoutConfiguration: undefined;
13050
-
13208
+ static extend<T extends Record<string, unknown>>(
13209
+ /**
13210
+ * Name of the class being created
13211
+ */
13212
+ sClassName: string,
13213
+ /**
13214
+ * Object literal with information about the class
13215
+ */
13216
+ oClassInfo?: sap.ClassInfo<T, sap.f.GridList>,
13217
+ /**
13218
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13219
+ * used by this class
13220
+ */
13221
+ FNMetaImpl?: Function
13222
+ ): Function;
13223
+ /**
13224
+ * Returns a metadata object for class sap.f.GridList.
13225
+ */
13226
+ static getMetadata(): sap.ui.core.ElementMetadata;
13051
13227
  /**
13052
13228
  * Attaches event handler `fnFunction` to the {@link #event:borderReached borderReached} event of this `sap.f.GridList`.
13053
13229
  *
@@ -13109,27 +13285,6 @@ declare namespace sap {
13109
13285
  */
13110
13286
  oListener?: object
13111
13287
  ): this;
13112
- /**
13113
- * Creates a new subclass of class sap.f.GridList with name `sClassName` and enriches it with the information
13114
- * contained in `oClassInfo`.
13115
- *
13116
- * `oClassInfo` might contain the same kind of information as described in {@link sap.m.ListBase.extend}.
13117
- */
13118
- static extend<T extends Record<string, unknown>>(
13119
- /**
13120
- * Name of the class being created
13121
- */
13122
- sClassName: string,
13123
- /**
13124
- * Object literal with information about the class
13125
- */
13126
- oClassInfo?: sap.ClassInfo<T, sap.f.GridList>,
13127
- /**
13128
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13129
- * used by this class
13130
- */
13131
- FNMetaImpl?: Function
13132
- ): Function;
13133
13288
  /**
13134
13289
  * Fires event {@link #event:borderReached borderReached} to attached listeners.
13135
13290
  */
@@ -13195,9 +13350,9 @@ declare namespace sap {
13195
13350
  */
13196
13351
  getGridDomRefs(): HTMLElement[];
13197
13352
  /**
13198
- * Returns a metadata object for class sap.f.GridList.
13353
+ * Implements IGridConfigurable interface.
13199
13354
  */
13200
- static getMetadata(): sap.ui.core.ElementMetadata;
13355
+ getGridLayoutConfiguration(): sap.ui.layout.cssgrid.GridLayoutBase;
13201
13356
  /**
13202
13357
  * Sets the aggregated {@link #getCustomLayout customLayout}.
13203
13358
  */
@@ -13248,6 +13403,31 @@ declare namespace sap {
13248
13403
  mSettings?: sap.f.$GridListItemSettings
13249
13404
  );
13250
13405
 
13406
+ /**
13407
+ * Creates a new subclass of class sap.f.GridListItem with name `sClassName` and enriches it with the information
13408
+ * contained in `oClassInfo`.
13409
+ *
13410
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.ListItemBase.extend}.
13411
+ */
13412
+ static extend<T extends Record<string, unknown>>(
13413
+ /**
13414
+ * Name of the class being created
13415
+ */
13416
+ sClassName: string,
13417
+ /**
13418
+ * Object literal with information about the class
13419
+ */
13420
+ oClassInfo?: sap.ClassInfo<T, sap.f.GridListItem>,
13421
+ /**
13422
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13423
+ * used by this class
13424
+ */
13425
+ FNMetaImpl?: Function
13426
+ ): Function;
13427
+ /**
13428
+ * Returns a metadata object for class sap.f.GridListItem.
13429
+ */
13430
+ static getMetadata(): sap.ui.core.ElementMetadata;
13251
13431
  /**
13252
13432
  * Adds some content to the aggregation {@link #getContent content}.
13253
13433
  */
@@ -13273,37 +13453,12 @@ declare namespace sap {
13273
13453
  * Destroys all the content in the aggregation {@link #getContent content}.
13274
13454
  */
13275
13455
  destroyContent(): this;
13276
- /**
13277
- * Creates a new subclass of class sap.f.GridListItem with name `sClassName` and enriches it with the information
13278
- * contained in `oClassInfo`.
13279
- *
13280
- * `oClassInfo` might contain the same kind of information as described in {@link sap.m.ListItemBase.extend}.
13281
- */
13282
- static extend<T extends Record<string, unknown>>(
13283
- /**
13284
- * Name of the class being created
13285
- */
13286
- sClassName: string,
13287
- /**
13288
- * Object literal with information about the class
13289
- */
13290
- oClassInfo?: sap.ClassInfo<T, sap.f.GridListItem>,
13291
- /**
13292
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13293
- * used by this class
13294
- */
13295
- FNMetaImpl?: Function
13296
- ): Function;
13297
13456
  /**
13298
13457
  * Gets content of aggregation {@link #getContent content}.
13299
13458
  *
13300
13459
  * The content of this list item
13301
13460
  */
13302
13461
  getContent(): sap.ui.core.Control[];
13303
- /**
13304
- * Returns a metadata object for class sap.f.GridListItem.
13305
- */
13306
- static getMetadata(): sap.ui.core.ElementMetadata;
13307
13462
  /**
13308
13463
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
13309
13464
  * its index if found or -1 otherwise.
@@ -13412,23 +13567,6 @@ declare namespace sap {
13412
13567
  mSettings?: sap.f.$IllustratedMessageSettings
13413
13568
  );
13414
13569
 
13415
- /**
13416
- * @SINCE 1.88
13417
- *
13418
- * Adds some additionalContent to the aggregation {@link #getAdditionalContent additionalContent}.
13419
- */
13420
- addAdditionalContent(
13421
- /**
13422
- * The additionalContent to add; if empty, nothing is inserted
13423
- */
13424
- oAdditionalContent: sap.m.Button
13425
- ): this;
13426
- /**
13427
- * @SINCE 1.88
13428
- *
13429
- * Destroys all the additionalContent in the aggregation {@link #getAdditionalContent additionalContent}.
13430
- */
13431
- destroyAdditionalContent(): this;
13432
13570
  /**
13433
13571
  * Creates a new subclass of class sap.f.IllustratedMessage with name `sClassName` and enriches it with
13434
13572
  * the information contained in `oClassInfo`.
@@ -13450,6 +13588,27 @@ declare namespace sap {
13450
13588
  */
13451
13589
  FNMetaImpl?: Function
13452
13590
  ): Function;
13591
+ /**
13592
+ * Returns a metadata object for class sap.f.IllustratedMessage.
13593
+ */
13594
+ static getMetadata(): sap.ui.core.ElementMetadata;
13595
+ /**
13596
+ * @SINCE 1.88
13597
+ *
13598
+ * Adds some additionalContent to the aggregation {@link #getAdditionalContent additionalContent}.
13599
+ */
13600
+ addAdditionalContent(
13601
+ /**
13602
+ * The additionalContent to add; if empty, nothing is inserted
13603
+ */
13604
+ oAdditionalContent: sap.m.Button
13605
+ ): this;
13606
+ /**
13607
+ * @SINCE 1.88
13608
+ *
13609
+ * Destroys all the additionalContent in the aggregation {@link #getAdditionalContent additionalContent}.
13610
+ */
13611
+ destroyAdditionalContent(): this;
13453
13612
  /**
13454
13613
  * @SINCE 1.88
13455
13614
  *
@@ -13517,10 +13676,6 @@ declare namespace sap {
13517
13676
  * Default value is `IllustratedMessageType.NoSearchResults`.
13518
13677
  */
13519
13678
  getIllustrationType(): string;
13520
- /**
13521
- * Returns a metadata object for class sap.f.IllustratedMessage.
13522
- */
13523
- static getMetadata(): sap.ui.core.ElementMetadata;
13524
13679
  /**
13525
13680
  * @SINCE 1.88
13526
13681
  *
@@ -13725,6 +13880,10 @@ declare namespace sap {
13725
13880
  */
13726
13881
  FNMetaImpl?: Function
13727
13882
  ): Function;
13883
+ /**
13884
+ * Returns a metadata object for class sap.f.Illustration.
13885
+ */
13886
+ static getMetadata(): sap.ui.core.ElementMetadata;
13728
13887
  /**
13729
13888
  * @SINCE 1.88
13730
13889
  *
@@ -13733,10 +13892,6 @@ declare namespace sap {
13733
13892
  * Defines which media/breakpoint should be used when building the Symbol ID.
13734
13893
  */
13735
13894
  getMedia(): string;
13736
- /**
13737
- * Returns a metadata object for class sap.f.Illustration.
13738
- */
13739
- static getMetadata(): sap.ui.core.ElementMetadata;
13740
13895
  /**
13741
13896
  * @SINCE 1.88
13742
13897
  *
@@ -13837,6 +13992,31 @@ declare namespace sap {
13837
13992
  mSettings?: sap.f.$ProductSwitchSettings
13838
13993
  );
13839
13994
 
13995
+ /**
13996
+ * Creates a new subclass of class sap.f.ProductSwitch with name `sClassName` and enriches it with the information
13997
+ * contained in `oClassInfo`.
13998
+ *
13999
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
14000
+ */
14001
+ static extend<T extends Record<string, unknown>>(
14002
+ /**
14003
+ * Name of the class being created
14004
+ */
14005
+ sClassName: string,
14006
+ /**
14007
+ * Object literal with information about the class
14008
+ */
14009
+ oClassInfo?: sap.ClassInfo<T, sap.f.ProductSwitch>,
14010
+ /**
14011
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14012
+ * used by this class
14013
+ */
14014
+ FNMetaImpl?: Function
14015
+ ): Function;
14016
+ /**
14017
+ * Returns a metadata object for class sap.f.ProductSwitch.
14018
+ */
14019
+ static getMetadata(): sap.ui.core.ElementMetadata;
13840
14020
  /**
13841
14021
  * Adds some item to the aggregation {@link #getItems items}.
13842
14022
  */
@@ -13906,27 +14086,6 @@ declare namespace sap {
13906
14086
  */
13907
14087
  oListener?: object
13908
14088
  ): this;
13909
- /**
13910
- * Creates a new subclass of class sap.f.ProductSwitch with name `sClassName` and enriches it with the information
13911
- * contained in `oClassInfo`.
13912
- *
13913
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
13914
- */
13915
- static extend<T extends Record<string, unknown>>(
13916
- /**
13917
- * Name of the class being created
13918
- */
13919
- sClassName: string,
13920
- /**
13921
- * Object literal with information about the class
13922
- */
13923
- oClassInfo?: sap.ClassInfo<T, sap.f.ProductSwitch>,
13924
- /**
13925
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13926
- * used by this class
13927
- */
13928
- FNMetaImpl?: Function
13929
- ): Function;
13930
14089
  /**
13931
14090
  * Fires event {@link #event:change change} to attached listeners.
13932
14091
  */
@@ -13947,10 +14106,6 @@ declare namespace sap {
13947
14106
  * `ProductSwitch` content.
13948
14107
  */
13949
14108
  getItems(): sap.f.ProductSwitchItem[];
13950
- /**
13951
- * Returns a metadata object for class sap.f.ProductSwitch.
13952
- */
13953
- static getMetadata(): sap.ui.core.ElementMetadata;
13954
14109
  /**
13955
14110
  * ID of the element which is the current target of the association {@link #getSelectedItem selectedItem},
13956
14111
  * or `null`.
@@ -14214,6 +14369,31 @@ declare namespace sap {
14214
14369
  mSettings?: sap.f.$SearchManagerSettings
14215
14370
  );
14216
14371
 
14372
+ /**
14373
+ * Creates a new subclass of class sap.f.SearchManager with name `sClassName` and enriches it with the information
14374
+ * contained in `oClassInfo`.
14375
+ *
14376
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
14377
+ */
14378
+ static extend<T extends Record<string, unknown>>(
14379
+ /**
14380
+ * Name of the class being created
14381
+ */
14382
+ sClassName: string,
14383
+ /**
14384
+ * Object literal with information about the class
14385
+ */
14386
+ oClassInfo?: sap.ClassInfo<T, sap.f.SearchManager>,
14387
+ /**
14388
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14389
+ * used by this class
14390
+ */
14391
+ FNMetaImpl?: Function
14392
+ ): Function;
14393
+ /**
14394
+ * Returns a metadata object for class sap.f.SearchManager.
14395
+ */
14396
+ static getMetadata(): sap.ui.core.ElementMetadata;
14217
14397
  /**
14218
14398
  * Adds some suggestionItem to the aggregation {@link #getSuggestionItems suggestionItems}.
14219
14399
  */
@@ -14415,27 +14595,6 @@ declare namespace sap {
14415
14595
  */
14416
14596
  oListener?: object
14417
14597
  ): this;
14418
- /**
14419
- * Creates a new subclass of class sap.f.SearchManager with name `sClassName` and enriches it with the information
14420
- * contained in `oClassInfo`.
14421
- *
14422
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
14423
- */
14424
- static extend<T extends Record<string, unknown>>(
14425
- /**
14426
- * Name of the class being created
14427
- */
14428
- sClassName: string,
14429
- /**
14430
- * Object literal with information about the class
14431
- */
14432
- oClassInfo?: sap.ClassInfo<T, sap.f.SearchManager>,
14433
- /**
14434
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14435
- * used by this class
14436
- */
14437
- FNMetaImpl?: Function
14438
- ): Function;
14439
14598
  /**
14440
14599
  * Fires event {@link #event:liveChange liveChange} to attached listeners.
14441
14600
  */
@@ -14507,10 +14666,6 @@ declare namespace sap {
14507
14666
  * Default value is `0`.
14508
14667
  */
14509
14668
  getMaxLength(): int;
14510
- /**
14511
- * Returns a metadata object for class sap.f.SearchManager.
14512
- */
14513
- static getMetadata(): sap.ui.core.ElementMetadata;
14514
14669
  /**
14515
14670
  * Gets current value of property {@link #getPlaceholder placeholder}.
14516
14671
  *
@@ -14704,13 +14859,32 @@ declare namespace sap {
14704
14859
  */
14705
14860
  mSettings?: sap.f.$ShellBarSettings
14706
14861
  );
14862
+
14707
14863
  /**
14708
- * @SINCE 1.65
14864
+ * Creates a new subclass of class sap.f.ShellBar with name `sClassName` and enriches it with the information
14865
+ * contained in `oClassInfo`.
14709
14866
  *
14710
- * Gets the available Bar contexts.
14867
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
14711
14868
  */
14712
- getContext: undefined;
14713
-
14869
+ static extend<T extends Record<string, unknown>>(
14870
+ /**
14871
+ * Name of the class being created
14872
+ */
14873
+ sClassName: string,
14874
+ /**
14875
+ * Object literal with information about the class
14876
+ */
14877
+ oClassInfo?: sap.ClassInfo<T, sap.f.ShellBar>,
14878
+ /**
14879
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14880
+ * used by this class
14881
+ */
14882
+ FNMetaImpl?: Function
14883
+ ): Function;
14884
+ /**
14885
+ * Returns a metadata object for class sap.f.ShellBar.
14886
+ */
14887
+ static getMetadata(): sap.ui.core.ElementMetadata;
14714
14888
  /**
14715
14889
  * @SINCE 1.65
14716
14890
  *
@@ -15227,27 +15401,6 @@ declare namespace sap {
15227
15401
  */
15228
15402
  oListener?: object
15229
15403
  ): this;
15230
- /**
15231
- * Creates a new subclass of class sap.f.ShellBar with name `sClassName` and enriches it with the information
15232
- * contained in `oClassInfo`.
15233
- *
15234
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
15235
- */
15236
- static extend<T extends Record<string, unknown>>(
15237
- /**
15238
- * Name of the class being created
15239
- */
15240
- sClassName: string,
15241
- /**
15242
- * Object literal with information about the class
15243
- */
15244
- oClassInfo?: sap.ClassInfo<T, sap.f.ShellBar>,
15245
- /**
15246
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15247
- * used by this class
15248
- */
15249
- FNMetaImpl?: Function
15250
- ): Function;
15251
15404
  /**
15252
15405
  * Fires event {@link #event:avatarPressed avatarPressed} to attached listeners.
15253
15406
  */
@@ -15368,6 +15521,12 @@ declare namespace sap {
15368
15521
  * **Note:** Only controls implementing the `{@link sap.f.IShellBar}` interface are allowed.
15369
15522
  */
15370
15523
  getAdditionalContent(): sap.f.IShellBar[];
15524
+ /**
15525
+ * @SINCE 1.65
15526
+ *
15527
+ * Gets the available Bar contexts.
15528
+ */
15529
+ getContext(): Object;
15371
15530
  /**
15372
15531
  * Gets current value of property {@link #getHomeIcon homeIcon}.
15373
15532
  *
@@ -15398,10 +15557,6 @@ declare namespace sap {
15398
15557
  * The menu attached to the main title.
15399
15558
  */
15400
15559
  getMenu(): sap.m.Menu;
15401
- /**
15402
- * Returns a metadata object for class sap.f.ShellBar.
15403
- */
15404
- static getMetadata(): sap.ui.core.ElementMetadata;
15405
15560
  /**
15406
15561
  * @SINCE 1.64
15407
15562
  *