@openui5/ts-types 1.121.1 → 1.122.1

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.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -3020,6 +3020,10 @@ declare namespace sap {
3020
3020
  * @returns Value of property `rangeLimit`
3021
3021
  */
3022
3022
  getRangeLimit(): int;
3023
+ /**
3024
+ * Remove the current selection block.
3025
+ */
3026
+ removeSelection(): void;
3023
3027
  /**
3024
3028
  * Sets a new value for property {@link #getEnabled enabled}.
3025
3029
  *
@@ -13555,6 +13559,17 @@ declare namespace sap {
13555
13559
  */
13556
13560
  sLabel?: string
13557
13561
  ): this;
13562
+ /**
13563
+ * Calls _updateContent method on QuickActionItem parent object. Can be {@link sap.m.table.columnmenu.QuickGroup#_updateContent }
13564
+ * or {@link sap.m.table.columnmenu.QuickTotal#_updateContent}. This is needed to trigger a re-rendering
13565
+ * of the `ToggleButton` enhanced by a call of its `setText` method.
13566
+ *
13567
+ * @since 1.122
13568
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13569
+ *
13570
+ * @returns this
13571
+ */
13572
+ updateContent(): sap.m.table.columnmenu.QuickActionItem;
13558
13573
  }
13559
13574
  /**
13560
13575
  * The `QuickGroup` class is used for quick grouping for the `sap.m.table.columnmenu.Menu`. It can be used
@@ -24096,6 +24111,24 @@ declare namespace sap {
24096
24111
  cancelButtonPress?: (oEvent: sap.ui.base.Event) => void;
24097
24112
  }
24098
24113
 
24114
+ interface $ActionTileSettings extends sap.m.$GenericTileSettings {}
24115
+
24116
+ interface $ActionTileContentSettings extends sap.m.$TileContentSettings {
24117
+ /**
24118
+ * Holds detail of an attribute used in the ActionTile.
24119
+ */
24120
+ attributes?:
24121
+ | sap.m.TileAttribute[]
24122
+ | sap.m.TileAttribute
24123
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
24124
+ | `{${string}}`;
24125
+
24126
+ /**
24127
+ * The event is triggered when the user clicks on the link
24128
+ */
24129
+ linkPress?: (oEvent: ActionTileContent$LinkPressEvent) => void;
24130
+ }
24131
+
24099
24132
  interface $AppSettings extends sap.m.$NavContainerSettings {
24100
24133
  /**
24101
24134
  * The icon to be displayed on the home screen of iOS devices after the user does "add to home screen".
@@ -25247,7 +25280,19 @@ declare namespace sap {
25247
25280
  | `{${string}}`;
25248
25281
 
25249
25282
  /**
25250
- * Fired when the user selects a color.
25283
+ * The last selected color in the ColorPalette.
25284
+ *
25285
+ * @since 1.122
25286
+ * @experimental (since 1.122) - this property is in a beta state.
25287
+ */
25288
+ selectedColor?:
25289
+ | sap.ui.core.CSSColor
25290
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
25291
+ | `{${string}}`;
25292
+
25293
+ /**
25294
+ * Fired when the user selects a color. Note: The `selectedColor` property is updated after the event is
25295
+ * fired. Use the event parameter `value` to retrieve the new value for `selectedColor`.
25251
25296
  */
25252
25297
  colorSelect?: (oEvent: ColorPalette$ColorSelectEvent) => void;
25253
25298
 
@@ -25278,6 +25323,17 @@ declare namespace sap {
25278
25323
  | sap.ui.base.ManagedObject.PropertyBindingInfo
25279
25324
  | `{${string}}`;
25280
25325
 
25326
+ /**
25327
+ * The last selected color in the ColorPalette.
25328
+ *
25329
+ * @since 1.122
25330
+ * @experimental (since 1.122) - this property is in a beta state.
25331
+ */
25332
+ selectedColor?:
25333
+ | sap.ui.core.CSSColor
25334
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
25335
+ | `{${string}}`;
25336
+
25281
25337
  /**
25282
25338
  * Indicates if the button for default color selection is available.
25283
25339
  */
@@ -25661,6 +25717,43 @@ declare namespace sap {
25661
25717
  | `{${string}}`;
25662
25718
  }
25663
25719
 
25720
+ interface $ContentConfigSettings extends sap.ui.core.$ElementSettings {
25721
+ /**
25722
+ * The type of the ContentConfig.
25723
+ */
25724
+ type?:
25725
+ | sap.m.ContentConfigType
25726
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
25727
+ | `{${string}}`;
25728
+
25729
+ /**
25730
+ * Defines the displayed text.
25731
+ */
25732
+ text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
25733
+
25734
+ /**
25735
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
25736
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
25737
+ * and register a `press` event handler.
25738
+ */
25739
+ href?:
25740
+ | sap.ui.core.URI
25741
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
25742
+ | `{${string}}`;
25743
+
25744
+ /**
25745
+ * Describes the accessibility role of the link:
25746
+ * - `LinkAccessibleRole.Default` - a navigation is expected to the location given in `href` property
25747
+ *
25748
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
25749
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
25750
+ */
25751
+ accessibleRole?:
25752
+ | sap.m.LinkAccessibleRole
25753
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
25754
+ | `{${string}}`;
25755
+ }
25756
+
25664
25757
  interface $CustomListItemSettings extends sap.m.$ListItemBaseSettings {
25665
25758
  /**
25666
25759
  * Defines the custom accessibility announcement.
@@ -29344,7 +29437,7 @@ declare namespace sap {
29344
29437
  * the needed info is already in the clipboard. If the user's input needs to match specific predefined values,
29345
29438
  * the application should validate the input against the set of values and provide feedback to the user
29346
29439
  * or use other mechanism for selection, where freestyle input is not allowed by design (Select, SelectDialog,
29347
- * etc).
29440
+ * etc). **Note:** Please note that there is no direct replacement for this property.
29348
29441
  *
29349
29442
  * @since 1.21.0
29350
29443
  * @deprecated (since 1.119) - The property valueHelpOnly should not be used anymore
@@ -29363,10 +29456,11 @@ declare namespace sap {
29363
29456
  | `{${string}}`;
29364
29457
 
29365
29458
  /**
29366
- * If set, the value of this parameter will control the horizontal size of the suggestion list to display
29367
- * more data. This allows suggestion lists to be wider than the input field if there is enough space available.
29368
- * By default, the suggestion list is always as wide as the input field. **Note:** The value will be ignored
29369
- * if the actual width of the input field is larger than the specified parameter value.
29459
+ * If set, this parameter will control the horizontal size of the suggestion list to display more data.
29460
+ * By default, the suggestion list has a minimum width equal to the input field's width and a maximum width
29461
+ * of 640px. This property allows the suggestion list to contract or expand based on available space, potentially
29462
+ * exceeding 640px. **Note:** If the actual width of the input field exceeds the specified parameter value,
29463
+ * the value will be ignored.
29370
29464
  *
29371
29465
  * @since 1.21.1
29372
29466
  */
@@ -30800,7 +30894,6 @@ declare namespace sap {
30800
30894
 
30801
30895
  /**
30802
30896
  * Defines the width of the `MenuButton`.
30803
- * **Note:**As per visual design this width can be maximum of 12rem (192px).
30804
30897
  */
30805
30898
  width?:
30806
30899
  | sap.ui.core.CSSSize
@@ -39958,6 +40051,23 @@ declare namespace sap {
39958
40051
  press?: (oEvent: sap.ui.base.Event) => void;
39959
40052
  }
39960
40053
 
40054
+ interface $TileAttributeSettings extends sap.ui.core.$ControlSettings {
40055
+ /**
40056
+ * key of the attribute that identifies its position, if the attribute is rendered as a group.
40057
+ */
40058
+ key?: int | sap.ui.base.ManagedObject.PropertyBindingInfo | `{${string}}`;
40059
+
40060
+ /**
40061
+ * Label of the attribute. If set to null, the label is not displayed.
40062
+ */
40063
+ label?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
40064
+
40065
+ /**
40066
+ * LinkTileContent is being added to the GenericTile, it is advised to use in TwoByOne frameType
40067
+ */
40068
+ contentConfig?: sap.m.ContentConfig;
40069
+ }
40070
+
39961
40071
  interface $TileContainerSettings extends sap.ui.core.$ControlSettings {
39962
40072
  /**
39963
40073
  * Defines the width of the TileContainer in px.
@@ -41268,6 +41378,10 @@ declare namespace sap {
41268
41378
 
41269
41379
  /**
41270
41380
  * Indicates if the item is visible.
41381
+ *
41382
+ *
41383
+ * **Note:** This property should not be used by applications, if the variant management control is either
41384
+ * {@link sap.ui.comp.smartvariants.SmartVariantManagement `SmartVariantManagement`} or {@link sap.ui.fl.variants.VariantManagement `VariantManagement`}.
41271
41385
  */
41272
41386
  visible?:
41273
41387
  | boolean
@@ -41288,7 +41402,8 @@ declare namespace sap {
41288
41402
  author?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
41289
41403
 
41290
41404
  /**
41291
- * Contains the contexts information of the item. **Note**: This property must not be bound.
41405
+ * Contains the contexts information of the item.
41406
+ * **Note**: This property must not be bound.
41292
41407
  * **Note**: This property is used exclusively for SAPUI5 flexibility. Do not use it otherwise.
41293
41408
  */
41294
41409
  contexts?:
@@ -41331,8 +41446,8 @@ declare namespace sap {
41331
41446
  | `{${string}}`;
41332
41447
 
41333
41448
  /**
41334
- * Indicates that contexts functionality is supported. **Note:** This property is used internally for SAPUI5
41335
- * Adaptation scenario.
41449
+ * Indicates that contexts functionality is supported.
41450
+ * **Note:** This property is used internally by the SAPUI5 flexibility layer.
41336
41451
  */
41337
41452
  supportContexts?:
41338
41453
  | boolean
@@ -42026,6 +42141,30 @@ declare namespace sap {
42026
42141
 
42027
42142
  interface ActionSheet$CancelButtonTapEventParameters {}
42028
42143
 
42144
+ interface ActionTileContent$LinkPressEventParameters {
42145
+ /**
42146
+ * Indicates whether the CTRL key was pressed when the link was selected.
42147
+ */
42148
+ ctrlKey?: boolean;
42149
+
42150
+ /**
42151
+ * Indicates whether the "meta" key was pressed when the link was selected.
42152
+ *
42153
+ * On Macintosh keyboards, this is the command key (⌘). On Windows keyboards, this is the windows key (⊞).
42154
+ */
42155
+ metaKey?: boolean;
42156
+
42157
+ /**
42158
+ * Returns the TileAttribute instance of the clicked link
42159
+ */
42160
+ attribute?: sap.m.TileAttribute;
42161
+
42162
+ /**
42163
+ * Returns the link instance
42164
+ */
42165
+ link?: sap.m.Link;
42166
+ }
42167
+
42029
42168
  interface App$OrientationChangeEventParameters {
42030
42169
  /**
42031
42170
  * Whether the device is in landscape orientation.
@@ -44873,10 +45012,9 @@ declare namespace sap {
44873
45012
 
44874
45013
  interface VariantManagement$ManageEventParameters {
44875
45014
  /**
44876
- * List of changed variants. Each entry contains a `key` (the variant key) and a `name` (the new title of
44877
- * the variant).
45015
+ * List of changed variants.
44878
45016
  */
44879
- renamed?: object[];
45017
+ renamed?: sap.m.VariantManagementRename[];
44880
45018
 
44881
45019
  /**
44882
45020
  * List of deleted variant keys
@@ -44884,16 +45022,14 @@ declare namespace sap {
44884
45022
  deleted?: string[];
44885
45023
 
44886
45024
  /**
44887
- * List of variant keys and the associated Execute on Selection indicator. Each entry contains a `key` (the
44888
- * variant key) and an `exe` flag describing the intention.
45025
+ * List of variant keys and the associated Execute on Selection indicator.
44889
45026
  */
44890
- exe?: object[];
45027
+ exe?: sap.m.VariantManagementExe[];
44891
45028
 
44892
45029
  /**
44893
- * List of variant keys and the associated favorite indicator. Each entry contains a `key` (the variant
44894
- * key) and a `visible` flag describing the intention.
45030
+ * List of variant keys and the associated favorite indicator.
44895
45031
  */
44896
- fav?: object[];
45032
+ fav?: sap.m.VariantManagementFav[];
44897
45033
 
44898
45034
  /**
44899
45035
  * The default variant key
@@ -44902,8 +45038,8 @@ declare namespace sap {
44902
45038
 
44903
45039
  /**
44904
45040
  * List of variant keys and the associated contexts array. Each entry contains a `key` (the variant key)
44905
- * and a `contexts` array describing the contexts. **Note:** It is only used internally by the SAPUI5 flexibility
44906
- * layer.
45041
+ * and a `contexts` array describing the contexts.
45042
+ * **Note:** This property is used internally by the SAPUI5 flexibility layer.
44907
45043
  */
44908
45044
  contexts?: object[];
44909
45045
  }
@@ -44942,12 +45078,14 @@ declare namespace sap {
44942
45078
  public?: boolean;
44943
45079
 
44944
45080
  /**
44945
- * Array describing the contexts. **Note:** It is only used internally by the SAPUI5 flexibility layer.
45081
+ * Array describing the contexts.
45082
+ * **Note:** This property is used internally by the SAPUI5 flexibility layer.
44946
45083
  */
44947
45084
  contexts?: object[];
44948
45085
 
44949
45086
  /**
44950
- * Indicates the check box state for 'Create Tile'. **Note:** This event parameter is used only internally.
45087
+ * Indicates the check box state for 'Create Tile'.
45088
+ * **Note:** This event parameter is used only internally.
44951
45089
  */
44952
45090
  tile?: boolean;
44953
45091
  }
@@ -48449,6 +48587,311 @@ declare namespace sap {
48449
48587
  sTitle?: string
48450
48588
  ): this;
48451
48589
  }
48590
+ /**
48591
+ * Used to create a customizable tile for your todos and situations within the new My Home in SAP S/4HANA
48592
+ * cloud
48593
+ *
48594
+ * @since 1.122
48595
+ * @experimental (since 1.122)
48596
+ */
48597
+ class ActionTile extends sap.m.GenericTile {
48598
+ /**
48599
+ * Constructor for a new sap.m.ActionTile control.
48600
+ *
48601
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
48602
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
48603
+ * of the syntax of the settings object.
48604
+ *
48605
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.GenericTile#constructor sap.m.GenericTile }
48606
+ * can be used.
48607
+ */
48608
+ constructor(
48609
+ /**
48610
+ * initial settings for the new control
48611
+ */
48612
+ mSettings?: sap.m.$ActionTileSettings
48613
+ );
48614
+ /**
48615
+ * Constructor for a new sap.m.ActionTile control.
48616
+ *
48617
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
48618
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
48619
+ * of the syntax of the settings object.
48620
+ *
48621
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.GenericTile#constructor sap.m.GenericTile }
48622
+ * can be used.
48623
+ */
48624
+ constructor(
48625
+ /**
48626
+ * ID for the new control, generated automatically if no ID is given
48627
+ */
48628
+ sId?: string,
48629
+ /**
48630
+ * initial settings for the new control
48631
+ */
48632
+ mSettings?: sap.m.$ActionTileSettings
48633
+ );
48634
+
48635
+ /**
48636
+ * Creates a new subclass of class sap.m.ActionTile with name `sClassName` and enriches it with the information
48637
+ * contained in `oClassInfo`.
48638
+ *
48639
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.GenericTile.extend}.
48640
+ *
48641
+ *
48642
+ * @returns Created class / constructor function
48643
+ */
48644
+ static extend<T extends Record<string, unknown>>(
48645
+ /**
48646
+ * Name of the class being created
48647
+ */
48648
+ sClassName: string,
48649
+ /**
48650
+ * Object literal with information about the class
48651
+ */
48652
+ oClassInfo?: sap.ClassInfo<T, sap.m.ActionTile>,
48653
+ /**
48654
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
48655
+ * used by this class
48656
+ */
48657
+ FNMetaImpl?: Function
48658
+ ): Function;
48659
+ /**
48660
+ * Returns a metadata object for class sap.m.ActionTile.
48661
+ *
48662
+ *
48663
+ * @returns Metadata object describing this class
48664
+ */
48665
+ static getMetadata(): sap.ui.core.ElementMetadata;
48666
+ }
48667
+ /**
48668
+ * This control is used within the ActionTile control and it renders the values from the custom attribute
48669
+ *
48670
+ * @since 1.122
48671
+ * @experimental (since 1.122)
48672
+ */
48673
+ class ActionTileContent extends sap.m.TileContent {
48674
+ /**
48675
+ * Constructor for a new sap.m.ActionTileContent control.
48676
+ *
48677
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
48678
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
48679
+ * of the syntax of the settings object.
48680
+ */
48681
+ constructor(
48682
+ /**
48683
+ * initial settings for the new control
48684
+ */
48685
+ mSettings?: sap.m.$ActionTileContentSettings
48686
+ );
48687
+ /**
48688
+ * Constructor for a new sap.m.ActionTileContent control.
48689
+ *
48690
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
48691
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
48692
+ * of the syntax of the settings object.
48693
+ */
48694
+ constructor(
48695
+ /**
48696
+ * id for the new control, generated automatically if no id is given
48697
+ */
48698
+ sId?: string,
48699
+ /**
48700
+ * initial settings for the new control
48701
+ */
48702
+ mSettings?: sap.m.$ActionTileContentSettings
48703
+ );
48704
+
48705
+ /**
48706
+ * Creates a new subclass of class sap.m.ActionTileContent with name `sClassName` and enriches it with the
48707
+ * information contained in `oClassInfo`.
48708
+ *
48709
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.TileContent.extend}.
48710
+ *
48711
+ *
48712
+ * @returns Created class / constructor function
48713
+ */
48714
+ static extend<T extends Record<string, unknown>>(
48715
+ /**
48716
+ * Name of the class being created
48717
+ */
48718
+ sClassName: string,
48719
+ /**
48720
+ * Object literal with information about the class
48721
+ */
48722
+ oClassInfo?: sap.ClassInfo<T, sap.m.ActionTileContent>,
48723
+ /**
48724
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
48725
+ * used by this class
48726
+ */
48727
+ FNMetaImpl?: Function
48728
+ ): Function;
48729
+ /**
48730
+ * Returns a metadata object for class sap.m.ActionTileContent.
48731
+ *
48732
+ *
48733
+ * @returns Metadata object describing this class
48734
+ */
48735
+ static getMetadata(): sap.ui.core.ElementMetadata;
48736
+ /**
48737
+ * Adds some attribute to the aggregation {@link #getAttributes attributes}.
48738
+ *
48739
+ *
48740
+ * @returns Reference to `this` in order to allow method chaining
48741
+ */
48742
+ addAttribute(
48743
+ /**
48744
+ * The attribute to add; if empty, nothing is inserted
48745
+ */
48746
+ oAttribute: sap.m.TileAttribute
48747
+ ): this;
48748
+ /**
48749
+ * Attaches event handler `fnFunction` to the {@link #event:linkPress linkPress} event of this `sap.m.ActionTileContent`.
48750
+ *
48751
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
48752
+ * otherwise it will be bound to this `sap.m.ActionTileContent` itself.
48753
+ *
48754
+ * The event is triggered when the user clicks on the link
48755
+ *
48756
+ *
48757
+ * @returns Reference to `this` in order to allow method chaining
48758
+ */
48759
+ attachLinkPress(
48760
+ /**
48761
+ * An application-specific payload object that will be passed to the event handler along with the event
48762
+ * object when firing the event
48763
+ */
48764
+ oData: object,
48765
+ /**
48766
+ * The function to be called when the event occurs
48767
+ */
48768
+ fnFunction: (p1: ActionTileContent$LinkPressEvent) => void,
48769
+ /**
48770
+ * Context object to call the event handler with. Defaults to this `sap.m.ActionTileContent` itself
48771
+ */
48772
+ oListener?: object
48773
+ ): this;
48774
+ /**
48775
+ * Attaches event handler `fnFunction` to the {@link #event:linkPress linkPress} event of this `sap.m.ActionTileContent`.
48776
+ *
48777
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
48778
+ * otherwise it will be bound to this `sap.m.ActionTileContent` itself.
48779
+ *
48780
+ * The event is triggered when the user clicks on the link
48781
+ *
48782
+ *
48783
+ * @returns Reference to `this` in order to allow method chaining
48784
+ */
48785
+ attachLinkPress(
48786
+ /**
48787
+ * The function to be called when the event occurs
48788
+ */
48789
+ fnFunction: (p1: ActionTileContent$LinkPressEvent) => void,
48790
+ /**
48791
+ * Context object to call the event handler with. Defaults to this `sap.m.ActionTileContent` itself
48792
+ */
48793
+ oListener?: object
48794
+ ): this;
48795
+ /**
48796
+ * Destroys all the attributes in the aggregation {@link #getAttributes attributes}.
48797
+ *
48798
+ *
48799
+ * @returns Reference to `this` in order to allow method chaining
48800
+ */
48801
+ destroyAttributes(): this;
48802
+ /**
48803
+ * Detaches event handler `fnFunction` from the {@link #event:linkPress linkPress} event of this `sap.m.ActionTileContent`.
48804
+ *
48805
+ * The passed function and listener object must match the ones used for event registration.
48806
+ *
48807
+ *
48808
+ * @returns Reference to `this` in order to allow method chaining
48809
+ */
48810
+ detachLinkPress(
48811
+ /**
48812
+ * The function to be called, when the event occurs
48813
+ */
48814
+ fnFunction: (p1: ActionTileContent$LinkPressEvent) => void,
48815
+ /**
48816
+ * Context object on which the given function had to be called
48817
+ */
48818
+ oListener?: object
48819
+ ): this;
48820
+ /**
48821
+ * Fires event {@link #event:linkPress linkPress} to attached listeners.
48822
+ *
48823
+ * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
48824
+ * event object. The return value of this method indicates whether the default action should be executed.
48825
+ *
48826
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
48827
+ *
48828
+ * @returns Whether or not to prevent the default action
48829
+ */
48830
+ fireLinkPress(
48831
+ /**
48832
+ * Parameters to pass along with the event
48833
+ */
48834
+ mParameters?: sap.m.ActionTileContent$LinkPressEventParameters
48835
+ ): boolean;
48836
+ /**
48837
+ * Gets content of aggregation {@link #getAttributes attributes}.
48838
+ *
48839
+ * Holds detail of an attribute used in the ActionTile.
48840
+ */
48841
+ getAttributes(): sap.m.TileAttribute[];
48842
+ /**
48843
+ * Checks for the provided `sap.m.TileAttribute` in the aggregation {@link #getAttributes attributes}. and
48844
+ * returns its index if found or -1 otherwise.
48845
+ *
48846
+ *
48847
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
48848
+ */
48849
+ indexOfAttribute(
48850
+ /**
48851
+ * The attribute whose index is looked for
48852
+ */
48853
+ oAttribute: sap.m.TileAttribute
48854
+ ): int;
48855
+ /**
48856
+ * Inserts a attribute into the aggregation {@link #getAttributes attributes}.
48857
+ *
48858
+ *
48859
+ * @returns Reference to `this` in order to allow method chaining
48860
+ */
48861
+ insertAttribute(
48862
+ /**
48863
+ * The attribute to insert; if empty, nothing is inserted
48864
+ */
48865
+ oAttribute: sap.m.TileAttribute,
48866
+ /**
48867
+ * The `0`-based index the attribute should be inserted at; for a negative value of `iIndex`, the attribute
48868
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the attribute
48869
+ * is inserted at the last position
48870
+ */
48871
+ iIndex: int
48872
+ ): this;
48873
+ /**
48874
+ * Removes all the controls from the aggregation {@link #getAttributes attributes}.
48875
+ *
48876
+ * Additionally, it unregisters them from the hosting UIArea.
48877
+ *
48878
+ *
48879
+ * @returns An array of the removed elements (might be empty)
48880
+ */
48881
+ removeAllAttributes(): sap.m.TileAttribute[];
48882
+ /**
48883
+ * Removes a attribute from the aggregation {@link #getAttributes attributes}.
48884
+ *
48885
+ *
48886
+ * @returns The removed attribute or `null`
48887
+ */
48888
+ removeAttribute(
48889
+ /**
48890
+ * The attribute to remove or its index or id
48891
+ */
48892
+ vAttribute: int | string | sap.m.TileAttribute
48893
+ ): sap.m.TileAttribute | null;
48894
+ }
48452
48895
  /**
48453
48896
  * The root element of a UI5 mobile app.
48454
48897
  *
@@ -54427,7 +54870,8 @@ declare namespace sap {
54427
54870
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
54428
54871
  * otherwise it will be bound to this `sap.m.ColorPalette` itself.
54429
54872
  *
54430
- * Fired when the user selects a color.
54873
+ * Fired when the user selects a color. Note: The `selectedColor` property is updated after the event is
54874
+ * fired. Use the event parameter `value` to retrieve the new value for `selectedColor`.
54431
54875
  *
54432
54876
  *
54433
54877
  * @returns Reference to `this` in order to allow method chaining
@@ -54453,7 +54897,8 @@ declare namespace sap {
54453
54897
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
54454
54898
  * otherwise it will be bound to this `sap.m.ColorPalette` itself.
54455
54899
  *
54456
- * Fired when the user selects a color.
54900
+ * Fired when the user selects a color. Note: The `selectedColor` property is updated after the event is
54901
+ * fired. Use the event parameter `value` to retrieve the new value for `selectedColor`.
54457
54902
  *
54458
54903
  *
54459
54904
  * @returns Reference to `this` in order to allow method chaining
@@ -54593,11 +55038,22 @@ declare namespace sap {
54593
55038
  * @returns Value of property `colors`
54594
55039
  */
54595
55040
  getColors(): sap.ui.core.CSSColor[];
55041
+ /**
55042
+ * Gets current value of property {@link #getSelectedColor selectedColor}.
55043
+ *
55044
+ * The last selected color in the ColorPalette.
55045
+ *
55046
+ * @since 1.122
55047
+ * @experimental (since 1.122) - this property is in a beta state.
55048
+ *
55049
+ * @returns Value of property `selectedColor`
55050
+ */
55051
+ getSelectedColor(): sap.ui.core.CSSColor;
54596
55052
  /**
54597
55053
  * Sets a selected color for the ColorPicker control.
54598
55054
  *
54599
55055
  *
54600
- * @returns `this` for method chaining
55056
+ * @returns Reference to `this` for method chaining
54601
55057
  */
54602
55058
  setColorPickerSelectedColor(
54603
55059
  /**
@@ -54624,6 +55080,24 @@ declare namespace sap {
54624
55080
  */
54625
55081
  sColors?: sap.ui.core.CSSColor[]
54626
55082
  ): this;
55083
+ /**
55084
+ * Sets a new value for property {@link #getSelectedColor selectedColor}.
55085
+ *
55086
+ * The last selected color in the ColorPalette.
55087
+ *
55088
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
55089
+ *
55090
+ * @since 1.122
55091
+ * @experimental (since 1.122) - this property is in a beta state.
55092
+ *
55093
+ * @returns Reference to `this` in order to allow method chaining
55094
+ */
55095
+ setSelectedColor(
55096
+ /**
55097
+ * New value for property `selectedColor`
55098
+ */
55099
+ sSelectedColor?: sap.ui.core.CSSColor
55100
+ ): this;
54627
55101
  }
54628
55102
  /**
54629
55103
  * A thin wrapper over {@link sap.m.ColorPalette} allowing the latter to be used in a popover.
@@ -54894,6 +55368,17 @@ declare namespace sap {
54894
55368
  * @returns Value of property `displayMode`
54895
55369
  */
54896
55370
  getDisplayMode(): sap.ui.unified.ColorPickerDisplayMode;
55371
+ /**
55372
+ * Gets current value of property {@link #getSelectedColor selectedColor}.
55373
+ *
55374
+ * The last selected color in the ColorPalette.
55375
+ *
55376
+ * @since 1.122
55377
+ * @experimental (since 1.122) - this property is in a beta state.
55378
+ *
55379
+ * @returns Value of property `selectedColor`
55380
+ */
55381
+ getSelectedColor(): sap.ui.core.CSSColor;
54897
55382
  /**
54898
55383
  * Gets current value of property {@link #getShowDefaultColorButton showDefaultColorButton}.
54899
55384
  *
@@ -54943,7 +55428,7 @@ declare namespace sap {
54943
55428
  * When displayed on a tablet or desktop device, the `ColorPalettePopover` is positioned relative to this
54944
55429
  * control
54945
55430
  */
54946
- oCpntrol: sap.ui.core.Control
55431
+ oControl: sap.ui.core.Control
54947
55432
  ): sap.ui.core.Control;
54948
55433
  /**
54949
55434
  * Sets a selected color for the ColorPicker control.
@@ -55012,6 +55497,24 @@ declare namespace sap {
55012
55497
  */
55013
55498
  sDisplayMode?: sap.ui.unified.ColorPickerDisplayMode
55014
55499
  ): this;
55500
+ /**
55501
+ * Sets a new value for property {@link #getSelectedColor selectedColor}.
55502
+ *
55503
+ * The last selected color in the ColorPalette.
55504
+ *
55505
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
55506
+ *
55507
+ * @since 1.122
55508
+ * @experimental (since 1.122) - this property is in a beta state.
55509
+ *
55510
+ * @returns Reference to `this` in order to allow method chaining
55511
+ */
55512
+ setSelectedColor(
55513
+ /**
55514
+ * New value for property `selectedColor`
55515
+ */
55516
+ sSelectedColor?: sap.ui.core.CSSColor
55517
+ ): this;
55015
55518
  /**
55016
55519
  * Sets a new value for property {@link #getShowDefaultColorButton showDefaultColorButton}.
55017
55520
  *
@@ -57505,6 +58008,206 @@ declare namespace sap {
57505
58008
  bState?: boolean
57506
58009
  ): void;
57507
58010
  }
58011
+ /**
58012
+ * This element is used within the TileAttribute control that generates either a link or text
58013
+ *
58014
+ * @since 1.122
58015
+ * @experimental (since 1.122)
58016
+ */
58017
+ class ContentConfig extends sap.ui.core.Element {
58018
+ /**
58019
+ * Constructor for a new ContentConfig.
58020
+ *
58021
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
58022
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
58023
+ * of the syntax of the settings object.
58024
+ */
58025
+ constructor(
58026
+ /**
58027
+ * Initial settings for the new control.
58028
+ */
58029
+ mSettings?: sap.m.$ContentConfigSettings
58030
+ );
58031
+ /**
58032
+ * Constructor for a new ContentConfig.
58033
+ *
58034
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
58035
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
58036
+ * of the syntax of the settings object.
58037
+ */
58038
+ constructor(
58039
+ /**
58040
+ * ID for the new control, it is generated automatically if an ID is not provided.
58041
+ */
58042
+ sId?: string,
58043
+ /**
58044
+ * Initial settings for the new control.
58045
+ */
58046
+ mSettings?: sap.m.$ContentConfigSettings
58047
+ );
58048
+
58049
+ /**
58050
+ * Creates a new subclass of class sap.m.ContentConfig with name `sClassName` and enriches it with the information
58051
+ * contained in `oClassInfo`.
58052
+ *
58053
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
58054
+ *
58055
+ *
58056
+ * @returns Created class / constructor function
58057
+ */
58058
+ static extend<T extends Record<string, unknown>>(
58059
+ /**
58060
+ * Name of the class being created
58061
+ */
58062
+ sClassName: string,
58063
+ /**
58064
+ * Object literal with information about the class
58065
+ */
58066
+ oClassInfo?: sap.ClassInfo<T, sap.m.ContentConfig>,
58067
+ /**
58068
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
58069
+ * used by this class
58070
+ */
58071
+ FNMetaImpl?: Function
58072
+ ): Function;
58073
+ /**
58074
+ * Returns a metadata object for class sap.m.ContentConfig.
58075
+ *
58076
+ *
58077
+ * @returns Metadata object describing this class
58078
+ */
58079
+ static getMetadata(): sap.ui.core.ElementMetadata;
58080
+ /**
58081
+ * Gets current value of property {@link #getAccessibleRole accessibleRole}.
58082
+ *
58083
+ * Describes the accessibility role of the link:
58084
+ * - `LinkAccessibleRole.Default` - a navigation is expected to the location given in `href` property
58085
+ *
58086
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
58087
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
58088
+ *
58089
+ * Default value is `Default`.
58090
+ *
58091
+ *
58092
+ * @returns Value of property `accessibleRole`
58093
+ */
58094
+ getAccessibleRole(): sap.m.LinkAccessibleRole;
58095
+ /**
58096
+ * Gets current value of property {@link #getHref href}.
58097
+ *
58098
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
58099
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
58100
+ * and register a `press` event handler.
58101
+ *
58102
+ *
58103
+ * @returns Value of property `href`
58104
+ */
58105
+ getHref(): sap.ui.core.URI;
58106
+ /**
58107
+ * Returns the current element instance
58108
+ */
58109
+ getInnerControl():
58110
+ | Record<string, sap.m.Link>
58111
+ | Record<string, sap.m.Text>;
58112
+ /**
58113
+ * Gets current value of property {@link #getText text}.
58114
+ *
58115
+ * Defines the displayed text.
58116
+ *
58117
+ * Default value is `empty string`.
58118
+ *
58119
+ *
58120
+ * @returns Value of property `text`
58121
+ */
58122
+ getText(): string;
58123
+ /**
58124
+ * Gets current value of property {@link #getType type}.
58125
+ *
58126
+ * The type of the ContentConfig.
58127
+ *
58128
+ * Default value is `Text`.
58129
+ *
58130
+ *
58131
+ * @returns Value of property `type`
58132
+ */
58133
+ getType(): sap.m.ContentConfigType;
58134
+ /**
58135
+ * Sets a new value for property {@link #getAccessibleRole accessibleRole}.
58136
+ *
58137
+ * Describes the accessibility role of the link:
58138
+ * - `LinkAccessibleRole.Default` - a navigation is expected to the location given in `href` property
58139
+ *
58140
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
58141
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
58142
+ *
58143
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
58144
+ *
58145
+ * Default value is `Default`.
58146
+ *
58147
+ *
58148
+ * @returns Reference to `this` in order to allow method chaining
58149
+ */
58150
+ setAccessibleRole(
58151
+ /**
58152
+ * New value for property `accessibleRole`
58153
+ */
58154
+ sAccessibleRole?: sap.m.LinkAccessibleRole
58155
+ ): this;
58156
+ /**
58157
+ * Sets a new value for property {@link #getHref href}.
58158
+ *
58159
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
58160
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
58161
+ * and register a `press` event handler.
58162
+ *
58163
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
58164
+ *
58165
+ *
58166
+ * @returns Reference to `this` in order to allow method chaining
58167
+ */
58168
+ setHref(
58169
+ /**
58170
+ * New value for property `href`
58171
+ */
58172
+ sHref?: sap.ui.core.URI
58173
+ ): this;
58174
+ /**
58175
+ * Sets a new value for property {@link #getText text}.
58176
+ *
58177
+ * Defines the displayed text.
58178
+ *
58179
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
58180
+ *
58181
+ * Default value is `empty string`.
58182
+ *
58183
+ *
58184
+ * @returns Reference to `this` in order to allow method chaining
58185
+ */
58186
+ setText(
58187
+ /**
58188
+ * New value for property `text`
58189
+ */
58190
+ sText?: string
58191
+ ): this;
58192
+ /**
58193
+ * Sets a new value for property {@link #getType type}.
58194
+ *
58195
+ * The type of the ContentConfig.
58196
+ *
58197
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
58198
+ *
58199
+ * Default value is `Text`.
58200
+ *
58201
+ *
58202
+ * @returns Reference to `this` in order to allow method chaining
58203
+ */
58204
+ setType(
58205
+ /**
58206
+ * New value for property `type`
58207
+ */
58208
+ sType?: sap.m.ContentConfigType
58209
+ ): this;
58210
+ }
57508
58211
  /**
57509
58212
  * This control with a content aggregation can be used to customize standard list items that we don't provide.
57510
58213
  * List mode and ListItem type are applied to CustomListItems as well. **Note:** Even though the content
@@ -77065,10 +77768,11 @@ declare namespace sap {
77065
77768
  /**
77066
77769
  * Gets current value of property {@link #getMaxSuggestionWidth maxSuggestionWidth}.
77067
77770
  *
77068
- * If set, the value of this parameter will control the horizontal size of the suggestion list to display
77069
- * more data. This allows suggestion lists to be wider than the input field if there is enough space available.
77070
- * By default, the suggestion list is always as wide as the input field. **Note:** The value will be ignored
77071
- * if the actual width of the input field is larger than the specified parameter value.
77771
+ * If set, this parameter will control the horizontal size of the suggestion list to display more data.
77772
+ * By default, the suggestion list has a minimum width equal to the input field's width and a maximum width
77773
+ * of 640px. This property allows the suggestion list to contract or expand based on available space, potentially
77774
+ * exceeding 640px. **Note:** If the actual width of the input field exceeds the specified parameter value,
77775
+ * the value will be ignored.
77072
77776
  *
77073
77777
  * @since 1.21.1
77074
77778
  *
@@ -77324,7 +78028,7 @@ declare namespace sap {
77324
78028
  * the needed info is already in the clipboard. If the user's input needs to match specific predefined values,
77325
78029
  * the application should validate the input against the set of values and provide feedback to the user
77326
78030
  * or use other mechanism for selection, where freestyle input is not allowed by design (Select, SelectDialog,
77327
- * etc).
78031
+ * etc). **Note:** Please note that there is no direct replacement for this property.
77328
78032
  *
77329
78033
  * Default value is `false`.
77330
78034
  *
@@ -77840,10 +78544,11 @@ declare namespace sap {
77840
78544
  /**
77841
78545
  * Sets a new value for property {@link #getMaxSuggestionWidth maxSuggestionWidth}.
77842
78546
  *
77843
- * If set, the value of this parameter will control the horizontal size of the suggestion list to display
77844
- * more data. This allows suggestion lists to be wider than the input field if there is enough space available.
77845
- * By default, the suggestion list is always as wide as the input field. **Note:** The value will be ignored
77846
- * if the actual width of the input field is larger than the specified parameter value.
78547
+ * If set, this parameter will control the horizontal size of the suggestion list to display more data.
78548
+ * By default, the suggestion list has a minimum width equal to the input field's width and a maximum width
78549
+ * of 640px. This property allows the suggestion list to contract or expand based on available space, potentially
78550
+ * exceeding 640px. **Note:** If the actual width of the input field exceeds the specified parameter value,
78551
+ * the value will be ignored.
77847
78552
  *
77848
78553
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
77849
78554
  *
@@ -78170,7 +78875,7 @@ declare namespace sap {
78170
78875
  * the needed info is already in the clipboard. If the user's input needs to match specific predefined values,
78171
78876
  * the application should validate the input against the set of values and provide feedback to the user
78172
78877
  * or use other mechanism for selection, where freestyle input is not allowed by design (Select, SelectDialog,
78173
- * etc).
78878
+ * etc). **Note:** Please note that there is no direct replacement for this property.
78174
78879
  *
78175
78880
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
78176
78881
  *
@@ -85693,7 +86398,6 @@ declare namespace sap {
85693
86398
  * Gets current value of property {@link #getWidth width}.
85694
86399
  *
85695
86400
  * Defines the width of the `MenuButton`.
85696
- * **Note:**As per visual design this width can be maximum of 12rem (192px).
85697
86401
  *
85698
86402
  *
85699
86403
  * @returns Value of property `width`
@@ -85960,7 +86664,6 @@ declare namespace sap {
85960
86664
  * Sets a new value for property {@link #getWidth width}.
85961
86665
  *
85962
86666
  * Defines the width of the `MenuButton`.
85963
- * **Note:**As per visual design this width can be maximum of 12rem (192px).
85964
86667
  *
85965
86668
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
85966
86669
  *
@@ -123791,10 +124494,8 @@ declare namespace sap {
123791
124494
  * Is called after renderer is finished to show the busy state
123792
124495
  *
123793
124496
  * @ui5-protected Do not call from applications (only from related classes in the framework)
123794
- *
123795
- * @returns `this` pointer for chaining
123796
124497
  */
123797
- onAfterRendering(): this;
124498
+ onAfterRendering(): void;
123798
124499
  /**
123799
124500
  * Opens the internal dialog with a searchfield and a list.
123800
124501
  *
@@ -139283,10 +139984,8 @@ declare namespace sap {
139283
139984
  * Shows the busy state and is called after the renderer is finished.
139284
139985
  *
139285
139986
  * @ui5-protected Do not call from applications (only from related classes in the framework)
139286
- *
139287
- * @returns this pointer for chaining
139288
139987
  */
139289
- onAfterRendering(): this;
139988
+ onAfterRendering(): void;
139290
139989
  /**
139291
139990
  * Opens the internal dialog with a searchfield and a table.
139292
139991
  *
@@ -140826,6 +141525,155 @@ declare namespace sap {
140826
141525
  bRemovable?: boolean
140827
141526
  ): this;
140828
141527
  }
141528
+ /**
141529
+ * Holds detail of an attribute used in the ActionTile.
141530
+ *
141531
+ * @since 1.122
141532
+ * @experimental (since 1.122)
141533
+ */
141534
+ class TileAttribute extends sap.ui.core.Control {
141535
+ /**
141536
+ * Constructor for a new TileAttribute.
141537
+ *
141538
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
141539
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
141540
+ * of the syntax of the settings object.
141541
+ */
141542
+ constructor();
141543
+
141544
+ /**
141545
+ * Creates a new subclass of class sap.m.TileAttribute with name `sClassName` and enriches it with the information
141546
+ * contained in `oClassInfo`.
141547
+ *
141548
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
141549
+ *
141550
+ *
141551
+ * @returns Created class / constructor function
141552
+ */
141553
+ static extend<T extends Record<string, unknown>>(
141554
+ /**
141555
+ * Name of the class being created
141556
+ */
141557
+ sClassName: string,
141558
+ /**
141559
+ * Object literal with information about the class
141560
+ */
141561
+ oClassInfo?: sap.ClassInfo<T, sap.m.TileAttribute>,
141562
+ /**
141563
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
141564
+ * used by this class
141565
+ */
141566
+ FNMetaImpl?: Function
141567
+ ): Function;
141568
+ /**
141569
+ * Returns a metadata object for class sap.m.TileAttribute.
141570
+ *
141571
+ *
141572
+ * @returns Metadata object describing this class
141573
+ */
141574
+ static getMetadata(): sap.ui.core.ElementMetadata;
141575
+ /**
141576
+ * Binds aggregation {@link #getContentConfig contentConfig} to model data.
141577
+ *
141578
+ * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
141579
+ * of the possible properties of `oBindingInfo`.
141580
+ *
141581
+ *
141582
+ * @returns Reference to `this` in order to allow method chaining
141583
+ */
141584
+ bindContentConfig(
141585
+ /**
141586
+ * The binding information
141587
+ */
141588
+ oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo
141589
+ ): this;
141590
+ /**
141591
+ * Destroys the contentConfig in the aggregation {@link #getContentConfig contentConfig}.
141592
+ *
141593
+ *
141594
+ * @returns Reference to `this` in order to allow method chaining
141595
+ */
141596
+ destroyContentConfig(): this;
141597
+ /**
141598
+ * Gets content of aggregation {@link #getContentConfig contentConfig}.
141599
+ *
141600
+ * LinkTileContent is being added to the GenericTile, it is advised to use in TwoByOne frameType
141601
+ */
141602
+ getContentConfig(): sap.m.ContentConfig;
141603
+ /**
141604
+ * Gets current value of property {@link #getKey key}.
141605
+ *
141606
+ * key of the attribute that identifies its position, if the attribute is rendered as a group.
141607
+ *
141608
+ * Default value is `0`.
141609
+ *
141610
+ *
141611
+ * @returns Value of property `key`
141612
+ */
141613
+ getKey(): int;
141614
+ /**
141615
+ * Gets current value of property {@link #getLabel label}.
141616
+ *
141617
+ * Label of the attribute. If set to null, the label is not displayed.
141618
+ *
141619
+ *
141620
+ * @returns Value of property `label`
141621
+ */
141622
+ getLabel(): string;
141623
+ /**
141624
+ * Sets the aggregated {@link #getContentConfig contentConfig}.
141625
+ *
141626
+ *
141627
+ * @returns Reference to `this` in order to allow method chaining
141628
+ */
141629
+ setContentConfig(
141630
+ /**
141631
+ * The contentConfig to set
141632
+ */
141633
+ oContentConfig: sap.m.ContentConfig
141634
+ ): this;
141635
+ /**
141636
+ * Sets a new value for property {@link #getKey key}.
141637
+ *
141638
+ * key of the attribute that identifies its position, if the attribute is rendered as a group.
141639
+ *
141640
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
141641
+ *
141642
+ * Default value is `0`.
141643
+ *
141644
+ *
141645
+ * @returns Reference to `this` in order to allow method chaining
141646
+ */
141647
+ setKey(
141648
+ /**
141649
+ * New value for property `key`
141650
+ */
141651
+ iKey?: int
141652
+ ): this;
141653
+ /**
141654
+ * Sets a new value for property {@link #getLabel label}.
141655
+ *
141656
+ * Label of the attribute. If set to null, the label is not displayed.
141657
+ *
141658
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
141659
+ *
141660
+ *
141661
+ * @returns Reference to `this` in order to allow method chaining
141662
+ */
141663
+ setLabel(
141664
+ /**
141665
+ * New value for property `label`
141666
+ */
141667
+ sLabel?: string
141668
+ ): this;
141669
+ /**
141670
+ * Unbinds aggregation {@link #getContentConfig contentConfig} from model data.
141671
+ *
141672
+ *
141673
+ * @returns Reference to `this` in order to allow method chaining
141674
+ */
141675
+ unbindContentConfig(): this;
141676
+ }
140829
141677
  /**
140830
141678
  * A container that arranges same-size tiles nicely on carousel pages.
140831
141679
  *
@@ -149770,7 +150618,8 @@ declare namespace sap {
149770
150618
  /**
149771
150619
  * Gets current value of property {@link #getContexts contexts}.
149772
150620
  *
149773
- * Contains the contexts information of the item. **Note**: This property must not be bound.
150621
+ * Contains the contexts information of the item.
150622
+ * **Note**: This property must not be bound.
149774
150623
  * **Note**: This property is used exclusively for SAPUI5 flexibility. Do not use it otherwise.
149775
150624
  *
149776
150625
  * Default value is `{}`.
@@ -149848,6 +150697,11 @@ declare namespace sap {
149848
150697
  *
149849
150698
  * Indicates if the item is visible.
149850
150699
  *
150700
+ *
150701
+ * **Note:** This property should not be used by applications, if the variant management control is either
150702
+ * {@link sap.ui.comp.smartvariants.SmartVariantManagement `SmartVariantManagement`} or {@link sap.ui.fl.variants.VariantManagement `VariantManagement`}.
150703
+ *
150704
+ *
149851
150705
  * Default value is `true`.
149852
150706
  *
149853
150707
  *
@@ -149891,7 +150745,8 @@ declare namespace sap {
149891
150745
  /**
149892
150746
  * Sets a new value for property {@link #getContexts contexts}.
149893
150747
  *
149894
- * Contains the contexts information of the item. **Note**: This property must not be bound.
150748
+ * Contains the contexts information of the item.
150749
+ * **Note**: This property must not be bound.
149895
150750
  * **Note**: This property is used exclusively for SAPUI5 flexibility. Do not use it otherwise.
149896
150751
  *
149897
150752
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
@@ -150018,6 +150873,11 @@ declare namespace sap {
150018
150873
  *
150019
150874
  * Indicates if the item is visible.
150020
150875
  *
150876
+ *
150877
+ * **Note:** This property should not be used by applications, if the variant management control is either
150878
+ * {@link sap.ui.comp.smartvariants.SmartVariantManagement `SmartVariantManagement`} or {@link sap.ui.fl.variants.VariantManagement `VariantManagement`}.
150879
+ *
150880
+ *
150021
150881
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
150022
150882
  *
150023
150883
  * Default value is `true`.
@@ -150687,8 +151547,8 @@ declare namespace sap {
150687
151547
  /**
150688
151548
  * Gets current value of property {@link #getSupportContexts supportContexts}.
150689
151549
  *
150690
- * Indicates that contexts functionality is supported. **Note:** This property is used internally for SAPUI5
150691
- * Adaptation scenario.
151550
+ * Indicates that contexts functionality is supported.
151551
+ * **Note:** This property is used internally by the SAPUI5 flexibility layer.
150692
151552
  *
150693
151553
  * Default value is `false`.
150694
151554
  *
@@ -151013,8 +151873,8 @@ declare namespace sap {
151013
151873
  /**
151014
151874
  * Sets a new value for property {@link #getSupportContexts supportContexts}.
151015
151875
  *
151016
- * Indicates that contexts functionality is supported. **Note:** This property is used internally for SAPUI5
151017
- * Adaptation scenario.
151876
+ * Indicates that contexts functionality is supported.
151877
+ * **Note:** This property is used internally by the SAPUI5 flexibility layer.
151018
151878
  *
151019
151879
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
151020
151880
  *
@@ -155850,6 +156710,24 @@ declare namespace sap {
155850
156710
  */
155851
156711
  VisiblePages = "VisiblePages",
155852
156712
  }
156713
+ /**
156714
+ * Defines the rendering type of the TileAttribute
156715
+ *
156716
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ContentConfigType'.
156717
+ *
156718
+ * @since 1.122
156719
+ * @experimental (since 1.122)
156720
+ */
156721
+ enum ContentConfigType {
156722
+ /**
156723
+ * Renders a link inside the TileAttribute
156724
+ */
156725
+ Link = "Link",
156726
+ /**
156727
+ * Renders a text inside the TileAttribute
156728
+ */
156729
+ Text = "Text",
156730
+ }
155853
156731
  /**
155854
156732
  * A subset of DateTimeInput types that fit to a simple API returning one string.
155855
156733
  *
@@ -156618,7 +157496,7 @@ declare namespace sap {
156618
157496
  Spot = "Spot",
156619
157497
  }
156620
157498
  /**
156621
- * Available `Illustration` types for the {@link sap.f.IllustratedMessage} control.
157499
+ * Available `Illustration` types for the {@link sap.m.IllustratedMessage} control.
156622
157500
  *
156623
157501
  * @since 1.98
156624
157502
  */
@@ -159015,6 +159893,48 @@ declare namespace sap {
159015
159893
  */
159016
159894
  type ValueCSSColor = string;
159017
159895
 
159896
+ /**
159897
+ * An object type that represents the {@link sap.m.VariantManagement} `manage`-event property `exe`.
159898
+ */
159899
+ type VariantManagementExe = {
159900
+ /**
159901
+ * the variant key.
159902
+ */
159903
+ key: string;
159904
+ /**
159905
+ * flag describing the associated Appy Automatically indicator.
159906
+ */
159907
+ exe: boolean;
159908
+ };
159909
+
159910
+ /**
159911
+ * An object type that represents the {@link sap.m.VariantManagement} `manage`-event property `fav`.
159912
+ */
159913
+ type VariantManagementFav = {
159914
+ /**
159915
+ * the variant key.
159916
+ */
159917
+ key: string;
159918
+ /**
159919
+ * flag describing the associated Favorite indicator.
159920
+ */
159921
+ visible: boolean;
159922
+ };
159923
+
159924
+ /**
159925
+ * An object type that represents the {@link sap.m.VariantManagement} `manage`-event property `rename`.
159926
+ */
159927
+ type VariantManagementRename = {
159928
+ /**
159929
+ * the variant key.
159930
+ */
159931
+ key: string;
159932
+ /**
159933
+ * the new title of the variant.
159934
+ */
159935
+ name: string;
159936
+ };
159937
+
159018
159938
  type ActionSheet$AfterCloseEvent = sap.ui.base.Event<
159019
159939
  ActionSheet$AfterCloseEventParameters,
159020
159940
  ActionSheet
@@ -159045,6 +159965,11 @@ declare namespace sap {
159045
159965
  ActionSheet
159046
159966
  >;
159047
159967
 
159968
+ type ActionTileContent$LinkPressEvent = sap.ui.base.Event<
159969
+ ActionTileContent$LinkPressEventParameters,
159970
+ ActionTileContent
159971
+ >;
159972
+
159048
159973
  type App$OrientationChangeEvent = sap.ui.base.Event<
159049
159974
  App$OrientationChangeEventParameters,
159050
159975
  App
@@ -160482,6 +161407,10 @@ declare namespace sap {
160482
161407
 
160483
161408
  "sap/m/ActionSheet": undefined;
160484
161409
 
161410
+ "sap/m/ActionTile": undefined;
161411
+
161412
+ "sap/m/ActionTileContent": undefined;
161413
+
160485
161414
  "sap/m/App": undefined;
160486
161415
 
160487
161416
  "sap/m/Avatar": undefined;
@@ -160532,6 +161461,8 @@ declare namespace sap {
160532
161461
 
160533
161462
  "sap/m/ComboBoxTextField": undefined;
160534
161463
 
161464
+ "sap/m/ContentConfig": undefined;
161465
+
160535
161466
  "sap/m/CustomListItem": undefined;
160536
161467
 
160537
161468
  "sap/m/CustomTile": undefined;
@@ -161040,6 +161971,8 @@ declare namespace sap {
161040
161971
 
161041
161972
  "sap/m/Tile": undefined;
161042
161973
 
161974
+ "sap/m/TileAttribute": undefined;
161975
+
161043
161976
  "sap/m/TileContainer": undefined;
161044
161977
 
161045
161978
  "sap/m/TileContent": undefined;