@openui5/types 1.117.1 → 1.119.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.117.1
1
+ // For Library Version: 1.119.0
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -498,6 +498,37 @@ declare module "sap/m/library" {
498
498
  */
499
499
  Saving = "Saving",
500
500
  }
501
+ /**
502
+ * @since 1.118
503
+ *
504
+ * Defines the groups in {@link sap.m.DynamicDateRange}.
505
+ */
506
+ export enum DynamicDateRangeGroups {
507
+ /**
508
+ * Group of options that provide selection of date ranges.
509
+ */
510
+ DateRanges = "DateRanges",
511
+ /**
512
+ * Group of options that provide selection of month related ranges.
513
+ */
514
+ Month = "Month",
515
+ /**
516
+ * Group of options that provide selection of quarter related ranges.
517
+ */
518
+ Quarters = "Quarters",
519
+ /**
520
+ * Group of options that provide selection of single dates.
521
+ */
522
+ SingleDates = "SingleDates",
523
+ /**
524
+ * Group of options that provide selection of week related ranges.
525
+ */
526
+ Weeks = "Weeks",
527
+ /**
528
+ * Group of options that provide selection of year related ranges.
529
+ */
530
+ Years = "Years",
531
+ }
501
532
  /**
502
533
  * @since 1.111
503
534
  *
@@ -1385,6 +1416,15 @@ declare module "sap/m/library" {
1385
1416
  ): void;
1386
1417
  }
1387
1418
 
1419
+ /**
1420
+ * @since 1.119
1421
+ *
1422
+ * Common interface for sap.m.ColumnListItem and sap.m.GroupHeaderListItem
1423
+ */
1424
+ export interface ITableItem {
1425
+ __implements__sap_m_ITableItem: boolean;
1426
+ }
1427
+
1388
1428
  /**
1389
1429
  * Available label display modes.
1390
1430
  */
