@openui5/types 1.115.0 → 1.116.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.116.0
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**
@@ -28,7 +28,7 @@ declare module "sap/uxap/library" {
28
28
  OneColumn = "OneColumn",
29
29
  }
30
30
  /**
31
- * @SINCE 1.52
31
+ * @since 1.52
32
32
  *
33
33
  * Interface for controls that are eligible for the `headerContent` aggregation of the `{@link sap.uxap.ObjectPageLayout}`.
34
34
  *
@@ -49,7 +49,7 @@ declare module "sap/uxap/library" {
49
49
  }
50
50
 
51
51
  /**
52
- * @SINCE 1.52
52
+ * @since 1.52
53
53
  *
54
54
  * Interface for controls that are eligible for the `headerTitle` aggregation of the `{@link sap.uxap.ObjectPageLayout}`.
55
55
  *
@@ -69,7 +69,7 @@ declare module "sap/uxap/library" {
69
69
  }
70
70
 
71
71
  /**
72
- * @SINCE 1.32.0
72
+ * @since 1.32.0
73
73
  *
74
74
  * Used by the `ObjectSectionBase` control to define the importance of the content contained in it.
75
75
  */
@@ -172,7 +172,7 @@ declare module "sap/uxap/AnchorBar" {
172
172
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
173
173
 
174
174
  /**
175
- * @SINCE 1.26
175
+ * @since 1.26
176
176
  *
177
177
  * Displays the titles of the sections and subsections in the {@link sap.uxap.ObjectPageLayout ObjectPageLayout }
178
178
  * and allows the user to scroll to the respective content.
@@ -183,7 +183,7 @@ declare module "sap/uxap/AnchorBar" {
183
183
  * and subsections and allows the user to directly scroll to the respective content by selecting them, while
184
184
  * it remains visible at the top of the page (below the page header).
185
185
  */
186
- class AnchorBar extends Toolbar {
186
+ export default class AnchorBar extends Toolbar {
187
187
  /**
188
188
  * Constructor for a new `AnchorBar`.
189
189
  *
@@ -249,7 +249,7 @@ declare module "sap/uxap/AnchorBar" {
249
249
  */
250
250
  static getMetadata(): ElementMetadata;
251
251
  /**
252
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
252
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
253
253
  *
254
254
  * This method is a hook for the RenderManager that gets called during the rendering of child Controls.
255
255
  * It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
@@ -265,7 +265,7 @@ declare module "sap/uxap/AnchorBar" {
265
265
  mAriaProps: object
266
266
  ): void;
267
267
  /**
268
- * @SINCE 1.58
268
+ * @since 1.58
269
269
  *
270
270
  * Gets current value of property {@link #getBackgroundDesign backgroundDesign}.
271
271
  *
@@ -327,7 +327,7 @@ declare module "sap/uxap/AnchorBar" {
327
327
  iDuration?: int
328
328
  ): void;
329
329
  /**
330
- * @SINCE 1.58
330
+ * @since 1.58
331
331
  *
332
332
  * Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
333
333
  *
@@ -394,7 +394,6 @@ declare module "sap/uxap/AnchorBar" {
394
394
  bUpperCase?: boolean
395
395
  ): this;
396
396
  }
397
- export default AnchorBar;
398
397
 
399
398
  export interface $AnchorBarSettings extends $ToolbarSettings {
400
399
  /**
@@ -409,7 +408,7 @@ declare module "sap/uxap/AnchorBar" {
409
408
  upperCase?: boolean | PropertyBindingInfo | `{${string}}`;
410
409
 
411
410
  /**
412
- * @SINCE 1.58
411
+ * @since 1.58
413
412
  *
414
413
  * Determines the background color of the `AnchorBar`.
415
414
  *
@@ -433,8 +432,6 @@ declare module "sap/uxap/BlockBase" {
433
432
 
434
433
  import ModelMapping from "sap/uxap/ModelMapping";
435
434
 
436
- import Event from "sap/ui/base/Event";
437
-
438
435
  import View from "sap/ui/core/mvc/View";
439
436
 
440
437
  import {
@@ -451,8 +448,10 @@ declare module "sap/uxap/BlockBase" {
451
448
  AggregationBindingInfo,
452
449
  } from "sap/ui/base/ManagedObject";
453
450
 
451
+ import Event from "sap/ui/base/Event";
452
+
454
453
  /**
455
- * @SINCE 1.26
454
+ * @since 1.26
456
455
  *
457
456
  * The main element that holds the content that is displayed in an {@link sap.uxap.ObjectPageLayout ObjectPageLayout},
458
457
  * but not necessarily only there.
@@ -471,7 +470,7 @@ declare module "sap/uxap/BlockBase" {
471
470
  * in `onParentBlockModeChange` method. If the controller implements the `onParentBlockModeChange` method,
472
471
  * this method will be called with the `sMode` parameter when the view is used or reused by the block.
473
472
  */
474
- class BlockBase extends Control {
473
+ export default class BlockBase extends Control {
475
474
  /**
476
475
  * Constructor for a new `BlockBase`.
477
476
  *
@@ -550,7 +549,7 @@ declare module "sap/uxap/BlockBase" {
550
549
  oMapping: ModelMapping
551
550
  ): this;
552
551
  /**
553
- * @SINCE 1.72
552
+ * @since 1.72
554
553
  *
555
554
  * Attaches event handler `fnFunction` to the {@link #event:viewInit viewInit} event of this `sap.uxap.BlockBase`.
556
555
  *
@@ -570,14 +569,14 @@ declare module "sap/uxap/BlockBase" {
570
569
  /**
571
570
  * The function to be called when the event occurs
572
571
  */
573
- fnFunction: (p1: Event<$BlockBaseViewInitEventParameters>) => void,
572
+ fnFunction: (p1: BlockBase$ViewInitEvent) => void,
574
573
  /**
575
574
  * Context object to call the event handler with. Defaults to this `sap.uxap.BlockBase` itself
576
575
  */
577
576
  oListener?: object
578
577
  ): this;
579
578
  /**
580
- * @SINCE 1.72
579
+ * @since 1.72
581
580
  *
582
581
  * Attaches event handler `fnFunction` to the {@link #event:viewInit viewInit} event of this `sap.uxap.BlockBase`.
583
582
  *
@@ -592,14 +591,14 @@ declare module "sap/uxap/BlockBase" {
592
591
  /**
593
592
  * The function to be called when the event occurs
594
593
  */
595
- fnFunction: (p1: Event<$BlockBaseViewInitEventParameters>) => void,
594
+ fnFunction: (p1: BlockBase$ViewInitEvent) => void,
596
595
  /**
597
596
  * Context object to call the event handler with. Defaults to this `sap.uxap.BlockBase` itself
598
597
  */
599
598
  oListener?: object
600
599
  ): this;
601
600
  /**
602
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
601
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
603
602
  *
604
603
  * Creates a view.
605
604
  *
@@ -622,7 +621,7 @@ declare module "sap/uxap/BlockBase" {
622
621
  */
623
622
  destroyMappings(): this;
624
623
  /**
625
- * @SINCE 1.72
624
+ * @since 1.72
626
625
  *
627
626
  * Detaches event handler `fnFunction` from the {@link #event:viewInit viewInit} event of this `sap.uxap.BlockBase`.
628
627
  *
@@ -634,15 +633,15 @@ declare module "sap/uxap/BlockBase" {
634
633
  /**
635
634
  * The function to be called, when the event occurs
636
635
  */
637
- fnFunction: (p1: Event<$BlockBaseViewInitEventParameters>) => void,
636
+ fnFunction: (p1: BlockBase$ViewInitEvent) => void,
638
637
  /**
639
638
  * Context object on which the given function had to be called
640
639
  */
641
640
  oListener?: object
642
641
  ): this;
643
642
  /**
644
- * @SINCE 1.72
645
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
643
+ * @since 1.72
644
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
646
645
  *
647
646
  * Fires event {@link #event:viewInit viewInit} to attached listeners.
648
647
  *
@@ -652,7 +651,7 @@ declare module "sap/uxap/BlockBase" {
652
651
  /**
653
652
  * Parameters to pass along with the event
654
653
  */
655
- mParameters?: $BlockBaseViewInitEventParameters
654
+ mParameters?: BlockBase$ViewInitEventParameters
656
655
  ): this;
657
656
  /**
658
657
  * Gets current value of property {@link #getColumnLayout columnLayout}.
@@ -869,7 +868,6 @@ declare module "sap/uxap/BlockBase" {
869
868
  bVisible?: boolean
870
869
  ): this;
871
870
  }
872
- export default BlockBase;
873
871
 
874
872
  export interface $BlockBaseSettings extends $ControlSettings {
875
873
  /**
@@ -931,19 +929,21 @@ declare module "sap/uxap/BlockBase" {
931
929
  selectedView?: Control | string;
932
930
 
933
931
  /**
934
- * @SINCE 1.72
932
+ * @since 1.72
935
933
  *
936
934
  * Fired when an aggregated view is instantiated.
937
935
  */
938
- viewInit?: (oEvent: Event<$BlockBaseViewInitEventParameters>) => void;
936
+ viewInit?: (oEvent: BlockBase$ViewInitEvent) => void;
939
937
  }
940
938
 
941
- export interface $BlockBaseViewInitEventParameters {
939
+ export interface BlockBase$ViewInitEventParameters {
942
940
  /**
943
941
  * The initialized view.
944
942
  */
945
943
  view?: View;
946
944
  }
945
+
946
+ export type BlockBase$ViewInitEvent = Event<BlockBase$ViewInitEventParameters>;
947
947
  }
948
948
 
