@sapui5/types 1.124.2 → 1.125.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.
Files changed (66) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +1 -1
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.esh.search.ui.d.ts +1 -1
  8. package/types/sap.f.d.ts +1 -1
  9. package/types/sap.fe.base.d.ts +9 -0
  10. package/types/sap.fe.core.d.ts +6 -16
  11. package/types/sap.fe.macros.d.ts +658 -102
  12. package/types/sap.fe.navigation.d.ts +1 -1
  13. package/types/sap.fe.placeholder.d.ts +1 -1
  14. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  15. package/types/sap.fe.templates.d.ts +1 -1
  16. package/types/sap.fe.test.d.ts +1 -1
  17. package/types/sap.fe.tools.d.ts +1 -1
  18. package/types/sap.feedback.ui.d.ts +1 -1
  19. package/types/sap.gantt.d.ts +368 -323
  20. package/types/sap.insights.d.ts +1 -1
  21. package/types/sap.m.d.ts +313 -248
  22. package/types/sap.makit.d.ts +1 -1
  23. package/types/sap.me.d.ts +1 -1
  24. package/types/sap.ndc.d.ts +1 -1
  25. package/types/sap.ovp.d.ts +1 -1
  26. package/types/sap.rules.ui.d.ts +1 -1
  27. package/types/sap.sac.df.d.ts +1 -1
  28. package/types/sap.suite.ui.commons.d.ts +8 -9
  29. package/types/sap.suite.ui.generic.template.d.ts +1 -4
  30. package/types/sap.suite.ui.microchart.d.ts +19 -19
  31. package/types/sap.tnt.d.ts +1 -1
  32. package/types/sap.ui.codeeditor.d.ts +1 -1
  33. package/types/sap.ui.commons.d.ts +1 -1
  34. package/types/sap.ui.comp.d.ts +112 -38
  35. package/types/sap.ui.core.d.ts +119 -79
  36. package/types/sap.ui.dt.d.ts +1 -1
  37. package/types/sap.ui.export.d.ts +1 -1
  38. package/types/sap.ui.fl.d.ts +4 -39
  39. package/types/sap.ui.generic.app.d.ts +1 -1
  40. package/types/sap.ui.generic.template.d.ts +1 -1
  41. package/types/sap.ui.integration.d.ts +6 -1
  42. package/types/sap.ui.layout.d.ts +1 -1
  43. package/types/sap.ui.mdc.d.ts +41 -28
  44. package/types/sap.ui.richtexteditor.d.ts +1 -1
  45. package/types/sap.ui.rta.d.ts +1 -1
  46. package/types/sap.ui.suite.d.ts +1 -1
  47. package/types/sap.ui.support.d.ts +1 -1
  48. package/types/sap.ui.table.d.ts +29 -21
  49. package/types/sap.ui.testrecorder.d.ts +1 -1
  50. package/types/sap.ui.unified.d.ts +1 -1
  51. package/types/sap.ui.ux3.d.ts +1 -1
  52. package/types/sap.ui.vbm.d.ts +1 -1
  53. package/types/sap.ui.vk.d.ts +1 -1
  54. package/types/sap.ui.vtm.d.ts +1 -1
  55. package/types/sap.ui.webc.common.d.ts +1 -1
  56. package/types/sap.ui.webc.fiori.d.ts +1 -1
  57. package/types/sap.ui.webc.main.d.ts +1 -1
  58. package/types/sap.uiext.inbox.d.ts +1 -1
  59. package/types/sap.ushell.d.ts +51 -111
  60. package/types/sap.ushell_abap.d.ts +1 -1
  61. package/types/sap.uxap.d.ts +1 -1
  62. package/types/sap.viz.d.ts +1 -1
  63. package/types/sap.webanalytics.core.d.ts +1 -1
  64. package/types/sap.zen.commons.d.ts +1 -1
  65. package/types/sap.zen.crosstab.d.ts +1 -1
  66. package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.2
1
+ // For Library Version: 1.125.0
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -421,6 +421,29 @@ declare module "sap/m/library" {
421
421
  */
422
422
  PageIndicator = "PageIndicator",
423
423
  }
424
+ /**
425
+ * Types for the placement of the page indicator of the Carousel control.
426
+ *
427
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'CarouselPageIndicatorPlacementType'.
428
+ */
429
+ export enum CarouselPageIndicatorPlacementType {
430
+ /**
431
+ * Page indicator will be placed at the bottom of the Carousel.
432
+ */
433
+ Bottom = "Bottom",
434
+ /**
435
+ * Page indicator will be placed over the Carousel content, bottom aligned.
436
+ */
437
+ OverContentBottom = "OverContentBottom",
438
+ /**
439
+ * Page indicator will be placed over the Carousel content, top aligned.
440
+ */
441
+ OverContentTop = "OverContentTop",
442
+ /**
443
+ * Page indicator will be placed at the top of the Carousel.
444
+ */
445
+ Top = "Top",
446
+ }
424
447
  /**
425
448
  * Defines how pages will be scrolled, when clicking the arrow.
426
449
  *
@@ -5336,8 +5359,6 @@ declare module "sap/m/ActionTile" {
5336
5359
  $GenericTileSettings,
5337
5360
  } from "sap/m/GenericTile";
5338
5361
 
5339
- import { URI, ValueState } from "sap/ui/core/library";
5340
-
5341
5362
  import ElementMetadata from "sap/ui/core/ElementMetadata";
5342
5363
 
5343
5364
  import { Priority } from "sap/m/library";
@@ -5414,30 +5435,6 @@ declare module "sap/m/ActionTile" {
5414
5435
  * @returns Metadata object describing this class
5415
5436
  */
5416
5437
  static getMetadata(): ElementMetadata;
5417
- /**
5418
- * Gets current value of property {@link #getBadgeIcon badgeIcon}.
5419
- *
5420
- * Defines what type of icon is displayed as visual affordance for the icon frame badge.
5421
- *
5422
- * Default value is `empty string`.
5423
- *
5424
- * @experimental (since 1.124)
5425
- *
5426
- * @returns Value of property `badgeIcon`
5427
- */
5428
- getBadgeIcon(): URI;
5429
- /**
5430
- * Gets current value of property {@link #getBadgeValueState badgeValueState}.
5431
- *
5432
- * Visualizes the validation state of the icon frame badge, e.g. `Error`, `Warning`, `Success`, `Information`.
5433
- *
5434
- * Default value is `None`.
5435
- *
5436
- * @experimental (since 1.124)
5437
- *
5438
- * @returns Value of property `badgeValueState`
5439
- */
5440
- getBadgeValueState(): ValueState | keyof typeof ValueState;
5441
5438
  /**
5442
5439
  * Gets current value of property {@link #getEnableDynamicHeight enableDynamicHeight}.
5443
5440
  *
@@ -5484,30 +5481,6 @@ declare module "sap/m/ActionTile" {
5484
5481
  * @returns Value of property `priorityText`
5485
5482
  */