@@ -1495,18 +1535,19 @@ declare module "sap/m/library" {
1495
1535
  */
1496
1536
  export enum ListKeyboardMode {
1497
1537
  /**
1498
- * This mode is suitable if the number of items is limited and if there are editable fields within the item.
1538
+ * This mode is suitable if there are only editable fields within the item.
1499
1539
  *
1500
- * While the last/first interactive element within an item has the focus, pressing tab/shift+tab moves the
1501
- * focus to the next/previous element in the tab chain after/before the item .
1540
+ * In this mode, the first focus goes to the first interactive element within the first item and this is
1541
+ * the only difference between the `Edit` and `Navigation` mode.
1502
1542
  */
1503
1543
  Edit = "Edit",
1504
1544
  /**
1505
- * This default mode is suitable if the number of items is unlimited or if there is no editable field within
1506
- * the item.
1545
+ * This default mode is suitable if the List or Table contains editable and/or non-editable fields.
1507
1546
  *
1508
- * While the last/first interactive element within an item has the focus, pressing tab/shift+tab moves the
1509
- * focus to the next/previous element in the tab chain after/before the `sap.m.List` or `sap.m.Table`.
1547
+ * In this mode, the first focus goes to the first item. If the focus is on the item, or cell, pressing
1548
+ * tab/shift+tab moves the focus to the next/previous element in the tab chain after/before the `sap.m.List`
1549
+ * or `sap.m.Table` control. If the focus is on the interactive element, pressing tab/shift+tab moves the
1550
+ * focus to the next/previous element in the tab chain after/before the focused interactive element.
1510
1551
  */
1511
1552
  Navigation = "Navigation",
1512
1553
  }
@@ -3339,23 +3380,48 @@ declare module "sap/m/library" {
3339
3380
  export namespace p13n {
3340
3381
  /**
3341
3382
  * @since 1.97
3342
- * @experimental
3343
3383
  *
3344
3384
  * Interface for P13nPopup which are suitable as content for the `sap.m.p13n.Popup`. Implementation of this
3345
3385
  * interface should include the following methods:
3346
3386
  * - `getTitle`
3387
+ * - `getVerticalScrolling`
3347
3388
  */
3348
3389
  interface IContent {
3349
3390
  __implements__sap_m_p13n_IContent: boolean;
3350
3391
 
3351
3392
  /**
3352
- * @experimental
3353
- *
3354
3393
  * Returns the title, which should be displayed in the P13nPopup to describe related content.
3355
3394
  *
3356
3395
  * @returns The title for the corresponding content to be displayed in the `sap.m.p13n.Popup`.
3357
3396
  */
3358
3397
  getTitle(): string;
3398
+ /**
3399
+ * Optionally returns the enablement of the contents vertical scrolling in case only one panel is used to
3400
+ * determine if the content provides its own scrolling capabilites.
3401
+ *
3402
+ * @returns The enablement of the vertical scrolling enablement for the `sap.m.p13n.Popup`.
3403
+ */
3404
+ getVerticalScrolling?(): boolean;
3405
+ }
3406
+ }
3407
+
3408
+ export namespace plugins {
3409
+ /**
3410
+ * @since 1.119
3411
+ *
3412
+ * Enumeration of the `copyPreference` in `CopyProvider`. Determines what is copied during a copy operation.
3413
+ */
3414
+ enum CopyPreference {
3415
+ /**
3416
+ * If cells are selected, only the content of the selected cells is copied, regardless of any other rows
3417
+ * or elements that might also be selected. If no cells are selected, the copy operation will default to
3418
+ * copying the selected rows.
3419
+ */
3420
+ Cells = "Cells",
3421
+ /**
3422
+ * The entire selected scope is copied, including both row and cell selection.
3423
+ */
3424
+ Full = "Full",
3359
3425
  }
3360
3426
  }
3361
3427
 
@@ -13595,6 +13661,8 @@ declare module "sap/m/ColumnListItem" {
13595
13661
  $ListItemBaseSettings,
13596
13662
  } from "sap/m/ListItemBase";
13597
13663
 
13664
+ import { ITableItem } from "sap/m/library";
13665
+
13598
13666
  import Control from "sap/ui/core/Control";
13599
13667
 
13600
13668
  import {
@@ -13615,7 +13683,10 @@ declare module "sap/m/ColumnListItem" {
13615
13683
  * **Note:** This control should only be used within the `sap.m.Table` control. The inherited `counter`
13616
13684
  * property of `sap.m.ListItemBase` is not supported.
13617
13685
  */
13618
- export default class ColumnListItem extends ListItemBase {
13686
+ export default class ColumnListItem
13687
+ extends ListItemBase
13688
+ implements ITableItem {
13689
+ __implements__sap_m_ITableItem: boolean;
13619
13690
  /**
13620
13691
  * Constructor for a new ColumnListItem.
13621
13692
  *
@@ -21475,9 +21546,9 @@ declare module "sap/m/DynamicDateOption" {
21475
21546
  * popup. Standard options are arranged in 6 groups - from 1 to 6. 1 - Single Dates 2 - Date Ranges 3 -
21476
21547
  * Weeks 4 - Months 5 - Quarters 6 - Years
21477
21548
  *
21478
- * @returns A group index
21549
+ * @returns A group key from {@link sap.m.DynamicDateRangeGroups}
21479
21550
  */
21480
- getGroup(): int;
21551
+ getGroup(): int | string;
21481
21552
  /**
21482
21553
  * Provides the option's group header text.
21483
21554
  *
@@ -21787,6 +21858,21 @@ declare module "sap/m/DynamicDateRange" {
21787
21858
  */
21788
21859
  oCustomOption: DynamicDateOption
21789
21860
  ): this;
21861
+ /**
21862
+ * @since 1.118
21863
+ *
21864
+ * Adds a group to the enumeration containing the current groups in `sap.m.DynamicDateRange`
21865
+ */
21866
+ addGroup(
21867
+ /**
21868
+ * the name that the group will be selected by.
21869
+ */
21870
+ sGroupName: string,
21871
+ /**
21872
+ * the group header that will be presented in the list.
21873
+ */
21874
+ sGroupHeader: string
21875
+ ): void;
21790
21876
  /**
21791
21877
  * @since 1.92
21792
21878
  *
@@ -21948,6 +22034,14 @@ declare module "sap/m/DynamicDateRange" {
21948
22034
  * @returns Value of property `enableGroupHeaders`
21949
22035
  */
21950
22036
  getEnableGroupHeaders(): boolean;
22037
+ /**
22038
+ * @since 1.118
22039
+ *
22040
+ * Provides the option's group header text.
22041
+ *
22042
+ * @returns A group header
22043
+ */
22044
+ getGroupHeader(): string;
21951
22045
  /**
21952
22046
  * @since 1.105
21953
22047
  *
@@ -22197,6 +22291,10 @@ declare module "sap/m/DynamicDateRange" {
22197
22291
  */
22198
22292
  vAriaLabelledBy: int | ID | Control
22199
22293
  ): ID | null;
22294
+ /**
22295
+ * Removes all additionally added groups
22296
+ */
22297
+ removeCustomGroups(): void;
22200
22298
  /**
22201
22299
  * Removes a customOption from the aggregation {@link #getCustomOptions customOptions}.
22202
22300
  *
@@ -22285,6 +22383,19 @@ declare module "sap/m/DynamicDateRange" {
22285
22383
  */
22286
22384
  bEnableGroupHeaders?: boolean
22287
22385
  ): this;
22386
+ /**
22387
+ * Sets a new header to an existing custom group.
22388
+ */
22389
+ setGroupHeader(
22390
+ /**
22391
+ * the name that the group will be selected by.
22392
+ */
22393
+ sGroupName: string,
22394
+ /**
22395
+ * the group header that will be presented in the list.
22396
+ */
22397
+ sGroupHeader: string
22398
+ ): void;
22288
22399
  /**
22289
22400
  * @since 1.105
22290
22401
  *
@@ -24116,23 +24227,6 @@ declare module "sap/m/FacetFilterItem" {
24116
24227
  * @returns Value of property `text`
24117
24228
  */
24118
24229
  getText(): string;
24119
- /**
24120
- * @deprecated (since 1.18.11) - replaced by `setCounter` method
24121
- *
24122
- * Sets a new value for property {@link #getCount count}.
24123
- *
24124
- * Defines the number of objects that match this item in the target data set.
24125
- *
24126
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
24127
- *
24128
- * @returns Reference to `this` in order to allow method chaining
24129
- */
24130
- setCount(
24131
- /**
24132
- * New value for property `count`
24133
- */
24134
- iCount?: int
24135
- ): this;
24136
24230
  /**
24137
24231
  * Sets a new value for property {@link #getKey key}.
24138
24232
  *
@@ -24786,27 +24880,6 @@ declare module "sap/m/FacetFilterList" {
24786
24880
  */
24787
24881
  mode: ListMode | keyof typeof ListMode
24788
24882
  ): this;
24789
- /**
24790
- * @deprecated (since 1.20.0) - replaced by `setMode` method. `FacetFilterList` overrides the `setMode`
24791
- * method to restrict the possible modes to `MultiSelect` and `SingleSelectMaster`. All other modes are
24792
- * ignored and will not be set.
24793
- *
24794
- * Sets a new value for property {@link #getMultiSelect multiSelect}.
24795
- *
24796
- * Specifies whether multiple or single selection is used.
24797
- *
24798
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
24799
- *
24800
- * Default value is `true`.
24801
- *
24802
- * @returns Reference to `this` in order to allow method chaining
24803
- */
24804
- setMultiSelect(
24805
- /**
24806
- * New value for property `multiSelect`
24807
- */
24808
- bMultiSelect?: boolean
24809
- ): this;
24810
24883
  /**
24811
24884
  * @since 1.22.1
24812
24885
  *
@@ -25584,11 +25657,12 @@ declare module "sap/m/FeedInput" {
25584
25657
  mParameters?: FeedInput$PostEventParameters
25585
25658
  ): this;
25586
25659
  /**
25660
+ * @deprecated (since 1.88) - This will not have any effect in code now.
25661
+ *
25587
25662
  * Gets current value of property {@link #getAriaLabelForPicture ariaLabelForPicture}.
25588
25663
  *
25589
25664
  * Text for Picture which will be read by screenreader. If a new ariaLabelForPicture is set, any previously
25590
- * set ariaLabelForPicture is deactivated. Deprecated as of version 1.88. This will not have any effect
25591
- * in code now.
25665
+ * set ariaLabelForPicture is deactivated.
25592
25666
  *
25593
25667
  * @returns Value of property `ariaLabelForPicture`
25594
25668
  */
@@ -25649,6 +25723,8 @@ declare module "sap/m/FeedInput" {
25649
25723
  */
25650
25724
  getIcon(): URI;
25651
25725
  /**
25726
+ * @deprecated (since 1.88) - Image replaced by {@link sap.m.Avatar }
25727
+ *
25652
25728
  * Gets current value of property {@link #getIconDensityAware iconDensityAware}.
25653
25729
  *
25654
25730
  * Some mobile devices support higher resolution images while others do not. Therefore, you should provide
@@ -25661,8 +25737,6 @@ declare module "sap/m/FeedInput" {
25661
25737
  *
25662
25738
  * Please be aware that this property is relevant only for images and not for icons.
25663
25739
  *
25664
- * Deprecated as of version 1.88. Image is replaced by avatar.
25665
- *
25666
25740
  * Default value is `true`.
25667
25741
  *
25668
25742
  * @returns Value of property `iconDensityAware`
@@ -25771,11 +25845,12 @@ declare module "sap/m/FeedInput" {
25771
25845
  */
25772
25846
  getValue(): string;
25773
25847
  /**
25848
+ * @deprecated (since 1.88) - This will not have any effect in code now.
25849
+ *
25774
25850
  * Sets a new value for property {@link #getAriaLabelForPicture ariaLabelForPicture}.
25775
25851
  *
25776
25852
  * Text for Picture which will be read by screenreader. If a new ariaLabelForPicture is set, any previously
25777
- * set ariaLabelForPicture is deactivated. Deprecated as of version 1.88. This will not have any effect
25778
- * in code now.
25853
+ * set ariaLabelForPicture is deactivated.
25779
25854
  *
25780
25855
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
25781
25856
  *
@@ -25878,6 +25953,8 @@ declare module "sap/m/FeedInput" {
25878
25953
  sIcon?: URI
25879
25954
  ): this;
25880
25955
  /**
25956
+ * @deprecated (since 1.88) - Image replaced by {@link sap.m.Avatar }
25957
+ *
25881
25958
  * Sets a new value for property {@link #getIconDensityAware iconDensityAware}.
25882
25959
  *
25883
25960
  * Some mobile devices support higher resolution images while others do not. Therefore, you should provide
@@ -25890,8 +25967,6 @@ declare module "sap/m/FeedInput" {
25890
25967
  *
25891
25968
  * Please be aware that this property is relevant only for images and not for icons.
25892
25969
  *
25893
- * Deprecated as of version 1.88. Image is replaced by avatar.
25894
- *
25895
25970
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
25896
25971
  *
25897
25972
  * Default value is `true`.
@@ -26161,6 +26236,8 @@ declare module "sap/m/FeedInput" {
26161
26236
  showIcon?: boolean | PropertyBindingInfo | `{${string}}`;
26162
26237
 
26163
26238
  /**
26239
+ * @deprecated (since 1.88) - Image replaced by {@link sap.m.Avatar }
26240
+ *
26164
26241
  * Some mobile devices support higher resolution images while others do not. Therefore, you should provide
26165
26242
  * image resources for all relevant densities. If the property is set to "true", one or more requests are
26166
26243
  * sent to the server to try and get the perfect density version of an image. If an image of a certain density
@@ -26170,8 +26247,6 @@ declare module "sap/m/FeedInput" {
26170
26247
  * round-trips.
26171
26248
  *
26172
26249
  * Please be aware that this property is relevant only for images and not for icons.
26173
- *
26174
- * Deprecated as of version 1.88. Image is replaced by avatar.
26175
26250
  */
26176
26251
  iconDensityAware?: boolean | PropertyBindingInfo | `{${string}}`;
26177
26252
 
@@ -26185,9 +26260,10 @@ declare module "sap/m/FeedInput" {
26185
26260
  buttonTooltip?: TooltipBase | PropertyBindingInfo | `{${string}}`;
26186
26261
 
26187
26262
  /**
26263
+ * @deprecated (since 1.88) - This will not have any effect in code now.
26264
+ *
26188
26265
  * Text for Picture which will be read by screenreader. If a new ariaLabelForPicture is set, any previously
26189
- * set ariaLabelForPicture is deactivated. Deprecated as of version 1.88. This will not have any effect
26190
- * in code now.
26266
+ * set ariaLabelForPicture is deactivated.
26191
26267
  */
26192
26268
  ariaLabelForPicture?: string | PropertyBindingInfo;
26193
26269
 
@@ -26539,6 +26615,8 @@ declare module "sap/m/FeedListItem" {
26539
26615
  */
26540
26616
  getIconActive(): boolean;
26541
26617
  /**
26618
+ * @deprecated (since 1.88) - Image is replaced by {@link sap.m.Avatar }
26619
+ *
26542
26620
  * Gets current value of property {@link #getIconDensityAware iconDensityAware}.
26543
26621
  *
26544
26622
  * By default, this is set to true but then one or more requests are sent trying to get the density perfect
@@ -26546,8 +26624,6 @@ declare module "sap/m/FeedListItem" {
26546
26624
  *
26547
26625
  * If bandwidth is the key for the application, set this value to false.
26548
26626
  *
26549
- * Deprecated as of version 1.88. Image is replaced by avatar.
26550
- *
26551
26627
  * Default value is `true`.
26552
26628
  *
26553
26629
  * @returns Value of property `iconDensityAware`
@@ -26825,6 +26901,8 @@ declare module "sap/m/FeedListItem" {
26825
26901
  bIconActive?: boolean
26826
26902
  ): this;
26827
26903
  /**
26904
+ * @deprecated (since 1.88) - Image is replaced by {@link sap.m.Avatar }
26905
+ *
26828
26906
  * Sets a new value for property {@link #getIconDensityAware iconDensityAware}.
26829
26907
  *
26830
26908
  * By default, this is set to true but then one or more requests are sent trying to get the density perfect
@@ -26832,8 +26910,6 @@ declare module "sap/m/FeedListItem" {
26832
26910
  *
26833
26911
  * If bandwidth is the key for the application, set this value to false.
26834
26912
  *
26835
- * Deprecated as of version 1.88. Image is replaced by avatar.
26836
- *
26837
26913
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
26838
26914
  *
26839
26915
  * Default value is `true`.
@@ -27159,12 +27235,12 @@ declare module "sap/m/FeedListItem" {
27159
27235
  iconActive?: boolean | PropertyBindingInfo | `{${string}}`;
27160
27236
 
27161
27237
  /**
27238
+ * @deprecated (since 1.88) - Image is replaced by {@link sap.m.Avatar }
27239
+ *
27162
27240
  * By default, this is set to true but then one or more requests are sent trying to get the density perfect
27163
27241
  * version of image if this version of image doesn't exist on the server.
27164
27242
  *
27165
27243
  * If bandwidth is the key for the application, set this value to false.
27166
- *
27167
- * Deprecated as of version 1.88. Image is replaced by avatar.
27168
27244
  */
27169
27245
  iconDensityAware?: boolean | PropertyBindingInfo | `{${string}}`;
27170
27246
 
@@ -29872,6 +29948,20 @@ declare module "sap/m/GenericTile" {
29872
29948
  * @returns An array containing all of the tile's bounding rectangles
29873
29949
  */
29874
29950
  getBoundingRects(): object[];
29951
+ /**
29952
+ * @since 1.118
29953
+ * @experimental (since 1.113)
29954
+ *
29955
+ * Gets current value of property {@link #getDropAreaOffset dropAreaOffset}.
29956
+ *
29957
+ * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
29958
+ * all the tile edges.
29959
+ *
29960
+ * Default value is `0`.
29961
+ *
29962
+ * @returns Value of property `dropAreaOffset`
29963
+ */
29964
+ getDropAreaOffset(): int;
29875
29965
  /**
29876
29966
  * @experimental (since 1.96)
29877
29967
  *
@@ -30365,6 +30455,27 @@ declare module "sap/m/GenericTile" {
30365
30455
  */
30366
30456
  sBackgroundImage?: URI
30367
30457
  ): this;
30458
+ /**
30459
+ * @since 1.118
30460
+ * @experimental (since 1.113)
30461
+ *
30462
+ * Sets a new value for property {@link #getDropAreaOffset dropAreaOffset}.
30463
+ *
30464
+ * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
30465
+ * all the tile edges.
30466
+ *
30467
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
30468
+ *
30469
+ * Default value is `0`.
30470
+ *
30471
+ * @returns Reference to `this` in order to allow method chaining
30472
+ */
30473
+ setDropAreaOffset(
30474
+ /**
30475
+ * New value for property `dropAreaOffset`
30476
+ */
30477
+ iDropAreaOffset?: int
30478
+ ): this;
30368
30479
  /**
30369
30480
  * @experimental (since 1.96)
30370
30481
  *
@@ -31042,6 +31153,15 @@ declare module "sap/m/GenericTile" {
31042
31153
  */
31043
31154
  tileBadge?: string | PropertyBindingInfo;
31044
31155
 
31156
+ /**
31157
+ * @since 1.118
31158
+ * @experimental (since 1.113)
31159
+ *
31160
+ * Sets the offset for the Drop Area associated with a Generic Tile. The offset is applied uniformly to
31161
+ * all the tile edges.
31162
+ */
31163
+ dropAreaOffset?: int | PropertyBindingInfo | `{${string}}`;
31164
+
31045
31165
  /**
31046
31166
  * The content of the tile.
31047
31167
  */
@@ -31105,6 +31225,8 @@ declare module "sap/m/GroupHeaderListItem" {
31105
31225
  $ListItemBaseSettings,
31106
31226
  } from "sap/m/ListItemBase";
31107
31227
 
31228
+ import { ITableItem } from "sap/m/library";
31229
+
31108
31230
  import ElementMetadata from "sap/ui/core/ElementMetadata";
31109
31231
 
31110
31232
  import { TextDirection } from "sap/ui/core/library";
@@ -31118,7 +31240,10 @@ declare module "sap/m/GroupHeaderListItem" {
31118
31240
  * in `sap.m.List` and `sap.m.Table`. **Note:** The inherited properties `unread`, `selected`, `counter`
31119
31241
  * and `press` event from `sap.m.ListItemBase` are not supported.
31120
31242
  */
31121
- export default class GroupHeaderListItem extends ListItemBase {
31243
+ export default class GroupHeaderListItem
31244
+ extends ListItemBase
31245
+ implements ITableItem {
31246
+ __implements__sap_m_ITableItem: boolean;
31122
31247
  /**
31123
31248
  * Constructor for a new GroupHeaderListItem.
31124
31249
  *
@@ -36251,6 +36376,20 @@ declare module "sap/m/IllustrationPool" {
36251
36376
  * {@link sap.m.IllustrationPool.loadRestOfTheAssets} API.
36252
36377
  */
36253
36378
  interface IllustrationPool {
36379
+ /**
36380
+ * @since 1.116.0
36381
+ *
36382
+ * Returns the metadata of an Illustration Set. The metadata contains the names of the symbols and the theme
36383
+ * mappings. If the Illustration Set is not registered, an error is logged and null is returned.
36384
+ *
36385
+ * @returns The metadata of the Illustration Set
36386
+ */
36387
+ getIllustrationSetMetadata(
36388
+ /**
36389
+ * The name of the illustration set
36390
+ */
36391
+ sSet: string
36392
+ ): object;
36254
36393
  /**
36255
36394
  * Loads an SVG asset depending on the input asset ID.
36256
36395
  */
@@ -36262,7 +36401,13 @@ declare module "sap/m/IllustrationPool" {
36262
36401
  /**
36263
36402
  * the ID of the Illustration instance which is requiring the asset
36264
36403
  */
36265
- sInstanceId: string
36404
+ sInstanceId: string,
36405
+ /**
36406
+ * The prefix of the path of the asset being loaded. Used for loading assets from different collections.
36407
+ * Used to store the asset ID in the DOM pool, so it can be distinguished from other assets with the same
36408
+ * ID.
36409
+ */
36410
+ sIdPrefix: string
36266
36411
  ): void;
36267
36412
  /**
36268
36413
  * Loads the rest of the SVG assets for a given illustration set.
@@ -37857,9 +38002,7 @@ declare module "sap/m/Input" {
37857
38002
 
37858
38003
  import Item from "sap/ui/core/Item";
37859
38004
 
37860
- import ColumnListItem from "sap/m/ColumnListItem";
37861
-
37862
- import GroupHeaderListItem from "sap/m/GroupHeaderListItem";
38005
+ import { ITableItem, InputTextFormatMode, InputType } from "sap/m/library";
37863
38006
 
37864
38007
  import {
37865
38008
  AggregationBindingInfo,
@@ -37868,7 +38011,7 @@ declare module "sap/m/Input" {
37868
38011
 
37869
38012
  import ElementMetadata from "sap/ui/core/ElementMetadata";
37870
38013
 
37871
- import { InputTextFormatMode, InputType } from "sap/m/library";
38014
+ import ColumnListItem from "sap/m/ColumnListItem";
37872
38015
 
37873
38016
  import Event from "sap/ui/base/Event";
37874
38017
 
@@ -38040,7 +38183,7 @@ declare module "sap/m/Input" {
38040
38183
  /**
38041
38184
  * The suggestionRow to add; if empty, nothing is inserted
38042
38185
  */
38043
- vSuggestionRow: ColumnListItem | GroupHeaderListItem
38186
+ oSuggestionRow: ITableItem
38044
38187
  ): this;
38045
38188
  /**
38046
38189
  * Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.Input`.
@@ -38838,7 +38981,7 @@ declare module "sap/m/Input" {
38838
38981
  * event method. **Note:** If `suggestionItems` & `suggestionRows` are set in parallel, the last aggeragtion
38839
38982
  * to come would overwrite the previous ones.
38840
38983
  */
38841
- getSuggestionRows(): Array<ColumnListItem | GroupHeaderListItem>;
38984
+ getSuggestionRows(): ITableItem[];
38842
38985
  /**
38843
38986
  * @since 1.44
38844
38987
  *
@@ -38908,6 +39051,7 @@ declare module "sap/m/Input" {
38908
39051
  getValueHelpIconSrc(): URI;
38909
39052
  /**
38910
39053
  * @since 1.21.0
39054
+ * @deprecated (since 1.119) - The property valueHelpOnly should not be used anymore
38911
39055
  *
38912
39056
  * Gets current value of property {@link #getValueHelpOnly valueHelpOnly}.
38913
39057
  *
@@ -38980,7 +39124,7 @@ declare module "sap/m/Input" {
38980
39124
  /**
38981
39125
  * @since 1.21.1
38982
39126
  *
38983
- * Checks for the provided `sap.m.ColumnListItem` in the aggregation {@link #getSuggestionRows suggestionRows}.
39127
+ * Checks for the provided `sap.m.ITableItem` in the aggregation {@link #getSuggestionRows suggestionRows}.
38984
39128
  * and returns its index if found or -1 otherwise.
38985
39129
  *
38986
39130
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
@@ -38989,7 +39133,7 @@ declare module "sap/m/Input" {
38989
39133
  /**
38990
39134
  * The suggestionRow whose index is looked for
38991
39135
  */
38992
- vSuggestionRow: ColumnListItem | GroupHeaderListItem
39136
+ oSuggestionRow: ITableItem
38993
39137
  ): int;
38994
39138
  /**
38995
39139
  * @since 1.21.1
@@ -39036,7 +39180,7 @@ declare module "sap/m/Input" {
39036
39180
  /**
39037
39181
  * The suggestionRow to insert; if empty, nothing is inserted
39038
39182
  */
39039
- vSuggestionRow: ColumnListItem | GroupHeaderListItem,
39183
+ oSuggestionRow: ITableItem,
39040
39184
  /**
39041
39185
  * The `0`-based index the suggestionRow should be inserted at; for a negative value of `iIndex`, the suggestionRow
39042
39186
  * is inserted at position 0; for a value greater than the current size of the aggregation, the suggestionRow
@@ -39059,6 +39203,7 @@ declare module "sap/m/Input" {
39059
39203
  */
39060
39204
  isMobileDevice(): boolean;
39061
39205
  /**
39206
+ * @deprecated (since 1.119) - the property valueHelpOnly should not be used anymore
39062
39207
  * @ui5-protected Do not call from applications (only from related classes in the framework)
39063
39208
  *
39064
39209
  * Gets the supported openers for the valueHelpOnly. In the context of the Input, all targets are valid.
@@ -39194,7 +39339,7 @@ declare module "sap/m/Input" {
39194
39339
  *
39195
39340
  * @returns An array of the removed elements (might be empty)
39196
39341
  */
39197
- removeAllSuggestionRows(): Array<ColumnListItem | GroupHeaderListItem>;
39342
+ removeAllSuggestionRows(): ITableItem[];
39198
39343
  /**
39199
39344
  * @since 1.21.1
39200
39345
  *
@@ -39230,8 +39375,8 @@ declare module "sap/m/Input" {
39230
39375
  /**
39231
39376
  * The suggestionRow to remove or its index or id
39232
39377
  */
39233
- vSuggestionRow: int | string | ColumnListItem | GroupHeaderListItem
39234
- ): ColumnListItem | GroupHeaderListItem | null;
39378
+ vSuggestionRow: int | string | ITableItem
39379
+ ): ITableItem | null;
39235
39380
  /**
39236
39381
  * @since 1.61
39237
39382
  *
@@ -39738,6 +39883,7 @@ declare module "sap/m/Input" {
39738
39883
  ): this;
39739
39884
  /**
39740
39885
  * @since 1.21.0
39886
+ * @deprecated (since 1.119) - The property valueHelpOnly should not be used anymore
39741
39887
  *
39742
39888
  * Sets a new value for property {@link #getValueHelpOnly valueHelpOnly}.
39743
39889
  *
@@ -39912,6 +40058,7 @@ declare module "sap/m/Input" {
39912
40058
 
39913
40059
  /**
39914
40060
  * @since 1.21.0
40061
+ * @deprecated (since 1.119) - The property valueHelpOnly should not be used anymore
39915
40062
  *
39916
40063
  * If set to true, direct text input is disabled and the control will trigger the event "valueHelpRequest"
39917
40064
  * for all user interactions. The properties "showValueHelp", "editable", and "enabled" must be set to true,
@@ -40095,9 +40242,8 @@ declare module "sap/m/Input" {
40095
40242
  * to come would overwrite the previous ones.
40096
40243
  */
40097
40244
  suggestionRows?:
40098
- | Array<GroupHeaderListItem | ColumnListItem>
40099
- | GroupHeaderListItem
40100
- | ColumnListItem
40245
+ | ITableItem[]
40246
+ | ITableItem
40101
40247
  | AggregationBindingInfo
40102
40248
  | `{${string}}`;
40103
40249
 
@@ -45453,22 +45599,6 @@ declare module "sap/m/ListBase" {
45453
45599
  */
45454
45600
  oListener?: object
45455
45601
  ): this;
45456
- /**
45457
- * @ui5-protected Do not call from applications (only from related classes in the framework)
45458
- *
45459
- * This method is a hook for the RenderManager that gets called during the rendering of child Controls.
45460
- * It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
45461
- */
45462
- enhanceAccessibilityState(
45463
- /**
45464
- * The Control that gets rendered by the RenderManager
45465
- */
45466
- oElement: Control,
45467
- /**
45468
- * The mapping of "aria-" prefixed attributes
45469
- */
45470
- mAriaProps: object
45471
- ): void;
45472
45602
  /**
45473
45603
  * @since 1.54
45474
45604
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -45832,7 +45962,7 @@ declare module "sap/m/ListBase" {
45832
45962
  *
45833
45963
  * Defines keyboard handling behavior of the control.
45834
45964
  *
45835
- * Default value is `Navigation`.
45965
+ * Default value is `"Navigation"`.
45836
45966
  *
45837
45967
  * @returns Value of property `keyboardMode`
45838
45968
  */
@@ -46444,7 +46574,7 @@ declare module "sap/m/ListBase" {
46444
46574
  *
46445
46575
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
46446
46576
  *
46447
- * Default value is `Navigation`.
46577
+ * Default value is `"Navigation"`.
46448
46578
  *
46449
46579
  * @returns Reference to `this` in order to allow method chaining
46450
46580
  */
@@ -51685,7 +51815,7 @@ declare module "sap/m/MessageItem" {
51685
51815
  *
51686
51816
  * @returns Value of property `type`
51687
51817
  */
51688
- getType(): MessageType | keyof typeof MessageType;
51818
+ getType(): MessageType;
51689
51819
  /**
51690
51820
  * @since 1.58
51691
51821
  *
@@ -51840,7 +51970,7 @@ declare module "sap/m/MessageItem" {
51840
51970
  /**
51841
51971
  * Type of Message
51842
51972
  */
51843
- sType: MessageType | keyof typeof MessageType
51973
+ sType: MessageType
51844
51974
  ): this;
51845
51975
  }
51846
51976
 
@@ -51848,10 +51978,7 @@ declare module "sap/m/MessageItem" {
51848
51978
  /**
51849
51979
  * Specifies the type of the message
51850
51980
  */
51851
- type?:
51852
- | (MessageType | keyof typeof MessageType)
51853
- | PropertyBindingInfo
51854
- | `{${string}}`;
51981
+ type?: MessageType | PropertyBindingInfo | `{${string}}`;
51855
51982
 
51856
51983
  /**
51857
51984
  * Specifies the title of the message
@@ -53975,7 +54102,7 @@ declare module "sap/m/MessagePopover" {
53975
54102
  /**
53976
54103
  * Refers to the type of messages being shown.
53977
54104
  */
53978
- messageTypeFilter?: MessageType | keyof typeof MessageType;
54105
+ messageTypeFilter?: MessageType;
53979
54106
  }
53980
54107
 
53981
54108
  export type MessagePopover$ItemSelectEvent = Event<
@@ -53987,7 +54114,7 @@ declare module "sap/m/MessagePopover" {
53987
54114
  /**
53988
54115
  * This parameter refers to the type of messages being shown.
53989
54116
  */
53990
- messageTypeFilter?: MessageType | keyof typeof MessageType;
54117
+ messageTypeFilter?: MessageType;
53991
54118
  }
53992
54119
 
53993
54120
  export type MessagePopover$ListSelectEvent = Event<
@@ -54353,7 +54480,7 @@ declare module "sap/m/MessageStrip" {
54353
54480
  *
54354
54481
  * @returns Value of property `type`
54355
54482
  */
54356
- getType(): MessageType | keyof typeof MessageType;
54483
+ getType(): MessageType;
54357
54484
  /**
54358
54485
  * Sets a new value for property {@link #getCustomIcon customIcon}.
54359
54486
  *
@@ -54473,7 +54600,7 @@ declare module "sap/m/MessageStrip" {
54473
54600
  /**
54474
54601
  * New value for property `type`
54475
54602
  */
54476
- sType?: MessageType | keyof typeof MessageType
54603
+ sType?: MessageType
54477
54604
  ): this;
54478
54605
  }
54479
54606
 
@@ -54488,10 +54615,7 @@ declare module "sap/m/MessageStrip" {
54488
54615
  * (default), Success, Warning, Error. If None is passed, the value is set to Information and a warning
54489
54616
  * is displayed in the console.
54490
54617
  */
54491
- type?:
54492
- | (MessageType | keyof typeof MessageType)
54493
- | PropertyBindingInfo
54494
- | `{${string}}`;
54618
+ type?: MessageType | PropertyBindingInfo | `{${string}}`;
54495
54619
 
54496
54620
  /**
54497
54621
  * Determines a custom icon which is displayed. If none is set, the default icon for this message type is
@@ -55589,7 +55713,7 @@ declare module "sap/m/MessageView" {
55589
55713
  /**
55590
55714
  * Refers to the type of messages being shown. See sap.ui.core.MessageType values for types.
55591
55715
  */
55592
- messageTypeFilter?: MessageType | keyof typeof MessageType;
55716
+ messageTypeFilter?: MessageType;
55593
55717
  }
55594
55718
 
55595
55719
  export type MessageView$ItemSelectEvent = Event<
@@ -55601,7 +55725,7 @@ declare module "sap/m/MessageView" {
55601
55725
  /**
55602
55726
  * This parameter refers to the type of messages being shown.
55603
55727
  */
55604
- messageTypeFilter?: MessageType | keyof typeof MessageType;
55728
+ messageTypeFilter?: MessageType;
55605
55729
  }
55606
55730
 
55607
55731
  export type MessageView$ListSelectEvent = Event<
@@ -56669,6 +56793,7 @@ declare module "sap/m/MultiInput" {
56669
56793
  iIndex: int
56670
56794
  ): this;
56671
56795
  /**
56796
+ * @deprecated (since 1.119) - the property valueHelpOnly should not be used anymore
56672
56797
  * @ui5-protected Do not call from applications (only from related classes in the framework)
56673
56798
  *
56674
56799
  * Gets the supported openers for the valueHelpOnly.
@@ -68343,6 +68468,8 @@ declare module "sap/m/p13n/SelectionPanel" {
68343
68468
 
68344
68469
  import ElementMetadata from "sap/ui/core/ElementMetadata";
68345
68470
 
68471
+ import { MultiSelectMode } from "sap/m/library";
68472
+
68346
68473
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
68347
68474
 
68348
68475
  /**
@@ -68455,6 +68582,16 @@ declare module "sap/m/p13n/SelectionPanel" {
68455
68582
  * @returns Value of property `itemFactory`
68456
68583
  */
68457
68584
  getItemFactory(): Function;
68585
+ /**
68586
+ * Gets current value of property {@link #getMultiSelectMode multiSelectMode}.
68587
+ *
68588
+ * Defines the multi-selection mode for the inner list control.
68589
+ *
68590
+ * Default value is `ClearAll`.
68591
+ *
68592
+ * @returns Value of property `multiSelectMode`
68593
+ */
68594
+ getMultiSelectMode(): MultiSelectMode | keyof typeof MultiSelectMode;
68458
68595
  /**
68459
68596
  * Gets current value of property {@link #getShowHeader showHeader}.
68460
68597
  *
@@ -68547,6 +68684,23 @@ declare module "sap/m/p13n/SelectionPanel" {
68547
68684
  */
68548
68685
  fnItemFactory: Function
68549
68686
  ): this;
68687
+ /**
68688
+ * Sets a new value for property {@link #getMultiSelectMode multiSelectMode}.
68689
+ *
68690
+ * Defines the multi-selection mode for the inner list control.
68691
+ *
68692
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
68693
+ *
68694
+ * Default value is `ClearAll`.
68695
+ *
68696
+ * @returns Reference to `this` in order to allow method chaining
68697
+ */
68698
+ setMultiSelectMode(
68699
+ /**
68700
+ * New value for property `multiSelectMode`
68701
+ */
68702
+ sMultiSelectMode?: MultiSelectMode | keyof typeof MultiSelectMode
68703
+ ): this;
68550
68704
  /**
68551
68705
  * Sets the personalization state of the panel instance.
68552
68706
  *
@@ -68631,6 +68785,14 @@ declare module "sap/m/p13n/SelectionPanel" {
68631
68785
  * a focusable children control to provide the `labelFor` reference for the associated text.
68632
68786
  */
68633
68787
  itemFactory?: Function | PropertyBindingInfo | `{${string}}`;
68788
+
68789
+ /**
68790
+ * Defines the multi-selection mode for the inner list control.
68791
+ */
68792
+ multiSelectMode?:
68793
+ | (MultiSelectMode | keyof typeof MultiSelectMode)
68794
+ | PropertyBindingInfo
68795
+ | `{${string}}`;
68634
68796
  }
68635
68797
  }
68636
68798
 
@@ -79094,6 +79256,8 @@ declare module "sap/m/PlanningCalendar" {
79094
79256
 
79095
79257
  import UI5Date from "sap/ui/core/date/UI5Date";
79096
79258
 
79259
+ import AvatarShape from "sap/m/AvatarShape";
79260
+
79097
79261
  import ElementMetadata from "sap/ui/core/ElementMetadata";
79098
79262
 
79099
79263
  import CalendarType from "sap/ui/core/CalendarType";
@@ -79375,6 +79539,7 @@ declare module "sap/m/PlanningCalendar" {
79375
79539
  ): this;
79376
79540
  /**
79377
79541
  * @since 1.46.0
79542
+ * @deprecated (since 1.119)
79378
79543
  *
79379
79544
  * Attaches event handler `fnFunction` to the {@link #event:rowHeaderClick rowHeaderClick} event of this
79380
79545
  * `sap.m.PlanningCalendar`.
@@ -79403,6 +79568,7 @@ declare module "sap/m/PlanningCalendar" {
79403
79568
  ): this;
79404
79569
  /**
79405
79570
  * @since 1.46.0
79571
+ * @deprecated (since 1.119)
79406
79572
  *
79407
79573
  * Attaches event handler `fnFunction` to the {@link #event:rowHeaderClick rowHeaderClick} event of this
79408
79574
  * `sap.m.PlanningCalendar`.
@@ -79424,6 +79590,57 @@ declare module "sap/m/PlanningCalendar" {
79424
79590
  */
79425
79591
  oListener?: object
79426
79592
  ): this;
79593
+ /**
79594
+ * @since 1.119.0
79595
+ *
79596
+ * Attaches event handler `fnFunction` to the {@link #event:rowHeaderPress rowHeaderPress} event of this
79597
+ * `sap.m.PlanningCalendar`.
79598
+ *
79599
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
79600
+ * otherwise it will be bound to this `sap.m.PlanningCalendar` itself.
79601
+ *
79602
+ * Fires when a row header press is triggered with mouse click, SPACE or ENTER press.
79603
+ *
79604
+ * @returns Reference to `this` in order to allow method chaining
79605
+ */
79606
+ attachRowHeaderPress(
79607
+ /**
79608
+ * An application-specific payload object that will be passed to the event handler along with the event
79609
+ * object when firing the event
79610
+ */
79611
+ oData: object,
79612
+ /**
79613
+ * The function to be called when the event occurs
79614
+ */
79615
+ fnFunction: (p1: PlanningCalendar$RowHeaderPressEvent) => void,
79616
+ /**
79617
+ * Context object to call the event handler with. Defaults to this `sap.m.PlanningCalendar` itself
79618
+ */
79619
+ oListener?: object
79620
+ ): this;
79621
+ /**
79622
+ * @since 1.119.0
79623
+ *
79624
+ * Attaches event handler `fnFunction` to the {@link #event:rowHeaderPress rowHeaderPress} event of this
79625
+ * `sap.m.PlanningCalendar`.
79626
+ *
79627
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
79628
+ * otherwise it will be bound to this `sap.m.PlanningCalendar` itself.
79629
+ *
79630
+ * Fires when a row header press is triggered with mouse click, SPACE or ENTER press.
79631
+ *
79632
+ * @returns Reference to `this` in order to allow method chaining
79633
+ */
79634
+ attachRowHeaderPress(
79635
+ /**
79636
+ * The function to be called when the event occurs
79637
+ */
79638
+ fnFunction: (p1: PlanningCalendar$RowHeaderPressEvent) => void,
79639
+ /**
79640
+ * Context object to call the event handler with. Defaults to this `sap.m.PlanningCalendar` itself
79641
+ */
79642
+ oListener?: object
79643
+ ): this;
79427
79644
  /**
79428
79645
  * Attaches event handler `fnFunction` to the {@link #event:rowSelectionChange rowSelectionChange} event
79429
79646
  * of this `sap.m.PlanningCalendar`.
@@ -79631,6 +79848,7 @@ declare module "sap/m/PlanningCalendar" {
79631
79848
  ): this;
79632
79849
  /**
79633
79850
  * @since 1.46.0
79851
+ * @deprecated (since 1.119)
79634
79852
  *
79635
79853
  * Detaches event handler `fnFunction` from the {@link #event:rowHeaderClick rowHeaderClick} event of this
79636
79854
  * `sap.m.PlanningCalendar`.
@@ -79649,6 +79867,26 @@ declare module "sap/m/PlanningCalendar" {
79649
79867
  */
79650
79868
  oListener?: object
79651
79869
  ): this;
