@openui5/types 1.124.2 → 1.126.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.2
1
+ // For Library Version: 1.126.0
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -421,6 +421,29 @@ declare module "sap/m/library" {
421
421
  */
422
422
  PageIndicator = "PageIndicator",
423
423
  }
424
+ /**
425
+ * Types for the placement of the page indicator of the Carousel control.
426
+ *
427
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'CarouselPageIndicatorPlacementType'.
428
+ */
429
+ export enum CarouselPageIndicatorPlacementType {
430
+ /**
431
+ * Page indicator will be placed at the bottom of the Carousel.
432
+ */
433
+ Bottom = "Bottom",
434
+ /**
435
+ * Page indicator will be placed over the Carousel content, bottom aligned.
436
+ */
437
+ OverContentBottom = "OverContentBottom",
438
+ /**
439
+ * Page indicator will be placed over the Carousel content, top aligned.
440
+ */
441
+ OverContentTop = "OverContentTop",
442
+ /**
443
+ * Page indicator will be placed at the top of the Carousel.
444
+ */
445
+ Top = "Top",
446
+ }
424
447
  /**
425
448
  * Defines how pages will be scrolled, when clicking the arrow.
426
449
  *
@@ -3286,6 +3309,18 @@ declare module "sap/m/library" {
3286
3309
  * Information Border Color
3287
3310
  */
3288
3311
  InformationBorderColor = "InformationBorderColor",
3312
+ /**
3313
+ * Neutral Background Color
3314
+ */
3315
+ NeutralBackgroundColor = "NeutralBackgroundColor",
3316
+ /**
3317
+ * Neutral Border Color
3318
+ */
3319
+ NeutralBorderColor = "NeutralBorderColor",
3320
+ /**
3321
+ * Neutral Element Color
3322
+ */
3323
+ NeutralElementColor = "NeutralElementColor",
3289
3324
  /**
3290
3325
  * Warning Background Color
3291
3326
  */
@@ -11177,7 +11212,7 @@ declare module "sap/m/Carousel" {
11177
11212
  CarouselArrowsPlacement,
11178
11213
  BackgroundDesign,
11179
11214
  BorderDesign,
11180
- PlacementType,
11215
+ CarouselPageIndicatorPlacementType,
11181
11216
  } from "sap/m/library";
11182
11217
 
11183
11218
  import CarouselLayout from "sap/m/CarouselLayout";
@@ -11202,7 +11237,7 @@ declare module "sap/m/Carousel" {
11202
11237
  * - `showPageIndicator` - determines if the indicator is displayed.
11203
11238
  * - If the pages are less than 9, the page indicator is represented with bullets.
11204
11239
  * - If the pages are 9 or more, the page indicator is numeric.
11205
- * - `pageIndicatorPlacement` - determines where the indicator is located. Default (`sap.m.PlacementType.Bottom`)
11240
+ * - `pageIndicatorPlacement` - determines where the indicator is located. Default (`sap.m.CarouselPageIndicatorPlacementType.Bottom`)
11206
11241
  * - below the content. Additionally, you can also change the location of the navigation arrows. By
11207
11242
  * setting `arrowsPlacement` to `sap.m.CarouselArrowsPlacement.PageIndicator`, the arrows will be located
11208
11243
  * at the bottom by the paging indicator. Note: When the content is of type `sap.m.Image` add "Image" text
@@ -11283,6 +11318,19 @@ declare module "sap/m/Carousel" {
11283
11318
  * @returns Metadata object describing this class
11284
11319
  */
11285
11320
  static getMetadata(): ElementMetadata;
11321
+ /**
11322
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
11323
+ *
11324
+ * @since 1.125
11325
+ *
11326
+ * @returns Reference to `this` in order to allow method chaining
11327
+ */
11328
+ addAriaLabelledBy(
11329
+ /**
11330
+ * The ariaLabelledBy to add; if empty, nothing is inserted
11331
+ */
11332
+ vAriaLabelledBy: ID | Control
11333
+ ): this;
11286
11334
  /**
11287
11335
  * Adds some page to the aggregation {@link #getPages pages}.
11288
11336
  *
@@ -11644,6 +11692,12 @@ declare module "sap/m/Carousel" {
11644
11692
  * `null`.
11645
11693
  */
11646
11694
  getActivePage(): ID | null;
11695
+ /**
11696
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
11697
+ *
11698
+ * @since 1.125
11699
+ */
11700
+ getAriaLabelledBy(): ID[];
11647
11701
  /**
11648
11702
  * Gets current value of property {@link #getArrowsPlacement arrowsPlacement}.
11649
11703
  *
@@ -11734,16 +11788,25 @@ declare module "sap/m/Carousel" {
11734
11788
  /**
11735
11789
  * Gets current value of property {@link #getPageIndicatorPlacement pageIndicatorPlacement}.
11736
11790
  *
11737
- * Defines where the carousel's page indicator is displayed. Possible values are sap.m.PlacementType.Top,
11738
- * sap.m.PlacementType.Bottom. Other values are ignored and the default value will be applied. The default
11739
- * value is sap.m.PlacementType.Bottom.
11791
+ * Defines where the carousel's page indicator is displayed. Possible values are sap.m.CarouselPageIndicatorPlacementType.Top,
11792
+ * sap.m.CarouselPageIndicatorPlacementType.Bottom, CarouselPageIndicatorPlacementType.OverContentTop and
11793
+ * CarouselPageIndicatorPlacementType.OverContentBottom.
11794
+ *
11795
+ * **Note:** when the page indicator is placed over the carousel's content (values "OverContentBottom" and
11796
+ * "OverContentTop"), the properties `pageIndicatorBackgroundDesign` and `pageIndicatorBorderDesign` will
11797
+ * not take effect.
11798
+ *
11799
+ * **Note:** We recommend using a page indicator placed over the carousel's content (values "OverContentBottom"
11800
+ * and "OverContentTop") only if the content consists of images.
11740
11801
  *
11741
11802
  * Default value is `Bottom`.
11742
11803
  *
11743
11804
  *
11744
11805
  * @returns Value of property `pageIndicatorPlacement`
11745
11806
  */
11746
- getPageIndicatorPlacement(): PlacementType | keyof typeof PlacementType;
11807
+ getPageIndicatorPlacement():
11808
+ | CarouselPageIndicatorPlacementType
11809
+ | keyof typeof CarouselPageIndicatorPlacementType;
11747
11810
  /**
11748
11811
  * Gets content of aggregation {@link #getPages pages}.
11749
11812
  *
@@ -11831,6 +11894,14 @@ declare module "sap/m/Carousel" {
11831
11894
  * @returns Reference to `this` in order to allow method chaining
11832
11895
  */
11833
11896
  previous(): this;
11897
+ /**
11898
+ * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
11899
+ *
11900
+ * @since 1.125
11901
+ *
11902
+ * @returns An array of the removed elements (might be empty)
11903
+ */
11904
+ removeAllAriaLabelledBy(): ID[];
11834
11905
  /**
11835
11906
  * Removes all the controls from the aggregation {@link #getPages pages}.
11836
11907
  *
@@ -11840,6 +11911,19 @@ declare module "sap/m/Carousel" {
11840
11911
  * @returns An array of the removed elements (might be empty)
11841
11912
  */
11842
11913
  removeAllPages(): Control[];
11914
+ /**
11915
+ * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
11916
+ *
11917
+ * @since 1.125
11918
+ *
11919
+ * @returns The removed ariaLabelledBy or `null`
11920
+ */
11921
+ removeAriaLabelledBy(
11922
+ /**
11923
+ * The ariaLabelledBy to be removed or its index or ID
11924
+ */
11925
+ vAriaLabelledBy: int | ID | Control
11926
+ ): ID | null;
11843
11927
  /**
11844
11928
  * Removes a page from the aggregation {@link #getPages pages}.
11845
11929
  *
@@ -12000,9 +12084,16 @@ declare module "sap/m/Carousel" {
12000
12084
  /**
12001
12085
  * Sets a new value for property {@link #getPageIndicatorPlacement pageIndicatorPlacement}.
12002
12086
  *
12003
- * Defines where the carousel's page indicator is displayed. Possible values are sap.m.PlacementType.Top,
12004
- * sap.m.PlacementType.Bottom. Other values are ignored and the default value will be applied. The default
12005
- * value is sap.m.PlacementType.Bottom.
12087
+ * Defines where the carousel's page indicator is displayed. Possible values are sap.m.CarouselPageIndicatorPlacementType.Top,
12088
+ * sap.m.CarouselPageIndicatorPlacementType.Bottom, CarouselPageIndicatorPlacementType.OverContentTop and
12089
+ * CarouselPageIndicatorPlacementType.OverContentBottom.
12090
+ *
12091
+ * **Note:** when the page indicator is placed over the carousel's content (values "OverContentBottom" and
12092
+ * "OverContentTop"), the properties `pageIndicatorBackgroundDesign` and `pageIndicatorBorderDesign` will
12093
+ * not take effect.
12094
+ *
12095
+ * **Note:** We recommend using a page indicator placed over the carousel's content (values "OverContentBottom"
12096
+ * and "OverContentTop") only if the content consists of images.
12006
12097
  *
12007
12098
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12008
12099
  *
@@ -12015,7 +12106,9 @@ declare module "sap/m/Carousel" {
12015
12106
  /**
12016
12107
  * New value for property `pageIndicatorPlacement`
12017
12108
  */
12018
- sPageIndicatorPlacement?: PlacementType | keyof typeof PlacementType
12109
+ sPageIndicatorPlacement?:
12110
+ | CarouselPageIndicatorPlacementType
12111
+ | keyof typeof CarouselPageIndicatorPlacementType
12019
12112
  ): this;
12020
12113
  /**
12021
12114
  * Sets a new value for property {@link #getShowBusyIndicator showBusyIndicator}.
@@ -12103,12 +12196,22 @@ declare module "sap/m/Carousel" {
12103
12196
  showPageIndicator?: boolean | PropertyBindingInfo | `{${string}}`;
12104
12197
 
12105
12198
  /**
12106
- * Defines where the carousel's page indicator is displayed. Possible values are sap.m.PlacementType.Top,
12107
- * sap.m.PlacementType.Bottom. Other values are ignored and the default value will be applied. The default
12108
- * value is sap.m.PlacementType.Bottom.
12199
+ * Defines where the carousel's page indicator is displayed. Possible values are sap.m.CarouselPageIndicatorPlacementType.Top,
12200
+ * sap.m.CarouselPageIndicatorPlacementType.Bottom, CarouselPageIndicatorPlacementType.OverContentTop and
12201
+ * CarouselPageIndicatorPlacementType.OverContentBottom.
12202
+ *
12203
+ * **Note:** when the page indicator is placed over the carousel's content (values "OverContentBottom" and
12204
+ * "OverContentTop"), the properties `pageIndicatorBackgroundDesign` and `pageIndicatorBorderDesign` will
12205
+ * not take effect.
12206
+ *
12207
+ * **Note:** We recommend using a page indicator placed over the carousel's content (values "OverContentBottom"
12208
+ * and "OverContentTop") only if the content consists of images.
12109
12209
  */
12110
12210
  pageIndicatorPlacement?:
12111
- | (PlacementType | keyof typeof PlacementType)
12211
+ | (
12212
+ | CarouselPageIndicatorPlacementType
12213
+ | keyof typeof CarouselPageIndicatorPlacementType
12214
+ )
12112
12215
  | PropertyBindingInfo
12113
12216
  | `{${string}}`;
12114
12217
 
@@ -12181,6 +12284,13 @@ declare module "sap/m/Carousel" {
12181
12284
  */
12182
12285
  activePage?: Control | string;
12183
12286
 
12287
+ /**
12288
+ * Association to controls / IDs which label this control (see WAI-ARIA attribute `aria-labelledby`).
12289
+ *
12290
+ * @since 1.125
12291
+ */
12292
+ ariaLabelledBy?: Array<Control | string>;
12293
+
12184
12294
  /**
12185
12295
  * Carousel requires a new page to be loaded. This event may be used to fill the content of that page
12186
12296
  *
@@ -16841,19 +16951,6 @@ declare module "sap/m/ComboBoxBase" {
16841
16951
  * @returns The list instance object or `null`.
16842
16952
  */
16843
16953
  getList(): List | null;
16844
- /**
16845
- * Gets current value of property {@link #getOpen open}.
16846
- *
16847
- * Indicates whether the picker is opened.
16848
- *
16849
- * Default value is `false`.
16850
- *
16851
- * @deprecated (since 1.110) - Please check the `showItems` functionality if you need to open the picker
16852
- * programmatically.
16853
- *
16854
- * @returns Value of property `open`
16855
- */
16856
- getOpen(): boolean;
16857
16954
  /**
16858
16955
  * Gets the control's picker popup.
16859
16956
  *
@@ -17089,26 +17186,6 @@ declare module "sap/m/ComboBoxBase" {
17089
17186
  */
17090
17187
  fnFilter?: (p1: string, p2: Item) => boolean
17091
17188
  ): this;
17092
- /**
17093
- * Sets a new value for property {@link #getOpen open}.
17094
- *
17095
- * Indicates whether the picker is opened.
17096
- *
17097
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
17098
- *
17099
- * Default value is `false`.
17100
- *
17101
- * @deprecated (since 1.110) - Please check the `showItems` functionality if you need to open the picker
17102
- * programmatically.
17103
- *
17104
- * @returns Reference to `this` in order to allow method chaining
17105
- */
17106
- setOpen(
17107
- /**
17108
- * New value for property `open`
17109
- */
17110
- bOpen?: boolean
17111
- ): this;
17112
17189
  /**
17113
17190
  * Sets the property `_sPickerType`.
17114
17191
  *
@@ -17245,14 +17322,6 @@ declare module "sap/m/ComboBoxBase" {
17245
17322
  */
17246
17323
  showSecondaryValues?: boolean | PropertyBindingInfo | `{${string}}`;
17247
17324
 
17248
- /**
17249
- * Indicates whether the picker is opened.
17250
- *
17251
- * @deprecated (since 1.110) - Please check the `showItems` functionality if you need to open the picker
17252
- * programmatically.
17253
- */
17254
- open?: boolean | PropertyBindingInfo | `{${string}}`;
17255
-
17256
17325
  /**
17257
17326
  * Specifies whether clear icon is shown. Pressing the icon will clear input's value.
17258
17327
  *
@@ -25307,18 +25376,6 @@ declare module "sap/m/DynamicDateRange" {
25307
25376
  * Describes the settings that can be provided to the DynamicDateRange constructor.
25308
25377
  */
25309
25378
  export interface $DynamicDateRangeSettings extends $ControlSettings {
25310
- /**
25311
- * Defines the control value. The object has two properties 'operator' - a string, the key of a DynamicDateOption
25312
- * and 'values' - an array of parameters for the same option. The control uses a special wrong-value object,
25313
- * when the input receives an unrecognized string - { operator: "PARSEERROR", values: [...]}
25314
- *
25315
- * **Note:** Data binding for the `value` property is not supported. Instead, you should use DynamicDateRange's
25316
- * `getValue` and `setValue` methods.
25317
- *
25318
- * @since 1.92
25319
- */
25320
- value?: object | PropertyBindingInfo | `{${string}}`;
25321
-
25322
25379
  /**
25323
25380
  * Defines the width of the control.
25324
25381
  *
@@ -25390,17 +25447,6 @@ declare module "sap/m/DynamicDateRange" {
25390
25447
  */
25391
25448
  enableGroupHeaders?: boolean | PropertyBindingInfo | `{${string}}`;
25392
25449
 
25393
- /**
25394
- * An instance of sap.m.DynamicDateFormat or a user defined format object with the corresponding formatting
25395
- * and parsing functionality.
25396
- *
25397
- * **Note:** Data binding for the `formatter` property is not supported. Instead, you should use DynamicDateRange's
25398
- * `getFormatter` and `setFormatter` methods.
25399
- *
25400
- * @since 1.92
25401
- */
25402
- formatter?: object | PropertyBindingInfo | `{${string}}`;
25403
-
25404
25450
  /**
25405
25451
  * Array of standard option keys
25406
25452
  *
@@ -33076,20 +33122,6 @@ declare module "sap/m/GenericTile" {
33076
33122
  * @returns An array containing all of the tile's bounding rectangles
33077
33123
  */
33078
33124
  getBoundingRects(): object[];
33079
- /**
33080
- * Gets current value of property {@link #getDropAreaOffset dropAreaOffset}.
33081
- *
33082
- * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
33083
- * all the tile edges.
33084
- *
33085
- * Default value is `0`.
33086
- *
33087
- * @since 1.118
33088
- * @experimental (since 1.113)
33089
- *
33090
- * @returns Value of property `dropAreaOffset`
33091
- */
33092
- getDropAreaOffset(): int;
33093
33125
  /**
33094
33126
  * Gets current value of property {@link #getEnableNavigationButton enableNavigationButton}.
33095
33127
  *
@@ -33674,27 +33706,6 @@ declare module "sap/m/GenericTile" {
33674
33706
  */
33675
33707
  oBadge: TileInfo
33676
33708
  ): this;
33677
- /**
33678
- * Sets a new value for property {@link #getDropAreaOffset dropAreaOffset}.
33679
- *
33680
- * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
33681
- * all the tile edges.
33682
- *
33683
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
33684
- *
33685
- * Default value is `0`.
33686
- *
33687
- * @since 1.118
33688
- * @experimental (since 1.113)
33689
- *
33690
- * @returns Reference to `this` in order to allow method chaining
33691
- */
33692
- setDropAreaOffset(
33693
- /**
33694
- * New value for property `dropAreaOffset`
33695
- */
33696
- iDropAreaOffset?: int
33697
- ): this;
33698
33709
  /**
33699
33710
  * Sets a new value for property {@link #getEnableNavigationButton enableNavigationButton}.
33700
33711
  *
@@ -34392,15 +34403,6 @@ declare module "sap/m/GenericTile" {
34392
34403
  */
34393
34404
  tileBadge?: string | PropertyBindingInfo;
34394
34405
 
34395
- /**
34396
- * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
34397
- * all the tile edges.
34398
- *
34399
- * @since 1.118
34400
- * @experimental (since 1.113)
34401
- */
34402
- dropAreaOffset?: int | PropertyBindingInfo | `{${string}}`;
34403
-
34404
34406
  /**
34405
34407
  * The content of the tile.
34406
34408
  */
@@ -38708,8 +38710,6 @@ declare module "sap/m/IconTabSeparator" {
38708
38710
  declare module "sap/m/IllustratedMessage" {
38709
38711
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
38710
38712
 
38711
- import Button from "sap/m/Button";
38712
-
38713
38713
  import { ID, TitleLevel } from "sap/ui/core/library";
38714
38714
 
38715
38715
  import IllustratedMessageSize from "sap/m/IllustratedMessageSize";
@@ -38825,7 +38825,7 @@ declare module "sap/m/IllustratedMessage" {
38825
38825
  /**
38826
38826
  * The additionalContent to add; if empty, nothing is inserted
38827
38827
  */
38828
- oAdditionalContent: Button
38828
+ oAdditionalContent: Control
38829
38829
  ): this;
38830
38830
  /**
38831
38831
  * Adds some illustrationAriaLabelledBy into the association {@link #getIllustrationAriaLabelledBy illustrationAriaLabelledBy}.
@@ -38879,7 +38879,7 @@ declare module "sap/m/IllustratedMessage" {
38879
38879
  *
38880
38880
  * @since 1.98
38881
38881
  */
38882
- getAdditionalContent(): Button[];
38882
+ getAdditionalContent(): Control[];
38883
38883
  /**
38884
38884
  * Gets current value of property {@link #getAriaTitleLevel ariaTitleLevel}.
38885
38885
  *
@@ -39011,7 +39011,7 @@ declare module "sap/m/IllustratedMessage" {
39011
39011
  */
39012
39012
  getTitle(): string;
39013
39013
  /**
39014
- * Checks for the provided `sap.m.Button` in the aggregation {@link #getAdditionalContent additionalContent}.
39014
+ * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getAdditionalContent additionalContent}.
39015
39015
  * and returns its index if found or -1 otherwise.
39016
39016
  *
39017
39017
  * @since 1.98
@@ -39022,7 +39022,7 @@ declare module "sap/m/IllustratedMessage" {
39022
39022
  /**
39023
39023
  * The additionalContent whose index is looked for
39024
39024
  */
39025
- oAdditionalContent: Button
39025
+ oAdditionalContent: Control
39026
39026
  ): int;
39027
39027
  /**
39028
39028
  * Inserts a additionalContent into the aggregation {@link #getAdditionalContent additionalContent}.
@@ -39035,7 +39035,7 @@ declare module "sap/m/IllustratedMessage" {
39035
39035
  /**
39036
39036
  * The additionalContent to insert; if empty, nothing is inserted
39037
39037
  */
39038
- oAdditionalContent: Button,
39038
+ oAdditionalContent: Control,
39039
39039
  /**
39040
39040
  * The `0`-based index the additionalContent should be inserted at; for a negative value of `iIndex`, the
39041
39041
  * additionalContent is inserted at position 0; for a value greater than the current size of the aggregation,
@@ -39054,8 +39054,8 @@ declare module "sap/m/IllustratedMessage" {
39054
39054
  /**
39055
39055
  * The additionalContent to remove or its index or id
39056
39056
  */
39057
- vAdditionalContent: int | string | Button
39058
- ): Button | null;
39057
+ vAdditionalContent: int | string | Control
39058
+ ): Control | null;
39059
39059
  /**
39060
39060
  * Removes all the controls from the aggregation {@link #getAdditionalContent additionalContent}.
39061
39061
  *
@@ -39065,7 +39065,7 @@ declare module "sap/m/IllustratedMessage" {
39065
39065
  *
39066
39066
  * @returns An array of the removed elements (might be empty)
39067
39067
  */
