@openui5/ts-types-esm 1.92.0 → 1.95.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.92.0
1
+ // For Library Version: 1.95.0
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -624,6 +624,31 @@ declare module "sap/f/AvatarGroup" {
624
624
  mSettings?: $AvatarGroupSettings
625
625
  );
626
626
 
627
+ /**
628
+ * Creates a new subclass of class sap.f.AvatarGroup with name `sClassName` and enriches it with the information
629
+ * contained in `oClassInfo`.
630
+ *
631
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
632
+ */
633
+ static extend<T extends Record<string, unknown>>(
634
+ /**
635
+ * Name of the class being created
636
+ */
637
+ sClassName: string,
638
+ /**
639
+ * Object literal with information about the class
640
+ */
641
+ oClassInfo?: sap.ClassInfo<T, AvatarGroup>,
642
+ /**
643
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
644
+ * used by this class
645
+ */
646
+ FNMetaImpl?: Function
647
+ ): Function;
648
+ /**
649
+ * Returns a metadata object for class sap.f.AvatarGroup.
650
+ */
651
+ static getMetadata(): ElementMetadata;
627
652
  /**
628
653
  * Adds some item to the aggregation {@link #getItems items}.
629
654
  */
@@ -693,27 +718,6 @@ declare module "sap/f/AvatarGroup" {
693
718
  */
694
719
  oListener?: object
695
720
  ): this;
696
- /**
697
- * Creates a new subclass of class sap.f.AvatarGroup with name `sClassName` and enriches it with the information
698
- * contained in `oClassInfo`.
699
- *
700
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
701
- */
702
- static extend<T extends Record<string, unknown>>(
703
- /**
704
- * Name of the class being created
705
- */
706
- sClassName: string,
707
- /**
708
- * Object literal with information about the class
709
- */
710
- oClassInfo?: sap.ClassInfo<T, AvatarGroup>,
711
- /**
712
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
713
- * used by this class
714
- */
715
- FNMetaImpl?: Function
716
- ): Function;
717
721
  /**
718
722
  * Fires event {@link #event:press press} to attached listeners.
719
723
  */
@@ -758,10 +762,6 @@ declare module "sap/f/AvatarGroup" {
758
762
  * The `AvatarGroupItems` contained by the control.
759
763
  */
760
764
  getItems(): AvatarGroupItem[];
761
- /**
762
- * Returns a metadata object for class sap.f.AvatarGroup.
763
- */
764
- static getMetadata(): ElementMetadata;
765
765
  /**
766
766
  * Checks for the provided `sap.f.AvatarGroupItem` in the aggregation {@link #getItems items}. and returns
767
767
  * its index if found or -1 otherwise.
@@ -857,7 +857,7 @@ declare module "sap/f/AvatarGroup" {
857
857
  /**
858
858
  * Fired when the user clicks or taps on the control.
859
859
  */
860
- press?: Function;
860
+ press?: (oEvent: Event) => void;
861
861
  }
862
862
  }
863
863
 
@@ -932,6 +932,10 @@ declare module "sap/f/AvatarGroupItem" {
932
932
  */
933
933
  FNMetaImpl?: Function
934
934
  ): Function;
935
+ /**
936
+ * Returns a metadata object for class sap.f.AvatarGroupItem.
937
+ */
938
+ static getMetadata(): ElementMetadata;
935
939
  /**
936
940
  * Returns the color of the avatar.
937
941
  */
@@ -952,10 +956,6 @@ declare module "sap/f/AvatarGroupItem" {
952
956
  * Defines the displayed initials.
953
957
  */
954
958
  getInitials(): string;
955
- /**
956
- * Returns a metadata object for class sap.f.AvatarGroupItem.
957
- */
958
- static getMetadata(): ElementMetadata;
959
959
  /**
960
960
  * Gets current value of property {@link #getSrc src}.
961
961
  *
@@ -1104,14 +1104,6 @@ declare module "sap/f/Card" {
1104
1104
  mSettings?: $CardSettings
1105
1105
  );
1106
1106
 
1107
- /**
1108
- * Destroys the content in the aggregation {@link #getContent content}.
1109
- */
1110
- destroyContent(): this;
1111
- /**
1112
- * Destroys the header in the aggregation {@link #getHeader header}.
1113
- */
1114
- destroyHeader(): this;
1115
1107
  /**
1116
1108
  * Creates a new subclass of class sap.f.Card with name `sClassName` and enriches it with the information
1117
1109
  * contained in `oClassInfo`.
@@ -1133,6 +1125,18 @@ declare module "sap/f/Card" {
1133
1125
  */
1134
1126
  FNMetaImpl?: Function
1135
1127
  ): Function;
1128
+ /**
1129
+ * Returns a metadata object for class sap.f.Card.
1130
+ */
1131
+ static getMetadata(): ElementMetadata;
1132
+ /**
1133
+ * Destroys the content in the aggregation {@link #getContent content}.
1134
+ */
1135
+ destroyContent(): this;
1136
+ /**
1137
+ * Destroys the header in the aggregation {@link #getHeader header}.
1138
+ */
1139
+ destroyHeader(): this;
1136
1140
  /**
1137
1141
  * Implements sap.f.ICard interface.
1138
1142
  */
@@ -1173,10 +1177,6 @@ declare module "sap/f/Card" {
1173
1177
  getHeaderPosition():
1174
1178
  | cards.HeaderPosition
1175
1179
  | keyof typeof cards.HeaderPosition;
1176
- /**
1177
- * Returns a metadata object for class sap.f.Card.
1178
- */
1179
- static getMetadata(): ElementMetadata;
1180
1180
  /**
1181
1181
  * Sets the aggregated {@link #getContent content}.
1182
1182
  */
@@ -1307,6 +1307,10 @@ declare module "sap/f/CardBase" {
1307
1307
  */
1308
1308
  FNMetaImpl?: Function
1309
1309
  ): Function;
1310
+ /**
1311
+ * Returns a metadata object for class sap.f.CardBase.
1312
+ */
1313
+ static getMetadata(): ElementMetadata;
1310
1314
  /**
1311
1315
  * Implements sap.f.ICard interface.
1312
1316
  */
@@ -1335,10 +1339,6 @@ declare module "sap/f/CardBase" {
1335
1339
  * Default value is `"auto"`.
1336
1340
  */
1337
1341
  getHeight(): CSSSize;
1338
- /**
1339
- * Returns a metadata object for class sap.f.CardBase.
1340
- */
1341
- static getMetadata(): ElementMetadata;
1342
1342
  /**
1343
1343
  * Gets current value of property {@link #getWidth width}.
1344
1344
  *
@@ -1436,13 +1436,6 @@ declare module "sap/f/cards/BaseHeader" {
1436
1436
  mSettings?: $BaseHeaderSettings
1437
1437
  );
1438
1438
 
1439
- /**
1440
- * @SINCE 1.86
1441
- * @EXPERIMENTAL (since 1.86)
1442
- *
1443
- * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
1444
- */
1445
- destroyToolbar(): this;
1446
1439
  /**
1447
1440
  * Creates a new subclass of class sap.f.cards.BaseHeader with name `sClassName` and enriches it with the
1448
1441
  * information contained in `oClassInfo`.
@@ -1464,6 +1457,17 @@ declare module "sap/f/cards/BaseHeader" {
1464
1457
  */
1465
1458
  FNMetaImpl?: Function
1466
1459
  ): Function;
1460
+ /**
1461
+ * Returns a metadata object for class sap.f.cards.BaseHeader.
1462
+ */
1463
+ static getMetadata(): ElementMetadata;
1464
+ /**
1465
+ * @SINCE 1.86
1466
+ * @EXPERIMENTAL (since 1.86)
1467
+ *
1468
+ * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
1469
+ */
1470
+ destroyToolbar(): this;
1467
1471
  /**
1468
1472
  * @EXPERIMENTAL (since 1.89)
1469
1473
  *
@@ -1479,10 +1483,6 @@ declare module "sap/f/cards/BaseHeader" {
1479
1483
  * Default value is `empty string`.
1480
1484
  */
1481
1485
  getDataTimestamp(): string;
1482
- /**
1483
- * Returns a metadata object for class sap.f.cards.BaseHeader.
1484
- */
1485
- static getMetadata(): ElementMetadata;
1486
1486
  /**
1487
1487
  * @SINCE 1.86
1488
1488
  * @EXPERIMENTAL (since 1.86)
@@ -1593,6 +1593,31 @@ declare module "sap/f/cards/Header" {
1593
1593
  mSettings?: $HeaderSettings
1594
1594
  );
1595
1595
 
1596
+ /**
1597
+ * Creates a new subclass of class sap.f.cards.Header with name `sClassName` and enriches it with the information
1598
+ * contained in `oClassInfo`.
1599
+ *
1600
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.f.cards.BaseHeader.extend}.
1601
+ */
1602
+ static extend<T extends Record<string, unknown>>(
1603
+ /**
1604
+ * Name of the class being created
1605
+ */
1606
+ sClassName: string,
1607
+ /**
1608
+ * Object literal with information about the class
1609
+ */
1610
+ oClassInfo?: sap.ClassInfo<T, Header>,
1611
+ /**
1612
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1613
+ * used by this class
1614
+ */
1615
+ FNMetaImpl?: Function
1616
+ ): Function;
1617
+ /**
1618
+ * Returns a metadata object for class sap.f.cards.Header.
1619
+ */
1620
+ static getMetadata(): ElementMetadata;
1596
1621
  /**
1597
1622
  * Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.f.cards.Header`.
1598
1623
  *
@@ -1649,27 +1674,6 @@ declare module "sap/f/cards/Header" {
1649
1674
  */
1650
1675
  oListener?: object
1651
1676
  ): this;
1652
- /**
1653
- * Creates a new subclass of class sap.f.cards.Header with name `sClassName` and enriches it with the information
1654
- * contained in `oClassInfo`.
1655
- *
1656
- * `oClassInfo` might contain the same kind of information as described in {@link sap.f.cards.BaseHeader.extend}.
1657
- */
1658
- static extend<T extends Record<string, unknown>>(
1659
- /**
1660
- * Name of the class being created
1661
- */
1662
- sClassName: string,
1663
- /**
1664
- * Object literal with information about the class
1665
- */
1666
- oClassInfo?: sap.ClassInfo<T, Header>,
1667
- /**
1668
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1669
- * used by this class
1670
- */
1671
- FNMetaImpl?: Function
1672
- ): Function;
1673
1677
  /**
1674
1678
  * Fires event {@link #event:press press} to attached listeners.
1675
1679
  */