79870
+ /**
79871
+ * @since 1.119.0
79872
+ *
79873
+ * Detaches event handler `fnFunction` from the {@link #event:rowHeaderPress rowHeaderPress} event of this
79874
+ * `sap.m.PlanningCalendar`.
79875
+ *
79876
+ * The passed function and listener object must match the ones used for event registration.
79877
+ *
79878
+ * @returns Reference to `this` in order to allow method chaining
79879
+ */
79880
+ detachRowHeaderPress(
79881
+ /**
79882
+ * The function to be called, when the event occurs
79883
+ */
79884
+ fnFunction: (p1: PlanningCalendar$RowHeaderPressEvent) => void,
79885
+ /**
79886
+ * Context object on which the given function had to be called
79887
+ */
79888
+ oListener?: object
79889
+ ): this;
79652
79890
  /**
79653
79891
  * Detaches event handler `fnFunction` from the {@link #event:rowSelectionChange rowSelectionChange} event
79654
79892
  * of this `sap.m.PlanningCalendar`.
@@ -79730,6 +79968,7 @@ declare module "sap/m/PlanningCalendar" {
79730
79968
  ): this;
79731
79969
  /**
79732
79970
  * @since 1.46.0
79971
+ * @deprecated (since 1.119)
79733
79972
  * @ui5-protected Do not call from applications (only from related classes in the framework)
79734
79973
  *
79735
79974
  * Fires event {@link #event:rowHeaderClick rowHeaderClick} to attached listeners.
@@ -79742,6 +79981,20 @@ declare module "sap/m/PlanningCalendar" {
79742
79981
  */