39068
- removeAllAdditionalContent(): Button[];
39068
+ removeAllAdditionalContent(): Control[];
39069
39069
  /**
39070
39070
  * Removes all the controls in the association named {@link #getIllustrationAriaLabelledBy illustrationAriaLabelledBy}.
39071
39071
  *
@@ -39374,8 +39374,8 @@ declare module "sap/m/IllustratedMessage" {
39374
39374
  * @since 1.98
39375
39375
  */
39376
39376
  additionalContent?:
39377
- | Button[]
39378
- | Button
39377
+ | Control[]
39378
+ | Control
39379
39379
  | AggregationBindingInfo
39380
39380
  | `{${string}}`;
39381
39381
 
@@ -44885,6 +44885,20 @@ declare module "sap/m/InputBase" {
44885
44885
  */
44886
44886
  sPlaceholder?: string
44887
44887
  ): this;
44888
+ /**
44889
+ * Sets the behavior of the control to prioritize user interaction over later model updates. When set to
44890
+ * `true`, it prevents the model from overwriting user input. Example: Input's value property is bound to
44891
+ * a model The user starts typing and due to this action, the model receives update from the backend, thus
44892
+ * forwarding it to the bound control property Result when `false`: User input is overwritten by the incoming
44893
+ * model update. Result when `true`: User input is not overwritten by the incoming model update - the model
44894
+ * update is skipped and the value remains unchanged.
44895
+ */
44896
+ setPreferUserInteraction(
44897
+ /**
44898
+ * True, if the user interaction is preferred
44899
+ */
44900
+ bPrefer: boolean
44901
+ ): void;
44888
44902
  /**
44889
44903
  * Sets a new value for property {@link #getRequired required}.
44890
44904
  *
@@ -67402,7 +67416,7 @@ declare module "sap/m/ObjectHeader" {
67402
67416
  * Default value is `false`.
67403
67417
  *
67404
67418
  * @since 1.16.0
67405
- * @deprecated (since 1.42.0) - replaced by `markers` aggregationv. This property is valid only if you are
67419
+ * @deprecated (since 1.42.0) - replaced by `markers` aggregation. This property is valid only if you are
67406
67420
  * using the already deprecated properties - `markFlagged` and `markFavorite`. If you are using `markers`,
67407
67421
  * the visibility of the markers depends on what is set in the aggregation itself.
67408
67422
  *
@@ -68450,7 +68464,7 @@ declare module "sap/m/ObjectHeader" {
68450
68464
  * If set to `true`, the `ObjectHeader` can be marked with icons such as favorite and flag.
68451
68465
  *
68452
68466
  * @since 1.16.0
68453
- * @deprecated (since 1.42.0) - replaced by `markers` aggregationv. This property is valid only if you are
68467
+ * @deprecated (since 1.42.0) - replaced by `markers` aggregation. This property is valid only if you are
68454
68468
  * using the already deprecated properties - `markFlagged` and `markFavorite`. If you are using `markers`,
68455
68469
  * the visibility of the markers depends on what is set in the aggregation itself.
68456
68470
  */
@@ -86649,6 +86663,14 @@ declare module "sap/m/PlanningCalendar" {
86649
86663
  */
86650
86664
  oListener?: object
86651
86665
  ): this;
86666
+ /**
86667
+ * Destroys the noData in the aggregation {@link #getNoData noData}.
86668
+ *
86669
+ * @since 1.125.0
86670
+ *
86671
+ * @returns Reference to `this` in order to allow method chaining
86672
+ */
86673
+ destroyNoData(): this;
86652
86674
  /**
86653
86675
  * Destroys all the rows in the aggregation {@link #getRows rows}.
86654
86676
  *
@@ -87076,33 +87098,19 @@ declare module "sap/m/PlanningCalendar" {
87076
87098
  */
87077
87099
  getLegend(): ID | null;
87078
87100
  /**
87079
- * Gets current value of property {@link #getMaxDate maxDate}.
87080
- *
87081
- * Defines the maximum date that can be displayed and selected in the `PlanningCalendar`. This must be a
87082
- * UI5Date or JavaScript Date object.
87083
- *
87084
- * **Note:** If the `maxDate` is set to be before the current `minDate`, the `minDate` is set to the first
87085
- * date of the month in which the `maxDate` belongs.
87101
+ * Gets current value of property `maxDate`.
87086
87102
  *
87087
- * @since 1.38.0
87088
87103
  *
87089
- * @returns Value of property `maxDate`
87104
+ * @returns The maxDate as a UI5Date or JavaScript Date object
87090
87105
  */
87091
- getMaxDate(): object;
87106
+ getMaxDate(): Date | UI5Date;
87092
87107
  /**
87093
- * Gets current value of property {@link #getMinDate minDate}.
87094
- *
87095
- * Defines the minimum date that can be displayed and selected in the `PlanningCalendar`. This must be a
87096
- * UI5Date or JavaScript Date object.
87108
+ * Gets current value of property `minDate`.
87097
87109
  *
87098
- * **Note:** If the `minDate` is set to be after the current `maxDate`, the `maxDate` is set to the last
87099
- * date of the month in which the `minDate` belongs.
87100
- *
87101
- * @since 1.38.0
87102
87110
  *
87103
- * @returns Value of property `minDate`
87111
+ * @returns The minDate as a UI5Date or JavaScript Date object
87104
87112
  */
87105
- getMinDate(): object;
87113
+ getMinDate(): Date | UI5Date;
87106
87114
  /**
87107
87115
  * Gets current value of property {@link #getMultipleAppointmentsSelection multipleAppointmentsSelection}.
87108
87116
  *
@@ -87117,11 +87125,23 @@ declare module "sap/m/PlanningCalendar" {
87117
87125
  * @returns Value of property `multipleAppointmentsSelection`
87118
87126
  */
87119
87127
  getMultipleAppointmentsSelection(): boolean;
87128
+ /**
87129
+ * Gets content of aggregation {@link #getNoData noData}.
87130
+ *
87131
+ * Defines the custom visualization if there is no data available. **Note:** If both `noDataText` property
87132
+ * and `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
87133
+ * is undefined or set to null, the `noDataText` property is used instead.
87134
+ *
87135
+ * @since 1.125.0
87136
+ */
87137
+ getNoData(): Control | string;
87120
87138
  /**
87121
87139
  * Gets current value of property {@link #getNoDataText noDataText}.
87122
87140
  *
87123
87141
  * Defines the text that is displayed when no {@link sap.m.PlanningCalendarRow PlanningCalendarRows} are
87124
- * assigned.
87142
+ * assigned. **Note:** If both `noDataText` property and `noData` aggregation are provided, the `noData`
87143
+ * aggregation takes priority. If the `noData` aggregation is undefined or set to null, the `noDataText`
87144
+ * property is used instead.
87125
87145
  *
87126
87146
  *
87127
87147
  * @returns Value of property `noDataText`
@@ -87291,15 +87311,12 @@ declare module "sap/m/PlanningCalendar" {
87291
87311
  */