@@ -1723,10 +1727,6 @@ declare module "sap/f/cards/Header" {
1723
1727
  * Default value is `empty string`.
1724
1728
  */
1725
1729
  getIconSrc(): URI;
1726
- /**
1727
- * Returns a metadata object for class sap.f.cards.Header.
1728
- */
1729
- static getMetadata(): ElementMetadata;
1730
1730
  /**
1731
1731
  * Gets current value of property {@link #getStatusText statusText}.
1732
1732
  *
@@ -1929,7 +1929,7 @@ declare module "sap/f/cards/Header" {
1929
1929
  /**
1930
1930
  * Fires when the user presses the control.
1931
1931
  */
1932
- press?: Function;
1932
+ press?: (oEvent: Event) => void;
1933
1933
  }
1934
1934
  }
1935
1935
 
@@ -2003,6 +2003,31 @@ declare module "sap/f/cards/NumericHeader" {
2003
2003
  mSettings?: $NumericHeaderSettings
2004
2004
  );
2005
2005
 
2006
+ /**
2007
+ * Creates a new subclass of class sap.f.cards.NumericHeader with name `sClassName` and enriches it with
2008
+ * the information contained in `oClassInfo`.
2009
+ *
2010
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.f.cards.BaseHeader.extend}.
2011
+ */
2012
+ static extend<T extends Record<string, unknown>>(
2013
+ /**
2014
+ * Name of the class being created
2015
+ */
2016
+ sClassName: string,
2017
+ /**
2018
+ * Object literal with information about the class
2019
+ */
2020
+ oClassInfo?: sap.ClassInfo<T, NumericHeader>,
2021
+ /**
2022
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2023
+ * used by this class
2024
+ */
2025
+ FNMetaImpl?: Function
2026
+ ): Function;
2027
+ /**
2028
+ * Returns a metadata object for class sap.f.cards.NumericHeader.
2029
+ */
2030
+ static getMetadata(): ElementMetadata;
2006
2031
  /**
2007
2032
  * Adds some sideIndicator to the aggregation {@link #getSideIndicators sideIndicators}.
2008
2033
  */
@@ -2072,27 +2097,6 @@ declare module "sap/f/cards/NumericHeader" {
2072
2097
  */
2073
2098
  oListener?: object
2074
2099
  ): this;
2075
- /**
2076
- * Creates a new subclass of class sap.f.cards.NumericHeader with name `sClassName` and enriches it with
2077
- * the information contained in `oClassInfo`.
2078
- *
2079
- * `oClassInfo` might contain the same kind of information as described in {@link sap.f.cards.BaseHeader.extend}.
2080
- */
2081
- static extend<T extends Record<string, unknown>>(
2082
- /**
2083
- * Name of the class being created
2084
- */
2085
- sClassName: string,
2086
- /**
2087
- * Object literal with information about the class
2088
- */
2089
- oClassInfo?: sap.ClassInfo<T, NumericHeader>,
2090
- /**
2091
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2092
- * used by this class
2093
- */
2094
- FNMetaImpl?: Function
2095
- ): Function;
2096
2100
  /**
2097
2101
  * Fires event {@link #event:press press} to attached listeners.
2098
2102
  */
@@ -2108,10 +2112,6 @@ declare module "sap/f/cards/NumericHeader" {
2108
2112
  * Additional text which adds more details to what is shown in the numeric header.
2109
2113
  */
2110
2114
  getDetails(): string;
2111
- /**
2112
- * Returns a metadata object for class sap.f.cards.NumericHeader.
2113
- */
2114
- static getMetadata(): ElementMetadata;
2115
2115
  /**
2116
2116
  * Gets current value of property {@link #getNumber number}.
2117
2117
  *
@@ -2372,7 +2372,7 @@ declare module "sap/f/cards/NumericHeader" {
2372
2372
  /**
2373
2373
  * Fires when the user presses the control.
2374
2374
  */
2375
- press?: Function;
2375
+ press?: (oEvent: Event) => void;
2376
2376
  }
2377
2377
  }
2378
2378
 
@@ -2381,6 +2381,8 @@ declare module "sap/f/cards/NumericSideIndicator" {
2381
2381
 
2382
2382
  import ElementMetadata from "sap/ui/core/ElementMetadata";
2383
2383
 
2384
+ import { ValueColor } from "sap/m/library";
2385
+
2384
2386
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
2385
2387
 
2386
2388
  /**
@@ -2451,6 +2453,16 @@ declare module "sap/f/cards/NumericSideIndicator" {
2451
2453
  * The numeric value
2452
2454
  */
2453
2455
  getNumber(): string;
2456
+ /**
2457
+ * @EXPERIMENTAL (since 1.95)
2458
+ *
2459
+ * Gets current value of property {@link #getState state}.
2460
+ *
2461
+ * The semantic color which represents the state of the side indicator.
2462
+ *
2463
+ * Default value is `"None"`.
2464
+ */
2465
+ getState(): ValueColor | keyof typeof ValueColor;
2454
2466
  /**
2455
2467
  * Gets current value of property {@link #getTitle title}.
2456
2468
  *
@@ -2472,6 +2484,23 @@ declare module "sap/f/cards/NumericSideIndicator" {
2472
2484
  */
2473
2485
  sValue: string
2474
2486
  ): this;
2487
+ /**
2488
+ * @EXPERIMENTAL (since 1.95)
2489
+ *
2490
+ * Sets a new value for property {@link #getState state}.
2491
+ *
2492
+ * The semantic color which represents the state of the side indicator.
2493
+ *
2494
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2495
+ *
2496
+ * Default value is `"None"`.
2497
+ */
2498
+ setState(
2499
+ /**
2500
+ * New value for property `state`
2501
+ */
2502
+ sState?: ValueColor | keyof typeof ValueColor
2503
+ ): this;
2475
2504
  /**
2476
2505
  * Sets the title.
2477
2506
  */
@@ -2507,6 +2536,13 @@ declare module "sap/f/cards/NumericSideIndicator" {
2507
2536
  * Defines the unit of measurement (scaling prefix) for the numeric value
2508
2537
  */
2509
2538
  unit?: string | PropertyBindingInfo;
2539
+
2540
+ /**
2541
+ * @EXPERIMENTAL (since 1.95)
2542
+ *
2543
+ * The semantic color which represents the state of the side indicator.
2544
+ */
2545
+ state?: (ValueColor | keyof typeof ValueColor) | PropertyBindingInfo;
2510
2546
  }
2511
2547
  }
2512
2548
 
@@ -2593,6 +2629,10 @@ declare module "sap/f/dnd/GridDropInfo" {
2593
2629
  */
2594
2630
  FNMetaImpl?: Function
2595
2631
  ): Function;
2632
+ /**
2633
+ * Returns a metadata object for class sap.f.dnd.GridDropInfo.
2634
+ */
2635
+ static getMetadata(): ElementMetadata;
2596
2636
  /**
2597
2637
  * Gets current value of property {@link #getDropIndicatorSize dropIndicatorSize}.
2598
2638
  *
@@ -2610,10 +2650,6 @@ declare module "sap/f/dnd/GridDropInfo" {
2610
2650
  * columns: }` or `null`.
2611
2651
  */
2612
2652
  getDropIndicatorSize(): Function;
2613
- /**
2614
- * Returns a metadata object for class sap.f.dnd.GridDropInfo.
2615
- */
2616
- static getMetadata(): ElementMetadata;
2617
2653
  /**
2618
2654
  * Sets a new value for property {@link #getDropIndicatorSize dropIndicatorSize}.
2619
2655
  *
@@ -2662,6 +2698,8 @@ declare module "sap/f/dnd/GridDropInfo" {
2662
2698
  declare module "sap/f/DynamicPage" {
2663
2699
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
2664
2700
 
2701
+ import Event from "sap/ui/base/Event";
2702
+
2665
2703
  import { PageBackgroundDesign, IBar } from "sap/m/library";
2666
2704
 
2667
2705
  import DynamicPageHeader from "sap/f/DynamicPageHeader";
@@ -2767,6 +2805,78 @@ declare module "sap/f/DynamicPage" {
2767
2805
  mSettings?: $DynamicPageSettings
2768
2806
  );
2769
2807
 
2808
+ /**
2809
+ * Creates a new subclass of class sap.f.DynamicPage with name `sClassName` and enriches it with the information
2810
+ * contained in `oClassInfo`.
2811
+ *
2812
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2813
+ */
2814
+ static extend<T extends Record<string, unknown>>(
2815
+ /**
2816
+ * Name of the class being created
2817
+ */
2818
+ sClassName: string,
2819
+ /**
2820
+ * Object literal with information about the class
2821
+ */
2822
+ oClassInfo?: sap.ClassInfo<T, DynamicPage>,
2823
+ /**
2824
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2825
+ * used by this class
2826
+ */
2827
+ FNMetaImpl?: Function
2828
+ ): Function;
2829
+ /**
2830
+ * Returns a metadata object for class sap.f.DynamicPage.
2831
+ */
2832
+ static getMetadata(): ElementMetadata;
2833
+ /**
2834
+ * @SINCE 1.93
2835
+ *
2836
+ * Attaches event handler `fnFunction` to the {@link #event:pinnedStateChange pinnedStateChange} event of
2837
+ * this `sap.f.DynamicPage`.
2838
+ *
2839
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
2840
+ * otherwise it will be bound to this `sap.f.DynamicPage` itself.
2841
+ *
2842
+ * The event is fired when the `headerPinned` property is changed via user interaction.
2843
+ */
2844
+ attachPinnedStateChange(
2845
+ /**
2846
+ * An application-specific payload object that will be passed to the event handler along with the event
2847
+ * object when firing the event
2848
+ */
2849
+ oData: object,
2850
+ /**
2851
+ * The function to be called when the event occurs
2852
+ */
2853
+ fnFunction: (p1: Event) => void,
2854
+ /**
2855
+ * Context object to call the event handler with. Defaults to this `sap.f.DynamicPage` itself
2856
+ */
2857
+ oListener?: object
2858
+ ): this;
2859
+ /**
2860
+ * @SINCE 1.93
2861
+ *
2862
+ * Attaches event handler `fnFunction` to the {@link #event:pinnedStateChange pinnedStateChange} event of
2863
+ * this `sap.f.DynamicPage`.
2864
+ *
2865
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
2866
+ * otherwise it will be bound to this `sap.f.DynamicPage` itself.
2867
+ *
2868
+ * The event is fired when the `headerPinned` property is changed via user interaction.
2869
+ */
2870
+ attachPinnedStateChange(
2871
+ /**
2872
+ * The function to be called when the event occurs
2873
+ */
2874
+ fnFunction: (p1: Event) => void,
2875
+ /**
2876
+ * Context object to call the event handler with. Defaults to this `sap.f.DynamicPage` itself
2877
+ */
2878
+ oListener?: object
2879
+ ): this;
2770
2880
  /**
2771
2881
  * Destroys the content in the aggregation {@link #getContent content}.
2772
2882
  */