5486
5483
  getPriorityText(): string;
5487
- /**
5488
- * Sets the badgeIcon property of the ActionTile.
5489
- *
5490
- *
5491
- * @returns The reference to the ActionTile instance.
5492
- */
5493
- setBadgeIcon(
5494
- /**
5495
- * The URI of the icon to be displayed as a badge.
5496
- */
5497
- sIcon: string
5498
- ): ActionTile;
5499
- /**
5500
- * Sets the badgeValueState property of the ActionTile.
5501
- *
5502
- *
5503
- * @returns The reference to the ActionTile instance.
5504
- */
5505
- setBadgeValueState(
5506
- /**
5507
- * The value state of the badge.
5508
- */
5509
- sValueState: ValueState | keyof typeof ValueState
5510
- ): ActionTile;
5511
5484
  /**
5512
5485
  * Sets a new value for property {@link #getEnableDynamicHeight enableDynamicHeight}.
5513
5486
  *
@@ -5529,16 +5502,13 @@ declare module "sap/m/ActionTile" {
5529
5502
  ): this;
5530
5503
  /**
5531
5504
  * Sets the enableIconFrame property of the ActionTile.
5532
- *
5533
- *
5534
- * @returns The reference to the ActionTile instance.
5535
5505
  */
5536
5506
  setEnableIconFrame(
5537
5507
  /**
5538
5508
  * Determines whether the icon frame should be enabled or not.
5539
5509
  */
5540
5510
  bValue: boolean
5541
- ): ActionTile;
5511
+ ): void;
5542
5512
  /**
5543
5513
  * Sets a new value for property {@link #getPriority priority}.
5544
5514
  *
@@ -5612,23 +5582,6 @@ declare module "sap/m/ActionTile" {
5612
5582
  * @experimental (since 1.124)
5613
5583
  */
5614
5584
  priorityText?: string | PropertyBindingInfo;
5615
-
5616
- /**
5617
- * Defines what type of icon is displayed as visual affordance for the icon frame badge.
5618
- *
5619
- * @experimental (since 1.124)
5620
- */
5621
- badgeIcon?: URI | PropertyBindingInfo | `{${string}}`;
5622
-
5623
- /**
5624
- * Visualizes the validation state of the icon frame badge, e.g. `Error`, `Warning`, `Success`, `Information`.
5625
- *
5626
- * @experimental (since 1.124)
5627
- */
5628
- badgeValueState?:
5629
- | (ValueState | keyof typeof ValueState)
5630
- | PropertyBindingInfo
5631
- | `{${string}}`;
5632
5585
  }
5633
5586
  }
5634
5587
 
@@ -11177,7 +11130,7 @@ declare module "sap/m/Carousel" {
11177
11130
  CarouselArrowsPlacement,
11178
11131
  BackgroundDesign,
11179
11132
  BorderDesign,
11180
- PlacementType,
11133
+ CarouselPageIndicatorPlacementType,
11181
11134
  } from "sap/m/library";
11182
11135
 
11183
11136
  import CarouselLayout from "sap/m/CarouselLayout";