87292
87312
  getSpecialDates(): DateTypeRange[];
87293
87313
  /**
87294
- * Gets current value of property {@link #getStartDate startDate}.
87295
- *
87296
- * Determines the start date of the row, as a UI5Date or JavaScript Date object. The current date is used
87297
- * as default.
87314
+ * Gets current value of property `startDate`.
87298
87315
  *
87299
87316
  *
87300
- * @returns Value of property `startDate`
87317
+ * @returns The startDate as a UI5Date or JavaScript Date object
87301
87318
  */
87302
- getStartDate(): object;
87319
+ getStartDate(): Date | UI5Date;
87303
87320
  /**
87304
87321
  * Gets current value of property {@link #getStickyHeader stickyHeader}.
87305
87322
  *
@@ -87903,11 +87920,26 @@ declare module "sap/m/PlanningCalendar" {
87903
87920
  */
87904
87921
  bMultipleAppointmentsSelection?: boolean
87905
87922
  ): this;
87923
+ /**
87924
+ * Sets the aggregated {@link #getNoData noData}.
87925
+ *
87926
+ * @since 1.125.0
87927
+ *
87928
+ * @returns Reference to `this` in order to allow method chaining
87929
+ */
87930
+ setNoData(
87931
+ /**
87932
+ * The noData to set
87933
+ */
87934
+ vNoData: Control | string
87935
+ ): this;
87906
87936
  /**
87907
87937
  * Sets a new value for property {@link #getNoDataText noDataText}.
87908
87938
  *
87909
87939
  * Defines the text that is displayed when no {@link sap.m.PlanningCalendarRow PlanningCalendarRows} are
87910
- * assigned.
87940
+ * assigned. **Note:** If both `noDataText` property and `noData` aggregation are provided, the `noData`
87941
+ * aggregation takes priority. If the `noData` aggregation is undefined or set to null, the `noDataText`
87942
+ * property is used instead.
87911
87943
  *
87912
87944
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
87913
87945
  *
@@ -88199,7 +88231,9 @@ declare module "sap/m/PlanningCalendar" {
88199
88231
 
88200
88232
  /**
88201
88233
  * Defines the text that is displayed when no {@link sap.m.PlanningCalendarRow PlanningCalendarRows} are
88202
- * assigned.
88234
+ * assigned. **Note:** If both `noDataText` property and `noData` aggregation are provided, the `noData`
88235
+ * aggregation takes priority. If the `noData` aggregation is undefined or set to null, the `noDataText`
88236
+ * property is used instead.
88203
88237
  */
88204
88238
  noDataText?: string | PropertyBindingInfo;
88205
88239
 
@@ -88471,6 +88505,15 @@ declare module "sap/m/PlanningCalendar" {
88471
88505
  | AggregationBindingInfo
88472
88506
  | `{${string}}`;
88473
88507
 
88508
+ /**
88509
+ * Defines the custom visualization if there is no data available. **Note:** If both `noDataText` property
88510
+ * and `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
88511
+ * is undefined or set to null, the `noDataText` property is used instead.
88512
+ *
88513
+ * @since 1.125.0
88514
+ */
88515
+ noData?: string | Control | PropertyBindingInfo;
88516
+
88474
88517
  /**
88475
88518
  * Association to controls / IDs which label this control (see WAI-ARIA attribute aria-labelledby).
88476
88519
  *
@@ -98600,7 +98643,7 @@ declare module "sap/m/QuickView" {
98600
98643
  /**
98601
98644
  * The control which opens the QuickView.
98602
98645
  */
98603
- oControl: Control
98646
+ oControl: Control | HTMLElement
98604
98647
  ): this;
98605
98648
  /**
98606
98649
  * The method sets placement position of the QuickView.
@@ -113600,7 +113643,6 @@ declare module "sap/m/SelectionDetails" {
113600
113643
  /**
113601
113644
  * Adds some action to the aggregation {@link #getActions actions}.
113602
113645
  *
113603
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113604
113646
  *
113605
113647
  * @returns Reference to `this` in order to allow method chaining
113606
113648
  */