@@ -2790,26 +2900,39 @@ declare module "sap/f/DynamicPage" {
2790
2900
  */
2791
2901
  destroyTitle(): this;
2792
2902
  /**
2793
- * Creates a new subclass of class sap.f.DynamicPage with name `sClassName` and enriches it with the information
2794
- * contained in `oClassInfo`.
2903
+ * @SINCE 1.93
2795
2904
  *
2796
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2905
+ * Detaches event handler `fnFunction` from the {@link #event:pinnedStateChange pinnedStateChange} event
2906
+ * of this `sap.f.DynamicPage`.
2907
+ *
2908
+ * The passed function and listener object must match the ones used for event registration.
2797
2909
  */
2798
- static extend<T extends Record<string, unknown>>(
2910
+ detachPinnedStateChange(
2799
2911
  /**
2800
- * Name of the class being created
2912
+ * The function to be called, when the event occurs
2801
2913
  */
2802
- sClassName: string,
2914
+ fnFunction: (p1: Event) => void,
2803
2915
  /**
2804
- * Object literal with information about the class
2916
+ * Context object on which the given function had to be called
2805
2917
  */
2806
- oClassInfo?: sap.ClassInfo<T, DynamicPage>,
2918
+ oListener?: object
2919
+ ): this;
2920
+ /**
2921
+ * @SINCE 1.93
2922
+ *
2923
+ * Fires event {@link #event:pinnedStateChange pinnedStateChange} to attached listeners.
2924
+ */
2925
+ firePinnedStateChange(
2807
2926
  /**
2808
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
2809
- * used by this class
2927
+ * Parameters to pass along with the event
2810
2928
  */
2811
- FNMetaImpl?: Function
2812
- ): Function;
2929
+ mParameters?: {
2930
+ /**
2931
+ * False or True values indicate the new pinned property value.
2932
+ */
2933
+ pinned?: boolean;
2934
+ }
2935
+ ): this;
2813
2936
  /**
2814
2937
  * @SINCE 1.68
2815
2938
  *
@@ -2899,6 +3022,27 @@ declare module "sap/f/DynamicPage" {
2899
3022
  * Default value is `true`.
2900
3023
  */
2901
3024
  getHeaderExpanded(): boolean;
3025
+ /**
3026
+ * @SINCE 1.93
3027
+ *
3028
+ * Gets current value of property {@link #getHeaderPinned headerPinned}.
3029
+ *
3030
+ * Determines whether the `DynamicPageHeader` is pinned.
3031
+ *
3032
+ * The property can be changed programmatically or in the occurrence of the following user interactions:
3033
+ *
3034
+ * - Toggling the pin/unpin button of `DynamicPageHeader`
3035
+ * - Snapping the `DynamicPageHeader` by explicitly clicking on the `DynamicPageTitle`
3036
+ *
3037
+ * **Note: ** The property will only apply if the header is effectively pinnable, i.e. if the following
3038
+ * conditions are met:
3039
+ * - `DynamicPageHeader` `pinnable` property is `true`
3040
+ * - `DynamicPageHeader` is expanded
3041
+ * - `DynamicPage` `preserveHeaderStateOnScroll` property is effectively disabled
3042
+ *
3043
+ * Default value is `false`.
3044
+ */
3045
+ getHeaderPinned(): boolean;
2902
3046
  /**
2903
3047
  * @SINCE 1.61
2904
3048
  *
@@ -2909,10 +3053,6 @@ declare module "sap/f/DynamicPage" {
2909
3053
  * If not set, no landmarks will be written.
2910
3054
  */
2911
3055
  getLandmarkInfo(): DynamicPageAccessibleLandmarkInfo;
2912
- /**
2913
- * Returns a metadata object for class sap.f.DynamicPage.
2914
- */
2915
- static getMetadata(): ElementMetadata;
2916
3056
  /**
2917
3057
  * Gets current value of property {@link #getPreserveHeaderStateOnScroll preserveHeaderStateOnScroll}.
2918
3058
  *
@@ -3055,6 +3195,34 @@ declare module "sap/f/DynamicPage" {
3055
3195
  */
3056
3196
  bHeaderExpanded?: boolean
3057
3197
  ): this;
3198
+ /**
3199
+ * @SINCE 1.93
3200
+ *
3201
+ * Sets a new value for property {@link #getHeaderPinned headerPinned}.
3202
+ *
3203
+ * Determines whether the `DynamicPageHeader` is pinned.
3204
+ *
3205
+ * The property can be changed programmatically or in the occurrence of the following user interactions:
3206
+ *
3207
+ * - Toggling the pin/unpin button of `DynamicPageHeader`
3208
+ * - Snapping the `DynamicPageHeader` by explicitly clicking on the `DynamicPageTitle`
3209
+ *
3210
+ * **Note: ** The property will only apply if the header is effectively pinnable, i.e. if the following
3211
+ * conditions are met:
3212
+ * - `DynamicPageHeader` `pinnable` property is `true`
3213
+ * - `DynamicPageHeader` is expanded
3214
+ * - `DynamicPage` `preserveHeaderStateOnScroll` property is effectively disabled
3215
+ *
3216
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3217
+ *
3218
+ * Default value is `false`.
3219
+ */
3220
+ setHeaderPinned(
3221
+ /**
3222
+ * New value for property `headerPinned`
3223
+ */
3224
+ bHeaderPinned?: boolean
3225
+ ): this;
3058
3226
  /**
3059
3227
  * @SINCE 1.61
3060
3228
  *
@@ -3165,6 +3333,24 @@ declare module "sap/f/DynamicPage" {
3165
3333
  */
3166
3334
  headerExpanded?: boolean | PropertyBindingInfo;
3167
3335
 
3336
+ /**
3337
+ * @SINCE 1.93
3338
+ *
3339
+ * Determines whether the `DynamicPageHeader` is pinned.
3340
+ *
3341
+ * The property can be changed programmatically or in the occurrence of the following user interactions:
3342
+ *
3343
+ * - Toggling the pin/unpin button of `DynamicPageHeader`
3344
+ * - Snapping the `DynamicPageHeader` by explicitly clicking on the `DynamicPageTitle`
3345
+ *
3346
+ * **Note: ** The property will only apply if the header is effectively pinnable, i.e. if the following
3347
+ * conditions are met:
3348
+ * - `DynamicPageHeader` `pinnable` property is `true`
3349
+ * - `DynamicPageHeader` is expanded
3350
+ * - `DynamicPage` `preserveHeaderStateOnScroll` property is effectively disabled
3351
+ */
3352
+ headerPinned?: boolean | PropertyBindingInfo;
3353
+
3168
3354
  /**
3169
3355
  * Determines whether the user can switch between the expanded/collapsed states of the `DynamicPageHeader`
3170
3356
  * by clicking on the `DynamicPageTitle` or by using the expand/collapse visual indicators, positioned at
@@ -3268,6 +3454,13 @@ declare module "sap/f/DynamicPage" {
3268
3454
  * content have to implement the `sap.f.IDynamicPageStickyContent` interface.
3269
3455
  */
3270
3456
  stickySubheaderProvider?: IDynamicPageStickyContent | string;
3457
+
3458
+ /**
3459
+ * @SINCE 1.93
3460
+ *
3461
+ * The event is fired when the `headerPinned` property is changed via user interaction.
3462
+ */
3463
+ pinnedStateChange?: (oEvent: Event) => void;
3271
3464
  }
3272
3465
  }
3273
3466
 
@@ -3342,6 +3535,10 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
3342
3535
  */
3343
3536
  FNMetaImpl?: Function
3344
3537
  ): Function;
3538
+ /**
3539
+ * Returns a metadata object for class sap.f.DynamicPageAccessibleLandmarkInfo.
3540
+ */
3541
+ static getMetadata(): ElementMetadata;
3345
3542
  /**
3346
3543
  * Gets current value of property {@link #getContentLabel contentLabel}.
3347
3544
  *
@@ -3405,10 +3602,6 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
3405
3602
  getHeaderRole():
3406
3603
  | AccessibleLandmarkRole
3407
3604
  | keyof typeof AccessibleLandmarkRole;
3408
- /**
3409
- * Returns a metadata object for class sap.f.DynamicPageAccessibleLandmarkInfo.
3410
- */
3411
- static getMetadata(): ElementMetadata;
3412
3605
  /**
3413
3606
  * Gets current value of property {@link #getRootLabel rootLabel}.
3414
3607
  *
@@ -3703,20 +3896,7 @@ declare module "sap/f/DynamicPageHeader" {
3703
3896
  */
3704
3897
  mSettings?: $DynamicPageHeaderSettings
3705
3898
  );
3706
-
3707
- /**
3708
- * Adds some content to the aggregation {@link #getContent content}.
3709
- */
3710
- addContent(
3711
- /**
3712
- * The content to add; if empty, nothing is inserted
3713
- */
3714
- oContent: Control
3715
- ): this;
3716
- /**
3717
- * Destroys all the content in the aggregation {@link #getContent content}.
3718
- */
3719
- destroyContent(): this;
3899
+
3720
3900
  /**
3721
3901
  * Creates a new subclass of class sap.f.DynamicPageHeader with name `sClassName` and enriches it with the
3722
3902
  * information contained in `oClassInfo`.
@@ -3738,6 +3918,23 @@ declare module "sap/f/DynamicPageHeader" {
3738
3918
  */
3739
3919
  FNMetaImpl?: Function
3740
3920
  ): Function;
3921
+ /**
3922
+ * Returns a metadata object for class sap.f.DynamicPageHeader.
3923
+ */
3924
+ static getMetadata(): ElementMetadata;
3925
+ /**
3926
+ * Adds some content to the aggregation {@link #getContent content}.
3927
+ */
3928
+ addContent(
3929
+ /**
3930
+ * The content to add; if empty, nothing is inserted
3931
+ */
3932
+ oContent: Control
3933
+ ): this;
3934
+ /**
3935
+ * Destroys all the content in the aggregation {@link #getContent content}.
3936
+ */
3937
+ destroyContent(): this;
3741
3938
  /**
3742
3939
  * @SINCE 1.58
3743
3940
  *
@@ -3755,10 +3952,6 @@ declare module "sap/f/DynamicPageHeader" {
3755
3952
  * The content of the header.
3756
3953
  */
3757
3954
  getContent(): Control[];