@@ -11202,7 +11155,7 @@ declare module "sap/m/Carousel" {
11202
11155
  * - `showPageIndicator` - determines if the indicator is displayed.
11203
11156
  * - If the pages are less than 9, the page indicator is represented with bullets.
11204
11157
  * - If the pages are 9 or more, the page indicator is numeric.
11205
- * - `pageIndicatorPlacement` - determines where the indicator is located. Default (`sap.m.PlacementType.Bottom`)
11158
+ * - `pageIndicatorPlacement` - determines where the indicator is located. Default (`sap.m.CarouselPageIndicatorPlacementType.Bottom`)
11206
11159
  * - below the content. Additionally, you can also change the location of the navigation arrows. By
11207
11160
  * setting `arrowsPlacement` to `sap.m.CarouselArrowsPlacement.PageIndicator`, the arrows will be located
11208
11161
  * at the bottom by the paging indicator. Note: When the content is of type `sap.m.Image` add "Image" text
@@ -11283,6 +11236,19 @@ declare module "sap/m/Carousel" {
11283
11236
  * @returns Metadata object describing this class
11284
11237
  */
11285
11238
  static getMetadata(): ElementMetadata;
11239
+ /**
11240
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
11241
+ *
11242
+ * @since 1.125
11243
+ *
11244
+ * @returns Reference to `this` in order to allow method chaining
11245
+ */
11246
+ addAriaLabelledBy(
11247
+ /**
11248
+ * The ariaLabelledBy to add; if empty, nothing is inserted
11249
+ */
11250
+ vAriaLabelledBy: ID | Control
11251
+ ): this;
11286
11252
  /**
11287
11253
  * Adds some page to the aggregation {@link #getPages pages}.
11288
11254
  *
@@ -11644,6 +11610,12 @@ declare module "sap/m/Carousel" {
11644
11610
  * `null`.
11645
11611
  */
11646
11612
  getActivePage(): ID | null;
11613
+ /**
11614
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
11615
+ *
11616
+ * @since 1.125
11617
+ */
11618
+ getAriaLabelledBy(): ID[];
11647
11619
  /**
11648
11620
  * Gets current value of property {@link #getArrowsPlacement arrowsPlacement}.
11649
11621
  *
@@ -11734,16 +11706,25 @@ declare module "sap/m/Carousel" {
11734
11706
  /**
11735
11707
  * Gets current value of property {@link #getPageIndicatorPlacement pageIndicatorPlacement}.
11736
11708
  *
11737
- * Defines where the carousel's page indicator is displayed. Possible values are sap.m.PlacementType.Top,
11738
- * sap.m.PlacementType.Bottom. Other values are ignored and the default value will be applied. The default
11739
- * value is sap.m.PlacementType.Bottom.
11709
+ * Defines where the carousel's page indicator is displayed. Possible values are sap.m.CarouselPageIndicatorPlacementType.Top,
11710
+ * sap.m.CarouselPageIndicatorPlacementType.Bottom, CarouselPageIndicatorPlacementType.OverContentTop and
11711
+ * CarouselPageIndicatorPlacementType.OverContentBottom.
11712
+ *
11713
+ * **Note:** when the page indicator is placed over the carousel's content (values "OverContentBottom" and
11714
+ * "OverContentTop"), the properties `pageIndicatorBackgroundDesign` and `pageIndicatorBorderDesign` will
11715
+ * not take effect.
11716
+ *
11717
+ * **Note:** We recommend using a page indicator placed over the carousel's content (values "OverContentBottom"
11718
+ * and "OverContentTop") only if the content consists of images.
11740
11719
  *
11741
11720
  * Default value is `Bottom`.
11742
11721
  *
11743
11722
  *
11744
11723
  * @returns Value of property `pageIndicatorPlacement`
11745
11724
  */
11746
- getPageIndicatorPlacement(): PlacementType | keyof typeof PlacementType;
11725
+ getPageIndicatorPlacement():
11726
+ | CarouselPageIndicatorPlacementType
11727
+ | keyof typeof CarouselPageIndicatorPlacementType;
11747
11728
  /**
11748
11729
  * Gets content of aggregation {@link #getPages pages}.
11749
11730
  *
@@ -11831,6 +11812,14 @@ declare module "sap/m/Carousel" {
11831
11812
  * @returns Reference to `this` in order to allow method chaining
11832
11813
  */
11833
11814
  previous(): this;
11815
+ /**
11816
+ * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
11817
+ *
11818
+ * @since 1.125
11819
+ *
11820
+ * @returns An array of the removed elements (might be empty)
11821
+ */
11822
+ removeAllAriaLabelledBy(): ID[];
11834
11823
  /**
11835
11824
  * Removes all the controls from the aggregation {@link #getPages pages}.
11836
11825
  *
@@ -11840,6 +11829,19 @@ declare module "sap/m/Carousel" {
11840
11829
  * @returns An array of the removed elements (might be empty)
11841
11830
  */
11842
11831
  removeAllPages(): Control[];
11832
+ /**
11833
+ * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
11834
+ *
11835
+ * @since 1.125
11836
+ *
11837
+ * @returns The removed ariaLabelledBy or `null`
11838
+ */
11839
+ removeAriaLabelledBy(
11840
+ /**
11841
+ * The ariaLabelledBy to be removed or its index or ID
11842
+ */
11843
+ vAriaLabelledBy: int | ID | Control
11844
+ ): ID | null;
11843
11845
  /**
11844
11846
  * Removes a page from the aggregation {@link #getPages pages}.
11845
11847
  *
@@ -12000,9 +12002,16 @@ declare module "sap/m/Carousel" {
12000
12002
  /**
12001
12003
  * Sets a new value for property {@link #getPageIndicatorPlacement pageIndicatorPlacement}.
12002
12004
  *
12003
- * Defines where the carousel's page indicator is displayed. Possible values are sap.m.PlacementType.Top,
12004
- * sap.m.PlacementType.Bottom. Other values are ignored and the default value will be applied. The default
12005
- * value is sap.m.PlacementType.Bottom.
12005
+ * Defines where the carousel's page indicator is displayed. Possible values are sap.m.CarouselPageIndicatorPlacementType.Top,
12006
+ * sap.m.CarouselPageIndicatorPlacementType.Bottom, CarouselPageIndicatorPlacementType.OverContentTop and
12007
+ * CarouselPageIndicatorPlacementType.OverContentBottom.
12008
+ *
12009
+ * **Note:** when the page indicator is placed over the carousel's content (values "OverContentBottom" and
12010
+ * "OverContentTop"), the properties `pageIndicatorBackgroundDesign` and `pageIndicatorBorderDesign` will
12011
+ * not take effect.
12012
+ *
12013
+ * **Note:** We recommend using a page indicator placed over the carousel's content (values "OverContentBottom"
12014
+ * and "OverContentTop") only if the content consists of images.
12006
12015
  *
12007
12016
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12008
12017
  *
@@ -12015,7 +12024,9 @@ declare module "sap/m/Carousel" {
12015
12024
  /**
12016
12025
  * New value for property `pageIndicatorPlacement`
12017
12026
  */
12018
- sPageIndicatorPlacement?: PlacementType | keyof typeof PlacementType
12027
+ sPageIndicatorPlacement?:
12028
+ | CarouselPageIndicatorPlacementType
12029
+ | keyof typeof CarouselPageIndicatorPlacementType
12019
12030
  ): this;
12020
12031
  /**
12021
12032
  * Sets a new value for property {@link #getShowBusyIndicator showBusyIndicator}.
@@ -12103,12 +12114,22 @@ declare module "sap/m/Carousel" {
12103
12114
  showPageIndicator?: boolean | PropertyBindingInfo | `{${string}}`;
12104
12115
 
12105
12116
  /**
12106
- * Defines where the carousel's page indicator is displayed. Possible values are sap.m.PlacementType.Top,
12107
- * sap.m.PlacementType.Bottom. Other values are ignored and the default value will be applied. The default
12108
- * value is sap.m.PlacementType.Bottom.
12117
+ * Defines where the carousel's page indicator is displayed. Possible values are sap.m.CarouselPageIndicatorPlacementType.Top,
12118
+ * sap.m.CarouselPageIndicatorPlacementType.Bottom, CarouselPageIndicatorPlacementType.OverContentTop and
12119
+ * CarouselPageIndicatorPlacementType.OverContentBottom.
12120
+ *
12121
+ * **Note:** when the page indicator is placed over the carousel's content (values "OverContentBottom" and
12122
+ * "OverContentTop"), the properties `pageIndicatorBackgroundDesign` and `pageIndicatorBorderDesign` will
12123
+ * not take effect.
12124
+ *
12125
+ * **Note:** We recommend using a page indicator placed over the carousel's content (values "OverContentBottom"
12126
+ * and "OverContentTop") only if the content consists of images.
12109
12127
  */
12110
12128
  pageIndicatorPlacement?:
12111
- | (PlacementType | keyof typeof PlacementType)
12129
+ | (
12130
+ | CarouselPageIndicatorPlacementType
12131
+ | keyof typeof CarouselPageIndicatorPlacementType
12132
+ )
12112
12133
  | PropertyBindingInfo
12113
12134
  | `{${string}}`;
12114
12135
 
@@ -12181,6 +12202,13 @@ declare module "sap/m/Carousel" {
12181
12202
  */
12182
12203
  activePage?: Control | string;
12183
12204
 
12205
+ /**
12206
+ * Association to controls / IDs which label this control (see WAI-ARIA attribute `aria-labelledby`).
12207
+ *
12208
+ * @since 1.125
12209
+ */
12210
+ ariaLabelledBy?: Array<Control | string>;
12211
+
12184
12212
  /**
12185
12213
  * Carousel requires a new page to be loaded. This event may be used to fill the content of that page
12186
12214
  *
@@ -38708,8 +38736,6 @@ declare module "sap/m/IconTabSeparator" {
38708
38736
  declare module "sap/m/IllustratedMessage" {
38709
38737
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
38710
38738
 
38711
- import Button from "sap/m/Button";
38712
-
38713
38739
  import { ID, TitleLevel } from "sap/ui/core/library";
38714
38740
 
38715
38741
  import IllustratedMessageSize from "sap/m/IllustratedMessageSize";
@@ -38825,7 +38851,7 @@ declare module "sap/m/IllustratedMessage" {
38825
38851
  /**
38826
38852
  * The additionalContent to add; if empty, nothing is inserted
38827
38853
  */
38828
- oAdditionalContent: Button
38854
+ oAdditionalContent: Control
38829
38855
  ): this;
38830
38856
  /**
38831
38857
  * Adds some illustrationAriaLabelledBy into the association {@link #getIllustrationAriaLabelledBy illustrationAriaLabelledBy}.
@@ -38879,7 +38905,7 @@ declare module "sap/m/IllustratedMessage" {
38879
38905
  *
38880
38906
  * @since 1.98
38881
38907
  */
38882
- getAdditionalContent(): Button[];
38908
+ getAdditionalContent(): Control[];
38883
38909
  /**
38884
38910
  * Gets current value of property {@link #getAriaTitleLevel ariaTitleLevel}.
38885
38911
  *
@@ -39011,7 +39037,7 @@ declare module "sap/m/IllustratedMessage" {
39011
39037
  */
39012
39038
  getTitle(): string;
39013
39039
  /**
39014
- * Checks for the provided `sap.m.Button` in the aggregation {@link #getAdditionalContent additionalContent}.
39040
+ * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getAdditionalContent additionalContent}.
39015
39041
  * and returns its index if found or -1 otherwise.
39016
39042
  *
39017
39043
  * @since 1.98
@@ -39022,7 +39048,7 @@ declare module "sap/m/IllustratedMessage" {
39022
39048
  /**
39023
39049
  * The additionalContent whose index is looked for
39024
39050
  */
39025
- oAdditionalContent: Button
39051
+ oAdditionalContent: Control
39026
39052
  ): int;