79743
79982
  mParameters?: PlanningCalendar$RowHeaderClickEventParameters
79744
79983
  ): this;
79984
+ /**
79985
+ * @since 1.119.0
79986
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
79987
+ *
79988
+ * Fires event {@link #event:rowHeaderPress rowHeaderPress} to attached listeners.
79989
+ *
79990
+ * @returns Reference to `this` in order to allow method chaining
79991
+ */
79992
+ fireRowHeaderPress(
79993
+ /**
79994
+ * Parameters to pass along with the event
79995
+ */
79996
+ mParameters?: PlanningCalendar$RowHeaderPressEventParameters
79997
+ ): this;
79745
79998
  /**
79746
79999
  * @ui5-protected Do not call from applications (only from related classes in the framework)
79747
80000
  *
@@ -79813,6 +80066,7 @@ declare module "sap/m/PlanningCalendar" {
79813
80066
  | keyof typeof CalendarAppointmentRoundWidth;
79814
80067
  /**
79815
80068
  * @since 1.38.0
80069
+ * @deprecated (since 1.119) - Please use the `appointmentHeight` with value "Automatic" property instead.
79816
80070
  *
79817
80071
  * Gets current value of property {@link #getAppointmentsReducedHeight appointmentsReducedHeight}.
79818
80072
  *
@@ -79932,6 +80186,16 @@ declare module "sap/m/PlanningCalendar" {
79932
80186
  * @returns Value of property `height`
79933
80187
  */