3758
- /**
3759
- * Returns a metadata object for class sap.f.DynamicPageHeader.
3760
- */
3761
- static getMetadata(): ElementMetadata;
3762
3955
  /**
3763
3956
  * Gets current value of property {@link #getPinnable pinnable}.
3764
3957
  *
@@ -3954,6 +4147,31 @@ declare module "sap/f/DynamicPageTitle" {
3954
4147
  mSettings?: $DynamicPageTitleSettings
3955
4148
  );
3956
4149
 
4150
+ /**
4151
+ * Creates a new subclass of class sap.f.DynamicPageTitle with name `sClassName` and enriches it with the
4152
+ * information contained in `oClassInfo`.
4153
+ *
4154
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4155
+ */
4156
+ static extend<T extends Record<string, unknown>>(
4157
+ /**
4158
+ * Name of the class being created
4159
+ */
4160
+ sClassName: string,
4161
+ /**
4162
+ * Object literal with information about the class
4163
+ */
4164
+ oClassInfo?: sap.ClassInfo<T, DynamicPageTitle>,
4165
+ /**
4166
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4167
+ * used by this class
4168
+ */
4169
+ FNMetaImpl?: Function
4170
+ ): Function;
4171
+ /**
4172
+ * Returns a metadata object for class sap.f.DynamicPageTitle.
4173
+ */
4174
+ static getMetadata(): ElementMetadata;
3957
4175
  /**
3958
4176
  * Adds some action to the aggregation {@link #getActions actions}.
3959
4177
  */
@@ -4136,27 +4354,6 @@ declare module "sap/f/DynamicPageTitle" {
4136
4354
  */
4137
4355
  oListener?: object
4138
4356
  ): this;
4139
- /**
4140
- * Creates a new subclass of class sap.f.DynamicPageTitle with name `sClassName` and enriches it with the
4141
- * information contained in `oClassInfo`.
4142
- *
4143
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4144
- */
4145
- static extend<T extends Record<string, unknown>>(
4146
- /**
4147
- * Name of the class being created
4148
- */
4149
- sClassName: string,
4150
- /**
4151
- * Object literal with information about the class
4152
- */
4153
- oClassInfo?: sap.ClassInfo<T, DynamicPageTitle>,
4154
- /**
4155
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
4156
- * used by this class
4157
- */
4158
- FNMetaImpl?: Function
4159
- ): Function;
4160
4357
  /**
4161
4358
  * @SINCE 1.54
4162
4359
  *
@@ -4282,10 +4479,6 @@ declare module "sap/f/DynamicPageTitle" {
4282
4479
  * state.
4283
4480
  */
4284
4481
  getHeading(): Control;
4285
- /**
4286
- * Returns a metadata object for class sap.f.DynamicPageTitle.
4287
- */
4288
- static getMetadata(): ElementMetadata;
4289
4482
  /**
4290
4483
  * @SINCE 1.52
4291
4484
  *
@@ -4900,7 +5093,7 @@ declare module "sap/f/DynamicPageTitle" {
4900
5093
  * Also fired when the developer toggles the title state by programmatically changing the scroll position
4901
5094
  * of the scrollbar of `DynamicPage`.
4902
5095
  */
4903
- stateChange?: Function;
5096
+ stateChange?: (oEvent: Event) => void;
4904
5097
  }
4905
5098
  }
4906
5099
 
