@openui5/types 1.125.0 → 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.125.0
1
+ // For Library Version: 1.126.0
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -3309,6 +3309,18 @@ declare module "sap/m/library" {
3309
3309
  * Information Border Color
3310
3310
  */
3311
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",
3312
3324
  /**
3313
3325
  * Warning Background Color
3314
3326
  */
@@ -5359,6 +5371,8 @@ declare module "sap/m/ActionTile" {
5359
5371
  $GenericTileSettings,
5360
5372
  } from "sap/m/GenericTile";
5361
5373
 
5374
+ import { URI, ValueState } from "sap/ui/core/library";
5375
+
5362
5376
  import ElementMetadata from "sap/ui/core/ElementMetadata";
5363
5377
 
5364
5378
  import { Priority } from "sap/m/library";
@@ -5435,6 +5449,30 @@ declare module "sap/m/ActionTile" {
5435
5449
  * @returns Metadata object describing this class
5436
5450
  */
5437
5451
  static getMetadata(): ElementMetadata;
5452
+ /**
5453
+ * Gets current value of property {@link #getBadgeIcon badgeIcon}.
5454
+ *
5455
+ * Defines what type of icon is displayed as visual affordance for the icon frame badge.
5456
+ *
5457
+ * Default value is `empty string`.
5458
+ *
5459
+ * @experimental (since 1.124)
5460
+ *
5461
+ * @returns Value of property `badgeIcon`
5462
+ */
5463
+ getBadgeIcon(): URI;
5464
+ /**
5465
+ * Gets current value of property {@link #getBadgeValueState badgeValueState}.
5466
+ *
5467
+ * Visualizes the validation state of the icon frame badge, e.g. `Error`, `Warning`, `Success`, `Information`.
5468
+ *
5469
+ * Default value is `None`.
5470
+ *
5471
+ * @experimental (since 1.124)
5472
+ *
5473
+ * @returns Value of property `badgeValueState`
5474
+ */
5475
+ getBadgeValueState(): ValueState | keyof typeof ValueState;
5438
5476
  /**
5439
5477
  * Gets current value of property {@link #getEnableDynamicHeight enableDynamicHeight}.
5440
5478
  *
@@ -5481,6 +5519,30 @@ declare module "sap/m/ActionTile" {
5481
5519
  * @returns Value of property `priorityText`
5482
5520
  */
5483
5521
  getPriorityText(): string;
5522
+ /**
5523
+ * Sets the badgeIcon property of the ActionTile.
5524
+ *
5525
+ *
5526
+ * @returns The reference to the ActionTile instance.
5527
+ */
5528
+ setBadgeIcon(
5529
+ /**
5530
+ * The URI of the icon to be displayed as a badge.
5531
+ */
5532
+ sIcon: string
5533
+ ): ActionTile;
5534
+ /**
5535
+ * Sets the badgeValueState property of the ActionTile.
5536
+ *
5537
+ *
5538
+ * @returns The reference to the ActionTile instance.
5539
+ */
5540
+ setBadgeValueState(
5541
+ /**
5542
+ * The value state of the badge.
5543
+ */
5544
+ sValueState: ValueState | keyof typeof ValueState
5545
+ ): ActionTile;
5484
5546
  /**
5485
5547
  * Sets a new value for property {@link #getEnableDynamicHeight enableDynamicHeight}.
5486
5548
  *
@@ -5502,13 +5564,16 @@ declare module "sap/m/ActionTile" {
5502
5564
  ): this;
5503
5565
  /**
5504
5566
  * Sets the enableIconFrame property of the ActionTile.
5567
+ *
5568
+ *
5569
+ * @returns The reference to the ActionTile instance.
5505
5570
  */
5506
5571
  setEnableIconFrame(
5507
5572
  /**
5508
5573
  * Determines whether the icon frame should be enabled or not.
5509
5574
  */
5510
5575
  bValue: boolean
5511
- ): void;
5576
+ ): ActionTile;
5512
5577
  /**
5513
5578
  * Sets a new value for property {@link #getPriority priority}.
5514
5579
  *
@@ -5582,6 +5647,23 @@ declare module "sap/m/ActionTile" {
5582
5647
  * @experimental (since 1.124)
5583
5648
  */
5584
5649
  priorityText?: string | PropertyBindingInfo;
5650
+
5651
+ /**
5652
+ * Defines what type of icon is displayed as visual affordance for the icon frame badge.
5653
+ *
5654
+ * @experimental (since 1.124)
5655
+ */
5656
+ badgeIcon?: URI | PropertyBindingInfo | `{${string}}`;
5657
+
5658
+ /**
5659
+ * Visualizes the validation state of the icon frame badge, e.g. `Error`, `Warning`, `Success`, `Information`.
5660
+ *
5661
+ * @experimental (since 1.124)
5662
+ */
5663
+ badgeValueState?:
5664
+ | (ValueState | keyof typeof ValueState)
5665
+ | PropertyBindingInfo
5666
+ | `{${string}}`;
5585
5667
  }
5586
5668
  }
5587
5669
 
@@ -16869,19 +16951,6 @@ declare module "sap/m/ComboBoxBase" {
16869
16951
  * @returns The list instance object or `null`.
16870
16952
  */
16871
16953
  getList(): List | null;
16872
- /**
16873
- * Gets current value of property {@link #getOpen open}.
16874
- *
16875
- * Indicates whether the picker is opened.
16876
- *
16877
- * Default value is `false`.
16878
- *
16879
- * @deprecated (since 1.110) - Please check the `showItems` functionality if you need to open the picker
16880
- * programmatically.
16881
- *
16882
- * @returns Value of property `open`
16883
- */
16884
- getOpen(): boolean;
16885
16954
  /**
16886
16955
  * Gets the control's picker popup.
16887
16956
  *
@@ -17117,26 +17186,6 @@ declare module "sap/m/ComboBoxBase" {
17117
17186
  */
17118
17187
  fnFilter?: (p1: string, p2: Item) => boolean
17119
17188
  ): this;
17120
- /**
17121
- * Sets a new value for property {@link #getOpen open}.
17122
- *
17123
- * Indicates whether the picker is opened.
17124
- *
17125
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
17126
- *
17127
- * Default value is `false`.
17128
- *
17129
- * @deprecated (since 1.110) - Please check the `showItems` functionality if you need to open the picker
17130
- * programmatically.
17131
- *
17132
- * @returns Reference to `this` in order to allow method chaining
17133
- */
17134
- setOpen(
17135
- /**
17136
- * New value for property `open`
17137
- */
17138
- bOpen?: boolean
17139
- ): this;
17140
17189
  /**
17141
17190
  * Sets the property `_sPickerType`.
17142
17191
  *
@@ -17273,14 +17322,6 @@ declare module "sap/m/ComboBoxBase" {
17273
17322
  */
17274
17323
  showSecondaryValues?: boolean | PropertyBindingInfo | `{${string}}`;
17275
17324
 
17276
- /**
17277
- * Indicates whether the picker is opened.
17278
- *
17279
- * @deprecated (since 1.110) - Please check the `showItems` functionality if you need to open the picker
17280
- * programmatically.
17281
- */
17282
- open?: boolean | PropertyBindingInfo | `{${string}}`;
17283
-
17284
17325
  /**
17285
17326
  * Specifies whether clear icon is shown. Pressing the icon will clear input's value.
17286
17327
  *
@@ -25335,18 +25376,6 @@ declare module "sap/m/DynamicDateRange" {
25335
25376
  * Describes the settings that can be provided to the DynamicDateRange constructor.
25336
25377
  */
25337
25378
  export interface $DynamicDateRangeSettings extends $ControlSettings {
25338
- /**
25339
- * Defines the control value. The object has two properties 'operator' - a string, the key of a DynamicDateOption
25340
- * and 'values' - an array of parameters for the same option. The control uses a special wrong-value object,
25341
- * when the input receives an unrecognized string - { operator: "PARSEERROR", values: [...]}
25342
- *
25343
- * **Note:** Data binding for the `value` property is not supported. Instead, you should use DynamicDateRange's
25344
- * `getValue` and `setValue` methods.
25345
- *
25346
- * @since 1.92
25347
- */
25348
- value?: object | PropertyBindingInfo | `{${string}}`;
25349
-
25350
25379
  /**
25351
25380
  * Defines the width of the control.
25352
25381
  *
@@ -25418,17 +25447,6 @@ declare module "sap/m/DynamicDateRange" {
25418
25447
  */
25419
25448
  enableGroupHeaders?: boolean | PropertyBindingInfo | `{${string}}`;
25420
25449
 
25421
- /**
25422
- * An instance of sap.m.DynamicDateFormat or a user defined format object with the corresponding formatting
25423
- * and parsing functionality.
25424
- *
25425
- * **Note:** Data binding for the `formatter` property is not supported. Instead, you should use DynamicDateRange's
25426
- * `getFormatter` and `setFormatter` methods.
25427
- *
25428
- * @since 1.92
25429
- */
25430
- formatter?: object | PropertyBindingInfo | `{${string}}`;
25431
-
25432
25450
  /**
25433
25451
  * Array of standard option keys
25434
25452
  *
@@ -33104,20 +33122,6 @@ declare module "sap/m/GenericTile" {
33104
33122
  * @returns An array containing all of the tile's bounding rectangles
33105
33123
  */
33106
33124
  getBoundingRects(): object[];
33107
- /**
33108
- * Gets current value of property {@link #getDropAreaOffset dropAreaOffset}.
33109
- *
33110
- * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
33111
- * all the tile edges.
33112
- *
33113
- * Default value is `0`.
33114
- *
33115
- * @since 1.118
33116
- * @experimental (since 1.113)
33117
- *
33118
- * @returns Value of property `dropAreaOffset`
33119
- */
33120
- getDropAreaOffset(): int;
33121
33125
  /**
33122
33126
  * Gets current value of property {@link #getEnableNavigationButton enableNavigationButton}.
33123
33127
  *
@@ -33702,27 +33706,6 @@ declare module "sap/m/GenericTile" {
33702
33706
  */
33703
33707
  oBadge: TileInfo
33704
33708
  ): this;
33705
- /**
33706
- * Sets a new value for property {@link #getDropAreaOffset dropAreaOffset}.
33707
- *
33708
- * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
33709
- * all the tile edges.
33710
- *
33711
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
33712
- *
33713
- * Default value is `0`.
33714
- *
33715
- * @since 1.118
33716
- * @experimental (since 1.113)
33717
- *
33718
- * @returns Reference to `this` in order to allow method chaining
33719
- */
33720
- setDropAreaOffset(
33721
- /**
33722
- * New value for property `dropAreaOffset`
33723
- */
33724
- iDropAreaOffset?: int
33725
- ): this;
33726
33709
  /**
33727
33710
  * Sets a new value for property {@link #getEnableNavigationButton enableNavigationButton}.
33728
33711
  *
@@ -34420,15 +34403,6 @@ declare module "sap/m/GenericTile" {
34420
34403
  */
34421
34404
  tileBadge?: string | PropertyBindingInfo;
34422
34405
 
