@sapui5/ts-types 1.114.0 → 1.115.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.
Files changed (62) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +2 -2
  3. package/types/sap.ca.ui.d.ts +135 -67
  4. package/types/sap.chart.d.ts +154 -125
  5. package/types/sap.collaboration.d.ts +80 -78
  6. package/types/sap.esh.search.ui.d.ts +93 -1
  7. package/types/sap.f.d.ts +1331 -950
  8. package/types/sap.fe.core.d.ts +38 -152
  9. package/types/sap.fe.macros.d.ts +53 -7
  10. package/types/sap.fe.navigation.d.ts +34 -27
  11. package/types/sap.fe.templates.d.ts +8 -275
  12. package/types/sap.fe.test.d.ts +4 -10
  13. package/types/sap.feedback.ui.d.ts +1 -1
  14. package/types/sap.gantt.d.ts +1716 -1087
  15. package/types/sap.insights.d.ts +1 -1
  16. package/types/sap.landvisz.d.ts +35 -9
  17. package/types/sap.m.d.ts +7228 -4499
  18. package/types/sap.makit.d.ts +17 -5
  19. package/types/sap.me.d.ts +122 -63
  20. package/types/sap.ndc.d.ts +99 -39
  21. package/types/sap.ovp.d.ts +1 -2
  22. package/types/sap.rules.ui.d.ts +43 -19
  23. package/types/sap.sac.df.d.ts +3 -3
  24. package/types/sap.suite.ui.commons.d.ts +2056 -1282
  25. package/types/sap.suite.ui.generic.template.d.ts +29 -40
  26. package/types/sap.suite.ui.microchart.d.ts +188 -136
  27. package/types/sap.tnt.d.ts +134 -54
  28. package/types/sap.ui.codeeditor.d.ts +51 -29
  29. package/types/sap.ui.commons.d.ts +1017 -599
  30. package/types/sap.ui.comp.d.ts +2370 -1523
  31. package/types/sap.ui.core.d.ts +4086 -2346
  32. package/types/sap.ui.dt.d.ts +1 -1
  33. package/types/sap.ui.export.d.ts +32 -29
  34. package/types/sap.ui.fl.d.ts +123 -80
  35. package/types/sap.ui.generic.app.d.ts +40 -39
  36. package/types/sap.ui.generic.template.d.ts +1 -1
  37. package/types/sap.ui.integration.d.ts +241 -163
  38. package/types/sap.ui.layout.d.ts +312 -355
  39. package/types/sap.ui.mdc.d.ts +21827 -6
  40. package/types/sap.ui.richtexteditor.d.ts +61 -49
  41. package/types/sap.ui.rta.d.ts +1 -2
  42. package/types/sap.ui.suite.d.ts +9 -9
  43. package/types/sap.ui.support.d.ts +5 -7
  44. package/types/sap.ui.table.d.ts +678 -452
  45. package/types/sap.ui.testrecorder.d.ts +1 -1
  46. package/types/sap.ui.unified.d.ts +925 -593
  47. package/types/sap.ui.ux3.d.ts +1038 -549
  48. package/types/sap.ui.vbm.d.ts +1262 -710
  49. package/types/sap.ui.vk.d.ts +2981 -1751
  50. package/types/sap.ui.vtm.d.ts +704 -457
  51. package/types/sap.ui.webc.common.d.ts +1 -1
  52. package/types/sap.ui.webc.fiori.d.ts +532 -301
  53. package/types/sap.ui.webc.main.d.ts +1222 -720
  54. package/types/sap.uiext.inbox.d.ts +47 -24
  55. package/types/sap.ushell.d.ts +359 -173
  56. package/types/sap.ushell_abap.d.ts +1 -1
  57. package/types/sap.uxap.d.ts +287 -199
  58. package/types/sap.viz.d.ts +678 -391
  59. package/types/sap.webanalytics.core.d.ts +1 -1
  60. package/types/sap.zen.commons.d.ts +5 -5
  61. package/types/sap.zen.crosstab.d.ts +1 -1
  62. package/types/sap.zen.dsh.d.ts +147 -81
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.114.0
1
+ // For Library Version: 1.115.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -8,10 +8,49 @@ declare namespace sap {
8
8
  */