@@ -4915,6 +5108,8 @@ declare module "sap/f/FlexibleColumnLayout" {
4915
5108
 
4916
5109
  import { BackgroundDesign } from "sap/m/library";
4917
5110
 
5111
+ import FlexibleColumnLayoutAccessibleLandmarkInfo from "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo";
5112
+
4918
5113
  import ElementMetadata from "sap/ui/core/ElementMetadata";
4919
5114
 
4920
5115
  import {
@@ -5006,6 +5201,31 @@ declare module "sap/f/FlexibleColumnLayout" {
5006
5201
  mSettings?: $FlexibleColumnLayoutSettings
5007
5202
  );
5008
5203
 
5204
+ /**
5205
+ * Creates a new subclass of class sap.f.FlexibleColumnLayout with name `sClassName` and enriches it with
5206
+ * the information contained in `oClassInfo`.
5207
+ *
5208
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
5209
+ */
5210
+ static extend<T extends Record<string, unknown>>(
5211
+ /**
5212
+ * Name of the class being created
5213
+ */
5214
+ sClassName: string,
5215
+ /**
5216
+ * Object literal with information about the class
5217
+ */
5218
+ oClassInfo?: sap.ClassInfo<T, FlexibleColumnLayout>,
5219
+ /**
5220
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5221
+ * used by this class
5222
+ */
5223
+ FNMetaImpl?: Function
5224
+ ): Function;
5225
+ /**
5226
+ * Returns a metadata object for class sap.f.FlexibleColumnLayout.
5227
+ */
5228
+ static getMetadata(): ElementMetadata;
5009
5229
  /**
5010
5230
  * Adds some beginColumnPage to the aggregation {@link #getBeginColumnPages beginColumnPages}.
5011
5231
  */
@@ -5569,6 +5789,12 @@ declare module "sap/f/FlexibleColumnLayout" {
5569
5789
  * Destroys all the endColumnPages in the aggregation {@link #getEndColumnPages endColumnPages}.
5570
5790
  */
5571
5791
  destroyEndColumnPages(): this;
5792
+ /**
5793
+ * @SINCE 1.95
5794
+ *
5795
+ * Destroys the landmarkInfo in the aggregation {@link #getLandmarkInfo landmarkInfo}.
5796
+ */
5797
+ destroyLandmarkInfo(): this;
5572
5798
  /**
5573
5799
  * Destroys all the midColumnPages in the aggregation {@link #getMidColumnPages midColumnPages}.
5574
5800
  */
@@ -5701,27 +5927,6 @@ declare module "sap/f/FlexibleColumnLayout" {
5701
5927
  */
5702
5928
  oListener?: object
5703
5929
  ): this;
5704
- /**
5705
- * Creates a new subclass of class sap.f.FlexibleColumnLayout with name `sClassName` and enriches it with
5706
- * the information contained in `oClassInfo`.
5707
- *
5708
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
5709
- */
5710
- static extend<T extends Record<string, unknown>>(
5711
- /**
5712
- * Name of the class being created
5713
- */
5714
- sClassName: string,
5715
- /**
5716
- * Object literal with information about the class
5717
- */
5718
- oClassInfo?: sap.ClassInfo<T, FlexibleColumnLayout>,
5719
- /**
5720
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5721
- * used by this class
5722
- */
5723
- FNMetaImpl?: Function
5724
- ): Function;
5725
5930
  /**
5726
5931
  * Fires event {@link #event:afterBeginColumnNavigate afterBeginColumnNavigate} to attached listeners.
5727
5932
  */
@@ -6194,6 +6399,16 @@ declare module "sap/f/FlexibleColumnLayout" {
6194
6399
  * or `null`.
6195
6400
  */
6196
6401
  getInitialMidColumnPage(): ID;
6402
+ /**
6403
+ * @SINCE 1.95
6404
+ *
6405
+ * Gets content of aggregation {@link #getLandmarkInfo landmarkInfo}.
6406
+ *
6407
+ * Accessible landmark settings to be applied on the containers of the `sap.f.FlexibleColumnLayout` control.
6408
+ *
6409
+ * If not set, no landmarks will be written.
6410
+ */
6411
+ getLandmarkInfo(): FlexibleColumnLayoutAccessibleLandmarkInfo;
6197
6412
  /**
6198
6413
  * Gets current value of property {@link #getLayout layout}.
6199
6414
  *
@@ -6208,10 +6423,6 @@ declare module "sap/f/FlexibleColumnLayout" {
6208
6423
  * Returns the maximum number of columns that can be displayed at once based on the control width
6209
6424
  */
6210
6425
  getMaxColumnsCount(): number;
6211
- /**
6212
- * Returns a metadata object for class sap.f.FlexibleColumnLayout.
6213
- */
6214
- static getMetadata(): ElementMetadata;
6215
6426
  /**
6216
6427
  * Gets content of aggregation {@link #getMidColumnPages midColumnPages}.
6217
6428
  *
@@ -6488,6 +6699,17 @@ declare module "sap/f/FlexibleColumnLayout" {
6488
6699
  */
6489
6700
  oInitialMidColumnPage: ID | Control
6490
6701
  ): this;
6702
+ /**
6703
+ * @SINCE 1.95
6704
+ *
6705
+ * Sets the aggregated {@link #getLandmarkInfo landmarkInfo}.
6706
+ */
6707
+ setLandmarkInfo(
6708
+ /**
6709
+ * The landmarkInfo to set
6710
+ */
6711
+ oLandmarkInfo: FlexibleColumnLayoutAccessibleLandmarkInfo
6712
+ ): this;
6491
6713
  /**
6492
6714
  * Sets a new value for property {@link #getLayout layout}.
6493
6715
  *
@@ -6919,6 +7141,15 @@ declare module "sap/f/FlexibleColumnLayout" {
6919
7141
  */
6920
7142
  endColumnPages?: Control[] | Control | AggregationBindingInfo;
6921
7143
 
7144
+ /**
7145
+ * @SINCE 1.95
7146
+ *
7147
+ * Accessible landmark settings to be applied on the containers of the `sap.f.FlexibleColumnLayout` control.
7148
+ *
7149
+ * If not set, no landmarks will be written.
7150
+ */
7151
+ landmarkInfo?: FlexibleColumnLayoutAccessibleLandmarkInfo;
7152
+
6922
7153
  /**
6923
7154
  * Sets the initial `Begin` column page, which is displayed on application launch.
6924
7155
  */
@@ -6946,56 +7177,232 @@ declare module "sap/f/FlexibleColumnLayout" {
6946
7177
  * **Note: **The event is suppressed while the control has zero width and will be fired the first time
6947
7178
  * it gets a non-zero width
6948
7179
  */
6949
- stateChange?: Function;
7180
+ stateChange?: (oEvent: Event) => void;
6950
7181
 
6951
7182
  /**
6952
7183
  * Fires when navigation between two pages in the `Begin` column has been triggered. The transition (if
6953
7184
  * any) to the new page has not started yet. This event can be aborted by the application with preventDefault(),
6954
7185
  * which means that there will be no navigation.
6955
7186
  */
6956
- beginColumnNavigate?: Function;
7187
+ beginColumnNavigate?: (oEvent: Event) => void;
6957
7188
 
6958
7189
  /**
6959
7190
  * Fires when navigation between two pages in the `Begin` column has completed.
6960
7191
  *
6961
- * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7192
+ * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7193
+ */
7194
+ afterBeginColumnNavigate?: (oEvent: Event) => void;
7195
+
7196
+ /**
7197
+ * Fires when navigation between two pages in the `Mid` column has been triggered. The transition (if any)
7198
+ * to the new page has not started yet. This event can be aborted by the application with preventDefault(),
7199
+ * which means that there will be no navigation.
7200
+ */
7201
+ midColumnNavigate?: (oEvent: Event) => void;
7202
+
7203
+ /**
7204
+ * Fires when navigation between two pages in the `Mid` column has completed.
7205
+ *
7206
+ * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7207
+ */
7208
+ afterMidColumnNavigate?: (oEvent: Event) => void;
7209
+
7210
+ /**
7211
+ * Fires when navigation between two pages in the `End` column has been triggered. The transition (if any)
7212
+ * to the new page has not started yet. This event can be aborted by the application with preventDefault(),
7213
+ * which means that there will be no navigation.
7214
+ */
7215
+ endColumnNavigate?: (oEvent: Event) => void;
7216
+
7217
+ /**
7218
+ * Fires when navigation between two pages in the `End` column has completed.
7219
+ *
7220
+ * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7221
+ */
7222
+ afterEndColumnNavigate?: (oEvent: Event) => void;
7223
+
7224
+ /**
7225
+ * @SINCE 1.76
7226
+ *
7227
+ * Fired when resize of each column has completed.
7228
+ */
7229
+ columnResize?: (oEvent: Event) => void;
7230
+ }
7231
+ }
7232
+
7233
+ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
7234
+ import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
7235
+
7236
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
7237
+
7238
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
7239
+
7240
+ /**
7241
+ * @SINCE 1.95
7242
+ *
7243
+ * Settings for accessible landmarks which can be applied to the container elements of a `sap.f.FlexibleColumnLayout`
7244
+ * control. For example, these landmarks are used by assistive technologies (such as screen readers) to
7245
+ * provide a meaningful columns overview.
7246
+ */
7247
+ export default class FlexibleColumnLayoutAccessibleLandmarkInfo extends UI5Element {
7248
+ /**
7249
+ * Constructor for a new `sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo` element.
7250
+ *
7251
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
7252
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
7253
+ * of the syntax of the settings object.
7254
+ */
7255
+ constructor(
7256
+ /**
7257
+ * Initial settings for the new element
7258
+ */
7259
+ mSettings?: $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
7260
+ );
7261
+ /**
7262
+ * Constructor for a new `sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo` element.
7263
+ *
7264
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
7265
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
7266
+ * of the syntax of the settings object.
7267
+ */
7268
+ constructor(
7269
+ /**
7270
+ * ID for the new element, generated automatically if no ID is given
7271
+ */
7272
+ sId?: string,
7273
+ /**
7274
+ * Initial settings for the new element
7275
+ */
7276
+ mSettings?: $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
7277
+ );
7278
+
7279
+ /**
7280
+ * Creates a new subclass of class sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo with name `sClassName`
7281
+ * and enriches it with the information contained in `oClassInfo`.
7282
+ *
7283
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
7284
+ */
7285
+ static extend<T extends Record<string, unknown>>(
7286
+ /**
7287
+ * Name of the class being created
7288
+ */
7289
+ sClassName: string,
7290
+ /**
7291
+ * Object literal with information about the class
7292
+ */
7293
+ oClassInfo?: sap.ClassInfo<T, FlexibleColumnLayoutAccessibleLandmarkInfo>,
7294
+ /**
7295
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7296
+ * used by this class
7297
+ */
7298
+ FNMetaImpl?: Function
7299
+ ): Function;
7300
+ /**
7301
+ * Returns a metadata object for class sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo.
7302
+ */
7303
+ static getMetadata(): ElementMetadata;
7304
+ /**
7305
+ * Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
7306
+ *
7307
+ * Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
7308
+ * control.
7309
+ *
7310
+ * If not set, a predefined text is used.
7311
+ */
7312
+ getFirstColumnLabel(): string;
7313
+ /**
7314
+ * Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
7315
+ *
7316
+ * Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
7317
+ * control.
7318
+ *
7319
+ * If not set, a predefined text is used.
7320
+ */
7321
+ getLastColumnLabel(): string;
7322
+ /**
7323
+ * Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
7324
+ *
7325
+ * Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
7326
+ * control.
7327
+ *
7328
+ * If not set, a predefined text is used.
7329
+ */
7330
+ getMiddleColumnLabel(): string;
7331
+ /**
7332
+ * Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
7333
+ *
7334
+ * Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
7335
+ * control.
7336
+ *
7337
+ * If not set, a predefined text is used.
7338
+ *
7339
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6962
7340
  */
6963
- afterBeginColumnNavigate?: Function;
6964
-
7341
+ setFirstColumnLabel(
7342
+ /**
7343
+ * New value for property `firstColumnLabel`
7344
+ */
7345
+ sFirstColumnLabel?: string
7346
+ ): this;
6965
7347
  /**
6966
- * Fires when navigation between two pages in the `Mid` column has been triggered. The transition (if any)
6967
- * to the new page has not started yet. This event can be aborted by the application with preventDefault(),
6968
- * which means that there will be no navigation.
7348
+ * Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
7349
+ *
7350
+ * Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
7351
+ * control.
7352
+ *
7353
+ * If not set, a predefined text is used.
7354
+ *
7355
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6969
7356
  */
6970
- midColumnNavigate?: Function;
6971
-
7357
+ setLastColumnLabel(
7358
+ /**
7359
+ * New value for property `lastColumnLabel`
7360
+ */
7361
+ sLastColumnLabel?: string
7362
+ ): this;
6972
7363
  /**
6973
- * Fires when navigation between two pages in the `Mid` column has completed.
7364
+ * Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
6974
7365
  *
6975
- * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7366
+ * Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
7367
+ * control.
7368
+ *
7369
+ * If not set, a predefined text is used.
7370
+ *
7371
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6976
7372
  */
6977
- afterMidColumnNavigate?: Function;
7373
+ setMiddleColumnLabel(
7374
+ /**
7375
+ * New value for property `middleColumnLabel`
7376
+ */
7377
+ sMiddleColumnLabel?: string
7378
+ ): this;
7379
+ }
6978
7380
 
7381
+ export interface $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
7382
+ extends $ElementSettings {
6979
7383
  /**
6980
- * Fires when navigation between two pages in the `End` column has been triggered. The transition (if any)
6981
- * to the new page has not started yet. This event can be aborted by the application with preventDefault(),
6982
- * which means that there will be no navigation.
7384
+ * Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
7385
+ * control.
7386
+ *
7387
+ * If not set, a predefined text is used.
6983
7388
  */
6984
- endColumnNavigate?: Function;
7389
+ firstColumnLabel?: string | PropertyBindingInfo;
6985
7390
 
6986
7391
  /**
6987
- * Fires when navigation between two pages in the `End` column has completed.
7392
+ * Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
7393
+ * control.
6988
7394
  *
6989
- * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7395
+ * If not set, a predefined text is used.
6990
7396
  */
6991
- afterEndColumnNavigate?: Function;
7397
+ middleColumnLabel?: string | PropertyBindingInfo;
6992
7398
 
6993
7399
  /**
6994
- * @SINCE 1.76
7400
+ * Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
7401
+ * control.
6995
7402
  *
6996
- * Fired when resize of each column has completed.
7403
+ * If not set, a predefined text is used.
6997
7404
  */
6998
- columnResize?: Function;
7405
+ lastColumnLabel?: string | PropertyBindingInfo;
6999
7406
  }
7000
7407
  }
7001
7408
 
@@ -7107,6 +7514,21 @@ declare module "sap/f/FlexibleColumnLayoutSemanticHelper" {
7107
7514
  }
7108
7515
  );
7109
7516
 
7517
+ /**
7518
+ * Returns an instance of the `sap.f.FlexibleColumnLayoutSemanticHelper` class for a given `sap.f.FlexibleColumnLayout`
7519
+ * object.
7520
+ */
7521
+ static getInstanceFor(
7522
+ /**
7523
+ * The `sap.f.FlexibleColumnLayout` object to get a semantic helper instance for
7524
+ */
7525
+ oFlexibleColumnLayout: FlexibleColumnLayout,
7526
+ /**
7527
+ * An optional settings object to be used when creating the instance. **Note:** will be considered only
7528
+ * for the first `getInstanceFor` call for the given `sap.f.FlexibleColumnLayout` object.
7529
+ */
7530
+ oSettings?: object
7531
+ ): FlexibleColumnLayoutSemanticHelper;
7110
7532
  /**
7111
7533
  * Returns an object, describing the current state of the control and the expected action buttons for each
7112
7534
  * column.
@@ -7186,21 +7608,6 @@ declare module "sap/f/FlexibleColumnLayoutSemanticHelper" {
7186
7608
  * be shown side by side
7187
7609
  */
7188
7610
  getDefaultLayouts(): object;
7189
- /**
7190
- * Returns an instance of the `sap.f.FlexibleColumnLayoutSemanticHelper` class for a given `sap.f.FlexibleColumnLayout`
7191
- * object.
7192
- */
7193
- static getInstanceFor(
7194
- /**
7195
- * The `sap.f.FlexibleColumnLayout` object to get a semantic helper instance for
7196
- */
7197
- oFlexibleColumnLayout: FlexibleColumnLayout,
7198
- /**
7199
- * An optional settings object to be used when creating the instance. **Note:** will be considered only
7200
- * for the first `getInstanceFor` call for the given `sap.f.FlexibleColumnLayout` object.
7201
- */
7202
- oSettings?: object
7203
- ): FlexibleColumnLayoutSemanticHelper;
7204
7611
  /**
7205
7612
  * Returns an object, describing the state that the control will have after navigating to a different view
7206
7613
  * level.
@@ -7384,6 +7791,31 @@ declare module "sap/f/GridContainer" {
7384
7791
  mSettings?: $GridContainerSettings
7385
7792
  );
7386
7793
 
7794
+ /**
7795
+ * Creates a new subclass of class sap.f.GridContainer with name `sClassName` and enriches it with the information
7796
+ * contained in `oClassInfo`.
7797
+ *
7798
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
7799
+ */
7800
+ static extend<T extends Record<string, unknown>>(
7801
+ /**
7802
+ * Name of the class being created
7803
+ */
7804
+ sClassName: string,
7805
+ /**
7806
+ * Object literal with information about the class
7807
+ */
7808
+ oClassInfo?: sap.ClassInfo<T, GridContainer>,
7809
+ /**
7810
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7811
+ * used by this class
7812
+ */
7813
+ FNMetaImpl?: Function
7814
+ ): Function;
7815
+ /**
7816
+ * Returns a metadata object for class sap.f.GridContainer.
7817
+ */
7818
+ static getMetadata(): ElementMetadata;
7387
7819
  /**
7388
7820
  * Adds some item to the aggregation {@link #getItems items}.
7389
7821
  */
@@ -7593,27 +8025,6 @@ declare module "sap/f/GridContainer" {
7593
8025
  */
7594
8026
  oListener?: object
7595
8027
  ): this;
7596
- /**
7597
- * Creates a new subclass of class sap.f.GridContainer with name `sClassName` and enriches it with the information
7598
- * contained in `oClassInfo`.
7599
- *
7600
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
7601
- */
7602
- static extend<T extends Record<string, unknown>>(
7603
- /**
7604
- * Name of the class being created
7605
- */
7606
- sClassName: string,
7607
- /**
7608
- * Object literal with information about the class
7609
- */
7610
- oClassInfo?: sap.ClassInfo<T, GridContainer>,
7611
- /**
7612
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
7613
- * used by this class
7614
- */
7615
- FNMetaImpl?: Function
7616
- ): Function;
7617
8028
  /**
7618
8029
  * Fires event {@link #event:borderReached borderReached} to attached listeners.
7619
8030
  */
@@ -7799,10 +8210,6 @@ declare module "sap/f/GridContainer" {
7799
8210
  * The sap.f.GridContainerSettings applied for size "XS". Range: up to 374px.
7800
8211
  */
7801
8212
  getLayoutXS(): GridContainerSettings;
7802
- /**
7803
- * Returns a metadata object for class sap.f.GridContainer.
7804
- */
7805
- static getMetadata(): ElementMetadata;
7806
8213
  /**
7807
8214
  * @EXPERIMENTAL (since 1.81)
7808
8215
  *
@@ -8134,17 +8541,17 @@ declare module "sap/f/GridContainer" {
8134
8541
  /**
8135
8542
  * Fired when the currently active GridSettings change.
8136
8543
  */
8137
- layoutChange?: Function;
8544
+ layoutChange?: (oEvent: Event) => void;
8138
8545
 
8139
8546
  /**
8140
8547
  * Fired when the grid columns count is changed.
8141
8548
  */
8142
- columnsChange?: Function;
8549
+ columnsChange?: (oEvent: Event) => void;
8143
8550
 
8144
8551
  /**
8145
8552
  * Fires if the border of the visualizations is reached so that an application can react on this.
8146
8553
  */
8147
- borderReached?: Function;
8554
+ borderReached?: (oEvent: Event) => void;
8148
8555
  }
8149
8556
  }