34423
- /**
34424
- * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
34425
- * all the tile edges.
34426
- *
34427
- * @since 1.118
34428
- * @experimental (since 1.113)
34429
- */
34430
- dropAreaOffset?: int | PropertyBindingInfo | `{${string}}`;
34431
-
34432
34406
  /**
34433
34407
  * The content of the tile.
34434
34408
  */
@@ -44911,6 +44885,20 @@ declare module "sap/m/InputBase" {
44911
44885
  */
44912
44886
  sPlaceholder?: string
44913
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;
44914
44902
  /**
44915
44903
  * Sets a new value for property {@link #getRequired required}.
44916
44904
  *
@@ -46649,8 +46637,9 @@ declare module "sap/m/Label" {
46649
46637
  /**
46650
46638
  * Gets current value of property {@link #getWrapping wrapping}.
46651
46639
  *
46652
- * Determines the wrapping of the text within the `Label`. If set to true the `Label` will wrap, when set
46653
- * to false the `Label` will be truncated and replaced with ellipsis which is the default behavior.
46640
+ * Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
46641
+ * will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
46642
+ * wrap.
46654
46643
  *
46655
46644
  * Default value is `false`.
46656
46645
  *
@@ -46860,8 +46849,9 @@ declare module "sap/m/Label" {
46860
46849
  /**
46861
46850
  * Sets a new value for property {@link #getWrapping wrapping}.
46862
46851
  *
46863
- * Determines the wrapping of the text within the `Label`. If set to true the `Label` will wrap, when set
46864
- * to false the `Label` will be truncated and replaced with ellipsis which is the default behavior.
46852
+ * Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
46853
+ * will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
46854
+ * wrap.
46865
46855
  *
46866
46856
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
46867
46857
  *
@@ -46954,8 +46944,9 @@ declare module "sap/m/Label" {
46954
46944
  displayOnly?: boolean | PropertyBindingInfo | `{${string}}`;
46955
46945
 
46956
46946
  /**
46957
- * Determines the wrapping of the text within the `Label`. If set to true the `Label` will wrap, when set
46958
- * to false the `Label` will be truncated and replaced with ellipsis which is the default behavior.
46947
+ * Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
46948
+ * will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
46949
+ * wrap.
46959
46950
  *
46960
46951
  * @since 1.50
46961
46952
  */
@@ -72465,7 +72456,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
72465
72456
  *
72466
72457
  * Default value is `true`.
72467
72458
  *
72468
- * @deprecated (since 1.32.Use) - {@link sap.m.OverflowToolbarPriority} instead.
72459
+ * @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
72469
72460
  *
72470
72461
  * @returns Value of property `moveToOverflow`
72471
72462
  */
@@ -72547,7 +72538,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
72547
72538
  *
72548
72539
  * Default value is `true`.
72549
72540
  *
72550
- * @deprecated (since 1.32.Use) - {@link sap.m.OverflowToolbarPriority} instead.
72541
+ * @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
72551
72542
  *
72552
72543
  * @returns Reference to `this` in order to allow method chaining
72553
72544
  */
@@ -72605,7 +72596,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
72605
72596
  /**
72606
72597
  * The OverflowToolbar item can or cannot move to the overflow area
72607
72598
  *
72608
- * @deprecated (since 1.32.Use) - {@link sap.m.OverflowToolbarPriority} instead.
72599
+ * @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
72609
72600
  */
72610
72601
  moveToOverflow?: boolean | PropertyBindingInfo | `{${string}}`;
72611
72602
 
@@ -98652,7 +98643,7 @@ declare module "sap/m/QuickView" {
98652
98643
  /**
98653
98644
  * The control which opens the QuickView.
98654
98645
  */
98655
- oControl: Control
98646
+ oControl: Control | HTMLElement
98656
98647
  ): this;
98657
98648
  /**
98658
98649
  * The method sets placement position of the QuickView.
@@ -100661,6 +100652,8 @@ declare module "sap/m/RadioButton" {
100661
100652
 
100662
100653
  import ElementMetadata from "sap/ui/core/ElementMetadata";
100663
100654
 
100655
+ import { WrappingType } from "sap/m/library";
100656
+
100664
100657
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
100665
100658
 
100666
100659
  import Event from "sap/ui/base/Event";
@@ -101034,6 +101027,32 @@ declare module "sap/m/RadioButton" {
101034
101027
  * @returns Value of property `width`
101035
101028
  */
101036
101029
  getWidth(): CSSSize;
101030
+ /**
101031
+ * Gets current value of property {@link #getWrapping wrapping}.
101032
+ *
101033
+ * Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
101034
+ * label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
101035
+ * will wrap.
101036
+ *
101037
+ * Default value is `false`.
101038
+ *
101039
+ * @since 1.126
101040
+ *
101041
+ * @returns Value of property `wrapping`
101042
+ */
101043
+ getWrapping(): boolean;
101044
+ /**
101045
+ * Gets current value of property {@link #getWrappingType wrappingType}.
101046
+ *
101047
+ * Defines the type of wrapping to be used for the label text (hyphenated or normal).
101048
+ *
101049
+ * Default value is `Normal`.
101050
+ *
101051
+ * @since 1.126
101052
+ *
101053
+ * @returns Value of property `wrappingType`
101054
+ */
101055
+ getWrappingType(): WrappingType | keyof typeof WrappingType;
101037
101056
  /**
101038
101057
  * Pseudo event for pseudo 'select' event... space, enter, ... without modifiers (Ctrl, Alt or Shift)
101039
101058
  */
@@ -101286,6 +101305,46 @@ declare module "sap/m/RadioButton" {
101286
101305
  */
101287
101306
  sWidth?: CSSSize
101288
101307
  ): this;
101308
+ /**
101309
+ * Sets a new value for property {@link #getWrapping wrapping}.
101310
+ *
101311
+ * Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
101312
+ * label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
101313
+ * will wrap.
101314
+ *
101315
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
101316
+ *
101317
+ * Default value is `false`.
101318
+ *
101319
+ * @since 1.126
101320
+ *
101321
+ * @returns Reference to `this` in order to allow method chaining
101322
+ */
101323
+ setWrapping(
101324
+ /**
101325
+ * New value for property `wrapping`
101326
+ */
101327
+ bWrapping?: boolean
101328
+ ): this;
101329
+ /**
101330
+ * Sets a new value for property {@link #getWrappingType wrappingType}.
101331
+ *
101332
+ * Defines the type of wrapping to be used for the label text (hyphenated or normal).
101333
+ *
101334
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
101335
+ *
101336
+ * Default value is `Normal`.
101337
+ *
101338
+ * @since 1.126
101339
+ *
101340
+ * @returns Reference to `this` in order to allow method chaining
101341
+ */
101342
+ setWrappingType(
101343
+ /**
101344
+ * New value for property `wrappingType`
101345
+ */
101346
+ sWrappingType?: WrappingType | keyof typeof WrappingType
101347
+ ): this;
101289
101348
  }
101290
101349
  /**
101291
101350
  * Describes the settings that can be provided to the RadioButton constructor.
@@ -101376,6 +101435,25 @@ declare module "sap/m/RadioButton" {
101376
101435
  | PropertyBindingInfo
101377
101436
  | `{${string}}`;
101378
101437
 
101438
+ /**
101439
+ * Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
101440
+ * label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
101441
+ * will wrap.
101442
+ *
101443
+ * @since 1.126
101444
+ */
101445
+ wrapping?: boolean | PropertyBindingInfo | `{${string}}`;
101446
+
101447
+ /**
101448
+ * Defines the type of wrapping to be used for the label text (hyphenated or normal).
101449
+ *
101450
+ * @since 1.126
101451
+ */
101452
+ wrappingType?:
101453
+ | (WrappingType | keyof typeof WrappingType)
101454
+ | PropertyBindingInfo
101455
+ | `{${string}}`;
101456
+
101379
101457
  /**
101380
101458
  * Association to controls / IDs which describe this control (see WAI-ARIA attribute aria-describedby).
101381
101459
  */