39027
39053
  /**
39028
39054
  * Inserts a additionalContent into the aggregation {@link #getAdditionalContent additionalContent}.
@@ -39035,7 +39061,7 @@ declare module "sap/m/IllustratedMessage" {
39035
39061
  /**
39036
39062
  * The additionalContent to insert; if empty, nothing is inserted
39037
39063
  */
39038
- oAdditionalContent: Button,
39064
+ oAdditionalContent: Control,
39039
39065
  /**
39040
39066
  * The `0`-based index the additionalContent should be inserted at; for a negative value of `iIndex`, the
39041
39067
  * additionalContent is inserted at position 0; for a value greater than the current size of the aggregation,
@@ -39054,8 +39080,8 @@ declare module "sap/m/IllustratedMessage" {
39054
39080
  /**
39055
39081
  * The additionalContent to remove or its index or id
39056
39082
  */
39057
- vAdditionalContent: int | string | Button
39058
- ): Button | null;
39083
+ vAdditionalContent: int | string | Control
39084
+ ): Control | null;
39059
39085
  /**
39060
39086
  * Removes all the controls from the aggregation {@link #getAdditionalContent additionalContent}.
39061
39087
  *
@@ -39065,7 +39091,7 @@ declare module "sap/m/IllustratedMessage" {
39065
39091
  *
39066
39092
  * @returns An array of the removed elements (might be empty)
39067
39093
  */
39068
- removeAllAdditionalContent(): Button[];
39094
+ removeAllAdditionalContent(): Control[];
39069
39095
  /**
39070
39096
  * Removes all the controls in the association named {@link #getIllustrationAriaLabelledBy illustrationAriaLabelledBy}.
39071
39097
  *
@@ -39374,8 +39400,8 @@ declare module "sap/m/IllustratedMessage" {
39374
39400
  * @since 1.98
39375
39401
  */
39376
39402
  additionalContent?:
39377
- | Button[]
39378
- | Button
39403
+ | Control[]
39404
+ | Control
39379
39405
  | AggregationBindingInfo
39380
39406
  | `{${string}}`;
39381
39407
 