8150
8557
 
@@ -8221,6 +8628,10 @@ declare module "sap/f/GridContainerItemLayoutData" {
8221
8628
  */
8222
8629
  FNMetaImpl?: Function
8223
8630
  ): Function;
8631
+ /**
8632
+ * Returns a metadata object for class sap.f.GridContainerItemLayoutData.
8633
+ */
8634
+ static getMetadata(): ElementMetadata;
8224
8635
  /**
8225
8636
  * Gets current value of property {@link #getColumns columns}.
8226
8637
  *
@@ -8234,10 +8645,6 @@ declare module "sap/f/GridContainerItemLayoutData" {
8234
8645
  * Default value is `1`.
8235
8646
  */
8236
8647
  getColumns(): int;
8237
- /**
8238
- * Returns a metadata object for class sap.f.GridContainerItemLayoutData.
8239
- */
8240
- static getMetadata(): ElementMetadata;
8241
8648
  /**
8242
8649
  * Gets current value of property {@link #getMinRows minRows}.
8243
8650
  *
@@ -8405,6 +8812,10 @@ declare module "sap/f/GridContainerSettings" {
8405
8812
  */
8406
8813
  FNMetaImpl?: Function
8407
8814
  ): Function;
8815
+ /**
8816
+ * Returns a metadata object for class sap.f.GridContainerSettings.
8817
+ */
8818
+ static getMetadata(): ManagedObjectMetadata;
8408
8819
  /**
8409
8820
  * Gets current value of property {@link #getColumns columns}.
8410
8821
  *
@@ -8440,10 +8851,6 @@ declare module "sap/f/GridContainerSettings" {
8440
8851
  * **Note:** Will not work in combination with `columnSize`.
8441
8852
  */
8442
8853
  getMaxColumnSize(): CSSSize;
8443
- /**
8444
- * Returns a metadata object for class sap.f.GridContainerSettings.
8445
- */
8446
- static getMetadata(): ManagedObjectMetadata;
8447
8854
  /**
8448
8855
  * Gets current value of property {@link #getMinColumnSize minColumnSize}.
8449
8856
  *
@@ -8720,11 +9127,32 @@ declare module "sap/f/GridList" {
8720
9127
  */
8721
9128
  mSettings?: $GridListSettings
8722
9129
  );
9130
+
8723
9131
  /**
8724
- * Implements IGridConfigurable interface.
9132
+ * Creates a new subclass of class sap.f.GridList with name `sClassName` and enriches it with the information
9133
+ * contained in `oClassInfo`.
9134
+ *
9135
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.ListBase.extend}.
8725
9136
  */
8726
- getGridLayoutConfiguration: undefined;
8727
-
9137
+ static extend<T extends Record<string, unknown>>(
9138
+ /**
9139
+ * Name of the class being created
9140
+ */
9141
+ sClassName: string,
9142
+ /**
9143
+ * Object literal with information about the class
9144
+ */
9145
+ oClassInfo?: sap.ClassInfo<T, GridList>,
9146
+ /**
9147
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9148
+ * used by this class
9149
+ */
9150
+ FNMetaImpl?: Function
9151
+ ): Function;
9152
+ /**
9153
+ * Returns a metadata object for class sap.f.GridList.
9154
+ */
9155
+ static getMetadata(): ElementMetadata;
8728
9156
  /**
8729
9157
  * Attaches event handler `fnFunction` to the {@link #event:borderReached borderReached} event of this `sap.f.GridList`.
8730
9158
  *
@@ -8786,27 +9214,6 @@ declare module "sap/f/GridList" {
8786
9214
  */
8787
9215
  oListener?: object
8788
9216
  ): this;
8789
- /**
8790
- * Creates a new subclass of class sap.f.GridList with name `sClassName` and enriches it with the information
8791
- * contained in `oClassInfo`.
8792
- *
8793
- * `oClassInfo` might contain the same kind of information as described in {@link sap.m.ListBase.extend}.
8794
- */
8795
- static extend<T extends Record<string, unknown>>(
8796
- /**
8797
- * Name of the class being created
8798
- */
8799
- sClassName: string,
8800
- /**
8801
- * Object literal with information about the class
8802
- */
8803
- oClassInfo?: sap.ClassInfo<T, GridList>,
8804
- /**
8805
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8806
- * used by this class
8807
- */
8808
- FNMetaImpl?: Function
8809
- ): Function;
8810
9217
  /**
8811
9218
  * Fires event {@link #event:borderReached borderReached} to attached listeners.
8812
9219
  */
@@ -8872,9 +9279,9 @@ declare module "sap/f/GridList" {
8872
9279
  */
8873
9280
  getGridDomRefs(): HTMLElement[];
8874
9281
  /**
8875
- * Returns a metadata object for class sap.f.GridList.
9282
+ * Implements IGridConfigurable interface.
8876
9283
  */
8877
- static getMetadata(): ElementMetadata;
9284
+ getGridLayoutConfiguration(): GridLayoutBase;
8878
9285
  /**
8879
9286
  * Sets the aggregated {@link #getCustomLayout customLayout}.
8880
9287
  */
@@ -8895,7 +9302,7 @@ declare module "sap/f/GridList" {
8895
9302
  /**
8896
9303
  * Fires if the border of the visualizations is reached so that an application can react on this.
8897
9304
  */
8898
- borderReached?: Function;
9305
+ borderReached?: (oEvent: Event) => void;
8899
9306
  }
8900
9307
  }
8901
9308
 
@@ -8951,6 +9358,31 @@ declare module "sap/f/GridListItem" {
8951
9358
  mSettings?: $GridListItemSettings
8952
9359
  );
8953
9360
 
9361
+ /**
9362
+ * Creates a new subclass of class sap.f.GridListItem with name `sClassName` and enriches it with the information
9363
+ * contained in `oClassInfo`.
9364
+ *
9365
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.ListItemBase.extend}.
9366
+ */
9367
+ static extend<T extends Record<string, unknown>>(
9368
+ /**
9369
+ * Name of the class being created
9370
+ */
9371
+ sClassName: string,
9372
+ /**
9373
+ * Object literal with information about the class
9374
+ */
9375
+ oClassInfo?: sap.ClassInfo<T, GridListItem>,
9376
+ /**
9377
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9378
+ * used by this class
9379
+ */
9380
+ FNMetaImpl?: Function
9381
+ ): Function;
9382
+ /**
9383
+ * Returns a metadata object for class sap.f.GridListItem.
9384
+ */
9385
+ static getMetadata(): ElementMetadata;
8954
9386
  /**
8955
9387
  * Adds some content to the aggregation {@link #getContent content}.
8956
9388
  */
@@ -8976,37 +9408,12 @@ declare module "sap/f/GridListItem" {
8976
9408
  * Destroys all the content in the aggregation {@link #getContent content}.
8977
9409
  */
8978
9410
  destroyContent(): this;
8979
- /**
8980
- * Creates a new subclass of class sap.f.GridListItem with name `sClassName` and enriches it with the information
8981
- * contained in `oClassInfo`.
8982
- *
8983
- * `oClassInfo` might contain the same kind of information as described in {@link sap.m.ListItemBase.extend}.
8984
- */
8985
- static extend<T extends Record<string, unknown>>(
8986
- /**
8987
- * Name of the class being created
8988
- */
8989
- sClassName: string,
8990
- /**
8991
- * Object literal with information about the class
8992
- */
8993
- oClassInfo?: sap.ClassInfo<T, GridListItem>,
8994
- /**
8995
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
8996
- * used by this class
8997
- */
8998
- FNMetaImpl?: Function
8999
- ): Function;
9000
9411
  /**
9001
9412
  * Gets content of aggregation {@link #getContent content}.
9002
9413
  *
9003
9414
  * The content of this list item
9004
9415
  */
9005
9416
  getContent(): Control[];
9006
- /**
9007
- * Returns a metadata object for class sap.f.GridListItem.
9008
- */
9009
- static getMetadata(): ElementMetadata;
9010
9417
  /**
9011
9418
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
9012
9419
  * its index if found or -1 otherwise.
@@ -9132,29 +9539,12 @@ declare module "sap/f/IllustratedMessage" {
9132
9539
  * ID for the new control, generated automatically if no ID is given
9133
9540
  */
9134
9541
  sId?: string,
9135
- /**
9136
- * Initial settings for the new control
9137
- */
9138
- mSettings?: $IllustratedMessageSettings
9139
- );
9140
-
9141
- /**
9142
- * @SINCE 1.88
9143
- *
9144
- * Adds some additionalContent to the aggregation {@link #getAdditionalContent additionalContent}.
9145
- */
9146
- addAdditionalContent(
9147
- /**
9148
- * The additionalContent to add; if empty, nothing is inserted
9149
- */
9150
- oAdditionalContent: Button
9151
- ): this;
9152
- /**
9153
- * @SINCE 1.88
9154
- *
9155
- * Destroys all the additionalContent in the aggregation {@link #getAdditionalContent additionalContent}.
9156
- */
9157
- destroyAdditionalContent(): this;
9542
+ /**
9543
+ * Initial settings for the new control
9544
+ */
9545
+ mSettings?: $IllustratedMessageSettings
9546
+ );
9547
+
9158
9548
  /**
9159
9549
  * Creates a new subclass of class sap.f.IllustratedMessage with name `sClassName` and enriches it with
9160
9550
  * the information contained in `oClassInfo`.
@@ -9176,6 +9566,27 @@ declare module "sap/f/IllustratedMessage" {
9176
9566
  */