@@ -113565,7 +113643,6 @@ declare module "sap/m/SelectionDetails" {
113565
113643
  /**
113566
113644
  * Adds some action to the aggregation {@link #getActions actions}.
113567
113645
  *
113568
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113569
113646
  *
113570
113647
  * @returns Reference to `this` in order to allow method chaining
113571
113648
  */
@@ -113578,7 +113655,6 @@ declare module "sap/m/SelectionDetails" {
113578
113655
  /**
113579
113656
  * Adds some actionGroup to the aggregation {@link #getActionGroups actionGroups}.
113580
113657
  *
113581
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113582
113658
  *
113583
113659
  * @returns Reference to `this` in order to allow method chaining
113584
113660
  */
@@ -113591,7 +113667,6 @@ declare module "sap/m/SelectionDetails" {
113591
113667
  /**
113592
113668
  * Adds some item to the aggregation {@link #getItems items}.
113593
113669
  *
113594
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113595
113670
  *
113596
113671
  * @returns Reference to `this` in order to allow method chaining
113597
113672
  */
@@ -113609,7 +113684,6 @@ declare module "sap/m/SelectionDetails" {
113609
113684
  *
113610
113685
  * Event is triggered when a custom action is pressed.
113611
113686
  *
113612
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113613
113687
  *
113614
113688
  * @returns Reference to `this` in order to allow method chaining
113615
113689
  */
@@ -113636,7 +113710,6 @@ declare module "sap/m/SelectionDetails" {
113636
113710
  *
113637
113711
  * Event is triggered when a custom action is pressed.
113638
113712
  *
113639
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113640
113713
  *
113641
113714
  * @returns Reference to `this` in order to allow method chaining
113642
113715
  */
@@ -113658,7 +113731,6 @@ declare module "sap/m/SelectionDetails" {
113658
113731
  *
113659
113732
  * Event is triggered before the popover is closed.
113660
113733
  *
113661
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113662
113734
  *
113663
113735
  * @returns Reference to `this` in order to allow method chaining
113664
113736
  */
@@ -113685,7 +113757,6 @@ declare module "sap/m/SelectionDetails" {
113685
113757
  *
113686
113758
  * Event is triggered before the popover is closed.
113687
113759
  *
113688
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113689
113760
  *
113690
113761
  * @returns Reference to `this` in order to allow method chaining
113691
113762
  */
@@ -113707,7 +113778,6 @@ declare module "sap/m/SelectionDetails" {
113707
113778
  *
113708
113779
  * Event is triggered before the popover is open.
113709
113780
  *
113710
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113711
113781
  *
113712
113782
  * @returns Reference to `this` in order to allow method chaining
113713
113783
  */
@@ -113734,7 +113804,6 @@ declare module "sap/m/SelectionDetails" {
113734
113804
  *
113735
113805
  * Event is triggered before the popover is open.
113736
113806
  *
113737
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113738
113807
  *
113739
113808
  * @returns Reference to `this` in order to allow method chaining
113740
113809
  */
@@ -113756,7 +113825,6 @@ declare module "sap/m/SelectionDetails" {
113756
113825
  *
113757
113826
  * Event is triggered after a list item of {@link sap.m.SelectionDetailsItem} is pressed.
113758
113827
  *
113759
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113760
113828
  *
113761
113829
  * @returns Reference to `this` in order to allow method chaining
113762
113830
  */
@@ -113783,7 +113851,6 @@ declare module "sap/m/SelectionDetails" {
113783
113851
  *
113784
113852
  * Event is triggered after a list item of {@link sap.m.SelectionDetailsItem} is pressed.
113785
113853
  *
113786
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113787
113854
  *
113788
113855
  * @returns Reference to `this` in order to allow method chaining
113789
113856
  */
@@ -113820,7 +113887,6 @@ declare module "sap/m/SelectionDetails" {
113820
113887
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
113821
113888
  * of the possible properties of `oBindingInfo`.
113822
113889
  *
113823
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113824
113890
  *
113825
113891
  * @returns Reference to `this` in order to allow method chaining
113826
113892
  */
@@ -113833,7 +113899,6 @@ declare module "sap/m/SelectionDetails" {
113833
113899
  /**
113834
113900
  * Destroys all the actionGroups in the aggregation {@link #getActionGroups actionGroups}.
113835
113901
  *
113836
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113837
113902
  *
113838
113903
  * @returns Reference to `this` in order to allow method chaining
113839
113904
  */
@@ -113841,7 +113906,6 @@ declare module "sap/m/SelectionDetails" {
113841
113906
  /**
113842
113907
  * Destroys all the actions in the aggregation {@link #getActions actions}.
113843
113908
  *
113844
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113845
113909
  *
113846
113910
  * @returns Reference to `this` in order to allow method chaining
113847
113911
  */
@@ -113849,7 +113913,6 @@ declare module "sap/m/SelectionDetails" {
113849
113913
  /**
113850
113914
  * Destroys all the items in the aggregation {@link #getItems items}.
113851
113915
  *
113852
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113853
113916
  *
113854
113917
  * @returns Reference to `this` in order to allow method chaining
113855
113918
  */
@@ -113859,7 +113922,6 @@ declare module "sap/m/SelectionDetails" {
113859
113922
  *
113860
113923
  * The passed function and listener object must match the ones used for event registration.
113861
113924
  *
113862
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113863
113925
  *
113864
113926
  * @returns Reference to `this` in order to allow method chaining
113865
113927
  */
@@ -113878,7 +113940,6 @@ declare module "sap/m/SelectionDetails" {
113878
113940
  *
113879
113941
  * The passed function and listener object must match the ones used for event registration.
113880
113942
  *
113881
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113882
113943
  *
113883
113944
  * @returns Reference to `this` in order to allow method chaining
113884
113945
  */
@@ -113897,7 +113958,6 @@ declare module "sap/m/SelectionDetails" {
113897
113958
  *
113898
113959
  * The passed function and listener object must match the ones used for event registration.
113899
113960
  *
113900
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113901
113961
  *
113902
113962
  * @returns Reference to `this` in order to allow method chaining
113903
113963
  */
@@ -113916,7 +113976,6 @@ declare module "sap/m/SelectionDetails" {
113916
113976
  *
113917
113977
  * The passed function and listener object must match the ones used for event registration.
113918
113978
  *
113919
- * @ui5-protected Do not call from applications (only from related classes in the framework)
113920
113979
  *
113921
113980
  * @returns Reference to `this` in order to allow method chaining
113922
113981
  */
@@ -113996,16 +114055,12 @@ declare module "sap/m/SelectionDetails" {
113996
114055
  * Contains actions that are rendered as a dedicated {@link sap.m.StandardListItem item}. In case an action
113997
114056
  * group is pressed, a navigation should be triggered via `navTo` method. A maximum of 5 actionGroups is
113998
114057
  * displayed inside the popover, though more can be added to the aggregation.
113999
- *
114000
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114001
114058
  */
114002
114059
  getActionGroups(): Item[];
114003
114060
  /**
114004
114061
  * Gets content of aggregation {@link #getActions actions}.
114005
114062
  *
114006
114063
  * Contains custom actions shown in the responsive toolbar below items on the first page.
114007
- *
114008
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114009
114064
  */
114010
114065
  getActions(): Item[];
114011
114066
  /**
@@ -114020,15 +114075,12 @@ declare module "sap/m/SelectionDetails" {
114020
114075
  * Gets content of aggregation {@link #getItems items}.
114021
114076
  *
114022
114077
  * Contains {@link sap.m.SelectionDetailsItem items} that are displayed on the first page.
114023
- *
114024
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114025
114078
  */
114026
114079
  getItems(): SelectionDetailsItem[];
114027
114080
  /**
114028
114081
  * Checks for the provided `sap.ui.core.Item` in the aggregation {@link #getActions actions}. and returns
114029
114082
  * its index if found or -1 otherwise.
114030
114083
  *
114031
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114032
114084
  *
114033
114085
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
114034
114086
  */
@@ -114042,7 +114094,6 @@ declare module "sap/m/SelectionDetails" {
114042
114094
  * Checks for the provided `sap.ui.core.Item` in the aggregation {@link #getActionGroups actionGroups}.
114043
114095
  * and returns its index if found or -1 otherwise.
114044
114096
  *
114045
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114046
114097
  *
114047
114098
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
114048
114099
  */
@@ -114056,7 +114107,6 @@ declare module "sap/m/SelectionDetails" {
114056
114107
  * Checks for the provided `sap.m.SelectionDetailsItem` in the aggregation {@link #getItems items}. and
114057
114108
  * returns its index if found or -1 otherwise.
114058
114109
  *
114059
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114060
114110
  *
114061
114111
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
114062
114112
  */
@@ -114069,7 +114119,6 @@ declare module "sap/m/SelectionDetails" {
114069
114119
  /**
114070
114120
  * Inserts a action into the aggregation {@link #getActions actions}.
114071
114121
  *
114072
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114073
114122
  *
114074
114123
  * @returns Reference to `this` in order to allow method chaining
114075
114124
  */
@@ -114088,7 +114137,6 @@ declare module "sap/m/SelectionDetails" {
114088
114137
  /**
114089
114138
  * Inserts a actionGroup into the aggregation {@link #getActionGroups actionGroups}.
114090
114139
  *
114091
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114092
114140
  *
114093
114141
  * @returns Reference to `this` in order to allow method chaining
114094
114142
  */
@@ -114107,7 +114155,6 @@ declare module "sap/m/SelectionDetails" {
114107
114155
  /**
114108
114156
  * Inserts a item into the aggregation {@link #getItems items}.
114109
114157
  *
114110
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114111
114158
  *
114112
114159
  * @returns Reference to `this` in order to allow method chaining
114113
114160
  */
@@ -114147,7 +114194,6 @@ declare module "sap/m/SelectionDetails" {
114147
114194
  /**
114148
114195
  * Removes a action from the aggregation {@link #getActions actions}.
114149
114196
  *
114150
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114151
114197
  *
114152
114198
  * @returns The removed action or `null`
114153
114199
  */
@@ -114160,7 +114206,6 @@ declare module "sap/m/SelectionDetails" {
114160
114206
  /**
114161
114207
  * Removes a actionGroup from the aggregation {@link #getActionGroups actionGroups}.
114162
114208
  *
114163
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114164
114209
  *
114165
114210
  * @returns The removed actionGroup or `null`
114166
114211
  */
@@ -114175,7 +114220,6 @@ declare module "sap/m/SelectionDetails" {
114175
114220
  *
114176
114221
  * Additionally, it unregisters them from the hosting UIArea.
114177
114222
  *
114178
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114179
114223
  *
114180
114224
  * @returns An array of the removed elements (might be empty)
114181
114225
  */
@@ -114185,7 +114229,6 @@ declare module "sap/m/SelectionDetails" {
114185
114229
  *
114186
114230
  * Additionally, it unregisters them from the hosting UIArea.
114187
114231
  *
114188
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114189
114232
  *
114190
114233
  * @returns An array of the removed elements (might be empty)
114191
114234
  */
@@ -114195,7 +114238,6 @@ declare module "sap/m/SelectionDetails" {
114195
114238
  *
114196
114239
  * Additionally, it unregisters them from the hosting UIArea.
114197
114240
  *
114198
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114199
114241
  *
114200
114242
  * @returns An array of the removed elements (might be empty)
114201
114243
  */
@@ -114203,7 +114245,6 @@ declare module "sap/m/SelectionDetails" {
114203
114245
  /**
114204
114246
  * Removes a item from the aggregation {@link #getItems items}.
114205
114247
  *
114206
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114207
114248
  *
114208
114249
  * @returns The removed item or `null`
114209
114250
  */
@@ -114230,7 +114271,6 @@ declare module "sap/m/SelectionDetails" {
114230
114271
  /**
114231
114272
  * Unbinds aggregation {@link #getItems items} from model data.
114232
114273
  *
114233
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114234
114274
  *
114235
114275
  * @returns Reference to `this` in order to allow method chaining
114236
114276
  */
@@ -114411,7 +114451,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114411
114451
  /**
114412
114452
  * Adds some action to the aggregation {@link #getActions actions}.
114413
114453
  *
114414
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114415
114454
  *
114416
114455
  * @returns Reference to `this` in order to allow method chaining
114417
114456
  */
@@ -114424,7 +114463,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114424
114463
  /**
114425
114464
  * Adds some actionGroup to the aggregation {@link #getActionGroups actionGroups}.
114426
114465
  *
114427
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114428
114466
  *
114429
114467
  * @returns Reference to `this` in order to allow method chaining
114430
114468
  */
@@ -114442,7 +114480,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114442
114480
  *
114443
114481
  * Event is triggered when a custom action is pressed.
114444
114482
  *
114445
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114446
114483
  *
114447
114484
  * @returns Reference to `this` in order to allow method chaining
114448
114485
  */
@@ -114469,7 +114506,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114469
114506
  *
114470
114507
  * Event is triggered when a custom action is pressed.
114471
114508
  *
114472
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114473
114509
  *
114474
114510
  * @returns Reference to `this` in order to allow method chaining
114475
114511
  */
@@ -114491,7 +114527,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114491
114527
  *
114492
114528
  * Event is triggered before the popover is closed.
114493
114529
  *
114494
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114495
114530
  *
114496
114531
  * @returns Reference to `this` in order to allow method chaining
114497
114532
  */
@@ -114518,7 +114553,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114518
114553
  *
114519
114554
  * Event is triggered before the popover is closed.
114520
114555
  *
114521
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114522
114556
  *
114523
114557
  * @returns Reference to `this` in order to allow method chaining
114524
114558
  */
@@ -114540,7 +114574,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114540
114574
  *
114541
114575
  * Event is triggered before the popover is open.
114542
114576
  *
114543
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114544
114577
  *
114545
114578
  * @returns Reference to `this` in order to allow method chaining
114546
114579
  */
@@ -114567,7 +114600,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114567
114600
  *
114568
114601
  * Event is triggered before the popover is open.
114569
114602
  *
114570
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114571
114603
  *
114572
114604
  * @returns Reference to `this` in order to allow method chaining
114573
114605
  */
@@ -114589,7 +114621,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114589
114621
  *
114590
114622
  * Event is triggered after a list item of {@link sap.m.SelectionDetailsItem} is pressed.
114591
114623
  *
114592
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114593
114624
  *
114594
114625
  * @returns Reference to `this` in order to allow method chaining
114595
114626
  */
@@ -114616,7 +114647,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114616
114647
  *
114617
114648
  * Event is triggered after a list item of {@link sap.m.SelectionDetailsItem} is pressed.
114618
114649
  *
114619
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114620
114650
  *
114621
114651
  * @returns Reference to `this` in order to allow method chaining
114622
114652
  */
@@ -114642,7 +114672,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114642
114672
  *
114643
114673
  * The passed function and listener object must match the ones used for event registration.
114644
114674
  *
114645
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114646
114675
  *
114647
114676
  * @returns Reference to `this` in order to allow method chaining
114648
114677
  */
@@ -114661,7 +114690,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114661
114690
  *
114662
114691
  * The passed function and listener object must match the ones used for event registration.
114663
114692
  *
114664
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114665
114693
  *
114666
114694
  * @returns Reference to `this` in order to allow method chaining
114667
114695
  */
@@ -114680,7 +114708,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114680
114708
  *
114681
114709
  * The passed function and listener object must match the ones used for event registration.
114682
114710
  *
114683
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114684
114711
  *
114685
114712
  * @returns Reference to `this` in order to allow method chaining
114686
114713
  */
@@ -114699,7 +114726,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114699
114726
  *
114700
114727
  * The passed function and listener object must match the ones used for event registration.
114701
114728
  *
114702
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114703
114729
  *
114704
114730
  * @returns Reference to `this` in order to allow method chaining
114705
114731
  */
@@ -114757,7 +114783,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114757
114783
  /**
114758
114784
  * Removes a action from the aggregation {@link #getActions actions}.
114759
114785
  *
114760
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114761
114786
  *
114762
114787
  * @returns The removed action or `null`
114763
114788
  */
@@ -114770,7 +114795,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114770
114795
  /**
114771
114796
  * Removes a actionGroup from the aggregation {@link #getActionGroups actionGroups}.
114772
114797
  *
114773
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114774
114798
  *
114775
114799
  * @returns The removed actionGroup or `null`
114776
114800
  */
@@ -114785,7 +114809,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114785
114809
  *
114786
114810
  * Additionally, it unregisters them from the hosting UIArea.
114787
114811
  *
114788
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114789
114812
  *
114790
114813
  * @returns An array of the removed elements (might be empty)
114791
114814
  */
@@ -114795,7 +114818,6 @@ declare module "sap/m/SelectionDetailsFacade" {
114795
114818
  *
114796
114819
  * Additionally, it unregisters them from the hosting UIArea.
114797
114820
  *
114798
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114799
114821
  *
114800
114822
  * @returns An array of the removed elements (might be empty)
114801
114823
  */
@@ -114911,7 +114933,6 @@ declare module "sap/m/SelectionDetailsItem" {
114911
114933
  /**
114912
114934
  * Adds some action to the aggregation {@link #getActions actions}.
114913
114935
  *
114914
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114915
114936
  *
114916
114937
  * @returns Reference to `this` in order to allow method chaining
114917
114938
  */
@@ -114924,7 +114945,6 @@ declare module "sap/m/SelectionDetailsItem" {
114924
114945
  /**
114925
114946
  * Adds some line to the aggregation {@link #getLines lines}.
114926
114947
  *
114927
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114928
114948
  *
114929
114949
  * @returns Reference to `this` in order to allow method chaining
114930
114950
  */
@@ -114940,7 +114960,6 @@ declare module "sap/m/SelectionDetailsItem" {
114940
114960
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
114941
114961
  * of the possible properties of `oBindingInfo`.
114942
114962
  *
114943
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114944
114963
  *
114945
114964
  * @returns Reference to `this` in order to allow method chaining
114946
114965
  */
@@ -114953,7 +114972,6 @@ declare module "sap/m/SelectionDetailsItem" {
114953
114972
  /**
114954
114973
  * Destroys all the actions in the aggregation {@link #getActions actions}.
114955
114974
  *
114956
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114957
114975
  *
114958
114976
  * @returns Reference to `this` in order to allow method chaining
114959
114977
  */
@@ -114961,7 +114979,6 @@ declare module "sap/m/SelectionDetailsItem" {
114961
114979
  /**
114962
114980
  * Destroys all the lines in the aggregation {@link #getLines lines}.
114963
114981
  *
114964
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114965
114982
  *
114966
114983
  * @returns Reference to `this` in order to allow method chaining
114967
114984
  */
@@ -114970,8 +114987,6 @@ declare module "sap/m/SelectionDetailsItem" {
114970
114987
  * Gets content of aggregation {@link #getActions actions}.
114971
114988
  *
114972
114989
  * Contains custom actions shown below the main content of the item.
114973
- *
114974
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114975
114990
  */
114976
114991
  getActions(): Item[];
114977
114992
  /**
@@ -114981,7 +114996,6 @@ declare module "sap/m/SelectionDetailsItem" {
114981
114996
  *
114982
114997
  * Default value is `false`.
114983
114998
  *
114984
- * @ui5-protected Do not call from applications (only from related classes in the framework)
114985
114999
  *
114986
115000
  * @returns Value of property `enableNav`
114987
115001
  */
@@ -114999,15 +115013,12 @@ declare module "sap/m/SelectionDetailsItem" {
114999
115013
  *
115000
115014
  * Contains a record of information about, for example, measures and dimensions. These entries are usually
115001
115015
  * obtained via selection in chart controls.
115002
- *
115003
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115004
115016
  */
115005
115017
  getLines(): SelectionDetailsItemLine[];
115006
115018
  /**
115007
115019
  * Checks for the provided `sap.ui.core.Item` in the aggregation {@link #getActions actions}. and returns
115008
115020
  * its index if found or -1 otherwise.
115009
115021
  *
115010
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115011
115022
  *
115012
115023
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
115013
115024
  */
@@ -115021,7 +115032,6 @@ declare module "sap/m/SelectionDetailsItem" {
115021
115032
  * Checks for the provided `sap.m.SelectionDetailsItemLine` in the aggregation {@link #getLines lines}.
115022
115033
  * and returns its index if found or -1 otherwise.
115023
115034
  *
115024
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115025
115035
  *
115026
115036
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
115027
115037
  */
@@ -115034,7 +115044,6 @@ declare module "sap/m/SelectionDetailsItem" {
115034
115044
  /**
115035
115045
  * Inserts a action into the aggregation {@link #getActions actions}.
115036
115046
  *
115037
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115038
115047
  *
115039
115048
  * @returns Reference to `this` in order to allow method chaining
115040
115049
  */
@@ -115053,7 +115062,6 @@ declare module "sap/m/SelectionDetailsItem" {
115053
115062
  /**
115054
115063
  * Inserts a line into the aggregation {@link #getLines lines}.
115055
115064
  *
115056
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115057
115065
  *
115058
115066
  * @returns Reference to `this` in order to allow method chaining
115059
115067
  */
@@ -115072,7 +115080,6 @@ declare module "sap/m/SelectionDetailsItem" {
115072
115080
  /**
115073
115081
  * Removes a action from the aggregation {@link #getActions actions}.
115074
115082
  *
115075
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115076
115083
  *
115077
115084
  * @returns The removed action or `null`
115078
115085
  */
@@ -115087,7 +115094,6 @@ declare module "sap/m/SelectionDetailsItem" {
115087
115094
  *
115088
115095
  * Additionally, it unregisters them from the hosting UIArea.
115089
115096
  *
115090
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115091
115097
  *
115092
115098
  * @returns An array of the removed elements (might be empty)
115093
115099
  */
@@ -115097,7 +115103,6 @@ declare module "sap/m/SelectionDetailsItem" {
115097
115103
  *
115098
115104
  * Additionally, it unregisters them from the hosting UIArea.
115099
115105
  *
115100
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115101
115106
  *
115102
115107
  * @returns An array of the removed elements (might be empty)
115103
115108
  */
@@ -115105,7 +115110,6 @@ declare module "sap/m/SelectionDetailsItem" {
115105
115110
  /**
115106
115111
  * Removes a line from the aggregation {@link #getLines lines}.
115107
115112
  *
115108
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115109
115113
  *
115110
115114
  * @returns The removed line or `null`
115111
115115
  */
@@ -115124,7 +115128,6 @@ declare module "sap/m/SelectionDetailsItem" {
115124
115128
  *
115125
115129
  * Default value is `false`.
115126
115130
  *
115127
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115128
115131
  *
115129
115132
  * @returns Reference to `this` in order to allow method chaining
115130
115133
  */
@@ -115137,7 +115140,6 @@ declare module "sap/m/SelectionDetailsItem" {
115137
115140
  /**
115138
115141
  * Unbinds aggregation {@link #getLines lines} from model data.
115139
115142
  *
115140
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115141
115143
  *
115142
115144
  * @returns Reference to `this` in order to allow method chaining
115143
115145
  */
@@ -115262,7 +115264,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115262
115264
  * The display value of the line. If this property is set, it overrides the value property and is displayed
115263
115265
  * as is.
115264
115266
  *
115265
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115266
115267
  *
115267
115268
  * @returns Value of property `displayValue`
115268
115269
  */
@@ -115273,7 +115274,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115273
115274
  * The label that is shown as the first part of the line. It may contain the name of the currently selected
115274
115275
  * dimension or measure.
115275
115276
  *
115276
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115277
115277
  *
115278
115278
  * @returns Value of property `label`
115279
115279
  */
@@ -115284,7 +115284,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115284
115284
  * A string to be rendered by the control as a line marker. This string must be a valid SVG definition.
115285
115285
  * The only valid tags are: svg, path, line.
115286
115286
  *
115287
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115288
115287
  *
115289
115288
  * @returns Value of property `lineMarker`
115290
115289
  */
@@ -115294,7 +115293,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115294
115293
  *
115295
115294
  * The unit of the given value. If this unit is given, the line is displayed bold.
115296
115295
  *
115297
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115298
115296
  *
115299
115297
  * @returns Value of property `unit`
115300
115298
  */
@@ -115305,7 +115303,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115305
115303
  * The value of the line, for example the value of the currently selected measure. Expected type is a string,
115306
115304
  * number or a plain object, including date and time properties of type string.
115307
115305
  *
115308
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115309
115306
  *
115310
115307
  * @returns Value of property `value`
115311
115308
  */
@@ -115318,7 +115315,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115318
115315
  *
115319
115316
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115320
115317
  *
115321
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115322
115318
  *
115323
115319
  * @returns Reference to `this` in order to allow method chaining
115324
115320
  */
@@ -115336,7 +115332,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115336
115332
  *
115337
115333
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115338
115334
  *
115339
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115340
115335
  *
115341
115336
  * @returns Reference to `this` in order to allow method chaining
115342
115337
  */
@@ -115354,7 +115349,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115354
115349
  *
115355
115350
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115356
115351
  *
115357
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115358
115352
  *
115359
115353
  * @returns Reference to `this` in order to allow method chaining
115360
115354
  */
@@ -115371,7 +115365,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115371
115365
  *
115372
115366
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115373
115367
  *
115374
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115375
115368
  *
115376
115369
  * @returns Reference to `this` in order to allow method chaining
115377
115370
  */
@@ -115389,7 +115382,6 @@ declare module "sap/m/SelectionDetailsItemLine" {
115389
115382
  *
115390
115383
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
115391
115384
  *
115392
- * @ui5-protected Do not call from applications (only from related classes in the framework)
115393
115385
  *
115394
115386
  * @returns Reference to `this` in order to allow method chaining
115395
115387
  */
@@ -115787,18 +115779,6 @@ declare module "sap/m/SelectList" {
115787
115779
  * @returns The first item, or `null` if there are no items.
115788
115780
  */
115789
115781
  getFirstItem(): Item | null;
115790
- /**
115791
- * Gets current value of property {@link #getHideDisabledItems hideDisabledItems}.
115792
- *
115793
- * Determines whether the disabled items are hidden from the DOM structure.
115794
- *
115795
- * Default value is `false`.
115796
- *
115797
- * @since 1.91
115798
- *
115799
- * @returns Value of property `hideDisabledItems`
115800
- */
115801
- getHideDisabledItems(): boolean;
115802
115782
  /**
115803
115783
  * Gets the item from the aggregation named `items` at the given 0-based index.
115804
115784
  *
@@ -115842,6 +115822,7 @@ declare module "sap/m/SelectList" {
115842
115822
  * Default value is `Delimited`.
115843
115823
  *
115844
115824
  * @since 1.38
115825
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
115845
115826
  *
115846
115827
  * @returns Value of property `keyboardNavigationMode`
115847
115828
  */
@@ -116011,25 +115992,6 @@ declare module "sap/m/SelectList" {
116011
115992
  */
116012
115993
  bEnabled?: boolean
116013
115994
  ): this;
116014
- /**
116015
- * Sets a new value for property {@link #getHideDisabledItems hideDisabledItems}.
116016
- *
116017
- * Determines whether the disabled items are hidden from the DOM structure.
116018
- *
116019
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
116020
- *
116021
- * Default value is `false`.
116022
- *
116023
- * @since 1.91
116024
- *
116025
- * @returns Reference to `this` in order to allow method chaining
116026
- */
116027
- setHideDisabledItems(
116028
- /**
116029
- * New value for property `hideDisabledItems`
116030
- */
116031
- bHideDisabledItems?: boolean
116032
- ): this;
116033
115995
  /**
116034
115996
  * Sets a new value for property {@link #getKeyboardNavigationMode keyboardNavigationMode}.
116035
115997
  *
@@ -116043,6 +116005,7 @@ declare module "sap/m/SelectList" {
116043
116005
  * Default value is `Delimited`.
116044
116006
  *
116045
116007
  * @since 1.38
116008
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
116046
116009
  *
116047
116010
  * @returns Reference to `this` in order to allow method chaining
116048
116011
  */
@@ -116212,6 +116175,7 @@ declare module "sap/m/SelectList" {
116212
116175
  * in some composite controls that handles keyboard navigation by themselves.
116213
116176
  *
116214
116177
  * @since 1.38
116178
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
116215
116179
  */
116216
116180
  keyboardNavigationMode?:
116217
116181
  | (
@@ -116221,13 +116185,6 @@ declare module "sap/m/SelectList" {
116221
116185
  | PropertyBindingInfo
116222
116186
  | `{${string}}`;
116223
116187
 
116224
- /**
116225
- * Determines whether the disabled items are hidden from the DOM structure.
116226
- *
116227
- * @since 1.91
116228
- */
116229
- hideDisabledItems?: boolean | PropertyBindingInfo | `{${string}}`;
116230
-
116231
116188
  /**
116232
116189
  * Defines the items contained within this control.
116233
116190
  */
@@ -134820,55 +134777,6 @@ declare module "sap/m/TabContainerItem" {
134820
134777
  */
134821
134778
  oContent: Control
134822
134779
  ): this;
134823
- /**
134824
- * Attaches event handler `fnFunction` to the {@link #event:itemPropertyChanged itemPropertyChanged} event
134825
- * of this `sap.m.TabContainerItem`.
134826
- *
134827
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
134828
- * otherwise it will be bound to this `sap.m.TabContainerItem` itself.
134829
- *
134830
- * Sends information that some of the properties have changed.
134831
- *
134832
- *
134833
- * @returns Reference to `this` in order to allow method chaining
134834
- */
134835
- attachItemPropertyChanged(
134836
- /**
134837
- * An application-specific payload object that will be passed to the event handler along with the event
134838
- * object when firing the event
134839
- */
134840
- oData: object,
134841
- /**
134842
- * The function to be called when the event occurs
134843
- */
134844
- fnFunction: (p1: TabContainerItem$ItemPropertyChangedEvent) => void,
134845
- /**
134846
- * Context object to call the event handler with. Defaults to this `sap.m.TabContainerItem` itself
134847
- */
134848
- oListener?: object
134849
- ): this;
134850
- /**
134851
- * Attaches event handler `fnFunction` to the {@link #event:itemPropertyChanged itemPropertyChanged} event
134852
- * of this `sap.m.TabContainerItem`.
134853
- *
134854
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
134855
- * otherwise it will be bound to this `sap.m.TabContainerItem` itself.
134856
- *
134857
- * Sends information that some of the properties have changed.
134858
- *
134859
- *
134860
- * @returns Reference to `this` in order to allow method chaining
134861
- */
134862
- attachItemPropertyChanged(
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
134780
  /**
134873
134781
  * Destroys all the content in the aggregation {@link #getContent content}.
134874
134782
  *
@@ -134876,38 +134784,6 @@ declare module "sap/m/TabContainerItem" {
134876
134784
  * @returns Reference to `this` in order to allow method chaining
134877
134785
  */
134878
134786
  destroyContent(): this;
134879
- /**
134880
- * Detaches event handler `fnFunction` from the {@link #event:itemPropertyChanged itemPropertyChanged} event
134881
- * of this `sap.m.TabContainerItem`.
134882
- *
134883
- * The passed function and listener object must match the ones used for event registration.
134884
- *
134885
- *
134886
- * @returns Reference to `this` in order to allow method chaining
134887
- */
134888
- detachItemPropertyChanged(
134889
- /**
134890
- * The function to be called, when the event occurs
134891
- */
134892
- fnFunction: (p1: TabContainerItem$ItemPropertyChangedEvent) => void,
134893
- /**
134894
- * Context object on which the given function had to be called
134895
- */
134896
- oListener?: object
134897
- ): this;
134898
- /**
134899
- * Fires event {@link #event:itemPropertyChanged itemPropertyChanged} to attached listeners.
134900
- *
134901
- * @ui5-protected Do not call from applications (only from related classes in the framework)
134902
- *
134903
- * @returns Reference to `this` in order to allow method chaining
134904
- */
134905
- fireItemPropertyChanged(
134906
- /**
134907
- * Parameters to pass along with the event
134908
- */
134909
- mParameters?: TabContainerItem$ItemPropertyChangedEventParameters
134910
- ): this;
134911
134787
  /**
134912
134788
  * Gets current value of property {@link #getAdditionalText additionalText}.
134913
134789
  *
@@ -135199,13 +135075,6 @@ declare module "sap/m/TabContainerItem" {
135199
135075
  * The content displayed for this item.
135200
135076
  */
135201
135077
  content?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
135202
-
135203
- /**
135204
- * Sends information that some of the properties have changed.
135205
- */
135206
- itemPropertyChanged?: (
135207
- oEvent: TabContainerItem$ItemPropertyChangedEvent
135208
- ) => void;
135209
135078
  }
135210
135079
 
135211
135080
  /**
@@ -137507,21 +137376,20 @@ declare module "sap/m/table/columnmenu/ItemBase" {
137507
137376
  }
137508
137377
 
137509
137378
  declare module "sap/m/table/columnmenu/Menu" {
137510
- import { default as Control, $ControlSettings } from "sap/ui/core/Control";
137511
-
137512
- import { IColumnHeaderMenu, aria } from "sap/ui/core/library";
137379
+ import {
137380
+ default as MenuBase,
137381
+ $MenuBaseSettings,
137382
+ } from "sap/m/table/columnmenu/MenuBase";
137513
137383
 
137514
137384
  import ItemBase from "sap/m/table/columnmenu/ItemBase";
137515
137385
 
137516
137386
  import QuickActionBase from "sap/m/table/columnmenu/QuickActionBase";
137517
137387
 
137518
- import Event from "sap/ui/base/Event";
137519
-
137520
137388
  import ElementMetadata from "sap/ui/core/ElementMetadata";
137521
137389
 
137522
- import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
137390
+ import Control from "sap/ui/core/Control";
137523
137391
 
137524
- import UI5Element from "sap/ui/core/Element";
137392
+ import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
137525
137393
 
137526
137394
  /**
137527
137395
  * The `Menu` control is a popover, intended to be used by a table. It serves as an entry point for the
@@ -137536,8 +137404,7 @@ declare module "sap/m/table/columnmenu/Menu" {
137536
137404
  *
137537
137405
  * @since 1.110
137538
137406
  */
137539
- export default class Menu extends Control implements IColumnHeaderMenu {
137540
- __implements__sap_ui_core_IColumnHeaderMenu: boolean;
137407
+ export default class Menu extends MenuBase {
137541
137408
  /**
137542
137409
  * Constructor for a new `Menu`.
137543
137410
  *
@@ -137573,7 +137440,7 @@ declare module "sap/m/table/columnmenu/Menu" {
137573
137440
  * Creates a new subclass of class sap.m.table.columnmenu.Menu with name `sClassName` and enriches it with
137574
137441
  * the information contained in `oClassInfo`.
137575
137442
  *
137576
- * `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}.
137577
137444
  *
137578
137445
  *
137579
137446
  * @returns Created class / constructor function
@@ -137625,14 +137492,261 @@ declare module "sap/m/table/columnmenu/Menu" {
137625
137492
  oQuickAction: QuickActionBase
137626
137493
  ): this;
137627
137494
  /**
137628
- * Attaches event handler `fnFunction` to the {@link #event:afterClose afterClose} event of this `sap.m.table.columnmenu.Menu`.
137495
+ * Destroys all the items in the aggregation {@link #getItems items}.
137496
+ *
137497
+ *
137498
+ * @returns Reference to `this` in order to allow method chaining
137499
+ */
137500
+ destroyItems(): this;
137501
+ /**
137502
+ * Destroys all the quickActions in the aggregation {@link #getQuickActions quickActions}.
137503
+ *
137504
+ *
137505
+ * @returns Reference to `this` in order to allow method chaining
137506
+ */
137507
+ destroyQuickActions(): this;
137508
+ /**
137509
+ * Gets content of aggregation {@link #getItems items}.
137510
+ *
137511
+ * Defines the items of the column menu.
137512
+ */
137513
+ getItems(): ItemBase[];
137514
+ /**
137515
+ * Gets content of aggregation {@link #getQuickActions quickActions}.
137516
+ *
137517
+ * Defines the quick actions of the column menu.
137518
+ */
137519
+ getQuickActions(): QuickActionBase[];
137520
+ /**
137521
+ * Checks for the provided `sap.m.table.columnmenu.ItemBase` in the aggregation {@link #getItems items}.
137522
+ * and returns its index if found or -1 otherwise.
137523
+ *
137524
+ *
137525
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
137526
+ */
137527
+ indexOfItem(
137528
+ /**
137529
+ * The item whose index is looked for
137530
+ */
137531
+ oItem: ItemBase
137532
+ ): int;
137533
+ /**
137534
+ * Checks for the provided `sap.m.table.columnmenu.QuickActionBase` in the aggregation {@link #getQuickActions quickActions}.
137535
+ * and returns its index if found or -1 otherwise.
137536
+ *
137537
+ *
137538
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
137539
+ */
137540
+ indexOfQuickAction(
137541
+ /**
137542
+ * The quickAction whose index is looked for
137543
+ */
137544
+ oQuickAction: QuickActionBase
137545
+ ): int;
137546
+ /**
137547
+ * Inserts a item into the aggregation {@link #getItems items}.
137548
+ *
137549
+ *
137550
+ * @returns Reference to `this` in order to allow method chaining
137551
+ */
137552
+ insertItem(
137553
+ /**
137554
+ * The item to insert; if empty, nothing is inserted
137555
+ */
137556
+ oItem: ItemBase,
137557
+ /**
137558
+ * The `0`-based index the item should be inserted at; for a negative value of `iIndex`, the item is inserted
137559
+ * at position 0; for a value greater than the current size of the aggregation, the item is inserted at
137560
+ * the last position
137561
+ */
137562
+ iIndex: int
137563
+ ): this;
137564
+ /**
137565
+ * Inserts a quickAction into the aggregation {@link #getQuickActions quickActions}.
137566
+ *
137567
+ *
137568
+ * @returns Reference to `this` in order to allow method chaining
137569
+ */
137570
+ insertQuickAction(
137571
+ /**
137572
+ * The quickAction to insert; if empty, nothing is inserted
137573
+ */
137574
+ oQuickAction: QuickActionBase,
137575
+ /**
137576
+ * The `0`-based index the quickAction should be inserted at; for a negative value of `iIndex`, the quickAction
137577
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the quickAction
137578
+ * is inserted at the last position
137579
+ */
137580
+ iIndex: int
137581
+ ): this;
137582
+ /**
137583
+ * Opens the popover at the specified target.
137584
+ */
137585
+ openBy(
137586
+ /**
137587
+ * This is the control or HTMLElement where the popover is placed.
137588
+ */
137589
+ oAnchor: Control | HTMLElement,
137590
+ /**
137591
+ * Whether to suppress the beforeOpen event.
137592
+ */
137593
+ bSuppressEvent?: boolean
137594
+ ): void;
137595
+ /**
137596
+ * Removes all the controls from the aggregation {@link #getItems items}.
137597
+ *
137598
+ * Additionally, it unregisters them from the hosting UIArea.
137599
+ *
137600
+ *
137601
+ * @returns An array of the removed elements (might be empty)
137602
+ */
137603
+ removeAllItems(): ItemBase[];
137604
+ /**
137605
+ * Removes all the controls from the aggregation {@link #getQuickActions quickActions}.
137606
+ *
137607
+ * Additionally, it unregisters them from the hosting UIArea.
137608
+ *
137609
+ *
137610
+ * @returns An array of the removed elements (might be empty)
137611
+ */
137612
+ removeAllQuickActions(): QuickActionBase[];
137613
+ /**
137614
+ * Removes a item from the aggregation {@link #getItems items}.
137615
+ *
137616
+ *
137617
+ * @returns The removed item or `null`
137618
+ */
137619
+ removeItem(
137620
+ /**
137621
+ * The item to remove or its index or id
137622
+ */
137623
+ vItem: int | string | ItemBase
137624
+ ): ItemBase | null;
137625
+ /**
137626
+ * Removes a quickAction from the aggregation {@link #getQuickActions quickActions}.
137627
+ *
137628
+ *
137629
+ * @returns The removed quickAction or `null`
137630
+ */
137631
+ removeQuickAction(
137632
+ /**
137633
+ * The quickAction to remove or its index or id
137634
+ */
137635
+ vQuickAction: int | string | QuickActionBase
137636
+ ): QuickActionBase | null;
137637
+ }
137638
+ /**
137639
+ * Describes the settings that can be provided to the Menu constructor.
137640
+ */
137641
+ export interface $MenuSettings extends $MenuBaseSettings {
137642
+ /**
137643
+ * Defines the quick actions of the column menu.
137644
+ */
137645
+ quickActions?:
137646
+ | QuickActionBase[]
137647
+ | QuickActionBase
137648
+ | AggregationBindingInfo
137649
+ | `{${string}}`;
137650
+
137651
+ /**
137652
+ * Defines the items of the column menu.
137653
+ */
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";
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;
137680
+ /**
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.
137686
+ */
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
+ );
137710
+
137711
+ /**
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`.
137629
137744
  *
137630
137745
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
137631
- * otherwise it will be bound to this `sap.m.table.columnmenu.Menu` itself.
137746
+ * otherwise it will be bound to this `sap.m.table.columnmenu.MenuBase` itself.
137632
137747
  *
137633
- * Fires after the column menu is closed
137748
+ * Fired after the column menu has been closed.
137634
137749
  *
137635
- * @since 1.112
137636
137750
  *
137637
137751
  * @returns Reference to `this` in order to allow method chaining
137638
137752
  */
@@ -137647,19 +137761,18 @@ declare module "sap/m/table/columnmenu/Menu" {
137647
137761
  */
137648
137762
  fnFunction: (p1: Event) => void,
137649
137763
  /**
137650
- * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.Menu` itself
137764
+ * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.MenuBase` itself
137651
137765
  */
137652
137766
  oListener?: object
137653
137767
  ): this;
137654
137768
  /**
137655
- * Attaches event handler `fnFunction` to the {@link #event:afterClose afterClose} event of this `sap.m.table.columnmenu.Menu`.
137769
+ * Attaches event handler `fnFunction` to the {@link #event:afterClose afterClose} event of this `sap.m.table.columnmenu.MenuBase`.
137656
137770
  *
137657
137771
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
137658
- * otherwise it will be bound to this `sap.m.table.columnmenu.Menu` itself.
137772
+ * otherwise it will be bound to this `sap.m.table.columnmenu.MenuBase` itself.
137659
137773
  *
137660
- * Fires after the column menu is closed
137774
+ * Fired after the column menu has been closed.
137661
137775
  *
137662
- * @since 1.112
137663
137776
  *
137664
137777
  * @returns Reference to `this` in order to allow method chaining
137665
137778
  */
@@ -137669,17 +137782,17 @@ declare module "sap/m/table/columnmenu/Menu" {
137669
137782
  */
137670
137783
  fnFunction: (p1: Event) => void,
137671
137784
  /**
137672
- * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.Menu` itself
137785
+ * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.MenuBase` itself
137673
137786
  */
137674
137787
  oListener?: object
137675
137788
  ): this;
137676
137789
  /**
137677
- * Attaches event handler `fnFunction` to the {@link #event:beforeOpen beforeOpen} event of this `sap.m.table.columnmenu.Menu`.
137790
+ * Attaches event handler `fnFunction` to the {@link #event:beforeOpen beforeOpen} event of this `sap.m.table.columnmenu.MenuBase`.
137678
137791
  *
137679
137792
  * 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.
137793
+ * otherwise it will be bound to this `sap.m.table.columnmenu.MenuBase` itself.
137681
137794
  *
137682
- * Fired before the column menu is opened
137795
+ * Fired before the column menu is opened.
137683
137796
  *
137684
137797
  *
137685
137798
  * @returns Reference to `this` in order to allow method chaining
@@ -137693,19 +137806,19 @@ declare module "sap/m/table/columnmenu/Menu" {
137693
137806
  /**
137694
137807
  * The function to be called when the event occurs
137695
137808
  */
137696
- fnFunction: (p1: Menu$BeforeOpenEvent) => void,
137809
+ fnFunction: (p1: MenuBase$BeforeOpenEvent) => void,
137697
137810
  /**
137698
- * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.Menu` itself
137811
+ * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.MenuBase` itself
137699
137812
  */
137700
137813
  oListener?: object
137701
137814
  ): this;
137702
137815
  /**
137703
- * Attaches event handler `fnFunction` to the {@link #event:beforeOpen beforeOpen} event of this `sap.m.table.columnmenu.Menu`.
137816
+ * Attaches event handler `fnFunction` to the {@link #event:beforeOpen beforeOpen} event of this `sap.m.table.columnmenu.MenuBase`.
137704
137817
  *
137705
137818
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
137706
- * otherwise it will be bound to this `sap.m.table.columnmenu.Menu` itself.
137819
+ * otherwise it will be bound to this `sap.m.table.columnmenu.MenuBase` itself.
137707
137820
  *
137708
- * Fired before the column menu is opened
137821
+ * Fired before the column menu is opened.
137709
137822
  *
137710
137823
  *
137711
137824
  * @returns Reference to `this` in order to allow method chaining
@@ -137714,36 +137827,21 @@ declare module "sap/m/table/columnmenu/Menu" {
137714
137827
  /**
137715
137828
  * The function to be called when the event occurs
137716
137829
  */
137717
- fnFunction: (p1: Menu$BeforeOpenEvent) => void,
137830
+ fnFunction: (p1: MenuBase$BeforeOpenEvent) => void,
137718
137831
  /**
137719
- * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.Menu` itself
137832
+ * Context object to call the event handler with. Defaults to this `sap.m.table.columnmenu.MenuBase` itself
137720
137833
  */
137721
137834
  oListener?: object
137722
137835
  ): this;
137723
137836
  /**
137724
- * Closes the popover.
137837
+ * Closes the menu.
137725
137838
  */
137726
137839
  close(): void;
137727
137840
  /**
137728
- * Destroys all the items in the aggregation {@link #getItems items}.
137729
- *
137730
- *
137731
- * @returns Reference to `this` in order to allow method chaining
137732
- */
137733
- destroyItems(): this;
137734
- /**
137735
- * Destroys all the quickActions in the aggregation {@link #getQuickActions quickActions}.
137736
- *
137737
- *
137738
- * @returns Reference to `this` in order to allow method chaining
137739
- */
137740
- destroyQuickActions(): this;
137741
- /**
137742
- * Detaches event handler `fnFunction` from the {@link #event:afterClose afterClose} event of this `sap.m.table.columnmenu.Menu`.
137841
+ * Detaches event handler `fnFunction` from the {@link #event:afterClose afterClose} event of this `sap.m.table.columnmenu.MenuBase`.
137743
137842
  *
137744
137843
  * The passed function and listener object must match the ones used for event registration.
137745
137844
  *
137746
- * @since 1.112
137747
137845
  *
137748
137846
  * @returns Reference to `this` in order to allow method chaining
137749
137847
  */
@@ -137758,7 +137856,7 @@ declare module "sap/m/table/columnmenu/Menu" {
137758
137856
  oListener?: object
137759
137857
  ): this;
137760
137858
  /**
137761
- * Detaches event handler `fnFunction` from the {@link #event:beforeOpen beforeOpen} event of this `sap.m.table.columnmenu.Menu`.
137859
+ * Detaches event handler `fnFunction` from the {@link #event:beforeOpen beforeOpen} event of this `sap.m.table.columnmenu.MenuBase`.
137762
137860
  *
137763
137861
  * The passed function and listener object must match the ones used for event registration.
137764
137862
  *
@@ -137769,7 +137867,7 @@ declare module "sap/m/table/columnmenu/Menu" {
137769
137867
  /**
137770
137868
  * The function to be called, when the event occurs
137771
137869
  */
137772
- fnFunction: (p1: Menu$BeforeOpenEvent) => void,
137870
+ fnFunction: (p1: MenuBase$BeforeOpenEvent) => void,
137773
137871
  /**
137774
137872
  * Context object on which the given function had to be called
137775
137873
  */
@@ -137778,7 +137876,6 @@ declare module "sap/m/table/columnmenu/Menu" {
137778
137876
  /**
137779
137877
  * Fires event {@link #event:afterClose afterClose} to attached listeners.
137780
137878
  *
137781
- * @since 1.112
137782
137879
  * @ui5-protected Do not call from applications (only from related classes in the framework)
137783
137880
  *
137784
137881
  * @returns Reference to `this` in order to allow method chaining
@@ -137803,207 +137900,77 @@ declare module "sap/m/table/columnmenu/Menu" {
137803
137900
  /**
137804
137901
  * Parameters to pass along with the event
137805
137902
  */
137806
- mParameters?: Menu$BeforeOpenEventParameters
137903
+ mParameters?: MenuBase$BeforeOpenEventParameters
137807
137904
  ): boolean;
137808
137905
  /**
137809
- * Returns the sap.ui.core.aria.HasPopup<\code> type of the menu.
137906
+ * Returns the `sap.ui.core.aria.HasPopup` type of the menu.
137810
137907
  *
137811
- * @since 1.98.0
137812
137908
  *
137813
137909
  * @returns `sap.ui.core.aria.HasPopup` type of the menu
137814
137910
  */
137815
137911
  getAriaHasPopupType(): aria.HasPopup | keyof typeof aria.HasPopup;
137816
137912
  /**
137817
- * Gets content of aggregation {@link #getItems items}.
137818
- *
137819
- * Defines the items of the column menu.
137820
- */
137821
- getItems(): ItemBase[];
137822
- /**
137823
- * Gets content of aggregation {@link #getQuickActions quickActions}.
137824
- *
137825
- * Defines the quick actions of the column menu.
137826
- */
137827
- getQuickActions(): QuickActionBase[];
137828
- /**
137829
- * Checks for the provided `sap.m.table.columnmenu.ItemBase` in the aggregation {@link #getItems items}.
137830
- * and returns its index if found or -1 otherwise.
137913
+ * Determines whether the menu is open.
137831
137914
  *
137832
137915
  *
137833
- * @returns The index of the provided control in the aggregation if found, or -1 otherwise
137916
+ * @returns Whether the menu is open
137834
137917
  */
137835
- indexOfItem(
137836
- /**
137837
- * The item whose index is looked for
137838
- */
137839
- oItem: ItemBase
137840
- ): int;
137841
- /**
137842
- * Checks for the provided `sap.m.table.columnmenu.QuickActionBase` in the aggregation {@link #getQuickActions quickActions}.
137843
- * and returns its index if found or -1 otherwise.
137844
- *
137845
- *
137846
- * @returns The index of the provided control in the aggregation if found, or -1 otherwise
137847
- */
137848
- indexOfQuickAction(
137849
- /**
137850
- * The quickAction whose index is looked for
137851
- */
137852
- oQuickAction: QuickActionBase
137853
- ): int;
137854
- /**
137855
- * Inserts a item into the aggregation {@link #getItems items}.
137856
- *
137857
- *
137858
- * @returns Reference to `this` in order to allow method chaining
137859
- */
137860
- insertItem(
137861
- /**
137862
- * The item to insert; if empty, nothing is inserted
137863
- */
137864
- oItem: ItemBase,
137865
- /**
137866
- * The `0`-based index the item should be inserted at; for a negative value of `iIndex`, the item is inserted
137867
- * at position 0; for a value greater than the current size of the aggregation, the item is inserted at
137868
- * the last position
137869
- */
137870
- iIndex: int
137871
- ): this;
137872
- /**
137873
- * Inserts a quickAction into the aggregation {@link #getQuickActions quickActions}.
137874
- *
137875
- *
137876
- * @returns Reference to `this` in order to allow method chaining
137877
- */
137878
- insertQuickAction(
137879
- /**
137880
- * The quickAction to insert; if empty, nothing is inserted
137881
- */
137882
- oQuickAction: QuickActionBase,
137883
- /**
137884
- * The `0`-based index the quickAction should be inserted at; for a negative value of `iIndex`, the quickAction
137885
- * is inserted at position 0; for a value greater than the current size of the aggregation, the quickAction
137886
- * is inserted at the last position
137887
- */
137888
- iIndex: int
137889
- ): this;
137918
+ isOpen(): boolean;
137890
137919
  /**
137891
137920
  * Opens the popover at the specified target.
137892
137921
  */
137893
137922
  openBy(
137894
137923
  /**
137895
- * This is the control or HTMLElement where the popover is placed.
137924
+ * This is the control or HTMLElement where the popover is placed
137896
137925
  */
137897
- oAnchor: Control | HTMLElement,
137898
- /**
137899
- * Whether to suppress the beforeOpen event.
137900
- */
137901
- bSuppressEvent?: boolean
137926
+ oAnchor: UI5Element | HTMLElement
137902
137927
  ): void;
137903
- /**
137904
- * Removes all the controls from the aggregation {@link #getItems items}.
137905
- *
137906
- * Additionally, it unregisters them from the hosting UIArea.
137907
- *
137908
- *
137909
- * @returns An array of the removed elements (might be empty)
137910
- */
137911
- removeAllItems(): ItemBase[];
137912
- /**
137913
- * Removes all the controls from the aggregation {@link #getQuickActions quickActions}.
137914
- *
137915
- * Additionally, it unregisters them from the hosting UIArea.
137916
- *
137917
- *
137918
- * @returns An array of the removed elements (might be empty)
137919
- */
137920
- removeAllQuickActions(): QuickActionBase[];
137921
- /**
137922
- * Removes a item from the aggregation {@link #getItems items}.
137923
- *
137924
- *
137925
- * @returns The removed item or `null`
137926
- */
137927
- removeItem(
137928
- /**
137929
- * The item to remove or its index or id
137930
- */
137931
- vItem: int | string | ItemBase
137932
- ): ItemBase | null;
137933
- /**
137934
- * Removes a quickAction from the aggregation {@link #getQuickActions quickActions}.
137935
- *
137936
- *
137937
- * @returns The removed quickAction or `null`
137938
- */
137939
- removeQuickAction(
137940
- /**
137941
- * The quickAction to remove or its index or id
137942
- */
137943
- vQuickAction: int | string | QuickActionBase
137944
- ): QuickActionBase | null;
137945
137928
  }
137946
137929
  /**
137947
- * Describes the settings that can be provided to the Menu constructor.
137930
+ * Describes the settings that can be provided to the MenuBase constructor.
137948
137931
  */
137949
- export interface $MenuSettings extends $ControlSettings {
137932
+ export interface $MenuBaseSettings extends $ControlSettings {
137950
137933
  /**
137951
- * Defines the quick actions of the column menu.
137934
+ * Fired before the column menu is opened.
137952
137935
  */
137953
- quickActions?:
137954
- | QuickActionBase[]
137955
- | QuickActionBase
137956
- | AggregationBindingInfo
137957
- | `{${string}}`;
137936
+ beforeOpen?: (oEvent: MenuBase$BeforeOpenEvent) => void;
137958
137937
 
137959
137938
  /**
137960
- * Defines the items of the column menu.
137961
- */
137962
- items?: ItemBase[] | ItemBase | AggregationBindingInfo | `{${string}}`;
137963
-
137964
- /**
137965
- * Fired before the column menu is opened
137966
- */
137967
- beforeOpen?: (oEvent: Menu$BeforeOpenEvent) => void;
137968
-
137969
- /**
137970
- * Fires after the column menu is closed
137971
- *
137972
- * @since 1.112
137939
+ * Fired after the column menu has been closed.
137973
137940
  */
137974
137941
  afterClose?: (oEvent: Event) => void;
137975
137942
  }
137976
137943
 
137977
137944
  /**
137978
- * Parameters of the Menu#afterClose event.
137945
+ * Parameters of the MenuBase#afterClose event.
137979
137946
  */
137980
- export interface Menu$AfterCloseEventParameters {}
137947
+ export interface MenuBase$AfterCloseEventParameters {}
137981
137948
 
137982
137949
  /**
137983
- * Event object of the Menu#afterClose event.
137950
+ * Event object of the MenuBase#afterClose event.
137984
137951
  */
137985
- export type Menu$AfterCloseEvent = Event<
137986
- Menu$AfterCloseEventParameters,
137987
- Menu
137952
+ export type MenuBase$AfterCloseEvent = Event<
137953
+ MenuBase$AfterCloseEventParameters,
137954
+ MenuBase
137988
137955
  >;
137989
137956
 
137990
137957
  /**
137991
- * Parameters of the Menu#beforeOpen event.
137958
+ * Parameters of the MenuBase#beforeOpen event.
137992
137959
  */
137993
- export interface Menu$BeforeOpenEventParameters {
137960
+ export interface MenuBase$BeforeOpenEventParameters {
137994
137961
  /**
137995
- * The element for which the menu is opened. If it is an `HTMLElement`, the closest control is passed for
137996
- * 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).
137997
137964
  */
137998
137965
  openBy?: UI5Element;
137999
137966
  }
138000
137967
 
138001
137968
  /**
138002
- * Event object of the Menu#beforeOpen event.
137969
+ * Event object of the MenuBase#beforeOpen event.
138003
137970
  */
138004
- export type Menu$BeforeOpenEvent = Event<
138005
- Menu$BeforeOpenEventParameters,
138006
- Menu
137971
+ export type MenuBase$BeforeOpenEvent = Event<
137972
+ MenuBase$BeforeOpenEventParameters,
137973
+ MenuBase
138007
137974
  >;
138008
137975
  }
138009
137976
 
@@ -142415,7 +142382,7 @@ declare module "sap/m/TableSelectDialog" {
142415
142382
  * visible upon opening the dialog, these contexts are not loaded. Therefore, these items will not be included
142416
142383
  * in the selectedContexts array unless they are displayed at least once.
142417
142384
  */
142418
- selectedContexts?: string;
142385
+ selectedContexts?: string[];
142419
142386
  }
142420
142387
 
142421
142388
  /**
@@ -168007,8 +167974,6 @@ declare module "sap/m/ViewSettingsFilterItem" {
168007
167974
  $ViewSettingsItemSettings,
168008
167975
  } from "sap/m/ViewSettingsItem";
168009
167976
 
168010
- import Event from "sap/ui/base/Event";
168011
-
168012
167977
  import {
168013
167978
  AggregationBindingInfo,
168014
167979
  PropertyBindingInfo,
@@ -168016,6 +167981,8 @@ declare module "sap/m/ViewSettingsFilterItem" {
168016
167981
 
168017
167982
  import ElementMetadata from "sap/ui/core/ElementMetadata";
168018
167983
 
167984
+ import Event from "sap/ui/base/Event";
167985
+
168019
167986
  /**
168020
167987
  * A ViewSettingsFilterItem control is used for modelling filter behaviour in the ViewSettingsDialog. It
168021
167988
  * is derived from a core Item, but does not support the base class properties like textDirection and enabled.
@@ -168098,55 +168065,6 @@ declare module "sap/m/ViewSettingsFilterItem" {
168098
168065
  */
168099
168066
  oItem: ViewSettingsItem
168100
168067
  ): this;
168101
- /**
168102
- * Attaches event handler `fnFunction` to the {@link #event:filterDetailItemsAggregationChange filterDetailItemsAggregationChange }
168103
- * event of this `sap.m.ViewSettingsFilterItem`.
168104
- *
168105
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
168106
- * otherwise it will be bound to this `sap.m.ViewSettingsFilterItem` itself.
168107
- *
168108
- * Let the outside world know that the filter detail aggregation was changed.
168109
- *
168110
- *
168111
- * @returns Reference to `this` in order to allow method chaining
168112
- */
168113
- attachFilterDetailItemsAggregationChange(
168114
- /**
168115
- * An application-specific payload object that will be passed to the event handler along with the event
168116
- * object when firing the event
168117
- */
168118
- oData: object,
168119
- /**
168120
- * The function to be called when the event occurs
168121
- */
168122
- fnFunction: (p1: Event) => void,
168123
- /**
168124
- * Context object to call the event handler with. Defaults to this `sap.m.ViewSettingsFilterItem` itself
168125
- */
168126
- oListener?: object
168127
- ): this;
168128
- /**
168129
- * Attaches event handler `fnFunction` to the {@link #event:filterDetailItemsAggregationChange filterDetailItemsAggregationChange }
168130
- * event of this `sap.m.ViewSettingsFilterItem`.
168131
- *
168132
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
168133
- * otherwise it will be bound to this `sap.m.ViewSettingsFilterItem` itself.
168134
- *
168135
- * Let the outside world know that the filter detail aggregation was changed.
168136
- *
168137
- *
168138
- * @returns Reference to `this` in order to allow method chaining
168139
- */
168140
- attachFilterDetailItemsAggregationChange(
168141
- /**
168142
- * The function to be called when the event occurs
168143
- */
168144
- fnFunction: (p1: Event) => void,
168145
- /**
168146
- * Context object to call the event handler with. Defaults to this `sap.m.ViewSettingsFilterItem` itself
168147
- */
168148
- oListener?: object
168149
- ): this;
168150
168068
  /**
168151
168069
  * Binds aggregation {@link #getItems items} to model data.
168152
168070
  *
@@ -168169,39 +168087,6 @@ declare module "sap/m/ViewSettingsFilterItem" {
168169
168087
  * @returns Reference to `this` in order to allow method chaining
168170
168088
  */
168171
168089
  destroyItems(): this;
168172
- /**
168173
- * Detaches event handler `fnFunction` from the {@link #event:filterDetailItemsAggregationChange filterDetailItemsAggregationChange }
168174
- * event of this `sap.m.ViewSettingsFilterItem`.
168175
- *
168176
- * The passed function and listener object must match the ones used for event registration.
168177
- *
168178
- *
168179
- * @returns Reference to `this` in order to allow method chaining
168180
- */
168181
- detachFilterDetailItemsAggregationChange(
168182
- /**
168183
- * The function to be called, when the event occurs
168184
- */
168185
- fnFunction: (p1: Event) => void,
168186
- /**
168187
- * Context object on which the given function had to be called
168188
- */
168189
- oListener?: object
168190
- ): this;
168191
- /**
168192
- * Fires event {@link #event:filterDetailItemsAggregationChange filterDetailItemsAggregationChange} to attached
168193
- * listeners.
168194
- *
168195
- * @ui5-protected Do not call from applications (only from related classes in the framework)
168196
- *
168197
- * @returns Reference to `this` in order to allow method chaining
168198
- */
168199
- fireFilterDetailItemsAggregationChange(
168200
- /**
168201
- * Parameters to pass along with the event
168202
- */
168203
- mParameters?: object
168204
- ): this;
168205
168090
  /**
168206
168091
  * Gets content of aggregation {@link #getItems items}.
168207
168092
  *
@@ -168317,11 +168202,6 @@ declare module "sap/m/ViewSettingsFilterItem" {
168317
168202
  | ViewSettingsItem
168318
168203
  | AggregationBindingInfo
168319
168204
  | `{${string}}`;
168320
-
168321
- /**
168322
- * Let the outside world know that the filter detail aggregation was changed.
168323
- */
168324
- filterDetailItemsAggregationChange?: (oEvent: Event) => void;
168325
168205
  }
168326
168206
 
168327
168207
  /**
@@ -168419,87 +168299,6 @@ declare module "sap/m/ViewSettingsItem" {
168419
168299
  * @returns Metadata object describing this class
168420
168300
  */
168421
168301
  static getMetadata(): ElementMetadata;
168422
- /**
168423
- * Attaches event handler `fnFunction` to the {@link #event:itemPropertyChanged itemPropertyChanged} event
168424
- * of this `sap.m.ViewSettingsItem`.
168425
- *
168426
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
168427
- * otherwise it will be bound to this `sap.m.ViewSettingsItem` itself.
168428
- *
168429
- * Let the outside world know that some of its properties has changed.
168430
- *
168431
- *
168432
- * @returns Reference to `this` in order to allow method chaining
168433
- */
168434
- attachItemPropertyChanged(
168435
- /**
168436
- * An application-specific payload object that will be passed to the event handler along with the event
168437
- * object when firing the event
168438
- */
168439
- oData: object,
168440
- /**
168441
- * The function to be called when the event occurs
168442
- */
168443
- fnFunction: (p1: ViewSettingsItem$ItemPropertyChangedEvent) => void,
168444
- /**
168445
- * Context object to call the event handler with. Defaults to this `sap.m.ViewSettingsItem` itself
168446
- */
168447
- oListener?: object
168448
- ): this;
168449
- /**
168450
- * Attaches event handler `fnFunction` to the {@link #event:itemPropertyChanged itemPropertyChanged} event
168451
- * of this `sap.m.ViewSettingsItem`.
168452
- *
168453
- * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
168454
- * otherwise it will be bound to this `sap.m.ViewSettingsItem` itself.
168455
- *
168456
- * Let the outside world know that some of its properties has changed.
168457
- *
168458
- *
168459
- * @returns Reference to `this` in order to allow method chaining
168460
- */
168461
- attachItemPropertyChanged(
168462
- /**
168463
- * The function to be called when the event occurs
168464
- */
168465
- fnFunction: (p1: ViewSettingsItem$ItemPropertyChangedEvent) => void,
168466
- /**
168467
- * Context object to call the event handler with. Defaults to this `sap.m.ViewSettingsItem` itself
168468
- */
168469
- oListener?: object
168470
- ): this;
168471
- /**
168472
- * Detaches event handler `fnFunction` from the {@link #event:itemPropertyChanged itemPropertyChanged} event
168473
- * of this `sap.m.ViewSettingsItem`.
168474
- *
168475
- * The passed function and listener object must match the ones used for event registration.
168476
- *
168477
- *
168478
- * @returns Reference to `this` in order to allow method chaining
168479
- */
168480
- detachItemPropertyChanged(
168481
- /**
168482
- * The function to be called, when the event occurs
168483
- */
168484
- fnFunction: (p1: ViewSettingsItem$ItemPropertyChangedEvent) => void,
168485
- /**
168486
- * Context object on which the given function had to be called
168487
- */
168488
- oListener?: object
168489
- ): this;
168490
- /**
168491
- * Fires event {@link #event:itemPropertyChanged itemPropertyChanged} to attached listeners.
168492
- *
168493
- * @ui5-protected Do not call from applications (only from related classes in the framework)
168494
- *
168495
- * @returns Reference to `this` in order to allow method chaining
168496
- */
168497
- fireItemPropertyChanged(
168498
- /**
168499
- * Parameters to pass along with the event
168500
- */
168501
- mParameters?: ViewSettingsItem$ItemPropertyChangedEventParameters
168502
- ): this;
168503
168302
  /**
168504
168303
  * Gets current value of property {@link #getSelected selected}.
168505
168304
  *
@@ -168579,13 +168378,6 @@ declare module "sap/m/ViewSettingsItem" {
168579
168378
  * @since 1.121.0
168580
168379
  */
168581
168380
  wrapping?: boolean | PropertyBindingInfo | `{${string}}`;
168582
-
168583
- /**
168584
- * Let the outside world know that some of its properties has changed.
168585
- */
168586
- itemPropertyChanged?: (
168587
- oEvent: ViewSettingsItem$ItemPropertyChangedEvent
168588
- ) => void;
168589
168381
  }
168590
168382
 
168591
168383
  /**
@@ -171009,7 +170801,6 @@ declare namespace sap {
171009
170801
  /**
171010
170802
  * Adds some action to the aggregation {@link #getActions actions}.
171011
170803
  *
171012
- * @ui5-protected Do not call from applications (only from related classes in the framework)
171013
170804
  *
171014
170805
  * @returns Reference to `this` in order to allow method chaining
171015
170806
  */
@@ -171026,7 +170817,6 @@ declare namespace sap {
171026
170817
  *
171027
170818
  * Default value is `false`.
171028
170819
  *
171029
- * @ui5-protected Do not call from applications (only from related classes in the framework)
171030
170820
  *
171031
170821
  * @returns Value of property `enableNav`
171032
170822
  */
@@ -171034,7 +170824,6 @@ declare namespace sap {
171034
170824
  /**
171035
170825
  * Removes a action from the aggregation {@link #getActions actions}.
171036
170826
  *
171037
- * @ui5-protected Do not call from applications (only from related classes in the framework)
171038
170827
  *
171039
170828
  * @returns The removed action or `null`
171040
170829
  */
@@ -171053,7 +170842,6 @@ declare namespace sap {
171053
170842
  *
171054
170843
  * Default value is `false`.
171055
170844
  *
171056
- * @ui5-protected Do not call from applications (only from related classes in the framework)
171057
170845
  *
171058
170846
  * @returns Reference to `this` in order to allow method chaining
171059
170847
  */
@@ -171605,6 +171393,8 @@ declare namespace sap {
171605
171393
 
171606
171394
  "sap/m/table/columnmenu/Menu": undefined;
171607
171395
 
171396
+ "sap/m/table/columnmenu/MenuBase": undefined;
171397
+
171608
171398
  "sap/m/table/columnmenu/QuickAction": undefined;
171609
171399
 
171610
171400
  "sap/m/table/columnmenu/QuickActionBase": undefined;