@@ -46623,9 +46649,8 @@ declare module "sap/m/Label" {
46623
46649
  /**
46624
46650
  * Gets current value of property {@link #getWrapping wrapping}.
46625
46651
  *
46626
- * Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
46627
- * will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
46628
- * wrap.
46652
+ * Determines the wrapping of the text within the `Label`. If set to true the `Label` will wrap, when set
46653
+ * to false the `Label` will be truncated and replaced with ellipsis which is the default behavior.
46629
46654
  *
46630
46655
  * Default value is `false`.
46631
46656
  *
@@ -46835,9 +46860,8 @@ declare module "sap/m/Label" {
46835
46860
  /**
46836
46861
  * Sets a new value for property {@link #getWrapping wrapping}.
46837
46862
  *
46838
- * Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
46839
- * will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
46840
- * wrap.
46863
+ * Determines the wrapping of the text within the `Label`. If set to true the `Label` will wrap, when set
46864
+ * to false the `Label` will be truncated and replaced with ellipsis which is the default behavior.
46841
46865
  *
46842
46866
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
46843
46867
  *
@@ -46930,9 +46954,8 @@ declare module "sap/m/Label" {
46930
46954
  displayOnly?: boolean | PropertyBindingInfo | `{${string}}`;
46931
46955
 
46932
46956
  /**
46933
- * Determines the wrapping of the text within the `Label`. When set to `false` (default), the label text
46934
- * will be truncated and and an ellipsis will be added at the end. If set to `true`, the label text will
46935
- * wrap.
46957
+ * Determines the wrapping of the text within the `Label`. If set to true the `Label` will wrap, when set
46958
+ * to false the `Label` will be truncated and replaced with ellipsis which is the default behavior.
46936
46959
  *
46937
46960
  * @since 1.50
46938
46961
  */
@@ -67402,7 +67425,7 @@ declare module "sap/m/ObjectHeader" {
67402
67425
  * Default value is `false`.
67403
67426
  *
67404
67427
  * @since 1.16.0
67405
- * @deprecated (since 1.42.0) - replaced by `markers` aggregationv. This property is valid only if you are
67428
+ * @deprecated (since 1.42.0) - replaced by `markers` aggregation. This property is valid only if you are
67406
67429
  * using the already deprecated properties - `markFlagged` and `markFavorite`. If you are using `markers`,
67407
67430
  * the visibility of the markers depends on what is set in the aggregation itself.
67408
67431
  *
@@ -68450,7 +68473,7 @@ declare module "sap/m/ObjectHeader" {
68450
68473
  * If set to `true`, the `ObjectHeader` can be marked with icons such as favorite and flag.
68451
68474
  *
68452
68475
  * @since 1.16.0
68453
- * @deprecated (since 1.42.0) - replaced by `markers` aggregationv. This property is valid only if you are
68476
+ * @deprecated (since 1.42.0) - replaced by `markers` aggregation. This property is valid only if you are
68454
68477
  * using the already deprecated properties - `markFlagged` and `markFavorite`. If you are using `markers`,
68455
68478
  * the visibility of the markers depends on what is set in the aggregation itself.
68456
68479
  */
@@ -72442,7 +72465,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
72442
72465
  *
72443
72466
  * Default value is `true`.
72444
72467
  *
72445
- * @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
72468
+ * @deprecated (since 1.32.Use) - {@link sap.m.OverflowToolbarPriority} instead.
72446
72469
  *
72447
72470
  * @returns Value of property `moveToOverflow`
72448
72471
  */
@@ -72524,7 +72547,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
72524
72547
  *
72525
72548
  * Default value is `true`.
72526
72549
  *
72527
- * @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
72550
+ * @deprecated (since 1.32.Use) - {@link sap.m.OverflowToolbarPriority} instead.
72528
72551
  *
72529
72552
  * @returns Reference to `this` in order to allow method chaining
72530
72553
  */
@@ -72582,7 +72605,7 @@ declare module "sap/m/OverflowToolbarLayoutData" {
72582
72605
  /**
72583
72606
  * The OverflowToolbar item can or cannot move to the overflow area
72584
72607
  *
72585
- * @deprecated (since 1.32) - Use {@link sap.m.OverflowToolbarPriority} instead.
72608
+ * @deprecated (since 1.32.Use) - {@link sap.m.OverflowToolbarPriority} instead.
72586
72609
  */
72587
72610
  moveToOverflow?: boolean | PropertyBindingInfo | `{${string}}`;
72588
72611
 
@@ -86649,6 +86672,14 @@ declare module "sap/m/PlanningCalendar" {
86649
86672
  */
86650
86673
  oListener?: object
86651
86674
  ): this;
86675
+ /**
86676
+ * Destroys the noData in the aggregation {@link #getNoData noData}.
86677
+ *
86678
+ * @since 1.125.0
86679
+ *
86680
+ * @returns Reference to `this` in order to allow method chaining
86681
+ */
86682
+ destroyNoData(): this;
86652
86683
  /**
86653
86684
  * Destroys all the rows in the aggregation {@link #getRows rows}.
86654
86685
  *
@@ -87076,33 +87107,19 @@ declare module "sap/m/PlanningCalendar" {
87076
87107
  */
87077
87108
  getLegend(): ID | null;
87078
87109
  /**
87079
- * Gets current value of property {@link #getMaxDate maxDate}.
87110
+ * Gets current value of property `maxDate`.
87080
87111
  *
87081
- * Defines the maximum date that can be displayed and selected in the `PlanningCalendar`. This must be a
87082
- * UI5Date or JavaScript Date object.
87083
87112
  *
87084
- * **Note:** If the `maxDate` is set to be before the current `minDate`, the `minDate` is set to the first
87085
- * date of the month in which the `maxDate` belongs.
87086
- *
87087
- * @since 1.38.0
87088
- *
87089
- * @returns Value of property `maxDate`
87113
+ * @returns The maxDate as a UI5Date or JavaScript Date object
87090
87114
  */
87091
- getMaxDate(): object;
87115
+ getMaxDate(): Date | UI5Date;
87092
87116
  /**
87093
- * Gets current value of property {@link #getMinDate minDate}.
87094
- *
87095
- * Defines the minimum date that can be displayed and selected in the `PlanningCalendar`. This must be a
87096
- * UI5Date or JavaScript Date object.
87097
- *
87098
- * **Note:** If the `minDate` is set to be after the current `maxDate`, the `maxDate` is set to the last
87099
- * date of the month in which the `minDate` belongs.
87117
+ * Gets current value of property `minDate`.
87100
87118
  *
87101
- * @since 1.38.0
87102
87119
  *
87103
- * @returns Value of property `minDate`
87120
+ * @returns The minDate as a UI5Date or JavaScript Date object
87104
87121
  */
87105
- getMinDate(): object;
87122
+ getMinDate(): Date | UI5Date;
87106
87123
  /**
87107
87124
  * Gets current value of property {@link #getMultipleAppointmentsSelection multipleAppointmentsSelection}.
87108
87125
  *
@@ -87117,11 +87134,23 @@ declare module "sap/m/PlanningCalendar" {
87117
87134
  * @returns Value of property `multipleAppointmentsSelection`
87118
87135
  */
87119
87136
  getMultipleAppointmentsSelection(): boolean;
87137
+ /**
87138
+ * Gets content of aggregation {@link #getNoData noData}.
87139
+ *
87140
+ * Defines the custom visualization if there is no data available. **Note:** If both `noDataText` property
87141
+ * and `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
87142
+ * is undefined or set to null, the `noDataText` property is used instead.
87143
+ *
87144
+ * @since 1.125.0
87145
+ */
87146
+ getNoData(): Control | string;
87120
87147
  /**
87121
87148
  * Gets current value of property {@link #getNoDataText noDataText}.
87122
87149
  *
87123
87150
  * Defines the text that is displayed when no {@link sap.m.PlanningCalendarRow PlanningCalendarRows} are
87124
- * assigned.
87151
+ * assigned. **Note:** If both `noDataText` property and `noData` aggregation are provided, the `noData`
87152
+ * aggregation takes priority. If the `noData` aggregation is undefined or set to null, the `noDataText`
87153
+ * property is used instead.
87125
87154
  *
87126
87155
  *
87127
87156
  * @returns Value of property `noDataText`
@@ -87291,15 +87320,12 @@ declare module "sap/m/PlanningCalendar" {
87291
87320
  */
87292
87321
  getSpecialDates(): DateTypeRange[];
87293
87322
  /**
87294
- * Gets current value of property {@link #getStartDate startDate}.
87295
- *
87296
- * Determines the start date of the row, as a UI5Date or JavaScript Date object. The current date is used
87297
- * as default.
87323
+ * Gets current value of property `startDate`.
87298
87324
  *
87299
87325
  *
87300
- * @returns Value of property `startDate`
87326
+ * @returns The startDate as a UI5Date or JavaScript Date object
87301
87327
  */
87302
- getStartDate(): object;
87328
+ getStartDate(): Date | UI5Date;
87303
87329
  /**
87304
87330
  * Gets current value of property {@link #getStickyHeader stickyHeader}.
87305
87331
  *
@@ -87903,11 +87929,26 @@ declare module "sap/m/PlanningCalendar" {
87903
87929
  */
87904
87930
  bMultipleAppointmentsSelection?: boolean
87905
87931
  ): this;
87932
+ /**
87933
+ * Sets the aggregated {@link #getNoData noData}.
87934
+ *
87935
+ * @since 1.125.0
87936
+ *
87937
+ * @returns Reference to `this` in order to allow method chaining
87938
+ */
87939
+ setNoData(
87940
+ /**
87941
+ * The noData to set
87942
+ */
87943
+ vNoData: Control | string
87944
+ ): this;
87906
87945
  /**
87907
87946
  * Sets a new value for property {@link #getNoDataText noDataText}.
87908
87947
  *
87909
87948
  * Defines the text that is displayed when no {@link sap.m.PlanningCalendarRow PlanningCalendarRows} are
87910
- * assigned.
87949
+ * assigned. **Note:** If both `noDataText` property and `noData` aggregation are provided, the `noData`
87950
+ * aggregation takes priority. If the `noData` aggregation is undefined or set to null, the `noDataText`
87951
+ * property is used instead.
87911
87952
  *
87912
87953
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
87913
87954
  *
@@ -88199,7 +88240,9 @@ declare module "sap/m/PlanningCalendar" {
88199
88240
 
88200
88241
  /**
88201
88242
  * Defines the text that is displayed when no {@link sap.m.PlanningCalendarRow PlanningCalendarRows} are
88202
- * assigned.
88243
+ * assigned. **Note:** If both `noDataText` property and `noData` aggregation are provided, the `noData`
88244
+ * aggregation takes priority. If the `noData` aggregation is undefined or set to null, the `noDataText`
88245
+ * property is used instead.
88203
88246
  */
88204
88247
  noDataText?: string | PropertyBindingInfo;
88205
88248
 
@@ -88471,6 +88514,15 @@ declare module "sap/m/PlanningCalendar" {
88471
88514
  | AggregationBindingInfo
88472
88515
  | `{${string}}`;
88473
88516
 
88517
+ /**
88518
+ * Defines the custom visualization if there is no data available. **Note:** If both `noDataText` property
88519
+ * and `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
88520
+ * is undefined or set to null, the `noDataText` property is used instead.
88521
+ *
88522
+ * @since 1.125.0
88523
+ */
88524
+ noData?: string | Control | PropertyBindingInfo;
88525
+
88474
88526
  /**
88475
88527
  * Association to controls / IDs which label this control (see WAI-ARIA attribute aria-labelledby).
88476
88528
  *
@@ -100609,8 +100661,6 @@ declare module "sap/m/RadioButton" {
100609
100661
 
100610
100662
  import ElementMetadata from "sap/ui/core/ElementMetadata";
100611
100663
 
100612
- import { WrappingType } from "sap/m/library";
100613
-
100614
100664
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
100615
100665
 
100616
100666
  import Event from "sap/ui/base/Event";
@@ -100984,32 +101034,6 @@ declare module "sap/m/RadioButton" {
100984
101034
  * @returns Value of property `width`
100985
101035
  */
100986
101036
  getWidth(): CSSSize;
100987
- /**
100988
- * Gets current value of property {@link #getWrapping wrapping}.
100989
- *
100990
- * Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
100991
- * label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
100992
- * will wrap.
100993
- *
100994
- * Default value is `false`.
100995
- *
100996
- * @since 1.126
100997
- *
100998
- * @returns Value of property `wrapping`
100999
- */
101000
- getWrapping(): boolean;
101001
- /**
101002
- * Gets current value of property {@link #getWrappingType wrappingType}.
101003
- *
101004
- * Defines the type of wrapping to be used for the label text (hyphenated or normal).
101005
- *
101006
- * Default value is `Normal`.
101007
- *
101008
- * @since 1.126
101009
- *
101010
- * @returns Value of property `wrappingType`
101011
- */
101012
- getWrappingType(): WrappingType | keyof typeof WrappingType;
101013
101037
  /**
101014
101038
  * Pseudo event for pseudo 'select' event... space, enter, ... without modifiers (Ctrl, Alt or Shift)
101015
101039
  */
@@ -101262,46 +101286,6 @@ declare module "sap/m/RadioButton" {
101262
101286
  */
101263
101287
  sWidth?: CSSSize
101264
101288
  ): this;
101265
- /**
101266
- * Sets a new value for property {@link #getWrapping wrapping}.
101267
- *
101268
- * Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
101269
- * label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
101270
- * will wrap.
101271
- *
101272
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
101273
- *
101274
- * Default value is `false`.
101275
- *
101276
- * @since 1.126
101277
- *
101278
- * @returns Reference to `this` in order to allow method chaining
101279
- */
101280
- setWrapping(
101281
- /**
101282
- * New value for property `wrapping`
101283
- */
101284
- bWrapping?: boolean
101285
- ): this;
101286
- /**
101287
- * Sets a new value for property {@link #getWrappingType wrappingType}.
101288
- *
101289
- * Defines the type of wrapping to be used for the label text (hyphenated or normal).
101290
- *
101291
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
101292
- *
101293
- * Default value is `Normal`.
101294
- *
101295
- * @since 1.126
101296
- *
101297
- * @returns Reference to `this` in order to allow method chaining
101298
- */
101299
- setWrappingType(
101300
- /**
101301
- * New value for property `wrappingType`
101302
- */
101303
- sWrappingType?: WrappingType | keyof typeof WrappingType
101304
- ): this;
101305
101289
  }
101306
101290
  /**
101307
101291
  * Describes the settings that can be provided to the RadioButton constructor.
@@ -101392,25 +101376,6 @@ declare module "sap/m/RadioButton" {
101392
101376
  | PropertyBindingInfo
101393
101377
  | `{${string}}`;
101394
101378
 
101395
- /**
101396
- * Determines the wrapping of the text within the `Radio Button` label. When set to `false` (default), the
101397
- * label text will be truncated and an ellipsis will be added at the end. If set to `true`, the label text
101398
- * will wrap.
101399
- *
101400
- * @since 1.126
101401
- */
101402
- wrapping?: boolean | PropertyBindingInfo | `{${string}}`;
101403
-
101404
- /**
101405
- * Defines the type of wrapping to be used for the label text (hyphenated or normal).
101406
- *
101407
- * @since 1.126
101408
- */
101409
- wrappingType?:
101410
- | (WrappingType | keyof typeof WrappingType)
101411
- | PropertyBindingInfo
101412
- | `{${string}}`;
101413
-
101414
101379
  /**
101415
101380
  * Association to controls / IDs which describe this control (see WAI-ARIA attribute aria-describedby).
101416
101381
  */
@@ -123491,15 +123456,17 @@ declare module "sap/m/SinglePlanningCalendar" {
123491
123456
 
123492
123457
  import ElementMetadata from "sap/ui/core/ElementMetadata";
123493
123458
 
123494
- import PlanningCalendarLegend from "sap/m/PlanningCalendarLegend";
123495
-
123496
123459
  import UI5Date from "sap/ui/core/date/UI5Date";
123497
123460
 
123461
+ import PlanningCalendarLegend from "sap/m/PlanningCalendarLegend";
123462
+
123498
123463
  import {
123499
123464
  PropertyBindingInfo,
123500
123465
  AggregationBindingInfo,
123501
123466
  } from "sap/ui/base/ManagedObject";
123502
123467
 
123468
+ import Link from "sap/m/Link";
123469
+
123503
123470
  /**
123504
123471
  * Displays a calendar of a single entity (such as person, resource) for the selected time interval.
123505
123472
  *
@@ -124861,15 +124828,12 @@ declare module "sap/m/SinglePlanningCalendar" {
124861
124828
  */
124862
124829
  getSpecialDates(): DateTypeRange[];
124863
124830
  /**
124864
- * Gets current value of property {@link #getStartDate startDate}.
124865
- *
124866
- * Determines the start date of the grid, as a UI5Date or JavaScript Date object. It is considered as a
124867
- * local date. The time part will be ignored. The current date is used as default.
124831
+ * Gets current value of property `startDate`.
124868
124832
  *
124869
124833
  *
124870
- * @returns Value of property `startDate`
124834
+ * @returns The startDate as a UI5Date or JavaScript Date object
124871
124835
  */
124872
- getStartDate(): object;
124836
+ getStartDate(): Date | UI5Date;
124873
124837
  /**
124874
124838
  * Gets current value of property {@link #getStartHour startHour}.
124875
124839
  *
@@ -126016,6 +125980,11 @@ declare module "sap/m/SinglePlanningCalendar" {
126016
125980
  * The date as a UI5Date or JavaScript Date object of the cell with the pressed more link.
126017
125981
  */
126018
125982
  date?: object;
125983
+
125984
+ /**
125985
+ * The link that has been triggered
125986
+ */
125987
+ sourceLink?: Link;
126019
125988
  }
126020
125989
 
126021
125990
  /**
@@ -126359,13 +126328,16 @@ declare module "sap/m/SinglePlanningCalendarView" {
126359
126328
  /**
126360
126329
  * Should calculate the startDate which will be displayed in the `sap.m.SinglePlanningCalendar` based on
126361
126330
  * a given date.
126331
+ *
126332
+ *
126333
+ * @returns The startDate of the view
126362
126334
  */
126363
126335
  calculateStartDate(
126364
126336
  /**
126365
- * A date instance
126337
+ * The given date
126366
126338
  */
126367
126339
  oDate: Date | UI5Date
126368
- ): void;
126340
+ ): Date | UI5Date;
126369
126341
  /**
126370
126342
  * Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
126371
126343
  *
@@ -126379,8 +126351,11 @@ declare module "sap/m/SinglePlanningCalendarView" {
126379
126351
  getCalendarWeekNumbering(): CalendarWeekNumbering;
126380
126352
  /**
126381
126353
  * Should return the number of columns to be displayed in the grid of the `sap.m.SinglePlanningCalendar`.
126354
+ *
126355
+ *
126356
+ * @returns the number of columns to be displayed
126382
126357
  */
126383
- getEntityCount(): void;
126358
+ getEntityCount(): int;
126384
126359
  /**
126385
126360
  * Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
126386
126361
  *
@@ -126411,8 +126386,11 @@ declare module "sap/m/SinglePlanningCalendarView" {
126411
126386
  * after navigating forward/backward with the arrows. For example, by pressing the forward button inside
126412
126387
  * the work week view, the next startDate of a work week will be 7 entities (days) away from the current
126413
126388
  * one.
126389
+ *
126390
+ *
126391
+ * @returns the number of entities to be skipped by scrolling
126414
126392
  */
126415
- getScrollEntityCount(): void;
126393
+ getScrollEntityCount(): int;
126416
126394
  /**
126417
126395
  * Gets current value of property {@link #getTitle title}.
126418
126396
  *
@@ -153900,6 +153878,20 @@ declare module "sap/m/upload/UploadItem" {
153900
153878
  * Header fields to be included in the header section of an XMLHttpRequest (XHR) request
153901
153879
  */
153902
153880
  getHeaderFields(): Item[];
153881
+ /**
153882
+ * Gets current value of property {@link #getIsTrustedSource isTrustedSource}.
153883
+ *
153884
+ * This property is used in the {@link sap.m.upload.FilePreviewDialog FilePreviewDialog} to determine if
153885
+ * the file is from a trusted source before displaying. This property must be set to true if the file is
153886
+ * from a trusted source.
153887
+ *
153888
+ * Default value is `false`.
153889
+ *
153890
+ * @since 1.125
153891
+ *
153892
+ * @returns Value of property `isTrustedSource`
153893
+ */
153894
+ getIsTrustedSource(): boolean;
153903
153895
  /**
153904
153896
  * Gets current value of property {@link #getMediaType mediaType}.
153905
153897
  *
@@ -154041,6 +154033,27 @@ declare module "sap/m/upload/UploadItem" {
154041
154033
  */
154042
154034
  fFileSize?: float
154043
154035
  ): this;
154036
+ /**
154037
+ * Sets a new value for property {@link #getIsTrustedSource isTrustedSource}.
154038
+ *
154039
+ * This property is used in the {@link sap.m.upload.FilePreviewDialog FilePreviewDialog} to determine if
154040
+ * the file is from a trusted source before displaying. This property must be set to true if the file is
154041
+ * from a trusted source.
154042
+ *
154043
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
154044
+ *
154045
+ * Default value is `false`.
154046
+ *
154047
+ * @since 1.125
154048
+ *
154049
+ * @returns Reference to `this` in order to allow method chaining
154050
+ */
154051
+ setIsTrustedSource(
154052
+ /**
154053
+ * New value for property `isTrustedSource`
154054
+ */
154055
+ bIsTrustedSource?: boolean
154056
+ ): this;
154044
154057
  /**
154045
154058
  * Sets a new value for property {@link #getMediaType mediaType}.
154046
154059
  *
@@ -154168,6 +154181,15 @@ declare module "sap/m/upload/UploadItem" {
154168
154181
  */
154169
154182
  fileSize?: float | PropertyBindingInfo | `{${string}}`;
154170
154183
 
154184
+ /**
154185
+ * This property is used in the {@link sap.m.upload.FilePreviewDialog FilePreviewDialog} to determine if
154186
+ * the file is from a trusted source before displaying. This property must be set to true if the file is
154187
+ * from a trusted source.
154188
+ *
154189
+ * @since 1.125
154190
+ */
154191
+ isTrustedSource?: boolean | PropertyBindingInfo | `{${string}}`;
154192
+
154171
154193
  /**
154172
154194
  * Header fields to be included in the header section of an XMLHttpRequest (XHR) request
154173
154195
  */
@@ -154277,6 +154299,19 @@ declare module "sap/m/upload/UploadItemConfiguration" {
154277
154299
  * @returns Value of property `fileSizePath`
154278
154300
  */
154279
154301
  getFileSizePath(): string;
154302
+ /**
154303
+ * Gets current value of property {@link #getIsTrustedSourcePath isTrustedSourcePath}.
154304
+ *
154305
+ * Specifies the path in the model to confirm if the file is from a trusted source. This is used to determine
154306
+ * if the file is uploaded from a trusted source. If the file is uploaded from a trusted source, the file
154307
+ * can be previewed. Set this property to the path in the model that determines if the file is uploaded
154308
+ * from a trusted source.
154309
+ *
154310
+ * @since 1.125
154311
+ *
154312
+ * @returns Value of property `isTrustedSourcePath`
154313
+ */
154314
+ getIsTrustedSourcePath(): string;
154280
154315
  /**
154281
154316
  * Gets current value of property {@link #getMediaTypePath mediaTypePath}.
154282
154317
  *
@@ -154345,6 +154380,26 @@ declare module "sap/m/upload/UploadItemConfiguration" {
154345
154380
  */
154346
154381
  sFileSizePath?: string
154347
154382
  ): this;
154383
+ /**
154384
+ * Sets a new value for property {@link #getIsTrustedSourcePath isTrustedSourcePath}.
154385
+ *
154386
+ * Specifies the path in the model to confirm if the file is from a trusted source. This is used to determine
154387
+ * if the file is uploaded from a trusted source. If the file is uploaded from a trusted source, the file
154388
+ * can be previewed. Set this property to the path in the model that determines if the file is uploaded
154389
+ * from a trusted source.
154390
+ *
154391
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
154392
+ *
154393
+ * @since 1.125
154394
+ *
154395
+ * @returns Reference to `this` in order to allow method chaining
154396
+ */
154397
+ setIsTrustedSourcePath(
154398
+ /**
154399
+ * New value for property `isTrustedSourcePath`
154400
+ */
154401
+ sIsTrustedSourcePath?: string
154402
+ ): this;
154348
154403
  /**
154349
154404
  * Sets a new value for property {@link #getMediaTypePath mediaTypePath}.
154350
154405
  *
@@ -154445,6 +154500,16 @@ declare module "sap/m/upload/UploadItemConfiguration" {
154445
154500
  * Specifies path in the model to the file size.
154446
154501
  */
154447
154502
  fileSizePath?: string | PropertyBindingInfo;
154503
+
154504
+ /**
154505
+ * Specifies the path in the model to confirm if the file is from a trusted source. This is used to determine
154506
+ * if the file is uploaded from a trusted source. If the file is uploaded from a trusted source, the file
154507
+ * can be previewed. Set this property to the path in the model that determines if the file is uploaded
154508
+ * from a trusted source.
154509
+ *
154510
+ * @since 1.125
154511
+ */
154512
+ isTrustedSourcePath?: string | PropertyBindingInfo;
154448
154513
  }