9177
9567
  FNMetaImpl?: Function
9178
9568
  ): Function;
9569
+ /**
9570
+ * Returns a metadata object for class sap.f.IllustratedMessage.
9571
+ */
9572
+ static getMetadata(): ElementMetadata;
9573
+ /**
9574
+ * @SINCE 1.88
9575
+ *
9576
+ * Adds some additionalContent to the aggregation {@link #getAdditionalContent additionalContent}.
9577
+ */
9578
+ addAdditionalContent(
9579
+ /**
9580
+ * The additionalContent to add; if empty, nothing is inserted
9581
+ */
9582
+ oAdditionalContent: Button
9583
+ ): this;
9584
+ /**
9585
+ * @SINCE 1.88
9586
+ *
9587
+ * Destroys all the additionalContent in the aggregation {@link #getAdditionalContent additionalContent}.
9588
+ */
9589
+ destroyAdditionalContent(): this;
9179
9590
  /**
9180
9591
  * @SINCE 1.88
9181
9592
  *
@@ -9245,10 +9656,6 @@ declare module "sap/f/IllustratedMessage" {
9245
9656
  * Default value is `IllustratedMessageType.NoSearchResults`.
9246
9657
  */
9247
9658
  getIllustrationType(): string;
9248
- /**
9249
- * Returns a metadata object for class sap.f.IllustratedMessage.
9250
- */
9251
- static getMetadata(): ElementMetadata;
9252
9659
  /**
9253
9660
  * @SINCE 1.88
9254
9661
  *
@@ -9532,6 +9939,10 @@ declare module "sap/f/Illustration" {
9532
9939
  */
9533
9940
  FNMetaImpl?: Function
9534
9941
  ): Function;
9942
+ /**
9943
+ * Returns a metadata object for class sap.f.Illustration.
9944
+ */
9945
+ static getMetadata(): ElementMetadata;
9535
9946
  /**
9536
9947
  * @SINCE 1.88
9537
9948
  *
@@ -9540,10 +9951,6 @@ declare module "sap/f/Illustration" {
9540
9951
  * Defines which media/breakpoint should be used when building the Symbol ID.
9541
9952
  */
9542
9953
  getMedia(): string;
9543
- /**
9544
- * Returns a metadata object for class sap.f.Illustration.
9545
- */
9546
- static getMetadata(): ElementMetadata;
9547
9954
  /**
9548
9955
  * @SINCE 1.88
9549
9956
  *
@@ -9752,6 +10159,31 @@ declare module "sap/f/ProductSwitch" {
9752
10159
  mSettings?: $ProductSwitchSettings
9753
10160
  );
9754
10161
 
10162
+ /**
10163
+ * Creates a new subclass of class sap.f.ProductSwitch with name `sClassName` and enriches it with the information
10164
+ * contained in `oClassInfo`.
10165
+ *
10166
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
10167
+ */
10168
+ static extend<T extends Record<string, unknown>>(
10169
+ /**
10170
+ * Name of the class being created
10171
+ */
10172
+ sClassName: string,
10173
+ /**
10174
+ * Object literal with information about the class
10175
+ */
10176
+ oClassInfo?: sap.ClassInfo<T, ProductSwitch>,
10177
+ /**
10178
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10179
+ * used by this class
10180
+ */
10181
+ FNMetaImpl?: Function
10182
+ ): Function;
10183
+ /**
10184
+ * Returns a metadata object for class sap.f.ProductSwitch.
10185
+ */
10186
+ static getMetadata(): ElementMetadata;
9755
10187
  /**
9756
10188
  * Adds some item to the aggregation {@link #getItems items}.
9757
10189
  */
@@ -9821,27 +10253,6 @@ declare module "sap/f/ProductSwitch" {
9821
10253
  */
9822
10254
  oListener?: object
9823
10255
  ): this;
9824
- /**
9825
- * Creates a new subclass of class sap.f.ProductSwitch with name `sClassName` and enriches it with the information
9826
- * contained in `oClassInfo`.
9827
- *
9828
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
9829
- */
9830
- static extend<T extends Record<string, unknown>>(
9831
- /**
9832
- * Name of the class being created
9833
- */
9834
- sClassName: string,
9835
- /**
9836
- * Object literal with information about the class
9837
- */
9838
- oClassInfo?: sap.ClassInfo<T, ProductSwitch>,
9839
- /**
9840
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
9841
- * used by this class
9842
- */
9843
- FNMetaImpl?: Function
9844
- ): Function;
9845
10256
  /**
9846
10257
  * Fires event {@link #event:change change} to attached listeners.
9847
10258
  */
@@ -9862,10 +10273,6 @@ declare module "sap/f/ProductSwitch" {
9862
10273
  * `ProductSwitch` content.
9863
10274
  */
9864
10275
  getItems(): ProductSwitchItem[];
9865
- /**
9866
- * Returns a metadata object for class sap.f.ProductSwitch.
9867
- */
9868
- static getMetadata(): ElementMetadata;
9869
10276
  /**
9870
10277
  * ID of the element which is the current target of the association {@link #getSelectedItem selectedItem},
9871
10278
  * or `null`.
@@ -9938,7 +10345,7 @@ declare module "sap/f/ProductSwitch" {
9938
10345
  /**
9939
10346
  * Fires when an unselected item is pressed.
9940
10347
  */
9941
- change?: Function;
10348
+ change?: (oEvent: Event) => void;
9942
10349
  }
9943
10350
  }
9944
10351
 
@@ -10171,8 +10578,10 @@ declare module "sap/f/routing/Router" {
10171
10578
  * The difference to the `{@link sap.ui.core.routing.Router}` are the `viewLevel`, `transition`, and `transitionParameters`
10172
10579
  * properties that you can specify in every Route or Target created by this router.
10173
10580
  *
10174
- * Additionally, the `layout` property can be specified in every Route, in which case it is applied to the
10175
- * root control.
10581
+ * The difference to the `{@link sap.m.routing.Router}` is the additional `layout` property that can be
10582
+ * specified in every Route, in which case it is applied to the root control. Also, the `sap.f.routing.Router`
10583
+ * supports navigations that involve both change of `{@link sap.f.LayoutType}` and change of the current
10584
+ * page within a single column of the `sap.f.FlexibleColumnLayout`.
10176
10585
  *
10177
10586
  * See `{@link sap.ui.core.routing.Router}` for the constructor arguments.
10178
10587
  */
@@ -10276,14 +10685,14 @@ declare module "sap/f/routing/TargetHandler" {
10276
10685
  */
10277
10686
  FNMetaImpl?: Function
10278
10687
  ): Function;
10279
- /**
10280
- * Gets if a navigation should close dialogs.
10281
- */
10282
- getCloseDialogs(): boolean;
10283
10688
  /**
10284
10689
  * Returns a metadata object for class sap.f.routing.TargetHandler.
10285
10690
  */
10286
10691
  static getMetadata(): Metadata;
10692
+ /**
10693
+ * Gets if a navigation should close dialogs.
10694
+ */
10695
+ getCloseDialogs(): boolean;
10287
10696
  /**
10288
10697
  * Sets if a navigation should close dialogs.
10289
10698
  */
@@ -10766,6 +11175,31 @@ declare module "sap/f/SearchManager" {
10766
11175
  mSettings?: $SearchManagerSettings
10767
11176
  );
10768
11177
 
11178
+ /**
11179
+ * Creates a new subclass of class sap.f.SearchManager with name `sClassName` and enriches it with the information
11180
+ * contained in `oClassInfo`.
11181
+ *
11182
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
11183
+ */
11184
+ static extend<T extends Record<string, unknown>>(
11185
+ /**
11186
+ * Name of the class being created
11187
+ */
11188
+ sClassName: string,
11189
+ /**
11190
+ * Object literal with information about the class
11191
+ */
11192
+ oClassInfo?: sap.ClassInfo<T, SearchManager>,
11193
+ /**
11194
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
11195
+ * used by this class
11196
+ */
11197
+ FNMetaImpl?: Function
11198
+ ): Function;
11199
+ /**
11200
+ * Returns a metadata object for class sap.f.SearchManager.
11201
+ */
11202
+ static getMetadata(): ElementMetadata;
10769
11203
  /**
10770
11204
  * Adds some suggestionItem to the aggregation {@link #getSuggestionItems suggestionItems}.
10771
11205
  */
@@ -10967,27 +11401,6 @@ declare module "sap/f/SearchManager" {
10967
11401
  */
10968
11402
  oListener?: object
10969
11403
  ): this;
10970
- /**
10971
- * Creates a new subclass of class sap.f.SearchManager with name `sClassName` and enriches it with the information
10972
- * contained in `oClassInfo`.
10973
- *
10974
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
10975
- */
10976
- static extend<T extends Record<string, unknown>>(
10977
- /**
10978
- * Name of the class being created
10979
- */
10980
- sClassName: string,
10981
- /**
10982
- * Object literal with information about the class
10983
- */
10984
- oClassInfo?: sap.ClassInfo<T, SearchManager>,
10985
- /**
10986
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10987
- * used by this class
10988
- */
10989
- FNMetaImpl?: Function
10990
- ): Function;
10991
11404
  /**
10992
11405
  * Fires event {@link #event:liveChange liveChange} to attached listeners.
10993
11406
  */
@@ -11059,10 +11472,6 @@ declare module "sap/f/SearchManager" {
11059
11472
  * Default value is `0`.
11060
11473
  */
11061
11474
  getMaxLength(): int;
11062
- /**
11063
- * Returns a metadata object for class sap.f.SearchManager.
11064
- */
11065
- static getMetadata(): ElementMetadata;
11066
11475
  /**
11067
11476
  * Gets current value of property {@link #getPlaceholder placeholder}.
11068
11477
  *
@@ -11250,21 +11659,21 @@ declare module "sap/f/SearchManager" {
11250
11659
  /**
11251
11660
  * Fired when the user triggers a search.
11252
11661
  */
11253
- search?: Function;
11662
+ search?: (oEvent: Event) => void;
11254
11663
 
11255
11664
  /**
11256
11665
  * Fired when the value of the search field is changed by the user, for example at each key press.
11257
11666
  *
11258
11667
  * **Note:** Do not invalidate or re-render a focused search field, especially during the `liveChange` event.
11259
11668
  */
11260
- liveChange?: Function;
11669
+ liveChange?: (oEvent: Event) => void;
11261
11670
 
11262
11671
  /**
11263
11672
  * Fired when the search field is initially focused or its value is changed by the user. This event means
11264
11673
  * that suggestion data should be updated, in case if suggestions are used. Use the value parameter to create
11265
11674
  * new suggestions for it.
11266
11675
  */
11267
- suggest?: Function;
11676
+ suggest?: (oEvent: Event) => void;
11268
11677
  }
11269
11678
  }
