@openui5/types 1.121.1 → 1.122.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.121.1
1
+ // For Library Version: 1.122.0
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -436,6 +436,24 @@ declare module "sap/m/library" {
436
436
  */
437
437
  VisiblePages = "VisiblePages",
438
438
  }
439
+ /**
440
+ * Defines the rendering type of the TileAttribute
441
+ *
442
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ContentConfigType'.
443
+ *
444
+ * @since 1.122
445
+ * @experimental (since 1.122)
446
+ */
447
+ export enum ContentConfigType {
448
+ /**
449
+ * Renders a link inside the TileAttribute
450
+ */
451
+ Link = "Link",
452
+ /**
453
+ * Renders a text inside the TileAttribute
454
+ */
455
+ Text = "Text",
456
+ }
439
457
  /**
440
458
  * A subset of DateTimeInput types that fit to a simple API returning one string.
441
459
  *
@@ -3628,6 +3646,48 @@ declare module "sap/m/library" {
3628
3646
  */
3629
3647
  export type ValueCSSColor = string;
3630
3648
 
3649
+ /**
3650
+ * An object type that represents the {@link sap.m.VariantManagement} `manage`-event property `exe`.
3651
+ */
3652
+ export type VariantManagementExe = {
3653
+ /**
3654
+ * the variant key.
3655
+ */
3656
+ key: string;
3657
+ /**
3658
+ * flag describing the associated Appy Automatically indicator.
3659
+ */
3660
+ exe: boolean;
3661
+ };
3662
+
3663
+ /**
3664
+ * An object type that represents the {@link sap.m.VariantManagement} `manage`-event property `fav`.
3665
+ */
3666
+ export type VariantManagementFav = {
3667
+ /**
3668
+ * the variant key.
3669
+ */
3670
+ key: string;
3671
+ /**
3672
+ * flag describing the associated Favorite indicator.
3673
+ */
3674
+ visible: boolean;
3675
+ };
3676
+
3677
+ /**
3678
+ * An object type that represents the {@link sap.m.VariantManagement} `manage`-event property `rename`.
3679
+ */
3680
+ export type VariantManagementRename = {
3681
+ /**
3682
+ * the variant key.
3683
+ */
3684
+ key: string;
3685
+ /**
3686
+ * the new title of the variant.
3687
+ */
3688
+ name: string;
3689
+ };
3690
+
3631
3691
  /**
3632
3692
  * Types for the placement of message Popover control.
3633
3693
  *
@@ -5138,6 +5198,386 @@ declare module "sap/m/ActionSheet" {
5138
5198
  >;
5139
5199
  }
5140
5200
 
5201
+ declare module "sap/m/ActionTile" {
5202
+ import {
5203
+ default as GenericTile,
5204
+ $GenericTileSettings,
5205
+ } from "sap/m/GenericTile";
5206
+
5207
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
5208
+
5209
+ /**
5210
+ * Used to create a customizable tile for your todos and situations within the new My Home in SAP S/4HANA
5211
+ * cloud
5212
+ *
5213
+ * @since 1.122
5214
+ * @experimental (since 1.122)
5215
+ */
5216
+ export default class ActionTile extends GenericTile {
5217
+ /**
5218
+ * Constructor for a new sap.m.ActionTile control.
5219
+ *
5220
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
5221
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
5222
+ * of the syntax of the settings object.
5223
+ *
5224
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.GenericTile#constructor sap.m.GenericTile }
5225
+ * can be used.
5226
+ */
5227
+ constructor(
5228
+ /**
5229
+ * initial settings for the new control
5230
+ */
5231
+ mSettings?: $ActionTileSettings
5232
+ );
5233
+ /**
5234
+ * Constructor for a new sap.m.ActionTile control.
5235
+ *
5236
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
5237
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
5238
+ * of the syntax of the settings object.
5239
+ *
5240
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.GenericTile#constructor sap.m.GenericTile }
5241
+ * can be used.
5242
+ */
5243
+ constructor(
5244
+ /**
5245
+ * ID for the new control, generated automatically if no ID is given
5246
+ */
5247
+ sId?: string,
5248
+ /**
5249
+ * initial settings for the new control
5250
+ */
5251
+ mSettings?: $ActionTileSettings
5252
+ );
5253
+
5254
+ /**
5255
+ * Creates a new subclass of class sap.m.ActionTile with name `sClassName` and enriches it with the information
5256
+ * contained in `oClassInfo`.
5257
+ *
5258
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.GenericTile.extend}.
5259
+ *
5260
+ *
5261
+ * @returns Created class / constructor function
5262
+ */
5263
+ static extend<T extends Record<string, unknown>>(
5264
+ /**
5265
+ * Name of the class being created
5266
+ */
5267
+ sClassName: string,
5268
+ /**
5269
+ * Object literal with information about the class
5270
+ */
5271
+ oClassInfo?: sap.ClassInfo<T, ActionTile>,
5272
+ /**
5273
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5274
+ * used by this class
5275
+ */
5276
+ FNMetaImpl?: Function
5277
+ ): Function;
5278
+ /**
5279
+ * Returns a metadata object for class sap.m.ActionTile.
5280
+ *
5281
+ *
5282
+ * @returns Metadata object describing this class
5283
+ */
5284
+ static getMetadata(): ElementMetadata;
5285
+ }
5286
+
5287
+ export interface $ActionTileSettings extends $GenericTileSettings {}
5288
+ }
5289
+
5290
+ declare module "sap/m/ActionTileContent" {
5291
+ import {
5292
+ default as TileContent,
5293
+ $TileContentSettings,
5294
+ } from "sap/m/TileContent";
5295
+
5296
+ import TileAttribute from "sap/m/TileAttribute";
5297
+
5298
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
5299
+
5300
+ import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
5301
+
5302
+ import Link from "sap/m/Link";
5303
+
5304
+ import Event from "sap/ui/base/Event";
5305
+
5306
+ /**
5307
+ * This control is used within the ActionTile control and it renders the values from the custom attribute
5308
+ *
5309
+ * @since 1.122
5310
+ * @experimental (since 1.122)
5311
+ */
5312
+ export default class ActionTileContent extends TileContent {
5313
+ /**
5314
+ * Constructor for a new sap.m.ActionTileContent control.
5315
+ *
5316
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
5317
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
5318
+ * of the syntax of the settings object.
5319
+ */
5320
+ constructor(
5321
+ /**
5322
+ * initial settings for the new control
5323
+ */
5324
+ mSettings?: $ActionTileContentSettings
5325
+ );
5326
+ /**
5327
+ * Constructor for a new sap.m.ActionTileContent control.
5328
+ *
5329
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
5330
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
5331
+ * of the syntax of the settings object.
5332
+ */
5333
+ constructor(
5334
+ /**
5335
+ * id for the new control, generated automatically if no id is given
5336
+ */
5337
+ sId?: string,
5338
+ /**
5339
+ * initial settings for the new control
5340
+ */
5341
+ mSettings?: $ActionTileContentSettings
5342
+ );
5343
+
5344
+ /**
5345
+ * Creates a new subclass of class sap.m.ActionTileContent with name `sClassName` and enriches it with the
5346
+ * information contained in `oClassInfo`.
5347
+ *
5348
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.TileContent.extend}.
5349
+ *
5350
+ *
5351
+ * @returns Created class / constructor function
5352
+ */
5353
+ static extend<T extends Record<string, unknown>>(
5354
+ /**
5355
+ * Name of the class being created
5356
+ */
5357
+ sClassName: string,
5358
+ /**
5359
+ * Object literal with information about the class
5360
+ */
5361
+ oClassInfo?: sap.ClassInfo<T, ActionTileContent>,
5362
+ /**
5363
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5364
+ * used by this class
5365
+ */
5366
+ FNMetaImpl?: Function
5367
+ ): Function;
5368
+ /**
5369
+ * Returns a metadata object for class sap.m.ActionTileContent.
5370
+ *
5371
+ *
5372
+ * @returns Metadata object describing this class
5373
+ */
5374
+ static getMetadata(): ElementMetadata;
5375
+ /**
5376
+ * Adds some attribute to the aggregation {@link #getAttributes attributes}.
5377
+ *
5378
+ *
5379
+ * @returns Reference to `this` in order to allow method chaining
5380
+ */
5381
+ addAttribute(
5382
+ /**
5383
+ * The attribute to add; if empty, nothing is inserted
5384
+ */
5385
+ oAttribute: TileAttribute
5386
+ ): this;
5387
+ /**
5388
+ * Attaches event handler `fnFunction` to the {@link #event:linkPress linkPress} event of this `sap.m.ActionTileContent`.
5389
+ *
5390
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
5391
+ * otherwise it will be bound to this `sap.m.ActionTileContent` itself.
5392
+ *
5393
+ * The event is triggered when the user clicks on the link
5394
+ *
5395
+ *
5396
+ * @returns Reference to `this` in order to allow method chaining
5397
+ */
5398
+ attachLinkPress(
5399
+ /**
5400
+ * An application-specific payload object that will be passed to the event handler along with the event
5401
+ * object when firing the event
5402
+ */
5403
+ oData: object,
5404
+ /**
5405
+ * The function to be called when the event occurs
5406
+ */
5407
+ fnFunction: (p1: ActionTileContent$LinkPressEvent) => void,
5408
+ /**
5409
+ * Context object to call the event handler with. Defaults to this `sap.m.ActionTileContent` itself
5410
+ */
5411
+ oListener?: object
5412
+ ): this;
5413
+ /**
5414
+ * Attaches event handler `fnFunction` to the {@link #event:linkPress linkPress} event of this `sap.m.ActionTileContent`.
5415
+ *
5416
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
5417
+ * otherwise it will be bound to this `sap.m.ActionTileContent` itself.
5418
+ *
5419
+ * The event is triggered when the user clicks on the link
5420
+ *
5421
+ *
5422
+ * @returns Reference to `this` in order to allow method chaining
5423
+ */
5424
+ attachLinkPress(
5425
+ /**
5426
+ * The function to be called when the event occurs
5427
+ */
5428
+ fnFunction: (p1: ActionTileContent$LinkPressEvent) => void,
5429
+ /**
5430
+ * Context object to call the event handler with. Defaults to this `sap.m.ActionTileContent` itself
5431
+ */
5432
+ oListener?: object
5433
+ ): this;
5434
+ /**
5435
+ * Destroys all the attributes in the aggregation {@link #getAttributes attributes}.
5436
+ *
5437
+ *
5438
+ * @returns Reference to `this` in order to allow method chaining
5439
+ */
5440
+ destroyAttributes(): this;
5441
+ /**
5442
+ * Detaches event handler `fnFunction` from the {@link #event:linkPress linkPress} event of this `sap.m.ActionTileContent`.
5443
+ *
5444
+ * The passed function and listener object must match the ones used for event registration.
5445
+ *
5446
+ *
5447
+ * @returns Reference to `this` in order to allow method chaining
5448
+ */
5449
+ detachLinkPress(
5450
+ /**
5451
+ * The function to be called, when the event occurs
5452
+ */
5453
+ fnFunction: (p1: ActionTileContent$LinkPressEvent) => void,
5454
+ /**
5455
+ * Context object on which the given function had to be called
5456
+ */
5457
+ oListener?: object
5458
+ ): this;
5459
+ /**
5460
+ * Fires event {@link #event:linkPress linkPress} to attached listeners.
5461
+ *
5462
+ * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5463
+ * event object. The return value of this method indicates whether the default action should be executed.
5464
+ *
5465
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5466
+ *
5467
+ * @returns Whether or not to prevent the default action
5468
+ */
5469
+ fireLinkPress(
5470
+ /**
5471
+ * Parameters to pass along with the event
5472
+ */
5473
+ mParameters?: ActionTileContent$LinkPressEventParameters
5474
+ ): boolean;
5475
+ /**
5476
+ * Gets content of aggregation {@link #getAttributes attributes}.
5477
+ *
5478
+ * Holds detail of an attribute used in the ActionTile.
5479
+ */
5480
+ getAttributes(): TileAttribute[];
5481
+ /**
5482
+ * Checks for the provided `sap.m.TileAttribute` in the aggregation {@link #getAttributes attributes}. and
5483
+ * returns its index if found or -1 otherwise.
5484
+ *
5485
+ *
5486
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
5487
+ */
5488
+ indexOfAttribute(
5489
+ /**
5490
+ * The attribute whose index is looked for
5491
+ */
5492
+ oAttribute: TileAttribute
5493
+ ): int;
5494
+ /**
5495
+ * Inserts a attribute into the aggregation {@link #getAttributes attributes}.
5496
+ *
5497
+ *
5498
+ * @returns Reference to `this` in order to allow method chaining
5499
+ */
5500
+ insertAttribute(
5501
+ /**
5502
+ * The attribute to insert; if empty, nothing is inserted
5503
+ */
5504
+ oAttribute: TileAttribute,
5505
+ /**
5506
+ * The `0`-based index the attribute should be inserted at; for a negative value of `iIndex`, the attribute
5507
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the attribute
5508
+ * is inserted at the last position
5509
+ */
5510
+ iIndex: int
5511
+ ): this;
5512
+ /**
5513
+ * Removes all the controls from the aggregation {@link #getAttributes attributes}.
5514
+ *
5515
+ * Additionally, it unregisters them from the hosting UIArea.
5516
+ *
5517
+ *
5518
+ * @returns An array of the removed elements (might be empty)
5519
+ */
5520
+ removeAllAttributes(): TileAttribute[];
5521
+ /**
5522
+ * Removes a attribute from the aggregation {@link #getAttributes attributes}.
5523
+ *
5524
+ *
5525
+ * @returns The removed attribute or `null`
5526
+ */
5527
+ removeAttribute(
5528
+ /**
5529
+ * The attribute to remove or its index or id
5530
+ */
5531
+ vAttribute: int | string | TileAttribute
5532
+ ): TileAttribute | null;
5533
+ }
5534
+
5535
+ export interface $ActionTileContentSettings extends $TileContentSettings {
5536
+ /**
5537
+ * Holds detail of an attribute used in the ActionTile.
5538
+ */
5539
+ attributes?:
5540
+ | TileAttribute[]
5541
+ | TileAttribute
5542
+ | AggregationBindingInfo
5543
+ | `{${string}}`;
5544
+
5545
+ /**
5546
+ * The event is triggered when the user clicks on the link
5547
+ */
5548
+ linkPress?: (oEvent: ActionTileContent$LinkPressEvent) => void;
5549
+ }
5550
+
5551
+ export interface ActionTileContent$LinkPressEventParameters {
5552
+ /**
5553
+ * Indicates whether the CTRL key was pressed when the link was selected.
5554
+ */
5555
+ ctrlKey?: boolean;
5556
+
5557
+ /**
5558
+ * Indicates whether the "meta" key was pressed when the link was selected.
5559
+ *
5560
+ * On Macintosh keyboards, this is the command key (⌘). On Windows keyboards, this is the windows key (⊞).
5561
+ */
5562
+ metaKey?: boolean;
5563
+
5564
+ /**
5565
+ * Returns the TileAttribute instance of the clicked link
5566
+ */
5567
+ attribute?: TileAttribute;
5568
+
5569
+ /**
5570
+ * Returns the link instance
5571
+ */
5572
+ link?: Link;
5573
+ }
5574
+
5575
+ export type ActionTileContent$LinkPressEvent = Event<
5576
+ ActionTileContent$LinkPressEventParameters,
5577
+ ActionTileContent
5578
+ >;
5579
+ }
5580
+
5141
5581
  declare module "sap/m/App" {
5142
5582
  import {
5143
5583
  default as NavContainer,
@@ -12638,7 +13078,8 @@ declare module "sap/m/ColorPalette" {
12638
13078
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
12639
13079
  * otherwise it will be bound to this `sap.m.ColorPalette` itself.
12640
13080
  *
12641
- * Fired when the user selects a color.
13081
+ * Fired when the user selects a color. Note: The `selectedColor` property is updated after the event is
13082
+ * fired. Use the event parameter `value` to retrieve the new value for `selectedColor`.
12642
13083
  *
12643
13084
  *
12644
13085
  * @returns Reference to `this` in order to allow method chaining
@@ -12664,7 +13105,8 @@ declare module "sap/m/ColorPalette" {
12664
13105
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
12665
13106
  * otherwise it will be bound to this `sap.m.ColorPalette` itself.
12666
13107
  *
12667
- * Fired when the user selects a color.
13108
+ * Fired when the user selects a color. Note: The `selectedColor` property is updated after the event is
13109
+ * fired. Use the event parameter `value` to retrieve the new value for `selectedColor`.
12668
13110
  *
12669
13111
  *
12670
13112
  * @returns Reference to `this` in order to allow method chaining
@@ -12804,11 +13246,22 @@ declare module "sap/m/ColorPalette" {
12804
13246
  * @returns Value of property `colors`
12805
13247
  */
12806
13248
  getColors(): CSSColor[];
13249
+ /**
13250
+ * Gets current value of property {@link #getSelectedColor selectedColor}.
13251
+ *
13252
+ * The last selected color in the ColorPalette.
13253
+ *
13254
+ * @since 1.122
13255
+ * @experimental (since 1.122) - this property is in a beta state.
13256
+ *
13257
+ * @returns Value of property `selectedColor`
13258
+ */
13259
+ getSelectedColor(): CSSColor;
12807
13260
  /**
12808
13261
  * Sets a selected color for the ColorPicker control.
12809
13262
  *
12810
13263
  *
12811
- * @returns `this` for method chaining
13264
+ * @returns Reference to `this` for method chaining
12812
13265
  */
12813
13266
  setColorPickerSelectedColor(
12814
13267
  /**
@@ -12835,6 +13288,24 @@ declare module "sap/m/ColorPalette" {
12835
13288
  */
12836
13289
  sColors?: CSSColor[]
12837
13290
  ): this;
13291
+ /**
13292
+ * Sets a new value for property {@link #getSelectedColor selectedColor}.
13293
+ *
13294
+ * The last selected color in the ColorPalette.
13295
+ *
13296
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13297
+ *
13298
+ * @since 1.122
13299
+ * @experimental (since 1.122) - this property is in a beta state.
13300
+ *
13301
+ * @returns Reference to `this` in order to allow method chaining
13302
+ */
13303
+ setSelectedColor(
13304
+ /**
13305
+ * New value for property `selectedColor`
13306
+ */
13307
+ sSelectedColor?: CSSColor
13308
+ ): this;
12838
13309
  }
12839
13310
 
12840
13311
  export interface $ColorPaletteSettings extends $ControlSettings {
@@ -12844,7 +13315,16 @@ declare module "sap/m/ColorPalette" {
12844
13315
  colors?: CSSColor[] | PropertyBindingInfo | `{${string}}`;
12845
13316
 
12846
13317
  /**
12847
- * Fired when the user selects a color.
13318
+ * The last selected color in the ColorPalette.
13319
+ *
13320
+ * @since 1.122
13321
+ * @experimental (since 1.122) - this property is in a beta state.
13322
+ */
13323
+ selectedColor?: CSSColor | PropertyBindingInfo | `{${string}}`;
13324
+
13325
+ /**
13326
+ * Fired when the user selects a color. Note: The `selectedColor` property is updated after the event is
13327
+ * fired. Use the event parameter `value` to retrieve the new value for `selectedColor`.
12848
13328
  */
12849
13329
  colorSelect?: (oEvent: ColorPalette$ColorSelectEvent) => void;
12850
13330
 
@@ -13210,6 +13690,17 @@ declare module "sap/m/ColorPalettePopover" {
13210
13690
  getDisplayMode():
13211
13691
  | ColorPickerDisplayMode
13212
13692
  | keyof typeof ColorPickerDisplayMode;
13693
+ /**
13694
+ * Gets current value of property {@link #getSelectedColor selectedColor}.
13695
+ *
13696
+ * The last selected color in the ColorPalette.
13697
+ *
13698
+ * @since 1.122
13699
+ * @experimental (since 1.122) - this property is in a beta state.
13700
+ *
13701
+ * @returns Value of property `selectedColor`
13702
+ */
13703
+ getSelectedColor(): CSSColor;
13213
13704
  /**
13214
13705
  * Gets current value of property {@link #getShowDefaultColorButton showDefaultColorButton}.
13215
13706
  *
@@ -13259,7 +13750,7 @@ declare module "sap/m/ColorPalettePopover" {
13259
13750
  * When displayed on a tablet or desktop device, the `ColorPalettePopover` is positioned relative to this
13260
13751
  * control
13261
13752
  */
13262
- oCpntrol: Control
13753
+ oControl: Control
13263
13754
  ): Control;
13264
13755
  /**
13265
13756
  * Sets a selected color for the ColorPicker control.
@@ -13330,6 +13821,24 @@ declare module "sap/m/ColorPalettePopover" {
13330
13821
  | ColorPickerDisplayMode
13331
13822
  | keyof typeof ColorPickerDisplayMode
13332
13823
  ): this;
13824
+ /**
13825
+ * Sets a new value for property {@link #getSelectedColor selectedColor}.
13826
+ *
13827
+ * The last selected color in the ColorPalette.
13828
+ *
13829
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13830
+ *
13831
+ * @since 1.122
13832
+ * @experimental (since 1.122) - this property is in a beta state.
13833
+ *
13834
+ * @returns Reference to `this` in order to allow method chaining
13835
+ */
13836
+ setSelectedColor(
13837
+ /**
13838
+ * New value for property `selectedColor`
13839
+ */
13840
+ sSelectedColor?: CSSColor
13841
+ ): this;
13333
13842
  /**
13334
13843
  * Sets a new value for property {@link #getShowDefaultColorButton showDefaultColorButton}.
13335
13844
  *
@@ -13400,6 +13909,14 @@ declare module "sap/m/ColorPalettePopover" {
13400
13909
  */
13401
13910
  colors?: CSSColor[] | PropertyBindingInfo | `{${string}}`;
13402
13911
 
13912
+ /**
13913
+ * The last selected color in the ColorPalette.
13914
+ *
13915
+ * @since 1.122
13916
+ * @experimental (since 1.122) - this property is in a beta state.
13917
+ */
13918
+ selectedColor?: CSSColor | PropertyBindingInfo | `{${string}}`;
13919
+
13403
13920
  /**
13404
13921
  * Indicates if the button for default color selection is available.
13405
13922
  */
@@ -16379,6 +16896,255 @@ declare module "sap/m/ComboBoxTextField" {
16379
16896
  }
16380
16897
  }
16381
16898
 
16899
+ declare module "sap/m/ContentConfig" {
16900
+ import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
16901
+
16902
+ import { LinkAccessibleRole, ContentConfigType } from "sap/m/library";
16903
+
16904
+ import { URI } from "sap/ui/core/library";
16905
+
16906
+ import Link from "sap/m/Link";
16907
+
16908
+ import Text from "sap/m/Text";
16909
+
16910
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
16911
+
16912
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
16913
+
16914
+ /**
16915
+ * This element is used within the TileAttribute control that generates either a link or text
16916
+ *
16917
+ * @since 1.122
16918
+ * @experimental (since 1.122)
16919
+ */
16920
+ export default class ContentConfig extends UI5Element {
16921
+ /**
16922
+ * Constructor for a new ContentConfig.
16923
+ *
16924
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
16925
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
16926
+ * of the syntax of the settings object.
16927
+ */
16928
+ constructor(
16929
+ /**
16930
+ * Initial settings for the new control.
16931
+ */
16932
+ mSettings?: $ContentConfigSettings
16933
+ );
16934
+ /**
16935
+ * Constructor for a new ContentConfig.
16936
+ *
16937
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
16938
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
16939
+ * of the syntax of the settings object.
16940
+ */
16941
+ constructor(
16942
+ /**
16943
+ * ID for the new control, it is generated automatically if an ID is not provided.
16944
+ */
16945
+ sId?: string,
16946
+ /**
16947
+ * Initial settings for the new control.
16948
+ */
16949
+ mSettings?: $ContentConfigSettings
16950
+ );
16951
+
16952
+ /**
16953
+ * Creates a new subclass of class sap.m.ContentConfig with name `sClassName` and enriches it with the information
16954
+ * contained in `oClassInfo`.
16955
+ *
16956
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
16957
+ *
16958
+ *
16959
+ * @returns Created class / constructor function
16960
+ */
16961
+ static extend<T extends Record<string, unknown>>(
16962
+ /**
16963
+ * Name of the class being created
16964
+ */
16965
+ sClassName: string,
16966
+ /**
16967
+ * Object literal with information about the class
16968
+ */
16969
+ oClassInfo?: sap.ClassInfo<T, ContentConfig>,
16970
+ /**
16971
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
16972
+ * used by this class
16973
+ */
16974
+ FNMetaImpl?: Function
16975
+ ): Function;
16976
+ /**
16977
+ * Returns a metadata object for class sap.m.ContentConfig.
16978
+ *
16979
+ *
16980
+ * @returns Metadata object describing this class
16981
+ */
16982
+ static getMetadata(): ElementMetadata;
16983
+ /**
16984
+ * Gets current value of property {@link #getAccessibleRole accessibleRole}.
16985
+ *
16986
+ * Describes the accessibility role of the link:
16987
+ * - `LinkAccessibleRole.Default` - a navigation is expected to the location given in `href` property
16988
+ *
16989
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
16990
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
16991
+ *
16992
+ * Default value is `Default`.
16993
+ *
16994
+ *
16995
+ * @returns Value of property `accessibleRole`
16996
+ */
16997
+ getAccessibleRole(): LinkAccessibleRole | keyof typeof LinkAccessibleRole;
16998
+ /**
16999
+ * Gets current value of property {@link #getHref href}.
17000
+ *
17001
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
17002
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
17003
+ * and register a `press` event handler.
17004
+ *
17005
+ *
17006
+ * @returns Value of property `href`
17007
+ */
17008
+ getHref(): URI;
17009
+ /**
17010
+ * Returns the current element instance
17011
+ */
17012
+ getInnerControl(): Record<string, Link> | Record<string, Text>;
17013
+ /**
17014
+ * Gets current value of property {@link #getText text}.
17015
+ *
17016
+ * Defines the displayed text.
17017
+ *
17018
+ * Default value is `empty string`.
17019
+ *
17020
+ *
17021
+ * @returns Value of property `text`
17022
+ */
17023
+ getText(): string;
17024
+ /**
17025
+ * Gets current value of property {@link #getType type}.
17026
+ *
17027
+ * The type of the ContentConfig.
17028
+ *
17029
+ * Default value is `Text`.
17030
+ *
17031
+ *
17032
+ * @returns Value of property `type`
17033
+ */
17034
+ getType(): ContentConfigType | keyof typeof ContentConfigType;
17035
+ /**
17036
+ * Sets a new value for property {@link #getAccessibleRole accessibleRole}.
17037
+ *
17038
+ * Describes the accessibility role of the link:
17039
+ * - `LinkAccessibleRole.Default` - a navigation is expected to the location given in `href` property
17040
+ *
17041
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
17042
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
17043
+ *
17044
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
17045
+ *
17046
+ * Default value is `Default`.
17047
+ *
17048
+ *
17049
+ * @returns Reference to `this` in order to allow method chaining
17050
+ */
17051
+ setAccessibleRole(
17052
+ /**
17053
+ * New value for property `accessibleRole`
17054
+ */
17055
+ sAccessibleRole?: LinkAccessibleRole | keyof typeof LinkAccessibleRole
17056
+ ): this;
17057
+ /**
17058
+ * Sets a new value for property {@link #getHref href}.
17059
+ *
17060
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
17061
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
17062
+ * and register a `press` event handler.
17063
+ *
17064
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
17065
+ *
17066
+ *
17067
+ * @returns Reference to `this` in order to allow method chaining
17068
+ */
17069
+ setHref(
17070
+ /**
17071
+ * New value for property `href`
17072
+ */
17073
+ sHref?: URI
17074
+ ): this;
17075
+ /**
17076
+ * Sets a new value for property {@link #getText text}.
17077
+ *
17078
+ * Defines the displayed text.
17079
+ *
17080
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
17081
+ *
17082
+ * Default value is `empty string`.
17083
+ *
17084
+ *
17085
+ * @returns Reference to `this` in order to allow method chaining
17086
+ */
17087
+ setText(
17088
+ /**
17089
+ * New value for property `text`
17090
+ */
17091
+ sText?: string
17092
+ ): this;
17093
+ /**
17094
+ * Sets a new value for property {@link #getType type}.
17095
+ *
17096
+ * The type of the ContentConfig.
17097
+ *
17098
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
17099
+ *
17100
+ * Default value is `Text`.
17101
+ *
17102
+ *
17103
+ * @returns Reference to `this` in order to allow method chaining
17104
+ */
17105
+ setType(
17106
+ /**
17107
+ * New value for property `type`
17108
+ */
17109
+ sType?: ContentConfigType | keyof typeof ContentConfigType
17110
+ ): this;
17111
+ }
17112
+
17113
+ export interface $ContentConfigSettings extends $ElementSettings {
17114
+ /**
17115
+ * The type of the ContentConfig.
17116
+ */
17117
+ type?:
17118
+ | (ContentConfigType | keyof typeof ContentConfigType)
17119
+ | PropertyBindingInfo
17120
+ | `{${string}}`;
17121
+
17122
+ /**
17123
+ * Defines the displayed text.
17124
+ */
17125
+ text?: string | PropertyBindingInfo;
17126
+
17127
+ /**
17128
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
17129
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
17130
+ * and register a `press` event handler.
17131
+ */
17132
+ href?: URI | PropertyBindingInfo | `{${string}}`;
17133
+
17134
+ /**
17135
+ * Describes the accessibility role of the link:
17136
+ * - `LinkAccessibleRole.Default` - a navigation is expected to the location given in `href` property
17137
+ *
17138
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
17139
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
17140
+ */
17141
+ accessibleRole?:
17142
+ | (LinkAccessibleRole | keyof typeof LinkAccessibleRole)
17143
+ | PropertyBindingInfo
17144
+ | `{${string}}`;
17145
+ }
17146
+ }
17147
+
16382
17148
  declare module "sap/m/CustomListItem" {
16383
17149
  import {
16384
17150
  default as ListItemBase,
@@ -37718,7 +38484,7 @@ declare module "sap/m/IllustratedMessageSize" {
37718
38484
 
37719
38485
  declare module "sap/m/IllustratedMessageType" {
37720
38486
  /**
37721
- * Available `Illustration` types for the {@link sap.f.IllustratedMessage} control.
38487
+ * Available `Illustration` types for the {@link sap.m.IllustratedMessage} control.
37722
38488
  *
37723
38489
  * @since 1.98
37724
38490
  */
@@ -40703,10 +41469,11 @@ declare module "sap/m/Input" {
40703
41469
  /**
40704
41470
  * Gets current value of property {@link #getMaxSuggestionWidth maxSuggestionWidth}.
40705
41471
  *
40706
- * If set, the value of this parameter will control the horizontal size of the suggestion list to display
40707
- * more data. This allows suggestion lists to be wider than the input field if there is enough space available.
40708
- * By default, the suggestion list is always as wide as the input field. **Note:** The value will be ignored
40709
- * if the actual width of the input field is larger than the specified parameter value.
41472
+ * If set, this parameter will control the horizontal size of the suggestion list to display more data.
41473
+ * By default, the suggestion list has a minimum width equal to the input field's width and a maximum width
41474
+ * of 640px. This property allows the suggestion list to contract or expand based on available space, potentially
41475
+ * exceeding 640px. **Note:** If the actual width of the input field exceeds the specified parameter value,
41476
+ * the value will be ignored.
40710
41477
  *
40711
41478
  * @since 1.21.1
40712
41479
  *
@@ -40962,7 +41729,7 @@ declare module "sap/m/Input" {
40962
41729
  * the needed info is already in the clipboard. If the user's input needs to match specific predefined values,
40963
41730
  * the application should validate the input against the set of values and provide feedback to the user
40964
41731
  * or use other mechanism for selection, where freestyle input is not allowed by design (Select, SelectDialog,
40965
- * etc).
41732
+ * etc). **Note:** Please note that there is no direct replacement for this property.
40966
41733
  *
40967
41734
  * Default value is `false`.
40968
41735
  *
@@ -41478,10 +42245,11 @@ declare module "sap/m/Input" {
41478
42245
  /**
41479
42246
  * Sets a new value for property {@link #getMaxSuggestionWidth maxSuggestionWidth}.
41480
42247
  *
41481
- * If set, the value of this parameter will control the horizontal size of the suggestion list to display
41482
- * more data. This allows suggestion lists to be wider than the input field if there is enough space available.
41483
- * By default, the suggestion list is always as wide as the input field. **Note:** The value will be ignored
41484
- * if the actual width of the input field is larger than the specified parameter value.
42248
+ * If set, this parameter will control the horizontal size of the suggestion list to display more data.
42249
+ * By default, the suggestion list has a minimum width equal to the input field's width and a maximum width
42250
+ * of 640px. This property allows the suggestion list to contract or expand based on available space, potentially
42251
+ * exceeding 640px. **Note:** If the actual width of the input field exceeds the specified parameter value,
42252
+ * the value will be ignored.
41485
42253
  *
41486
42254
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
41487
42255
  *
@@ -41808,7 +42576,7 @@ declare module "sap/m/Input" {
41808
42576
  * the needed info is already in the clipboard. If the user's input needs to match specific predefined values,
41809
42577
  * the application should validate the input against the set of values and provide feedback to the user
41810
42578
  * or use other mechanism for selection, where freestyle input is not allowed by design (Select, SelectDialog,
41811
- * etc).
42579
+ * etc). **Note:** Please note that there is no direct replacement for this property.
41812
42580
  *
41813
42581
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
41814
42582
  *
@@ -41995,7 +42763,7 @@ declare module "sap/m/Input" {
41995
42763
  * the needed info is already in the clipboard. If the user's input needs to match specific predefined values,
41996
42764
  * the application should validate the input against the set of values and provide feedback to the user
41997
42765
  * or use other mechanism for selection, where freestyle input is not allowed by design (Select, SelectDialog,
41998
- * etc).
42766
+ * etc). **Note:** Please note that there is no direct replacement for this property.
41999
42767
  *
42000
42768
  * @since 1.21.0
42001
42769
  * @deprecated (since 1.119) - The property valueHelpOnly should not be used anymore
@@ -42008,10 +42776,11 @@ declare module "sap/m/Input" {
42008
42776
  filterSuggests?: boolean | PropertyBindingInfo | `{${string}}`;
42009
42777
 
42010
42778
  /**
42011
- * If set, the value of this parameter will control the horizontal size of the suggestion list to display
42012
- * more data. This allows suggestion lists to be wider than the input field if there is enough space available.
42013
- * By default, the suggestion list is always as wide as the input field. **Note:** The value will be ignored
42014
- * if the actual width of the input field is larger than the specified parameter value.
42779
+ * If set, this parameter will control the horizontal size of the suggestion list to display more data.
42780
+ * By default, the suggestion list has a minimum width equal to the input field's width and a maximum width
42781
+ * of 640px. This property allows the suggestion list to contract or expand based on available space, potentially
42782
+ * exceeding 640px. **Note:** If the actual width of the input field exceeds the specified parameter value,
42783
+ * the value will be ignored.
42015
42784
  *
42016
42785
  * @since 1.21.1
42017
42786
  */
@@ -52225,7 +52994,6 @@ declare module "sap/m/MenuButton" {
52225
52994
  * Gets current value of property {@link #getWidth width}.
52226
52995
  *
52227
52996
  * Defines the width of the `MenuButton`.
52228
- * **Note:**As per visual design this width can be maximum of 12rem (192px).
52229
52997
  *
52230
52998
  *
52231
52999
  * @returns Value of property `width`
@@ -52492,7 +53260,6 @@ declare module "sap/m/MenuButton" {
52492
53260
  * Sets a new value for property {@link #getWidth width}.
52493
53261
  *
52494
53262
  * Defines the width of the `MenuButton`.
52495
- * **Note:**As per visual design this width can be maximum of 12rem (192px).
52496
53263
  *
52497
53264
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
52498
53265
  *
@@ -52527,7 +53294,6 @@ declare module "sap/m/MenuButton" {
52527
53294
 
52528
53295
  /**
52529
53296
  * Defines the width of the `MenuButton`.
52530
- * **Note:**As per visual design this width can be maximum of 12rem (192px).
52531
53297
  */
52532
53298
  width?: CSSSize | PropertyBindingInfo | `{${string}}`;
52533
53299
 
@@ -88383,6 +89149,10 @@ declare module "sap/m/plugins/CellSelector" {
88383
89149
  * @returns Value of property `rangeLimit`
88384
89150
  */
88385
89151
  getRangeLimit(): int;
89152
+ /**
89153
+ * Remove the current selection block.
89154
+ */
89155
+ removeSelection(): void;
88386
89156
  /**
88387
89157
  * Sets a new value for property {@link #getEnabled enabled}.
88388
89158
  *
@@ -105160,10 +105930,8 @@ declare module "sap/m/SelectDialog" {
105160
105930
  * Is called after renderer is finished to show the busy state
105161
105931
  *
105162
105932
  * @ui5-protected Do not call from applications (only from related classes in the framework)
105163
- *
105164
- * @returns `this` pointer for chaining
105165
105933
  */
105166
- onAfterRendering(): this;
105934
+ onAfterRendering(): void;
105167
105935
  /**
105168
105936
  * Opens the internal dialog with a searchfield and a list.
105169
105937
  *
@@ -132153,6 +132921,17 @@ declare module "sap/m/table/columnmenu/QuickActionItem" {
132153
132921
  */
132154
132922
  sLabel?: string
132155
132923
  ): this;
132924
+ /**
132925
+ * Calls _updateContent method on QuickActionItem parent object. Can be {@link sap.m.table.columnmenu.QuickGroup#_updateContent }
132926
+ * or {@link sap.m.table.columnmenu.QuickTotal#_updateContent}. This is needed to trigger a re-rendering
132927
+ * of the `ToggleButton` enhanced by a call of its `setText` method.
132928
+ *
132929
+ * @since 1.122
132930
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
132931
+ *
132932
+ * @returns this
132933
+ */
132934
+ updateContent(): QuickActionItem;
132156
132935
  }
132157
132936
 
132158
132937
  export interface $QuickActionItemSettings extends $EntrySettings {
@@ -135445,10 +136224,8 @@ declare module "sap/m/TableSelectDialog" {
135445
136224
  * Shows the busy state and is called after the renderer is finished.
135446
136225
  *
135447
136226
  * @ui5-protected Do not call from applications (only from related classes in the framework)
135448
- *
135449
- * @returns this pointer for chaining
135450
136227
  */
135451
- onAfterRendering(): this;
136228
+ onAfterRendering(): void;
135452
136229
  /**
135453
136230
  * Opens the internal dialog with a searchfield and a table.
135454
136231
  *
@@ -137444,6 +138221,186 @@ declare module "sap/m/Tile" {
137444
138221
  export type Tile$PressEvent = Event<Tile$PressEventParameters, Tile>;
137445
138222
  }
137446
138223
 
138224
+ declare module "sap/m/TileAttribute" {
138225
+ import { default as Control, $ControlSettings } from "sap/ui/core/Control";
138226
+
138227
+ import {
138228
+ AggregationBindingInfo,
138229
+ PropertyBindingInfo,
138230
+ } from "sap/ui/base/ManagedObject";
138231
+
138232
+ import ContentConfig from "sap/m/ContentConfig";
138233
+
138234
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
138235
+
138236
+ /**
138237
+ * Holds detail of an attribute used in the ActionTile.
138238
+ *
138239
+ * @since 1.122
138240
+ * @experimental (since 1.122)
138241
+ */
138242
+ export default class TileAttribute extends Control {
138243
+ /**
138244
+ * Constructor for a new TileAttribute.
138245
+ *
138246
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
138247
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
138248
+ * of the syntax of the settings object.
138249
+ */
138250
+ constructor();
138251
+
138252
+ /**
138253
+ * Creates a new subclass of class sap.m.TileAttribute with name `sClassName` and enriches it with the information
138254
+ * contained in `oClassInfo`.
138255
+ *
138256
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
138257
+ *
138258
+ *
138259
+ * @returns Created class / constructor function
138260
+ */
138261
+ static extend<T extends Record<string, unknown>>(
138262
+ /**
138263
+ * Name of the class being created
138264
+ */
138265
+ sClassName: string,
138266
+ /**
138267
+ * Object literal with information about the class
138268
+ */
138269
+ oClassInfo?: sap.ClassInfo<T, TileAttribute>,
138270
+ /**
138271
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
138272
+ * used by this class
138273
+ */
138274
+ FNMetaImpl?: Function
138275
+ ): Function;
138276
+ /**
138277
+ * Returns a metadata object for class sap.m.TileAttribute.
138278
+ *
138279
+ *
138280
+ * @returns Metadata object describing this class
138281
+ */
138282
+ static getMetadata(): ElementMetadata;
138283
+ /**
138284
+ * Binds aggregation {@link #getContentConfig contentConfig} to model data.
138285
+ *
138286
+ * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
138287
+ * of the possible properties of `oBindingInfo`.
138288
+ *
138289
+ *
138290
+ * @returns Reference to `this` in order to allow method chaining
138291
+ */
138292
+ bindContentConfig(
138293
+ /**
138294
+ * The binding information
138295
+ */
138296
+ oBindingInfo: AggregationBindingInfo
138297
+ ): this;
138298
+ /**
138299
+ * Destroys the contentConfig in the aggregation {@link #getContentConfig contentConfig}.
138300
+ *
138301
+ *
138302
+ * @returns Reference to `this` in order to allow method chaining
138303
+ */
138304
+ destroyContentConfig(): this;
138305
+ /**
138306
+ * Gets content of aggregation {@link #getContentConfig contentConfig}.
138307
+ *
138308
+ * LinkTileContent is being added to the GenericTile, it is advised to use in TwoByOne frameType
138309
+ */
138310
+ getContentConfig(): ContentConfig;
138311
+ /**
138312
+ * Gets current value of property {@link #getKey key}.
138313
+ *
138314
+ * key of the attribute that identifies its position, if the attribute is rendered as a group.
138315
+ *
138316
+ * Default value is `0`.
138317
+ *
138318
+ *
138319
+ * @returns Value of property `key`
138320
+ */
138321
+ getKey(): int;
138322
+ /**
138323
+ * Gets current value of property {@link #getLabel label}.
138324
+ *
138325
+ * Label of the attribute. If set to null, the label is not displayed.
138326
+ *
138327
+ *
138328
+ * @returns Value of property `label`
138329
+ */
138330
+ getLabel(): string;
138331
+ /**
138332
+ * Sets the aggregated {@link #getContentConfig contentConfig}.
138333
+ *
138334
+ *
138335
+ * @returns Reference to `this` in order to allow method chaining
138336
+ */
138337
+ setContentConfig(
138338
+ /**
138339
+ * The contentConfig to set
138340
+ */
138341
+ oContentConfig: ContentConfig
138342
+ ): this;
138343
+ /**
138344
+ * Sets a new value for property {@link #getKey key}.
138345
+ *
138346
+ * key of the attribute that identifies its position, if the attribute is rendered as a group.
138347
+ *
138348
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
138349
+ *
138350
+ * Default value is `0`.
138351
+ *
138352
+ *
138353
+ * @returns Reference to `this` in order to allow method chaining
138354
+ */
138355
+ setKey(
138356
+ /**
138357
+ * New value for property `key`
138358
+ */
138359
+ iKey?: int
138360
+ ): this;
138361
+ /**
138362
+ * Sets a new value for property {@link #getLabel label}.
138363
+ *
138364
+ * Label of the attribute. If set to null, the label is not displayed.
138365
+ *
138366
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
138367
+ *
138368
+ *
138369
+ * @returns Reference to `this` in order to allow method chaining
138370
+ */
138371
+ setLabel(
138372
+ /**
138373
+ * New value for property `label`
138374
+ */
138375
+ sLabel?: string
138376
+ ): this;
138377
+ /**
138378
+ * Unbinds aggregation {@link #getContentConfig contentConfig} from model data.
138379
+ *
138380
+ *
138381
+ * @returns Reference to `this` in order to allow method chaining
138382
+ */
138383
+ unbindContentConfig(): this;
138384
+ }
138385
+
138386
+ export interface $TileAttributeSettings extends $ControlSettings {
138387
+ /**
138388
+ * key of the attribute that identifies its position, if the attribute is rendered as a group.
138389
+ */
138390
+ key?: int | PropertyBindingInfo | `{${string}}`;
138391
+
138392
+ /**
138393
+ * Label of the attribute. If set to null, the label is not displayed.
138394
+ */
138395
+ label?: string | PropertyBindingInfo;
138396
+
138397
+ /**
138398
+ * LinkTileContent is being added to the GenericTile, it is advised to use in TwoByOne frameType
138399
+ */
138400
+ contentConfig?: ContentConfig;
138401
+ }
138402
+ }
138403
+
137447
138404
  declare module "sap/m/TileContainer" {
137448
138405
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
137449
138406
 
@@ -157459,7 +158416,8 @@ declare module "sap/m/VariantItem" {
157459
158416
  /**
157460
158417
  * Gets current value of property {@link #getContexts contexts}.
157461
158418
  *
157462
- * Contains the contexts information of the item. **Note**: This property must not be bound.
158419
+ * Contains the contexts information of the item.
158420
+ * **Note**: This property must not be bound.
157463
158421
  * **Note**: This property is used exclusively for SAPUI5 flexibility. Do not use it otherwise.
157464
158422
  *
157465
158423
  * Default value is `{}`.
@@ -157537,6 +158495,11 @@ declare module "sap/m/VariantItem" {
157537
158495
  *
157538
158496
  * Indicates if the item is visible.
157539
158497
  *
158498
+ *
158499
+ * **Note:** This property should not be used by applications, if the variant management control is either
158500
+ * {@link sap.ui.comp.smartvariants.SmartVariantManagement `SmartVariantManagement`} or {@link sap.ui.fl.variants.VariantManagement `VariantManagement`}.
158501
+ *
158502
+ *
157540
158503
  * Default value is `true`.
157541
158504
  *
157542
158505
  *
@@ -157580,7 +158543,8 @@ declare module "sap/m/VariantItem" {
157580
158543
  /**
157581
158544
  * Sets a new value for property {@link #getContexts contexts}.
157582
158545
  *
157583
- * Contains the contexts information of the item. **Note**: This property must not be bound.
158546
+ * Contains the contexts information of the item.
158547
+ * **Note**: This property must not be bound.
157584
158548
  * **Note**: This property is used exclusively for SAPUI5 flexibility. Do not use it otherwise.
157585
158549
  *
157586
158550
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
@@ -157707,6 +158671,11 @@ declare module "sap/m/VariantItem" {
157707
158671
  *
157708
158672
  * Indicates if the item is visible.
157709
158673
  *
158674
+ *
158675
+ * **Note:** This property should not be used by applications, if the variant management control is either
158676
+ * {@link sap.ui.comp.smartvariants.SmartVariantManagement `SmartVariantManagement`} or {@link sap.ui.fl.variants.VariantManagement `VariantManagement`}.
158677
+ *
158678
+ *
157710
158679
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
157711
158680
  *
157712
158681
  * Default value is `true`.
@@ -157755,6 +158724,10 @@ declare module "sap/m/VariantItem" {
157755
158724
 
157756
158725
  /**
157757
158726
  * Indicates if the item is visible.
158727
+ *
158728
+ *
158729
+ * **Note:** This property should not be used by applications, if the variant management control is either
158730
+ * {@link sap.ui.comp.smartvariants.SmartVariantManagement `SmartVariantManagement`} or {@link sap.ui.fl.variants.VariantManagement `VariantManagement`}.
157758
158731
  */
157759
158732
  visible?: boolean | PropertyBindingInfo | `{${string}}`;
157760
158733
 
@@ -157769,7 +158742,8 @@ declare module "sap/m/VariantItem" {
157769
158742
  author?: string | PropertyBindingInfo;
157770
158743
 
157771
158744
  /**
157772
- * Contains the contexts information of the item. **Note**: This property must not be bound.
158745
+ * Contains the contexts information of the item.
158746
+ * **Note**: This property must not be bound.
157773
158747
  * **Note**: This property is used exclusively for SAPUI5 flexibility. Do not use it otherwise.
157774
158748
  */
157775
158749
  contexts?: object | PropertyBindingInfo | `{${string}}`;
@@ -157781,7 +158755,12 @@ declare module "sap/m/VariantManagement" {
157781
158755
 
157782
158756
  import { IShrinkable, TitleLevel, CSSSize } from "sap/ui/core/library";
157783
158757
 
157784
- import { IOverflowToolbarContent } from "sap/m/library";
158758
+ import {
158759
+ IOverflowToolbarContent,
158760
+ VariantManagementRename,
158761
+ VariantManagementExe,
158762
+ VariantManagementFav,
158763
+ } from "sap/m/library";
157785
158764
 
157786
158765
  import VariantItem from "sap/m/VariantItem";
157787
158766
 
@@ -158451,8 +159430,8 @@ declare module "sap/m/VariantManagement" {
158451
159430
  /**
158452
159431
  * Gets current value of property {@link #getSupportContexts supportContexts}.
158453
159432
  *
158454
- * Indicates that contexts functionality is supported. **Note:** This property is used internally for SAPUI5
158455
- * Adaptation scenario.
159433
+ * Indicates that contexts functionality is supported.
159434
+ * **Note:** This property is used internally by the SAPUI5 flexibility layer.
158456
159435
  *
158457
159436
  * Default value is `false`.
158458
159437
  *
@@ -158777,8 +159756,8 @@ declare module "sap/m/VariantManagement" {
158777
159756
  /**
158778
159757
  * Sets a new value for property {@link #getSupportContexts supportContexts}.
158779
159758
  *
158780
- * Indicates that contexts functionality is supported. **Note:** This property is used internally for SAPUI5
158781
- * Adaptation scenario.
159759
+ * Indicates that contexts functionality is supported.
159760
+ * **Note:** This property is used internally by the SAPUI5 flexibility layer.
158782
159761
  *
158783
159762
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
158784
159763
  *
@@ -158890,8 +159869,8 @@ declare module "sap/m/VariantManagement" {
158890
159869
  supportPublic?: boolean | PropertyBindingInfo | `{${string}}`;
158891
159870
 
158892
159871
  /**
158893
- * Indicates that contexts functionality is supported. **Note:** This property is used internally for SAPUI5
158894
- * Adaptation scenario.
159872
+ * Indicates that contexts functionality is supported.
159873
+ * **Note:** This property is used internally by the SAPUI5 flexibility layer.
158895
159874
  */
158896
159875
  supportContexts?: boolean | PropertyBindingInfo | `{${string}}`;
158897
159876
 
@@ -159006,10 +159985,9 @@ declare module "sap/m/VariantManagement" {
159006
159985
 
159007
159986
  export interface VariantManagement$ManageEventParameters {
159008
159987
  /**
159009
- * List of changed variants. Each entry contains a `key` (the variant key) and a `name` (the new title of
159010
- * the variant).
159988
+ * List of changed variants.
159011
159989
  */
159012
- renamed?: object[];
159990
+ renamed?: VariantManagementRename[];
159013
159991
 
159014
159992
  /**
159015
159993
  * List of deleted variant keys
@@ -159017,16 +159995,14 @@ declare module "sap/m/VariantManagement" {
159017
159995
  deleted?: string[];
159018
159996
 
159019
159997
  /**
159020
- * List of variant keys and the associated Execute on Selection indicator. Each entry contains a `key` (the
159021
- * variant key) and an `exe` flag describing the intention.
159998
+ * List of variant keys and the associated Execute on Selection indicator.
159022
159999
  */
159023
- exe?: object[];
160000
+ exe?: VariantManagementExe[];
159024
160001
 
159025
160002
  /**
159026
- * List of variant keys and the associated favorite indicator. Each entry contains a `key` (the variant
159027
- * key) and a `visible` flag describing the intention.
160003
+ * List of variant keys and the associated favorite indicator.
159028
160004
  */
159029
- fav?: object[];
160005
+ fav?: VariantManagementFav[];
159030
160006
 
159031
160007
  /**
159032
160008
  * The default variant key
@@ -159035,8 +160011,8 @@ declare module "sap/m/VariantManagement" {
159035
160011
 
159036
160012
  /**
159037
160013
  * List of variant keys and the associated contexts array. Each entry contains a `key` (the variant key)
159038
- * and a `contexts` array describing the contexts. **Note:** It is only used internally by the SAPUI5 flexibility
159039
- * layer.
160014
+ * and a `contexts` array describing the contexts.
160015
+ * **Note:** This property is used internally by the SAPUI5 flexibility layer.
159040
160016
  */
159041
160017
  contexts?: object[];
159042
160018
  }
@@ -159085,12 +160061,14 @@ declare module "sap/m/VariantManagement" {
159085
160061
  public?: boolean;
159086
160062
 
159087
160063
  /**
159088
- * Array describing the contexts. **Note:** It is only used internally by the SAPUI5 flexibility layer.
160064
+ * Array describing the contexts.
160065
+ * **Note:** This property is used internally by the SAPUI5 flexibility layer.
159089
160066
  */
159090
160067
  contexts?: object[];
159091
160068
 
159092
160069
  /**
159093
- * Indicates the check box state for 'Create Tile'. **Note:** This event parameter is used only internally.
160070
+ * Indicates the check box state for 'Create Tile'.
160071
+ * **Note:** This event parameter is used only internally.
159094
160072
  */
159095
160073
  tile?: boolean;
159096
160074
  }
@@ -162653,6 +163631,10 @@ declare namespace sap {
162653
163631
 
162654
163632
  "sap/m/ActionSheet": undefined;
162655
163633
 
163634
+ "sap/m/ActionTile": undefined;
163635
+
163636
+ "sap/m/ActionTileContent": undefined;
163637
+
162656
163638
  "sap/m/App": undefined;
162657
163639
 
162658
163640
  "sap/m/Avatar": undefined;
@@ -162703,6 +163685,8 @@ declare namespace sap {
162703
163685
 
162704
163686
  "sap/m/ComboBoxTextField": undefined;
162705
163687
 
163688
+ "sap/m/ContentConfig": undefined;
163689
+
162706
163690
  "sap/m/CustomListItem": undefined;
162707
163691
 
162708
163692
  "sap/m/CustomTile": undefined;
@@ -163211,6 +164195,8 @@ declare namespace sap {
163211
164195
 
163212
164196
  "sap/m/Tile": undefined;
163213
164197
 
164198
+ "sap/m/TileAttribute": undefined;
164199
+
163214
164200
  "sap/m/TileContainer": undefined;
163215
164201
 
163216
164202
  "sap/m/TileContent": undefined;