154449
154514
  }
154450
154515
 
@@ -160859,7 +160924,7 @@ declare module "sap/m/upload/UploadSetwithTable" {
160859
160924
  /**
160860
160925
  * Item info object sent as paramter to {@link sap.m.upload.UploadSetwithTable.itemValidationHandler itemValidationHandler callback}
160861
160926
  *
160862
- * @deprecated (since 1.124)
160927
+ * @deprecated (since 1.124) - replaced by {@link sap.m.plugins.UploadSetwithTable.ItemInfo}
160863
160928
  */
160864
160929
  export type ItemInfo = {
160865
160930
  /**
@@ -160880,7 +160945,7 @@ declare module "sap/m/upload/UploadSetwithTable" {
160880
160945
  * Callback function to perform additional validations or configurations for the item queued up for upload
160881
160946
  * and to finally trigger the upload.
160882
160947
  *
160883
- * @deprecated (since 1.124)
160948
+ * @deprecated (since 1.124) - replaced by {@link sap.m.plugins.UploadSetwithTable.itemValidationHandler}
160884
160949
  */
160885
160950
  export type itemValidationHandler = (
160886
160951
  oItemInfo: ItemInfo
@@ -164153,7 +164218,7 @@ declare module "sap/m/UploadCollectionItem" {
164153
164218
  * Defines a structure of the element of the 'items' aggregation.
164154
164219
  *
164155
164220
  * @since 1.26.0
164156
- * @deprecated (since 1.88)
164221
+ * @deprecated (since 1.88) - replaced by {@link sap.m.upload.UploadSetItem}.
164157
164222
  */
164158
164223
  export default class UploadCollectionItem extends UI5Element {
164159
164224
  /**
@@ -165156,7 +165221,7 @@ declare module "sap/m/UploadCollectionItem" {
165156
165221
  /**
165157
165222
  * Describes the settings that can be provided to the UploadCollectionItem constructor.
165158
165223
  *
165159
- * @deprecated (since 1.88)
165224
+ * @deprecated (since 1.88) - replaced by {@link sap.m.upload.UploadSetItem}.
165160
165225
  */
165161
165226
  export interface $UploadCollectionItemSettings extends $ElementSettings {
165162
165227
  /**
@@ -165349,7 +165414,7 @@ declare module "sap/m/UploadCollectionParameter" {
165349
165414
  /**
165350
165415
  * Defines a structure of the element of the 'parameters' aggregation.
165351
165416
  *
165352
- * @deprecated (since 1.88)
165417
+ * @deprecated (since 1.88) - the concept has been discarded.
165353
165418
  */
165354
165419
  export default class UploadCollectionParameter extends UI5Element {
165355
165420
  /**
@@ -165472,7 +165537,7 @@ declare module "sap/m/UploadCollectionParameter" {
165472
165537
  /**
165473
165538
  * Describes the settings that can be provided to the UploadCollectionParameter constructor.
165474
165539
  *
165475
- * @deprecated (since 1.88)
165540
+ * @deprecated (since 1.88) - the concept has been discarded.
165476
165541
  */
165477
165542
  export interface $UploadCollectionParameterSettings extends $ElementSettings {
165478
165543
  /**
@@ -165501,7 +165566,7 @@ declare module "sap/m/UploadCollectionToolbarPlaceholder" {
165501
165566
  * the toolbar and will be placed by the application.
165502
165567
  *
165503
165568
  * @since 1.34.0
165504
- * @deprecated (since 1.88)
165569
+ * @deprecated (since 1.88) - replaced by {@link sap.m.upload.UploadSetToolbarPlaceholder}.
165505
165570
  */
165506
165571
  export default class UploadCollectionToolbarPlaceholder extends Control {
165507
165572
  /**
@@ -165576,7 +165641,7 @@ declare module "sap/m/UploadCollectionToolbarPlaceholder" {
165576
165641
  /**
165577
165642
  * Describes the settings that can be provided to the UploadCollectionToolbarPlaceholder constructor.
165578
165643
  *
165579
- * @deprecated (since 1.88)
165644
+ * @deprecated (since 1.88) - replaced by {@link sap.m.upload.UploadSetToolbarPlaceholder}.
165580
165645
  */
165581
165646
  export interface $UploadCollectionToolbarPlaceholderSettings
165582
165647
  extends $ControlSettings {}