11270
11679
 
@@ -13019,6 +13428,31 @@ declare module "sap/f/semantic/SemanticPage" {
13019
13428
  mSettings?: $SemanticPageSettings
13020
13429
  );
13021
13430
 
13431
+ /**
13432
+ * Creates a new subclass of class sap.f.semantic.SemanticPage with name `sClassName` and enriches it with
13433
+ * the information contained in `oClassInfo`.
13434
+ *
13435
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
13436
+ */
13437
+ static extend<T extends Record<string, unknown>>(
13438
+ /**
13439
+ * Name of the class being created
13440
+ */
13441
+ sClassName: string,
13442
+ /**
13443
+ * Object literal with information about the class
13444
+ */
13445
+ oClassInfo?: sap.ClassInfo<T, SemanticPage>,
13446
+ /**
13447
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13448
+ * used by this class
13449
+ */
13450
+ FNMetaImpl?: Function
13451
+ ): Function;
13452
+ /**
13453
+ * Returns a metadata object for class sap.f.semantic.SemanticPage.
13454
+ */
13455
+ static getMetadata(): ElementMetadata;
13022
13456
  /**
13023
13457
  * Adds some customShareAction to the aggregation {@link #getCustomShareActions customShareActions}.
13024
13458
  */
@@ -13251,27 +13685,6 @@ declare module "sap/f/semantic/SemanticPage" {
13251
13685
  * Destroys the titleSnappedOnMobile in the aggregation {@link #getTitleSnappedOnMobile titleSnappedOnMobile}.
13252
13686
  */
13253
13687
  destroyTitleSnappedOnMobile(): this;
13254
- /**
13255
- * Creates a new subclass of class sap.f.semantic.SemanticPage with name `sClassName` and enriches it with
13256
- * the information contained in `oClassInfo`.
13257
- *
13258
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
13259
- */
13260
- static extend<T extends Record<string, unknown>>(
13261
- /**
13262
- * Name of the class being created
13263
- */
13264
- sClassName: string,
13265
- /**
13266
- * Object literal with information about the class
13267
- */
13268
- oClassInfo?: sap.ClassInfo<T, SemanticPage>,
13269
- /**
13270
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
13271
- * used by this class
13272
- */
13273
- FNMetaImpl?: Function
13274
- ): Function;
13275
13688
  /**
13276
13689
  * Gets content of aggregation {@link #getAddAction addAction}.
13277
13690
  *
@@ -13333,6 +13746,8 @@ declare module "sap/f/semantic/SemanticPage" {
13333
13746
  * The `customShareActions` are placed in the `ShareMenu` area of the `SemanticPage` title, right after
13334
13747
  * the semantic actions.
13335
13748
  *
13749
+ * The text and icon of the button inside the `customShareActions` aggregation, can be customized.
13750
+ *
13336
13751
  * **Note:** If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when
13337
13752
  * the control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
13338
13753
  * state.
@@ -13493,10 +13908,6 @@ declare module "sap/f/semantic/SemanticPage" {
13493
13908
  * first action.
13494
13909
  */
13495
13910
  getMessagesIndicator(): MessagesIndicator;
13496
- /**
13497
- * Returns a metadata object for class sap.f.semantic.SemanticPage.
13498
- */
13499
- static getMetadata(): ElementMetadata;
13500
13911
  /**
13501
13912
  * Gets content of aggregation {@link #getNegativeAction negativeAction}.
13502
13913
  *
@@ -15009,6 +15420,8 @@ declare module "sap/f/semantic/SemanticPage" {
15009
15420
  * The `customShareActions` are placed in the `ShareMenu` area of the `SemanticPage` title, right after
15010
15421
  * the semantic actions.
15011
15422
  *
15423
+ * The text and icon of the button inside the `customShareActions` aggregation, can be customized.
15424
+ *
15012
15425
  * **Note:** If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when
15013
15426
  * the control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
15014
15427
  * state.
@@ -15525,13 +15938,32 @@ declare module "sap/f/ShellBar" {
15525
15938
  */
15526
15939
  mSettings?: $ShellBarSettings
15527
15940
  );
15941
+
15528
15942
  /**
15529
- * @SINCE 1.65
15943
+ * Creates a new subclass of class sap.f.ShellBar with name `sClassName` and enriches it with the information
15944
+ * contained in `oClassInfo`.
15530
15945
  *
15531
- * Gets the available Bar contexts.
15946
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
15532
15947
  */
15533
- getContext: undefined;
15534
-
15948
+ static extend<T extends Record<string, unknown>>(
15949
+ /**
15950
+ * Name of the class being created
15951
+ */
15952
+ sClassName: string,
15953
+ /**
15954
+ * Object literal with information about the class
15955
+ */
15956
+ oClassInfo?: sap.ClassInfo<T, ShellBar>,
15957
+ /**
15958
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15959
+ * used by this class
15960
+ */
15961
+ FNMetaImpl?: Function
15962
+ ): Function;
15963
+ /**
15964
+ * Returns a metadata object for class sap.f.ShellBar.
15965
+ */
15966
+ static getMetadata(): ElementMetadata;
15535
15967
  /**
15536
15968
  * @SINCE 1.65
15537
15969
  *
@@ -16048,27 +16480,6 @@ declare module "sap/f/ShellBar" {
16048
16480
  */
16049
16481
  oListener?: object
16050
16482
  ): this;
16051
- /**
16052
- * Creates a new subclass of class sap.f.ShellBar with name `sClassName` and enriches it with the information
16053
- * contained in `oClassInfo`.
16054
- *
16055
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
16056
- */
16057
- static extend<T extends Record<string, unknown>>(
16058
- /**
16059
- * Name of the class being created
16060
- */
16061
- sClassName: string,
16062
- /**
16063
- * Object literal with information about the class
16064
- */
16065
- oClassInfo?: sap.ClassInfo<T, ShellBar>,
16066
- /**
16067
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16068
- * used by this class
16069
- */
16070
- FNMetaImpl?: Function
16071
- ): Function;
16072
16483
  /**
16073
16484
  * Fires event {@link #event:avatarPressed avatarPressed} to attached listeners.
16074
16485
  */
@@ -16189,6 +16600,12 @@ declare module "sap/f/ShellBar" {
16189
16600
  * **Note:** Only controls implementing the `{@link sap.f.IShellBar}` interface are allowed.
16190
16601
  */
16191
16602
  getAdditionalContent(): IShellBar[];
16603
+ /**
16604
+ * @SINCE 1.65
16605
+ *
16606
+ * Gets the available Bar contexts.
16607
+ */
16608
+ getContext(): Object;
16192
16609
  /**
16193
16610
  * Gets current value of property {@link #getHomeIcon homeIcon}.
16194
16611
  *
@@ -16219,10 +16636,6 @@ declare module "sap/f/ShellBar" {
16219
16636
  * The menu attached to the main title.
16220
16637
  */
16221
16638
  getMenu(): Menu;
16222
- /**
16223
- * Returns a metadata object for class sap.f.ShellBar.
16224
- */
16225
- static getMetadata(): ElementMetadata;
16226
16639
  /**
16227
16640
  * @SINCE 1.64
16228
16641
  *
@@ -16640,42 +17053,42 @@ declare module "sap/f/ShellBar" {
16640
17053
  /**
16641
17054
  * Fired when the `homeIcon` is pressed.
16642
17055
  */
16643
- homeIconPressed?: Function;
17056
+ homeIconPressed?: (oEvent: Event) => void;
16644
17057
 
16645
17058
  /**
16646
17059
  * Fired when the alternative menu button is pressed.
16647
17060
  */
16648
- menuButtonPressed?: Function;
17061
+ menuButtonPressed?: (oEvent: Event) => void;
16649
17062
 
16650
17063
  /**
16651
17064
  * Fired when the navigation/back button is pressed.
16652
17065
  */
16653
- navButtonPressed?: Function;
17066
+ navButtonPressed?: (oEvent: Event) => void;
16654
17067
 
16655
17068
  /**
16656
17069
  * Fired when the SAP CoPilot icon is pressed.
16657
17070
  */
16658
- copilotPressed?: Function;
17071
+ copilotPressed?: (oEvent: Event) => void;
16659
17072
 
16660
17073
  /**
16661
17074
  * Fired when the search button is pressed.
16662
17075
  */
16663
- searchButtonPressed?: Function;
17076
+ searchButtonPressed?: (oEvent: Event) => void;
16664
17077
 
16665
17078
  /**
16666
17079
  * Fired when the notifications button is pressed.
16667
17080
  */
16668
- notificationsPressed?: Function;
17081
+ notificationsPressed?: (oEvent: Event) => void;
16669
17082
 
16670
17083
  /**
16671
17084
  * Fired when the product switcher button is pressed.
16672
17085
  */
16673
- productSwitcherPressed?: Function;
17086
+ productSwitcherPressed?: (oEvent: Event) => void;
16674
17087
 
16675
17088
  /**
16676
17089
  * Fired when the profile avatar is pressed.
16677
17090
  */
16678
- avatarPressed?: Function;
17091
+ avatarPressed?: (oEvent: Event) => void;
16679
17092
  }
16680
17093
  }
16681
17094
 
@@ -16711,6 +17124,8 @@ declare namespace sap {
16711
17124
 
16712
17125
  "sap/f/FlexibleColumnLayout": undefined;
16713
17126
 
17127
+ "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo": undefined;
17128
+
16714
17129
  "sap/f/FlexibleColumnLayoutSemanticHelper": undefined;
16715
17130
 
16716
17131
  "sap/f/GridContainer": undefined;