79934
80188
  getHeight(): CSSSize;
80189
+ /**
80190
+ * Gets current value of property {@link #getIconShape iconShape}.
80191
+ *
80192
+ * Defines the shape of the `Avatar`.
80193
+ *
80194
+ * Default value is `Circle`.
80195
+ *
80196
+ * @returns Value of property `iconShape`
80197
+ */
80198
+ getIconShape(): AvatarShape | keyof typeof AvatarShape;
79935
80199
  /**
79936
80200
  * @since 1.40.0
79937
80201
  *
@@ -80469,6 +80733,7 @@ declare module "sap/m/PlanningCalendar" {
80469
80733
  ): this;
80470
80734
  /**
80471
80735
  * @since 1.38.0
80736
+ * @deprecated (since 1.119) - Please use the `appointmentHeight` with value "Automatic" property instead.
80472
80737
  *
80473
80738
  * Sets a new value for property {@link #getAppointmentsReducedHeight appointmentsReducedHeight}.
80474
80739
  *
@@ -80628,6 +80893,23 @@ declare module "sap/m/PlanningCalendar" {
80628
80893
  */
80629
80894
  sHeight?: CSSSize
80630
80895
  ): this;
80896
+ /**
80897
+ * Sets a new value for property {@link #getIconShape iconShape}.
80898
+ *
80899
+ * Defines the shape of the `Avatar`.
80900
+ *
80901
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
80902
+ *
80903
+ * Default value is `Circle`.
80904
+ *
80905
+ * @returns Reference to `this` in order to allow method chaining
80906
+ */
80907
+ setIconShape(
80908
+ /**
80909
+ * New value for property `iconShape`
80910
+ */
80911
+ sIconShape?: AvatarShape | keyof typeof AvatarShape
80912
+ ): this;
80631
80913
  /**
80632
80914
  * @since 1.40.0
80633
80915
  *
@@ -80990,6 +81272,7 @@ declare module "sap/m/PlanningCalendar" {
80990
81272
 
80991
81273
  /**
80992
81274
  * @since 1.38.0
81275
+ * @deprecated (since 1.119) - Please use the `appointmentHeight` with value "Automatic" property instead.
80993
81276
  *
80994
81277
  * Determines whether the appointments that have only title without text are rendered with smaller height.
80995
81278
  *
@@ -81162,6 +81445,14 @@ declare module "sap/m/PlanningCalendar" {
81162
81445
  | PropertyBindingInfo
81163
81446
  | `{${string}}`;
81164
81447
 
81448
+ /**
81449
+ * Defines the shape of the `Avatar`.
81450
+ */
81451
+ iconShape?:
81452
+ | (AvatarShape | keyof typeof AvatarShape)
81453
+ | PropertyBindingInfo
81454
+ | `{${string}}`;
81455
+
81165
81456
  /**
81166
81457
  * Rows of the `PlanningCalendar`.
81167
81458
  */