949
949
  declare module "sap/uxap/BreadCrumbs" {
@@ -961,7 +961,7 @@ declare module "sap/uxap/BreadCrumbs" {
961
961
  } from "sap/ui/base/ManagedObject";
962
962
 
963
963
  /**
964
- * @SINCE 1.30
964
+ * @since 1.30
965
965
  *
966
966
  * Represents the navigation steps up to the current location in the app.
967
967
  *
@@ -975,7 +975,7 @@ declare module "sap/uxap/BreadCrumbs" {
975
975
  * line.
976
976
  * - A dropdown list with the links, when the trail of links wouldn't fit on one line.
977
977
  */
978
- class BreadCrumbs extends Control {
978
+ export default class BreadCrumbs extends Control {
979
979
  /**
980
980
  * Constructor for a new `BreadCrumbs`.
981
981
  *
@@ -1158,7 +1158,6 @@ declare module "sap/uxap/BreadCrumbs" {
1158
1158
  bShowCurrentLocation?: boolean
1159
1159
  ): this;
1160
1160
  }
1161
- export default BreadCrumbs;
1162
1161
 
1163
1162
  export interface $BreadCrumbsSettings extends $ControlSettings {
1164
1163
  /**
@@ -1186,14 +1185,14 @@ declare module "sap/uxap/HierarchicalSelect" {
1186
1185
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
1187
1186
 
1188
1187
  /**
1189
- * @SINCE 1.26
1188
+ * @since 1.26
1190
1189
  *
1191
1190
  * A select that displays items on a hierarchy of 2 levels.
1192
1191
  *
1193
1192
  * If a provided item has a custom data named `secondLevel`, then it will be displayed as a second level,
1194
1193
  * otherwise it would be displayed as a first level.
1195
1194
  */
1196
- class HierarchicalSelect extends Select {
1195
+ export default class HierarchicalSelect extends Select {
1197
1196
  /**
1198
1197
  * Constructor for a new `HierarchicalSelect`.
1199
1198
  *
@@ -1282,7 +1281,6 @@ declare module "sap/uxap/HierarchicalSelect" {
1282
1281
  bUpperCase?: boolean
1283
1282
  ): this;
1284
1283
  }
1285
- export default HierarchicalSelect;
1286
1284
 
1287
1285
  export interface $HierarchicalSelectSettings extends $SelectSettings {
1288
1286
  /**
@@ -1300,11 +1298,11 @@ declare module "sap/uxap/ModelMapping" {
1300
1298
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
1301
1299
 
1302
1300
  /**
1303
- * @SINCE 1.26
1301
+ * @since 1.26
1304
1302
  *
1305
1303
  * Defines the entity that will be passed to the {@link sap.uxap.ObjectPageLayout}.
1306
1304
  */
1307
- class ModelMapping extends UI5Element {
1305
+ export default class ModelMapping extends UI5Element {
1308
1306
  /**
1309
1307
  * Constructor for a new `ModelMapping`.
1310
1308
  *
@@ -1439,7 +1437,6 @@ declare module "sap/uxap/ModelMapping" {
1439
1437
  sInternalModelName?: string
1440
1438
  ): this;
1441
1439
  }
1442
- export default ModelMapping;
1443
1440
 
1444
1441
  export interface $ModelMappingSettings extends $ElementSettings {
1445
1442
  /**
@@ -1469,13 +1466,13 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
1469
1466
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
1470
1467
 
1471
1468
  /**
1472
- * @SINCE 1.61
1469
+ * @since 1.61
1473
1470
  *
1474
1471
  * Settings for accessible landmarks which can be applied to the container elements of a `sap.uxap.ObjectPageLayout`
1475
1472
  * control. These landmarks are used by assistive technologies (such as screenreaders) to provide a meaningful
1476
1473
  * page overview.
1477
1474
  */
1478
- class ObjectPageAccessibleLandmarkInfo extends UI5Element {
1475
+ export default class ObjectPageAccessibleLandmarkInfo extends UI5Element {
1479
1476
  /**
1480
1477
  * Constructor for a new `sap.uxap.ObjectPageAccessibleLandmarkInfo` element.
1481
1478
  *
@@ -1859,7 +1856,6 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
1859
1856
  sRootRole?: AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole
1860
1857
  ): this;
1861
1858
  }
1862
- export default ObjectPageAccessibleLandmarkInfo;
1863
1859
 
1864
1860
  export interface $ObjectPageAccessibleLandmarkInfoSettings
1865
1861
  extends $ElementSettings {
@@ -1971,7 +1967,7 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
1971
1967
  import ElementMetadata from "sap/ui/core/ElementMetadata";
1972
1968
 
1973
1969
  /**
1974
- * @SINCE 1.52
1970
+ * @since 1.52
1975
1971
  *
1976
1972
  * Header content for the dynamic header of the {@link sap.uxap.ObjectPageLayout}.
1977
1973
  *
@@ -1986,7 +1982,7 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
1986
1982
  * - {@link https://ui5.sap.com/#/topic/d2ef0099542d44dc868719d908e576d0 Object Page Headers}
1987
1983
  * - {@link https://ui5.sap.com/#/topic/6e340c119ddd4c778b315f65a0432420 Object Page Dynamic Header}
1988
1984
  */
1989
- class ObjectPageDynamicHeaderContent
1985
+ export default class ObjectPageDynamicHeaderContent
1990
1986
  extends DynamicPageHeader
1991
1987
  implements IHeaderContent {
1992
1988
  __implements__sap_uxap_IHeaderContent: boolean;
@@ -2057,7 +2053,6 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
2057
2053
  */
2058
2054
  static getMetadata(): ElementMetadata;
2059
2055
  }
2060
- export default ObjectPageDynamicHeaderContent;
2061
2056
 
2062
2057
  export interface $ObjectPageDynamicHeaderContentSettings
2063
2058
  extends $DynamicPageHeaderSettings {}
@@ -2074,7 +2069,7 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
2074
2069
  import ElementMetadata from "sap/ui/core/ElementMetadata";
2075
2070
 
2076
2071
  /**
2077
- * @SINCE 1.52
2072
+ * @since 1.52
2078
2073
  *
2079
2074
  * Represents the static part (header title) of the dynamic header of the {@link sap.uxap.ObjectPageLayout}.
2080
2075
  *
@@ -2086,7 +2081,7 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
2086
2081
  * **Note:** The `ObjectPageDynamicHeaderTitle` is meant to be used inside the `ObjectPageLayout` control.
2087
2082
  * Any other usage is not supported and can lead to unexpected behavior.
2088
2083
  */
2089
- class ObjectPageDynamicHeaderTitle
2084
+ export default class ObjectPageDynamicHeaderTitle
2090
2085
  extends DynamicPageTitle
2091
2086
  implements IHeaderTitle {
2092
2087
  __implements__sap_uxap_IHeaderTitle: boolean;
@@ -2165,7 +2160,6 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
2165
2160
  */
2166
2161
  static getMetadata(): ElementMetadata;
2167
2162
  }
2168
- export default ObjectPageDynamicHeaderTitle;
2169
2163
 
2170
2164
  export interface $ObjectPageDynamicHeaderTitleSettings
2171
2165
  extends $DynamicPageTitleSettings {}
@@ -2178,8 +2172,6 @@ declare module "sap/uxap/ObjectPageHeader" {
2178
2172
 
2179
2173
  import Link from "sap/m/Link";
2180
2174
 
2181
- import Event from "sap/ui/base/Event";
2182
-
2183
2175
  import Breadcrumbs from "sap/m/Breadcrumbs";
2184
2176
 
2185
2177
  import ElementMetadata from "sap/ui/core/ElementMetadata";
@@ -2199,8 +2191,10 @@ declare module "sap/uxap/ObjectPageHeader" {
2199
2191
  AggregationBindingInfo,
2200
2192
  } from "sap/ui/base/ManagedObject";
2201
2193
 
2194
+ import Event from "sap/ui/base/Event";
2195
+
2202
2196
  /**
2203
- * @SINCE 1.26
2197
+ * @since 1.26
2204
2198
  *
2205
2199
  * Represents the static part (header title) of the classic header of the {@link sap.uxap.ObjectPageLayout}.
2206
2200
  *
@@ -2212,7 +2206,9 @@ declare module "sap/uxap/ObjectPageHeader" {
2212
2206
  * **Note:** The `ObjectPageHeader` is meant to be used inside the `ObjectPageLayout` control. Any other
2213
2207
  * usage is not supported and can lead to unexpected behavior.
2214
2208
  */
2215
- class ObjectPageHeader extends Control implements IHeaderTitle {
2209
+ export default class ObjectPageHeader
2210
+ extends Control
2211
+ implements IHeaderTitle {
2216
2212
  __implements__sap_uxap_IHeaderTitle: boolean;
2217
2213
  /**
2218
2214
  * Constructor for a new `ObjectPageHeader`.
@@ -2330,9 +2326,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2330
2326
  /**
2331
2327
  * The function to be called when the event occurs
2332
2328
  */
2333
- fnFunction: (
2334
- p1: Event<$ObjectPageHeaderMarkChangesPressEventParameters>
2335
- ) => void,
2329
+ fnFunction: (p1: ObjectPageHeader$MarkChangesPressEvent) => void,
2336
2330
  /**
2337
2331
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageHeader` itself
2338
2332
  */
@@ -2353,9 +2347,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2353
2347
  /**
2354
2348
  * The function to be called when the event occurs
2355
2349
  */
2356
- fnFunction: (
2357
- p1: Event<$ObjectPageHeaderMarkChangesPressEventParameters>
2358
- ) => void,
2350
+ fnFunction: (p1: ObjectPageHeader$MarkChangesPressEvent) => void,
2359
2351
  /**
2360
2352
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageHeader` itself
2361
2353
  */
@@ -2381,9 +2373,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2381
2373
  /**
2382
2374
  * The function to be called when the event occurs
2383
2375
  */
2384
- fnFunction: (
2385
- p1: Event<$ObjectPageHeaderMarkLockedPressEventParameters>
2386
- ) => void,
2376
+ fnFunction: (p1: ObjectPageHeader$MarkLockedPressEvent) => void,
2387
2377
  /**
2388
2378
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageHeader` itself
2389
2379
  */
@@ -2404,9 +2394,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2404
2394
  /**
2405
2395
  * The function to be called when the event occurs
2406
2396
  */
2407
- fnFunction: (
2408
- p1: Event<$ObjectPageHeaderMarkLockedPressEventParameters>
2409
- ) => void,
2397
+ fnFunction: (p1: ObjectPageHeader$MarkLockedPressEvent) => void,
2410
2398
  /**
2411
2399
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageHeader` itself
2412
2400
  */
@@ -2432,9 +2420,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2432
2420
  /**
2433
2421
  * The function to be called when the event occurs
2434
2422
  */
2435
- fnFunction: (
2436
- p1: Event<$ObjectPageHeaderTitleSelectorPressEventParameters>
2437
- ) => void,
2423
+ fnFunction: (p1: ObjectPageHeader$TitleSelectorPressEvent) => void,
2438
2424
  /**
2439
2425
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageHeader` itself
2440
2426
  */
@@ -2455,9 +2441,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2455
2441
  /**
2456
2442
  * The function to be called when the event occurs
2457
2443
  */
2458
- fnFunction: (
2459
- p1: Event<$ObjectPageHeaderTitleSelectorPressEventParameters>
2460
- ) => void,
2444
+ fnFunction: (p1: ObjectPageHeader$TitleSelectorPressEvent) => void,
2461
2445
  /**
2462
2446
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageHeader` itself
2463
2447
  */
@@ -2470,7 +2454,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2470
2454
  */
2471
2455
  destroyActions(): this;
2472
2456
  /**
2473
- * @SINCE 1.50
2457
+ * @since 1.50
2474
2458
  *
2475
2459
  * Destroys the breadcrumbs in the aggregation {@link #getBreadcrumbs breadcrumbs}.
2476
2460
  *
@@ -2492,7 +2476,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2492
2476
  */
2493
2477
  destroyNavigationBar(): this;
2494
2478
  /**
2495
- * @SINCE 1.38.0
2479
+ * @since 1.38.0
2496
2480
  *
2497
2481
  * Destroys the sideContentButton in the aggregation {@link #getSideContentButton sideContentButton}.
2498
2482
  *
@@ -2500,7 +2484,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2500
2484
  */
2501
2485
  destroySideContentButton(): this;
2502
2486
  /**
2503
- * @SINCE 1.56
2487
+ * @since 1.56
2504
2488
  *
2505
2489
  * Destroys the titleSelectorTooltip in the aggregation {@link #getTitleSelectorTooltip titleSelectorTooltip}.
2506
2490
  *
@@ -2519,9 +2503,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2519
2503
  /**
2520
2504
  * The function to be called, when the event occurs
2521
2505
  */
2522
- fnFunction: (
2523
- p1: Event<$ObjectPageHeaderMarkChangesPressEventParameters>
2524
- ) => void,
2506
+ fnFunction: (p1: ObjectPageHeader$MarkChangesPressEvent) => void,
2525
2507
  /**
2526
2508
  * Context object on which the given function had to be called
2527
2509
  */
@@ -2539,9 +2521,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2539
2521
  /**
2540
2522
  * The function to be called, when the event occurs
2541
2523
  */
2542
- fnFunction: (
2543
- p1: Event<$ObjectPageHeaderMarkLockedPressEventParameters>
2544
- ) => void,
2524
+ fnFunction: (p1: ObjectPageHeader$MarkLockedPressEvent) => void,
2545
2525
  /**
2546
2526
  * Context object on which the given function had to be called
2547
2527
  */
@@ -2559,16 +2539,14 @@ declare module "sap/uxap/ObjectPageHeader" {
2559
2539
  /**
2560
2540
  * The function to be called, when the event occurs
2561
2541
  */
2562
- fnFunction: (
2563
- p1: Event<$ObjectPageHeaderTitleSelectorPressEventParameters>
2564
- ) => void,
2542
+ fnFunction: (p1: ObjectPageHeader$TitleSelectorPressEvent) => void,
2565
2543
  /**
2566
2544
  * Context object on which the given function had to be called
2567
2545
  */
2568
2546
  oListener?: object
2569
2547
  ): this;
2570
2548
  /**
2571
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2549
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2572
2550
  *
2573
2551
  * Fires event {@link #event:markChangesPress markChangesPress} to attached listeners.
2574
2552
  *
@@ -2578,10 +2556,10 @@ declare module "sap/uxap/ObjectPageHeader" {
2578
2556
  /**
2579
2557
  * Parameters to pass along with the event
2580
2558
  */
2581
- mParameters?: $ObjectPageHeaderMarkChangesPressEventParameters
2559
+ mParameters?: ObjectPageHeader$MarkChangesPressEventParameters
2582
2560
  ): this;
2583
2561
  /**
2584
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2562
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2585
2563
  *
2586
2564
  * Fires event {@link #event:markLockedPress markLockedPress} to attached listeners.
2587
2565
  *
@@ -2591,10 +2569,10 @@ declare module "sap/uxap/ObjectPageHeader" {
2591
2569
  /**
2592
2570
  * Parameters to pass along with the event
2593
2571
  */
2594
- mParameters?: $ObjectPageHeaderMarkLockedPressEventParameters
2572
+ mParameters?: ObjectPageHeader$MarkLockedPressEventParameters
2595
2573
  ): this;
2596
2574
  /**
2597
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2575
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2598
2576
  *
2599
2577
  * Fires event {@link #event:titleSelectorPress titleSelectorPress} to attached listeners.
2600
2578
  *
@@ -2604,7 +2582,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2604
2582
  /**
2605
2583
  * Parameters to pass along with the event
2606
2584
  */
2607
- mParameters?: $ObjectPageHeaderTitleSelectorPressEventParameters
2585
+ mParameters?: ObjectPageHeader$TitleSelectorPressEventParameters
2608
2586
  ): this;
2609
2587
  /**
2610
2588
  * Gets content of aggregation {@link #getActions actions}.
@@ -2619,7 +2597,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2619
2597
  */
2620
2598
  getActions(): Control[];
2621
2599
  /**
2622
- * @SINCE 1.50
2600
+ * @since 1.50
2623
2601
  *
2624
2602
  * Gets content of aggregation {@link #getBreadcrumbs breadcrumbs}.
2625
2603
  *
@@ -2691,7 +2669,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2691
2669
  */
2692
2670
  getIsObjectTitleAlwaysVisible(): boolean;
2693
2671
  /**
2694
- * @SINCE 1.34.0
2672
+ * @since 1.34.0
2695
2673
  *
2696
2674
  * Gets current value of property {@link #getMarkChanges markChanges}.
2697
2675
  *
@@ -2752,7 +2730,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2752
2730
  */
2753
2731
  getObjectImageAlt(): string;
2754
2732
  /**
2755
- * @SINCE 1.73
2733
+ * @since 1.73
2756
2734
  *
2757
2735
  * Gets current value of property {@link #getObjectImageBackgroundColor objectImageBackgroundColor}.
2758
2736
  *
@@ -2840,7 +2818,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2840
2818
  */
2841
2819
  getShowTitleSelector(): boolean;
2842
2820
  /**
2843
- * @SINCE 1.38.0
2821
+ * @since 1.38.0
2844
2822
  *
2845
2823
  * Gets content of aggregation {@link #getSideContentButton sideContentButton}.
2846
2824
  *
@@ -2848,7 +2826,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2848
2826
  */
2849
2827
  getSideContentButton(): Button;
2850
2828
  /**
2851
- * @SINCE 1.56
2829
+ * @since 1.56
2852
2830
  *
2853
2831
  * Gets content of aggregation {@link #getTitleSelectorTooltip titleSelectorTooltip}.
2854
2832
  *
@@ -2965,7 +2943,7 @@ declare module "sap/uxap/ObjectPageHeader" {
2965
2943
  vBreadCrumbLink: int | string | Link
2966
2944
  ): Link | null;
2967
2945
  /**
2968
- * @SINCE 1.50
2946
+ * @since 1.50
2969
2947
  *
2970
2948
  * Sets the aggregated {@link #getBreadcrumbs breadcrumbs}.
2971
2949
  *
@@ -3046,7 +3024,7 @@ declare module "sap/uxap/ObjectPageHeader" {
3046
3024
  bIsObjectTitleAlwaysVisible?: boolean
3047
3025
  ): this;
3048
3026
  /**
3049
- * @SINCE 1.34.0
3027
+ * @since 1.34.0
3050
3028
  *
3051
3029
  * Sets a new value for property {@link #getMarkChanges markChanges}.
3052
3030
  *
@@ -3147,7 +3125,7 @@ declare module "sap/uxap/ObjectPageHeader" {
3147
3125
  sObjectImageAlt?: string
3148
3126
  ): this;
3149
3127
  /**
3150
- * @SINCE 1.73
3128
+ * @since 1.73
3151
3129
  *
3152
3130
  * Sets a new value for property {@link #getObjectImageBackgroundColor objectImageBackgroundColor}.
3153
3131
  *
@@ -3298,7 +3276,7 @@ declare module "sap/uxap/ObjectPageHeader" {
3298
3276
  bShowTitleSelector?: boolean
3299
3277
  ): this;
3300
3278
  /**
3301
- * @SINCE 1.38.0
3279
+ * @since 1.38.0
3302
3280
  *
3303
3281
  * Sets the aggregated {@link #getSideContentButton sideContentButton}.
3304
3282
  *
@@ -3311,7 +3289,7 @@ declare module "sap/uxap/ObjectPageHeader" {
3311
3289
  oSideContentButton: Button
3312
3290
  ): this;
3313
3291
  /**
3314
- * @SINCE 1.56
3292
+ * @since 1.56
3315
3293
  *
3316
3294
  * Sets the aggregated {@link #getTitleSelectorTooltip titleSelectorTooltip}.
3317
3295
  *
@@ -3324,7 +3302,6 @@ declare module "sap/uxap/ObjectPageHeader" {
3324
3302
  vTitleSelectorTooltip: TooltipBase | string
3325
3303
  ): this;
3326
3304
  }
3327
- export default ObjectPageHeader;
3328
3305
 
3329
3306
  export interface $ObjectPageHeaderSettings extends $ControlSettings {
3330
3307
  /**
@@ -3362,7 +3339,7 @@ declare module "sap/uxap/ObjectPageHeader" {
3362
3339
  | `{${string}}`;
3363
3340
 
3364
3341
  /**
3365
- * @SINCE 1.73
3342
+ * @since 1.73
3366
3343
  *
3367
3344
  * Determines the background color of the image placeholder or icon if valid icon URI is provided.
3368
3345
  */
@@ -3439,7 +3416,7 @@ declare module "sap/uxap/ObjectPageHeader" {
3439
3416
  showPlaceholder?: boolean | PropertyBindingInfo | `{${string}}`;
3440
3417
 
3441
3418
  /**
3442
- * @SINCE 1.34.0
3419
+ * @since 1.34.0
3443
3420
  *
3444
3421
  * Marks that there are unsaved changes in the objectPageHeader. The markChanges state cannot be used together
3445
3422
  * with the markLocked state. If both are set to true, only the locked state will be displayed.
@@ -3447,7 +3424,7 @@ declare module "sap/uxap/ObjectPageHeader" {
3447
3424
  markChanges?: boolean | PropertyBindingInfo | `{${string}}`;
3448
3425
 
3449
3426
  /**
3450
- * @SINCE 1.50
3427
+ * @since 1.50
3451
3428
  *
3452
3429
  * The breadcrumbs displayed in the `ObjectPageHeader`. If this aggregation is set, the `breadCrumbsLinks`
3453
3430
  * aggregation is omitted.
@@ -3478,14 +3455,14 @@ declare module "sap/uxap/ObjectPageHeader" {
3478
3455
  actions?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
3479
3456
 
3480
3457
  /**
3481
- * @SINCE 1.38.0
3458
+ * @since 1.38.0
3482
3459
  *
3483
3460
  * A button that is used for opening the side content of the page or some additional content.
3484
3461
  */
3485
3462
  sideContentButton?: Button;
3486
3463
 
3487
3464
  /**
3488
- * @SINCE 1.56
3465
+ * @since 1.56
3489
3466
  *
3490
3467
  * A custom tooltip for the title selector button.
3491
3468
  *
@@ -3500,44 +3477,46 @@ declare module "sap/uxap/ObjectPageHeader" {
3500
3477
  * The event is fired when the objectPage header title selector (down-arrow) is pressed
3501
3478
  */
3502
3479
  titleSelectorPress?: (
3503
- oEvent: Event<$ObjectPageHeaderTitleSelectorPressEventParameters>
3480
+ oEvent: ObjectPageHeader$TitleSelectorPressEvent
3504
3481
  ) => void;
3505
3482
 
3506
3483
  /**
3507
3484
  * The event is fired when the Locked button is pressed
3508
3485
  */
3509
- markLockedPress?: (
3510
- oEvent: Event<$ObjectPageHeaderMarkLockedPressEventParameters>
3511
- ) => void;
3486
+ markLockedPress?: (oEvent: ObjectPageHeader$MarkLockedPressEvent) => void;
3512
3487
 
3513
3488
  /**
3514
3489
  * The event is fired when the unsaved changes button is pressed
3515
3490
  */
3516
- markChangesPress?: (
3517
- oEvent: Event<$ObjectPageHeaderMarkChangesPressEventParameters>
3518
- ) => void;
3491
+ markChangesPress?: (oEvent: ObjectPageHeader$MarkChangesPressEvent) => void;
3519
3492
  }
3520
3493
 
3521
- export interface $ObjectPageHeaderMarkChangesPressEventParameters {
3494
+ export interface ObjectPageHeader$MarkChangesPressEventParameters {
3522
3495
  /**
3523
3496
  * DOM reference of the changed item's icon to be used for positioning.
3524
3497
  */
3525
3498
  domRef?: string;
3526
3499
  }
3527
3500
 
3528
- export interface $ObjectPageHeaderMarkLockedPressEventParameters {
3501
+ export type ObjectPageHeader$MarkChangesPressEvent = Event<ObjectPageHeader$MarkChangesPressEventParameters>;
3502
+
3503
+ export interface ObjectPageHeader$MarkLockedPressEventParameters {
3529
3504
  /**
3530
3505
  * DOM reference of the lock item's icon to be used for positioning.
3531
3506
  */
3532
3507
  domRef?: string;
3533
3508
  }
3534
3509
 
3535
- export interface $ObjectPageHeaderTitleSelectorPressEventParameters {
3510
+ export type ObjectPageHeader$MarkLockedPressEvent = Event<ObjectPageHeader$MarkLockedPressEventParameters>;
3511
+
3512
+ export interface ObjectPageHeader$TitleSelectorPressEventParameters {
3536
3513
  /**
3537
3514
  * DOM reference of the title item's icon to be used for positioning.
3538
3515
  */
3539
3516
  domRef?: string;
3540
3517
  }
3518
+
3519
+ export type ObjectPageHeader$TitleSelectorPressEvent = Event<ObjectPageHeader$TitleSelectorPressEventParameters>;
3541
3520
  }
3542
3521
 
3543
3522
  declare module "sap/uxap/ObjectPageHeaderActionButton" {
@@ -3552,14 +3531,14 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
3552
3531
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
3553
3532
 
3554
3533
  /**
3555
- * @SINCE 1.26
3534
+ * @since 1.26
3556
3535
  *
3557
3536
  * A Button that is used in the `actions` aggregation of the {@link sap.uxap.ObjectPageHeader}.
3558
3537
  *
3559
3538
  * The button is designed to be used with {@link sap.uxap.ObjectPageHeader} and any usage outside the intended
3560
3539
  * context is not recommended.
3561
3540
  */
3562
- class ObjectPageHeaderActionButton
3541
+ export default class ObjectPageHeaderActionButton
3563
3542
  extends Button
3564
3543
  implements IOverflowToolbarContent {
3565
3544
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -3648,7 +3627,7 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
3648
3627
  */
3649
3628
  getHideText(): boolean;
3650
3629
  /**
3651
- * @SINCE 1.34.0
3630
+ * @since 1.34.0
3652
3631
  *
3653
3632
  * Gets current value of property {@link #getImportance importance}.
3654
3633
  *
@@ -3698,7 +3677,7 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
3698
3677
  bHideText?: boolean
3699
3678
  ): this;
3700
3679
  /**
3701
- * @SINCE 1.34.0
3680
+ * @since 1.34.0
3702
3681
  *
3703
3682
  * Sets a new value for property {@link #getImportance importance}.
3704
3683
  *
@@ -3717,7 +3696,6 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
3717
3696
  sImportance?: Importance | keyof typeof Importance
3718
3697
  ): this;
3719
3698
  }
3720
- export default ObjectPageHeaderActionButton;
3721
3699
 
3722
3700
  export interface $ObjectPageHeaderActionButtonSettings
3723
3701
  extends $ButtonSettings {
@@ -3736,7 +3714,7 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
3736
3714
  hideIcon?: boolean | PropertyBindingInfo | `{${string}}`;
3737
3715
 
3738
3716
  /**
3739
- * @SINCE 1.34.0
3717
+ * @since 1.34.0
3740
3718
  *
3741
3719
  * Determines the order in which the button overflows.
3742
3720
  */
@@ -3760,7 +3738,7 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
3760
3738
  } from "sap/ui/base/ManagedObject";
3761
3739
 
3762
3740
  /**
3763
- * @SINCE 1.30
3741
+ * @since 1.30
3764
3742
  *
3765
3743
  * Header content for the classic header of the {@link sap.uxap.ObjectPageLayout}.
3766
3744
  *
@@ -3776,7 +3754,9 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
3776
3754
  * - {@link https://ui5.sap.com/#/topic/0fecbce45e39406aa939bd25e89823f4 Object Page Classic Header}
3777
3755
  * - {@link https://experience.sap.com/fiori-design-web/object-page/ UX Guidelines: Object Page}
3778
3756
  */
3779
- class ObjectPageHeaderContent extends Control implements IHeaderContent {
3757
+ export default class ObjectPageHeaderContent
3758
+ extends Control
3759
+ implements IHeaderContent {
3780
3760
  __implements__sap_uxap_IHeaderContent: boolean;
3781
3761
  /**
3782
3762
  * Constructor for a new `ObjectPageHeaderContent`.
@@ -3951,7 +3931,6 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
3951
3931
  | keyof typeof ObjectPageHeaderDesign
3952
3932
  ): this;
3953
3933
  }
3954
- export default ObjectPageHeaderContent;
3955
3934
 
3956
3935
  export interface $ObjectPageHeaderContentSettings extends $ControlSettings {
3957
3936
  /**
@@ -3985,7 +3964,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
3985
3964
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
3986
3965
 
3987
3966
  /**
3988
- * @SINCE 1.26
3967
+ * @since 1.26
3989
3968
  *
3990
3969
  * A {@link sap.ui.core.LayoutData} element that can be added to controls used in the `headerContent` aggregation
3991
3970
  * of the `ObjectPageLayout`.
@@ -3993,7 +3972,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
3993
3972
  * **Note:** This element is only taken into account when the `sap.uxap.ObjectPageLayout` control is used
3994
3973
  * together with `sap.uxap.ObjectPageHeader` as value of `headerTitle`.
3995
3974
  */
3996
- class ObjectPageHeaderLayoutData extends LayoutData {
3975
+ export default class ObjectPageHeaderLayoutData extends LayoutData {
3997
3976
  /**
3998
3977
  * Constructor for a new `ObjectPageHeaderLayoutData`.
3999
3978
  *
@@ -4217,7 +4196,6 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
4217
4196
  sWidth?: CSSSize
4218
4197
  ): this;
4219
4198
  }
4220
- export default ObjectPageHeaderLayoutData;
4221
4199
 
4222
4200
  export interface $ObjectPageHeaderLayoutDataSettings
4223
4201
  extends $LayoutDataSettings {
@@ -4281,7 +4259,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4281
4259
  import ObjectPageSubSection from "sap/uxap/ObjectPageSubSection";
4282
4260
 
4283
4261
  /**
4284
- * @SINCE 1.26
4262
+ * @since 1.26
4285
4263
  *
4286
4264
  * A layout that allows apps to easily display information related to a business object.
4287
4265
  *
@@ -4320,7 +4298,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4320
4298
  *
4321
4299
  * The `ObjectPageLayout` is responsive and adapts to all screen sizes.
4322
4300
  */
4323
- class ObjectPageLayout extends Control {
4301
+ export default class ObjectPageLayout extends Control {
4324
4302
  /**
4325
4303
  * Constructor for a new `ObjectPageLayout`.
4326
4304
  *
@@ -4469,7 +4447,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4469
4447
  oListener?: object
4470
4448
  ): this;
4471
4449
  /**
4472
- * @SINCE 1.93
4450
+ * @since 1.93
4473
4451
  *
4474
4452
  * Attaches event handler `fnFunction` to the {@link #event:headerContentPinnedStateChange headerContentPinnedStateChange }
4475
4453
  * event of this `sap.uxap.ObjectPageLayout`.
@@ -4491,7 +4469,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4491
4469
  * The function to be called when the event occurs
4492
4470
  */
4493
4471
  fnFunction: (
4494
- p1: Event<$ObjectPageLayoutHeaderContentPinnedStateChangeEventParameters>
4472
+ p1: ObjectPageLayout$HeaderContentPinnedStateChangeEvent
4495
4473
  ) => void,
4496
4474
  /**
4497
4475
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
@@ -4499,7 +4477,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4499
4477
  oListener?: object
4500
4478
  ): this;
4501
4479
  /**
4502
- * @SINCE 1.93
4480
+ * @since 1.93
4503
4481
  *
4504
4482
  * Attaches event handler `fnFunction` to the {@link #event:headerContentPinnedStateChange headerContentPinnedStateChange }
4505
4483
  * event of this `sap.uxap.ObjectPageLayout`.
@@ -4516,7 +4494,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4516
4494
  * The function to be called when the event occurs
4517
4495
  */
4518
4496
  fnFunction: (
4519
- p1: Event<$ObjectPageLayoutHeaderContentPinnedStateChangeEventParameters>
4497
+ p1: ObjectPageLayout$HeaderContentPinnedStateChangeEvent
4520
4498
  ) => void,
4521
4499
  /**
4522
4500
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
@@ -4524,7 +4502,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4524
4502
  oListener?: object
4525
4503
  ): this;
4526
4504
  /**
4527
- * @SINCE 1.40
4505
+ * @since 1.40
4528
4506
  *
4529
4507
  * Attaches event handler `fnFunction` to the {@link #event:navigate navigate} event of this `sap.uxap.ObjectPageLayout`.
4530
4508
  *
@@ -4544,14 +4522,14 @@ declare module "sap/uxap/ObjectPageLayout" {
4544
4522
  /**
4545
4523
  * The function to be called when the event occurs
4546
4524
  */
4547
- fnFunction: (p1: Event<$ObjectPageLayoutNavigateEventParameters>) => void,
4525
+ fnFunction: (p1: ObjectPageLayout$NavigateEvent) => void,
4548
4526
  /**
4549
4527
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
4550
4528
  */
4551
4529
  oListener?: object
4552
4530
  ): this;
4553
4531
  /**
4554
- * @SINCE 1.40
4532
+ * @since 1.40
4555
4533
  *
4556
4534
  * Attaches event handler `fnFunction` to the {@link #event:navigate navigate} event of this `sap.uxap.ObjectPageLayout`.
4557
4535
  *
@@ -4566,14 +4544,14 @@ declare module "sap/uxap/ObjectPageLayout" {
4566
4544
  /**
4567
4545
  * The function to be called when the event occurs
4568
4546
  */
4569
- fnFunction: (p1: Event<$ObjectPageLayoutNavigateEventParameters>) => void,
4547
+ fnFunction: (p1: ObjectPageLayout$NavigateEvent) => void,
4570
4548
  /**
4571
4549
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
4572
4550
  */
4573
4551
  oListener?: object
4574
4552
  ): this;
4575
4553
  /**
4576
- * @SINCE 1.73
4554
+ * @since 1.73
4577
4555
  *
4578
4556
  * Attaches event handler `fnFunction` to the {@link #event:sectionChange sectionChange} event of this `sap.uxap.ObjectPageLayout`.
4579
4557
  *
@@ -4593,16 +4571,14 @@ declare module "sap/uxap/ObjectPageLayout" {
4593
4571
  /**
4594
4572
  * The function to be called when the event occurs
4595
4573
  */
4596
- fnFunction: (
4597
- p1: Event<$ObjectPageLayoutSectionChangeEventParameters>
4598
- ) => void,
4574
+ fnFunction: (p1: ObjectPageLayout$SectionChangeEvent) => void,
4599
4575
  /**
4600
4576
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
4601
4577
  */
4602
4578
  oListener?: object
4603
4579
  ): this;
4604
4580
  /**
4605
- * @SINCE 1.73
4581
+ * @since 1.73
4606
4582
  *
4607
4583
  * Attaches event handler `fnFunction` to the {@link #event:sectionChange sectionChange} event of this `sap.uxap.ObjectPageLayout`.
4608
4584
  *
@@ -4617,16 +4593,14 @@ declare module "sap/uxap/ObjectPageLayout" {
4617
4593
  /**
4618
4594
  * The function to be called when the event occurs
4619
4595
  */
4620
- fnFunction: (
4621
- p1: Event<$ObjectPageLayoutSectionChangeEventParameters>
4622
- ) => void,
4596
+ fnFunction: (p1: ObjectPageLayout$SectionChangeEvent) => void,
4623
4597
  /**
4624
4598
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
4625
4599
  */
4626
4600
  oListener?: object
4627
4601
  ): this;
4628
4602
  /**
4629
- * @SINCE 1.77
4603
+ * @since 1.77
4630
4604
  *
4631
4605
  * Attaches event handler `fnFunction` to the {@link #event:subSectionVisibilityChange subSectionVisibilityChange }
4632
4606
  * event of this `sap.uxap.ObjectPageLayout`.
@@ -4648,7 +4622,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4648
4622
  * The function to be called when the event occurs
4649
4623
  */
4650
4624
  fnFunction: (
4651
- p1: Event<$ObjectPageLayoutSubSectionVisibilityChangeEventParameters>
4625
+ p1: ObjectPageLayout$SubSectionVisibilityChangeEvent
4652
4626
  ) => void,
4653
4627
  /**
4654
4628
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
@@ -4656,7 +4630,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4656
4630
  oListener?: object
4657
4631
  ): this;
4658
4632
  /**
4659
- * @SINCE 1.77
4633
+ * @since 1.77
4660
4634
  *
4661
4635
  * Attaches event handler `fnFunction` to the {@link #event:subSectionVisibilityChange subSectionVisibilityChange }
4662
4636
  * event of this `sap.uxap.ObjectPageLayout`.
@@ -4673,7 +4647,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4673
4647
  * The function to be called when the event occurs
4674
4648
  */
4675
4649
  fnFunction: (
4676
- p1: Event<$ObjectPageLayoutSubSectionVisibilityChangeEventParameters>
4650
+ p1: ObjectPageLayout$SubSectionVisibilityChangeEvent
4677
4651
  ) => void,
4678
4652
  /**
4679
4653
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
@@ -4700,9 +4674,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4700
4674
  /**
4701
4675
  * The function to be called when the event occurs
4702
4676
  */
4703
- fnFunction: (
4704
- p1: Event<$ObjectPageLayoutToggleAnchorBarEventParameters>
4705
- ) => void,
4677
+ fnFunction: (p1: ObjectPageLayout$ToggleAnchorBarEvent) => void,
4706
4678
  /**
4707
4679
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
4708
4680
  */
@@ -4723,16 +4695,14 @@ declare module "sap/uxap/ObjectPageLayout" {
4723
4695
  /**
4724
4696
  * The function to be called when the event occurs
4725
4697
  */
4726
- fnFunction: (
4727
- p1: Event<$ObjectPageLayoutToggleAnchorBarEventParameters>
4728
- ) => void,
4698
+ fnFunction: (p1: ObjectPageLayout$ToggleAnchorBarEvent) => void,
4729
4699
  /**
4730
4700
  * Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
4731
4701
  */
4732
4702
  oListener?: object
4733
4703
  ): this;
4734
4704
  /**
4735
- * @SINCE 1.40
4705
+ * @since 1.40
4736
4706
  *
4737
4707
  * Destroys the footer in the aggregation {@link #getFooter footer}.
4738
4708
  *
@@ -4752,7 +4722,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4752
4722
  */
4753
4723
  destroyHeaderTitle(): this;
4754
4724
  /**
4755
- * @SINCE 1.61
4725
+ * @since 1.61
4756
4726
  *
4757
4727
  * Destroys the landmarkInfo in the aggregation {@link #getLandmarkInfo landmarkInfo}.
4758
4728
  *
@@ -4784,7 +4754,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4784
4754
  oListener?: object
4785
4755
  ): this;
4786
4756
  /**
4787
- * @SINCE 1.93
4757
+ * @since 1.93
4788
4758
  *
4789
4759
  * Detaches event handler `fnFunction` from the {@link #event:headerContentPinnedStateChange headerContentPinnedStateChange }
4790
4760
  * event of this `sap.uxap.ObjectPageLayout`.
@@ -4798,7 +4768,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4798
4768
  * The function to be called, when the event occurs
4799
4769
  */
4800
4770
  fnFunction: (
4801
- p1: Event<$ObjectPageLayoutHeaderContentPinnedStateChangeEventParameters>
4771
+ p1: ObjectPageLayout$HeaderContentPinnedStateChangeEvent
4802
4772
  ) => void,
4803
4773
  /**
4804
4774
  * Context object on which the given function had to be called
@@ -4806,7 +4776,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4806
4776
  oListener?: object
4807
4777
  ): this;
4808
4778
  /**
4809
- * @SINCE 1.40
4779
+ * @since 1.40
4810
4780
  *
4811
4781
  * Detaches event handler `fnFunction` from the {@link #event:navigate navigate} event of this `sap.uxap.ObjectPageLayout`.
4812
4782
  *
@@ -4818,14 +4788,14 @@ declare module "sap/uxap/ObjectPageLayout" {
4818
4788
  /**
4819
4789
  * The function to be called, when the event occurs
4820
4790
  */
4821
- fnFunction: (p1: Event<$ObjectPageLayoutNavigateEventParameters>) => void,
4791
+ fnFunction: (p1: ObjectPageLayout$NavigateEvent) => void,
4822
4792
  /**
4823
4793
  * Context object on which the given function had to be called
4824
4794
  */
4825
4795
  oListener?: object
4826
4796
  ): this;
4827
4797
  /**
4828
- * @SINCE 1.73
4798
+ * @since 1.73
4829
4799
  *
4830
4800
  * Detaches event handler `fnFunction` from the {@link #event:sectionChange sectionChange} event of this
4831
4801
  * `sap.uxap.ObjectPageLayout`.
@@ -4838,16 +4808,14 @@ declare module "sap/uxap/ObjectPageLayout" {
4838
4808
  /**
4839
4809
  * The function to be called, when the event occurs
4840
4810
  */
4841
- fnFunction: (
4842
- p1: Event<$ObjectPageLayoutSectionChangeEventParameters>
4843
- ) => void,
4811
+ fnFunction: (p1: ObjectPageLayout$SectionChangeEvent) => void,
4844
4812
  /**
4845
4813
  * Context object on which the given function had to be called
4846
4814
  */
4847
4815
  oListener?: object
4848
4816
  ): this;
4849
4817
  /**
4850
- * @SINCE 1.77
4818
+ * @since 1.77
4851
4819
  *
4852
4820
  * Detaches event handler `fnFunction` from the {@link #event:subSectionVisibilityChange subSectionVisibilityChange }
4853
4821
  * event of this `sap.uxap.ObjectPageLayout`.
@@ -4861,7 +4829,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4861
4829
  * The function to be called, when the event occurs
4862
4830
  */
4863
4831
  fnFunction: (
4864
- p1: Event<$ObjectPageLayoutSubSectionVisibilityChangeEventParameters>
4832
+ p1: ObjectPageLayout$SubSectionVisibilityChangeEvent
4865
4833
  ) => void,
4866
4834
  /**
4867
4835
  * Context object on which the given function had to be called
@@ -4880,16 +4848,14 @@ declare module "sap/uxap/ObjectPageLayout" {
4880
4848
  /**
4881
4849
  * The function to be called, when the event occurs
4882
4850
  */
4883
- fnFunction: (
4884
- p1: Event<$ObjectPageLayoutToggleAnchorBarEventParameters>
4885
- ) => void,
4851
+ fnFunction: (p1: ObjectPageLayout$ToggleAnchorBarEvent) => void,
4886
4852
  /**
4887
4853
  * Context object on which the given function had to be called
4888
4854
  */
4889
4855
  oListener?: object
4890
4856
  ): this;
4891
4857
  /**
4892
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4858
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4893
4859
  *
4894
4860
  * Fires event {@link #event:editHeaderButtonPress editHeaderButtonPress} to attached listeners.
4895
4861
  *
@@ -4902,8 +4868,8 @@ declare module "sap/uxap/ObjectPageLayout" {
4902
4868
  mParameters?: object
4903
4869
  ): this;
4904
4870
  /**
4905
- * @SINCE 1.93
4906
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4871
+ * @since 1.93
4872
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4907
4873
  *
4908
4874
  * Fires event {@link #event:headerContentPinnedStateChange headerContentPinnedStateChange} to attached
4909
4875
  * listeners.
@@ -4914,11 +4880,11 @@ declare module "sap/uxap/ObjectPageLayout" {
4914
4880
  /**
4915
4881
  * Parameters to pass along with the event
4916
4882
  */
4917
- mParameters?: $ObjectPageLayoutHeaderContentPinnedStateChangeEventParameters
4883
+ mParameters?: ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters
4918
4884
  ): this;
4919
4885
  /**
4920
- * @SINCE 1.40
4921
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4886
+ * @since 1.40
4887
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4922
4888
  *
4923
4889
  * Fires event {@link #event:navigate navigate} to attached listeners.
4924
4890
  *
@@ -4928,11 +4894,11 @@ declare module "sap/uxap/ObjectPageLayout" {
4928
4894
  /**
4929
4895
  * Parameters to pass along with the event
4930
4896
  */
4931
- mParameters?: $ObjectPageLayoutNavigateEventParameters
4897
+ mParameters?: ObjectPageLayout$NavigateEventParameters
4932
4898
  ): this;
4933
4899
  /**
4934
- * @SINCE 1.73
4935
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4900
+ * @since 1.73
4901
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4936
4902
  *
4937
4903
  * Fires event {@link #event:sectionChange sectionChange} to attached listeners.
4938
4904
  *
@@ -4942,11 +4908,11 @@ declare module "sap/uxap/ObjectPageLayout" {
4942
4908
  /**
4943
4909
  * Parameters to pass along with the event
4944
4910
  */
4945
- mParameters?: $ObjectPageLayoutSectionChangeEventParameters
4911
+ mParameters?: ObjectPageLayout$SectionChangeEventParameters
4946
4912
  ): this;
4947
4913
  /**
4948
- * @SINCE 1.77
4949
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4914
+ * @since 1.77
4915
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4950
4916
  *
4951
4917
  * Fires event {@link #event:subSectionVisibilityChange subSectionVisibilityChange} to attached listeners.
4952
4918
  *
@@ -4956,10 +4922,10 @@ declare module "sap/uxap/ObjectPageLayout" {
4956
4922
  /**
4957
4923
  * Parameters to pass along with the event
4958
4924
  */
4959
- mParameters?: $ObjectPageLayoutSubSectionVisibilityChangeEventParameters
4925
+ mParameters?: ObjectPageLayout$SubSectionVisibilityChangeEventParameters
4960
4926
  ): this;
4961
4927
  /**
4962
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4928
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4963
4929
  *
4964
4930
  * Fires event {@link #event:toggleAnchorBar toggleAnchorBar} to attached listeners.
4965
4931
  *
@@ -4969,10 +4935,10 @@ declare module "sap/uxap/ObjectPageLayout" {
4969
4935
  /**
4970
4936
  * Parameters to pass along with the event
4971
4937
  */
4972
- mParameters?: $ObjectPageLayoutToggleAnchorBarEventParameters
4938
+ mParameters?: ObjectPageLayout$ToggleAnchorBarEventParameters
4973
4939
  ): this;
4974
4940
  /**
4975
- * @SINCE 1.34.0
4941
+ * @since 1.34.0
4976
4942
  *
4977
4943
  * Gets current value of property {@link #getAlwaysShowContentHeader alwaysShowContentHeader}.
4978
4944
  *
@@ -4987,7 +4953,7 @@ declare module "sap/uxap/ObjectPageLayout" {
4987
4953
  */
4988
4954
  getAlwaysShowContentHeader(): boolean;
4989
4955
  /**
4990
- * @SINCE 1.58
4956
+ * @since 1.58
4991
4957
  *
4992
4958
  * Gets current value of property {@link #getBackgroundDesignAnchorBar backgroundDesignAnchorBar}.
4993
4959
  *
@@ -5012,7 +4978,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5012
4978
  */
5013
4979
  getEnableLazyLoading(): boolean;
5014
4980
  /**
5015
- * @SINCE 1.34.0
4981
+ * @since 1.34.0
5016
4982
  *
5017
4983
  * Gets current value of property {@link #getFlexEnabled flexEnabled}.
5018
4984
  *
@@ -5025,7 +4991,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5025
4991
  */
5026
4992
  getFlexEnabled(): boolean;
5027
4993
  /**
5028
- * @SINCE 1.40
4994
+ * @since 1.40
5029
4995
  *
5030
4996
  * Gets content of aggregation {@link #getFooter footer}.
5031
4997
  *
@@ -5039,7 +5005,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5039
5005
  */
5040
5006
  getHeaderContent(): Control[];
5041
5007
  /**
5042
- * @SINCE 1.52
5008
+ * @since 1.52
5043
5009
  *
5044
5010
  * Gets current value of property {@link #getHeaderContentPinnable headerContentPinnable}.
5045
5011
  *
@@ -5057,7 +5023,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5057
5023
  */
5058
5024
  getHeaderContentPinnable(): boolean;
5059
5025
  /**
5060
- * @SINCE 1.93
5026
+ * @since 1.93
5061
5027
  *
5062
5028
  * Gets current value of property {@link #getHeaderContentPinned headerContentPinned}.
5063
5029
  *
@@ -5098,7 +5064,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5098
5064
  */
5099
5065
  getHeight(): CSSSize;
5100
5066
  /**
5101
- * @SINCE 1.34.0
5067
+ * @since 1.34.0
5102
5068
  *
5103
5069
  * Gets current value of property {@link #getIsChildPage isChildPage}.
5104
5070
  *
@@ -5114,7 +5080,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5114
5080
  */
5115
5081
  getIsChildPage(): boolean;
5116
5082
  /**
5117
- * @SINCE 1.61
5083
+ * @since 1.61
5118
5084
  *
5119
5085
  * Gets content of aggregation {@link #getLandmarkInfo landmarkInfo}.
5120
5086
  *
@@ -5124,7 +5090,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5124
5090
  */
5125
5091
  getLandmarkInfo(): ObjectPageAccessibleLandmarkInfo;
5126
5092
  /**
5127
- * @SINCE 1.52
5093
+ * @since 1.52
5128
5094
  *
5129
5095
  * Gets current value of property {@link #getPreserveHeaderStateOnScroll preserveHeaderStateOnScroll}.
5130
5096
  *
@@ -5160,7 +5126,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5160
5126
  */
5161
5127
  getSections(): ObjectPageSection[];
5162
5128
  /**
5163
- * @SINCE 1.44.0
5129
+ * @since 1.44.0
5164
5130
  *
5165
5131
  * Gets current value of property {@link #getSectionTitleLevel sectionTitleLevel}.
5166
5132
  *
@@ -5190,7 +5156,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5190
5156
  */
5191
5157
  getSectionTitleLevel(): TitleLevel | keyof typeof TitleLevel;
5192
5158
  /**
5193
- * @SINCE 1.44.0
5159
+ * @since 1.44.0
5194
5160
  *
5195
5161
  * ID of the element which is the current target of the association {@link #getSelectedSection selectedSection},
5196
5162
  * or `null`.
@@ -5218,7 +5184,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5218
5184
  */
5219
5185
  getShowAnchorBarPopover(): boolean;
5220
5186
  /**
5221
- * @SINCE 1.34.0
5187
+ * @since 1.34.0
5222
5188
  *
5223
5189
  * Gets current value of property {@link #getShowEditHeaderButton showEditHeaderButton}.
5224
5190
  *
@@ -5233,7 +5199,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5233
5199
  */
5234
5200
  getShowEditHeaderButton(): boolean;
5235
5201
  /**
5236
- * @SINCE 1.40
5202
+ * @since 1.40
5237
5203
  *
5238
5204
  * Gets current value of property {@link #getShowFooter showFooter}.
5239
5205
  *
@@ -5255,7 +5221,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5255
5221
  */
5256
5222
  getShowHeaderContent(): boolean;
5257
5223
  /**
5258
- * @SINCE 1.32.0
5224
+ * @since 1.32.0
5259
5225
  *
5260
5226
  * Gets current value of property {@link #getShowOnlyHighImportance showOnlyHighImportance}.
5261
5227
  *
@@ -5292,7 +5258,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5292
5258
  | ObjectPageSubSectionLayout
5293
5259
  | keyof typeof ObjectPageSubSectionLayout;
5294
5260
  /**
5295
- * @SINCE 1.52
5261
+ * @since 1.52
5296
5262
  *
5297
5263
  * Gets current value of property {@link #getToggleHeaderOnTitleClick toggleHeaderOnTitleClick}.
5298
5264
  *
@@ -5401,7 +5367,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5401
5367
  iIndex: int
5402
5368
  ): this;
5403
5369
  /**
5404
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5370
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5405
5371
  *
5406
5372
  * This triggers rerendering of itself and its children.
5407
5373
  */
@@ -5469,7 +5435,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5469
5435
  iOffset?: int
5470
5436
  ): void;
5471
5437
  /**
5472
- * @SINCE 1.34.0
5438
+ * @since 1.34.0
5473
5439
  *
5474
5440
  * Sets a new value for property {@link #getAlwaysShowContentHeader alwaysShowContentHeader}.
5475
5441
  *
@@ -5491,7 +5457,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5491
5457
  bAlwaysShowContentHeader?: boolean
5492
5458
  ): this;
5493
5459
  /**
5494
- * @SINCE 1.58
5460
+ * @since 1.58
5495
5461
  *
5496
5462
  * Sets the value of the `backgroundDesignAnchorBar` property.
5497
5463
  *
@@ -5523,7 +5489,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5523
5489
  bEnableLazyLoading?: boolean
5524
5490
  ): this;
5525
5491
  /**
5526
- * @SINCE 1.34.0
5492
+ * @since 1.34.0
5527
5493
  *
5528
5494
  * Sets a new value for property {@link #getFlexEnabled flexEnabled}.
5529
5495
  *
@@ -5543,7 +5509,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5543
5509
  bFlexEnabled?: boolean
5544
5510
  ): this;
5545
5511
  /**
5546
- * @SINCE 1.40
5512
+ * @since 1.40
5547
5513
  *
5548
5514
  * Sets the aggregated {@link #getFooter footer}.
5549
5515
  *
@@ -5556,7 +5522,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5556
5522
  oFooter: IBar
5557
5523
  ): this;
5558
5524
  /**
5559
- * @SINCE 1.52
5525
+ * @since 1.52
5560
5526
  *
5561
5527
  * Sets a new value for property {@link #getHeaderContentPinnable headerContentPinnable}.
5562
5528
  *
@@ -5581,7 +5547,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5581
5547
  bHeaderContentPinnable?: boolean
5582
5548
  ): this;
5583
5549
  /**
5584
- * @SINCE 1.93
5550
+ * @since 1.93
5585
5551
  *
5586
5552
  * Sets a new value for property {@link #getHeaderContentPinned headerContentPinned}.
5587
5553
  *
@@ -5641,7 +5607,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5641
5607
  sHeight?: CSSSize
5642
5608
  ): this;
5643
5609
  /**
5644
- * @SINCE 1.34.0
5610
+ * @since 1.34.0
5645
5611
  *
5646
5612
  * Sets a new value for property {@link #getIsChildPage isChildPage}.
5647
5613
  *
@@ -5664,7 +5630,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5664
5630
  bIsChildPage?: boolean
5665
5631
  ): this;
5666
5632
  /**
5667
- * @SINCE 1.61
5633
+ * @since 1.61
5668
5634
  *
5669
5635
  * Sets the aggregated {@link #getLandmarkInfo landmarkInfo}.
5670
5636
  *
@@ -5677,7 +5643,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5677
5643
  oLandmarkInfo: ObjectPageAccessibleLandmarkInfo
5678
5644
  ): this;
5679
5645
  /**
5680
- * @SINCE 1.52
5646
+ * @since 1.52
5681
5647
  *
5682
5648
  * Sets a new value for property {@link #getPreserveHeaderStateOnScroll preserveHeaderStateOnScroll}.
5683
5649
  *
@@ -5704,7 +5670,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5704
5670
  bPreserveHeaderStateOnScroll?: boolean
5705
5671
  ): this;
5706
5672
  /**
5707
- * @SINCE 1.44.0
5673
+ * @since 1.44.0
5708
5674
  *
5709
5675
  * Sets a new value for property {@link #getSectionTitleLevel sectionTitleLevel}.
5710
5676
  *
@@ -5796,7 +5762,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5796
5762
  bShowAnchorBarPopover?: boolean
5797
5763
  ): this;
5798
5764
  /**
5799
- * @SINCE 1.34.0
5765
+ * @since 1.34.0
5800
5766
  *
5801
5767
  * Sets a new value for property {@link #getShowEditHeaderButton showEditHeaderButton}.
5802
5768
  *
@@ -5818,7 +5784,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5818
5784
  bShowEditHeaderButton?: boolean
5819
5785
  ): this;
5820
5786
  /**
5821
- * @SINCE 1.40
5787
+ * @since 1.40
5822
5788
  *
5823
5789
  * Sets a new value for property {@link #getShowFooter showFooter}.
5824
5790
  *
@@ -5854,7 +5820,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5854
5820
  bShowHeaderContent?: boolean
5855
5821
  ): this;
5856
5822
  /**
5857
- * @SINCE 1.32.0
5823
+ * @since 1.32.0
5858
5824
  *
5859
5825
  * Sets a new value for property {@link #getShowOnlyHighImportance showOnlyHighImportance}.
5860
5826
  *
@@ -5912,7 +5878,7 @@ declare module "sap/uxap/ObjectPageLayout" {
5912
5878
  | keyof typeof ObjectPageSubSectionLayout
5913
5879
  ): this;
5914
5880
  /**
5915
- * @SINCE 1.52
5881
+ * @since 1.52
5916
5882
  *
5917
5883
  * Sets a new value for property {@link #getToggleHeaderOnTitleClick toggleHeaderOnTitleClick}.
5918
5884
  *
@@ -5991,7 +5957,6 @@ declare module "sap/uxap/ObjectPageLayout" {
5991
5957
  bUseTwoColumnsForLargeScreen?: boolean
5992
5958
  ): this;
5993
5959
  }
5994
- export default ObjectPageLayout;
5995
5960
 
5996
5961
  export interface $ObjectPageLayoutSettings extends $ControlSettings {
5997
5962
  /**
@@ -6011,7 +5976,7 @@ declare module "sap/uxap/ObjectPageLayout" {
6011
5976
  upperCaseAnchorBar?: boolean | PropertyBindingInfo | `{${string}}`;
6012
5977
 
6013
5978
  /**
6014
- * @SINCE 1.58
5979
+ * @since 1.58
6015
5980
  *
6016
5981
  * Determines the background color of the `AnchorBar`.
6017
5982
  *
@@ -6042,7 +6007,7 @@ declare module "sap/uxap/ObjectPageLayout" {
6042
6007
  | `{${string}}`;
6043
6008
 
6044
6009
  /**
6045
- * @SINCE 1.44.0
6010
+ * @since 1.44.0
6046
6011
  *
6047
6012
  * Determines the ARIA level of the `ObjectPageSection` and `ObjectPageSubSection` titles. The ARIA level
6048
6013
  * is used by assisting technologies, such as screen readers, to create a hierarchical site map for faster
@@ -6096,14 +6061,14 @@ declare module "sap/uxap/ObjectPageLayout" {
6096
6061
  showTitleInHeaderContent?: boolean | PropertyBindingInfo | `{${string}}`;
6097
6062
 
6098
6063
  /**
6099
- * @SINCE 1.32.0
6064
+ * @since 1.32.0
6100
6065
  *
6101
6066
  * Determines whether sections and subsections with importance Low and Medium are hidden even on large screens.
6102
6067
  */
6103
6068
  showOnlyHighImportance?: boolean | PropertyBindingInfo | `{${string}}`;
6104
6069
 
6105
6070
  /**
6106
- * @SINCE 1.34.0
6071
+ * @since 1.34.0
6107
6072
  *
6108
6073
  * Determines whether the page is a child page and renders it with a different design. Child pages have
6109
6074
  * an additional (darker/lighter) stripe on the left side of their header content area.
@@ -6114,7 +6079,7 @@ declare module "sap/uxap/ObjectPageLayout" {
6114
6079
  isChildPage?: boolean | PropertyBindingInfo | `{${string}}`;
6115
6080
 
6116
6081
  /**
6117
- * @SINCE 1.34.0
6082
+ * @since 1.34.0
6118
6083
  *
6119
6084
  * Determines whether Header Content will always be expanded on desktop.
6120
6085
  *
@@ -6124,7 +6089,7 @@ declare module "sap/uxap/ObjectPageLayout" {
6124
6089
  alwaysShowContentHeader?: boolean | PropertyBindingInfo | `{${string}}`;
6125
6090
 
6126
6091
  /**
6127
- * @SINCE 1.52
6092
+ * @since 1.52
6128
6093
  *
6129
6094
  * Determines whether the Header Content area can be pinned.
6130
6095
  *
@@ -6137,7 +6102,7 @@ declare module "sap/uxap/ObjectPageLayout" {
6137
6102
  headerContentPinnable?: boolean | PropertyBindingInfo | `{${string}}`;
6138
6103
 
6139
6104
  /**
6140
- * @SINCE 1.93
6105
+ * @since 1.93
6141
6106
  *
6142
6107
  * Determines whether the `sap.uxap.ObjectPageDynamicHeaderContent` is pinned.
6143
6108
  *
@@ -6157,7 +6122,7 @@ declare module "sap/uxap/ObjectPageLayout" {
6157
6122
  headerContentPinned?: boolean | PropertyBindingInfo | `{${string}}`;
6158
6123
 
6159
6124
  /**
6160
- * @SINCE 1.52
6125
+ * @since 1.52
6161
6126
  *
6162
6127
  * Determines whether the user can switch between the expanded/collapsed states of the `sap.uxap.ObjectPageDynamicHeaderContent`
6163
6128
  * by clicking on the `sap.uxap.ObjectPageDynamicHeaderTitle`. If set to `false`, the `sap.uxap.ObjectPageDynamicHeaderTitle`
@@ -6170,7 +6135,7 @@ declare module "sap/uxap/ObjectPageLayout" {
6170
6135
  toggleHeaderOnTitleClick?: boolean | PropertyBindingInfo | `{${string}}`;
6171
6136
 
6172
6137
  /**
6173
- * @SINCE 1.52
6138
+ * @since 1.52
6174
6139
  *
6175
6140
  * Preserves the current header state when scrolling. For example, if the user expands the header by clicking
6176
6141
  * on the title and then scrolls down the page, the header will remain expanded.
@@ -6185,7 +6150,7 @@ declare module "sap/uxap/ObjectPageLayout" {
6185
6150
  preserveHeaderStateOnScroll?: boolean | PropertyBindingInfo | `{${string}}`;
6186
6151
 
6187
6152
  /**
6188
- * @SINCE 1.34.0
6153
+ * @since 1.34.0
6189
6154
  *
6190
6155
  * Determines whether an Edit button will be displayed in Header Content.
6191
6156
  *
@@ -6195,7 +6160,7 @@ declare module "sap/uxap/ObjectPageLayout" {
6195
6160
  showEditHeaderButton?: boolean | PropertyBindingInfo | `{${string}}`;
6196
6161
 
6197
6162
  /**
6198
- * @SINCE 1.34.0
6163
+ * @since 1.34.0
6199
6164
  *
6200
6165
  * Specifies whether the object page enables flexibility features, such as hiding and adding sections.
6201
6166
  * For more information about SAPUI5 flexibility, refer to the Developer Guide.
@@ -6203,7 +6168,7 @@ declare module "sap/uxap/ObjectPageLayout" {
6203
6168
  flexEnabled?: boolean | PropertyBindingInfo | `{${string}}`;
6204
6169
 
6205
6170
  /**
6206
- * @SINCE 1.40
6171
+ * @since 1.40
6207
6172
  *
6208
6173
  * Determines whether the footer is visible.
6209
6174
  */
@@ -6233,14 +6198,14 @@ declare module "sap/uxap/ObjectPageLayout" {
6233
6198
  | `{${string}}`;
6234
6199
 
6235
6200
  /**
6236
- * @SINCE 1.40
6201
+ * @since 1.40
6237
6202
  *
6238
6203
  * Object page floating footer.
6239
6204
  */
6240
6205
  footer?: IBar;
6241
6206
 
6242
6207
  /**
6243
- * @SINCE 1.61
6208
+ * @since 1.61
6244
6209
  *
6245
6210
  * Accessible landmark settings to be applied on the containers of the `sap.uxap.ObjectPageLayout` control.
6246
6211
  *
@@ -6249,36 +6214,32 @@ declare module "sap/uxap/ObjectPageLayout" {
6249
6214
  landmarkInfo?: ObjectPageAccessibleLandmarkInfo;
6250
6215
 
6251
6216
  /**
6252
- * @SINCE 1.44.0
6217
+ * @since 1.44.0
6253
6218
  *
6254
6219
  * The section that is selected by default on load.
6255
6220
  */
6256
6221
  selectedSection?: ObjectPageSection | string;
6257
6222
 
6258
6223
  /**
6259
- * @SINCE 1.93
6224
+ * @since 1.93
6260
6225
  *
6261
6226
  * The event is fired when the `headerContentPinned` property is changed via user interaction.
6262
6227
  */
6263
6228
  headerContentPinnedStateChange?: (
6264
- oEvent: Event<$ObjectPageLayoutHeaderContentPinnedStateChangeEventParameters>
6229
+ oEvent: ObjectPageLayout$HeaderContentPinnedStateChangeEvent
6265
6230
  ) => void;
6266
6231
 
6267
6232
  /**
6268
6233
  * The event is fired when the Anchor bar is switched from moving to fixed or the other way round.
6269
6234
  */
6270
- toggleAnchorBar?: (
6271
- oEvent: Event<$ObjectPageLayoutToggleAnchorBarEventParameters>
6272
- ) => void;
6235
+ toggleAnchorBar?: (oEvent: ObjectPageLayout$ToggleAnchorBarEvent) => void;
6273
6236
 
6274
6237
  /**
6275
- * @SINCE 1.73
6238
+ * @since 1.73
6276
6239
  *
6277
6240
  * Fired when the current section is changed by scrolling.
6278
6241
  */
6279
- sectionChange?: (
6280
- oEvent: Event<$ObjectPageLayoutSectionChangeEventParameters>
6281
- ) => void;
6242
+ sectionChange?: (oEvent: ObjectPageLayout$SectionChangeEvent) => void;
6282
6243
 
6283
6244
  /**
6284
6245
  * The event is fired when the Edit Header button is pressed
@@ -6286,34 +6247,36 @@ declare module "sap/uxap/ObjectPageLayout" {
6286
6247
  editHeaderButtonPress?: (oEvent: Event) => void;
6287
6248
 
6288
6249
  /**
6289
- * @SINCE 1.40
6250
+ * @since 1.40
6290
6251
  *
6291
6252
  * The event is fired when the selected section is changed using the navigation.
6292
6253
  */
6293
- navigate?: (
6294
- oEvent: Event<$ObjectPageLayoutNavigateEventParameters>
6295
- ) => void;
6254
+ navigate?: (oEvent: ObjectPageLayout$NavigateEvent) => void;
6296
6255
 
6297
6256
  /**
6298
- * @SINCE 1.77
6257
+ * @since 1.77
6299
6258
  *
6300
6259
  * Fired when the visibility of subsections is changed.
6301
6260
  */
6302
6261
  subSectionVisibilityChange?: (
6303
- oEvent: Event<$ObjectPageLayoutSubSectionVisibilityChangeEventParameters>
6262
+ oEvent: ObjectPageLayout$SubSectionVisibilityChangeEvent
6304
6263
  ) => void;
6305
6264
  }
6306
6265
 
6307
- export interface $ObjectPageLayoutEditHeaderButtonPressEventParameters {}
6266
+ export interface ObjectPageLayout$EditHeaderButtonPressEventParameters {}
6308
6267
 
6309
- export interface $ObjectPageLayoutHeaderContentPinnedStateChangeEventParameters {
6268
+ export type ObjectPageLayout$EditHeaderButtonPressEvent = Event<ObjectPageLayout$EditHeaderButtonPressEventParameters>;
6269
+
6270
+ export interface ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters {
6310
6271
  /**
6311
6272
  * False or True values indicate the new pinned property value.
6312
6273
  */
6313
6274
  pinned?: boolean;
6314
6275
  }
6315
6276
 
6316
- export interface $ObjectPageLayoutNavigateEventParameters {
6277
+ export type ObjectPageLayout$HeaderContentPinnedStateChangeEvent = Event<ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters>;
6278
+
6279
+ export interface ObjectPageLayout$NavigateEventParameters {
6317
6280
  /**
6318
6281
  * The selected section object.
6319
6282
  */
@@ -6325,7 +6288,9 @@ declare module "sap/uxap/ObjectPageLayout" {
6325
6288
  subSection?: ObjectPageSubSection;
6326
6289
  }
6327
6290
 
6328
- export interface $ObjectPageLayoutSectionChangeEventParameters {
6291
+ export type ObjectPageLayout$NavigateEvent = Event<ObjectPageLayout$NavigateEventParameters>;
6292
+
6293
+ export interface ObjectPageLayout$SectionChangeEventParameters {
6329
6294
  /**
6330
6295
  * The section which the layout is scrolled to.
6331
6296
  */
@@ -6337,20 +6302,26 @@ declare module "sap/uxap/ObjectPageLayout" {
6337
6302
  subSection?: ObjectPageSubSection;
6338
6303
  }
6339
6304
 
6340
- export interface $ObjectPageLayoutSubSectionVisibilityChangeEventParameters {
6305
+ export type ObjectPageLayout$SectionChangeEvent = Event<ObjectPageLayout$SectionChangeEventParameters>;
6306
+
6307
+ export interface ObjectPageLayout$SubSectionVisibilityChangeEventParameters {
6341
6308
  /**
6342
6309
  * Object whose keys are the visible SubSection IDs and their values are the SubSection instances
6343
6310
  */
6344
6311
  visibleSubSections?: object;
6345
6312
  }
6346
6313
 
6347
- export interface $ObjectPageLayoutToggleAnchorBarEventParameters {
6314
+ export type ObjectPageLayout$SubSectionVisibilityChangeEvent = Event<ObjectPageLayout$SubSectionVisibilityChangeEventParameters>;
6315
+
6316
+ export interface ObjectPageLayout$ToggleAnchorBarEventParameters {
6348
6317
  /**
6349
6318
  * False indicates that the Anchor bar has just detached from the Header and became part of the scrolling
6350
6319
  * area. True means that the Anchor bar has just snapped to the Header.
6351
6320
  */
6352
6321
  fixed?: boolean;
6353
6322
  }
6323
+
6324
+ export type ObjectPageLayout$ToggleAnchorBarEvent = Event<ObjectPageLayout$ToggleAnchorBarEventParameters>;
6354
6325
  }
6355
6326
 
6356
6327
  declare module "sap/uxap/ObjectPageLazyLoader" {
@@ -6363,7 +6334,7 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
6363
6334
  import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
6364
6335
 
6365
6336
  /**
6366
- * @SINCE 1.38
6337
+ * @since 1.38
6367
6338
  *
6368
6339
  * A helper element that enables a "stashed-based" lazy loading approach for the content of the {@link sap.uxap.ObjectPageSubSection }
6369
6340
  * control.
@@ -6378,7 +6349,7 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
6378
6349
  *
6379
6350
  * **Note:** Subsections are required to have an ID when used with `ObjectPageLazyLoader`.
6380
6351
  */
6381
- class ObjectPageLazyLoader extends UI5Element {
6352
+ export default class ObjectPageLazyLoader extends UI5Element {
6382
6353
  /**
6383
6354
  * Constructor for a new `ObjectPageLazyLoader`.
6384
6355
  *
@@ -6511,7 +6482,6 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
6511
6482
  vContent: int | string | Control
6512
6483
  ): Control | null;
6513
6484
  }
6514
- export default ObjectPageLazyLoader;
6515
6485
 
6516
6486
  export interface $ObjectPageLazyLoaderSettings extends $ElementSettings {
6517
6487
  /**
@@ -6541,7 +6511,7 @@ declare module "sap/uxap/ObjectPageSection" {
6541
6511
  } from "sap/ui/base/ManagedObject";
6542
6512
 
6543
6513
  /**
6544
- * @SINCE 1.26
6514
+ * @since 1.26
6545
6515
  *
6546
6516
  * Top-level information container of an {@link sap.uxap.ObjectPageLayout}.
6547
6517
  *
@@ -6549,7 +6519,7 @@ declare module "sap/uxap/ObjectPageSection" {
6549
6519
  *
6550
6520
  * **Note:** This control is intended to be used only as part of the `ObjectPageLayout`.
6551
6521
  */
6552
- class ObjectPageSection extends ObjectPageSectionBase {
6522
+ export default class ObjectPageSection extends ObjectPageSectionBase {
6553
6523
  /**
6554
6524
  * Constructor for a new `ObjectPageSection`.
6555
6525
  *
@@ -6622,7 +6592,7 @@ declare module "sap/uxap/ObjectPageSection" {
6622
6592
  oSubSection: ObjectPageSubSection
6623
6593
  ): this;
6624
6594
  /**
6625
- * @SINCE 1.106
6595
+ * @since 1.106
6626
6596
  *
6627
6597
  * Destroys the heading in the aggregation {@link #getHeading heading}.
6628
6598
  *
@@ -6636,7 +6606,7 @@ declare module "sap/uxap/ObjectPageSection" {
6636
6606
  */
6637
6607
  destroySubSections(): this;
6638
6608
  /**
6639
- * @SINCE 1.106
6609
+ * @since 1.106
6640
6610
  *
6641
6611
  * Gets content of aggregation {@link #getHeading heading}.
6642
6612
  *
@@ -6735,7 +6705,7 @@ declare module "sap/uxap/ObjectPageSection" {
6735
6705
  vSubSection: int | string | ObjectPageSubSection
6736
6706
  ): ObjectPageSubSection | null;
6737
6707
  /**
6738
- * @SINCE 1.106
6708
+ * @since 1.106
6739
6709
  *
6740
6710
  * Sets the aggregated {@link #getHeading heading}.
6741
6711
  *
@@ -6811,7 +6781,6 @@ declare module "sap/uxap/ObjectPageSection" {
6811
6781
  bWrapTitle?: boolean
6812
6782
  ): this;
6813
6783
  }
6814
- export default ObjectPageSection;
6815
6784
 
6816
6785
  export interface $ObjectPageSectionSettings
6817
6786
  extends $ObjectPageSectionBaseSettings {
@@ -6840,7 +6809,7 @@ declare module "sap/uxap/ObjectPageSection" {
6840
6809
  | `{${string}}`;
6841
6810
 
6842
6811
  /**
6843
- * @SINCE 1.106
6812
+ * @since 1.106
6844
6813
  *
6845
6814
  * Section heading content.
6846
6815
  *
@@ -6869,11 +6838,11 @@ declare module "sap/uxap/ObjectPageSectionBase" {
6869
6838
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
6870
6839
 
6871
6840
  /**
6872
- * @SINCE 1.26
6841
+ * @since 1.26
6873
6842
  *
6874
6843
  * An abstract container for sections and subsections in the {@link sap.uxap.ObjectPageLayout}.
6875
6844
  */
6876
- class ObjectPageSectionBase extends Control {
6845
+ export default class ObjectPageSectionBase extends Control {
6877
6846
  /**
6878
6847
  * Constructor for a new `ObjectPageSectionBase`.
6879
6848
  *
@@ -6956,7 +6925,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
6956
6925
  */
6957
6926
  getCustomAnchorBarButton(): Button;
6958
6927
  /**
6959
- * @SINCE 1.32.0
6928
+ * @since 1.32.0
6960
6929
  *
6961
6930
  * Gets current value of property {@link #getImportance importance}.
6962
6931
  *
@@ -6968,7 +6937,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
6968
6937
  */
6969
6938
  getImportance(): Importance | keyof typeof Importance;
6970
6939
  /**
6971
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
6940
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
6972
6941
  *
6973
6942
  * Returns the control name text.
6974
6943
  *
@@ -6990,7 +6959,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
6990
6959
  */
6991
6960
  getTitle(): string;
6992
6961
  /**
6993
- * @SINCE 1.44.0
6962
+ * @since 1.44.0
6994
6963
  *
6995
6964
  * Gets current value of property {@link #getTitleLevel titleLevel}.
6996
6965
  *
@@ -7029,7 +6998,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
7029
6998
  oCustomAnchorBarButton: Button
7030
6999
  ): this;
7031
7000
  /**
7032
- * @SINCE 1.32.0
7001
+ * @since 1.32.0
7033
7002
  *
7034
7003
  * Sets a new value for property {@link #getImportance importance}.
7035
7004
  *
@@ -7067,7 +7036,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
7067
7036
  sTitle?: string
7068
7037
  ): this;
7069
7038
  /**
7070
- * @SINCE 1.44.0
7039
+ * @since 1.44.0
7071
7040
  *
7072
7041
  * Sets a new value for property {@link #getTitleLevel titleLevel}.
7073
7042
  *
@@ -7109,7 +7078,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
7109
7078
  bVisible?: boolean
7110
7079
  ): this;
7111
7080
  /**
7112
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
7081
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
7113
7082
  *
7114
7083
  * Performs the update of the invisible text label. This method is called for example when the section title
7115
7084
  * is changed.
@@ -7118,7 +7087,6 @@ declare module "sap/uxap/ObjectPageSectionBase" {
7118
7087
  */
7119
7088
  updateInvisibleTextLabelValue(): this;
7120
7089
  }
7121
- export default ObjectPageSectionBase;
7122
7090
 
7123
7091
  export interface $ObjectPageSectionBaseSettings extends $ControlSettings {
7124
7092
  /**
@@ -7131,7 +7099,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
7131
7099
  title?: string | PropertyBindingInfo;
7132
7100
 
7133
7101
  /**
7134
- * @SINCE 1.44.0
7102
+ * @since 1.44.0
7135
7103
  *
7136
7104
  * Determines the ARIA level of the `ObjectPageSectionBase` title. The ARIA level is used by assisting technologies,
7137
7105
  * such as screen readers, to create a hierarchical site map for faster navigation.
@@ -7152,7 +7120,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
7152
7120
  visible?: boolean | PropertyBindingInfo | `{${string}}`;
7153
7121
 
7154
7122
  /**
7155
- * @SINCE 1.32.0
7123
+ * @since 1.32.0
7156
7124
  *
7157
7125
  * Determines whether the section will be hidden on low resolutions.
7158
7126
  */
@@ -7193,7 +7161,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
7193
7161
  } from "sap/ui/base/ManagedObject";
7194
7162
 
7195
7163
  /**
7196
- * @SINCE 1.26
7164
+ * @since 1.26
7197
7165
  *
7198
7166
  * Second-level information container of an {@link sap.uxap.ObjectPageLayout}.
7199
7167
  *
@@ -7209,7 +7177,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
7209
7177
  *
7210
7178
  * **Note:** This control is intended to be used only as part of the `ObjectPageLayout`.
7211
7179
  */
7212
- class ObjectPageSubSection extends ObjectPageSectionBase {
7180
+ export default class ObjectPageSubSection extends ObjectPageSectionBase {
7213
7181
  /**
7214
7182
  * Constructor for a new `ObjectPageSubSection`.
7215
7183
  *
@@ -7377,7 +7345,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
7377
7345
  */
7378
7346
  getMoreBlocks(): Control[];
7379
7347
  /**
7380
- * @SINCE 1.77
7348
+ * @since 1.77
7381
7349
  *
7382
7350
  * Gets current value of property {@link #getShowTitle showTitle}.
7383
7351
  *
@@ -7568,7 +7536,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
7568
7536
  sMode?: ObjectPageSubSectionMode | keyof typeof ObjectPageSubSectionMode
7569
7537
  ): this;
7570
7538
  /**
7571
- * @SINCE 1.77
7539
+ * @since 1.77
7572
7540
  *
7573
7541
  * Sets a new value for property {@link #getShowTitle showTitle}.
7574
7542
  *
@@ -7609,12 +7577,11 @@ declare module "sap/uxap/ObjectPageSubSection" {
7609
7577
  bTitleUppercase?: boolean
7610
7578
  ): this;
7611
7579
  }
7612
- export default ObjectPageSubSection;
7613
7580
 
7614
7581
  export interface $ObjectPageSubSectionSettings
7615
7582
  extends $ObjectPageSectionBaseSettings {
7616
7583
  /**
7617
- * @SINCE 1.77
7584
+ * @since 1.77
7618
7585
  *
7619
7586
  * Determines whether to display the `SubSection` title or not.
7620
7587
  *