9
9
  namespace f {
10
10
  namespace cards {
11
+ namespace loading {
12
+ /**
13
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
14
+ *
15
+ * PlaceholderBase renderer.
16
+ */
17
+ interface PlaceholderBaseRenderer {
18
+ /**
19
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
20
+ *
21
+ * This method is reserved for derived classes to add their respective attributes.
22
+ */
23
+ addOuterAttributes(
24
+ /**
25
+ * An object representation of the control that should be rendered.
26
+ */
27
+ oControl: /* was: sap.f.cards.loading.PlaceholderBase */ any,
28
+ /**
29
+ * The RenderManager that can be used for writing to the render output buffer.
30
+ */
31
+ oRm: sap.ui.core.RenderManager
32
+ ): void;
33
+ /**
34
+ * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
35
+ *
36
+ * This method is reserved for derived classes to render their respective content.
37
+ */
38
+ renderContent(
39
+ /**
40
+ * An object representation of the control that should be rendered.
41
+ */
42
+ oControl: /* was: sap.f.cards.loading.PlaceholderBase */ any,
43
+ /**
44
+ * The RenderManager that can be used for writing to the render output buffer.
45
+ */
46
+ oRm: sap.ui.core.RenderManager
47
+ ): void;
48
+ }
49
+ }
11
50
  /**
12
51
  * @SINCE 1.62
13
52
  *
14
- * Marker interface for controls suitable as a header in controls that implement the {@link sap.f.ICard}
53
+ * Marker interface for controls suitable as a header in controls that implement the {@link sap.f.ICard }
15
54
  * interface.
16
55
  */
17
56
  interface IHeader {
@@ -283,6 +322,10 @@ declare namespace sap {
283
322
  | `{${string}}`;
284
323
  }
285
324
 
325
+ interface $HeaderPressEventParameters {}
326
+
327
+ interface $NumericHeaderPressEventParameters {}
328
+
286
329
  /**
287
330
  * @SINCE 1.86
288
331
  *
@@ -1227,8 +1270,8 @@ declare namespace sap {
1227
1270
  */
1228
1271
  getUnitOfMeasurement(): string;
1229
1272
  /**
1230
- * Checks for the provided `sap.f.cards.NumericSideIndicator` in the aggregation {@link #getSideIndicators
1231
- * sideIndicators}. and returns its index if found or -1 otherwise.
1273
+ * Checks for the provided `sap.f.cards.NumericSideIndicator` in the aggregation {@link #getSideIndicators sideIndicators}.
1274
+ * and returns its index if found or -1 otherwise.
1232
1275
  *
1233
1276
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
1234
1277
  */
@@ -1753,7 +1796,7 @@ declare namespace sap {
1753
1796
  * When position is different than `Between` or layout is not `Horizontal`, the drag and drop will look
1754
1797
  * and behave like the general `{@link sap.ui.core.dnd.DropInfo}`.
1755
1798
  *
1756
- * **Note:** This configuration might be ignored due to control {@link sap.ui.core.Element.extend metadata}
1799
+ * **Note:** This configuration might be ignored due to control {@link sap.ui.core.Element.extend metadata }
1757
1800
  * restrictions.
1758
1801
  */
1759
1802
  class GridDropInfo
@@ -2057,9 +2100,8 @@ declare namespace sap {
2057
2100
  */
2058
2101
  oRoutes?: object | object[],
2059
2102
  /**
2060
- * the Component of all the views that will be created by this Router, will get forwarded to the {@link
2061
- * sap.ui.core.routing.Views#constructor}. If you are using the componentMetadata to define your routes
2062
- * you should skip this parameter.
2103
+ * the Component of all the views that will be created by this Router, will get forwarded to the {@link sap.ui.core.routing.Views#constructor}.
2104
+ * If you are using the componentMetadata to define your routes you should skip this parameter.
2063
2105
  */
2064
2106
  oOwner?: sap.ui.core.UIComponent,
2065
2107
  /**
@@ -2379,8 +2421,7 @@ declare namespace sap {
2379
2421
  usage?: string;
2380
2422
  /**
2381
2423
  * The type of the view that is going to be created. These are the supported types: {@link sap.ui.core.mvc.ViewType}.
2382
- * You always have to provide a viewType except if `oOptions.config.viewType` is set or when using {@link
2383
- * sap.ui.core.routing.Views#setView}.
2424
+ * You always have to provide a viewType except if `oOptions.config.viewType` is set or when using {@link sap.ui.core.routing.Views#setView}.
2384
2425
  */
2385
2426
  viewType?: string;
2386
2427
  /**
@@ -2409,7 +2450,7 @@ declare namespace sap {
2409
2450
  /**
2410
2451
  * The ID of the control where you want to place the view created by this target. The view of the target
2411
2452
  * will be put into this container Control, using the controlAggregation property. You have to specify both
2412
- * properties or the target will not be able to place itself. An example for containers are {@link sap.ui.ux3.Shell}
2453
+ * properties or the target will not be able to place itself. An example for containers are {@link sap.ui.ux3.Shell }
2413
2454
  * with the aggregation 'content' or a {@link sap.m.NavContainer} with the aggregation 'pages'.
2414
2455
  */
2415
2456
  controlId?: string;
@@ -2553,11 +2594,11 @@ declare namespace sap {
2553
2594
  *
2554
2595
  * Currently the 'userData' target is displayed.
2555
2596
  * - If we navigate to 'startPage' the navContainer will show a backwards navigation, since the `level`
2556
- * is lower.
2597
+ * is lower.
2557
2598
  * - If we navigate to 'userData' the navContainer will show a forwards navigation, since the `level`
2558
- * is higher.
2599
+ * is higher.
2559
2600
  * - If we navigate to 'settings' the navContainer will show a forwards navigation, since the `level`
2560
- * is not defined and cannot be compared.
2601
+ * is not defined and cannot be compared.
2561
2602
  */
2562
2603
  level?: int;
2563
2604
  /**
@@ -2795,7 +2836,7 @@ declare namespace sap {
2795
2836
  * Optimizes `SemanticPage` responsiveness on small screens and behavior when expanding/collapsing the `SemanticPageHeader`.
2796
2837
  *
2797
2838
  * **Note:** It is recommended to use this property when displaying content of adaptive controls that stretch
2798
- * to fill the available space. Such controls may be {@link sap.ui.table.Table} and {@link sap.ui.table.AnalyticalTable}
2839
+ * to fill the available space. Such controls may be {@link sap.ui.table.Table} and {@link sap.ui.table.AnalyticalTable }
2799
2840
  * depending on their settings.
2800
2841
  */
2801
2842
  fitContent?:
@@ -2811,12 +2852,12 @@ declare namespace sap {
2811
2852
  * **Notes:**
2812
2853
  * - The control will be placed in the title`s leftmost area.
2813
2854
  * - `titleHeading` is mutually exclusive with `titleSnappedHeading` and `titleExpandedHeading`. If `titleHeading`
2814
- * is provided, both `titleSnappedHeading` and `titleExpandedHeading` are ignored. `titleHeading` is useful
2815
- * when the content of `titleSnappedHeading` and `titleExpandedHeading` needs to be the same as it replaces
2816
- * them both.
2855
+ * is provided, both `titleSnappedHeading` and `titleExpandedHeading` are ignored. `titleHeading` is useful
2856
+ * when the content of `titleSnappedHeading` and `titleExpandedHeading` needs to be the same as it replaces
2857
+ * them both.
2817
2858
  * - If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when the
2818
- * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
2819
- * state.
2859
+ * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
2860
+ * state.
2820
2861
  */
2821
2862
  titleHeading?: sap.ui.core.Control;
2822
2863
 
@@ -2842,10 +2883,10 @@ declare namespace sap {
2842
2883
  *
2843
2884
  * **Notes:**
2844
2885
  * - In order for `titleSnappedHeading` to be taken into account, `titleHeading` has to be empty. Combine
2845
- * `titleSnappedHeading` with `titleExpandedHeading` to switch content when the header switches state.
2886
+ * `titleSnappedHeading` with `titleExpandedHeading` to switch content when the header switches state.
2846
2887
  * - If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when the
2847
- * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
2848
- * state.
2888
+ * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
2889
+ * state.
2849
2890
  */
2850
2891
  titleSnappedHeading?: sap.ui.core.Control;
2851
2892
 
@@ -2860,8 +2901,8 @@ declare namespace sap {
2860
2901
  * **Notes:**
2861
2902
  * - The control will be placed in the title`s top-left area.
2862
2903
  * - If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when the
2863
- * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
2864
- * state.
2904
+ * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
2905
+ * state.
2865
2906
  */
2866
2907
  titleBreadcrumbs?: sap.m.IBreadcrumbs;
2867
2908
 
@@ -2886,8 +2927,8 @@ declare namespace sap {
2886
2927
  * **Notes:**
2887
2928
  * - The controls will be placed in the title`s left area, under the `titleHeading` aggregation.
2888
2929
  * - If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when the
2889
- * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
2890
- * state.
2930
+ * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
2931
+ * state.
2891
2932
  */
2892
2933
  titleSnappedContent?:
2893
2934
  | sap.ui.core.Control[]
@@ -2914,8 +2955,8 @@ declare namespace sap {
2914
2955
  * **Notes:**
2915
2956
  * - The controls will be placed in the middle area.
2916
2957
  * - If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when the
2917
- * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
2918
- * state.
2958
+ * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
2959
+ * state.
2919
2960
  */
2920
2961
  titleContent?:
2921
2962
  | sap.ui.core.Control[]
@@ -3021,10 +3062,10 @@ declare namespace sap {
3021
3062
  *
3022
3063
  * **Notes:**
3023
3064
  * - If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when the
3024
- * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
3025
- * state.
3065
+ * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
3066
+ * state.
3026
3067
  * - Buttons that are part of this aggregation will always have their `type` property set to `Transparent`
3027
- * by design.
3068
+ * by design.
3028
3069
  */
3029
3070
  titleCustomTextActions?:
3030
3071
  | sap.m.Button[]
@@ -3059,11 +3100,10 @@ declare namespace sap {
3059
3100
  * The `SemanticPage` content.
3060
3101
  *
3061
3102
  * **Note:** The SAP Fiori Design guidelines require that the `SemanticPage`'s header content and the `SemanticPage`'s
3062
- * content are aligned vertically. When using {@link sap.ui.layout.form.Form}, {@link sap.m.Panel}, {@link
3063
- * sap.m.Table} and {@link sap.m.List} in the content area of `SemanticPage`, if the content is not already
3064
- * aligned, you need to adjust their left text offset to achieve the vertical alignment. To do this, apply
3065
- * the `sapFSemanticPageAlignContent` CSS class to them and set their `width` property to `auto` (if not
3066
- * set by default).
3103
+ * content are aligned vertically. When using {@link sap.ui.layout.form.Form}, {@link sap.m.Panel}, {@link sap.m.Table }
3104
+ * and {@link sap.m.List} in the content area of `SemanticPage`, if the content is not already aligned,
3105
+ * you need to adjust their left text offset to achieve the vertical alignment. To do this, apply the `sapFSemanticPageAlignContent`
3106
+ * CSS class to them and set their `width` property to `auto` (if not set by default).
3067
3107
  *
3068
3108
  * Example:
3069
3109
  *
@@ -3074,7 +3114,7 @@ declare namespace sap {
3074
3114
  * ```
3075
3115
  *
3076
3116
  *
3077
- * Please keep in mind that the alignment is not possible when the controls are placed in a {@link sap.ui.layout.Grid}
3117
+ * Please keep in mind that the alignment is not possible when the controls are placed in a {@link sap.ui.layout.Grid }
3078
3118
  * or in other layout controls that use `overflow:hidden` CSS property.
3079
3119
  */
3080
3120
  content?: sap.ui.core.Control;
@@ -3220,7 +3260,7 @@ declare namespace sap {
3220
3260
  /**
3221
3261
  * @SINCE 1.46.0
3222
3262
  *
3223
- * A semantic-specific button, eligible for the `addAction` aggregation of the {@link sap.f.semantic.SemanticPage}
3263
+ * A semantic-specific button, eligible for the `addAction` aggregation of the {@link sap.f.semantic.SemanticPage }
3224
3264
  * to be placed in its title.
3225
3265
  */
3226
3266
  class AddAction extends sap.f.semantic.SemanticButton {
@@ -3231,8 +3271,8 @@ declare namespace sap {
3231
3271
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3232
3272
  * of the syntax of the settings object.
3233
3273
  *
3234
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3235
- * sap.f.semantic.SemanticButton} can be used.
3274
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3275
+ * can be used.
3236
3276
  */
3237
3277
  constructor(
3238
3278
  /**
@@ -3248,8 +3288,8 @@ declare namespace sap {
3248
3288
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3249
3289
  * of the syntax of the settings object.
3250
3290
  *
3251
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3252
- * sap.f.semantic.SemanticButton} can be used.
3291
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3292
+ * can be used.
3253
3293
  */
3254
3294
  constructor(
3255
3295
  /**
@@ -3296,7 +3336,7 @@ declare namespace sap {
3296
3336
  /**
3297
3337
  * @SINCE 1.46.0
3298
3338
  *
3299
- * A semantic-specific button, eligible for the `closeAction` aggregation of the {@link sap.f.semantic.SemanticPage}
3339
+ * A semantic-specific button, eligible for the `closeAction` aggregation of the {@link sap.f.semantic.SemanticPage }
3300
3340
  * to be placed in its title.
3301
3341
  */
3302
3342
  class CloseAction extends sap.f.semantic.SemanticButton {
@@ -3307,8 +3347,8 @@ declare namespace sap {
3307
3347
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3308
3348
  * of the syntax of the settings object.
3309
3349
  *
3310
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3311
- * sap.f.semantic.SemanticButton} can be used.
3350
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3351
+ * can be used.
3312
3352
  */
3313
3353
  constructor(
3314
3354
  /**
@@ -3324,8 +3364,8 @@ declare namespace sap {
3324
3364
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3325
3365
  * of the syntax of the settings object.
3326
3366
  *
3327
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3328
- * sap.f.semantic.SemanticButton} can be used.
3367
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3368
+ * can be used.
3329
3369
  */
3330
3370
  constructor(
3331
3371
  /**
@@ -3372,7 +3412,7 @@ declare namespace sap {
3372
3412
  /**
3373
3413
  * @SINCE 1.46.0
3374
3414
  *
3375
- * A semantic-specific button, eligible for the `copyAction` aggregation of the {@link sap.f.semantic.SemanticPage}
3415
+ * A semantic-specific button, eligible for the `copyAction` aggregation of the {@link sap.f.semantic.SemanticPage }
3376
3416
  * to be placed in its title.
3377
3417
  */
3378
3418
  class CopyAction extends sap.f.semantic.SemanticButton {
@@ -3383,8 +3423,8 @@ declare namespace sap {
3383
3423
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3384
3424
  * of the syntax of the settings object.
3385
3425
  *
3386
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3387
- * sap.f.semantic.SemanticButton} can be used.
3426
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3427
+ * can be used.
3388
3428
  */
3389
3429
  constructor(
3390
3430
  /**
@@ -3400,8 +3440,8 @@ declare namespace sap {
3400
3440
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3401
3441
  * of the syntax of the settings object.
3402
3442
  *
3403
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3404
- * sap.f.semantic.SemanticButton} can be used.
3443
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3444
+ * can be used.
3405
3445
  */
3406
3446
  constructor(
3407
3447
  /**
@@ -3448,7 +3488,7 @@ declare namespace sap {
3448
3488
  /**
3449
3489
  * @SINCE 1.46.0
3450
3490
  *
3451
- * A semantic-specific button, eligible for the `deleteAction` aggregation of the {@link sap.f.semantic.SemanticPage}
3491
+ * A semantic-specific button, eligible for the `deleteAction` aggregation of the {@link sap.f.semantic.SemanticPage }
3452
3492
  * to be placed in its title.
3453
3493
  */
3454
3494
  class DeleteAction extends sap.f.semantic.SemanticButton {
@@ -3459,8 +3499,8 @@ declare namespace sap {
3459
3499
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3460
3500
  * of the syntax of the settings object.
3461
3501
  *
3462
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3463
- * sap.f.semantic.SemanticButton} can be used.
3502
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3503
+ * can be used.
3464
3504
  */
3465
3505
  constructor(
3466
3506
  /**
@@ -3476,8 +3516,8 @@ declare namespace sap {
3476
3516
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3477
3517
  * of the syntax of the settings object.
3478
3518
  *
3479
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3480
- * sap.f.semantic.SemanticButton} can be used.
3519
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3520
+ * can be used.
3481
3521
  */
3482
3522
  constructor(
3483
3523
  /**
@@ -3524,7 +3564,7 @@ declare namespace sap {
3524
3564
  /**
3525
3565
  * @SINCE 1.46.0
3526
3566
  *
3527
- * A semantic-specific button, eligible for the `discussInJamAction` aggregation of the {@link sap.f.semantic.SemanticPage}
3567
+ * A semantic-specific button, eligible for the `discussInJamAction` aggregation of the {@link sap.f.semantic.SemanticPage }
3528
3568
  * to be placed in the share menu within its title.
3529
3569
  */
3530
3570
  class DiscussInJamAction extends sap.f.semantic.SemanticButton {
@@ -3535,8 +3575,8 @@ declare namespace sap {
3535
3575
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3536
3576
  * of the syntax of the settings object.
3537
3577
  *
3538
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3539
- * sap.f.semantic.SemanticButton} can be used.
3578
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3579
+ * can be used.
3540
3580
  */
3541
3581
  constructor(
3542
3582
  /**
@@ -3552,8 +3592,8 @@ declare namespace sap {
3552
3592
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3553
3593
  * of the syntax of the settings object.
3554
3594
  *
3555
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3556
- * sap.f.semantic.SemanticButton} can be used.
3595
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3596
+ * can be used.
3557
3597
  */
3558
3598
  constructor(
3559
3599
  /**
@@ -3600,7 +3640,7 @@ declare namespace sap {
3600
3640
  /**
3601
3641
  * @SINCE 1.50
3602
3642
  *
3603
- * A semantic-specific button, eligible for the `editAction` aggregation of the {@link sap.f.semantic.SemanticPage}
3643
+ * A semantic-specific button, eligible for the `editAction` aggregation of the {@link sap.f.semantic.SemanticPage }
3604
3644
  * to be placed in its title.
3605
3645
  */
3606
3646
  class EditAction extends sap.f.semantic.SemanticButton {
@@ -3611,8 +3651,8 @@ declare namespace sap {
3611
3651
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3612
3652
  * of the syntax of the settings object.
3613
3653
  *
3614
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3615
- * sap.f.semantic.SemanticButton} can be used.
3654
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3655
+ * can be used.
3616
3656
  */
3617
3657
  constructor(
3618
3658
  /**
@@ -3628,8 +3668,8 @@ declare namespace sap {
3628
3668
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3629
3669
  * of the syntax of the settings object.
3630
3670
  *
3631
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3632
- * sap.f.semantic.SemanticButton} can be used.
3671
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3672
+ * can be used.
3633
3673
  */
3634
3674
  constructor(
3635
3675
  /**
@@ -3676,7 +3716,7 @@ declare namespace sap {
3676
3716
  /**
3677
3717
  * @SINCE 1.46.0
3678
3718
  *
3679
- * A semantic-specific button, eligible for the `exitFullScreenAction` aggregation of the {@link sap.f.semantic.SemanticPage}
3719
+ * A semantic-specific button, eligible for the `exitFullScreenAction` aggregation of the {@link sap.f.semantic.SemanticPage }
3680
3720
  * to be placed in its title.
3681
3721
  */
3682
3722
  class ExitFullScreenAction extends sap.f.semantic.SemanticButton {
@@ -3687,8 +3727,8 @@ declare namespace sap {
3687
3727
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3688
3728
  * of the syntax of the settings object.
3689
3729
  *
3690
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3691
- * sap.f.semantic.SemanticButton} can be used.
3730
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3731
+ * can be used.
3692
3732
  */
3693
3733
  constructor(
3694
3734
  /**
@@ -3704,8 +3744,8 @@ declare namespace sap {
3704
3744
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3705
3745
  * of the syntax of the settings object.
3706
3746
  *
3707
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3708
- * sap.f.semantic.SemanticButton} can be used.
3747
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
3748
+ * can be used.
3709
3749
  */
3710
3750
  constructor(
3711
3751
  /**
@@ -3752,7 +3792,7 @@ declare namespace sap {
3752
3792
  /**
3753
3793
  * @SINCE 1.46.0
3754
3794
  *
3755
- * A semantic-specific button, eligible for the `favoriteAction` aggregation of the {@link sap.f.semantic.SemanticPage}
3795
+ * A semantic-specific button, eligible for the `favoriteAction` aggregation of the {@link sap.f.semantic.SemanticPage }
3756
3796
  * to be placed in its title.
3757
3797
  */
3758
3798
  class FavoriteAction extends sap.f.semantic.SemanticToggleButton {
@@ -3763,8 +3803,8 @@ declare namespace sap {
3763
3803
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3764
3804
  * of the syntax of the settings object.
3765
3805
  *
3766
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticToggleButton#constructor
3767
- * sap.f.semantic.SemanticToggleButton} can be used.
3806
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticToggleButton#constructor sap.f.semantic.SemanticToggleButton }
3807
+ * can be used.
3768
3808
  */
3769
3809
  constructor(
3770
3810
  /**
@@ -3780,8 +3820,8 @@ declare namespace sap {
3780
3820
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3781
3821
  * of the syntax of the settings object.
3782
3822
  *
3783
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticToggleButton#constructor
3784
- * sap.f.semantic.SemanticToggleButton} can be used.
3823
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticToggleButton#constructor sap.f.semantic.SemanticToggleButton }
3824
+ * can be used.
3785
3825
  */
3786
3826
  constructor(
3787
3827
  /**
@@ -3828,7 +3868,7 @@ declare namespace sap {
3828
3868
  /**
3829
3869
  * @SINCE 1.46.0
3830
3870
  *
3831
- * A semantic-specific button, eligible for the `flagAction` aggregation of the {@link sap.f.semantic.SemanticPage}
3871
+ * A semantic-specific button, eligible for the `flagAction` aggregation of the {@link sap.f.semantic.SemanticPage }
3832
3872
  * to be placed in its title.
3833
3873
  */
3834
3874
  class FlagAction extends sap.f.semantic.SemanticToggleButton {
@@ -3839,8 +3879,8 @@ declare namespace sap {
3839
3879
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3840
3880
  * of the syntax of the settings object.
3841
3881
  *
3842
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticToggleButton#constructor
3843
- * sap.f.semantic.SemanticToggleButton} can be used.
3882
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticToggleButton#constructor sap.f.semantic.SemanticToggleButton }
3883
+ * can be used.
3844
3884
  */
3845
3885
  constructor(
3846
3886
  /**
@@ -3856,8 +3896,8 @@ declare namespace sap {
3856
3896
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3857
3897
  * of the syntax of the settings object.
3858
3898
  *
3859
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticToggleButton#constructor
3860
- * sap.f.semantic.SemanticToggleButton} can be used.
3899
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticToggleButton#constructor sap.f.semantic.SemanticToggleButton }
3900
+ * can be used.
3861
3901
  */
3862
3902
  constructor(
3863
3903
  /**
@@ -3904,7 +3944,7 @@ declare namespace sap {
3904
3944
  /**
3905
3945
  * @SINCE 1.46.0
3906
3946
  *
3907
- * A semantic-specific button, eligible for the `footerMainAction` aggregation of the {@link sap.f.semantic.SemanticPage}
3947
+ * A semantic-specific button, eligible for the `footerMainAction` aggregation of the {@link sap.f.semantic.SemanticPage }
3908
3948
  * to be placed in its footer.
3909
3949
  */
3910
3950
  class FooterMainAction extends sap.f.semantic.MainAction {
@@ -3915,8 +3955,8 @@ declare namespace sap {
3915
3955
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3916
3956
  * of the syntax of the settings object.
3917
3957
  *
3918
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.MainAction#constructor
3919
- * sap.f.semantic.MainAction} can be used.
3958
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.MainAction#constructor sap.f.semantic.MainAction }
3959
+ * can be used.
3920
3960
  */
3921
3961
  constructor(
3922
3962
  /**
@@ -3932,8 +3972,8 @@ declare namespace sap {
3932
3972
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3933
3973
  * of the syntax of the settings object.
3934
3974
  *
3935
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.MainAction#constructor
3936
- * sap.f.semantic.MainAction} can be used.
3975
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.MainAction#constructor sap.f.semantic.MainAction }
3976
+ * can be used.
3937
3977
  */
3938
3978
  constructor(
3939
3979
  /**
@@ -3980,7 +4020,7 @@ declare namespace sap {
3980
4020
  /**
3981
4021
  * @SINCE 1.46.0
3982
4022
  *
3983
- * A semantic-specific button, eligible for the `fullScreenAction` aggregation of the {@link sap.f.semantic.SemanticPage}
4023
+ * A semantic-specific button, eligible for the `fullScreenAction` aggregation of the {@link sap.f.semantic.SemanticPage }
3984
4024
  * to be placed in its title.
3985
4025
  */
3986
4026
  class FullScreenAction extends sap.f.semantic.SemanticButton {
@@ -3991,8 +4031,8 @@ declare namespace sap {
3991
4031
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3992
4032
  * of the syntax of the settings object.
3993
4033
  *
3994
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
3995
- * sap.f.semantic.SemanticButton} can be used.
4034
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
4035
+ * can be used.
3996
4036
  */
3997
4037
  constructor(
3998
4038
  /**
@@ -4008,8 +4048,8 @@ declare namespace sap {
4008
4048
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
4009
4049
  * of the syntax of the settings object.
4010
4050
  *
4011
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
4012
- * sap.f.semantic.SemanticButton} can be used.
4051
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
4052
+ * can be used.
4013
4053
  */
4014
4054
  constructor(
4015
4055
  /**
@@ -4056,7 +4096,7 @@ declare namespace sap {
4056
4096
  /**
4057
4097
  * @SINCE 1.46.0
4058
4098
  *
4059
- * Serves as a base class for the {@link sap.f.semantic.TitleMainAction} and {@link sap.f.semantic.FooterMainAction}
4099
+ * Serves as a base class for the {@link sap.f.semantic.TitleMainAction} and {@link sap.f.semantic.FooterMainAction }
4060
4100
  * controls.
4061
4101
  */
4062
4102
  class MainAction extends sap.f.semantic.SemanticButton {
@@ -4149,7 +4189,7 @@ declare namespace sap {
4149
4189
  /**
4150
4190
  * @SINCE 1.46.0
4151
4191
  *
4152
- * A semantic-specific button, eligible for the `messagesIndicator` aggregation of the {@link sap.f.semantic.SemanticPage}
4192
+ * A semantic-specific button, eligible for the `messagesIndicator` aggregation of the {@link sap.f.semantic.SemanticPage }
4153
4193
  * to be placed in its footer.
4154
4194
  */
4155
4195
  class MessagesIndicator extends sap.f.semantic.SemanticButton {
@@ -4160,8 +4200,8 @@ declare namespace sap {
4160
4200
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
4161
4201
  * of the syntax of the settings object.
4162
4202
  *
4163
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
4164
- * sap.f.semantic.SemanticButton} can be used.
4203
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
4204
+ * can be used.
4165
4205
  */
4166
4206
  constructor(
4167
4207
  /**
@@ -4177,8 +4217,8 @@ declare namespace sap {
4177
4217
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
4178
4218
  * of the syntax of the settings object.
4179
4219
  *
4180
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
4181
- * sap.f.semantic.SemanticButton} can be used.
4220
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
4221
+ * can be used.
4182
4222
  */
4183
4223
  constructor(
4184
4224
  /**
@@ -4225,7 +4265,7 @@ declare namespace sap {
4225
4265
  /**
4226
4266
  * @SINCE 1.46.0
4227
4267
  *
4228
- * A semantic-specific button, eligible for the `negativeAction` aggregation of the {@link sap.f.semantic.SemanticPage}
4268
+ * A semantic-specific button, eligible for the `negativeAction` aggregation of the {@link sap.f.semantic.SemanticPage }
4229
4269
  * to be placed in its footer.
4230
4270
  */
4231
4271
  class NegativeAction extends sap.f.semantic.SemanticButton {
@@ -4318,7 +4358,7 @@ declare namespace sap {
4318
4358
  /**
4319
4359
  * @SINCE 1.46.0
4320
4360
  *
4321
- * A semantic-specific button, eligible for the `positiveAction` aggregation of the {@link sap.f.semantic.SemanticPage}
4361
+ * A semantic-specific button, eligible for the `positiveAction` aggregation of the {@link sap.f.semantic.SemanticPage }
4322
4362
  * to be placed in its footer.
4323
4363
  */
4324
4364
  class PositiveAction extends sap.f.semantic.SemanticButton {
@@ -4411,7 +4451,7 @@ declare namespace sap {
4411
4451
  /**
4412
4452
  * @SINCE 1.46.0
4413
4453
  *
4414
- * A semantic-specific button, eligible for the `printAction` aggregation of the {@link sap.f.semantic.SemanticPage}
4454
+ * A semantic-specific button, eligible for the `printAction` aggregation of the {@link sap.f.semantic.SemanticPage }
4415
4455
  * to be placed in the share menu within its title.
4416
4456
  */
4417
4457
  class PrintAction extends sap.f.semantic.SemanticButton {
@@ -4422,8 +4462,8 @@ declare namespace sap {
4422
4462
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
4423
4463
  * of the syntax of the settings object.
4424
4464
  *
4425
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
4426
- * sap.f.semantic.SemanticButton} can be used.
4465
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
4466
+ * can be used.
4427
4467
  */
4428
4468
  constructor(
4429
4469
  /**
@@ -4439,8 +4479,8 @@ declare namespace sap {
4439
4479
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
4440
4480
  * of the syntax of the settings object.
4441
4481
  *
4442
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
4443
- * sap.f.semantic.SemanticButton} can be used.
4482
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
4483
+ * can be used.
4444
4484
  */
4445
4485
  constructor(
4446
4486
  /**
@@ -4498,8 +4538,8 @@ declare namespace sap {
4498
4538
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
4499
4539
  * of the syntax of the settings object.
4500
4540
  *
4501
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.semantic.SemanticButton#constructor
4502
- * sap.m.semantic.SemanticButton} can be used.
4541
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.semantic.SemanticButton#constructor sap.m.semantic.SemanticButton }
4542
+ * can be used.
4503
4543
  */
4504
4544
  constructor(
4505
4545
  /**
@@ -4514,8 +4554,8 @@ declare namespace sap {
4514
4554
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
4515
4555
  * of the syntax of the settings object.
4516
4556
  *
4517
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.semantic.SemanticButton#constructor
4518
- * sap.m.semantic.SemanticButton} can be used.
4557
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.semantic.SemanticButton#constructor sap.m.semantic.SemanticButton }
4558
+ * can be used.
4519
4559
  */
4520
4560
  constructor(
4521
4561
  /**
@@ -4713,9 +4753,9 @@ declare namespace sap {
4713
4753
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
4714
4754
  * of the syntax of the settings object.
4715
4755
  * See:
4716
- * {@link topic:47dc86847f7a426a8e557167cf523bda Semantic Page}
4717
- * {@link topic:84f3d52f492648d5b594e4f45dca7727 Semantic Pages}
4718
- * {@link topic:4a97a07ec8f5441d901994d82eaab1f5 Semantic Page (sap.m)}
4756
+ * {@link https://ui5.sap.com/#/topic/47dc86847f7a426a8e557167cf523bda Semantic Page}
4757
+ * {@link https://ui5.sap.com/#/topic/84f3d52f492648d5b594e4f45dca7727 Semantic Pages}
4758
+ * {@link https://ui5.sap.com/#/topic/4a97a07ec8f5441d901994d82eaab1f5 Semantic Page (sap.m)}
4719
4759
  * {@link fiori:https://experience.sap.com/fiori-design-web/semantic-page/ Semantic Page}
4720
4760
  */
4721
4761
  constructor(
@@ -4731,9 +4771,9 @@ declare namespace sap {
4731
4771
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
4732
4772
  * of the syntax of the settings object.
4733
4773
  * See:
4734
- * {@link topic:47dc86847f7a426a8e557167cf523bda Semantic Page}
4735
- * {@link topic:84f3d52f492648d5b594e4f45dca7727 Semantic Pages}
4736
- * {@link topic:4a97a07ec8f5441d901994d82eaab1f5 Semantic Page (sap.m)}
4774
+ * {@link https://ui5.sap.com/#/topic/47dc86847f7a426a8e557167cf523bda Semantic Page}
4775
+ * {@link https://ui5.sap.com/#/topic/84f3d52f492648d5b594e4f45dca7727 Semantic Pages}
4776
+ * {@link https://ui5.sap.com/#/topic/4a97a07ec8f5441d901994d82eaab1f5 Semantic Page (sap.m)}
4737
4777
  * {@link fiori:https://experience.sap.com/fiori-design-web/semantic-page/ Semantic Page}
4738
4778
  */
4739
4779
  constructor(
@@ -5122,11 +5162,10 @@ declare namespace sap {
5122
5162
  * The `SemanticPage` content.
5123
5163
  *
5124
5164
  * **Note:** The SAP Fiori Design guidelines require that the `SemanticPage`'s header content and the `SemanticPage`'s
5125
- * content are aligned vertically. When using {@link sap.ui.layout.form.Form}, {@link sap.m.Panel}, {@link
5126
- * sap.m.Table} and {@link sap.m.List} in the content area of `SemanticPage`, if the content is not already
5127
- * aligned, you need to adjust their left text offset to achieve the vertical alignment. To do this, apply
5128
- * the `sapFSemanticPageAlignContent` CSS class to them and set their `width` property to `auto` (if not
5129
- * set by default).
5165
+ * content are aligned vertically. When using {@link sap.ui.layout.form.Form}, {@link sap.m.Panel}, {@link sap.m.Table }
5166
+ * and {@link sap.m.List} in the content area of `SemanticPage`, if the content is not already aligned,
5167
+ * you need to adjust their left text offset to achieve the vertical alignment. To do this, apply the `sapFSemanticPageAlignContent`
5168
+ * CSS class to them and set their `width` property to `auto` (if not set by default).
5130
5169
  *
5131
5170
  * Example:
5132
5171
  *
@@ -5137,7 +5176,7 @@ declare namespace sap {
5137
5176
  * ```
5138
5177
  *
5139
5178
  *
5140
- * Please keep in mind that the alignment is not possible when the controls are placed in a {@link sap.ui.layout.Grid}
5179
+ * Please keep in mind that the alignment is not possible when the controls are placed in a {@link sap.ui.layout.Grid }
5141
5180
  * or in other layout controls that use `overflow:hidden` CSS property.
5142
5181
  */
5143
5182
  getContent(): sap.ui.core.Control;
@@ -5231,7 +5270,7 @@ declare namespace sap {
5231
5270
  * Optimizes `SemanticPage` responsiveness on small screens and behavior when expanding/collapsing the `SemanticPageHeader`.
5232
5271
  *
5233
5272
  * **Note:** It is recommended to use this property when displaying content of adaptive controls that stretch
5234
- * to fill the available space. Such controls may be {@link sap.ui.table.Table} and {@link sap.ui.table.AnalyticalTable}
5273
+ * to fill the available space. Such controls may be {@link sap.ui.table.Table} and {@link sap.ui.table.AnalyticalTable }
5235
5274
  * depending on their settings.
5236
5275
  *
5237
5276
  * Default value is `false`.
@@ -5452,8 +5491,8 @@ declare namespace sap {
5452
5491
  * **Notes:**
5453
5492
  * - The control will be placed in the title`s top-left area.
5454
5493
  * - If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when the
5455
- * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
5456
- * state.
5494
+ * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
5495
+ * state.
5457
5496
  */
5458
5497
  getTitleBreadcrumbs(): sap.m.IBreadcrumbs;
5459
5498
  /**
@@ -5466,8 +5505,8 @@ declare namespace sap {
5466
5505
  * **Notes:**
5467
5506
  * - The controls will be placed in the middle area.
5468
5507
  * - If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when the
5469
- * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
5470
- * state.
5508
+ * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
5509
+ * state.
5471
5510
  */
5472
5511
  getTitleContent(): sap.ui.core.Control[];
5473
5512
  /**
@@ -5489,10 +5528,10 @@ declare namespace sap {
5489
5528
  *
5490
5529
  * **Notes:**
5491
5530
  * - If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when the
5492
- * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
5493
- * state.
5531
+ * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
5532
+ * state.
5494
5533
  * - Buttons that are part of this aggregation will always have their `type` property set to `Transparent`
5495
- * by design.
5534
+ * by design.
5496
5535
  */
5497
5536
  getTitleCustomTextActions(): sap.m.Button[];
5498
5537
  /**
@@ -5527,12 +5566,12 @@ declare namespace sap {
5527
5566
  * **Notes:**
5528
5567
  * - The control will be placed in the title`s leftmost area.
5529
5568
  * - `titleHeading` is mutually exclusive with `titleSnappedHeading` and `titleExpandedHeading`. If `titleHeading`
5530
- * is provided, both `titleSnappedHeading` and `titleExpandedHeading` are ignored. `titleHeading` is useful
5531
- * when the content of `titleSnappedHeading` and `titleExpandedHeading` needs to be the same as it replaces
5532
- * them both.
5569
+ * is provided, both `titleSnappedHeading` and `titleExpandedHeading` are ignored. `titleHeading` is useful
5570
+ * when the content of `titleSnappedHeading` and `titleExpandedHeading` needs to be the same as it replaces
5571
+ * them both.
5533
5572
  * - If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when the
5534
- * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
5535
- * state.
5573
+ * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
5574
+ * state.
5536
5575
  */
5537
5576
  getTitleHeading(): sap.ui.core.Control;
5538
5577
  /**
@@ -5577,8 +5616,8 @@ declare namespace sap {
5577
5616
  * **Notes:**
5578
5617
  * - The controls will be placed in the title`s left area, under the `titleHeading` aggregation.
5579
5618
  * - If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when the
5580
- * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
5581
- * state.
5619
+ * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
5620
+ * state.
5582
5621
  */
5583
5622
  getTitleSnappedContent(): sap.ui.core.Control[];
5584
5623
  /**
@@ -5592,10 +5631,10 @@ declare namespace sap {
5592
5631
  *
5593
5632
  * **Notes:**
5594
5633
  * - In order for `titleSnappedHeading` to be taken into account, `titleHeading` has to be empty. Combine
5595
- * `titleSnappedHeading` with `titleExpandedHeading` to switch content when the header switches state.
5634
+ * `titleSnappedHeading` with `titleExpandedHeading` to switch content when the header switches state.
5596
5635
  * - If the `titleSnappedOnMobile` aggregation is set, its content overrides this aggregation when the
5597
- * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
5598
- * state.
5636
+ * control is viewed on a phone mobile device and the `SemanticPage` header is in its collapsed (snapped)
5637
+ * state.
5599
5638
  */
5600
5639
  getTitleSnappedHeading(): sap.ui.core.Control;
5601
5640
  /**
@@ -5679,8 +5718,8 @@ declare namespace sap {
5679
5718
  oTitleContent: sap.ui.core.Control
5680
5719
  ): int;
5681
5720
  /**
5682
- * Checks for the provided `sap.m.OverflowToolbarButton` in the aggregation {@link #getTitleCustomIconActions
5683
- * titleCustomIconActions}. and returns its index if found or -1 otherwise.
5721
+ * Checks for the provided `sap.m.OverflowToolbarButton` in the aggregation {@link #getTitleCustomIconActions titleCustomIconActions}.
5722
+ * and returns its index if found or -1 otherwise.
5684
5723
  *
5685
5724
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
5686
5725
  */
@@ -6140,7 +6179,7 @@ declare namespace sap {
6140
6179
  * Optimizes `SemanticPage` responsiveness on small screens and behavior when expanding/collapsing the `SemanticPageHeader`.
6141
6180
  *
6142
6181
  * **Note:** It is recommended to use this property when displaying content of adaptive controls that stretch
6143
- * to fill the available space. Such controls may be {@link sap.ui.table.Table} and {@link sap.ui.table.AnalyticalTable}
6182
+ * to fill the available space. Such controls may be {@link sap.ui.table.Table} and {@link sap.ui.table.AnalyticalTable }
6144
6183
  * depending on their settings.
6145
6184
  *
6146
6185
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
@@ -6509,8 +6548,8 @@ declare namespace sap {
6509
6548
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6510
6549
  * of the syntax of the settings object.
6511
6550
  *
6512
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.semantic.SemanticToggleButton#constructor
6513
- * sap.m.semantic.SemanticToggleButton} can be used.
6551
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.semantic.SemanticToggleButton#constructor sap.m.semantic.SemanticToggleButton }
6552
+ * can be used.
6514
6553
  */
6515
6554
  constructor(
6516
6555
  /**
@@ -6525,8 +6564,8 @@ declare namespace sap {
6525
6564
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6526
6565
  * of the syntax of the settings object.
6527
6566
  *
6528
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.semantic.SemanticToggleButton#constructor
6529
- * sap.m.semantic.SemanticToggleButton} can be used.
6567
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.semantic.SemanticToggleButton#constructor sap.m.semantic.SemanticToggleButton }
6568
+ * can be used.
6530
6569
  */
6531
6570
  constructor(
6532
6571
  /**
@@ -6572,7 +6611,7 @@ declare namespace sap {
6572
6611
  /**
6573
6612
  * @SINCE 1.46.0
6574
6613
  *
6575
- * A semantic-specific button, eligible for the `sendEmailAction` aggregation of the {@link sap.f.semantic.SemanticPage}
6614
+ * A semantic-specific button, eligible for the `sendEmailAction` aggregation of the {@link sap.f.semantic.SemanticPage }
6576
6615
  * to be placed in the share menu within its title.
6577
6616
  */
6578
6617
  class SendEmailAction extends sap.f.semantic.SemanticButton {
@@ -6583,8 +6622,8 @@ declare namespace sap {
6583
6622
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6584
6623
  * of the syntax of the settings object.
6585
6624
  *
6586
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
6587
- * sap.f.semantic.SemanticButton} can be used.
6625
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
6626
+ * can be used.
6588
6627
  */
6589
6628
  constructor(
6590
6629
  /**
@@ -6600,8 +6639,8 @@ declare namespace sap {
6600
6639
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6601
6640
  * of the syntax of the settings object.
6602
6641
  *
6603
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
6604
- * sap.f.semantic.SemanticButton} can be used.
6642
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
6643
+ * can be used.
6605
6644
  */
6606
6645
  constructor(
6607
6646
  /**
@@ -6648,7 +6687,7 @@ declare namespace sap {
6648
6687
  /**
6649
6688
  * @SINCE 1.46.0
6650
6689
  *
6651
- * A semantic-specific button, eligible for the `sendMessageAction` aggregation of the {@link sap.f.semantic.SemanticPage}
6690
+ * A semantic-specific button, eligible for the `sendMessageAction` aggregation of the {@link sap.f.semantic.SemanticPage }
6652
6691
  * to be placed in the share menu within its title.
6653
6692
  */
6654
6693
  class SendMessageAction extends sap.f.semantic.SemanticButton {
@@ -6659,8 +6698,8 @@ declare namespace sap {
6659
6698
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6660
6699
  * of the syntax of the settings object.
6661
6700
  *
6662
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
6663
- * sap.f.semantic.SemanticButton} can be used.
6701
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
6702
+ * can be used.
6664
6703
  */
6665
6704
  constructor(
6666
6705
  /**
@@ -6676,8 +6715,8 @@ declare namespace sap {
6676
6715
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6677
6716
  * of the syntax of the settings object.
6678
6717
  *
6679
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
6680
- * sap.f.semantic.SemanticButton} can be used.
6718
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
6719
+ * can be used.
6681
6720
  */
6682
6721
  constructor(
6683
6722
  /**
@@ -6724,7 +6763,7 @@ declare namespace sap {
6724
6763
  /**
6725
6764
  * @SINCE 1.46.0
6726
6765
  *
6727
- * A semantic-specific button, eligible for the `shareInJamAction` aggregation of the {@link sap.f.semantic.SemanticPage}
6766
+ * A semantic-specific button, eligible for the `shareInJamAction` aggregation of the {@link sap.f.semantic.SemanticPage }
6728
6767
  * to be placed in the share menu within its title.
6729
6768
  */
6730
6769
  class ShareInJamAction extends sap.f.semantic.SemanticButton {
@@ -6735,8 +6774,8 @@ declare namespace sap {
6735
6774
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6736
6775
  * of the syntax of the settings object.
6737
6776
  *
6738
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
6739
- * sap.f.semantic.SemanticButton} can be used.
6777
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
6778
+ * can be used.
6740
6779
  */
6741
6780
  constructor(
6742
6781
  /**
@@ -6752,8 +6791,8 @@ declare namespace sap {
6752
6791
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6753
6792
  * of the syntax of the settings object.
6754
6793
  *
6755
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor
6756
- * sap.f.semantic.SemanticButton} can be used.
6794
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.SemanticButton#constructor sap.f.semantic.SemanticButton }
6795
+ * can be used.
6757
6796
  */
6758
6797
  constructor(
6759
6798
  /**
@@ -6800,7 +6839,7 @@ declare namespace sap {
6800
6839
  /**
6801
6840
  * @SINCE 1.46.0
6802
6841
  *
6803
- * A semantic-specific button, eligible for the `titleMainAction` aggregation of the {@link sap.f.semantic.SemanticPage}
6842
+ * A semantic-specific button, eligible for the `titleMainAction` aggregation of the {@link sap.f.semantic.SemanticPage }
6804
6843
  * to be placed in its title.
6805
6844
  */
6806
6845
  class TitleMainAction extends sap.f.semantic.MainAction {
@@ -6811,8 +6850,8 @@ declare namespace sap {
6811
6850
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6812
6851
  * of the syntax of the settings object.
6813
6852
  *
6814
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.MainAction#constructor
6815
- * sap.f.semantic.MainAction} can be used.
6853
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.MainAction#constructor sap.f.semantic.MainAction }
6854
+ * can be used.
6816
6855
  */
6817
6856
  constructor(
6818
6857
  /**
@@ -6828,8 +6867,8 @@ declare namespace sap {
6828
6867
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6829
6868
  * of the syntax of the settings object.
6830
6869
  *
6831
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.MainAction#constructor
6832
- * sap.f.semantic.MainAction} can be used.
6870
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.f.semantic.MainAction#constructor sap.f.semantic.MainAction }
6871
+ * can be used.
6833
6872
  */
6834
6873
  constructor(
6835
6874
  /**
@@ -6891,11 +6930,11 @@ declare namespace sap {
6891
6930
  * Controls that implemenet this interface should have the following methods:
6892
6931
  * - `_getStickyContent` - returns the content (control) used in the subheader
6893
6932
  * - `_returnStickyContent` - ensures that the content (control) returned by `_getStickyContent`, is placed
6894
- * back in its place in the provider
6933
+ * back in its place in the provider
6895
6934
  * - `_getStickySubHeaderSticked` - returns boolean value that shows where the sticky content is placed
6896
- * (in its provider or in the `DynamicPage`)
6935
+ * (in its provider or in the `DynamicPage`)
6897
6936
  * - `_setStickySubHeaderSticked` - accepts a boolean argument to notify the provider where its sticky
6898
- * content is placed
6937
+ * content is placed
6899
6938
  */
6900
6939
  interface IDynamicPageStickyContent {
6901
6940
  __implements__sap_f_IDynamicPageStickyContent: boolean;
@@ -6969,7 +7008,9 @@ declare namespace sap {
6969
7008
  /**
6970
7009
  * Fired when the user clicks or taps on the control.
6971
7010
  */
6972
- press?: (oEvent: sap.ui.base.Event) => void;
7011
+ press?: (
7012
+ oEvent: sap.ui.base.Event<sap.f.$AvatarGroupPressEventParameters>
7013
+ ) => void;
6973
7014
  }
6974
7015
 
6975
7016
  interface $AvatarGroupItemSettings extends sap.ui.core.$ControlSettings {
@@ -7122,11 +7163,11 @@ declare namespace sap {
7122
7163
  *
7123
7164
  * **Notes:**
7124
7165
  * - Enable this property only if the control of the `content` aggregation is configured to automatically
7125
- * stretch to fill the available height, which means that the content would appear squashed in height when
7126
- * this property is disabled. Such stretchable controls may be {@link sap.ui.table.Table} and {@link sap.ui.table.AnalyticalTable}
7127
- * depending on their settings.
7166
+ * stretch to fill the available height, which means that the content would appear squashed in height when
7167
+ * this property is disabled. Such stretchable controls may be {@link sap.ui.table.Table} and {@link sap.ui.table.AnalyticalTable }
7168
+ * depending on their settings.
7128
7169
  * - It is not recommended to enable this property for controls that do not stretch in height (and appear
7129
- * properly when this property is disabled).
7170
+ * properly when this property is disabled).
7130
7171
  */
7131
7172
  fitContent?:
7132
7173
  | boolean
@@ -7149,15 +7190,13 @@ declare namespace sap {
7149
7190
  * **Note: ** You can change the default paddings by adding the following CSS classes:
7150
7191
  * - `sapUiContentPadding`
7151
7192
  * - `sapUiNoContentPadding`
7152
- * - `sapUiResponsiveContentPadding` For more information, see {@link topic:c71f6df62dae47ca8284310a6f5fc80a
7153
- * Using Container Content Padding CSS Classes}.
7193
+ * - `sapUiResponsiveContentPadding` For more information, see {@link https://ui5.sap.com/#/topic/c71f6df62dae47ca8284310a6f5fc80a Using Container Content Padding CSS Classes}.
7154
7194
  *
7155
7195
  * **Note:** The SAP Fiori Design guidelines require that the `DynamicPageHeader`'s content and the `DynamicPage`'s
7156
- * content are aligned vertically. When using {@link sap.ui.layout.form.Form}, {@link sap.m.Panel}, {@link
7157
- * sap.m.Table} and {@link sap.m.List} in the content area of `DynamicPage`, if the content is not already
7158
- * aligned, you need to adjust their left text offset to achieve the vertical alignment. To do this, apply
7159
- * the `sapFDynamicPageAlignContent` CSS class to them and set their `width` property to `auto` (if not
7160
- * set by default).
7196
+ * content are aligned vertically. When using {@link sap.ui.layout.form.Form}, {@link sap.m.Panel}, {@link sap.m.Table }
7197
+ * and {@link sap.m.List} in the content area of `DynamicPage`, if the content is not already aligned, you
7198
+ * need to adjust their left text offset to achieve the vertical alignment. To do this, apply the `sapFDynamicPageAlignContent`
7199
+ * CSS class to them and set their `width` property to `auto` (if not set by default).
7161
7200
  *
7162
7201
  * Example:
7163
7202
  *
@@ -7170,9 +7209,9 @@ declare namespace sap {
7170
7209
  *
7171
7210
  * Please keep in mind that the alignment is not possible in the following cases:
7172
7211
  * - When the controls are placed in an {@link sap.ui.layout.Grid} or other layout controls that use
7173
- * `overflow:hidden` CSS property
7212
+ * `overflow:hidden` CSS property
7174
7213
  * - In case any of the following CSS classes is applied to `DynamicPage`: `sapUiContentPadding`, `sapUiNoContentPadding`
7175
- * or `sapUiResponsiveContentPadding`
7214
+ * or `sapUiResponsiveContentPadding`
7176
7215
  */
7177
7216
  content?: sap.ui.core.Control;
7178
7217
 
@@ -7203,7 +7242,9 @@ declare namespace sap {
7203
7242
  *
7204
7243
  * The event is fired when the `headerPinned` property is changed via user interaction.
7205
7244
  */
7206
- pinnedStateChange?: (oEvent: sap.ui.base.Event) => void;
7245
+ pinnedStateChange?: (
7246
+ oEvent: sap.ui.base.Event<sap.f.$DynamicPagePinnedStateChangeEventParameters>
7247
+ ) => void;
7207
7248
  }
7208
7249
 
7209
7250
  interface $DynamicPageAccessibleLandmarkInfoSettings
@@ -7379,11 +7420,11 @@ declare namespace sap {
7379
7420
  *
7380
7421
  * **Notes:**
7381
7422
  * - `heading` is mutually exclusive with `snappedHeading` and `expandedHeading`. If `heading` is provided,
7382
- * both `snappedHeading` and `expandedHeading` are ignored. `heading` is useful when the content of `snappedHeading`
7383
- * and `expandedHeading` needs to be the same as it replaces them both.
7423
+ * both `snappedHeading` and `expandedHeading` are ignored. `heading` is useful when the content of `snappedHeading`
7424
+ * and `expandedHeading` needs to be the same as it replaces them both.
7384
7425
  * - If the `snappedTitleOnMobile` aggregation is set, its content overrides this aggregation when the
7385
- * control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
7386
- * state.
7426
+ * control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
7427
+ * state.
7387
7428
  */
7388
7429
  heading?: sap.ui.core.Control;
7389
7430
 
@@ -7396,10 +7437,10 @@ declare namespace sap {
7396
7437
  *
7397
7438
  * **Notes:**
7398
7439
  * - In order for `snappedHeading` to be taken into account, `heading` has to be empty. Combine `snappedHeading`
7399
- * with `expandedHeading` to switch content when the header switches state.
7440
+ * with `expandedHeading` to switch content when the header switches state.
7400
7441
  * - If the `snappedTitleOnMobile` aggregation is set, its content overrides this aggregation when the
7401
- * control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
7402
- * state.
7442
+ * control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
7443
+ * state.
7403
7444
  */
7404
7445
  snappedHeading?: sap.ui.core.Control;
7405
7446
 
@@ -7437,12 +7478,12 @@ declare namespace sap {
7437
7478
  *
7438
7479
  * **Notes:**
7439
7480
  * - The `navigationActions` position depends on the control size. If the control size is 1280px or bigger,
7440
- * they are rendered right next to the `actions`. Otherwise, they are rendered in the top-right area, above
7441
- * the `actions`. If a large number of elements(buttons) are used, there could be visual degradations as
7442
- * the space for the `navigationActions` is limited.
7481
+ * they are rendered right next to the `actions`. Otherwise, they are rendered in the top-right area, above
7482
+ * the `actions`. If a large number of elements(buttons) are used, there could be visual degradations as
7483
+ * the space for the `navigationActions` is limited.
7443
7484
  * - If the `snappedTitleOnMobile` aggregation is set, its content overrides this aggregation when the
7444
- * control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
7445
- * state.
7485
+ * control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
7486
+ * state.
7446
7487
  */
7447
7488
  navigationActions?:
7448
7489
  | sap.m.Button[]
@@ -7525,7 +7566,9 @@ declare namespace sap {
7525
7566
  * Also fired when the developer toggles the title state by programmatically changing the scroll position
7526
7567
  * of the scrollbar of `DynamicPage`.
7527
7568
  */
7528
- stateChange?: (oEvent: sap.ui.base.Event) => void;
7569
+ stateChange?: (
7570
+ oEvent: sap.ui.base.Event<sap.f.$DynamicPageTitleStateChangeEventParameters>
7571
+ ) => void;
7529
7572
  }
7530
7573
 
7531
7574
  interface $FlexibleColumnLayoutSettings
@@ -7546,7 +7589,8 @@ declare namespace sap {
7546
7589
  /**
7547
7590
  * Determines the layout of the control - number of visible columns and their relative sizes.
7548
7591
  *
7549
- * For more details, see {@link topic:3b9f760da5b64adf8db7f95247879086 Types of Layout} in the documentation.
7592
+ * For more details, see {@link https://ui5.sap.com/#/topic/3b9f760da5b64adf8db7f95247879086 Types of Layout }
7593
+ * in the documentation.
7550
7594
  */
7551
7595
  layout?:
7552
7596
  | sap.f.LayoutType
@@ -7672,61 +7716,77 @@ declare namespace sap {
7672
7716
  * The interactions that may lead to a state change are:
7673
7717
  * - the property `layout` was changed indirectly by the user clicking a layout arrow
7674
7718
  * - the user resized the browser beyond a breakpoint, thus changing the maximum number of columns that
7675
- * can be displayed at once.
7719
+ * can be displayed at once.
7676
7720
  *
7677
7721
  * **Note: **The event is suppressed while the control has zero width and will be fired the first time
7678
7722
  * it gets a non-zero width
7679
7723
  */
7680
- stateChange?: (oEvent: sap.ui.base.Event) => void;
7724
+ stateChange?: (
7725
+ oEvent: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutStateChangeEventParameters>
7726
+ ) => void;
7681
7727
 
7682
7728
  /**
7683
7729
  * Fires when navigation between two pages in the `Begin` column has been triggered. The transition (if
7684
7730
  * any) to the new page has not started yet. This event can be aborted by the application with preventDefault(),
7685
7731
  * which means that there will be no navigation.
7686
7732
  */
7687
- beginColumnNavigate?: (oEvent: sap.ui.base.Event) => void;
7733
+ beginColumnNavigate?: (
7734
+ oEvent: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutBeginColumnNavigateEventParameters>
7735
+ ) => void;
7688
7736
 
7689
7737
  /**
7690
7738
  * Fires when navigation between two pages in the `Begin` column has completed.
7691
7739
  *
7692
7740
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7693
7741
  */
7694
- afterBeginColumnNavigate?: (oEvent: sap.ui.base.Event) => void;
7742
+ afterBeginColumnNavigate?: (
7743
+ oEvent: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutAfterBeginColumnNavigateEventParameters>
7744
+ ) => void;
7695
7745
 
7696
7746
  /**
7697
7747
  * Fires when navigation between two pages in the `Mid` column has been triggered. The transition (if any)
7698
7748
  * to the new page has not started yet. This event can be aborted by the application with preventDefault(),
7699
7749
  * which means that there will be no navigation.
7700
7750
  */
7701
- midColumnNavigate?: (oEvent: sap.ui.base.Event) => void;
7751
+ midColumnNavigate?: (
7752
+ oEvent: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutMidColumnNavigateEventParameters>
7753
+ ) => void;
7702
7754
 
7703
7755
  /**
7704
7756
  * Fires when navigation between two pages in the `Mid` column has completed.
7705
7757
  *
7706
7758
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7707
7759
  */
7708
- afterMidColumnNavigate?: (oEvent: sap.ui.base.Event) => void;
7760
+ afterMidColumnNavigate?: (
7761
+ oEvent: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutAfterMidColumnNavigateEventParameters>
7762
+ ) => void;
7709
7763
 
7710
7764
  /**
7711
7765
  * Fires when navigation between two pages in the `End` column has been triggered. The transition (if any)
7712
7766
  * to the new page has not started yet. This event can be aborted by the application with preventDefault(),
7713
7767
  * which means that there will be no navigation.
7714
7768
  */
7715
- endColumnNavigate?: (oEvent: sap.ui.base.Event) => void;
7769
+ endColumnNavigate?: (
7770
+ oEvent: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutEndColumnNavigateEventParameters>
7771
+ ) => void;
7716
7772
 
7717
7773
  /**
7718
7774
  * Fires when navigation between two pages in the `End` column has completed.
7719
7775
  *
7720
7776
  * NOTE: In case of animated transitions this event is fired with some delay after the navigate event.
7721
7777
  */
7722
- afterEndColumnNavigate?: (oEvent: sap.ui.base.Event) => void;
7778
+ afterEndColumnNavigate?: (
7779
+ oEvent: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutAfterEndColumnNavigateEventParameters>
7780
+ ) => void;
7723
7781
 
7724
7782
  /**
7725
7783
  * @SINCE 1.76
7726
7784
  *
7727
7785
  * Fired when resize of each column has completed.
7728
7786
  */
7729
- columnResize?: (oEvent: sap.ui.base.Event) => void;
7787
+ columnResize?: (
7788
+ oEvent: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutColumnResizeEventParameters>
7789
+ ) => void;
7730
7790
  }
7731
7791
 
7732
7792
  interface $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
@@ -7929,17 +7989,23 @@ declare namespace sap {
7929
7989
  /**
7930
7990
  * Fired when the currently active GridSettings change.
7931
7991
  */
7932
- layoutChange?: (oEvent: sap.ui.base.Event) => void;
7992
+ layoutChange?: (
7993
+ oEvent: sap.ui.base.Event<sap.f.$GridContainerLayoutChangeEventParameters>
7994
+ ) => void;
7933
7995
 
7934
7996
  /**
7935
7997
  * Fired when the grid columns count is changed.
7936
7998
  */
7937
- columnsChange?: (oEvent: sap.ui.base.Event) => void;
7999
+ columnsChange?: (
8000
+ oEvent: sap.ui.base.Event<sap.f.$GridContainerColumnsChangeEventParameters>
8001
+ ) => void;
7938
8002
 
7939
8003
  /**
7940
8004
  * Fires if the border of the visualizations is reached so that an application can react on this.
7941
8005
  */
7942
- borderReached?: (oEvent: sap.ui.base.Event) => void;
8006
+ borderReached?: (
8007
+ oEvent: sap.ui.base.Event<sap.f.$GridContainerBorderReachedEventParameters>
8008
+ ) => void;
7943
8009
  }
7944
8010
 
7945
8011
  interface $GridContainerItemLayoutDataSettings
@@ -8048,7 +8114,9 @@ declare namespace sap {
8048
8114
  /**
8049
8115
  * Fires if the border of the visualizations is reached so that an application can react on this.
8050
8116
  */
8051
- borderReached?: (oEvent: sap.ui.base.Event) => void;
8117
+ borderReached?: (
8118
+ oEvent: sap.ui.base.Event<sap.f.$GridListBorderReachedEventParameters>
8119
+ ) => void;
8052
8120
  }
8053
8121
 
8054
8122
  interface $GridListItemSettings extends sap.m.$ListItemBaseSettings {
@@ -8085,7 +8153,9 @@ declare namespace sap {
8085
8153
  /**
8086
8154
  * Fires when an unselected item is pressed.
8087
8155
  */
8088
- change?: (oEvent: sap.ui.base.Event) => void;
8156
+ change?: (
8157
+ oEvent: sap.ui.base.Event<sap.f.$ProductSwitchChangeEventParameters>
8158
+ ) => void;
8089
8159
  }
8090
8160
 
8091
8161
  interface $ProductSwitchItemSettings extends sap.ui.core.$ControlSettings {
@@ -8111,8 +8181,8 @@ declare namespace sap {
8111
8181
  /**
8112
8182
  * Defines the `ProductSwitchItem` target URI. Supports standard hyperlink behavior.
8113
8183
  *
8114
- * **Note:** Redirection is handled via application logic, by subscribing to the {@link sap.f.ProductSwitch#event:change
8115
- * change} event of `sap.f.ProductSwitch`.
8184
+ * **Note:** Redirection is handled via application logic, by subscribing to the {@link sap.f.ProductSwitch#event:change change }
8185
+ * event of `sap.f.ProductSwitch`.
8116
8186
  */
8117
8187
  targetSrc?:
8118
8188
  | sap.ui.core.URI
@@ -8182,21 +8252,27 @@ declare namespace sap {
8182
8252
  /**
8183
8253
  * Fired when the user triggers a search.
8184
8254
  */
8185
- search?: (oEvent: sap.ui.base.Event) => void;
8255
+ search?: (
8256
+ oEvent: sap.ui.base.Event<sap.f.$SearchManagerSearchEventParameters>
8257
+ ) => void;
8186
8258
 
8187
8259
  /**
8188
8260
  * Fired when the value of the search field is changed by the user, for example at each key press.
8189
8261
  *
8190
8262
  * **Note:** Do not invalidate or re-render a focused search field, especially during the `liveChange` event.
8191
8263
  */
8192
- liveChange?: (oEvent: sap.ui.base.Event) => void;
8264
+ liveChange?: (
8265
+ oEvent: sap.ui.base.Event<sap.f.$SearchManagerLiveChangeEventParameters>
8266
+ ) => void;
8193
8267
 
8194
8268
  /**
8195
8269
  * Fired when the search field is initially focused or its value is changed by the user. This event means
8196
8270
  * that suggestion data should be updated, in case if suggestions are used. Use the value parameter to create
8197
8271
  * new suggestions for it.
8198
8272
  */
8199
- suggest?: (oEvent: sap.ui.base.Event) => void;
8273
+ suggest?: (
8274
+ oEvent: sap.ui.base.Event<sap.f.$SearchManagerSuggestEventParameters>
8275
+ ) => void;
8200
8276
  }
8201
8277
 
8202
8278
  interface $ShellBarSettings extends sap.ui.core.$ControlSettings {
@@ -8316,42 +8392,58 @@ declare namespace sap {
8316
8392
  /**
8317
8393
  * Fired when the `homeIcon` is pressed.
8318
8394
  */
8319
- homeIconPressed?: (oEvent: sap.ui.base.Event) => void;
8395
+ homeIconPressed?: (
8396
+ oEvent: sap.ui.base.Event<sap.f.$ShellBarHomeIconPressedEventParameters>
8397
+ ) => void;
8320
8398
 
8321
8399
  /**
8322
8400
  * Fired when the alternative menu button is pressed.
8323
8401
  */
8324
- menuButtonPressed?: (oEvent: sap.ui.base.Event) => void;
8402
+ menuButtonPressed?: (
8403
+ oEvent: sap.ui.base.Event<sap.f.$ShellBarMenuButtonPressedEventParameters>
8404
+ ) => void;
8325
8405
 
8326
8406
  /**
8327
8407
  * Fired when the navigation/back button is pressed.
8328
8408
  */
8329
- navButtonPressed?: (oEvent: sap.ui.base.Event) => void;
8409
+ navButtonPressed?: (
8410
+ oEvent: sap.ui.base.Event<sap.f.$ShellBarNavButtonPressedEventParameters>
8411
+ ) => void;
8330
8412
 
8331
8413
  /**
8332
8414
  * Fired when the SAP CoPilot icon is pressed.
8333
8415
  */
8334
- copilotPressed?: (oEvent: sap.ui.base.Event) => void;
8416
+ copilotPressed?: (
8417
+ oEvent: sap.ui.base.Event<sap.f.$ShellBarCopilotPressedEventParameters>
8418
+ ) => void;
8335
8419
 
8336
8420
  /**
8337
8421
  * Fired when the search button is pressed.
8338
8422
  */
8339
- searchButtonPressed?: (oEvent: sap.ui.base.Event) => void;
8423
+ searchButtonPressed?: (
8424
+ oEvent: sap.ui.base.Event<sap.f.$ShellBarSearchButtonPressedEventParameters>
8425
+ ) => void;
8340
8426
 
8341
8427
  /**
8342
8428
  * Fired when the notifications button is pressed.
8343
8429
  */
8344
- notificationsPressed?: (oEvent: sap.ui.base.Event) => void;
8430
+ notificationsPressed?: (
8431
+ oEvent: sap.ui.base.Event<sap.f.$ShellBarNotificationsPressedEventParameters>
8432
+ ) => void;
8345
8433
 
8346
8434
  /**
8347
8435
  * Fired when the product switcher button is pressed.
8348
8436
  */
8349
- productSwitcherPressed?: (oEvent: sap.ui.base.Event) => void;
8437
+ productSwitcherPressed?: (
8438
+ oEvent: sap.ui.base.Event<sap.f.$ShellBarProductSwitcherPressedEventParameters>
8439
+ ) => void;
8350
8440
 
8351
8441
  /**
8352
8442
  * Fired when the profile avatar is pressed.
8353
8443
  */
8354
- avatarPressed?: (oEvent: sap.ui.base.Event) => void;
8444
+ avatarPressed?: (
8445
+ oEvent: sap.ui.base.Event<sap.f.$ShellBarAvatarPressedEventParameters>
8446
+ ) => void;
8355
8447
  }
8356
8448
 
8357
8449
  interface $SidePanelSettings extends sap.ui.core.$ControlSettings {
@@ -8453,51 +8545,606 @@ declare namespace sap {
8453
8545
  | `{${string}}`;
8454
8546
 
8455
8547
  /**
8456
- * The list of action items. Each action items can have different side content added to its `content` aggregation.
8548
+ * The list of action items. Each action items can have different side content added to its `content` aggregation.
8549
+ */
8550
+ items?:
8551
+ | sap.f.SidePanelItem[]
8552
+ | sap.f.SidePanelItem
8553
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
8554
+ | `{${string}}`;
8555
+
8556
+ /**
8557
+ * The action item that is currently selected.
8558
+ */
8559
+ selectedItem?: sap.f.SidePanelItem | string;
8560
+
8561
+ /**
8562
+ * Fires on expand and collapse of the side content.
8563
+ *
8564
+ *
8565
+ * - If the event fired as a result of action item selection (`expanded` parameter contains `true`) is
8566
+ * prevented, the display of the side content will be blocked.
8567
+ * - If the event fired as a result of action item deselection, selection of different action item, pressing
8568
+ * the `Close` button, or pressing the `Escape` key (`expanded` parameter contains `false`) is prevented,
8569
+ * this will block closing of the currently displayed side content, and if the event is fired by selection
8570
+ * of a different action item, the selection will be cancelled, and the next event (for expansion of a new
8571
+ * action item) will not be fired and the new side content will not be displayed.
8572
+ */
8573
+ toggle?: (
8574
+ oEvent: sap.ui.base.Event<sap.f.$SidePanelToggleEventParameters>
8575
+ ) => void;
8576
+ }
8577
+
8578
+ interface $SidePanelItemSettings extends sap.ui.core.$ItemSettings {
8579
+ /**
8580
+ * Specifies the icon for the item.
8581
+ */
8582
+ icon?:
8583
+ | sap.ui.core.URI
8584
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
8585
+ | `{${string}}`;
8586
+
8587
+ /**
8588
+ * The list of controls for side content of the action item.
8589
+ */
8590
+ content?:
8591
+ | sap.ui.core.Control[]
8592
+ | sap.ui.core.Control
8593
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
8594
+ | `{${string}}`;
8595
+ }
8596
+
8597
+ interface $AvatarGroupPressEventParameters {
8598
+ /**
8599
+ * The `GroupType` of the control.
8600
+ */
8601
+ groupType?: string;
8602
+
8603
+ /**
8604
+ * Indication whether the overflow button is pressed.
8605
+ */
8606
+ overflowButtonPressed?: boolean;
8607
+
8608
+ /**
8609
+ * The number of currently displayed (visible) avatars.
8610
+ */
8611
+ avatarsDisplayed?: int;
8612
+ }
8613
+
8614
+ interface $DynamicPagePinnedStateChangeEventParameters {
8615
+ /**
8616
+ * False or True values indicate the new pinned property value.
8617
+ */
8618
+ pinned?: boolean;
8619
+ }
8620
+
8621
+ interface $DynamicPageTitleStateChangeEventParameters {
8622
+ /**
8623
+ * Whether the title was expanded (true) or collapsed (false).
8624
+ */
8625
+ isExpanded?: boolean;
8626
+ }
8627
+
8628
+ interface $FlexibleColumnLayoutAfterBeginColumnNavigateEventParameters {
8629
+ /**
8630
+ * The page, which had been displayed before navigation.
8631
+ */
8632
+ from?: sap.ui.core.Control;
8633
+
8634
+ /**
8635
+ * The ID of the page, which had been displayed before navigation.
8636
+ */
8637
+ fromId?: string;
8638
+
8639
+ /**
8640
+ * The page, which is now displayed after navigation.
8641
+ */
8642
+ to?: sap.ui.core.Control;
8643
+
8644
+ /**
8645
+ * The ID of the page, which is now displayed after navigation.
8646
+ */
8647
+ toId?: string;
8648
+
8649
+ /**
8650
+ * Whether the "to" page (more precisely: a control with the ID of the page, which has been navigated to)
8651
+ * has not been displayed/navigated to before.
8652
+ */
8653
+ firstTime?: boolean;
8654
+
8655
+ /**
8656
+ * Determines whether was a forward navigation, triggered by to().
8657
+ */
8658
+ isTo?: boolean;
8659
+
8660
+ /**
8661
+ * Determines whether this was a back navigation, triggered by back().
8662
+ */
8663
+ isBack?: boolean;
8664
+
8665
+ /**
8666
+ * Determines whether this was a navigation to the root page, triggered by backToTop().
8667
+ */
8668
+ isBackToTop?: boolean;
8669
+
8670
+ /**
8671
+ * Determines whether this was a navigation to a specific page, triggered by backToPage().
8672
+ */
8673
+ isBackToPage?: boolean;
8674
+
8675
+ /**
8676
+ * Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
8677
+ */
8678
+ direction?: string;
8679
+ }
8680
+
8681
+ interface $FlexibleColumnLayoutAfterEndColumnNavigateEventParameters {
8682
+ /**
8683
+ * The page, which had been displayed before navigation.
8684
+ */
8685
+ from?: sap.ui.core.Control;
8686
+
8687
+ /**
8688
+ * The ID of the page, which had been displayed before navigation.
8689
+ */
8690
+ fromId?: string;
8691
+
8692
+ /**
8693
+ * The page, which is now displayed after navigation.
8694
+ */
8695
+ to?: sap.ui.core.Control;
8696
+
8697
+ /**
8698
+ * The ID of the page, which is now displayed after navigation.
8699
+ */
8700
+ toId?: string;
8701
+
8702
+ /**
8703
+ * Whether the "to" page (more precisely: a control with the ID of the page, which has been navigated to)
8704
+ * has not been displayed/navigated to before.
8705
+ */
8706
+ firstTime?: boolean;
8707
+
8708
+ /**
8709
+ * Determines whether was a forward navigation, triggered by to().
8710
+ */
8711
+ isTo?: boolean;
8712
+
8713
+ /**
8714
+ * Determines whether this was a back navigation, triggered by back().
8715
+ */
8716
+ isBack?: boolean;
8717
+
8718
+ /**
8719
+ * Determines whether this was a navigation to the root page, triggered by backToTop().
8720
+ */
8721
+ isBackToTop?: boolean;
8722
+
8723
+ /**
8724
+ * Determines whether this was a navigation to a specific page, triggered by backToPage().
8725
+ */
8726
+ isBackToPage?: boolean;
8727
+
8728
+ /**
8729
+ * Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
8730
+ */
8731
+ direction?: string;
8732
+ }
8733
+
8734
+ interface $FlexibleColumnLayoutAfterMidColumnNavigateEventParameters {
8735
+ /**
8736
+ * The page, which had been displayed before navigation.
8737
+ */
8738
+ from?: sap.ui.core.Control;
8739
+
8740
+ /**
8741
+ * The ID of the page, which had been displayed before navigation.
8742
+ */
8743
+ fromId?: string;
8744
+
8745
+ /**
8746
+ * The page, which is now displayed after navigation.
8747
+ */
8748
+ to?: sap.ui.core.Control;
8749
+
8750
+ /**
8751
+ * The ID of the page, which is now displayed after navigation.
8752
+ */
8753
+ toId?: string;
8754
+
8755
+ /**
8756
+ * Whether the "to" page (more precisely: a control with the ID of the page, which has been navigated to)
8757
+ * has not been displayed/navigated to before.
8758
+ */
8759
+ firstTime?: boolean;
8760
+
8761
+ /**
8762
+ * Determines whether was a forward navigation, triggered by to().
8763
+ */
8764
+ isTo?: boolean;
8765
+
8766
+ /**
8767
+ * Determines whether this was a back navigation, triggered by back().
8768
+ */
8769
+ isBack?: boolean;
8770
+
8771
+ /**
8772
+ * Determines whether this was a navigation to the root page, triggered by backToTop().
8773
+ */
8774
+ isBackToTop?: boolean;
8775
+
8776
+ /**
8777
+ * Determines whether this was a navigation to a specific page, triggered by backToPage().
8778
+ */
8779
+ isBackToPage?: boolean;
8780
+
8781
+ /**
8782
+ * Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
8783
+ */
8784
+ direction?: string;
8785
+ }
8786
+
8787
+ interface $FlexibleColumnLayoutBeginColumnNavigateEventParameters {
8788
+ /**
8789
+ * The page, which was displayed before the current navigation.
8790
+ */
8791
+ from?: sap.ui.core.Control;
8792
+
8793
+ /**
8794
+ * The ID of the page, which was displayed before the current navigation.
8795
+ */
8796
+ fromId?: string;
8797
+
8798
+ /**
8799
+ * The page, which will be displayed after the current navigation.
8800
+ */
8801
+ to?: sap.ui.core.Control;
8802
+
8803
+ /**
8804
+ * The ID of the page, which will be displayed after the current navigation.
8805
+ */
8806
+ toId?: string;
8807
+
8808
+ /**
8809
+ * Determines whether the "to" page (more precisely: a control with the ID of the page, which is currently
8810
+ * being navigated to) has not been displayed/navigated to before.
8811
+ */
8812
+ firstTime?: boolean;
8813
+
8814
+ /**
8815
+ * Determines whether this is a forward navigation, triggered by to().
8816
+ */
8817
+ isTo?: boolean;
8818
+
8819
+ /**
8820
+ * Determines whether this is a back navigation, triggered by back().
8821
+ */
8822
+ isBack?: boolean;
8823
+
8824
+ /**
8825
+ * Determines whether this is a navigation to the root page, triggered by backToTop().
8826
+ */
8827
+ isBackToTop?: boolean;
8828
+
8829
+ /**
8830
+ * Determines whether this was a navigation to a specific page, triggered by backToPage().
8831
+ */
8832
+ isBackToPage?: boolean;
8833
+
8834
+ /**
8835
+ * Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
8836
+ */
8837
+ direction?: string;
8838
+ }
8839
+
8840
+ interface $FlexibleColumnLayoutColumnResizeEventParameters {
8841
+ /**
8842
+ * Determines whether `beginColumn` resize has completed.
8843
+ */
8844
+ beginColumn?: boolean;
8845
+
8846
+ /**
8847
+ * Determines whether `midColumn` resize has completed.
8848
+ */
8849
+ midColumn?: boolean;
8850
+
8851
+ /**
8852
+ * Determines whether `endColumn` resize has completed.
8853
+ */
8854
+ endColumn?: boolean;
8855
+ }
8856
+
8857
+ interface $FlexibleColumnLayoutEndColumnNavigateEventParameters {
8858
+ /**
8859
+ * The page, which was displayed before the current navigation.
8860
+ */
8861
+ from?: sap.ui.core.Control;
8862
+
8863
+ /**
8864
+ * The ID of the page, which was displayed before the current navigation.
8865
+ */
8866
+ fromId?: string;
8867
+
8868
+ /**
8869
+ * The page, which will be displayed after the current navigation.
8870
+ */
8871
+ to?: sap.ui.core.Control;
8872
+
8873
+ /**
8874
+ * The ID of the page, which will be displayed after the current navigation.
8875
+ */
8876
+ toId?: string;
8877
+
8878
+ /**
8879
+ * Determines whether the "to" page (more precisely: a control with the ID of the page, which is currently
8880
+ * being navigated to) has not been displayed/navigated to before.
8881
+ */
8882
+ firstTime?: boolean;
8883
+
8884
+ /**
8885
+ * Determines whether this is a forward navigation, triggered by to().
8886
+ */
8887
+ isTo?: boolean;
8888
+
8889
+ /**
8890
+ * Determines whether this is a back navigation, triggered by back().
8891
+ */
8892
+ isBack?: boolean;
8893
+
8894
+ /**
8895
+ * Determines whether this is a navigation to the root page, triggered by backToTop().
8896
+ */
8897
+ isBackToTop?: boolean;
8898
+
8899
+ /**
8900
+ * Determines whether this was a navigation to a specific page, triggered by backToPage().
8901
+ */
8902
+ isBackToPage?: boolean;
8903
+
8904
+ /**
8905
+ * Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
8906
+ */
8907
+ direction?: string;
8908
+ }
8909
+
8910
+ interface $FlexibleColumnLayoutMidColumnNavigateEventParameters {
8911
+ /**
8912
+ * The page, which was displayed before the current navigation.
8913
+ */
8914
+ from?: sap.ui.core.Control;
8915
+
8916
+ /**
8917
+ * The ID of the page, which was displayed before the current navigation.
8918
+ */
8919
+ fromId?: string;
8920
+
8921
+ /**
8922
+ * The page, which will be displayed after the current navigation.
8923
+ */
8924
+ to?: sap.ui.core.Control;
8925
+
8926
+ /**
8927
+ * The ID of the page, which will be displayed after the current navigation.
8928
+ */
8929
+ toId?: string;
8930
+
8931
+ /**
8932
+ * Determines whether the "to" page (more precisely: a control with the ID of the page, which is currently
8933
+ * being navigated to) has not been displayed/navigated to before.
8934
+ */
8935
+ firstTime?: boolean;
8936
+
8937
+ /**
8938
+ * Determines whether this is a forward navigation, triggered by to().
8939
+ */
8940
+ isTo?: boolean;
8941
+
8942
+ /**
8943
+ * Determines whether this is a back navigation, triggered by back().
8944
+ */
8945
+ isBack?: boolean;
8946
+
8947
+ /**
8948
+ * Determines whether this is a navigation to the root page, triggered by backToTop().
8949
+ */
8950
+ isBackToTop?: boolean;
8951
+
8952
+ /**
8953
+ * Determines whether this was a navigation to a specific page, triggered by backToPage().
8954
+ */
8955
+ isBackToPage?: boolean;
8956
+
8957
+ /**
8958
+ * Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
8959
+ */
8960
+ direction?: string;
8961
+ }
8962
+
8963
+ interface $FlexibleColumnLayoutStateChangeEventParameters {
8964
+ /**
8965
+ * The value of the `layout` property
8966
+ */
8967
+ layout?: sap.f.LayoutType;
8968
+
8969
+ /**
8970
+ * The maximum number of columns that can be displayed at once based on the available screen size and control
8971
+ * settings.
8972
+ *
8973
+ * Possible values are:
8974
+ * - 3 for browser size of 1280px or more
8975
+ * - 2 for browser size between 960px and 1280px
8976
+ * - 1 for browser size less than 960px
8977
+ */
8978
+ maxColumnsCount?: int;
8979
+
8980
+ /**
8981
+ * Indicates whether the layout changed as a result of the user clicking a layout arrow
8982
+ */
8983
+ isNavigationArrow?: boolean;
8984
+
8985
+ /**
8986
+ * Indicates whether the maximum number of columns that can be displayed at once changed
8987
+ */
8988
+ isResize?: boolean;
8989
+ }
8990
+
8991
+ interface $GridContainerBorderReachedEventParameters {
8992
+ /**
8993
+ * Event that leads to the focus change.
8994
+ */
8995
+ event?: jQuery.Event;
8996
+
8997
+ /**
8998
+ * The navigation direction that is used to reach the border.
8999
+ */
9000
+ direction?: sap.f.NavigationDirection;
9001
+
9002
+ /**
9003
+ * The row index, from which the border is reached.
9004
+ */
9005
+ row?: int;
9006
+
9007
+ /**
9008
+ * The column index, from which the border is reached.
9009
+ */
9010
+ column?: int;
9011
+ }
9012
+
9013
+ interface $GridContainerColumnsChangeEventParameters {
9014
+ /**
9015
+ * The count of the gird columns.
9016
+ */
9017
+ columns?: int;
9018
+ }
9019
+
9020
+ interface $GridContainerLayoutChangeEventParameters {
9021
+ /**
9022
+ * The name of the newly active layout.
9023
+ */
9024
+ layout?: string;
9025
+ }
9026
+
9027
+ interface $GridListBorderReachedEventParameters {
9028
+ /**
9029
+ * Event that leads to the focus change.
9030
+ */
9031
+ event?: jQuery.Event;
9032
+
9033
+ /**
9034
+ * The navigation direction that is used to reach the border.
9035
+ */
9036
+ direction?: sap.f.NavigationDirection;
9037
+
9038
+ /**
9039
+ * The row index, from which the border is reached.
9040
+ */
9041
+ row?: int;
9042
+
9043
+ /**
9044
+ * The the column index, from which the border is reached.
9045
+ */
9046
+ column?: int;
9047
+ }
9048
+
9049
+ interface $ProductSwitchChangeEventParameters {
9050
+ /**
9051
+ * Reference to the new item that has been selected.
9052
+ */
9053
+ itemPressed?: sap.f.ProductSwitchItem;
9054
+ }
9055
+
9056
+ interface $SearchManagerLiveChangeEventParameters {
9057
+ /**
9058
+ * Current search string.
9059
+ */
9060
+ newValue?: string;
9061
+ }
9062
+
9063
+ interface $SearchManagerSearchEventParameters {
9064
+ /**
9065
+ * The search query string.
9066
+ */
9067
+ query?: string;
9068
+
9069
+ /**
9070
+ * Indicates if the user pressed the clear icon.
9071
+ */
9072
+ clearButtonPressed?: boolean;
9073
+ }
9074
+
9075
+ interface $SearchManagerSuggestEventParameters {
9076
+ /**
9077
+ * Current search string of the search field.
9078
+ */
9079
+ suggestValue?: string;
9080
+ }
9081
+
9082
+ interface $ShellBarAvatarPressedEventParameters {
9083
+ /**
9084
+ * Reference to the button that has been pressed
9085
+ */
9086
+ avatar?: sap.m.Avatar;
9087
+ }
9088
+
9089
+ interface $ShellBarCopilotPressedEventParameters {
9090
+ /**
9091
+ * Reference to the button that has been pressed
9092
+ */
9093
+ image?: sap.m.Image;
9094
+ }
9095
+
9096
+ interface $ShellBarHomeIconPressedEventParameters {
9097
+ /**
9098
+ * Reference to the image that has been pressed
9099
+ */
9100
+ icon?: sap.m.Image;
9101
+ }
9102
+
9103
+ interface $ShellBarMenuButtonPressedEventParameters {
9104
+ /**
9105
+ * Reference to the button that has been pressed
9106
+ */
9107
+ button?: sap.m.Button;
9108
+ }
9109
+
9110
+ interface $ShellBarNavButtonPressedEventParameters {
9111
+ /**
9112
+ * Reference to the button that has been pressed
9113
+ */
9114
+ button?: sap.m.Button;
9115
+ }
9116
+
9117
+ interface $ShellBarNotificationsPressedEventParameters {
9118
+ /**
9119
+ * Reference to the button that has been pressed
8457
9120
  */
8458
- items?:
8459
- | sap.f.SidePanelItem[]
8460
- | sap.f.SidePanelItem
8461
- | sap.ui.base.ManagedObject.AggregationBindingInfo
8462
- | `{${string}}`;
9121
+ button?: sap.m.Button;
9122
+ }
8463
9123
 
9124
+ interface $ShellBarProductSwitcherPressedEventParameters {
8464
9125
  /**
8465
- * The action item that is currently selected.
9126
+ * Reference to the button that has been pressed
8466
9127
  */
8467
- selectedItem?: sap.f.SidePanelItem | string;
9128
+ button?: sap.m.Button;
9129
+ }
8468
9130
 
9131
+ interface $ShellBarSearchButtonPressedEventParameters {
8469
9132
  /**
8470
- * Fires on expand and collapse of the side content.
8471
- *
8472
- *
8473
- * - If the event fired as a result of action item selection (`expanded` parameter contains `true`) is
8474
- * prevented, the display of the side content will be blocked.
8475
- * - If the event fired as a result of action item deselection, selection of different action item, pressing
8476
- * the `Close` button, or pressing the `Escape` key (`expanded` parameter contains `false`) is prevented,
8477
- * this will block closing of the currently displayed side content, and if the event is fired by selection
8478
- * of a different action item, the selection will be cancelled, and the next event (for expansion of a new
8479
- * action item) will not be fired and the new side content will not be displayed.
9133
+ * Reference to the button that has been pressed
8480
9134
  */
8481
- toggle?: (oEvent: sap.ui.base.Event) => void;
9135
+ button?: sap.m.Button;
8482
9136
  }
8483
9137
 
8484
- interface $SidePanelItemSettings extends sap.ui.core.$ItemSettings {
9138
+ interface $SidePanelToggleEventParameters {
8485
9139
  /**
8486
- * Specifies the icon for the item.
9140
+ * The action item that triggers the event.
8487
9141
  */
8488
- icon?:
8489
- | sap.ui.core.URI
8490
- | sap.ui.base.ManagedObject.PropertyBindingInfo
8491
- | `{${string}}`;
9142
+ item?: sap.f.SidePanelItem;
8492
9143
 
8493
9144
  /**
8494
- * The list of controls for side content of the action item.
9145
+ * State of the action item.
8495
9146
  */
8496
- content?:
8497
- | sap.ui.core.Control[]
8498
- | sap.ui.core.Control
8499
- | sap.ui.base.ManagedObject.AggregationBindingInfo
8500
- | `{${string}}`;
9147
+ expanded?: boolean;
8501
9148
  }
8502
9149
 
8503
9150
  /**
@@ -8509,9 +9156,9 @@ declare namespace sap {
8509
9156
  * The successfully loaded data is kept in the DOM (div with ID `sap-illustration-pool`) in the `sap-ui-static`
8510
9157
  * DOM element.
8511
9158
  *
8512
- * To load a given asset, register its illustration set through the {@link sap.m.IllustrationPool#sap.m.IllustrationPool.registerIllustrationSet
8513
- * registerIllustrationSet} API of `IllustrationPool`. The exception being the `sapIllus`, which is the
8514
- * default illustration set that is registered by default.
9159
+ * To load a given asset, register its illustration set through the {@link sap.m.IllustrationPool#sap.m.IllustrationPool.registerIllustrationSet registerIllustrationSet }
9160
+ * API of `IllustrationPool`. The exception being the `sapIllus`, which is the default illustration set
9161
+ * that is registered by default.
8515
9162
  *
8516
9163
  * The default behavior of `IllustrationPool` is to load/require an asset only when it's needed by using
8517
9164
  * the {@link sap.m.IllustrationPool#sap.m.IllustrationPool.loadAsset loadAsset} API. When registering the
@@ -8521,7 +9168,6 @@ declare namespace sap {
8521
9168
  * {@link sap.m.IllustrationPool#sap.m.IllustrationPool.loadRestOfTheAssets loadRestOfTheAssets} API.
8522
9169
  */
8523
9170
  interface IllustrationPool {}
8524
- const IllustrationPool: IllustrationPool;
8525
9171
 
8526
9172
  /**
8527
9173
  * @SINCE 1.46
@@ -8549,8 +9195,8 @@ declare namespace sap {
8549
9195
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8550
9196
  * of the syntax of the settings object.
8551
9197
  *
8552
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Avatar#constructor
8553
- * sap.m.Avatar} can be used.
9198
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Avatar#constructor sap.m.Avatar }
9199
+ * can be used.
8554
9200
  * See:
8555
9201
  * {@link fiori:https://experience.sap.com/fiori-design-web/avatar/ Avatar}
8556
9202
  */
@@ -8567,8 +9213,8 @@ declare namespace sap {
8567
9213
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8568
9214
  * of the syntax of the settings object.
8569
9215
  *
8570
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Avatar#constructor
8571
- * sap.m.Avatar} can be used.
9216
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Avatar#constructor sap.m.Avatar }
9217
+ * can be used.
8572
9218
  * See:
8573
9219
  * {@link fiori:https://experience.sap.com/fiori-design-web/avatar/ Avatar}
8574
9220
  */
@@ -8627,7 +9273,7 @@ declare namespace sap {
8627
9273
  *
8628
9274
  * The `AvatarGroup` control has two group types:
8629
9275
  * - `Group` type: The avatars are displayed as partially overlapped on top of each other and the entire
8630
- * group has one click/tap area.
9276
+ * group has one click/tap area.
8631
9277
  * - `Individual` type: The avatars are displayed side-by-side and each avatar has its own click/tap area.
8632
9278
  *
8633
9279
  *
@@ -8739,7 +9385,9 @@ declare namespace sap {
8739
9385
  /**
8740
9386
  * The function to be called when the event occurs
8741
9387
  */
8742
- fnFunction: (p1: sap.ui.base.Event) => void,
9388
+ fnFunction: (
9389
+ p1: sap.ui.base.Event<sap.f.$AvatarGroupPressEventParameters>
9390
+ ) => void,
8743
9391
  /**
8744
9392
  * Context object to call the event handler with. Defaults to this `sap.f.AvatarGroup` itself
8745
9393
  */
@@ -8759,7 +9407,9 @@ declare namespace sap {
8759
9407
  /**
8760
9408
  * The function to be called when the event occurs
8761
9409
  */
8762
- fnFunction: (p1: sap.ui.base.Event) => void,
9410
+ fnFunction: (
9411
+ p1: sap.ui.base.Event<sap.f.$AvatarGroupPressEventParameters>
9412
+ ) => void,
8763
9413
  /**
8764
9414
  * Context object to call the event handler with. Defaults to this `sap.f.AvatarGroup` itself
8765
9415
  */
@@ -8782,7 +9432,9 @@ declare namespace sap {
8782
9432
  /**
8783
9433
  * The function to be called, when the event occurs
8784
9434
  */
8785
- fnFunction: (p1: sap.ui.base.Event) => void,
9435
+ fnFunction: (
9436
+ p1: sap.ui.base.Event<sap.f.$AvatarGroupPressEventParameters>
9437
+ ) => void,
8786
9438
  /**
8787
9439
  * Context object on which the given function had to be called
8788
9440
  */
@@ -8799,20 +9451,7 @@ declare namespace sap {
8799
9451
  /**
8800
9452
  * Parameters to pass along with the event
8801
9453
  */
8802
- mParameters?: {
8803
- /**
8804
- * The `GroupType` of the control.
8805
- */
8806
- groupType?: string;
8807
- /**
8808
- * Indication whether the overflow button is pressed.
8809
- */
8810
- overflowButtonPressed?: boolean;
8811
- /**
8812
- * The number of currently displayed (visible) avatars.
8813
- */
8814
- avatarsDisplayed?: int;
8815
- }
9454
+ mParameters?: sap.f.$AvatarGroupPressEventParameters
8816
9455
  ): this;
8817
9456
  /**
8818
9457
  * @SINCE 1.103
@@ -9161,15 +9800,15 @@ declare namespace sap {
9161
9800
  *
9162
9801
  * Structure: You can control the width and height of the card, using properties. The `Card` has the following
9163
9802
  * aggregations:
9164
- * - `header` - can be either a {@link sap.f.cards.Header Header} or a {@link sap.f.cards.NumericHeader
9165
- * NumericHeader} `content` - can be any {@link sap.ui.core.Control Control}.
9803
+ * - `header` - can be either a {@link sap.f.cards.Header Header} or a {@link sap.f.cards.NumericHeader NumericHeader }
9804
+ * `content` - can be any {@link sap.ui.core.Control Control}.
9166
9805
  *
9167
9806
  * Guidelines::
9168
9807
  * - A card should represent a task or visualize a specific set of information.
9169
9808
  * - It is recommended to use cards on home page layouts.
9170
9809
  * - The card shouldn't be large with a lot of content.
9171
9810
  *
9172
- * Usage: To show a KPI value or any numeric information, use {@link sap.f.cards.NumericHeader NumericHeader}
9811
+ * Usage: To show a KPI value or any numeric information, use {@link sap.f.cards.NumericHeader NumericHeader }
9173
9812
  * as a card header. For any other use cases, use the regular {@link sap.f.cards.Header Header}. Recommended
9174
9813
  * content: - List - Table - Object information - Charts - Timelines - Images
9175
9814
  *
@@ -9178,8 +9817,8 @@ declare namespace sap {
9178
9817
  * - When you have to achieve simple card visualization.
9179
9818
  *
9180
9819
  * When not to use
9181
- * - When you have to reuse the card between applications. For such cases, use: {@link sap.ui.integration.widgets.Card
9182
- * Integration Card}.
9820
+ * - When you have to reuse the card between applications. For such cases, use: {@link sap.ui.integration.widgets.Card Integration Card}.
9821
+ *
9183
9822
  * - When you need nesting. For such cases, use: {@link sap.m.Panel Panel}.
9184
9823
  * - When the card is not part of a card layout. For such cases, use: {@link sap.m.Panel Panel}.
9185
9824
  * - When you need more header configuration flexibility.
@@ -9466,16 +10105,16 @@ declare namespace sap {
9466
10105
  *
9467
10106
  *
9468
10107
  * - {@link sap.f.DynamicPageTitle DynamicPageTitle} - consists of a heading on the left side, content
9469
- * in the middle, and actions on the right. The displayed content changes based on the current mode of the
9470
- * {@link sap.f.DynamicPageHeader DynamicPageHeader}.
10108
+ * in the middle, and actions on the right. The displayed content changes based on the current mode of the
10109
+ * {@link sap.f.DynamicPageHeader DynamicPageHeader}.
9471
10110
  * - {@link sap.f.DynamicPageHeader DynamicPageHeader} - a generic container, which can contain a single
9472
- * layout control and does not care about the content alignment and responsiveness. The header works in
9473
- * two modes - expanded and snapped and its behavior can be adjusted with the help of different properties.
10111
+ * layout control and does not care about the content alignment and responsiveness. The header works in
10112
+ * two modes - expanded and snapped and its behavior can be adjusted with the help of different properties.
9474
10113
  *
9475
10114
  * - Content area - a generic container, which can have a single UI5 layout control and does not care
9476
- * about the content alignment and responsiveness.
10115
+ * about the content alignment and responsiveness.
9477
10116
  * - Footer - positioned at the bottom with a small offset and used for additional actions, the footer
9478
- * floats above the content. It can be any {@link sap.m.IBar} control.
10117
+ * floats above the content. It can be any {@link sap.m.IBar} control.
9479
10118
  *
9480
10119
  * Usage:
9481
10120
  *
@@ -9485,19 +10124,19 @@ declare namespace sap {
9485
10124
  *
9486
10125
  * **Notes:**
9487
10126
  * - If you're displaying a {@link sap.m.FlexBox} with non-adaptive content (doesn't stretch to fill the
9488
- * available space), it is recommended to set the `fitContainer` property of the {@link sap.m.FlexBox FlexBox}
9489
- * to `false`.
10127
+ * available space), it is recommended to set the `fitContainer` property of the {@link sap.m.FlexBox FlexBox }
10128
+ * to `false`.
9490
10129
  * - If you are displaying a {@link sap.ui.table.Table}, keep in mind that it is non-adaptive and may
9491
- * cause unpredicted behavior for the `DynamicPage` on smaller screen sizes, such as mobile.
10130
+ * cause unpredicted behavior for the `DynamicPage` on smaller screen sizes, such as mobile.
9492
10131
  * - Snapping of the {@link sap.f.DynamicPageTitle DynamicPageTitle} is not supported in the following
9493
- * case: When the `DynamicPage` has a scroll bar, the control usually scrolls to the snapping point - the
9494
- * point, where the {@link sap.f.DynamicPageHeader DynamicPageHeader} is scrolled out completely. However,
9495
- * when there is a scroll bar, but not enough content to reach the snapping point, the snapping is not possible
9496
- * using scrolling.
9497
- * - When using {@link sap.ui.layout.form.Form}, {@link sap.m.Panel}, {@link sap.m.Table} and {@link sap.m.List}
9498
- * controls in the content of `DynamicPage`, you need to adjust their left text offset if you want to achieve
9499
- * vertical alignment between the `sap.f.DynamicPageHeader``s content and `DynamicPage``s content. For more
9500
- * information, see the documentation for the `content` aggregation.
10132
+ * case: When the `DynamicPage` has a scroll bar, the control usually scrolls to the snapping point - the
10133
+ * point, where the {@link sap.f.DynamicPageHeader DynamicPageHeader} is scrolled out completely. However,
10134
+ * when there is a scroll bar, but not enough content to reach the snapping point, the snapping is not possible
10135
+ * using scrolling.
10136
+ * - When using {@link sap.ui.layout.form.Form}, {@link sap.m.Panel}, {@link sap.m.Table} and {@link sap.m.List }
10137
+ * controls in the content of `DynamicPage`, you need to adjust their left text offset if you want to achieve
10138
+ * vertical alignment between the `sap.f.DynamicPageHeader``s content and `DynamicPage``s content. For more
10139
+ * information, see the documentation for the `content` aggregation.
9501
10140
  *
9502
10141
  * Responsive Behavior:
9503
10142
  *
@@ -9592,7 +10231,9 @@ declare namespace sap {
9592
10231
  /**
9593
10232
  * The function to be called when the event occurs
9594
10233
  */
9595
- fnFunction: (p1: sap.ui.base.Event) => void,
10234
+ fnFunction: (
10235
+ p1: sap.ui.base.Event<sap.f.$DynamicPagePinnedStateChangeEventParameters>
10236
+ ) => void,
9596
10237
  /**
9597
10238
  * Context object to call the event handler with. Defaults to this `sap.f.DynamicPage` itself
9598
10239
  */
@@ -9615,7 +10256,9 @@ declare namespace sap {
9615
10256
  /**
9616
10257
  * The function to be called when the event occurs
9617
10258
  */
9618
- fnFunction: (p1: sap.ui.base.Event) => void,
10259
+ fnFunction: (
10260
+ p1: sap.ui.base.Event<sap.f.$DynamicPagePinnedStateChangeEventParameters>
10261
+ ) => void,
9619
10262
  /**
9620
10263
  * Context object to call the event handler with. Defaults to this `sap.f.DynamicPage` itself
9621
10264
  */
@@ -9667,7 +10310,9 @@ declare namespace sap {
9667
10310
  /**
9668
10311
  * The function to be called, when the event occurs
9669
10312
  */
9670
- fnFunction: (p1: sap.ui.base.Event) => void,
10313
+ fnFunction: (
10314
+ p1: sap.ui.base.Event<sap.f.$DynamicPagePinnedStateChangeEventParameters>
10315
+ ) => void,
9671
10316
  /**
9672
10317
  * Context object on which the given function had to be called
9673
10318
  */
@@ -9685,12 +10330,7 @@ declare namespace sap {
9685
10330
  /**
9686
10331
  * Parameters to pass along with the event
9687
10332
  */
9688
- mParameters?: {
9689
- /**
9690
- * False or True values indicate the new pinned property value.
9691
- */
9692
- pinned?: boolean;
9693
- }
10333
+ mParameters?: sap.f.$DynamicPagePinnedStateChangeEventParameters
9694
10334
  ): this;
9695
10335
  /**
9696
10336
  * @SINCE 1.68
@@ -9712,15 +10352,13 @@ declare namespace sap {
9712
10352
  * **Note: ** You can change the default paddings by adding the following CSS classes:
9713
10353
  * - `sapUiContentPadding`
9714
10354
  * - `sapUiNoContentPadding`
9715
- * - `sapUiResponsiveContentPadding` For more information, see {@link topic:c71f6df62dae47ca8284310a6f5fc80a
9716
- * Using Container Content Padding CSS Classes}.
10355
+ * - `sapUiResponsiveContentPadding` For more information, see {@link https://ui5.sap.com/#/topic/c71f6df62dae47ca8284310a6f5fc80a Using Container Content Padding CSS Classes}.
9717
10356
  *
9718
10357
  * **Note:** The SAP Fiori Design guidelines require that the `DynamicPageHeader`'s content and the `DynamicPage`'s
9719
- * content are aligned vertically. When using {@link sap.ui.layout.form.Form}, {@link sap.m.Panel}, {@link
9720
- * sap.m.Table} and {@link sap.m.List} in the content area of `DynamicPage`, if the content is not already
9721
- * aligned, you need to adjust their left text offset to achieve the vertical alignment. To do this, apply
9722
- * the `sapFDynamicPageAlignContent` CSS class to them and set their `width` property to `auto` (if not
9723
- * set by default).
10358
+ * content are aligned vertically. When using {@link sap.ui.layout.form.Form}, {@link sap.m.Panel}, {@link sap.m.Table }
10359
+ * and {@link sap.m.List} in the content area of `DynamicPage`, if the content is not already aligned, you
10360
+ * need to adjust their left text offset to achieve the vertical alignment. To do this, apply the `sapFDynamicPageAlignContent`
10361
+ * CSS class to them and set their `width` property to `auto` (if not set by default).
9724
10362
  *
9725
10363
  * Example:
9726
10364
  *
@@ -9733,9 +10371,9 @@ declare namespace sap {
9733
10371
  *
9734
10372
  * Please keep in mind that the alignment is not possible in the following cases:
9735
10373
  * - When the controls are placed in an {@link sap.ui.layout.Grid} or other layout controls that use
9736
- * `overflow:hidden` CSS property
10374
+ * `overflow:hidden` CSS property
9737
10375
  * - In case any of the following CSS classes is applied to `DynamicPage`: `sapUiContentPadding`, `sapUiNoContentPadding`
9738
- * or `sapUiResponsiveContentPadding`
10376
+ * or `sapUiResponsiveContentPadding`
9739
10377
  */
9740
10378
  getContent(): sap.ui.core.Control;
9741
10379
  /**
@@ -9746,11 +10384,11 @@ declare namespace sap {
9746
10384
  *
9747
10385
  * **Notes:**
9748
10386
  * - Enable this property only if the control of the `content` aggregation is configured to automatically
9749
- * stretch to fill the available height, which means that the content would appear squashed in height when
9750
- * this property is disabled. Such stretchable controls may be {@link sap.ui.table.Table} and {@link sap.ui.table.AnalyticalTable}
9751
- * depending on their settings.
10387
+ * stretch to fill the available height, which means that the content would appear squashed in height when
10388
+ * this property is disabled. Such stretchable controls may be {@link sap.ui.table.Table} and {@link sap.ui.table.AnalyticalTable }
10389
+ * depending on their settings.
9752
10390
  * - It is not recommended to enable this property for controls that do not stretch in height (and appear
9753
- * properly when this property is disabled).
10391
+ * properly when this property is disabled).
9754
10392
  *
9755
10393
  * Default value is `false`.
9756
10394
  *
@@ -9915,11 +10553,11 @@ declare namespace sap {
9915
10553
  *
9916
10554
  * **Notes:**
9917
10555
  * - Enable this property only if the control of the `content` aggregation is configured to automatically
9918
- * stretch to fill the available height, which means that the content would appear squashed in height when
9919
- * this property is disabled. Such stretchable controls may be {@link sap.ui.table.Table} and {@link sap.ui.table.AnalyticalTable}
9920
- * depending on their settings.
10556
+ * stretch to fill the available height, which means that the content would appear squashed in height when
10557
+ * this property is disabled. Such stretchable controls may be {@link sap.ui.table.Table} and {@link sap.ui.table.AnalyticalTable }
10558
+ * depending on their settings.
9921
10559
  * - It is not recommended to enable this property for controls that do not stretch in height (and appear
9922
- * properly when this property is disabled).
10560
+ * properly when this property is disabled).
9923
10561
  *
9924
10562
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9925
10563
  *
@@ -10657,7 +11295,7 @@ declare namespace sap {
10657
11295
  * for {@link sap.m.Toolbar} and {@link sap.m.OverflowToolbar}.
10658
11296
  *
10659
11297
  * If the `toggleHeaderOnTitleClick` property of the {@link sap.f.DynamicPage DynamicPage} is set to `true`,
10660
- * the user can switch between the expanded/collapsed states of the {@link sap.f.DynamicPageHeader DynamicPageHeader}
11298
+ * the user can switch between the expanded/collapsed states of the {@link sap.f.DynamicPageHeader DynamicPageHeader }
10661
11299
  * by clicking on the `DynamicPageTitle` or by using the expand/collapse visual indicators, positioned at
10662
11300
  * the bottom of the `DynamicPageTitle` and the `DynamicPageHeader`.
10663
11301
  *
@@ -10826,7 +11464,9 @@ declare namespace sap {
10826
11464
  /**
10827
11465
  * The function to be called when the event occurs
10828
11466
  */
10829
- fnFunction: (p1: sap.ui.base.Event) => void,
11467
+ fnFunction: (
11468
+ p1: sap.ui.base.Event<sap.f.$DynamicPageTitleStateChangeEventParameters>
11469
+ ) => void,
10830
11470
  /**
10831
11471
  * Context object to call the event handler with. Defaults to this `sap.f.DynamicPageTitle` itself
10832
11472
  */
@@ -10852,7 +11492,9 @@ declare namespace sap {
10852
11492
  /**
10853
11493
  * The function to be called when the event occurs
10854
11494
  */
10855
- fnFunction: (p1: sap.ui.base.Event) => void,
11495
+ fnFunction: (
11496
+ p1: sap.ui.base.Event<sap.f.$DynamicPageTitleStateChangeEventParameters>
11497
+ ) => void,
10856
11498
  /**
10857
11499
  * Context object to call the event handler with. Defaults to this `sap.f.DynamicPageTitle` itself
10858
11500
  */
@@ -10943,7 +11585,9 @@ declare namespace sap {
10943
11585
  /**
10944
11586
  * The function to be called, when the event occurs
10945
11587
  */
10946
- fnFunction: (p1: sap.ui.base.Event) => void,
11588
+ fnFunction: (
11589
+ p1: sap.ui.base.Event<sap.f.$DynamicPageTitleStateChangeEventParameters>
11590
+ ) => void,
10947
11591
  /**
10948
11592
  * Context object on which the given function had to be called
10949
11593
  */
@@ -10961,12 +11605,7 @@ declare namespace sap {
10961
11605
  /**
10962
11606
  * Parameters to pass along with the event
10963
11607
  */
10964
- mParameters?: {
10965
- /**
10966
- * Whether the title was expanded (true) or collapsed (false).
10967
- */
10968
- isExpanded?: boolean;
10969
- }
11608
+ mParameters?: sap.f.$DynamicPageTitleStateChangeEventParameters
10970
11609
  ): this;
10971
11610
  /**
10972
11611
  * Gets content of aggregation {@link #getActions actions}.
@@ -11008,8 +11647,7 @@ declare namespace sap {
11008
11647
  /**
11009
11648
  * @SINCE 1.78
11010
11649
  *
11011
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
11012
- * ariaDescribedBy}.
11650
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
11013
11651
  */
11014
11652
  getAriaDescribedBy(): sap.ui.core.ID[];
11015
11653
  /**
@@ -11074,11 +11712,11 @@ declare namespace sap {
11074
11712
  *
11075
11713
  * **Notes:**
11076
11714
  * - `heading` is mutually exclusive with `snappedHeading` and `expandedHeading`. If `heading` is provided,
11077
- * both `snappedHeading` and `expandedHeading` are ignored. `heading` is useful when the content of `snappedHeading`
11078
- * and `expandedHeading` needs to be the same as it replaces them both.
11715
+ * both `snappedHeading` and `expandedHeading` are ignored. `heading` is useful when the content of `snappedHeading`
11716
+ * and `expandedHeading` needs to be the same as it replaces them both.
11079
11717
  * - If the `snappedTitleOnMobile` aggregation is set, its content overrides this aggregation when the
11080
- * control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
11081
- * state.
11718
+ * control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
11719
+ * state.
11082
11720
  */
11083
11721
  getHeading(): sap.ui.core.Control;
11084
11722
  /**
@@ -11090,12 +11728,12 @@ declare namespace sap {
11090
11728
  *
11091
11729
  * **Notes:**
11092
11730
  * - The `navigationActions` position depends on the control size. If the control size is 1280px or bigger,
11093
- * they are rendered right next to the `actions`. Otherwise, they are rendered in the top-right area, above
11094
- * the `actions`. If a large number of elements(buttons) are used, there could be visual degradations as
11095
- * the space for the `navigationActions` is limited.
11731
+ * they are rendered right next to the `actions`. Otherwise, they are rendered in the top-right area, above
11732
+ * the `actions`. If a large number of elements(buttons) are used, there could be visual degradations as
11733
+ * the space for the `navigationActions` is limited.
11096
11734
  * - If the `snappedTitleOnMobile` aggregation is set, its content overrides this aggregation when the
11097
- * control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
11098
- * state.
11735
+ * control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
11736
+ * state.
11099
11737
  */
11100
11738
  getNavigationActions(): sap.m.Button[];
11101
11739
  /**
@@ -11143,10 +11781,10 @@ declare namespace sap {
11143
11781
  *
11144
11782
  * **Notes:**
11145
11783
  * - In order for `snappedHeading` to be taken into account, `heading` has to be empty. Combine `snappedHeading`
11146
- * with `expandedHeading` to switch content when the header switches state.
11784
+ * with `expandedHeading` to switch content when the header switches state.
11147
11785
  * - If the `snappedTitleOnMobile` aggregation is set, its content overrides this aggregation when the
11148
- * control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
11149
- * state.
11786
+ * control is viewed on a phone mobile device and the `DynamicPageHeader` is in its collapsed (snapped)
11787
+ * state.
11150
11788
  */
11151
11789
  getSnappedHeading(): sap.ui.core.Control;
11152
11790
  /**
@@ -11594,14 +12232,14 @@ declare namespace sap {
11594
12232
  *
11595
12233
  * The columns are accessible with the `beginColumnPages`, `midColumnPages` and `endColumnPages` aggregations.
11596
12234
  *
11597
- * The relative sizes and the visibility of the three columns are determined based on the value of the {@link
11598
- * sap.f.LayoutType layout} property.
12235
+ * The relative sizes and the visibility of the three columns are determined based on the value of the {@link sap.f.LayoutType layout }
12236
+ * property.
11599
12237
  *
11600
12238
  * Changes to the layout due to user interaction are communicated to the app with the `stateChange` event.
11601
12239
  *
11602
12240
  * **Notes:**
11603
12241
  * - To easily implement the recommended UX design of a `sap.f.FlexibleColumnLayout`-based app, you can
11604
- * use the `sap.f.FlexibleColumnLayoutSemanticHelper` class.
12242
+ * use the `sap.f.FlexibleColumnLayoutSemanticHelper` class.
11605
12243
  * - To facilitate the navigation and view loading, you can use the {@link sap.f.routing.Router}
11606
12244
  *
11607
12245
  * Responsive Behavior:
@@ -11623,7 +12261,7 @@ declare namespace sap {
11623
12261
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
11624
12262
  * of the syntax of the settings object.
11625
12263
  * See:
11626
- * {@link topic:59a0e11712e84a648bb990a1dba76bc7 Flexible Column Layout}
12264
+ * {@link https://ui5.sap.com/#/topic/59a0e11712e84a648bb990a1dba76bc7 Flexible Column Layout}
11627
12265
  * {@link fiori:https://experience.sap.com/fiori-design-web/flexible-column-layout/ Flexible Column Layout}
11628
12266
  */
11629
12267
  constructor(
@@ -11639,7 +12277,7 @@ declare namespace sap {
11639
12277
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
11640
12278
  * of the syntax of the settings object.
11641
12279
  * See:
11642
- * {@link topic:59a0e11712e84a648bb990a1dba76bc7 Flexible Column Layout}
12280
+ * {@link https://ui5.sap.com/#/topic/59a0e11712e84a648bb990a1dba76bc7 Flexible Column Layout}
11643
12281
  * {@link fiori:https://experience.sap.com/fiori-design-web/flexible-column-layout/ Flexible Column Layout}
11644
12282
  */
11645
12283
  constructor(
@@ -11716,7 +12354,7 @@ declare namespace sap {
11716
12354
  oMidColumnPage: sap.ui.core.Control
11717
12355
  ): this;
11718
12356
  /**
11719
- * Attaches event handler `fnFunction` to the {@link #event:afterBeginColumnNavigate afterBeginColumnNavigate}
12357
+ * Attaches event handler `fnFunction` to the {@link #event:afterBeginColumnNavigate afterBeginColumnNavigate }
11720
12358
  * event of this `sap.f.FlexibleColumnLayout`.
11721
12359
  *
11722
12360
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
@@ -11737,14 +12375,16 @@ declare namespace sap {
11737
12375
  /**
11738
12376
  * The function to be called when the event occurs
11739
12377
  */
11740
- fnFunction: (p1: sap.ui.base.Event) => void,
12378
+ fnFunction: (
12379
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutAfterBeginColumnNavigateEventParameters>
12380
+ ) => void,
11741
12381
  /**
11742
12382
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
11743
12383
  */
11744
12384
  oListener?: object
11745
12385
  ): this;
11746
12386
  /**
11747
- * Attaches event handler `fnFunction` to the {@link #event:afterBeginColumnNavigate afterBeginColumnNavigate}
12387
+ * Attaches event handler `fnFunction` to the {@link #event:afterBeginColumnNavigate afterBeginColumnNavigate }
11748
12388
  * event of this `sap.f.FlexibleColumnLayout`.
11749
12389
  *
11750
12390
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
@@ -11760,14 +12400,16 @@ declare namespace sap {
11760
12400
  /**
11761
12401
  * The function to be called when the event occurs
11762
12402
  */
11763
- fnFunction: (p1: sap.ui.base.Event) => void,
12403
+ fnFunction: (
12404
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutAfterBeginColumnNavigateEventParameters>
12405
+ ) => void,
11764
12406
  /**
11765
12407
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
11766
12408
  */
11767
12409
  oListener?: object
11768
12410
  ): this;
11769
12411
  /**
11770
- * Attaches event handler `fnFunction` to the {@link #event:afterEndColumnNavigate afterEndColumnNavigate}
12412
+ * Attaches event handler `fnFunction` to the {@link #event:afterEndColumnNavigate afterEndColumnNavigate }
11771
12413
  * event of this `sap.f.FlexibleColumnLayout`.
11772
12414
  *
11773
12415
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
@@ -11788,14 +12430,16 @@ declare namespace sap {
11788
12430
  /**
11789
12431
  * The function to be called when the event occurs
11790
12432
  */
11791
- fnFunction: (p1: sap.ui.base.Event) => void,
12433
+ fnFunction: (
12434
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutAfterEndColumnNavigateEventParameters>
12435
+ ) => void,
11792
12436
  /**
11793
12437
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
11794
12438
  */
11795
12439
  oListener?: object
11796
12440
  ): this;
11797
12441
  /**
11798
- * Attaches event handler `fnFunction` to the {@link #event:afterEndColumnNavigate afterEndColumnNavigate}
12442
+ * Attaches event handler `fnFunction` to the {@link #event:afterEndColumnNavigate afterEndColumnNavigate }
11799
12443
  * event of this `sap.f.FlexibleColumnLayout`.
11800
12444
  *
11801
12445
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
@@ -11811,14 +12455,16 @@ declare namespace sap {
11811
12455
  /**
11812
12456
  * The function to be called when the event occurs
11813
12457
  */
11814
- fnFunction: (p1: sap.ui.base.Event) => void,
12458
+ fnFunction: (
12459
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutAfterEndColumnNavigateEventParameters>
12460
+ ) => void,
11815
12461
  /**
11816
12462
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
11817
12463
  */
11818
12464
  oListener?: object
11819
12465
  ): this;
11820
12466
  /**
11821
- * Attaches event handler `fnFunction` to the {@link #event:afterMidColumnNavigate afterMidColumnNavigate}
12467
+ * Attaches event handler `fnFunction` to the {@link #event:afterMidColumnNavigate afterMidColumnNavigate }
11822
12468
  * event of this `sap.f.FlexibleColumnLayout`.
11823
12469
  *
11824
12470
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
@@ -11839,14 +12485,16 @@ declare namespace sap {
11839
12485
  /**
11840
12486
  * The function to be called when the event occurs
11841
12487
  */
11842
- fnFunction: (p1: sap.ui.base.Event) => void,
12488
+ fnFunction: (
12489
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutAfterMidColumnNavigateEventParameters>
12490
+ ) => void,
11843
12491
  /**
11844
12492
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
11845
12493
  */
11846
12494
  oListener?: object
11847
12495
  ): this;
11848
12496
  /**
11849
- * Attaches event handler `fnFunction` to the {@link #event:afterMidColumnNavigate afterMidColumnNavigate}
12497
+ * Attaches event handler `fnFunction` to the {@link #event:afterMidColumnNavigate afterMidColumnNavigate }
11850
12498
  * event of this `sap.f.FlexibleColumnLayout`.
11851
12499
  *
11852
12500
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
@@ -11862,7 +12510,9 @@ declare namespace sap {
11862
12510
  /**
11863
12511
  * The function to be called when the event occurs
11864
12512
  */
11865
- fnFunction: (p1: sap.ui.base.Event) => void,
12513
+ fnFunction: (
12514
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutAfterMidColumnNavigateEventParameters>
12515
+ ) => void,
11866
12516
  /**
11867
12517
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
11868
12518
  */
@@ -11890,7 +12540,9 @@ declare namespace sap {
11890
12540
  /**
11891
12541
  * The function to be called when the event occurs
11892
12542
  */
11893
- fnFunction: (p1: sap.ui.base.Event) => void,
12543
+ fnFunction: (
12544
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutBeginColumnNavigateEventParameters>
12545
+ ) => void,
11894
12546
  /**
11895
12547
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
11896
12548
  */
@@ -11913,7 +12565,9 @@ declare namespace sap {
11913
12565
  /**
11914
12566
  * The function to be called when the event occurs
11915
12567
  */
11916
- fnFunction: (p1: sap.ui.base.Event) => void,
12568
+ fnFunction: (
12569
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutBeginColumnNavigateEventParameters>
12570
+ ) => void,
11917
12571
  /**
11918
12572
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
11919
12573
  */
@@ -11940,7 +12594,9 @@ declare namespace sap {
11940
12594
  /**
11941
12595
  * The function to be called when the event occurs
11942
12596
  */
11943
- fnFunction: (p1: sap.ui.base.Event) => void,
12597
+ fnFunction: (
12598
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutColumnResizeEventParameters>
12599
+ ) => void,
11944
12600
  /**
11945
12601
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
11946
12602
  */
@@ -11962,7 +12618,9 @@ declare namespace sap {
11962
12618
  /**
11963
12619
  * The function to be called when the event occurs
11964
12620
  */
11965
- fnFunction: (p1: sap.ui.base.Event) => void,
12621
+ fnFunction: (
12622
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutColumnResizeEventParameters>
12623
+ ) => void,
11966
12624
  /**
11967
12625
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
11968
12626
  */
@@ -11990,7 +12648,9 @@ declare namespace sap {
11990
12648
  /**
11991
12649
  * The function to be called when the event occurs
11992
12650
  */
11993
- fnFunction: (p1: sap.ui.base.Event) => void,
12651
+ fnFunction: (
12652
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutEndColumnNavigateEventParameters>
12653
+ ) => void,
11994
12654
  /**
11995
12655
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
11996
12656
  */
@@ -12013,7 +12673,9 @@ declare namespace sap {
12013
12673
  /**
12014
12674
  * The function to be called when the event occurs
12015
12675
  */
12016
- fnFunction: (p1: sap.ui.base.Event) => void,
12676
+ fnFunction: (
12677
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutEndColumnNavigateEventParameters>
12678
+ ) => void,
12017
12679
  /**
12018
12680
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
12019
12681
  */
@@ -12041,7 +12703,9 @@ declare namespace sap {
12041
12703
  /**
12042
12704
  * The function to be called when the event occurs
12043
12705
  */
12044
- fnFunction: (p1: sap.ui.base.Event) => void,
12706
+ fnFunction: (
12707
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutMidColumnNavigateEventParameters>
12708
+ ) => void,
12045
12709
  /**
12046
12710
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
12047
12711
  */
@@ -12064,7 +12728,9 @@ declare namespace sap {
12064
12728
  /**
12065
12729
  * The function to be called when the event occurs
12066
12730
  */
12067
- fnFunction: (p1: sap.ui.base.Event) => void,
12731
+ fnFunction: (
12732
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutMidColumnNavigateEventParameters>
12733
+ ) => void,
12068
12734
  /**
12069
12735
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
12070
12736
  */
@@ -12082,7 +12748,7 @@ declare namespace sap {
12082
12748
  * The interactions that may lead to a state change are:
12083
12749
  * - the property `layout` was changed indirectly by the user clicking a layout arrow
12084
12750
  * - the user resized the browser beyond a breakpoint, thus changing the maximum number of columns that
12085
- * can be displayed at once.
12751
+ * can be displayed at once.
12086
12752
  *
12087
12753
  * **Note: **The event is suppressed while the control has zero width and will be fired the first time
12088
12754
  * it gets a non-zero width
@@ -12098,7 +12764,9 @@ declare namespace sap {
12098
12764
  /**
12099
12765
  * The function to be called when the event occurs
12100
12766
  */
12101
- fnFunction: (p1: sap.ui.base.Event) => void,
12767
+ fnFunction: (
12768
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutStateChangeEventParameters>
12769
+ ) => void,
12102
12770
  /**
12103
12771
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
12104
12772
  */
@@ -12116,7 +12784,7 @@ declare namespace sap {
12116
12784
  * The interactions that may lead to a state change are:
12117
12785
  * - the property `layout` was changed indirectly by the user clicking a layout arrow
12118
12786
  * - the user resized the browser beyond a breakpoint, thus changing the maximum number of columns that
12119
- * can be displayed at once.
12787
+ * can be displayed at once.
12120
12788
  *
12121
12789
  * **Note: **The event is suppressed while the control has zero width and will be fired the first time
12122
12790
  * it gets a non-zero width
@@ -12127,7 +12795,9 @@ declare namespace sap {
12127
12795
  /**
12128
12796
  * The function to be called when the event occurs
12129
12797
  */
12130
- fnFunction: (p1: sap.ui.base.Event) => void,
12798
+ fnFunction: (
12799
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutStateChangeEventParameters>
12800
+ ) => void,
12131
12801
  /**
12132
12802
  * Context object to call the event handler with. Defaults to this `sap.f.FlexibleColumnLayout` itself
12133
12803
  */
@@ -12310,7 +12980,7 @@ declare namespace sap {
12310
12980
  */
12311
12981
  destroyMidColumnPages(): this;
12312
12982
  /**
12313
- * Detaches event handler `fnFunction` from the {@link #event:afterBeginColumnNavigate afterBeginColumnNavigate}
12983
+ * Detaches event handler `fnFunction` from the {@link #event:afterBeginColumnNavigate afterBeginColumnNavigate }
12314
12984
  * event of this `sap.f.FlexibleColumnLayout`.
12315
12985
  *
12316
12986
  * The passed function and listener object must match the ones used for event registration.
@@ -12321,14 +12991,16 @@ declare namespace sap {
12321
12991
  /**
12322
12992
  * The function to be called, when the event occurs
12323
12993
  */
12324
- fnFunction: (p1: sap.ui.base.Event) => void,
12994
+ fnFunction: (
12995
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutAfterBeginColumnNavigateEventParameters>
12996
+ ) => void,
12325
12997
  /**
12326
12998
  * Context object on which the given function had to be called
12327
12999
  */
12328
13000
  oListener?: object
12329
13001
  ): this;
12330
13002
  /**
12331
- * Detaches event handler `fnFunction` from the {@link #event:afterEndColumnNavigate afterEndColumnNavigate}
13003
+ * Detaches event handler `fnFunction` from the {@link #event:afterEndColumnNavigate afterEndColumnNavigate }
12332
13004
  * event of this `sap.f.FlexibleColumnLayout`.
12333
13005
  *
12334
13006
  * The passed function and listener object must match the ones used for event registration.
@@ -12339,14 +13011,16 @@ declare namespace sap {
12339
13011
  /**
12340
13012
  * The function to be called, when the event occurs
12341
13013
  */
12342
- fnFunction: (p1: sap.ui.base.Event) => void,
13014
+ fnFunction: (
13015
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutAfterEndColumnNavigateEventParameters>
13016
+ ) => void,
12343
13017
  /**
12344
13018
  * Context object on which the given function had to be called
12345
13019
  */
12346
13020
  oListener?: object
12347
13021
  ): this;
12348
13022
  /**
12349
- * Detaches event handler `fnFunction` from the {@link #event:afterMidColumnNavigate afterMidColumnNavigate}
13023
+ * Detaches event handler `fnFunction` from the {@link #event:afterMidColumnNavigate afterMidColumnNavigate }
12350
13024
  * event of this `sap.f.FlexibleColumnLayout`.
12351
13025
  *
12352
13026
  * The passed function and listener object must match the ones used for event registration.
@@ -12357,7 +13031,9 @@ declare namespace sap {
12357
13031
  /**
12358
13032
  * The function to be called, when the event occurs
12359
13033
  */
12360
- fnFunction: (p1: sap.ui.base.Event) => void,
13034
+ fnFunction: (
13035
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutAfterMidColumnNavigateEventParameters>
13036
+ ) => void,
12361
13037
  /**
12362
13038
  * Context object on which the given function had to be called
12363
13039
  */
@@ -12375,7 +13051,9 @@ declare namespace sap {
12375
13051
  /**
12376
13052
  * The function to be called, when the event occurs
12377
13053
  */
12378
- fnFunction: (p1: sap.ui.base.Event) => void,
13054
+ fnFunction: (
13055
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutBeginColumnNavigateEventParameters>
13056
+ ) => void,
12379
13057
  /**
12380
13058
  * Context object on which the given function had to be called
12381
13059
  */
@@ -12394,7 +13072,9 @@ declare namespace sap {
12394
13072
  /**
12395
13073
  * The function to be called, when the event occurs
12396
13074
  */
12397
- fnFunction: (p1: sap.ui.base.Event) => void,
13075
+ fnFunction: (
13076
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutColumnResizeEventParameters>
13077
+ ) => void,
12398
13078
  /**
12399
13079
  * Context object on which the given function had to be called
12400
13080
  */
@@ -12412,7 +13092,9 @@ declare namespace sap {
12412
13092
  /**
12413
13093
  * The function to be called, when the event occurs
12414
13094
  */
12415
- fnFunction: (p1: sap.ui.base.Event) => void,
13095
+ fnFunction: (
13096
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutEndColumnNavigateEventParameters>
13097
+ ) => void,
12416
13098
  /**
12417
13099
  * Context object on which the given function had to be called
12418
13100
  */
@@ -12430,7 +13112,9 @@ declare namespace sap {
12430
13112
  /**
12431
13113
  * The function to be called, when the event occurs
12432
13114
  */
12433
- fnFunction: (p1: sap.ui.base.Event) => void,
13115
+ fnFunction: (
13116
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutMidColumnNavigateEventParameters>
13117
+ ) => void,
12434
13118
  /**
12435
13119
  * Context object on which the given function had to be called
12436
13120
  */
@@ -12447,7 +13131,9 @@ declare namespace sap {
12447
13131
  /**
12448
13132
  * The function to be called, when the event occurs
12449
13133
  */
12450
- fnFunction: (p1: sap.ui.base.Event) => void,
13134
+ fnFunction: (
13135
+ p1: sap.ui.base.Event<sap.f.$FlexibleColumnLayoutStateChangeEventParameters>
13136
+ ) => void,
12451
13137
  /**
12452
13138
  * Context object on which the given function had to be called
12453
13139
  */
@@ -12464,49 +13150,7 @@ declare namespace sap {
12464
13150
  /**
12465
13151
  * Parameters to pass along with the event
12466
13152
  */
12467
- mParameters?: {
12468
- /**
12469
- * The page, which had been displayed before navigation.
12470
- */
12471
- from?: sap.ui.core.Control;
12472
- /**
12473
- * The ID of the page, which had been displayed before navigation.
12474
- */
12475
- fromId?: string;
12476
- /**
12477
- * The page, which is now displayed after navigation.
12478
- */
12479
- to?: sap.ui.core.Control;
12480
- /**
12481
- * The ID of the page, which is now displayed after navigation.
12482
- */
12483
- toId?: string;
12484
- /**
12485
- * Whether the "to" page (more precisely: a control with the ID of the page, which has been navigated to)
12486
- * has not been displayed/navigated to before.
12487
- */
12488
- firstTime?: boolean;
12489
- /**
12490
- * Determines whether was a forward navigation, triggered by to().
12491
- */
12492
- isTo?: boolean;
12493
- /**
12494
- * Determines whether this was a back navigation, triggered by back().
12495
- */
12496
- isBack?: boolean;
12497
- /**
12498
- * Determines whether this was a navigation to the root page, triggered by backToTop().
12499
- */
12500
- isBackToTop?: boolean;
12501
- /**
12502
- * Determines whether this was a navigation to a specific page, triggered by backToPage().
12503
- */
12504
- isBackToPage?: boolean;
12505
- /**
12506
- * Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
12507
- */
12508
- direction?: string;
12509
- }
13153
+ mParameters?: sap.f.$FlexibleColumnLayoutAfterBeginColumnNavigateEventParameters
12510
13154
  ): this;
12511
13155
  /**
12512
13156
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -12519,49 +13163,7 @@ declare namespace sap {
12519
13163
  /**
12520
13164
  * Parameters to pass along with the event
12521
13165
  */
12522
- mParameters?: {
12523
- /**
12524
- * The page, which had been displayed before navigation.
12525
- */
12526
- from?: sap.ui.core.Control;
12527
- /**
12528
- * The ID of the page, which had been displayed before navigation.
12529
- */
12530
- fromId?: string;
12531
- /**
12532
- * The page, which is now displayed after navigation.
12533
- */
12534
- to?: sap.ui.core.Control;
12535
- /**
12536
- * The ID of the page, which is now displayed after navigation.
12537
- */
12538
- toId?: string;
12539
- /**
12540
- * Whether the "to" page (more precisely: a control with the ID of the page, which has been navigated to)
12541
- * has not been displayed/navigated to before.
12542
- */
12543
- firstTime?: boolean;
12544
- /**
12545
- * Determines whether was a forward navigation, triggered by to().
12546
- */
12547
- isTo?: boolean;
12548
- /**
12549
- * Determines whether this was a back navigation, triggered by back().
12550
- */
12551
- isBack?: boolean;
12552
- /**
12553
- * Determines whether this was a navigation to the root page, triggered by backToTop().
12554
- */
12555
- isBackToTop?: boolean;
12556
- /**
12557
- * Determines whether this was a navigation to a specific page, triggered by backToPage().
12558
- */
12559
- isBackToPage?: boolean;
12560
- /**
12561
- * Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
12562
- */
12563
- direction?: string;
12564
- }
13166
+ mParameters?: sap.f.$FlexibleColumnLayoutAfterEndColumnNavigateEventParameters
12565
13167
  ): this;
12566
13168
  /**
12567
13169
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -12574,49 +13176,7 @@ declare namespace sap {
12574
13176
  /**
12575
13177
  * Parameters to pass along with the event
12576
13178
  */
12577
- mParameters?: {
12578
- /**
12579
- * The page, which had been displayed before navigation.
12580
- */
12581
- from?: sap.ui.core.Control;
12582
- /**
12583
- * The ID of the page, which had been displayed before navigation.
12584
- */
12585
- fromId?: string;
12586
- /**
12587
- * The page, which is now displayed after navigation.
12588
- */
12589
- to?: sap.ui.core.Control;
12590
- /**
12591
- * The ID of the page, which is now displayed after navigation.
12592
- */
12593
- toId?: string;
12594
- /**
12595
- * Whether the "to" page (more precisely: a control with the ID of the page, which has been navigated to)
12596
- * has not been displayed/navigated to before.
12597
- */
12598
- firstTime?: boolean;
12599
- /**
12600
- * Determines whether was a forward navigation, triggered by to().
12601
- */
12602
- isTo?: boolean;
12603
- /**
12604
- * Determines whether this was a back navigation, triggered by back().
12605
- */
12606
- isBack?: boolean;
12607
- /**
12608
- * Determines whether this was a navigation to the root page, triggered by backToTop().
12609
- */
12610
- isBackToTop?: boolean;
12611
- /**
12612
- * Determines whether this was a navigation to a specific page, triggered by backToPage().
12613
- */
12614
- isBackToPage?: boolean;
12615
- /**
12616
- * Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
12617
- */
12618
- direction?: string;
12619
- }
13179
+ mParameters?: sap.f.$FlexibleColumnLayoutAfterMidColumnNavigateEventParameters
12620
13180
  ): this;
12621
13181
  /**
12622
13182
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -12632,49 +13192,7 @@ declare namespace sap {
12632
13192
  /**
12633
13193
  * Parameters to pass along with the event
12634
13194
  */
12635
- mParameters?: {
12636
- /**
12637
- * The page, which was displayed before the current navigation.
12638
- */
12639
- from?: sap.ui.core.Control;
12640
- /**
12641
- * The ID of the page, which was displayed before the current navigation.
12642
- */
12643
- fromId?: string;
12644
- /**
12645
- * The page, which will be displayed after the current navigation.
12646
- */
12647
- to?: sap.ui.core.Control;
12648
- /**
12649
- * The ID of the page, which will be displayed after the current navigation.
12650
- */
12651
- toId?: string;
12652
- /**
12653
- * Determines whether the "to" page (more precisely: a control with the ID of the page, which is currently
12654
- * being navigated to) has not been displayed/navigated to before.
12655
- */
12656
- firstTime?: boolean;
12657
- /**
12658
- * Determines whether this is a forward navigation, triggered by to().
12659
- */
12660
- isTo?: boolean;
12661
- /**
12662
- * Determines whether this is a back navigation, triggered by back().
12663
- */
12664
- isBack?: boolean;
12665
- /**
12666
- * Determines whether this is a navigation to the root page, triggered by backToTop().
12667
- */
12668
- isBackToTop?: boolean;
12669
- /**
12670
- * Determines whether this was a navigation to a specific page, triggered by backToPage().
12671
- */
12672
- isBackToPage?: boolean;
12673
- /**
12674
- * Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
12675
- */
12676
- direction?: string;
12677
- }
13195
+ mParameters?: sap.f.$FlexibleColumnLayoutBeginColumnNavigateEventParameters
12678
13196
  ): boolean;
12679
13197
  /**
12680
13198
  * @SINCE 1.76
@@ -12688,20 +13206,7 @@ declare namespace sap {
12688
13206
  /**
12689
13207
  * Parameters to pass along with the event
12690
13208
  */
12691
- mParameters?: {
12692
- /**
12693
- * Determines whether `beginColumn` resize has completed.
12694
- */
12695
- beginColumn?: boolean;
12696
- /**
12697
- * Determines whether `midColumn` resize has completed.
12698
- */
12699
- midColumn?: boolean;
12700
- /**
12701
- * Determines whether `endColumn` resize has completed.
12702
- */
12703
- endColumn?: boolean;
12704
- }
13209
+ mParameters?: sap.f.$FlexibleColumnLayoutColumnResizeEventParameters
12705
13210
  ): this;
12706
13211
  /**
12707
13212
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -12717,49 +13222,7 @@ declare namespace sap {
12717
13222
  /**
12718
13223
  * Parameters to pass along with the event
12719
13224
  */
12720
- mParameters?: {
12721
- /**
12722
- * The page, which was displayed before the current navigation.
12723
- */
12724
- from?: sap.ui.core.Control;
12725
- /**
12726
- * The ID of the page, which was displayed before the current navigation.
12727
- */
12728
- fromId?: string;
12729
- /**
12730
- * The page, which will be displayed after the current navigation.
12731
- */
12732
- to?: sap.ui.core.Control;
12733
- /**
12734
- * The ID of the page, which will be displayed after the current navigation.
12735
- */
12736
- toId?: string;
12737
- /**
12738
- * Determines whether the "to" page (more precisely: a control with the ID of the page, which is currently
12739
- * being navigated to) has not been displayed/navigated to before.
12740
- */
12741
- firstTime?: boolean;
12742
- /**
12743
- * Determines whether this is a forward navigation, triggered by to().
12744
- */
12745
- isTo?: boolean;
12746
- /**
12747
- * Determines whether this is a back navigation, triggered by back().
12748
- */
12749
- isBack?: boolean;
12750
- /**
12751
- * Determines whether this is a navigation to the root page, triggered by backToTop().
12752
- */
12753
- isBackToTop?: boolean;
12754
- /**
12755
- * Determines whether this was a navigation to a specific page, triggered by backToPage().
12756
- */
12757
- isBackToPage?: boolean;
12758
- /**
12759
- * Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
12760
- */
12761
- direction?: string;
12762
- }
13225
+ mParameters?: sap.f.$FlexibleColumnLayoutEndColumnNavigateEventParameters
12763
13226
  ): boolean;
12764
13227
  /**
12765
13228
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -12775,49 +13238,7 @@ declare namespace sap {
12775
13238
  /**
12776
13239
  * Parameters to pass along with the event
12777
13240
  */
12778
- mParameters?: {
12779
- /**
12780
- * The page, which was displayed before the current navigation.
12781
- */
12782
- from?: sap.ui.core.Control;
12783
- /**
12784
- * The ID of the page, which was displayed before the current navigation.
12785
- */
12786
- fromId?: string;
12787
- /**
12788
- * The page, which will be displayed after the current navigation.
12789
- */
12790
- to?: sap.ui.core.Control;
12791
- /**
12792
- * The ID of the page, which will be displayed after the current navigation.
12793
- */
12794
- toId?: string;
12795
- /**
12796
- * Determines whether the "to" page (more precisely: a control with the ID of the page, which is currently
12797
- * being navigated to) has not been displayed/navigated to before.
12798
- */
12799
- firstTime?: boolean;
12800
- /**
12801
- * Determines whether this is a forward navigation, triggered by to().
12802
- */
12803
- isTo?: boolean;
12804
- /**
12805
- * Determines whether this is a back navigation, triggered by back().
12806
- */
12807
- isBack?: boolean;
12808
- /**
12809
- * Determines whether this is a navigation to the root page, triggered by backToTop().
12810
- */
12811
- isBackToTop?: boolean;
12812
- /**
12813
- * Determines whether this was a navigation to a specific page, triggered by backToPage().
12814
- */
12815
- isBackToPage?: boolean;
12816
- /**
12817
- * Determines how the navigation was triggered, possible values are "to", "back", "backToPage", and "backToTop".
12818
- */
12819
- direction?: string;
12820
- }
13241
+ mParameters?: sap.f.$FlexibleColumnLayoutMidColumnNavigateEventParameters
12821
13242
  ): boolean;
12822
13243
  /**
12823
13244
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -12830,30 +13251,7 @@ declare namespace sap {
12830
13251
  /**
12831
13252
  * Parameters to pass along with the event
12832
13253
  */
12833
- mParameters?: {
12834
- /**
12835
- * The value of the `layout` property
12836
- */
12837
- layout?: sap.f.LayoutType;
12838
- /**
12839
- * The maximum number of columns that can be displayed at once based on the available screen size and control
12840
- * settings.
12841
- *
12842
- * Possible values are:
12843
- * - 3 for browser size of 1280px or more
12844
- * - 2 for browser size between 960px and 1280px
12845
- * - 1 for browser size less than 960px
12846
- */
12847
- maxColumnsCount?: int;
12848
- /**
12849
- * Indicates whether the layout changed as a result of the user clicking a layout arrow
12850
- */
12851
- isNavigationArrow?: boolean;
12852
- /**
12853
- * Indicates whether the maximum number of columns that can be displayed at once changed
12854
- */
12855
- isResize?: boolean;
12856
- }
13254
+ mParameters?: sap.f.$FlexibleColumnLayoutStateChangeEventParameters
12857
13255
  ): this;
12858
13256
  /**
12859
13257
  * @SINCE 1.76
@@ -12987,7 +13385,8 @@ declare namespace sap {
12987
13385
  *
12988
13386
  * Determines the layout of the control - number of visible columns and their relative sizes.
12989
13387
  *
12990
- * For more details, see {@link topic:3b9f760da5b64adf8db7f95247879086 Types of Layout} in the documentation.
13388
+ * For more details, see {@link https://ui5.sap.com/#/topic/3b9f760da5b64adf8db7f95247879086 Types of Layout }
13389
+ * in the documentation.
12991
13390
  *
12992
13391
  * Default value is `OneColumn`.
12993
13392
  *
@@ -13320,7 +13719,8 @@ declare namespace sap {
13320
13719
  *
13321
13720
  * Determines the layout of the control - number of visible columns and their relative sizes.
13322
13721
  *
13323
- * For more details, see {@link topic:3b9f760da5b64adf8db7f95247879086 Types of Layout} in the documentation.
13722
+ * For more details, see {@link https://ui5.sap.com/#/topic/3b9f760da5b64adf8db7f95247879086 Types of Layout }
13723
+ * in the documentation.
13324
13724
  *
13325
13725
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13326
13726
  *
@@ -13952,9 +14352,9 @@ declare namespace sap {
13952
14352
  *
13953
14353
  * The usage of `sap.f.FlexibleColumnLayoutSemanticHelper` revolves around two main methods:
13954
14354
  * - `getCurrentUIState`Suggests which action buttons to show in each `sap.f.FlexibleColumnLayout` column,
13955
- * based on the current control state (number and visibility of columns, layout, etc..)
14355
+ * based on the current control state (number and visibility of columns, layout, etc..)
13956
14356
  * - `getNextUIState`Suggests which `layout` to use when navigating to another view level (e.g. from one
13957
- * view to two views).
14357
+ * view to two views).
13958
14358
  *
13959
14359
  * Sample usage of the class:
13960
14360
  *
@@ -13980,8 +14380,7 @@ declare namespace sap {
13980
14380
  * Similarly, calling `getNextUIState(0)` will return information about the expected layout and action buttons
13981
14381
  * if the application should display the initial view only (list), based on the current state.
13982
14382
  *
13983
- * For more information, see {@link sap.f.FlexibleColumnLayoutSemanticHelper#getCurrentUIState} and {@link
13984
- * sap.f.FlexibleColumnLayoutSemanticHelper#getNextUIState}
14383
+ * For more information, see {@link sap.f.FlexibleColumnLayoutSemanticHelper#getCurrentUIState} and {@link sap.f.FlexibleColumnLayoutSemanticHelper#getNextUIState}
13985
14384
  */
13986
14385
  class FlexibleColumnLayoutSemanticHelper {
13987
14386
  /**
@@ -14066,8 +14465,7 @@ declare namespace sap {
14066
14465
  * column.
14067
14466
  *
14068
14467
  * **Note:** This method relies on the internal `FlexibleColumnLayout` reference to be rendered in the DOM
14069
- * tree. For convenience, use methods {@link sap.f.FlexibleColumnLayoutSemanticHelper#isDOMReady} and {@link
14070
- * sap.f.FlexibleColumnLayoutSemanticHelper#whenDOMReady}.
14468
+ * tree. For convenience, use methods {@link sap.f.FlexibleColumnLayoutSemanticHelper#isDOMReady} and {@link sap.f.FlexibleColumnLayoutSemanticHelper#whenDOMReady}.
14071
14469
  *
14072
14470
  * @returns The object describing the current UI state
14073
14471
  */
@@ -14079,9 +14477,9 @@ declare namespace sap {
14079
14477
  * - defaultLayoutType - the layout that will be suggested by default when only 1 column needs to be shown
14080
14478
  *
14081
14479
  * - defaultTwoColumnLayoutType - the layout that will be suggested by default when 2 columns have to
14082
- * be shown side by side
14480
+ * be shown side by side
14083
14481
  * - defaultThreeColumnLayoutType - the layout that will be suggested by default when 3 columns have to
14084
- * be shown side by side
14482
+ * be shown side by side
14085
14483
  *
14086
14484
  * @returns The object describing the default layout types for the different numbers of columns
14087
14485
  */
@@ -14155,7 +14553,7 @@ declare namespace sap {
14155
14553
  *
14156
14554
  * When to use
14157
14555
  * - For aligning home page and dashboard items like Tiles and Cards in a simple grid system with equally
14158
- * sized rows and columns.
14556
+ * sized rows and columns.
14159
14557
  *
14160
14558
  * When not to use
14161
14559
  * - If a more complex layout grid system, where columns and rows may vary in size, is needed.
@@ -14224,9 +14622,9 @@ declare namespace sap {
14224
14622
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
14225
14623
  * of the syntax of the settings object.
14226
14624
  * See:
14227
- * {@link topic:cca5ee5d63ca44c89318f8496a58f9f2 Grid Container}
14228
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
14229
- * {@link topic:5b46b03f024542ba802d99d67bc1a3f4 Cards}
14625
+ * {@link https://ui5.sap.com/#/topic/cca5ee5d63ca44c89318f8496a58f9f2 Grid Container}
14626
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
14627
+ * {@link https://ui5.sap.com/#/topic/5b46b03f024542ba802d99d67bc1a3f4 Cards}
14230
14628
  * {@link sap.f.dnd.GridDropInfo}
14231
14629
  */
14232
14630
  constructor(
@@ -14242,9 +14640,9 @@ declare namespace sap {
14242
14640
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
14243
14641
  * of the syntax of the settings object.
14244
14642
  * See:
14245
- * {@link topic:cca5ee5d63ca44c89318f8496a58f9f2 Grid Container}
14246
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
14247
- * {@link topic:5b46b03f024542ba802d99d67bc1a3f4 Cards}
14643
+ * {@link https://ui5.sap.com/#/topic/cca5ee5d63ca44c89318f8496a58f9f2 Grid Container}
14644
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
14645
+ * {@link https://ui5.sap.com/#/topic/5b46b03f024542ba802d99d67bc1a3f4 Cards}
14248
14646
  * {@link sap.f.dnd.GridDropInfo}
14249
14647
  */
14250
14648
  constructor(
@@ -14339,7 +14737,9 @@ declare namespace sap {
14339
14737
  /**
14340
14738
  * The function to be called when the event occurs
14341
14739
  */
14342
- fnFunction: (p1: sap.ui.base.Event) => void,
14740
+ fnFunction: (
14741
+ p1: sap.ui.base.Event<sap.f.$GridContainerBorderReachedEventParameters>
14742
+ ) => void,
14343
14743
  /**
14344
14744
  * Context object to call the event handler with. Defaults to this `sap.f.GridContainer` itself
14345
14745
  */
@@ -14359,7 +14759,9 @@ declare namespace sap {
14359
14759
  /**
14360
14760
  * The function to be called when the event occurs
14361
14761
  */
14362
- fnFunction: (p1: sap.ui.base.Event) => void,
14762
+ fnFunction: (
14763
+ p1: sap.ui.base.Event<sap.f.$GridContainerBorderReachedEventParameters>
14764
+ ) => void,
14363
14765
  /**
14364
14766
  * Context object to call the event handler with. Defaults to this `sap.f.GridContainer` itself
14365
14767
  */
@@ -14384,7 +14786,9 @@ declare namespace sap {
14384
14786
  /**
14385
14787
  * The function to be called when the event occurs
14386
14788
  */
14387
- fnFunction: (p1: sap.ui.base.Event) => void,
14789
+ fnFunction: (
14790
+ p1: sap.ui.base.Event<sap.f.$GridContainerColumnsChangeEventParameters>
14791
+ ) => void,
14388
14792
  /**
14389
14793
  * Context object to call the event handler with. Defaults to this `sap.f.GridContainer` itself
14390
14794
  */
@@ -14404,7 +14808,9 @@ declare namespace sap {
14404
14808
  /**
14405
14809
  * The function to be called when the event occurs
14406
14810
  */
14407
- fnFunction: (p1: sap.ui.base.Event) => void,
14811
+ fnFunction: (
14812
+ p1: sap.ui.base.Event<sap.f.$GridContainerColumnsChangeEventParameters>
14813
+ ) => void,
14408
14814
  /**
14409
14815
  * Context object to call the event handler with. Defaults to this `sap.f.GridContainer` itself
14410
14816
  */
@@ -14429,7 +14835,9 @@ declare namespace sap {
14429
14835
  /**
14430
14836
  * The function to be called when the event occurs
14431
14837
  */
14432
- fnFunction: (p1: sap.ui.base.Event) => void,
14838
+ fnFunction: (
14839
+ p1: sap.ui.base.Event<sap.f.$GridContainerLayoutChangeEventParameters>
14840
+ ) => void,
14433
14841
  /**
14434
14842
  * Context object to call the event handler with. Defaults to this `sap.f.GridContainer` itself
14435
14843
  */
@@ -14449,7 +14857,9 @@ declare namespace sap {
14449
14857
  /**
14450
14858
  * The function to be called when the event occurs
14451
14859
  */
14452
- fnFunction: (p1: sap.ui.base.Event) => void,
14860
+ fnFunction: (
14861
+ p1: sap.ui.base.Event<sap.f.$GridContainerLayoutChangeEventParameters>
14862
+ ) => void,
14453
14863
  /**
14454
14864
  * Context object to call the event handler with. Defaults to this `sap.f.GridContainer` itself
14455
14865
  */
@@ -14512,7 +14922,9 @@ declare namespace sap {
14512
14922
  /**
14513
14923
  * The function to be called, when the event occurs
14514
14924
  */
14515
- fnFunction: (p1: sap.ui.base.Event) => void,
14925
+ fnFunction: (
14926
+ p1: sap.ui.base.Event<sap.f.$GridContainerBorderReachedEventParameters>
14927
+ ) => void,
14516
14928
  /**
14517
14929
  * Context object on which the given function had to be called
14518
14930
  */
@@ -14530,7 +14942,9 @@ declare namespace sap {
14530
14942
  /**
14531
14943
  * The function to be called, when the event occurs
14532
14944
  */
14533
- fnFunction: (p1: sap.ui.base.Event) => void,
14945
+ fnFunction: (
14946
+ p1: sap.ui.base.Event<sap.f.$GridContainerColumnsChangeEventParameters>
14947
+ ) => void,
14534
14948
  /**
14535
14949
  * Context object on which the given function had to be called
14536
14950
  */
@@ -14547,7 +14961,9 @@ declare namespace sap {
14547
14961
  /**
14548
14962
  * The function to be called, when the event occurs
14549
14963
  */
14550
- fnFunction: (p1: sap.ui.base.Event) => void,
14964
+ fnFunction: (
14965
+ p1: sap.ui.base.Event<sap.f.$GridContainerLayoutChangeEventParameters>
14966
+ ) => void,
14551
14967
  /**
14552
14968
  * Context object on which the given function had to be called
14553
14969
  */
@@ -14564,24 +14980,7 @@ declare namespace sap {
14564
14980
  /**
14565
14981
  * Parameters to pass along with the event
14566
14982
  */
14567
- mParameters?: {
14568
- /**
14569
- * Event that leads to the focus change.
14570
- */
14571
- event?: jQuery.Event;
14572
- /**
14573
- * The navigation direction that is used to reach the border.
14574
- */
14575
- direction?: sap.f.NavigationDirection;
14576
- /**
14577
- * The row index, from which the border is reached.
14578
- */
14579
- row?: int;
14580
- /**
14581
- * The column index, from which the border is reached.
14582
- */
14583
- column?: int;
14584
- }
14983
+ mParameters?: sap.f.$GridContainerBorderReachedEventParameters
14585
14984
  ): this;
14586
14985
  /**
14587
14986
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -14594,12 +14993,7 @@ declare namespace sap {
14594
14993
  /**
14595
14994
  * Parameters to pass along with the event
14596
14995
  */
14597
- mParameters?: {
14598
- /**
14599
- * The count of the gird columns.
14600
- */
14601
- columns?: int;
14602
- }
14996
+ mParameters?: sap.f.$GridContainerColumnsChangeEventParameters
14603
14997
  ): this;
14604
14998
  /**
14605
14999
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -14612,12 +15006,7 @@ declare namespace sap {
14612
15006
  /**
14613
15007
  * Parameters to pass along with the event
14614
15008
  */
14615
- mParameters?: {
14616
- /**
14617
- * The name of the newly active layout.
14618
- */
14619
- layout?: string;
14620
- }
15009
+ mParameters?: sap.f.$GridContainerLayoutChangeEventParameters
14621
15010
  ): this;
14622
15011
  /**
14623
15012
  * @EXPERIMENTAL (since 1.81) - Behavior might change.
@@ -14683,13 +15072,11 @@ declare namespace sap {
14683
15072
  */
14684
15073
  getAllowDenseFill(): boolean;
14685
15074
  /**
14686
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
14687
- * ariaDescribedBy}.
15075
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy ariaDescribedBy}.
14688
15076
  */
14689
15077
  getAriaDescribedBy(): sap.ui.core.ID[];
14690
15078
  /**
14691
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
14692
- * ariaLabelledBy}.
15079
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
14693
15080
  */
14694
15081
  getAriaLabelledBy(): sap.ui.core.ID[];
14695
15082
  /**
@@ -14829,7 +15216,7 @@ declare namespace sap {
14829
15216
  /**
14830
15217
  * The item to be inserted; if empty, nothing is inserted.
14831
15218
  */
14832
- oItem: sap.ui.core.Item,
15219
+ oItem: sap.ui.core.Control,
14833
15220
  /**
14834
15221
  * The `0`-based index the item should be inserted at; for a negative value of `iIndex`, the item is inserted
14835
15222
  * at position 0; for a value greater than the current size of the aggregation, the item is inserted at
@@ -14888,7 +15275,7 @@ declare namespace sap {
14888
15275
  /**
14889
15276
  * The item to remove or its index or ID.
14890
15277
  */
14891
- vItem: int | string | sap.ui.core.Item
15278
+ vItem: int | string | sap.ui.core.Control
14892
15279
  ): sap.ui.core.Control | null;
14893
15280
  /**
14894
15281
  * @EXPERIMENTAL (since 1.66) - Disclaimer: this property is in a beta state - incompatible API changes
@@ -15097,7 +15484,7 @@ declare namespace sap {
15097
15484
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
15098
15485
  * of the syntax of the settings object.
15099
15486
  * See:
15100
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
15487
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
15101
15488
  */
15102
15489
  constructor(
15103
15490
  /**
@@ -15112,7 +15499,7 @@ declare namespace sap {
15112
15499
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
15113
15500
  * of the syntax of the settings object.
15114
15501
  * See:
15115
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
15502
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
15116
15503
  */
15117
15504
  constructor(
15118
15505
  /**
@@ -15259,7 +15646,7 @@ declare namespace sap {
15259
15646
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
15260
15647
  * of the syntax of the settings object.
15261
15648
  * See:
15262
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
15649
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
15263
15650
  */
15264
15651
  constructor(
15265
15652
  /**
@@ -15274,7 +15661,7 @@ declare namespace sap {
15274
15661
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
15275
15662
  * of the syntax of the settings object.
15276
15663
  * See:
15277
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
15664
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
15278
15665
  */
15279
15666
  constructor(
15280
15667
  /**
@@ -15502,12 +15889,11 @@ declare namespace sap {
15502
15889
  * The layout used is based on the CSS display grid and the control has a default configuration.
15503
15890
  *
15504
15891
  * With `customLayout` aggregation it is possible to use:
15505
- * - Predefined simple grid layouts such as {@link sap.ui.layout.cssgrid.GridBoxLayout GridBoxLayout}
15892
+ * - Predefined simple grid layouts such as {@link sap.ui.layout.cssgrid.GridBoxLayout GridBoxLayout }
15893
+ *
15894
+ * - Flexible grid layouts, such as {@link sap.ui.layout.cssgrid.GridBasicLayout GridBasicLayout} or {@link sap.ui.layout.cssgrid.GridResponsiveLayout GridResponsiveLayout }
15895
+ * which reveal the native-browser CSS display grid APIs. For more information, see {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout MDN web docs: CSS Grid Layout }
15506
15896
  *
15507
- * - Flexible grid layouts, such as {@link sap.ui.layout.cssgrid.GridBasicLayout GridBasicLayout} or {@link
15508
- * sap.ui.layout.cssgrid.GridResponsiveLayout GridResponsiveLayout} which reveal the native-browser CSS
15509
- * display grid APIs. For more information, see {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout
15510
- * MDN web docs: CSS Grid Layout}
15511
15897
  *
15512
15898
  * Every item can override its size by specifying the number of columns and/or rows it will take in the
15513
15899
  * grid. This is done using {@link sap.ui.layout.cssgrid.GridItemLayoutData GridItemLayoutData}.
@@ -15519,10 +15905,9 @@ declare namespace sap {
15519
15905
  *
15520
15906
  * For general cases, use the default grid configuration of the `GridList`. For Box case (equal sized items),
15521
15907
  * use `customLayout` aggregation with {@link sap.ui.layout.cssgrid.GridBoxLayout GridBoxLayout} For Grids
15522
- * which need different configurations based on available width, use `customLayout` aggregation with {@link
15523
- * sap.ui.layout.cssgrid.GridResponsiveLayout GridResponsiveLayout} To set a specific position to an item
15524
- * or define its dimensions in the grid, pass `layoutData` of type {@link sap.ui.layout.cssgrid.GridItemLayoutData
15525
- * GridItemLayoutData}
15908
+ * which need different configurations based on available width, use `customLayout` aggregation with {@link sap.ui.layout.cssgrid.GridResponsiveLayout GridResponsiveLayout }
15909
+ * To set a specific position to an item or define its dimensions in the grid, pass `layoutData` of type
15910
+ * {@link sap.ui.layout.cssgrid.GridItemLayoutData GridItemLayoutData}
15526
15911
  *
15527
15912
  * When to use
15528
15913
  * - If {@link sap.m.ListBase} features are required and the items must be positioned in a grid layout
@@ -15564,7 +15949,7 @@ declare namespace sap {
15564
15949
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
15565
15950
  * of the syntax of the settings object.
15566
15951
  * See:
15567
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
15952
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
15568
15953
  * {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout MDN web docs: CSS Grid Layout}
15569
15954
  */
15570
15955
  constructor(
@@ -15580,7 +15965,7 @@ declare namespace sap {
15580
15965
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
15581
15966
  * of the syntax of the settings object.
15582
15967
  * See:
15583
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
15968
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
15584
15969
  * {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout MDN web docs: CSS Grid Layout}
15585
15970
  */
15586
15971
  constructor(
@@ -15642,7 +16027,9 @@ declare namespace sap {
15642
16027
  /**
15643
16028
  * The function to be called when the event occurs
15644
16029
  */
15645
- fnFunction: (p1: sap.ui.base.Event) => void,
16030
+ fnFunction: (
16031
+ p1: sap.ui.base.Event<sap.f.$GridListBorderReachedEventParameters>
16032
+ ) => void,
15646
16033
  /**
15647
16034
  * Context object to call the event handler with. Defaults to this `sap.f.GridList` itself
15648
16035
  */
@@ -15662,7 +16049,9 @@ declare namespace sap {
15662
16049
  /**
15663
16050
  * The function to be called when the event occurs
15664
16051
  */
15665
- fnFunction: (p1: sap.ui.base.Event) => void,
16052
+ fnFunction: (
16053
+ p1: sap.ui.base.Event<sap.f.$GridListBorderReachedEventParameters>
16054
+ ) => void,
15666
16055
  /**
15667
16056
  * Context object to call the event handler with. Defaults to this `sap.f.GridList` itself
15668
16057
  */
@@ -15686,7 +16075,9 @@ declare namespace sap {
15686
16075
  /**
15687
16076
  * The function to be called, when the event occurs
15688
16077
  */
15689
- fnFunction: (p1: sap.ui.base.Event) => void,
16078
+ fnFunction: (
16079
+ p1: sap.ui.base.Event<sap.f.$GridListBorderReachedEventParameters>
16080
+ ) => void,
15690
16081
  /**
15691
16082
  * Context object on which the given function had to be called
15692
16083
  */
@@ -15703,24 +16094,7 @@ declare namespace sap {
15703
16094
  /**
15704
16095
  * Parameters to pass along with the event
15705
16096
  */
15706
- mParameters?: {
15707
- /**
15708
- * Event that leads to the focus change.
15709
- */
15710
- event?: jQuery.Event;
15711
- /**
15712
- * The navigation direction that is used to reach the border.
15713
- */
15714
- direction?: sap.f.NavigationDirection;
15715
- /**
15716
- * The row index, from which the border is reached.
15717
- */
15718
- row?: int;
15719
- /**
15720
- * The the column index, from which the border is reached.
15721
- */
15722
- column?: int;
15723
- }
16097
+ mParameters?: sap.f.$GridListBorderReachedEventParameters
15724
16098
  ): this;
15725
16099
  /**
15726
16100
  * @EXPERIMENTAL (since 1.87) - Behavior might change.
@@ -15984,8 +16358,8 @@ declare namespace sap {
15984
16358
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
15985
16359
  * of the syntax of the settings object.
15986
16360
  *
15987
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.IllustratedMessage#constructor
15988
- * sap.m.IllustratedMessage} can be used.
16361
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.IllustratedMessage#constructor sap.m.IllustratedMessage }
16362
+ * can be used.
15989
16363
  */
15990
16364
  constructor(
15991
16365
  /**
@@ -16000,8 +16374,8 @@ declare namespace sap {
16000
16374
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
16001
16375
  * of the syntax of the settings object.
16002
16376
  *
16003
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.IllustratedMessage#constructor
16004
- * sap.m.IllustratedMessage} can be used.
16377
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.IllustratedMessage#constructor sap.m.IllustratedMessage }
16378
+ * can be used.
16005
16379
  */
16006
16380
  constructor(
16007
16381
  /**
@@ -16048,8 +16422,7 @@ declare namespace sap {
16048
16422
  * @SINCE 1.88
16049
16423
  * @deprecated (since 1.98) - Use the {@link sap.m.Illustration} instead.
16050
16424
  *
16051
- * A simple control which uses a Symbol ID to visualize an SVG which has already been loaded in the {@link
16052
- * sap.f.IllustrationPool}.
16425
+ * A simple control which uses a Symbol ID to visualize an SVG which has already been loaded in the {@link sap.f.IllustrationPool}.
16053
16426
  *
16054
16427
  * To build a Symbol ID, all of the `Illustration` properties must be populated with data.
16055
16428
  */
@@ -16061,8 +16434,8 @@ declare namespace sap {
16061
16434
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
16062
16435
  * of the syntax of the settings object.
16063
16436
  *
16064
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Illustration#constructor
16065
- * sap.m.Illustration} can be used.
16437
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Illustration#constructor sap.m.Illustration }
16438
+ * can be used.
16066
16439
  */
16067
16440
  constructor(
16068
16441
  /**
@@ -16077,8 +16450,8 @@ declare namespace sap {
16077
16450
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
16078
16451
  * of the syntax of the settings object.
16079
16452
  *
16080
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Illustration#constructor
16081
- * sap.m.Illustration} can be used.
16453
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.Illustration#constructor sap.m.Illustration }
16454
+ * can be used.
16082
16455
  */
16083
16456
  constructor(
16084
16457
  /**
@@ -16219,7 +16592,9 @@ declare namespace sap {
16219
16592
  /**
16220
16593
  * The function to be called when the event occurs
16221
16594
  */
16222
- fnFunction: (p1: sap.ui.base.Event) => void,
16595
+ fnFunction: (
16596
+ p1: sap.ui.base.Event<sap.f.$ProductSwitchChangeEventParameters>
16597
+ ) => void,
16223
16598
  /**
16224
16599
  * Context object to call the event handler with. Defaults to this `sap.f.ProductSwitch` itself
16225
16600
  */
@@ -16239,7 +16614,9 @@ declare namespace sap {
16239
16614
  /**
16240
16615
  * The function to be called when the event occurs
16241
16616
  */
16242
- fnFunction: (p1: sap.ui.base.Event) => void,
16617
+ fnFunction: (
16618
+ p1: sap.ui.base.Event<sap.f.$ProductSwitchChangeEventParameters>
16619
+ ) => void,
16243
16620
  /**
16244
16621
  * Context object to call the event handler with. Defaults to this `sap.f.ProductSwitch` itself
16245
16622
  */
@@ -16262,7 +16639,9 @@ declare namespace sap {
16262
16639
  /**
16263
16640
  * The function to be called, when the event occurs
16264
16641
  */
16265
- fnFunction: (p1: sap.ui.base.Event) => void,
16642
+ fnFunction: (
16643
+ p1: sap.ui.base.Event<sap.f.$ProductSwitchChangeEventParameters>
16644
+ ) => void,
16266
16645
  /**
16267
16646
  * Context object on which the given function had to be called
16268
16647
  */
@@ -16279,12 +16658,7 @@ declare namespace sap {
16279
16658
  /**
16280
16659
  * Parameters to pass along with the event
16281
16660
  */
16282
- mParameters?: {
16283
- /**
16284
- * Reference to the new item that has been selected.
16285
- */
16286
- itemPressed?: sap.f.ProductSwitchItem;
16287
- }
16661
+ mParameters?: sap.f.$ProductSwitchChangeEventParameters
16288
16662
  ): this;
16289
16663
  /**
16290
16664
  * Gets content of aggregation {@link #getItems items}.
@@ -16462,8 +16836,8 @@ declare namespace sap {
16462
16836
  *
16463
16837
  * Defines the `ProductSwitchItem` target URI. Supports standard hyperlink behavior.
16464
16838
  *
16465
- * **Note:** Redirection is handled via application logic, by subscribing to the {@link sap.f.ProductSwitch#event:change
16466
- * change} event of `sap.f.ProductSwitch`.
16839
+ * **Note:** Redirection is handled via application logic, by subscribing to the {@link sap.f.ProductSwitch#event:change change }
16840
+ * event of `sap.f.ProductSwitch`.
16467
16841
  *
16468
16842
  * @returns Value of property `targetSrc`
16469
16843
  */
@@ -16530,8 +16904,8 @@ declare namespace sap {
16530
16904
  *
16531
16905
  * Defines the `ProductSwitchItem` target URI. Supports standard hyperlink behavior.
16532
16906
  *
16533
- * **Note:** Redirection is handled via application logic, by subscribing to the {@link sap.f.ProductSwitch#event:change
16534
- * change} event of `sap.f.ProductSwitch`.
16907
+ * **Note:** Redirection is handled via application logic, by subscribing to the {@link sap.f.ProductSwitch#event:change change }
16908
+ * event of `sap.f.ProductSwitch`.
16535
16909
  *
16536
16910
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
16537
16911
  *
@@ -16657,7 +17031,9 @@ declare namespace sap {
16657
17031
  /**
16658
17032
  * The function to be called when the event occurs
16659
17033
  */
16660
- fnFunction: (p1: sap.ui.base.Event) => void,
17034
+ fnFunction: (
17035
+ p1: sap.ui.base.Event<sap.f.$SearchManagerLiveChangeEventParameters>
17036
+ ) => void,
16661
17037
  /**
16662
17038
  * Context object to call the event handler with. Defaults to this `sap.f.SearchManager` itself
16663
17039
  */
@@ -16679,7 +17055,9 @@ declare namespace sap {
16679
17055
  /**
16680
17056
  * The function to be called when the event occurs
16681
17057
  */
16682
- fnFunction: (p1: sap.ui.base.Event) => void,
17058
+ fnFunction: (
17059
+ p1: sap.ui.base.Event<sap.f.$SearchManagerLiveChangeEventParameters>
17060
+ ) => void,
16683
17061
  /**
16684
17062
  * Context object to call the event handler with. Defaults to this `sap.f.SearchManager` itself
16685
17063
  */
@@ -16704,7 +17082,9 @@ declare namespace sap {
16704
17082
  /**
16705
17083
  * The function to be called when the event occurs
16706
17084
  */
16707
- fnFunction: (p1: sap.ui.base.Event) => void,
17085
+ fnFunction: (
17086
+ p1: sap.ui.base.Event<sap.f.$SearchManagerSearchEventParameters>
17087
+ ) => void,
16708
17088
  /**
16709
17089
  * Context object to call the event handler with. Defaults to this `sap.f.SearchManager` itself
16710
17090
  */
@@ -16724,7 +17104,9 @@ declare namespace sap {
16724
17104
  /**
16725
17105
  * The function to be called when the event occurs
16726
17106
  */
16727
- fnFunction: (p1: sap.ui.base.Event) => void,
17107
+ fnFunction: (
17108
+ p1: sap.ui.base.Event<sap.f.$SearchManagerSearchEventParameters>
17109
+ ) => void,
16728
17110
  /**
16729
17111
  * Context object to call the event handler with. Defaults to this `sap.f.SearchManager` itself
16730
17112
  */
@@ -16751,7 +17133,9 @@ declare namespace sap {
16751
17133
  /**
16752
17134
  * The function to be called when the event occurs
16753
17135
  */
16754
- fnFunction: (p1: sap.ui.base.Event) => void,
17136
+ fnFunction: (
17137
+ p1: sap.ui.base.Event<sap.f.$SearchManagerSuggestEventParameters>
17138
+ ) => void,
16755
17139
  /**
16756
17140
  * Context object to call the event handler with. Defaults to this `sap.f.SearchManager` itself
16757
17141
  */
@@ -16773,7 +17157,9 @@ declare namespace sap {
16773
17157
  /**
16774
17158
  * The function to be called when the event occurs
16775
17159
  */
16776
- fnFunction: (p1: sap.ui.base.Event) => void,
17160
+ fnFunction: (
17161
+ p1: sap.ui.base.Event<sap.f.$SearchManagerSuggestEventParameters>
17162
+ ) => void,
16777
17163
  /**
16778
17164
  * Context object to call the event handler with. Defaults to this `sap.f.SearchManager` itself
16779
17165
  */
@@ -16810,7 +17196,9 @@ declare namespace sap {
16810
17196
  /**
16811
17197
  * The function to be called, when the event occurs
16812
17198
  */
16813
- fnFunction: (p1: sap.ui.base.Event) => void,
17199
+ fnFunction: (
17200
+ p1: sap.ui.base.Event<sap.f.$SearchManagerLiveChangeEventParameters>
17201
+ ) => void,
16814
17202
  /**
16815
17203
  * Context object on which the given function had to be called
16816
17204
  */
@@ -16827,7 +17215,9 @@ declare namespace sap {
16827
17215
  /**
16828
17216
  * The function to be called, when the event occurs
16829
17217
  */
16830
- fnFunction: (p1: sap.ui.base.Event) => void,
17218
+ fnFunction: (
17219
+ p1: sap.ui.base.Event<sap.f.$SearchManagerSearchEventParameters>
17220
+ ) => void,
16831
17221
  /**
16832
17222
  * Context object on which the given function had to be called
16833
17223
  */
@@ -16844,7 +17234,9 @@ declare namespace sap {
16844
17234
  /**
16845
17235
  * The function to be called, when the event occurs
16846
17236
  */
16847
- fnFunction: (p1: sap.ui.base.Event) => void,
17237
+ fnFunction: (
17238
+ p1: sap.ui.base.Event<sap.f.$SearchManagerSuggestEventParameters>
17239
+ ) => void,
16848
17240
  /**
16849
17241
  * Context object on which the given function had to be called
16850
17242
  */
@@ -16861,12 +17253,7 @@ declare namespace sap {
16861
17253
  /**
16862
17254
  * Parameters to pass along with the event
16863
17255
  */
16864
- mParameters?: {
16865
- /**
16866
- * Current search string.
16867
- */
16868
- newValue?: string;
16869
- }
17256
+ mParameters?: sap.f.$SearchManagerLiveChangeEventParameters
16870
17257
  ): this;
16871
17258
  /**
16872
17259
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -16879,16 +17266,7 @@ declare namespace sap {
16879
17266
  /**
16880
17267
  * Parameters to pass along with the event
16881
17268
  */
16882
- mParameters?: {
16883
- /**
16884
- * The search query string.
16885
- */
16886
- query?: string;
16887
- /**
16888
- * Indicates if the user pressed the clear icon.
16889
- */
16890
- clearButtonPressed?: boolean;
16891
- }
17269
+ mParameters?: sap.f.$SearchManagerSearchEventParameters
16892
17270
  ): this;
16893
17271
  /**
16894
17272
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -16901,12 +17279,7 @@ declare namespace sap {
16901
17279
  /**
16902
17280
  * Parameters to pass along with the event
16903
17281
  */
16904
- mParameters?: {
16905
- /**
16906
- * Current search string of the search field.
16907
- */
16908
- suggestValue?: string;
16909
- }
17282
+ mParameters?: sap.f.$SearchManagerSuggestEventParameters
16910
17283
  ): this;
16911
17284
  /**
16912
17285
  * Gets current value of property {@link #getEnabled enabled}.
@@ -17244,7 +17617,9 @@ declare namespace sap {
17244
17617
  /**
17245
17618
  * The function to be called when the event occurs
17246
17619
  */
17247
- fnFunction: (p1: sap.ui.base.Event) => void,
17620
+ fnFunction: (
17621
+ p1: sap.ui.base.Event<sap.f.$ShellBarAvatarPressedEventParameters>
17622
+ ) => void,
17248
17623
  /**
17249
17624
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17250
17625
  */
@@ -17264,7 +17639,9 @@ declare namespace sap {
17264
17639
  /**
17265
17640
  * The function to be called when the event occurs
17266
17641
  */
17267
- fnFunction: (p1: sap.ui.base.Event) => void,
17642
+ fnFunction: (
17643
+ p1: sap.ui.base.Event<sap.f.$ShellBarAvatarPressedEventParameters>
17644
+ ) => void,
17268
17645
  /**
17269
17646
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17270
17647
  */
@@ -17290,7 +17667,9 @@ declare namespace sap {
17290
17667
  /**
17291
17668
  * The function to be called when the event occurs
17292
17669
  */
17293
- fnFunction: (p1: sap.ui.base.Event) => void,
17670
+ fnFunction: (
17671
+ p1: sap.ui.base.Event<sap.f.$ShellBarCopilotPressedEventParameters>
17672
+ ) => void,
17294
17673
  /**
17295
17674
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17296
17675
  */
@@ -17311,7 +17690,9 @@ declare namespace sap {
17311
17690
  /**
17312
17691
  * The function to be called when the event occurs
17313
17692
  */
17314
- fnFunction: (p1: sap.ui.base.Event) => void,
17693
+ fnFunction: (
17694
+ p1: sap.ui.base.Event<sap.f.$ShellBarCopilotPressedEventParameters>
17695
+ ) => void,
17315
17696
  /**
17316
17697
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17317
17698
  */
@@ -17337,7 +17718,9 @@ declare namespace sap {
17337
17718
  /**
17338
17719
  * The function to be called when the event occurs
17339
17720
  */
17340
- fnFunction: (p1: sap.ui.base.Event) => void,
17721
+ fnFunction: (
17722
+ p1: sap.ui.base.Event<sap.f.$ShellBarHomeIconPressedEventParameters>
17723
+ ) => void,
17341
17724
  /**
17342
17725
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17343
17726
  */
@@ -17358,7 +17741,9 @@ declare namespace sap {
17358
17741
  /**
17359
17742
  * The function to be called when the event occurs
17360
17743
  */
17361
- fnFunction: (p1: sap.ui.base.Event) => void,
17744
+ fnFunction: (
17745
+ p1: sap.ui.base.Event<sap.f.$ShellBarHomeIconPressedEventParameters>
17746
+ ) => void,
17362
17747
  /**
17363
17748
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17364
17749
  */
@@ -17384,7 +17769,9 @@ declare namespace sap {
17384
17769
  /**
17385
17770
  * The function to be called when the event occurs
17386
17771
  */
17387
- fnFunction: (p1: sap.ui.base.Event) => void,
17772
+ fnFunction: (
17773
+ p1: sap.ui.base.Event<sap.f.$ShellBarMenuButtonPressedEventParameters>
17774
+ ) => void,
17388
17775
  /**
17389
17776
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17390
17777
  */
@@ -17405,7 +17792,9 @@ declare namespace sap {
17405
17792
  /**
17406
17793
  * The function to be called when the event occurs
17407
17794
  */
17408
- fnFunction: (p1: sap.ui.base.Event) => void,
17795
+ fnFunction: (
17796
+ p1: sap.ui.base.Event<sap.f.$ShellBarMenuButtonPressedEventParameters>
17797
+ ) => void,
17409
17798
  /**
17410
17799
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17411
17800
  */
@@ -17431,7 +17820,9 @@ declare namespace sap {
17431
17820
  /**
17432
17821
  * The function to be called when the event occurs
17433
17822
  */
17434
- fnFunction: (p1: sap.ui.base.Event) => void,
17823
+ fnFunction: (
17824
+ p1: sap.ui.base.Event<sap.f.$ShellBarNavButtonPressedEventParameters>
17825
+ ) => void,
17435
17826
  /**
17436
17827
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17437
17828
  */
@@ -17452,7 +17843,9 @@ declare namespace sap {
17452
17843
  /**
17453
17844
  * The function to be called when the event occurs
17454
17845
  */
17455
- fnFunction: (p1: sap.ui.base.Event) => void,
17846
+ fnFunction: (
17847
+ p1: sap.ui.base.Event<sap.f.$ShellBarNavButtonPressedEventParameters>
17848
+ ) => void,
17456
17849
  /**
17457
17850
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17458
17851
  */
@@ -17478,7 +17871,9 @@ declare namespace sap {
17478
17871
  /**
17479
17872
  * The function to be called when the event occurs
17480
17873
  */
17481
- fnFunction: (p1: sap.ui.base.Event) => void,
17874
+ fnFunction: (
17875
+ p1: sap.ui.base.Event<sap.f.$ShellBarNotificationsPressedEventParameters>
17876
+ ) => void,
17482
17877
  /**
17483
17878
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17484
17879
  */
@@ -17499,14 +17894,16 @@ declare namespace sap {
17499
17894
  /**
17500
17895
  * The function to be called when the event occurs
17501
17896
  */
17502
- fnFunction: (p1: sap.ui.base.Event) => void,
17897
+ fnFunction: (
17898
+ p1: sap.ui.base.Event<sap.f.$ShellBarNotificationsPressedEventParameters>
17899
+ ) => void,
17503
17900
  /**
17504
17901
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17505
17902
  */
17506
17903
  oListener?: object
17507
17904
  ): this;
17508
17905
  /**
17509
- * Attaches event handler `fnFunction` to the {@link #event:productSwitcherPressed productSwitcherPressed}
17906
+ * Attaches event handler `fnFunction` to the {@link #event:productSwitcherPressed productSwitcherPressed }
17510
17907
  * event of this `sap.f.ShellBar`.
17511
17908
  *
17512
17909
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
@@ -17525,14 +17922,16 @@ declare namespace sap {
17525
17922
  /**
17526
17923
  * The function to be called when the event occurs
17527
17924
  */
17528
- fnFunction: (p1: sap.ui.base.Event) => void,
17925
+ fnFunction: (
17926
+ p1: sap.ui.base.Event<sap.f.$ShellBarProductSwitcherPressedEventParameters>
17927
+ ) => void,
17529
17928
  /**
17530
17929
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17531
17930
  */
17532
17931
  oListener?: object
17533
17932
  ): this;
17534
17933
  /**
17535
- * Attaches event handler `fnFunction` to the {@link #event:productSwitcherPressed productSwitcherPressed}
17934
+ * Attaches event handler `fnFunction` to the {@link #event:productSwitcherPressed productSwitcherPressed }
17536
17935
  * event of this `sap.f.ShellBar`.
17537
17936
  *
17538
17937
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
@@ -17546,7 +17945,9 @@ declare namespace sap {
17546
17945
  /**
17547
17946
  * The function to be called when the event occurs
17548
17947
  */
17549
- fnFunction: (p1: sap.ui.base.Event) => void,
17948
+ fnFunction: (
17949
+ p1: sap.ui.base.Event<sap.f.$ShellBarProductSwitcherPressedEventParameters>
17950
+ ) => void,
17550
17951
  /**
17551
17952
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17552
17953
  */
@@ -17572,7 +17973,9 @@ declare namespace sap {
17572
17973
  /**
17573
17974
  * The function to be called when the event occurs
17574
17975
  */
17575
- fnFunction: (p1: sap.ui.base.Event) => void,
17976
+ fnFunction: (
17977
+ p1: sap.ui.base.Event<sap.f.$ShellBarSearchButtonPressedEventParameters>
17978
+ ) => void,
17576
17979
  /**
17577
17980
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17578
17981
  */
@@ -17593,7 +17996,9 @@ declare namespace sap {
17593
17996
  /**
17594
17997
  * The function to be called when the event occurs
17595
17998
  */
17596
- fnFunction: (p1: sap.ui.base.Event) => void,
17999
+ fnFunction: (
18000
+ p1: sap.ui.base.Event<sap.f.$ShellBarSearchButtonPressedEventParameters>
18001
+ ) => void,
17597
18002
  /**
17598
18003
  * Context object to call the event handler with. Defaults to this `sap.f.ShellBar` itself
17599
18004
  */
@@ -17637,7 +18042,9 @@ declare namespace sap {
17637
18042
  /**
17638
18043
  * The function to be called, when the event occurs
17639
18044
  */
17640
- fnFunction: (p1: sap.ui.base.Event) => void,
18045
+ fnFunction: (
18046
+ p1: sap.ui.base.Event<sap.f.$ShellBarAvatarPressedEventParameters>
18047
+ ) => void,
17641
18048
  /**
17642
18049
  * Context object on which the given function had to be called
17643
18050
  */
@@ -17655,7 +18062,9 @@ declare namespace sap {
17655
18062
  /**
17656
18063
  * The function to be called, when the event occurs
17657
18064
  */
17658
- fnFunction: (p1: sap.ui.base.Event) => void,
18065
+ fnFunction: (
18066
+ p1: sap.ui.base.Event<sap.f.$ShellBarCopilotPressedEventParameters>
18067
+ ) => void,
17659
18068
  /**
17660
18069
  * Context object on which the given function had to be called
17661
18070
  */
@@ -17673,7 +18082,9 @@ declare namespace sap {
17673
18082
  /**
17674
18083
  * The function to be called, when the event occurs
17675
18084
  */
17676
- fnFunction: (p1: sap.ui.base.Event) => void,
18085
+ fnFunction: (
18086
+ p1: sap.ui.base.Event<sap.f.$ShellBarHomeIconPressedEventParameters>
18087
+ ) => void,
17677
18088
  /**
17678
18089
  * Context object on which the given function had to be called
17679
18090
  */
@@ -17691,7 +18102,9 @@ declare namespace sap {
17691
18102
  /**
17692
18103
  * The function to be called, when the event occurs
17693
18104
  */
17694
- fnFunction: (p1: sap.ui.base.Event) => void,
18105
+ fnFunction: (
18106
+ p1: sap.ui.base.Event<sap.f.$ShellBarMenuButtonPressedEventParameters>
18107
+ ) => void,
17695
18108
  /**
17696
18109
  * Context object on which the given function had to be called
17697
18110
  */
@@ -17709,14 +18122,16 @@ declare namespace sap {
17709
18122
  /**
17710
18123
  * The function to be called, when the event occurs
17711
18124
  */
17712
- fnFunction: (p1: sap.ui.base.Event) => void,
18125
+ fnFunction: (
18126
+ p1: sap.ui.base.Event<sap.f.$ShellBarNavButtonPressedEventParameters>
18127
+ ) => void,
17713
18128
  /**
17714
18129
  * Context object on which the given function had to be called
17715
18130
  */
17716
18131
  oListener?: object
17717
18132
  ): this;
17718
18133
  /**
17719
- * Detaches event handler `fnFunction` from the {@link #event:notificationsPressed notificationsPressed}
18134
+ * Detaches event handler `fnFunction` from the {@link #event:notificationsPressed notificationsPressed }
17720
18135
  * event of this `sap.f.ShellBar`.
17721
18136
  *
17722
18137
  * The passed function and listener object must match the ones used for event registration.
@@ -17727,14 +18142,16 @@ declare namespace sap {
17727
18142
  /**
17728
18143
  * The function to be called, when the event occurs
17729
18144
  */
17730
- fnFunction: (p1: sap.ui.base.Event) => void,
18145
+ fnFunction: (
18146
+ p1: sap.ui.base.Event<sap.f.$ShellBarNotificationsPressedEventParameters>
18147
+ ) => void,
17731
18148
  /**
17732
18149
  * Context object on which the given function had to be called
17733
18150
  */
17734
18151
  oListener?: object
17735
18152
  ): this;
17736
18153
  /**
17737
- * Detaches event handler `fnFunction` from the {@link #event:productSwitcherPressed productSwitcherPressed}
18154
+ * Detaches event handler `fnFunction` from the {@link #event:productSwitcherPressed productSwitcherPressed }
17738
18155
  * event of this `sap.f.ShellBar`.
17739
18156
  *
17740
18157
  * The passed function and listener object must match the ones used for event registration.
@@ -17745,7 +18162,9 @@ declare namespace sap {
17745
18162
  /**
17746
18163
  * The function to be called, when the event occurs
17747
18164
  */
17748
- fnFunction: (p1: sap.ui.base.Event) => void,
18165
+ fnFunction: (
18166
+ p1: sap.ui.base.Event<sap.f.$ShellBarProductSwitcherPressedEventParameters>
18167
+ ) => void,
17749
18168
  /**
17750
18169
  * Context object on which the given function had to be called
17751
18170
  */
@@ -17763,7 +18182,9 @@ declare namespace sap {
17763
18182
  /**
17764
18183
  * The function to be called, when the event occurs
17765
18184
  */
17766
- fnFunction: (p1: sap.ui.base.Event) => void,
18185
+ fnFunction: (
18186
+ p1: sap.ui.base.Event<sap.f.$ShellBarSearchButtonPressedEventParameters>
18187
+ ) => void,
17767
18188
  /**
17768
18189
  * Context object on which the given function had to be called
17769
18190
  */
@@ -17780,12 +18201,7 @@ declare namespace sap {
17780
18201
  /**
17781
18202
  * Parameters to pass along with the event
17782
18203
  */
17783
- mParameters?: {
17784
- /**
17785
- * Reference to the button that has been pressed
17786
- */
17787
- avatar?: sap.m.Avatar;
17788
- }
18204
+ mParameters?: sap.f.$ShellBarAvatarPressedEventParameters
17789
18205
  ): this;
17790
18206
  /**
17791
18207
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -17798,12 +18214,7 @@ declare namespace sap {
17798
18214
  /**
17799
18215
  * Parameters to pass along with the event
17800
18216
  */
17801
- mParameters?: {
17802
- /**
17803
- * Reference to the button that has been pressed
17804
- */
17805
- image?: sap.m.Image;
17806
- }
18217
+ mParameters?: sap.f.$ShellBarCopilotPressedEventParameters
17807
18218
  ): this;
17808
18219
  /**
17809
18220
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -17816,12 +18227,7 @@ declare namespace sap {
17816
18227
  /**
17817
18228
  * Parameters to pass along with the event
17818
18229
  */
17819
- mParameters?: {
17820
- /**
17821
- * Reference to the image that has been pressed
17822
- */
17823
- icon?: sap.m.Image;
17824
- }
18230
+ mParameters?: sap.f.$ShellBarHomeIconPressedEventParameters
17825
18231
  ): this;
17826
18232
  /**
17827
18233
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -17834,12 +18240,7 @@ declare namespace sap {
17834
18240
  /**
17835
18241
  * Parameters to pass along with the event
17836
18242
  */
17837
- mParameters?: {
17838
- /**
17839
- * Reference to the button that has been pressed
17840
- */
17841
- button?: sap.m.Button;
17842
- }
18243
+ mParameters?: sap.f.$ShellBarMenuButtonPressedEventParameters
17843
18244
  ): this;
17844
18245
  /**
17845
18246
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -17852,12 +18253,7 @@ declare namespace sap {
17852
18253
  /**
17853
18254
  * Parameters to pass along with the event
17854
18255
  */
17855
- mParameters?: {
17856
- /**
17857
- * Reference to the button that has been pressed
17858
- */
17859
- button?: sap.m.Button;
17860
- }
18256
+ mParameters?: sap.f.$ShellBarNavButtonPressedEventParameters
17861
18257
  ): this;
17862
18258
  /**
17863
18259
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -17870,12 +18266,7 @@ declare namespace sap {
17870
18266
  /**
17871
18267
  * Parameters to pass along with the event
17872
18268
  */
17873
- mParameters?: {
17874
- /**
17875
- * Reference to the button that has been pressed
17876
- */
17877
- button?: sap.m.Button;
17878
- }
18269
+ mParameters?: sap.f.$ShellBarNotificationsPressedEventParameters
17879
18270
  ): this;
17880
18271
  /**
17881
18272
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -17888,12 +18279,7 @@ declare namespace sap {
17888
18279
  /**
17889
18280
  * Parameters to pass along with the event
17890
18281
  */
17891
- mParameters?: {
17892
- /**
17893
- * Reference to the button that has been pressed
17894
- */
17895
- button?: sap.m.Button;
17896
- }
18282
+ mParameters?: sap.f.$ShellBarProductSwitcherPressedEventParameters
17897
18283
  ): this;
17898
18284
  /**
17899
18285
  * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
@@ -17906,12 +18292,7 @@ declare namespace sap {
17906
18292
  /**
17907
18293
  * Parameters to pass along with the event
17908
18294
  */
17909
- mParameters?: {
17910
- /**
17911
- * Reference to the button that has been pressed
17912
- */
17913
- button?: sap.m.Button;
17914
- }
18295
+ mParameters?: sap.f.$ShellBarSearchButtonPressedEventParameters
17915
18296
  ): this;
17916
18297
  /**
17917
18298
  * Gets content of aggregation {@link #getAdditionalContent additionalContent}.
@@ -18408,11 +18789,11 @@ declare namespace sap {
18408
18789
  * - [Arrow Up], [Arrow Down] - Move to the next or previous action item
18409
18790
  * - [Enter], [Space] - Choose the selected action item
18410
18791
  * - [Command] + [Arrow Left] (Mac) / [Control] + [Arrow Left] (Windows) / [Tab]- Move from action items
18411
- * to the opened side content panel
18792
+ * to the opened side content panel
18412
18793
  * - [Command] + [Arrow Right] (Mac) / [Control] + [Arrow Right] (Windows) / [Shift] + [Tab]- Move from
18413
- * opened side content panel to the action items
18794
+ * opened side content panel to the action items
18414
18795
  * - [F6] / [Shift] + [F6] - Navigate back and forth between main content, side panel and side content
18415
- * groups [Esc] - Close the opened side content panel and set focus back to main content
18796
+ * groups [Esc] - Close the opened side content panel and set focus back to main content
18416
18797
  *
18417
18798
  * If the side panel's `sidePanelResizable` property is set, there is an action item chosen, and the resize
18418
18799
  * splitter is focused:
@@ -18426,9 +18807,9 @@ declare namespace sap {
18426
18807
  *
18427
18808
  * - [Shift]+[F10] or [Context menu] - show the resize context menu
18428
18809
  * - [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded side panel with the regular
18429
- * step
18810
+ * step
18430
18811
  * - [Shift] + [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded side panel with
18431
- * the larger step
18812
+ * the larger step
18432
18813
  */
18433
18814
  class SidePanel extends sap.ui.core.Control {
18434
18815
  /**
@@ -18523,12 +18904,12 @@ declare namespace sap {
18523
18904
  *
18524
18905
  *
18525
18906
  * - If the event fired as a result of action item selection (`expanded` parameter contains `true`) is
18526
- * prevented, the display of the side content will be blocked.
18907
+ * prevented, the display of the side content will be blocked.
18527
18908
  * - If the event fired as a result of action item deselection, selection of different action item, pressing
18528
- * the `Close` button, or pressing the `Escape` key (`expanded` parameter contains `false`) is prevented,
18529
- * this will block closing of the currently displayed side content, and if the event is fired by selection
18530
- * of a different action item, the selection will be cancelled, and the next event (for expansion of a new
18531
- * action item) will not be fired and the new side content will not be displayed.
18909
+ * the `Close` button, or pressing the `Escape` key (`expanded` parameter contains `false`) is prevented,
18910
+ * this will block closing of the currently displayed side content, and if the event is fired by selection
18911
+ * of a different action item, the selection will be cancelled, and the next event (for expansion of a new
18912
+ * action item) will not be fired and the new side content will not be displayed.
18532
18913
  *
18533
18914
  * @returns Reference to `this` in order to allow method chaining
18534
18915
  */
@@ -18541,7 +18922,9 @@ declare namespace sap {
18541
18922
  /**
18542
18923
  * The function to be called when the event occurs
18543
18924
  */
18544
- fnFunction: (p1: sap.ui.base.Event) => void,
18925
+ fnFunction: (
18926
+ p1: sap.ui.base.Event<sap.f.$SidePanelToggleEventParameters>
18927
+ ) => void,
18545
18928
  /**
18546
18929
  * Context object to call the event handler with. Defaults to this `sap.f.SidePanel` itself
18547
18930
  */
@@ -18557,12 +18940,12 @@ declare namespace sap {
18557
18940
  *
18558
18941
  *
18559
18942
  * - If the event fired as a result of action item selection (`expanded` parameter contains `true`) is
18560
- * prevented, the display of the side content will be blocked.
18943
+ * prevented, the display of the side content will be blocked.
18561
18944
  * - If the event fired as a result of action item deselection, selection of different action item, pressing
18562
- * the `Close` button, or pressing the `Escape` key (`expanded` parameter contains `false`) is prevented,
18563
- * this will block closing of the currently displayed side content, and if the event is fired by selection
18564
- * of a different action item, the selection will be cancelled, and the next event (for expansion of a new
18565
- * action item) will not be fired and the new side content will not be displayed.
18945
+ * the `Close` button, or pressing the `Escape` key (`expanded` parameter contains `false`) is prevented,
18946
+ * this will block closing of the currently displayed side content, and if the event is fired by selection
18947
+ * of a different action item, the selection will be cancelled, and the next event (for expansion of a new
18948
+ * action item) will not be fired and the new side content will not be displayed.
18566
18949
  *
18567
18950
  * @returns Reference to `this` in order to allow method chaining
18568
18951
  */
@@ -18570,7 +18953,9 @@ declare namespace sap {
18570
18953
  /**
18571
18954
  * The function to be called when the event occurs
18572
18955
  */
18573
- fnFunction: (p1: sap.ui.base.Event) => void,
18956
+ fnFunction: (
18957
+ p1: sap.ui.base.Event<sap.f.$SidePanelToggleEventParameters>
18958
+ ) => void,
18574
18959
  /**
18575
18960
  * Context object to call the event handler with. Defaults to this `sap.f.SidePanel` itself
18576
18961
  */
@@ -18599,7 +18984,9 @@ declare namespace sap {
18599
18984
  /**
18600
18985
  * The function to be called, when the event occurs
18601
18986
  */
18602
- fnFunction: (p1: sap.ui.base.Event) => void,
18987
+ fnFunction: (
18988
+ p1: sap.ui.base.Event<sap.f.$SidePanelToggleEventParameters>
18989
+ ) => void,
18603
18990
  /**
18604
18991
  * Context object on which the given function had to be called
18605
18992
  */
@@ -18619,16 +19006,7 @@ declare namespace sap {
18619
19006
  /**
18620
19007
  * Parameters to pass along with the event
18621
19008
  */
18622
- mParameters?: {
18623
- /**
18624
- * The action item that triggers the event.
18625
- */
18626
- item?: sap.f.SidePanelItem;
18627
- /**
18628
- * State of the action item.
18629
- */
18630
- expanded?: boolean;
18631
- }
19009
+ mParameters?: sap.f.$SidePanelToggleEventParameters
18632
19010
  ): boolean;
18633
19011
  /**
18634
19012
  * Gets current value of property {@link #getActionBarExpanded actionBarExpanded}.
@@ -19211,7 +19589,7 @@ declare namespace sap {
19211
19589
  /**
19212
19590
  * @SINCE 1.46
19213
19591
  *
19214
- * Layouts, representing the number of columns to be displayed and their relative widths for a {@link sap.f.FlexibleColumnLayout}
19592
+ * Layouts, representing the number of columns to be displayed and their relative widths for a {@link sap.f.FlexibleColumnLayout }
19215
19593
  * control.
19216
19594
  *
19217
19595
  * Each layout has a predefined ratio for the three columns, depending on device size. Based on the device
@@ -19224,7 +19602,8 @@ declare namespace sap {
19224
19602
  * that particular layout. Therefore some of the names (such as `ThreeColumnsMidExpandedEndHidden` for example)
19225
19603
  * are representative of the desktop scenario only.
19226
19604
  *
19227
- * For more information, see {@link topic:3b9f760da5b64adf8db7f95247879086 Types of Layout} in the documentation.
19605
+ * For more information, see {@link https://ui5.sap.com/#/topic/3b9f760da5b64adf8db7f95247879086 Types of Layout }
19606
+ * in the documentation.
19228
19607
  */
19229
19608
  enum LayoutType {
19230
19609
  /**
@@ -19368,7 +19747,7 @@ declare namespace sap {
19368
19747
  * - Keep in mind that the colors are theme-dependent and can differ based on the currently used theme.
19369
19748
  *
19370
19749
  * - If the `Random` value is assigned, a random color is chosen from the accent options (Accent1 to
19371
- * Accent10).
19750
+ * Accent10).
19372
19751
  *
19373
19752
  * This is an alias for {@link sap.m.AvatarColor} and only kept for compatibility reasons.
19374
19753
  */
@@ -19464,6 +19843,8 @@ declare namespace sap {
19464
19843
 
19465
19844
  "sap/f/cards/Header": undefined;
19466
19845
 
19846
+ "sap/f/cards/loading/PlaceholderBaseRenderer": undefined;
19847
+
19467
19848
  "sap/f/cards/NumericHeader": undefined;
19468
19849
 
19469
19850
  "sap/f/cards/NumericSideIndicator": undefined;