@@ -81252,10 +81543,18 @@ declare module "sap/m/PlanningCalendar" {
81252
81543
 
81253
81544
  /**
81254
81545
  * @since 1.46.0
81546
+ * @deprecated (since 1.119)
81255
81547
  *
81256
81548
  * Fires when a row header is clicked.
81257
81549
  */
81258
81550
  rowHeaderClick?: (oEvent: PlanningCalendar$RowHeaderClickEvent) => void;
81551
+
81552
+ /**
81553
+ * @since 1.119.0
81554
+ *
81555
+ * Fires when a row header press is triggered with mouse click, SPACE or ENTER press.
81556
+ */
81557
+ rowHeaderPress?: (oEvent: PlanningCalendar$RowHeaderPressEvent) => void;
81259
81558
  }
81260
81559
 
81261
81560
  export interface PlanningCalendar$AppointmentSelectEventParameters {
@@ -81333,6 +81632,26 @@ declare module "sap/m/PlanningCalendar" {
81333
81632
  PlanningCalendar
81334
81633
  >;
81335
81634
 
81635
+ export interface PlanningCalendar$RowHeaderPressEventParameters {
81636
+ /**
81637
+ * The ID of the `PlanningCalendarRowHeader` of the selected appointment.
81638
+ *
81639
+ * **Note:** Intended to be used as an easy way to get an ID of a `PlanningCalendarRowHeader`. Do NOT use
81640
+ * for modification.
81641
+ */
81642
+ headerId?: string;
81643
+
81644
+ /**
81645
+ * The row user pressed.
81646
+ */
81647
+ row?: PlanningCalendarRow;
81648
+ }
81649
+
81650
+ export type PlanningCalendar$RowHeaderPressEvent = Event<
81651
+ PlanningCalendar$RowHeaderPressEventParameters,
81652
+ PlanningCalendar
81653
+ >;
81654
+
81336
81655
  export interface PlanningCalendar$RowSelectionChangeEventParameters {
81337
81656
  /**
81338
81657
  * Array of rows whose selection has changed.
@@ -83658,6 +83977,160 @@ declare module "sap/m/PlanningCalendarView" {
83658
83977
  }
83659
83978
  }
83660
83979
 
83980
+ declare module "sap/m/plugins/CellSelector" {
83981
+ import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
83982
+
83983
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
83984
+
83985
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
83986
+
83987
+ /**
83988
+ * @since 1.119
83989
+ * @experimental (since 1.119) - This class is experimental. The API might be changed in the future.
83990
+ *
83991
+ * The `CellSelector` plugin enables cell selection inside the table when it is added as a dependent to
83992
+ * the control. It allows the user to individually select a cell block.
83993
+ *
83994
+ * The `CellSelector` plugin currently does not offer touch support.
83995
+ *
83996
+ * The `CellSelector` plugin cannot be used if the following applies:
83997
+ * - Drag for rows is active
83998
+ * - The target control is not a {@link sap.ui.table.Table}
83999
+ * - If used in combination with {@link sap.ui.table.Table#cellClick} If used in combination with
84000
+ * the following selection behavior: `sap.ui.table.SelectionBehavior.RowOnly` and `sap.ui.table.SelectionBehavior.Row`
84001
+ *
84002
+ *
84003
+ * When the `CellSelector` is used in combination with the {@link sap.ui.mdc.Table}, modifying the following
84004
+ * settings on the {@link sap.ui.mdc.Table} may lead to problems:
84005
+ * - attaching a {@link sap.ui.mdc.Table#rowPress rowPress} event to the table after initialization of
84006
+ * table and plugin
84007
+ * - changing {@link sap.ui.mdc.Table#getSelectionMode selectionMode} to something else than `Multi`
84008
+ */
84009
+ export default class CellSelector extends UI5Element {
84010
+ /**
84011
+ * Constructor for a new CellSelector plugin.
84012
+ *
84013
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
84014
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
84015
+ * of the syntax of the settings object.
84016
+ */
84017
+ constructor(
84018
+ /**
84019
+ * Initial settings for the new `CellSelector`
84020
+ */
84021
+ mSettings?: $CellSelectorSettings
84022
+ );
84023
+ /**
84024
+ * Constructor for a new CellSelector plugin.
84025
+ *
84026
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
84027
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
84028
+ * of the syntax of the settings object.
84029
+ */
84030
+ constructor(
84031
+ /**
84032
+ * ID for the new `CellSelector`, generated automatically if no id is given
84033
+ */
84034
+ sId?: string,
84035
+ /**
84036
+ * Initial settings for the new `CellSelector`
84037
+ */
84038
+ mSettings?: $CellSelectorSettings
84039
+ );
84040
+
84041
+ /**
84042
+ * Creates a new subclass of class sap.m.plugins.CellSelector with name `sClassName` and enriches it with
84043
+ * the information contained in `oClassInfo`.
84044
+ *
84045
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
84046
+ *
84047
+ * @returns Created class / constructor function
84048
+ */
84049
+ static extend<T extends Record<string, unknown>>(
84050
+ /**
84051
+ * Name of the class being created
84052
+ */
84053
+ sClassName: string,
84054
+ /**
84055
+ * Object literal with information about the class
84056
+ */
84057
+ oClassInfo?: sap.ClassInfo<T, CellSelector>,
84058
+ /**
84059
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
84060
+ * used by this class
84061
+ */
84062
+ FNMetaImpl?: Function
84063
+ ): Function;
84064
+ /**
84065
+ * Returns a metadata object for class sap.m.plugins.CellSelector.
84066
+ *
84067
+ * @returns Metadata object describing this class
84068
+ */
84069
+ static getMetadata(): ElementMetadata;
84070
+ /**
84071
+ * Gets current value of property {@link #getRangeLimit rangeLimit}.
84072
+ *
84073
+ * For the {@link sap.ui.table.Table} control, defines the number of row contexts that needs to be retrived
84074
+ * from the binding when the range selection (e.g. enhancing the cell selection block to cover all rows
84075
+ * of a column) is triggered by the user. This helps to make the contexts already available for the user
84076
+ * actions after the cell selection (e.g. copy to clipboard). This property accepts positive integer values.
84077
+ * **Note:** To avoid performance problems, the `rangeLimit` should only be set higher than the default
84078
+ * value of 200 in the following cases:
84079
+ * - With client-side models
84080
+ * - With server-side models if they are used in client mode
84081
+ * - If the entity set is small In other cases, it is recommended to set the `rangeLimit` to at
84082
+ * least double the value of the {@link sap.ui.table.Table#getThreshold threshold} property.
84083
+ *
84084
+ * Default value is `200`.
84085
+ *
84086
+ * @returns Value of property `rangeLimit`
84087
+ */
84088
+ getRangeLimit(): int;
84089
+ /**
84090
+ * Sets a new value for property {@link #getRangeLimit rangeLimit}.
84091
+ *
84092
+ * For the {@link sap.ui.table.Table} control, defines the number of row contexts that needs to be retrived
84093
+ * from the binding when the range selection (e.g. enhancing the cell selection block to cover all rows
84094
+ * of a column) is triggered by the user. This helps to make the contexts already available for the user
84095
+ * actions after the cell selection (e.g. copy to clipboard). This property accepts positive integer values.
84096
+ * **Note:** To avoid performance problems, the `rangeLimit` should only be set higher than the default
84097
+ * value of 200 in the following cases:
84098
+ * - With client-side models
84099
+ * - With server-side models if they are used in client mode
84100
+ * - If the entity set is small In other cases, it is recommended to set the `rangeLimit` to at
84101
+ * least double the value of the {@link sap.ui.table.Table#getThreshold threshold} property.
84102
+ *
84103
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
84104
+ *
84105
+ * Default value is `200`.
84106
+ *
84107
+ * @returns Reference to `this` in order to allow method chaining
84108
+ */
84109
+ setRangeLimit(
84110
+ /**
84111
+ * New value for property `rangeLimit`
84112
+ */
84113
+ iRangeLimit?: int
84114
+ ): this;
84115
+ }
84116
+
84117
+ export interface $CellSelectorSettings extends $ElementSettings {
84118
+ /**
84119
+ * For the {@link sap.ui.table.Table} control, defines the number of row contexts that needs to be retrived
84120
+ * from the binding when the range selection (e.g. enhancing the cell selection block to cover all rows
84121
+ * of a column) is triggered by the user. This helps to make the contexts already available for the user
84122
+ * actions after the cell selection (e.g. copy to clipboard). This property accepts positive integer values.
84123
+ * **Note:** To avoid performance problems, the `rangeLimit` should only be set higher than the default
84124
+ * value of 200 in the following cases:
84125
+ * - With client-side models
84126
+ * - With server-side models if they are used in client mode
84127
+ * - If the entity set is small In other cases, it is recommended to set the `rangeLimit` to at
84128
+ * least double the value of the {@link sap.ui.table.Table#getThreshold threshold} property.
84129
+ */
84130
+ rangeLimit?: int | PropertyBindingInfo | `{${string}}`;
84131
+ }
84132
+ }
84133
+
83661
84134
  declare module "sap/m/plugins/ColumnResizer" {
83662
84135
  import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
83663
84136
 
@@ -83855,6 +84328,8 @@ declare module "sap/m/plugins/CopyProvider" {
83855
84328
 
83856
84329
  import OverflowToolbarButton from "sap/m/OverflowToolbarButton";
83857
84330
 
84331
+ import { plugins } from "sap/m/library";
84332
+
83858
84333
  import ElementMetadata from "sap/ui/core/ElementMetadata";
83859
84334
 
83860
84335
  import Context from "sap/ui/model/Context";
@@ -84057,6 +84532,25 @@ declare module "sap/m/plugins/CopyProvider" {
84057
84532
  */
84058
84533
  mSettings?: object
84059
84534
  ): OverflowToolbarButton;
84535
+ /**
84536
+ * @since 1.119
84537
+ *
84538
+ * Gets current value of property {@link #getCopyPreference copyPreference}.
84539
+ *
84540
+ * This property determines the copy preference when performing a copy operation.
84541
+ *
84542
+ * If the property is set to `Full`, all selected content is copied. This includes selected rows and cells.
84543
+ *
84544
+ * If the property is set to `Cells`, cell selection takes precedence during copying. If cells are selected
84545
+ * along with rows, only the cell selection is copied. If no cells are selected, the row selection is copied.
84546
+ *
84547
+ * Default value is `Cells`.
84548
+ *
84549
+ * @returns Value of property `copyPreference`
84550
+ */
84551
+ getCopyPreference():
84552
+ | plugins.CopyPreference
84553
+ | keyof typeof plugins.CopyPreference;
84060
84554
  /**
84061
84555
  * Gets current value of property {@link #getCopySparse copySparse}.
84062
84556
  *
@@ -84127,6 +84621,32 @@ declare module "sap/m/plugins/CopyProvider" {
84127
84621
  * @returns Value of property `visible`
84128
84622
  */
84129
84623
  getVisible(): boolean;
84624
+ /**
84625
+ * @since 1.119
84626
+ *
84627
+ * Sets a new value for property {@link #getCopyPreference copyPreference}.
84628
+ *
84629
+ * This property determines the copy preference when performing a copy operation.
84630
+ *
84631
+ * If the property is set to `Full`, all selected content is copied. This includes selected rows and cells.
84632
+ *
84633
+ * If the property is set to `Cells`, cell selection takes precedence during copying. If cells are selected
84634
+ * along with rows, only the cell selection is copied. If no cells are selected, the row selection is copied.
84635
+ *
84636
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
84637
+ *
84638
+ * Default value is `Cells`.
84639
+ *
84640
+ * @returns Reference to `this` in order to allow method chaining
84641
+ */
84642
+ setCopyPreference(
84643
+ /**
84644
+ * New value for property `copyPreference`
84645
+ */
84646
+ sCopyPreference?:
84647
+ | plugins.CopyPreference
84648
+ | keyof typeof plugins.CopyPreference
84649
+ ): this;
84130
84650
  /**
84131
84651
  * Sets a new value for property {@link #getCopySparse copySparse}.
84132
84652
  *
@@ -84283,6 +84803,21 @@ declare module "sap/m/plugins/CopyProvider" {
84283
84803
  */
84284
84804
  visible?: boolean | PropertyBindingInfo | `{${string}}`;
84285
84805
 
84806
+ /**
84807
+ * @since 1.119
84808
+ *
84809
+ * This property determines the copy preference when performing a copy operation.
84810
+ *
84811
+ * If the property is set to `Full`, all selected content is copied. This includes selected rows and cells.
84812
+ *
84813
+ * If the property is set to `Cells`, cell selection takes precedence during copying. If cells are selected
84814
+ * along with rows, only the cell selection is copied. If no cells are selected, the row selection is copied.
84815
+ */
84816
+ copyPreference?:
84817
+ | (plugins.CopyPreference | keyof typeof plugins.CopyPreference)
84818
+ | PropertyBindingInfo
84819
+ | `{${string}}`;
84820
+
84286
84821
  /**
84287
84822
  * This event is fired if there is a selection, and the user triggers the copy action.
84288
84823
  *
@@ -121487,8 +122022,6 @@ declare module "sap/m/Switch" {
121487
122022
  declare module "sap/m/TabContainer" {
121488
122023
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
121489
122024
 
121490
- import TabContainerItem from "sap/m/TabContainerItem";
121491
-
121492
122025
  import Event from "sap/ui/base/Event";
121493
122026
 
121494
122027
  import {
@@ -121498,6 +122031,8 @@ declare module "sap/m/TabContainer" {
121498
122031
 
121499
122032
  import { PageBackgroundDesign } from "sap/m/library";
121500
122033
 
122034
+ import TabContainerItem from "sap/m/TabContainerItem";
122035
+
121501
122036
  import ElementMetadata from "sap/ui/core/ElementMetadata";
121502
122037
 
121503
122038
  import { ID } from "sap/ui/core/library";
@@ -121598,17 +122133,6 @@ declare module "sap/m/TabContainer" {
121598
122133
  * @returns Metadata object describing this class
121599
122134
  */
121600
122135
  static getMetadata(): ElementMetadata;
121601
- /**
121602
- * Adds some item to the aggregation {@link #getItems items}.
121603
- *
121604
- * @returns Reference to `this` in order to allow method chaining
121605
- */
121606
- addItem(
121607
- /**
121608
- * The item to add; if empty, nothing is inserted
121609
- */
121610
- oItem: TabContainerItem
121611
- ): this;
121612
122136
  /**
121613
122137
  * Attaches event handler `fnFunction` to the {@link #event:addNewButtonPress addNewButtonPress} event of
121614
122138
  * this `sap.m.TabContainer`.
@@ -121760,12 +122284,6 @@ declare module "sap/m/TabContainer" {
121760
122284
  */
121761
122285
  oBindingInfo: AggregationBindingInfo
121762
122286
  ): this;
121763
- /**
121764
- * Destroys all the items in the aggregation {@link #getItems items}.
121765
- *
121766
- * @returns Reference to `this` in order to allow method chaining
121767
- */
121768
- destroyItems(): this;
121769
122287
  /**
121770
122288
  * Detaches event handler `fnFunction` from the {@link #event:addNewButtonPress addNewButtonPress} event
121771
122289
  * of this `sap.m.TabContainer`.
@@ -121910,31 +122428,6 @@ declare module "sap/m/TabContainer" {
121910
122428
  */
121911
122429
  oItem: TabContainerItem
121912
122430
  ): int;
121913
- /**
121914
- * Inserts a item into the aggregation {@link #getItems items}.
121915
- *
121916
- * @returns Reference to `this` in order to allow method chaining
121917
- */
121918
- insertItem(
121919
- /**
121920
- * The item to insert; if empty, nothing is inserted
121921
- */
121922
- oItem: TabContainerItem,
121923
- /**
121924
- * The `0`-based index the item should be inserted at; for a negative value of `iIndex`, the item is inserted
121925
- * at position 0; for a value greater than the current size of the aggregation, the item is inserted at
121926
- * the last position
121927
- */
121928
- iIndex: int
121929
- ): this;
121930
- /**
121931
- * Removes all the controls from the aggregation {@link #getItems items}.
121932
- *
121933
- * Additionally, it unregisters them from the hosting UIArea.
121934
- *
121935
- * @returns An array of the removed elements (might be empty)
121936
- */
121937
- removeAllItems(): TabContainerItem[];
121938
122431
  /**
121939
122432
  * Removes an item from the aggregation named `items`.
121940
122433
  *
@@ -124279,27 +124772,33 @@ declare module "sap/m/table/columnmenu/Item" {
124279
124772
  *
124280
124773
  * Fires event {@link #event:cancel cancel} to attached listeners.
124281
124774
  *
124282
- * @returns Reference to `this` in order to allow method chaining
124775
+ * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
124776
+ * event object. The return value of this method indicates whether the default action should be executed.
124777
+ *
124778
+ * @returns Whether or not to prevent the default action
124283
124779
  */
124284
124780
  fireCancel(
124285
124781
  /**
124286
124782
  * Parameters to pass along with the event
124287
124783
  */
124288
124784
  mParameters?: object
124289
- ): this;
124785
+ ): boolean;
124290
124786
  /**
124291
124787
  * @ui5-protected Do not call from applications (only from related classes in the framework)
124292
124788
  *
124293
124789
  * Fires event {@link #event:confirm confirm} to attached listeners.
124294
124790
  *
124295
- * @returns Reference to `this` in order to allow method chaining
124791
+ * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
124792
+ * event object. The return value of this method indicates whether the default action should be executed.
124793
+ *
124794
+ * @returns Whether or not to prevent the default action
124296
124795
  */
124297
124796
  fireConfirm(
124298
124797
  /**
124299
124798
  * Parameters to pass along with the event
124300
124799
  */
124301
124800
  mParameters?: object
124302
- ): this;
124801
+ ): boolean;
124303
124802
  /**
124304
124803
  * @ui5-protected Do not call from applications (only from related classes in the framework)
124305
124804
  *
@@ -142444,6 +142943,30 @@ declare module "sap/m/upload/UploadSetToolbarPlaceholder" {
142444
142943
  extends $ControlSettings {}
142445
142944
  }
142446
142945
 
142946
+ declare module "sap/m/upload/UploadSetwithTable" {
142947
+ /**
142948
+ * Item info object sent as paramter to {@link sap.m.upload.UploadSetwithTable.itemValidationHandler itemValidationHandler callback}
142949
+ */
142950
+ export type ItemInfo = {
142951
+ /**
142952
+ * Current item queued for upload.
142953
+ */
142954
+ oItem: /* was: sap.m.upload.UploadSetwithTableItem */ any;
142955
+ /**
142956
+ * Total count of items queued for upload.
142957
+ */
142958
+ iTotalItemsForUpload: number;
142959
+ };
142960
+
142961
+ /**
142962
+ * Callback function to perform additional validations or configurations for the item queued up for upload
142963
+ * and to finally trigger the upload.
142964
+ */
142965
+ export type itemValidationHandler = (
142966
+ oItemInfo: ItemInfo
142967
+ ) => Promise</* was: sap.m.upload.UploadSetwithTableItem */ any>;
142968
+ }
142969
+
142447
142970
  declare module "sap/m/UploadCollection" {
142448
142971
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
142449
142972
 
@@ -150278,6 +150801,8 @@ declare namespace sap {
150278
150801
 
150279
150802
  "sap/m/PlanningCalendarView": undefined;
150280
150803
 
150804
+ "sap/m/plugins/CellSelector": undefined;
150805
+
150281
150806
  "sap/m/plugins/ColumnResizer": undefined;
150282
150807
 
150283
150808
  "sap/m/plugins/CopyProvider": undefined;
@@ -150546,6 +151071,8 @@ declare namespace sap {
150546
151071
 
150547
151072
  "sap/m/upload/UploadSetToolbarPlaceholder": undefined;
150548
151073
 
151074
+ "sap/m/upload/UploadSetwithTable": undefined;
151075
+
150549
151076
  "sap/m/UploadCollection": undefined;
150550
151077
 
150551
151078
  "sap/m/UploadCollectionItem": undefined;