@@ -113613,7 +113655,6 @@ declare module "sap/m/SelectionDetails" {
113613
113655
  /**
113614
113656
  * Adds some actionGroup to the aggregation {@link #getActionGroups actionGroups}.
113615
113657
  *
113616
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113617
113658
  *
113618
113659
  * @returns Reference to `this` in order to allow method chaining
113619
113660
  */
@@ -113626,7 +113667,6 @@ declare module "sap/m/SelectionDetails" {
113626
113667
  /**
113627
113668
  * Adds some item to the aggregation {@link #getItems items}.
113628
113669
  *
113629
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113630
113670
  *
113631
113671
  * @returns Reference to `this` in order to allow method chaining
113632
113672
  */
@@ -113644,7 +113684,6 @@ declare module "sap/m/SelectionDetails" {
113644
113684
  *
113645
113685
  * Event is triggered when a custom action is pressed.
113646
113686
  *
113647
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113648
113687
  *
113649
113688
  * @returns Reference to `this` in order to allow method chaining
113650
113689
  */
@@ -113671,7 +113710,6 @@ declare module "sap/m/SelectionDetails" {
113671
113710
  *
113672
113711
  * Event is triggered when a custom action is pressed.
113673
113712
  *
113674
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113675
113713
  *
113676
113714
  * @returns Reference to `this` in order to allow method chaining
113677
113715
  */
@@ -113693,7 +113731,6 @@ declare module "sap/m/SelectionDetails" {
113693
113731
  *
113694
113732
  * Event is triggered before the popover is closed.
113695
113733
  *
113696
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113697
113734
  *
113698
113735
  * @returns Reference to `this` in order to allow method chaining
113699
113736
  */
@@ -113720,7 +113757,6 @@ declare module "sap/m/SelectionDetails" {
113720
113757
  *
113721
113758
  * Event is triggered before the popover is closed.
113722
113759
  *
113723
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113724
113760
  *
113725
113761
  * @returns Reference to `this` in order to allow method chaining
113726
113762
  */
@@ -113742,7 +113778,6 @@ declare module "sap/m/SelectionDetails" {
113742
113778
  *
113743
113779
  * Event is triggered before the popover is open.
113744
113780
  *
113745
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113746
113781
  *
113747
113782
  * @returns Reference to `this` in order to allow method chaining
113748
113783
  */
@@ -113769,7 +113804,6 @@ declare module "sap/m/SelectionDetails" {
113769
113804
  *
113770
113805
  * Event is triggered before the popover is open.
113771
113806
  *
113772
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113773
113807
  *
113774
113808
  * @returns Reference to `this` in order to allow method chaining
113775
113809
  */
@@ -113791,7 +113825,6 @@ declare module "sap/m/SelectionDetails" {
113791
113825
  *
113792
113826
  * Event is triggered after a list item of {@link sap.m.SelectionDetailsItem} is pressed.
113793
113827
  *
113794
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113795
113828
  *
113796
113829
  * @returns Reference to `this` in order to allow method chaining
113797
113830
  */
@@ -113818,7 +113851,6 @@ declare module "sap/m/SelectionDetails" {
113818
113851
  *
113819
113852
  * Event is triggered after a list item of {@link sap.m.SelectionDetailsItem} is pressed.
113820
113853
  *
113821
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113822
113854
  *
113823
113855
  * @returns Reference to `this` in order to allow method chaining
113824
113856
  */
@@ -113855,7 +113887,6 @@ declare module "sap/m/SelectionDetails" {
113855
113887
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
113856
113888
  * of the possible properties of `oBindingInfo`.
113857
113889
  *
113858
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113859
113890
  *
113860
113891
  * @returns Reference to `this` in order to allow method chaining
113861
113892
  */
@@ -113868,7 +113899,6 @@ declare module "sap/m/SelectionDetails" {
113868
113899
  /**
113869
113900
  * Destroys all the actionGroups in the aggregation {@link #getActionGroups actionGroups}.
113870
113901
  *
113871
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113872
113902
  *
113873
113903
  * @returns Reference to `this` in order to allow method chaining
113874
113904
  */
@@ -113876,7 +113906,6 @@ declare module "sap/m/SelectionDetails" {
113876
113906
  /**
113877
113907
  * Destroys all the actions in the aggregation {@link #getActions actions}.
113878
113908
  *
113879
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113880
113909
  *
113881
113910
  * @returns Reference to `this` in order to allow method chaining
113882
113911
  */
@@ -113884,7 +113913,6 @@ declare module "sap/m/SelectionDetails" {
113884
113913
  /**
113885
113914
  * Destroys all the items in the aggregation {@link #getItems items}.
113886
113915
  *
113887
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113888
113916
  *
113889
113917
  * @returns Reference to `this` in order to allow method chaining
113890
113918
  */
@@ -113894,7 +113922,6 @@ declare module "sap/m/SelectionDetails" {
113894
113922
  *
113895
113923
  * The passed function and listener object must match the ones used for event registration.
113896
113924
  *
113897
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113898
113925
  *
113899
113926
  * @returns Reference to `this` in order to allow method chaining
113900
113927
  */
@@ -113913,7 +113940,6 @@ declare module "sap/m/SelectionDetails" {
113913
113940
  *
113914
113941
  * The passed function and listener object must match the ones used for event registration.
113915
113942
  *
113916
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113917
113943
  *
113918
113944
  * @returns Reference to `this` in order to allow method chaining
113919
113945
  */
@@ -113932,7 +113958,6 @@ declare module "sap/m/SelectionDetails" {
113932
113958
  *
113933
113959
  * The passed function and listener object must match the ones used for event registration.
113934
113960
  *
113935
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113936
113961
  *
113937
113962
  * @returns Reference to `this` in order to allow method chaining
113938
113963
  */
@@ -113951,7 +113976,6 @@ declare module "sap/m/SelectionDetails" {
113951
113976
  *
113952
113977
  * The passed function and listener object must match the ones used for event registration.
113953
113978
  *
113954
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113955
113979
  *
113956
113980
  * @returns Reference to `this` in order to allow method chaining
113957
113981
  */
@@ -114031,16 +114055,12 @@ declare module "sap/m/SelectionDetails" {
114031
114055
  * Contains actions that are rendered as a dedicated {@link sap.m.StandardListItem item}. In case an action
114032
114056
  * group is pressed, a navigation should be triggered via `navTo` method. A maximum of 5 actionGroups is
114033
114057
  * displayed inside the popover, though more can be added to the aggregation.
114034
- *
114035
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114036
114058
  */
114037
114059
  getActionGroups(): Item[];
114038
114060
  /**
114039
114061
  * Gets content of aggregation {@link #getActions actions}.
114040
114062
  *
114041
114063
  * Contains custom actions shown in the responsive toolbar below items on the first page.
114042
- *
114043
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114044
114064
  */
114045
114065
  getActions(): Item[];
114046
114066
  /**
@@ -114055,15 +114075,12 @@ declare module "sap/m/SelectionDetails" {
114055
114075
  * Gets content of aggregation {@link #getItems items}.
114056
114076
  *
114057
114077
  * Contains {@link sap.m.SelectionDetailsItem items} that are displayed on the first page.
114058
- *
114059
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114060
114078
  */
114061
114079
  getItems(): SelectionDetailsItem[];
114062
114080
  /**
114063
114081
  * Checks for the provided `sap.ui.core.Item` in the aggregation {@link #getActions actions}. and returns
114064
114082
  * its index if found or -1 otherwise.
114065
114083
  *
114066
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114067
114084
  *
114068
114085
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
114069
114086
  */
@@ -114077,7 +114094,6 @@ declare module "sap/m/SelectionDetails" {
114077
114094
  * Checks for the provided `sap.ui.core.Item` in the aggregation {@link #getActionGroups actionGroups}.
114078
114095
  * and returns its index if found or -1 otherwise.
114079
114096
  *
114080
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114081
114097
  *
114082
114098
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
114083
114099
  */
@@ -114091,7 +114107,6 @@ declare module "sap/m/SelectionDetails" {
114091
114107
  * Checks for the provided `sap.m.SelectionDetailsItem` in the aggregation {@link #getItems items}. and
114092
114108
  * returns its index if found or -1 otherwise.
114093
114109
  *
114094
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114095
114110
  *
114096
114111
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
114097
114112
  */
@@ -114104,7 +114119,6 @@ declare module "sap/m/SelectionDetails" {
114104
114119
  /**
114105
114120
  * Inserts a action into the aggregation {@link #getActions actions}.
114106
114121
  *
114107
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114108
114122
  *
114109
114123
  * @returns Reference to `this` in order to allow method chaining
114110
114124
  */
@@ -114123,7 +114137,6 @@ declare module "sap/m/SelectionDetails" {
114123
114137
  /**
114124
114138
  * Inserts a actionGroup into the aggregation {@link #getActionGroups actionGroups}.
114125
114139
  *
114126
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114127
114140
  *
114128
114141
  * @returns Reference to `this` in order to allow method chaining
114129
114142
  */
@@ -114142,7 +114155,6 @@ declare module "sap/m/SelectionDetails" {
114142
114155
  /**
114143
114156
  * Inserts a item into the aggregation {@link #getItems items}.
114144
114157
  *
114145
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114146
114158
  *
114147
114159
  * @returns Reference to `this` in order to allow method chaining
114148
114160
  */
@@ -114182,7 +114194,6 @@ declare module "sap/m/SelectionDetails" {
114182
114194
  /**
114183
114195
  * Removes a action from the aggregation {@link #getActions actions}.
114184
114196
  *
114185
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114186
114197
  *
114187
114198
  * @returns The removed action or `null`
114188
114199
  */
@@ -114195,7 +114206,6 @@ declare module "sap/m/SelectionDetails" {
114195
114206
  /**
114196
114207
  * Removes a actionGroup from the aggregation {@link #getActionGroups actionGroups}.
114197
114208
  *
114198
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114199
114209
  *
114200
114210
  * @returns The removed actionGroup or `null`
114201
114211
  */
@@ -114210,7 +114220,6 @@ declare module "sap/m/SelectionDetails" {
114210
114220
  *
114211
114221
  * Additionally, it unregisters them from the hosting UIArea.
114212
114222
  *
114213
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114214
114223
  *
114215
114224
  * @returns An array of the removed elements (might be empty)
114216
114225
  */
@@ -114220,7 +114229,6 @@ declare module "sap/m/SelectionDetails" {
114220
114229
  *
114221
114230
  * Additionally, it unregisters them from the hosting UIArea.
114222
114231
  *
114223
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114224
114232
  *
114225
114233
  * @returns An array of the removed elements (might be empty)
114226
114234
  */
@@ -114230,7 +114238,6 @@ declare module "sap/m/SelectionDetails" {
114230
114238
  *
114231
114239
  * Additionally, it unregisters them from the hosting UIArea.
114232
114240
  *
114233
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114234
114241
  *
114235
114242
  * @returns An array of the removed elements (might be empty)
114236
114243
  */
@@ -114238,7 +114245,6 @@ declare module "sap/m/SelectionDetails" {
114238
114245
  /**
114239
114246
  * Removes a item from the aggregation {@link #getItems items}.
114240
114247
  *
114241
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114242
114248
  *
114243
114249
  * @returns The removed item or `null`
114244
114250
  */
@@ -114265,7 +114271,6 @@ declare module "sap/m/SelectionDetails" {
114265
114271
  /**
114266
114272
  * Unbinds aggregation {@link #getItems items} from model data.
114267
114273
  *
114268
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114269
114274
  *
114270
114275
  * @returns Reference to `this` in order to allow method chaining
114271
114276
  */
@@ -114446,7 +114451,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114446
114451
  /**
114447
114452
  * Adds some action to the aggregation {@link #getActions actions}.
114448
114453
  *
114449
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114450
114454
  *
114451
114455
  * @returns Reference to `this` in order to allow method chaining
114452
114456
  */
@@ -114459,7 +114463,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114459
114463
  /**
114460
114464
  * Adds some actionGroup to the aggregation {@link #getActionGroups actionGroups}.
114461
114465
  *
114462
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114463
114466
  *
114464
114467
  * @returns Reference to `this` in order to allow method chaining
114465
114468
  */
@@ -114477,7 +114480,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114477
114480
  *
114478
114481
  * Event is triggered when a custom action is pressed.
114479
114482
  *
114480
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114481
114483
  *
114482
114484
  * @returns Reference to `this` in order to allow method chaining
114483
114485
  */
@@ -114504,7 +114506,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114504
114506
  *
114505
114507
  * Event is triggered when a custom action is pressed.
114506
114508
  *
114507
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114508
114509
  *
114509
114510
  * @returns Reference to `this` in order to allow method chaining
114510
114511
  */
@@ -114526,7 +114527,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114526
114527
  *
114527
114528
  * Event is triggered before the popover is closed.
114528
114529
  *
114529
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114530
114530
  *
114531
114531
  * @returns Reference to `this` in order to allow method chaining
114532
114532
  */
@@ -114553,7 +114553,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114553
114553
  *
114554
114554
  * Event is triggered before the popover is closed.
114555
114555
  *
114556
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114557
114556
  *
114558
114557
  * @returns Reference to `this` in order to allow method chaining
114559
114558
  */
@@ -114575,7 +114574,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114575
114574
  *
114576
114575
  * Event is triggered before the popover is open.
114577
114576
  *
114578
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114579
114577
  *
114580
114578
  * @returns Reference to `this` in order to allow method chaining
114581
114579
  */
@@ -114602,7 +114600,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114602
114600
  *
114603
114601
  * Event is triggered before the popover is open.
114604
114602
  *
114605
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114606
114603
  *
114607
114604
  * @returns Reference to `this` in order to allow method chaining
114608
114605
  */
@@ -114624,7 +114621,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114624
114621
  *
114625
114622
  * Event is triggered after a list item of {@link sap.m.SelectionDetailsItem} is pressed.
114626
114623
  *
114627
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114628
114624
  *
114629
114625
  * @returns Reference to `this` in order to allow method chaining
114630
114626
  */
@@ -114651,7 +114647,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114651
114647
  *
114652
114648
  * Event is triggered after a list item of {@link sap.m.SelectionDetailsItem} is pressed.
114653
114649
  *
114654
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114655
114650
  *
114656
114651
  * @returns Reference to `this` in order to allow method chaining
114657
114652
  */
@@ -114677,7 +114672,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114677
114672
  *
114678
114673
  * The passed function and listener object must match the ones used for event registration.
114679
114674
  *
114680
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114681
114675
  *
114682
114676
  * @returns Reference to `this` in order to allow method chaining
114683
114677
  */
@@ -114696,7 +114690,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114696
114690
  *
114697
114691
  * The passed function and listener object must match the ones used for event registration.
114698
114692
  *
114699
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114700
114693
  *
114701
114694
  * @returns Reference to `this` in order to allow method chaining
114702
114695
  */
@@ -114715,7 +114708,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114715
114708
  *
114716
114709
  * The passed function and listener object must match the ones used for event registration.
114717
114710
  *
114718
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114719
114711
  *
114720
114712
  * @returns Reference to `this` in order to allow method chaining
114721
114713
  */
@@ -114734,7 +114726,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114734
114726
  *
114735
114727
  * The passed function and listener object must match the ones used for event registration.
114736
114728
  *
114737
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114738
114729
  *
114739
114730
  * @returns Reference to `this` in order to allow method chaining
114740
114731
  */
@@ -114792,7 +114783,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114792
114783
  /**
114793
114784
  * Removes a action from the aggregation {@link #getActions actions}.
114794
114785
  *
114795
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114796
114786
  *
114797
114787
  * @returns The removed action or `null`
114798
114788
  */
@@ -114805,7 +114795,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114805
114795
  /**
114806
114796
  * Removes a actionGroup from the aggregation {@link #getActionGroups actionGroups}.
114807
114797
  *
114808
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114809
114798
  *
114810
114799
  * @returns The removed actionGroup or `null`
114811
114800
  */
@@ -114820,7 +114809,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114820
114809
  *
114821
114810
  * Additionally, it unregisters them from the hosting UIArea.
114822
114811
  *
114823
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114824
114812
  *
114825
114813
  * @returns An array of the removed elements (might be empty)
114826
114814
  */
@@ -114830,7 +114818,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114830
114818
  *
114831
114819
  * Additionally, it unregisters them from the hosting UIArea.
114832
114820
  *
114833
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114834
114821
  *
114835
114822
  * @returns An array of the removed elements (might be empty)
114836
114823
  */
@@ -114946,7 +114933,6 @@ declare module "sap/m/SelectionDetailsItem" {
114946
114933
  /**
114947
114934
  * Adds some action to the aggregation {@link #getActions actions}.
114948
114935
  *
114949
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114950
114936
  *
114951
114937
  * @returns Reference to `this` in order to allow method chaining
114952
114938
  */
@@ -114959,7 +114945,6 @@ declare module "sap/m/SelectionDetailsItem" {
114959
114945
  /**
114960
114946
  * Adds some line to the aggregation {@link #getLines lines}.
114961
114947
  *
114962
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114963
114948
  *
114964
114949
  * @returns Reference to `this` in order to allow method chaining
114965
114950
  */
@@ -114975,7 +114960,6 @@ declare module "sap/m/SelectionDetailsItem" {
114975
114960
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
114976
114961
  * of the possible properties of `oBindingInfo`.
114977
114962
  *
114978
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114979
114963
  *
114980
114964
  * @returns Reference to `this` in order to allow method chaining
114981
114965
  */
@@ -114988,7 +114972,6 @@ declare module "sap/m/SelectionDetailsItem" {
114988
114972
  /**
114989
114973
  * Destroys all the actions in the aggregation {@link #getActions actions}.
114990
114974
  *
114991
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114992
114975
  *
114993
114976
  * @returns Reference to `this` in order to allow method chaining
114994
114977
  */
@@ -114996,7 +114979,6 @@ declare module "sap/m/SelectionDetailsItem" {
114996
114979
  /**
114997
114980
  * Destroys all the lines in the aggregation {@link #getLines lines}.
114998
114981
  *
114999
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115000
114982
  *
115001
114983
  * @returns Reference to `this` in order to allow method chaining
115002
114984
  */
@@ -115005,8 +114987,6 @@ declare module "sap/m/SelectionDetailsItem" {
115005
114987
  * Gets content of aggregation {@link #getActions actions}.
115006
114988
  *
115007
114989
  * Contains custom actions shown below the main content of the item.
115008
- *
115009
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115010
114990
  */
115011
114991
  getActions(): Item[];
115012
114992
  /**
@@ -115016,7 +114996,6 @@ declare module "sap/m/SelectionDetailsItem" {
115016
114996
  *
115017
114997
  * Default value is `false`.
115018
114998
  *
115019
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115020
114999
  *
115021
115000
  * @returns Value of property `enableNav`
115022
115001
  */
@@ -115034,15 +115013,12 @@ declare module "sap/m/SelectionDetailsItem" {
115034
115013
  *
115035
115014
  * Contains a record of information about, for example, measures and dimensions. These entries are usually
115036
115015
  * obtained via selection in chart controls.
115037
- *
115038
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115039
115016
  */
115040
115017
  getLines(): SelectionDetailsItemLine[];
115041
115018
  /**
115042
115019
  * Checks for the provided `sap.ui.core.Item` in the aggregation {@link #getActions actions}. and returns
115043
115020
  * its index if found or -1 otherwise.
115044
115021
  *
115045
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115046
115022
  *
115047
115023
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
115048
115024
  */
@@ -115056,7 +115032,6 @@ declare module "sap/m/SelectionDetailsItem" {
115056
115032
  * Checks for the provided `sap.m.SelectionDetailsItemLine` in the aggregation {@link #getLines lines}.
115057
115033
  * and returns its index if found or -1 otherwise.
115058
115034
  *
115059
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115060
115035
  *
115061
115036
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
115062
115037
  */
@@ -115069,7 +115044,6 @@ declare module "sap/m/SelectionDetailsItem" {
115069
115044
  /**
115070
115045
  * Inserts a action into the aggregation {@link #getActions actions}.
115071
115046
  *
115072
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115073
115047
  *
115074
115048
  * @returns Reference to `this` in order to allow method chaining
115075
115049
  */
@@ -115088,7 +115062,6 @@ declare module "sap/m/SelectionDetailsItem" {
115088
115062
  /**
115089
115063
  * Inserts a line into the aggregation {@link #getLines lines}.
115090
115064
  *
115091
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115092
115065
  *
115093
115066
  * @returns Reference to `this` in order to allow method chaining
115094
115067
  */
@@ -115107,7 +115080,6 @@ declare module "sap/m/SelectionDetailsItem" {
115107
115080
  /**
115108
115081
  * Removes a action from the aggregation {@link #getActions actions}.
115109
115082
  *
115110
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115111
115083
  *
115112
115084
  * @returns The removed action or `null`
115113
115085
  */
@@ -115122,7 +115094,6 @@ declare module "sap/m/SelectionDetailsItem" {
115122
115094
  *
115123
115095
  * Additionally, it unregisters them from the hosting UIArea.
115124
115096
  *
115125
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115126
115097
  *
115127
115098
  * @returns An array of the removed elements (might be empty)
115128
115099
  */
@@ -115132,7 +115103,6 @@ declare module "sap/m/SelectionDetailsItem" {
115132
115103
  *
115133
115104
  * Additionally, it unregisters them from the hosting UIArea.
115134
115105
  *
115135
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115136
115106
  *
115137
115107
  * @returns An array of the removed elements (might be empty)
115138
115108
  */
@@ -115140,7 +115110,6 @@ declare module "sap/m/SelectionDetailsItem" {
115140
115110
  /**
115141
115111
  * Removes a line from the aggregation {@link #getLines lines}.
115142
115112
  *
115143
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115144
115113
  *
115145
115114
  * @returns The removed line or `null`
115146
115115
  */
@@ -115159,7 +115128,6 @@ declare module "sap/m/SelectionDetailsItem" {
115159
115128
  *
115160
115129
  * Default value is `false`.
115161
115130
  *
115162
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115163
115131
  *
115164
115132
  * @returns Reference to `this` in order to allow method chaining
115165
115133
  */
@@ -115172,7 +115140,6 @@ declare module "sap/m/SelectionDetailsItem" {
115172
115140
  /**
115173
115141
  * Unbinds aggregation {@link #getLines lines} from model data.
115174
115142
  *
115175
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115176
115143
  *
115177
115144
  * @returns Reference to `this` in order to allow method chaining
115178
115145
  */
@@ -115297,7 +115264,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115297
115264
  * The display value of the line. If this property is set, it overrides the value property and is displayed
115298
115265
  * as is.
115299
115266
  *
115300
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115301
115267
  *
115302
115268
  * @returns Value of property `displayValue`
115303
115269
  */
@@ -115308,7 +115274,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115308
115274
  * The label that is shown as the first part of the line. It may contain the name of the currently selected
115309
115275
  * dimension or measure.
115310
115276
  *
115311
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115312
115277
  *
115313
115278
  * @returns Value of property `label`
115314
115279
  */
@@ -115319,7 +115284,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115319
115284
  * A string to be rendered by the control as a line marker. This string must be a valid SVG definition.
115320
115285
  * The only valid tags are: svg, path, line.
115321
115286
  *
115322
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115323
115287
  *
115324
115288
  * @returns Value of property `lineMarker`
115325
115289
  */
@@ -115329,7 +115293,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115329
115293
  *
115330
115294
  * The unit of the given value. If this unit is given, the line is displayed bold.
115331
115295
  *
115332
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115333
115296
  *
115334
115297
  * @returns Value of property `unit`
115335
115298
  */
@@ -115340,7 +115303,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115340
115303
  * The value of the line, for example the value of the currently selected measure. Expected type is a string,
115341
115304
  * number or a plain object, including date and time properties of type string.
115342
115305
  *
115343
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115344
115306
  *
115345
115307
  * @returns Value of property `value`
115346
115308
  */
@@ -115353,7 +115315,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115353
115315
  *
115354
115316
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115355
115317
  *
115356
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115357
115318
  *
115358
115319
  * @returns Reference to `this` in order to allow method chaining
115359
115320
  */
@@ -115371,7 +115332,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115371
115332
  *
115372
115333
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115373
115334
  *
115374
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115375
115335
  *
115376
115336
  * @returns Reference to `this` in order to allow method chaining
115377
115337
  */
@@ -115389,7 +115349,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115389
115349
  *
115390
115350
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115391
115351
  *
115392
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115393
115352
  *
115394
115353
  * @returns Reference to `this` in order to allow method chaining
115395
115354
  */
@@ -115406,7 +115365,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115406
115365
  *
115407
115366
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115408
115367
  *
115409
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115410
115368
  *
115411
115369
  * @returns Reference to `this` in order to allow method chaining
115412
115370
  */
@@ -115424,7 +115382,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115424
115382
  *
115425
115383
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115426
115384
  *
115427
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115428
115385
  *
115429
115386
  * @returns Reference to `this` in order to allow method chaining
115430
115387
  */
@@ -115822,18 +115779,6 @@ declare module "sap/m/SelectList" {
115822
115779
  * @returns The first item, or `null` if there are no items.
115823
115780
  */
115824
115781
  getFirstItem(): Item | null;
115825
- /**
115826
- * Gets current value of property {@link #getHideDisabledItems hideDisabledItems}.
115827
- *
115828
- * Determines whether the disabled items are hidden from the DOM structure.
115829
- *
115830
- * Default value is `false`.
115831
- *
115832
- * @since 1.91
115833
- *
115834
- * @returns Value of property `hideDisabledItems`
115835
- */
115836
- getHideDisabledItems(): boolean;
115837
115782
  /**
115838
115783
  * Gets the item from the aggregation named `items` at the given 0-based index.
115839
115784
  *
@@ -115877,6 +115822,7 @@ declare module "sap/m/SelectList" {
115877
115822
  * Default value is `Delimited`.
115878
115823
  *
115879
115824
  * @since 1.38
115825
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
115880
115826
  *
115881
115827
  * @returns Value of property `keyboardNavigationMode`
115882
115828
  */
@@ -116046,25 +115992,6 @@ declare module "sap/m/SelectList" {
116046
115992
  */
116047
115993
  bEnabled?: boolean
116048
115994
  ): this;
116049
- /**
116050
- * Sets a new value for property {@link #getHideDisabledItems hideDisabledItems}.
116051
- *
116052
- * Determines whether the disabled items are hidden from the DOM structure.
116053
- *
116054
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
116055
- *
116056
- * Default value is `false`.
116057
- *
116058
- * @since 1.91
116059
- *
116060
- * @returns Reference to `this` in order to allow method chaining
116061
- */
116062
- setHideDisabledItems(
116063
- /**
116064
- * New value for property `hideDisabledItems`
116065
- */
116066
- bHideDisabledItems?: boolean
116067
- ): this;
116068
115995
  /**
116069
115996
  * Sets a new value for property {@link #getKeyboardNavigationMode keyboardNavigationMode}.
116070
115997
  *
@@ -116078,6 +116005,7 @@ declare module "sap/m/SelectList" {
116078
116005
  * Default value is `Delimited`.
116079
116006
  *
116080
116007
  * @since 1.38
116008
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
116081
116009
  *
116082
116010
  * @returns Reference to `this` in order to allow method chaining
116083
116011
  */
@@ -116247,6 +116175,7 @@ declare module "sap/m/SelectList" {
116247
116175
  * in some composite controls that handles keyboard navigation by themselves.
116248
116176
  *
116249
116177
  * @since 1.38
116178
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
116250
116179
  */
116251
116180
  keyboardNavigationMode?:
116252
116181
  | (
@@ -116256,13 +116185,6 @@ declare module "sap/m/SelectList" {
116256
116185
  | PropertyBindingInfo
116257
116186
  | `{${string}}`;
116258
116187
 
116259
- /**
116260
- * Determines whether the disabled items are hidden from the DOM structure.
116261
- *
116262
- * @since 1.91
116263
- */
116264
- hideDisabledItems?: boolean | PropertyBindingInfo | `{${string}}`;
116265
-
116266
116188
  /**
116267
116189
  * Defines the items contained within this control.
116268
116190
  */
@@ -123491,15 +123413,17 @@ declare module "sap/m/SinglePlanningCalendar" {
123491
123413
 
123492
123414
  import ElementMetadata from "sap/ui/core/ElementMetadata";
123493
123415
 
123494
- import PlanningCalendarLegend from "sap/m/PlanningCalendarLegend";
123495
-
123496
123416
  import UI5Date from "sap/ui/core/date/UI5Date";
123497
123417
 
123418
+ import PlanningCalendarLegend from "sap/m/PlanningCalendarLegend";
123419
+
123498
123420
  import {
123499
123421
  PropertyBindingInfo,
123500
123422
  AggregationBindingInfo,
123501
123423
  } from "sap/ui/base/ManagedObject";
123502
123424
 
123425
+ import Link from "sap/m/Link";
123426
+
123503
123427
  /**
123504
123428
  * Displays a calendar of a single entity (such as person, resource) for the selected time interval.
123505
123429
  *
@@ -124861,15 +124785,12 @@ declare module "sap/m/SinglePlanningCalendar" {
124861
124785
  */
124862
124786
  getSpecialDates(): DateTypeRange[];
124863
124787
  /**
124864
- * Gets current value of property {@link #getStartDate startDate}.
124788
+ * Gets current value of property `startDate`.
124865
124789
  *
124866
- * Determines the start date of the grid, as a UI5Date or JavaScript Date object. It is considered as a
124867
- * local date. The time part will be ignored. The current date is used as default.
124868
124790
  *
124869
- *
124870
- * @returns Value of property `startDate`
124791
+ * @returns The startDate as a UI5Date or JavaScript Date object
124871
124792
  */
124872
- getStartDate(): object;
124793
+ getStartDate(): Date | UI5Date;
124873
124794
  /**
124874
124795
  * Gets current value of property {@link #getStartHour startHour}.
124875
124796
  *
@@ -126016,6 +125937,11 @@ declare module "sap/m/SinglePlanningCalendar" {
126016
125937
  * The date as a UI5Date or JavaScript Date object of the cell with the pressed more link.
126017
125938
  */
126018
125939
  date?: object;
125940
+
125941
+ /**
125942
+ * The link that has been triggered
125943
+ */
125944
+ sourceLink?: Link;
126019
125945
  }
126020
125946
 
126021
125947
  /**
@@ -126359,13 +126285,16 @@ declare module "sap/m/SinglePlanningCalendarView" {
126359
126285
  /**
126360
126286
  * Should calculate the startDate which will be displayed in the `sap.m.SinglePlanningCalendar` based on
126361
126287
  * a given date.
126288
+ *
126289
+ *
126290
+ * @returns The startDate of the view
126362
126291
  */
126363
126292
  calculateStartDate(
126364
126293
  /**
126365
- * A date instance
126294
+ * The given date
126366
126295
  */
126367
126296
  oDate: Date | UI5Date
126368
- ): void;
126297
+ ): Date | UI5Date;
126369
126298
  /**
126370
126299
  * Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
126371
126300
  *
@@ -126379,8 +126308,11 @@ declare module "sap/m/SinglePlanningCalendarView" {
126379
126308
  getCalendarWeekNumbering(): CalendarWeekNumbering;
126380
126309
  /**
126381
126310
  * Should return the number of columns to be displayed in the grid of the `sap.m.SinglePlanningCalendar`.
126311
+ *
126312
+ *
126313
+ * @returns the number of columns to be displayed
126382
126314
  */
126383
- getEntityCount(): void;
126315
+ getEntityCount(): int;
126384
126316
  /**
126385
126317
  * Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
126386
126318
  *
@@ -126411,8 +126343,11 @@ declare module "sap/m/SinglePlanningCalendarView" {
126411
126343
  * after navigating forward/backward with the arrows. For example, by pressing the forward button inside
126412
126344
  * the work week view, the next startDate of a work week will be 7 entities (days) away from the current
126413
126345
  * one.
126346
+ *
126347
+ *
126348
+ * @returns the number of entities to be skipped by scrolling
126414
126349
  */
126415
- getScrollEntityCount(): void;
126350
+ getScrollEntityCount(): int;
126416
126351
  /**
126417
126352
  * Gets current value of property {@link #getTitle title}.
126418
126353
  *
@@ -134842,55 +134777,6 @@ declare module "sap/m/TabContainerItem" {
134842
134777
  */
134843
134778
  oContent: Control
134844
134779
  ): this;
134845
- /**
134846
- * Attaches event handler `fnFunction` to the {@link #event:itemPropertyChanged itemPropertyChanged} event
134847
- * of this `sap.m.TabContainerItem`.
134848
- *
134849
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
134850
- * otherwise it will be bound to this `sap.m.TabContainerItem` itself.
134851
- *
134852
- * Sends information that some of the properties have changed.
134853
- *
134854
- *
134855
- * @returns Reference to `this` in order to allow method chaining
134856
- */
134857
- attachItemPropertyChanged(
134858
- /**
134859
- * An application-specific payload object that will be passed to the event handler along with the event
134860
- * object when firing the event
134861
- */
134862
- oData: object,
134863
- /**
134864
- * The function to be called when the event occurs
134865
- */
134866
- fnFunction: (p1: TabContainerItem$ItemPropertyChangedEvent) => void,
134867
- /**
134868
- * Context object to call the event handler with. Defaults to this `sap.m.TabContainerItem` itself
134869
- */
134870
- oListener?: object
134871
- ): this;
134872
- /**
134873
- * Attaches event handler `fnFunction` to the {@link #event:itemPropertyChanged itemPropertyChanged} event
134874
- * of this `sap.m.TabContainerItem`.
134875
- *
134876
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
134877
- * otherwise it will be bound to this `sap.m.TabContainerItem` itself.
134878
- *
134879
- * Sends information that some of the properties have changed.
134880
- *
134881
- *
134882
- * @returns Reference to `this` in order to allow method chaining
134883
- */
134884
- attachItemPropertyChanged(
134885
- /**
134886
- * The function to be called when the event occurs
134887
- */
134888
- fnFunction: (p1: TabContainerItem$ItemPropertyChangedEvent) => void,
134889
- /**
134890
- * Context object to call the event handler with. Defaults to this `sap.m.TabContainerItem` itself
134891
- */
134892
- oListener?: object
134893
- ): this;
134894
134780
  /**
134895
134781
  * Destroys all the content in the aggregation {@link #getContent content}.
134896
134782
  *
@@ -134898,38 +134784,6 @@ declare module "sap/m/TabContainerItem" {
134898
134784
  * @returns Reference to `this` in order to allow method chaining
134899
134785
  */
134900
134786
  destroyContent(): this;
134901
- /**
134902
- * Detaches event handler `fnFunction` from the {@link #event:itemPropertyChanged itemPropertyChanged} event
134903
- * of this `sap.m.TabContainerItem`.
134904
- *
134905
- * The passed function and listener object must match the ones used for event registration.
134906
- *
134907
- *
134908
- * @returns Reference to `this` in order to allow method chaining
134909
- */
134910
- detachItemPropertyChanged(
134911
- /**
134912
- * The function to be called, when the event occurs
134913
- */
134914
- fnFunction: (p1: TabContainerItem$ItemPropertyChangedEvent) => void,
134915
- /**
134916
- * Context object on which the given function had to be called
134917
- */
134918
- oListener?: object
134919
- ): this;
134920
- /**
134921
- * Fires event {@link #event:itemPropertyChanged itemPropertyChanged} to attached listeners.
134922
- *
134923
- * @ui5-protected Do not call from applications (only from related classes in the framework)
134924
- *
134925
- * @returns Reference to `this` in order to allow method chaining
134926
- */
134927
- fireItemPropertyChanged(
134928
- /**
134929
- * Parameters to pass along with the event
134930
- */
134931
- mParameters?: TabContainerItem$ItemPropertyChangedEventParameters
134932
- ): this;
134933
134787
  /**
134934
134788
  * Gets current value of property {@link #getAdditionalText additionalText}.
134935
134789
  *
@@ -135221,13 +135075,6 @@ declare module "sap/m/TabContainerItem" {
135221
135075
  * The content displayed for this item.
135222
135076
  */
135223
135077
  content?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
135224
-
135225
- /**
135226
- * Sends information that some of the properties have changed.
135227
- */
135228
- itemPropertyChanged?: (
135229
- oEvent: TabContainerItem$ItemPropertyChangedEvent
135230
- ) => void;
135231
135078
  }
135232
135079
 
135233
135080
  /**
@@ -137529,21 +137376,20 @@ declare module "sap/m/table/columnmenu/ItemBase" {
137529
137376
  }
137530
137377
 
137531
137378
  declare module "sap/m/table/columnmenu/Menu" {
137532
- import { default as Control, $ControlSettings } from "sap/ui/core/Control";
137533
-
137534
- import { IColumnHeaderMenu, aria } from "sap/ui/core/library";
137379
+ import {
137380
+ default as MenuBase,
137381
+ $MenuBaseSettings,
137382
+ } from "sap/m/table/columnmenu/MenuBase";
137535
137383
 
137536
137384
  import ItemBase from "sap/m/table/columnmenu/ItemBase";
137537
137385
 
137538
137386
  import QuickActionBase from "sap/m/table/columnmenu/QuickActionBase";
137539
137387
 
137540
- import Event from "sap/ui/base/Event";
137541
-
137542
137388
  import ElementMetadata from "sap/ui/core/ElementMetadata";
137543
137389
 
137544
- import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
137390
+ import Control from "sap/ui/core/Control";
137545
137391
 
137546
- import UI5Element from "sap/ui/core/Element";
137392
+ import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
137547
137393
 
137548
137394
  /**
137549
137395
  * The `Menu` control is a popover, intended to be used by a table. It serves as an entry point for the
@@ -137558,8 +137404,7 @@ declare module "sap/m/table/columnmenu/Menu" {
137558
137404
  *
137559
137405
  * @since 1.110
137560
137406
  */
137561
- export default class Menu extends Control implements IColumnHeaderMenu {
137562
- __implements__sap_ui_core_IColumnHeaderMenu: boolean;
137407
+ export default class Menu extends MenuBase {
137563
137408
  /**
137564
137409
  * Constructor for a new `Menu`.
137565
137410
  *
@@ -137595,7 +137440,7 @@ declare module "sap/m/table/columnmenu/Menu" {
137595
137440
  * Creates a new subclass of class sap.m.table.columnmenu.Menu with name `sClassName` and enriches it with
137596
137441
  * the information contained in `oClassInfo`.
137597
137442
  *
137598
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
137443
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.table.columnmenu.MenuBase.extend}.
137599
137444
  *
137600
137445
  *
137601
137446
  * @returns Created class / constructor function
@@ -137646,106 +137491,6 @@ declare module "sap/m/table/columnmenu/Menu" {
137646
137491
  */
137647
137492
  oQuickAction: QuickActionBase
137648
137493
  ): this;
137649
- /**
137650
- * Attaches event handler `fnFunction` to the {@link #event:afterClose afterClose} event of this `sap.m.table.columnmenu.Menu`.
137651
- *
137652
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
137653
- * otherwise it will be bound to this `sap.m.table.columnmenu.Menu` itself.
137654
- *
137655
- * Fires after the column menu is closed
137656
- *
137657
- * @since 1.112
137658
- *
137659
- * @returns Reference to `this` in order to allow method chaining
137660
- */
137661
- attachAfterClose(
137662
- /**
137663
- * An application-specific payload object that will be passed to the event handler along with the event
137664
- * object when firing the event
137665
- */
137666
- oData: object,
137667
- /**
137668
- * The function to be called when the event occurs
137669
- */
137670
- fnFunction: (p1: Event) => void,
137671
- /**
137672
- * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.Menu` itself
137673
- */
137674
- oListener?: object
137675
- ): this;
137676
- /**
137677
- * Attaches event handler `fnFunction` to the {@link #event:afterClose afterClose} event of this `sap.m.table.columnmenu.Menu`.
137678
- *
137679
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
137680
- * otherwise it will be bound to this `sap.m.table.columnmenu.Menu` itself.
137681
- *
137682
- * Fires after the column menu is closed
137683
- *
137684
- * @since 1.112
137685
- *
137686
- * @returns Reference to `this` in order to allow method chaining
137687
- */
137688
- attachAfterClose(
137689
- /**
137690
- * The function to be called when the event occurs
137691
- */
137692
- fnFunction: (p1: Event) => void,
137693
- /**
137694
- * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.Menu` itself
137695
- */
137696
- oListener?: object
137697
- ): this;
137698
- /**
137699
- * Attaches event handler `fnFunction` to the {@link #event:beforeOpen beforeOpen} event of this `sap.m.table.columnmenu.Menu`.
137700
- *
137701
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
137702
- * otherwise it will be bound to this `sap.m.table.columnmenu.Menu` itself.
137703
- *
137704
- * Fired before the column menu is opened
137705
- *
137706
- *
137707
- * @returns Reference to `this` in order to allow method chaining
137708
- */
137709
- attachBeforeOpen(
137710
- /**
137711
- * An application-specific payload object that will be passed to the event handler along with the event
137712
- * object when firing the event
137713
- */
137714
- oData: object,
137715
- /**
137716
- * The function to be called when the event occurs
137717
- */
137718
- fnFunction: (p1: Menu$BeforeOpenEvent) => void,
137719
- /**
137720
- * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.Menu` itself
137721
- */
137722
- oListener?: object
137723
- ): this;
137724
- /**
137725
- * Attaches event handler `fnFunction` to the {@link #event:beforeOpen beforeOpen} event of this `sap.m.table.columnmenu.Menu`.
137726
- *
137727
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
137728
- * otherwise it will be bound to this `sap.m.table.columnmenu.Menu` itself.
137729
- *
137730
- * Fired before the column menu is opened
137731
- *
137732
- *
137733
- * @returns Reference to `this` in order to allow method chaining
137734
- */
137735
- attachBeforeOpen(
137736
- /**
137737
- * The function to be called when the event occurs
137738
- */
137739
- fnFunction: (p1: Menu$BeforeOpenEvent) => void,
137740
- /**
137741
- * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.Menu` itself
137742
- */
137743
- oListener?: object
137744
- ): this;
137745
- /**
137746
- * Closes the popover.
137747
- */
137748
- close(): void;
137749
137494
  /**
137750
137495
  * Destroys all the items in the aggregation {@link #getItems items}.
137751
137496
  *
@@ -137760,81 +137505,6 @@ declare module "sap/m/table/columnmenu/Menu" {
137760
137505
  * @returns Reference to `this` in order to allow method chaining
137761
137506
  */
137762
137507
  destroyQuickActions(): this;
137763
- /**
137764
- * Detaches event handler `fnFunction` from the {@link #event:afterClose afterClose} event of this `sap.m.table.columnmenu.Menu`.
137765
- *
137766
- * The passed function and listener object must match the ones used for event registration.
137767
- *
137768
- * @since 1.112
137769
- *
137770
- * @returns Reference to `this` in order to allow method chaining
137771
- */
137772
- detachAfterClose(
137773
- /**
137774
- * The function to be called, when the event occurs
137775
- */
137776
- fnFunction: (p1: Event) => void,
137777
- /**
137778
- * Context object on which the given function had to be called
137779
- */
137780
- oListener?: object
137781
- ): this;
137782
- /**
137783
- * Detaches event handler `fnFunction` from the {@link #event:beforeOpen beforeOpen} event of this `sap.m.table.columnmenu.Menu`.
137784
- *
137785
- * The passed function and listener object must match the ones used for event registration.
137786
- *
137787
- *
137788
- * @returns Reference to `this` in order to allow method chaining
137789
- */
137790
- detachBeforeOpen(
137791
- /**
137792
- * The function to be called, when the event occurs
137793
- */
137794
- fnFunction: (p1: Menu$BeforeOpenEvent) => void,
137795
- /**
137796
- * Context object on which the given function had to be called
137797
- */
137798
- oListener?: object
137799
- ): this;
137800
- /**
137801
- * Fires event {@link #event:afterClose afterClose} to attached listeners.
137802
- *
137803
- * @since 1.112
137804
- * @ui5-protected Do not call from applications (only from related classes in the framework)
137805
- *
137806
- * @returns Reference to `this` in order to allow method chaining
137807
- */
137808
- fireAfterClose(
137809
- /**
137810
- * Parameters to pass along with the event
137811
- */
137812
- mParameters?: object
137813
- ): this;
137814
- /**
137815
- * Fires event {@link #event:beforeOpen beforeOpen} to attached listeners.
137816
- *
137817
- * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
137818
- * event object. The return value of this method indicates whether the default action should be executed.
137819
- *
137820
- * @ui5-protected Do not call from applications (only from related classes in the framework)
137821
- *
137822
- * @returns Whether or not to prevent the default action
137823
- */
137824
- fireBeforeOpen(
137825
- /**
137826
- * Parameters to pass along with the event
137827
- */
137828
- mParameters?: Menu$BeforeOpenEventParameters
137829
- ): boolean;
137830
- /**
137831
- * Returns the sap.ui.core.aria.HasPopup<\code> type of the menu.
137832
- *
137833
- * @since 1.98.0
137834
- *
137835
- * @returns `sap.ui.core.aria.HasPopup` type of the menu
137836
- */
137837
- getAriaHasPopupType(): aria.HasPopup | keyof typeof aria.HasPopup;
137838
137508
  /**
137839
137509
  * Gets content of aggregation {@link #getItems items}.
137840
137510
  *
@@ -137968,7 +137638,7 @@ declare module "sap/m/table/columnmenu/Menu" {
137968
137638
  /**
137969
137639
  * Describes the settings that can be provided to the Menu constructor.
137970
137640
  */
137971
- export interface $MenuSettings extends $ControlSettings {
137641
+ export interface $MenuSettings extends $MenuBaseSettings {
137972
137642
  /**
137973
137643
  * Defines the quick actions of the column menu.
137974
137644
  */
@@ -137982,50 +137652,325 @@ declare module "sap/m/table/columnmenu/Menu" {
137982
137652
  * Defines the items of the column menu.
137983
137653
  */
137984
137654
  items?: ItemBase[] | ItemBase | AggregationBindingInfo | `{${string}}`;
137655
+ }
137656
+ }
137657
+
137658
+ declare module "sap/m/table/columnmenu/MenuBase" {
137659
+ import { default as Control, $ControlSettings } from "sap/ui/core/Control";
137660
+
137661
+ import { IColumnHeaderMenu, aria } from "sap/ui/core/library";
137985
137662
 
137663
+ import Event from "sap/ui/base/Event";
137664
+
137665
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
137666
+
137667
+ import UI5Element from "sap/ui/core/Element";
137668
+
137669
+ /**
137670
+ * This control serves as base class for column menus. It implements the {@link sap.m.table.IColumnHeaderMenu }
137671
+ * interface.
137672
+ *
137673
+ * @since 1.126
137674
+ */
137675
+ export default abstract class MenuBase
137676
+ extends Control
137677
+ implements IColumnHeaderMenu
137678
+ {
137679
+ __implements__sap_ui_core_IColumnHeaderMenu: boolean;
137986
137680
  /**
137987
- * Fired before the column menu is opened
137681
+ * Constructor for a new `MenuBase`.
137682
+ *
137683
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
137684
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
137685
+ * of the syntax of the settings object.
137988
137686
  */
137989
- beforeOpen?: (oEvent: Menu$BeforeOpenEvent) => void;
137687
+ constructor(
137688
+ /**
137689
+ * Initial settings for the new control
137690
+ */
137691
+ mSettings?: $MenuBaseSettings
137692
+ );
137693
+ /**
137694
+ * Constructor for a new `MenuBase`.
137695
+ *
137696
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
137697
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
137698
+ * of the syntax of the settings object.
137699
+ */
137700
+ constructor(
137701
+ /**
137702
+ * ID for the new control, generated automatically if no ID is given
137703
+ */
137704
+ sId?: string,
137705
+ /**
137706
+ * Initial settings for the new control
137707
+ */
137708
+ mSettings?: $MenuBaseSettings
137709
+ );
137990
137710
 
137991
137711
  /**
137992
- * Fires after the column menu is closed
137712
+ * Creates a new subclass of class sap.m.table.columnmenu.MenuBase with name `sClassName` and enriches it
137713
+ * with the information contained in `oClassInfo`.
137714
+ *
137715
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
137716
+ *
137717
+ *
137718
+ * @returns Created class / constructor function
137719
+ */
137720
+ static extend<T extends Record<string, unknown>>(
137721
+ /**
137722
+ * Name of the class being created
137723
+ */
137724
+ sClassName: string,
137725
+ /**
137726
+ * Object literal with information about the class
137727
+ */
137728
+ oClassInfo?: sap.ClassInfo<T, MenuBase>,
137729
+ /**
137730
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
137731
+ * used by this class
137732
+ */
137733
+ FNMetaImpl?: Function
137734
+ ): Function;
137735
+ /**
137736
+ * Returns a metadata object for class sap.m.table.columnmenu.MenuBase.
137737
+ *
137738
+ *
137739
+ * @returns Metadata object describing this class
137740
+ */
137741
+ static getMetadata(): ElementMetadata;
137742
+ /**
137743
+ * Attaches event handler `fnFunction` to the {@link #event:afterClose afterClose} event of this `sap.m.table.columnmenu.MenuBase`.
137744
+ *
137745
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
137746
+ * otherwise it will be bound to this `sap.m.table.columnmenu.MenuBase` itself.
137747
+ *
137748
+ * Fired after the column menu has been closed.
137749
+ *
137750
+ *
137751
+ * @returns Reference to `this` in order to allow method chaining
137752
+ */
137753
+ attachAfterClose(
137754
+ /**
137755
+ * An application-specific payload object that will be passed to the event handler along with the event
137756
+ * object when firing the event
137757
+ */
137758
+ oData: object,
137759
+ /**
137760
+ * The function to be called when the event occurs
137761
+ */
137762
+ fnFunction: (p1: Event) => void,
137763
+ /**
137764
+ * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.MenuBase` itself
137765
+ */
137766
+ oListener?: object
137767
+ ): this;
137768
+ /**
137769
+ * Attaches event handler `fnFunction` to the {@link #event:afterClose afterClose} event of this `sap.m.table.columnmenu.MenuBase`.
137770
+ *
137771
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
137772
+ * otherwise it will be bound to this `sap.m.table.columnmenu.MenuBase` itself.
137773
+ *
137774
+ * Fired after the column menu has been closed.
137775
+ *
137776
+ *
137777
+ * @returns Reference to `this` in order to allow method chaining
137778
+ */
137779
+ attachAfterClose(
137780
+ /**
137781
+ * The function to be called when the event occurs
137782
+ */
137783
+ fnFunction: (p1: Event) => void,
137784
+ /**
137785
+ * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.MenuBase` itself
137786
+ */
137787
+ oListener?: object
137788
+ ): this;
137789
+ /**
137790
+ * Attaches event handler `fnFunction` to the {@link #event:beforeOpen beforeOpen} event of this `sap.m.table.columnmenu.MenuBase`.
137791
+ *
137792
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
137793
+ * otherwise it will be bound to this `sap.m.table.columnmenu.MenuBase` itself.
137794
+ *
137795
+ * Fired before the column menu is opened.
137796
+ *
137797
+ *
137798
+ * @returns Reference to `this` in order to allow method chaining
137799
+ */
137800
+ attachBeforeOpen(
137801
+ /**
137802
+ * An application-specific payload object that will be passed to the event handler along with the event
137803
+ * object when firing the event
137804
+ */
137805
+ oData: object,
137806
+ /**
137807
+ * The function to be called when the event occurs
137808
+ */
137809
+ fnFunction: (p1: MenuBase$BeforeOpenEvent) => void,
137810
+ /**
137811
+ * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.MenuBase` itself
137812
+ */
137813
+ oListener?: object
137814
+ ): this;
137815
+ /**
137816
+ * Attaches event handler `fnFunction` to the {@link #event:beforeOpen beforeOpen} event of this `sap.m.table.columnmenu.MenuBase`.
137817
+ *
137818
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
137819
+ * otherwise it will be bound to this `sap.m.table.columnmenu.MenuBase` itself.
137820
+ *
137821
+ * Fired before the column menu is opened.
137822
+ *
137823
+ *
137824
+ * @returns Reference to `this` in order to allow method chaining
137825
+ */
137826
+ attachBeforeOpen(
137827
+ /**
137828
+ * The function to be called when the event occurs
137829
+ */
137830
+ fnFunction: (p1: MenuBase$BeforeOpenEvent) => void,
137831
+ /**
137832
+ * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.MenuBase` itself
137833
+ */
137834
+ oListener?: object
137835
+ ): this;
137836
+ /**
137837
+ * Closes the menu.
137838
+ */
137839
+ close(): void;
137840
+ /**
137841
+ * Detaches event handler `fnFunction` from the {@link #event:afterClose afterClose} event of this `sap.m.table.columnmenu.MenuBase`.
137842
+ *
137843
+ * The passed function and listener object must match the ones used for event registration.
137844
+ *
137845
+ *
137846
+ * @returns Reference to `this` in order to allow method chaining
137847
+ */
137848
+ detachAfterClose(
137849
+ /**
137850
+ * The function to be called, when the event occurs
137851
+ */
137852
+ fnFunction: (p1: Event) => void,
137853
+ /**
137854
+ * Context object on which the given function had to be called
137855
+ */
137856
+ oListener?: object
137857
+ ): this;
137858
+ /**
137859
+ * Detaches event handler `fnFunction` from the {@link #event:beforeOpen beforeOpen} event of this `sap.m.table.columnmenu.MenuBase`.
137860
+ *
137861
+ * The passed function and listener object must match the ones used for event registration.
137862
+ *
137863
+ *
137864
+ * @returns Reference to `this` in order to allow method chaining
137865
+ */
137866
+ detachBeforeOpen(
137867
+ /**
137868
+ * The function to be called, when the event occurs
137869
+ */
137870
+ fnFunction: (p1: MenuBase$BeforeOpenEvent) => void,
137871
+ /**
137872
+ * Context object on which the given function had to be called
137873
+ */
137874
+ oListener?: object
137875
+ ): this;
137876
+ /**
137877
+ * Fires event {@link #event:afterClose afterClose} to attached listeners.
137878
+ *
137879
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
137880
+ *
137881
+ * @returns Reference to `this` in order to allow method chaining
137882
+ */
137883
+ fireAfterClose(
137884
+ /**
137885
+ * Parameters to pass along with the event
137886
+ */
137887
+ mParameters?: object
137888
+ ): this;
137889
+ /**
137890
+ * Fires event {@link #event:beforeOpen beforeOpen} to attached listeners.
137891
+ *
137892
+ * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
137893
+ * event object. The return value of this method indicates whether the default action should be executed.
137894
+ *
137895
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
137896
+ *
137897
+ * @returns Whether or not to prevent the default action
137898
+ */
137899
+ fireBeforeOpen(
137900
+ /**
137901
+ * Parameters to pass along with the event
137902
+ */
137903
+ mParameters?: MenuBase$BeforeOpenEventParameters
137904
+ ): boolean;
137905
+ /**
137906
+ * Returns the `sap.ui.core.aria.HasPopup` type of the menu.
137907
+ *
137908
+ *
137909
+ * @returns `sap.ui.core.aria.HasPopup` type of the menu
137910
+ */
137911
+ getAriaHasPopupType(): aria.HasPopup | keyof typeof aria.HasPopup;
137912
+ /**
137913
+ * Determines whether the menu is open.
137914
+ *
137993
137915
  *
137994
- * @since 1.112
137916
+ * @returns Whether the menu is open
137917
+ */
137918
+ isOpen(): boolean;
137919
+ /**
137920
+ * Opens the popover at the specified target.
137921
+ */
137922
+ openBy(
137923
+ /**
137924
+ * This is the control or HTMLElement where the popover is placed
137925
+ */
137926
+ oAnchor: UI5Element | HTMLElement
137927
+ ): void;
137928
+ }
137929
+ /**
137930
+ * Describes the settings that can be provided to the MenuBase constructor.
137931
+ */
137932
+ export interface $MenuBaseSettings extends $ControlSettings {
137933
+ /**
137934
+ * Fired before the column menu is opened.
137935
+ */
137936
+ beforeOpen?: (oEvent: MenuBase$BeforeOpenEvent) => void;
137937
+
137938
+ /**
137939
+ * Fired after the column menu has been closed.
137995
137940
  */
137996
137941
  afterClose?: (oEvent: Event) => void;
137997
137942
  }
137998
137943
 
137999
137944
  /**
138000
- * Parameters of the Menu#afterClose event.
137945
+ * Parameters of the MenuBase#afterClose event.
138001
137946
  */
138002
- export interface Menu$AfterCloseEventParameters {}
137947
+ export interface MenuBase$AfterCloseEventParameters {}
138003
137948
 
138004
137949
  /**
138005
- * Event object of the Menu#afterClose event.
137950
+ * Event object of the MenuBase#afterClose event.
138006
137951
  */
138007
- export type Menu$AfterCloseEvent = Event<
138008
- Menu$AfterCloseEventParameters,
138009
- Menu
137952
+ export type MenuBase$AfterCloseEvent = Event<
137953
+ MenuBase$AfterCloseEventParameters,
137954
+ MenuBase
138010
137955
  >;
138011
137956
 
138012
137957
  /**
138013
- * Parameters of the Menu#beforeOpen event.
137958
+ * Parameters of the MenuBase#beforeOpen event.
138014
137959
  */
138015
- export interface Menu$BeforeOpenEventParameters {
137960
+ export interface MenuBase$BeforeOpenEventParameters {
138016
137961
  /**
138017
- * The element for which the menu is opened. If it is an `HTMLElement`, the closest control is passed for
138018
- * this event (if it exists).
137962
+ * The element for which the menu is opened. If it is an `HTMLElement`, the nearest {@link sap.ui.core.Element }
137963
+ * that wraps the given DOM element is passed for this event (if it exists).
138019
137964
  */
138020
137965
  openBy?: UI5Element;
138021
137966
  }
138022
137967
 
138023
137968
  /**
138024
- * Event object of the Menu#beforeOpen event.
137969
+ * Event object of the MenuBase#beforeOpen event.
138025
137970
  */
138026
- export type Menu$BeforeOpenEvent = Event<
138027
- Menu$BeforeOpenEventParameters,
138028
- Menu
137971
+ export type MenuBase$BeforeOpenEvent = Event<
137972
+ MenuBase$BeforeOpenEventParameters,
137973
+ MenuBase
138029
137974
  >;
138030
137975
  }
138031
137976
 
@@ -142437,7 +142382,7 @@ declare module "sap/m/TableSelectDialog" {
142437
142382
  * visible upon opening the dialog, these contexts are not loaded. Therefore, these items will not be included
142438
142383
  * in the selectedContexts array unless they are displayed at least once.
142439
142384
  */
142440
- selectedContexts?: string;
142385
+ selectedContexts?: string[];
142441
142386
  }
142442
142387
 
142443
142388
  /**
@@ -153900,6 +153845,20 @@ declare module "sap/m/upload/UploadItem" {
153900
153845
  * Header fields to be included in the header section of an XMLHttpRequest (XHR) request
153901
153846
  */
153902
153847
  getHeaderFields(): Item[];
153848
+ /**
153849
+ * Gets current value of property {@link #getIsTrustedSource isTrustedSource}.
153850
+ *
153851
+ * This property is used in the {@link sap.m.upload.FilePreviewDialog FilePreviewDialog} to determine if
153852
+ * the file is from a trusted source before displaying. This property must be set to true if the file is
153853
+ * from a trusted source.
153854
+ *
153855
+ * Default value is `false`.
153856
+ *
153857
+ * @since 1.125
153858
+ *
153859
+ * @returns Value of property `isTrustedSource`
153860
+ */
153861
+ getIsTrustedSource(): boolean;
153903
153862
  /**
153904
153863
  * Gets current value of property {@link #getMediaType mediaType}.
153905
153864
  *
@@ -154041,6 +154000,27 @@ declare module "sap/m/upload/UploadItem" {
154041
154000
  */
154042
154001
  fFileSize?: float
154043
154002
  ): this;
154003
+ /**
154004
+ * Sets a new value for property {@link #getIsTrustedSource isTrustedSource}.
154005
+ *
154006
+ * This property is used in the {@link sap.m.upload.FilePreviewDialog FilePreviewDialog} to determine if
154007
+ * the file is from a trusted source before displaying. This property must be set to true if the file is
154008
+ * from a trusted source.
154009
+ *
154010
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
154011
+ *
154012
+ * Default value is `false`.
154013
+ *
154014
+ * @since 1.125
154015
+ *
154016
+ * @returns Reference to `this` in order to allow method chaining
154017
+ */
154018
+ setIsTrustedSource(
154019
+ /**
154020
+ * New value for property `isTrustedSource`
154021
+ */
154022
+ bIsTrustedSource?: boolean
154023
+ ): this;
154044
154024
  /**
154045
154025
  * Sets a new value for property {@link #getMediaType mediaType}.
154046
154026
  *
@@ -154168,6 +154148,15 @@ declare module "sap/m/upload/UploadItem" {
154168
154148
  */
154169
154149
  fileSize?: float | PropertyBindingInfo | `{${string}}`;
154170
154150
 
154151
+ /**
154152
+ * This property is used in the {@link sap.m.upload.FilePreviewDialog FilePreviewDialog} to determine if
154153
+ * the file is from a trusted source before displaying. This property must be set to true if the file is
154154
+ * from a trusted source.
154155
+ *
154156
+ * @since 1.125
154157
+ */
154158
+ isTrustedSource?: boolean | PropertyBindingInfo | `{${string}}`;
154159
+
154171
154160
  /**
154172
154161
  * Header fields to be included in the header section of an XMLHttpRequest (XHR) request
154173
154162
  */
@@ -154277,6 +154266,19 @@ declare module "sap/m/upload/UploadItemConfiguration" {
154277
154266
  * @returns Value of property `fileSizePath`
154278
154267
  */
154279
154268
  getFileSizePath(): string;
154269
+ /**
154270
+ * Gets current value of property {@link #getIsTrustedSourcePath isTrustedSourcePath}.
154271
+ *
154272
+ * Specifies the path in the model to confirm if the file is from a trusted source. This is used to determine
154273
+ * if the file is uploaded from a trusted source. If the file is uploaded from a trusted source, the file
154274
+ * can be previewed. Set this property to the path in the model that determines if the file is uploaded
154275
+ * from a trusted source.
154276
+ *
154277
+ * @since 1.125
154278
+ *
154279
+ * @returns Value of property `isTrustedSourcePath`
154280
+ */
154281
+ getIsTrustedSourcePath(): string;
154280
154282
  /**
154281
154283
  * Gets current value of property {@link #getMediaTypePath mediaTypePath}.
154282
154284
  *
@@ -154345,6 +154347,26 @@ declare module "sap/m/upload/UploadItemConfiguration" {
154345
154347
  */
154346
154348
  sFileSizePath?: string
154347
154349
  ): this;
154350
+ /**
154351
+ * Sets a new value for property {@link #getIsTrustedSourcePath isTrustedSourcePath}.
154352
+ *
154353
+ * Specifies the path in the model to confirm if the file is from a trusted source. This is used to determine
154354
+ * if the file is uploaded from a trusted source. If the file is uploaded from a trusted source, the file
154355
+ * can be previewed. Set this property to the path in the model that determines if the file is uploaded
154356
+ * from a trusted source.
154357
+ *
154358
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
154359
+ *
154360
+ * @since 1.125
154361
+ *
154362
+ * @returns Reference to `this` in order to allow method chaining
154363
+ */
154364
+ setIsTrustedSourcePath(
154365
+ /**
154366
+ * New value for property `isTrustedSourcePath`
154367
+ */
154368
+ sIsTrustedSourcePath?: string
154369
+ ): this;
154348
154370
  /**
154349
154371
  * Sets a new value for property {@link #getMediaTypePath mediaTypePath}.
154350
154372
  *
@@ -154445,6 +154467,16 @@ declare module "sap/m/upload/UploadItemConfiguration" {
154445
154467
  * Specifies path in the model to the file size.
154446
154468
  */
154447
154469
  fileSizePath?: string | PropertyBindingInfo;
154470
+
154471
+ /**
154472
+ * Specifies the path in the model to confirm if the file is from a trusted source. This is used to determine
154473
+ * if the file is uploaded from a trusted source. If the file is uploaded from a trusted source, the file
154474
+ * can be previewed. Set this property to the path in the model that determines if the file is uploaded
154475
+ * from a trusted source.
154476
+ *
154477
+ * @since 1.125
154478
+ */
154479
+ isTrustedSourcePath?: string | PropertyBindingInfo;
154448
154480
  }
154449
154481
  }
154450
154482
 
@@ -160859,7 +160891,7 @@ declare module "sap/m/upload/UploadSetwithTable" {
160859
160891
  /**
160860
160892
  * Item info object sent as paramter to {@link sap.m.upload.UploadSetwithTable.itemValidationHandler itemValidationHandler callback}
160861
160893
  *
160862
- * @deprecated (since 1.124)
160894
+ * @deprecated (since 1.124) - replaced by {@link sap.m.plugins.UploadSetwithTable.ItemInfo}
160863
160895
  */
160864
160896
  export type ItemInfo = {
160865
160897
  /**
@@ -160880,7 +160912,7 @@ declare module "sap/m/upload/UploadSetwithTable" {
160880
160912
  * Callback function to perform additional validations or configurations for the item queued up for upload
160881
160913
  * and to finally trigger the upload.
160882
160914
  *
160883
- * @deprecated (since 1.124)
160915
+ * @deprecated (since 1.124) - replaced by {@link sap.m.plugins.UploadSetwithTable.itemValidationHandler}
160884
160916
  */
160885
160917
  export type itemValidationHandler = (
160886
160918
  oItemInfo: ItemInfo
@@ -164153,7 +164185,7 @@ declare module "sap/m/UploadCollectionItem" {
164153
164185
  * Defines a structure of the element of the 'items' aggregation.
164154
164186
  *
164155
164187
  * @since 1.26.0
164156
- * @deprecated (since 1.88)
164188
+ * @deprecated (since 1.88) - replaced by {@link sap.m.upload.UploadSetItem}.
164157
164189
  */
164158
164190
  export default class UploadCollectionItem extends UI5Element {
164159
164191
  /**
@@ -165156,7 +165188,7 @@ declare module "sap/m/UploadCollectionItem" {
165156
165188
  /**
165157
165189
  * Describes the settings that can be provided to the UploadCollectionItem constructor.
165158
165190
  *
165159
- * @deprecated (since 1.88)
165191
+ * @deprecated (since 1.88) - replaced by {@link sap.m.upload.UploadSetItem}.
165160
165192
  */
165161
165193
  export interface $UploadCollectionItemSettings extends $ElementSettings {
165162
165194
  /**
@@ -165349,7 +165381,7 @@ declare module "sap/m/UploadCollectionParameter" {
165349
165381
  /**
165350
165382
  * Defines a structure of the element of the 'parameters' aggregation.
165351
165383
  *
165352
- * @deprecated (since 1.88)
165384
+ * @deprecated (since 1.88) - the concept has been discarded.
165353
165385
  */
165354
165386
  export default class UploadCollectionParameter extends UI5Element {
165355
165387
  /**
@@ -165472,7 +165504,7 @@ declare module "sap/m/UploadCollectionParameter" {
165472
165504
  /**
165473
165505
  * Describes the settings that can be provided to the UploadCollectionParameter constructor.
165474
165506
  *
165475
- * @deprecated (since 1.88)
165507
+ * @deprecated (since 1.88) - the concept has been discarded.
165476
165508
  */
165477
165509
  export interface $UploadCollectionParameterSettings extends $ElementSettings {
165478
165510
  /**
@@ -165501,7 +165533,7 @@ declare module "sap/m/UploadCollectionToolbarPlaceholder" {
165501
165533
  * the toolbar and will be placed by the application.
165502
165534
  *
165503
165535
  * @since 1.34.0
165504
- * @deprecated (since 1.88)
165536
+ * @deprecated (since 1.88) - replaced by {@link sap.m.upload.UploadSetToolbarPlaceholder}.
165505
165537
  */
165506
165538
  export default class UploadCollectionToolbarPlaceholder extends Control {
165507
165539
  /**
@@ -165576,7 +165608,7 @@ declare module "sap/m/UploadCollectionToolbarPlaceholder" {
165576
165608
  /**
165577
165609
  * Describes the settings that can be provided to the UploadCollectionToolbarPlaceholder constructor.
165578
165610
  *
165579
- * @deprecated (since 1.88)
165611
+ * @deprecated (since 1.88) - replaced by {@link sap.m.upload.UploadSetToolbarPlaceholder}.
165580
165612
  */
165581
165613
  export interface $UploadCollectionToolbarPlaceholderSettings
165582
165614
  extends $ControlSettings {}
@@ -167942,8 +167974,6 @@ declare module "sap/m/ViewSettingsFilterItem" {
167942
167974
  $ViewSettingsItemSettings,
167943
167975
  } from "sap/m/ViewSettingsItem";
167944
167976
 
167945
- import Event from "sap/ui/base/Event";
167946
-
167947
167977
  import {
167948
167978
  AggregationBindingInfo,
167949
167979
  PropertyBindingInfo,
@@ -167951,6 +167981,8 @@ declare module "sap/m/ViewSettingsFilterItem" {
167951
167981
 
167952
167982
  import ElementMetadata from "sap/ui/core/ElementMetadata";
167953
167983
 
167984
+ import Event from "sap/ui/base/Event";
167985
+
167954
167986
  /**
167955
167987
  * A ViewSettingsFilterItem control is used for modelling filter behaviour in the ViewSettingsDialog. It
167956
167988
  * is derived from a core Item, but does not support the base class properties like textDirection and enabled.
@@ -168033,55 +168065,6 @@ declare module "sap/m/ViewSettingsFilterItem" {
168033
168065
  */
168034
168066
  oItem: ViewSettingsItem
168035
168067
  ): this;
168036
- /**
168037
- * Attaches event handler `fnFunction` to the {@link #event:filterDetailItemsAggregationChange filterDetailItemsAggregationChange }
168038
- * event of this `sap.m.ViewSettingsFilterItem`.
168039
- *
168040
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
168041
- * otherwise it will be bound to this `sap.m.ViewSettingsFilterItem` itself.
168042
- *
168043
- * Let the outside world know that the filter detail aggregation was changed.
168044
- *
168045
- *
168046
- * @returns Reference to `this` in order to allow method chaining
168047
- */
168048
- attachFilterDetailItemsAggregationChange(
168049
- /**
168050
- * An application-specific payload object that will be passed to the event handler along with the event
168051
- * object when firing the event
168052
- */
168053
- oData: object,
168054
- /**
168055
- * The function to be called when the event occurs
168056
- */
168057
- fnFunction: (p1: Event) => void,
168058
- /**
168059
- * Context object to call the event handler with. Defaults to this `sap.m.ViewSettingsFilterItem` itself
168060
- */
168061
- oListener?: object
168062
- ): this;
168063
- /**
168064
- * Attaches event handler `fnFunction` to the {@link #event:filterDetailItemsAggregationChange filterDetailItemsAggregationChange }
168065
- * event of this `sap.m.ViewSettingsFilterItem`.
168066
- *
168067
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
168068
- * otherwise it will be bound to this `sap.m.ViewSettingsFilterItem` itself.
168069
- *
168070
- * Let the outside world know that the filter detail aggregation was changed.
168071
- *
168072
- *
168073
- * @returns Reference to `this` in order to allow method chaining
168074
- */
168075
- attachFilterDetailItemsAggregationChange(
168076
- /**
168077
- * The function to be called when the event occurs
168078
- */
168079
- fnFunction: (p1: Event) => void,
168080
- /**
168081
- * Context object to call the event handler with. Defaults to this `sap.m.ViewSettingsFilterItem` itself
168082
- */
168083
- oListener?: object
168084
- ): this;
168085
168068
  /**
168086
168069
  * Binds aggregation {@link #getItems items} to model data.
168087
168070
  *
@@ -168104,39 +168087,6 @@ declare module "sap/m/ViewSettingsFilterItem" {
168104
168087
  * @returns Reference to `this` in order to allow method chaining
168105
168088
  */
168106
168089
  destroyItems(): this;
168107
- /**
168108
- * Detaches event handler `fnFunction` from the {@link #event:filterDetailItemsAggregationChange filterDetailItemsAggregationChange }
168109
- * event of this `sap.m.ViewSettingsFilterItem`.
168110
- *
168111
- * The passed function and listener object must match the ones used for event registration.
168112
- *
168113
- *
168114
- * @returns Reference to `this` in order to allow method chaining
168115
- */
168116
- detachFilterDetailItemsAggregationChange(
168117
- /**
168118
- * The function to be called, when the event occurs
168119
- */
168120
- fnFunction: (p1: Event) => void,
168121
- /**
168122
- * Context object on which the given function had to be called
168123
- */
168124
- oListener?: object
168125
- ): this;
168126
- /**
168127
- * Fires event {@link #event:filterDetailItemsAggregationChange filterDetailItemsAggregationChange} to attached
168128
- * listeners.
168129
- *
168130
- * @ui5-protected Do not call from applications (only from related classes in the framework)
168131
- *
168132
- * @returns Reference to `this` in order to allow method chaining
168133
- */
168134
- fireFilterDetailItemsAggregationChange(
168135
- /**
168136
- * Parameters to pass along with the event
168137
- */
168138
- mParameters?: object
168139
- ): this;
168140
168090
  /**
168141
168091
  * Gets content of aggregation {@link #getItems items}.
168142
168092
  *
@@ -168252,11 +168202,6 @@ declare module "sap/m/ViewSettingsFilterItem" {
168252
168202
  | ViewSettingsItem
168253
168203
  | AggregationBindingInfo
168254
168204
  | `{${string}}`;
168255
-
168256
- /**
168257
- * Let the outside world know that the filter detail aggregation was changed.
168258
- */
168259
- filterDetailItemsAggregationChange?: (oEvent: Event) => void;
168260
168205
  }
168261
168206
 
168262
168207
  /**
@@ -168354,87 +168299,6 @@ declare module "sap/m/ViewSettingsItem" {
168354
168299
  * @returns Metadata object describing this class
168355
168300
  */
168356
168301
  static getMetadata(): ElementMetadata;
168357
- /**
168358
- * Attaches event handler `fnFunction` to the {@link #event:itemPropertyChanged itemPropertyChanged} event
168359
- * of this `sap.m.ViewSettingsItem`.
168360
- *
168361
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
168362
- * otherwise it will be bound to this `sap.m.ViewSettingsItem` itself.
168363
- *
168364
- * Let the outside world know that some of its properties has changed.
168365
- *
168366
- *
168367
- * @returns Reference to `this` in order to allow method chaining
168368
- */
168369
- attachItemPropertyChanged(
168370
- /**
168371
- * An application-specific payload object that will be passed to the event handler along with the event
168372
- * object when firing the event
168373
- */
168374
- oData: object,
168375
- /**
168376
- * The function to be called when the event occurs
168377
- */
168378
- fnFunction: (p1: ViewSettingsItem$ItemPropertyChangedEvent) => void,
168379
- /**
168380
- * Context object to call the event handler with. Defaults to this `sap.m.ViewSettingsItem` itself
168381
- */
168382
- oListener?: object
168383
- ): this;
168384
- /**
168385
- * Attaches event handler `fnFunction` to the {@link #event:itemPropertyChanged itemPropertyChanged} event
168386
- * of this `sap.m.ViewSettingsItem`.
168387
- *
168388
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
168389
- * otherwise it will be bound to this `sap.m.ViewSettingsItem` itself.
168390
- *
168391
- * Let the outside world know that some of its properties has changed.
168392
- *
168393
- *
168394
- * @returns Reference to `this` in order to allow method chaining
168395
- */
168396
- attachItemPropertyChanged(
168397
- /**
168398
- * The function to be called when the event occurs
168399
- */
168400
- fnFunction: (p1: ViewSettingsItem$ItemPropertyChangedEvent) => void,
168401
- /**
168402
- * Context object to call the event handler with. Defaults to this `sap.m.ViewSettingsItem` itself
168403
- */
168404
- oListener?: object
168405
- ): this;
168406
- /**
168407
- * Detaches event handler `fnFunction` from the {@link #event:itemPropertyChanged itemPropertyChanged} event
168408
- * of this `sap.m.ViewSettingsItem`.
168409
- *
168410
- * The passed function and listener object must match the ones used for event registration.
168411
- *
168412
- *
168413
- * @returns Reference to `this` in order to allow method chaining
168414
- */
168415
- detachItemPropertyChanged(
168416
- /**
168417
- * The function to be called, when the event occurs
168418
- */
168419
- fnFunction: (p1: ViewSettingsItem$ItemPropertyChangedEvent) => void,
168420
- /**
168421
- * Context object on which the given function had to be called
168422
- */
168423
- oListener?: object
168424
- ): this;
168425
- /**
168426
- * Fires event {@link #event:itemPropertyChanged itemPropertyChanged} to attached listeners.
168427
- *
168428
- * @ui5-protected Do not call from applications (only from related classes in the framework)
168429
- *
168430
- * @returns Reference to `this` in order to allow method chaining
168431
- */
168432
- fireItemPropertyChanged(
168433
- /**
168434
- * Parameters to pass along with the event
168435
- */
168436
- mParameters?: ViewSettingsItem$ItemPropertyChangedEventParameters
168437
- ): this;
168438
168302
  /**
168439
168303
  * Gets current value of property {@link #getSelected selected}.
168440
168304
  *
@@ -168514,13 +168378,6 @@ declare module "sap/m/ViewSettingsItem" {
168514
168378
  * @since 1.121.0
168515
168379
  */
168516
168380
  wrapping?: boolean | PropertyBindingInfo | `{${string}}`;
168517
-
168518
- /**
168519
- * Let the outside world know that some of its properties has changed.
168520
- */
168521
- itemPropertyChanged?: (
168522
- oEvent: ViewSettingsItem$ItemPropertyChangedEvent
168523
- ) => void;
168524
168381
  }
168525
168382
 
168526
168383
  /**
@@ -170944,7 +170801,6 @@ declare namespace sap {
170944
170801
  /**
170945
170802
  * Adds some action to the aggregation {@link #getActions actions}.
170946
170803
  *
170947
- * @ui5-protected Do not call from applications (only from related classes in the framework)
170948
170804
  *
170949
170805
  * @returns Reference to `this` in order to allow method chaining
170950
170806
  */
@@ -170961,7 +170817,6 @@ declare namespace sap {
170961
170817
  *
170962
170818
  * Default value is `false`.
170963
170819
  *
170964
- * @ui5-protected Do not call from applications (only from related classes in the framework)
170965
170820
  *
170966
170821
  * @returns Value of property `enableNav`
170967
170822
  */
@@ -170969,7 +170824,6 @@ declare namespace sap {
170969
170824
  /**
170970
170825
  * Removes a action from the aggregation {@link #getActions actions}.
170971
170826
  *
170972
- * @ui5-protected Do not call from applications (only from related classes in the framework)
170973
170827
  *
170974
170828
  * @returns The removed action or `null`
170975
170829
  */
@@ -170988,7 +170842,6 @@ declare namespace sap {
170988
170842
  *
170989
170843
  * Default value is `false`.
170990
170844
  *
170991
- * @ui5-protected Do not call from applications (only from related classes in the framework)
170992
170845
  *
170993
170846
  * @returns Reference to `this` in order to allow method chaining
170994
170847
  */
@@ -171540,6 +171393,8 @@ declare namespace sap {
171540
171393
 
171541
171394
  "sap/m/table/columnmenu/Menu": undefined;
171542
171395
 
171396
+ "sap/m/table/columnmenu/MenuBase": undefined;
171397
+
171543
171398
  "sap/m/table/columnmenu/QuickAction": undefined;
171544
171399
 
171545
171400
  "sap/m/table/columnmenu/QuickActionBase": undefined;