@sapui5/ts-types-esm 1.134.1 → 1.136.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.
Files changed (68) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.ca.ui.d.ts +1 -1
  4. package/types/sap.chart.d.ts +1 -1
  5. package/types/sap.collaboration.d.ts +1 -1
  6. package/types/sap.cux.home.d.ts +82 -0
  7. package/types/sap.esh.search.ui.d.ts +1 -1
  8. package/types/sap.f.d.ts +102 -8
  9. package/types/sap.fe.base.d.ts +1 -1
  10. package/types/sap.fe.controls.d.ts +1 -1
  11. package/types/sap.fe.core.d.ts +31 -7
  12. package/types/sap.fe.ina.d.ts +1 -1
  13. package/types/sap.fe.macros.d.ts +1289 -386
  14. package/types/sap.fe.navigation.d.ts +1 -1
  15. package/types/sap.fe.placeholder.d.ts +1 -1
  16. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  17. package/types/sap.fe.templates.d.ts +1 -1
  18. package/types/sap.fe.test.d.ts +6 -4
  19. package/types/sap.fe.tools.d.ts +1 -1
  20. package/types/sap.feedback.ui.d.ts +1 -1
  21. package/types/sap.gantt.d.ts +152 -22
  22. package/types/sap.insights.d.ts +1 -1
  23. package/types/sap.m.d.ts +837 -111
  24. package/types/sap.makit.d.ts +1 -1
  25. package/types/sap.me.d.ts +1 -1
  26. package/types/sap.ndc.d.ts +1 -1
  27. package/types/sap.ovp.d.ts +1 -1
  28. package/types/sap.rules.ui.d.ts +1 -1
  29. package/types/sap.sac.df.d.ts +249 -1230
  30. package/types/sap.suite.ui.commons.d.ts +83 -1
  31. package/types/sap.suite.ui.generic.template.d.ts +15 -3
  32. package/types/sap.suite.ui.microchart.d.ts +1 -1
  33. package/types/sap.tnt.d.ts +215 -19
  34. package/types/sap.ui.codeeditor.d.ts +1 -1
  35. package/types/sap.ui.commons.d.ts +1 -1
  36. package/types/sap.ui.comp.d.ts +3643 -505
  37. package/types/sap.ui.core.d.ts +272 -155
  38. package/types/sap.ui.dt.d.ts +1 -1
  39. package/types/sap.ui.export.d.ts +1 -1
  40. package/types/sap.ui.fl.d.ts +21 -7
  41. package/types/sap.ui.generic.app.d.ts +1 -1
  42. package/types/sap.ui.generic.template.d.ts +1 -1
  43. package/types/sap.ui.integration.d.ts +2 -2
  44. package/types/sap.ui.layout.d.ts +14 -13
  45. package/types/sap.ui.mdc.d.ts +160 -13
  46. package/types/sap.ui.richtexteditor.d.ts +39 -1
  47. package/types/sap.ui.rta.d.ts +31 -5
  48. package/types/sap.ui.suite.d.ts +1 -1
  49. package/types/sap.ui.support.d.ts +30 -16
  50. package/types/sap.ui.table.d.ts +16 -18
  51. package/types/sap.ui.testrecorder.d.ts +1 -1
  52. package/types/sap.ui.unified.d.ts +45 -32
  53. package/types/sap.ui.ux3.d.ts +3 -3
  54. package/types/sap.ui.vbm.d.ts +1 -1
  55. package/types/sap.ui.vk.d.ts +320 -110
  56. package/types/sap.ui.vtm.d.ts +1 -1
  57. package/types/sap.ui.webc.common.d.ts +1 -1
  58. package/types/sap.ui.webc.fiori.d.ts +1 -1
  59. package/types/sap.ui.webc.main.d.ts +1 -1
  60. package/types/sap.uiext.inbox.d.ts +1 -1
  61. package/types/sap.ushell.d.ts +63 -52
  62. package/types/sap.ushell_abap.d.ts +1 -1
  63. package/types/sap.uxap.d.ts +11 -21
  64. package/types/sap.viz.d.ts +1 -1
  65. package/types/sap.webanalytics.core.d.ts +1 -1
  66. package/types/sap.zen.commons.d.ts +1 -1
  67. package/types/sap.zen.crosstab.d.ts +1 -1
  68. 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.134.0
1
+ // For Library Version: 1.136.0
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -1647,6 +1647,17 @@ declare module "sap/m/library" {
1647
1647
  __implements__sap_m_ITableItem: boolean;
1648
1648
  }
1649
1649
 
1650
+ /**
1651
+ * Interface for controls placed in the `content` aggregation of `{@link sap.m.Toolbar}` or `{@link sap.m.OverflowToolbar}`,
1652
+ * which need to indicate whether they are interactive or not.
1653
+ *
1654
+ * Controls that implement this interface should have the following method: `_getToolbarInteractive` - returns
1655
+ * boolean value that shows whether the control is interactive or not
1656
+ */
1657
+ export interface IToolbarInteractiveControl {
1658
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
1659
+ }
1660
+
1650
1661
  /**
1651
1662
  * Available label display modes.
1652
1663
  *
@@ -3896,6 +3907,8 @@ declare module "sap/m/library" {
3896
3907
  * In case the less parameter color cannot be determined, the validation fails. You need to check if less
3897
3908
  * parameters are supported on control level. An empty string is also allowed and has the same effect as
3898
3909
  * setting no color.
3910
+ *
3911
+ * @deprecated As of version 1.135. the concept has been discarded.
3899
3912
  */
3900
3913
  export type ValueCSSColor = string;
3901
3914
 
@@ -9106,6 +9119,7 @@ declare module "sap/m/Breadcrumbs" {
9106
9119
  import {
9107
9120
  IBreadcrumbs,
9108
9121
  IOverflowToolbarContent,
9122
+ IToolbarInteractiveControl,
9109
9123
  BreadcrumbsSeparatorStyle,
9110
9124
  } from "sap/m/library";
9111
9125
 
@@ -9133,7 +9147,7 @@ declare module "sap/m/Breadcrumbs" {
9133
9147
  IBreadcrumbs,
9134
9148
  IOverflowToolbarContent,
9135
9149
  IShrinkable,
9136
- /* was: sap.m.IToolbarInteractiveControl */ Object
9150
+ IToolbarInteractiveControl
9137
9151
  {
9138
9152
  __implements__sap_m_IBreadcrumbs: boolean;
9139
9153
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -10566,9 +10580,14 @@ declare module "sap/m/Button" {
10566
10580
  CSSSize,
10567
10581
  } from "sap/ui/core/library";
10568
10582
 
10569
- import Event from "sap/ui/base/Event";
10583
+ import {
10584
+ IToolbarInteractiveControl,
10585
+ ButtonAccessibleRole,
10586
+ BadgeStyle,
10587
+ ButtonType,
10588
+ } from "sap/m/library";
10570
10589
 
10571
- import { ButtonAccessibleRole, BadgeStyle, ButtonType } from "sap/m/library";
10590
+ import Event from "sap/ui/base/Event";
10572
10591
 
10573
10592
  import ElementMetadata from "sap/ui/core/ElementMetadata";
10574
10593
 
@@ -10596,10 +10615,7 @@ declare module "sap/m/Button" {
10596
10615
  */
10597
10616
  export default class Button
10598
10617
  extends Control
10599
- implements
10600
- IFormContent,
10601
- IAccessKeySupport,
10602
- /* was: sap.m.IToolbarInteractiveControl */ Object
10618
+ implements IFormContent, IAccessKeySupport, IToolbarInteractiveControl
10603
10619
  {
10604
10620
  __implements__sap_ui_core_IFormContent: boolean;
10605
10621
  __implements__sap_ui_core_IAccessKeySupport: boolean;
@@ -12905,6 +12921,8 @@ declare module "sap/m/CheckBox" {
12905
12921
  CSSSize,
12906
12922
  } from "sap/ui/core/library";
12907
12923
 
12924
+ import { IToolbarInteractiveControl } from "sap/m/library";
12925
+
12908
12926
  import ElementMetadata from "sap/ui/core/ElementMetadata";
12909
12927
 
12910
12928
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
@@ -12951,7 +12969,7 @@ declare module "sap/m/CheckBox" {
12951
12969
  IFormContent,
12952
12970
  ISemanticFormContent,
12953
12971
  IAccessKeySupport,
12954
- /* was: sap.m.IToolbarInteractiveControl */ Object
12972
+ IToolbarInteractiveControl
12955
12973
  {
12956
12974
  __implements__sap_ui_core_IFormContent: boolean;
12957
12975
  __implements__sap_ui_core_ISemanticFormContent: boolean;
@@ -16233,6 +16251,8 @@ declare module "sap/m/ComboBox" {
16233
16251
  $ComboBoxBaseSettings,
16234
16252
  } from "sap/m/ComboBoxBase";
16235
16253
 
16254
+ import { IToolbarInteractiveControl } from "sap/m/library";
16255
+
16236
16256
  import List from "sap/m/List";
16237
16257
 
16238
16258
  import Popover from "sap/m/Popover";
@@ -16305,7 +16325,7 @@ declare module "sap/m/ComboBox" {
16305
16325
  */
16306
16326
  export default class ComboBox
16307
16327
  extends ComboBoxBase
16308
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
16328
+ implements IToolbarInteractiveControl
16309
16329
  {
16310
16330
  __implements__sap_m_IToolbarInteractiveControl: boolean;
16311
16331
  /**
@@ -20697,6 +20717,8 @@ declare module "sap/m/DateTimeField" {
20697
20717
  declare module "sap/m/DateTimeInput" {
20698
20718
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
20699
20719
 
20720
+ import { IToolbarInteractiveControl, DateTimeInputType } from "sap/m/library";
20721
+
20700
20722
  import {
20701
20723
  ID,
20702
20724
  AccessibilityInfo,
@@ -20710,8 +20732,6 @@ declare module "sap/m/DateTimeInput" {
20710
20732
 
20711
20733
  import ElementMetadata from "sap/ui/core/ElementMetadata";
20712
20734
 
20713
- import { DateTimeInputType } from "sap/m/library";
20714
-
20715
20735
  import Event from "sap/ui/base/Event";
20716
20736
 
20717
20737
  /**
@@ -20726,7 +20746,7 @@ declare module "sap/m/DateTimeInput" {
20726
20746
  */
20727
20747
  export default class DateTimeInput
20728
20748
  extends Control
20729
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
20749
+ implements IToolbarInteractiveControl
20730
20750
  {
20731
20751
  __implements__sap_m_IToolbarInteractiveControl: boolean;
20732
20752
  /**
@@ -29910,6 +29930,17 @@ declare module "sap/m/FeedListItem" {
29910
29930
  * @returns Value of property `convertLinksToAnchorTags`
29911
29931
  */
29912
29932
  getConvertLinksToAnchorTags(): LinkConversion;
29933
+ /**
29934
+ * Gets current value of property {@link #getDisableStyleAttribute disableStyleAttribute}.
29935
+ *
29936
+ * Disables rendering of the `style` attribute in the `FormattedText`.
29937
+ *
29938
+ * Default value is `false`.
29939
+ *
29940
+ *
29941
+ * @returns Value of property `disableStyleAttribute`
29942
+ */
29943
+ getDisableStyleAttribute(): boolean;
29913
29944
  /**
29914
29945
  * Gets current value of property {@link #getIcon icon}.
29915
29946
  *
@@ -30192,6 +30223,24 @@ declare module "sap/m/FeedListItem" {
30192
30223
  */
30193
30224
  sConvertLinksToAnchorTags?: LinkConversion | keyof typeof LinkConversion
30194
30225
  ): this;
30226
+ /**
30227
+ * Sets a new value for property {@link #getDisableStyleAttribute disableStyleAttribute}.
30228
+ *
30229
+ * Disables rendering of the `style` attribute in the `FormattedText`.
30230
+ *
30231
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
30232
+ *
30233
+ * Default value is `false`.
30234
+ *
30235
+ *
30236
+ * @returns Reference to `this` in order to allow method chaining
30237
+ */
30238
+ setDisableStyleAttribute(
30239
+ /**
30240
+ * New value for property `disableStyleAttribute`
30241
+ */
30242
+ bDisableStyleAttribute?: boolean
30243
+ ): this;
30195
30244
  /**
30196
30245
  * Sets a new value for property {@link #getIcon icon}.
30197
30246
  *
@@ -30616,6 +30665,11 @@ declare module "sap/m/FeedListItem" {
30616
30665
  */
30617
30666
  maxCharacters?: int | PropertyBindingInfo | `{${string}}`;
30618
30667
 
30668
+ /**
30669
+ * Disables rendering of the `style` attribute in the `FormattedText`.
30670
+ */
30671
+ disableStyleAttribute?: boolean | PropertyBindingInfo | `{${string}}`;
30672
+
30619
30673
  /**
30620
30674
  * Contains {@link sap.m.FeedListItemAction elements} that are displayed in the action sheet.
30621
30675
  *
@@ -32803,6 +32857,7 @@ declare module "sap/m/GenericTag" {
32803
32857
 
32804
32858
  import {
32805
32859
  IOverflowToolbarContent,
32860
+ IToolbarInteractiveControl,
32806
32861
  GenericTagDesign,
32807
32862
  OverflowToolbarConfig,
32808
32863
  GenericTagValueState,
@@ -32831,9 +32886,7 @@ declare module "sap/m/GenericTag" {
32831
32886
  */
32832
32887
  export default class GenericTag
32833
32888
  extends Control
32834
- implements
32835
- IOverflowToolbarContent,
32836
- /* was: sap.m.IToolbarInteractiveControl */ Object
32889
+ implements IOverflowToolbarContent, IToolbarInteractiveControl
32837
32890
  {
32838
32891
  __implements__sap_m_IOverflowToolbarContent: boolean;
32839
32892
  __implements__sap_m_IToolbarInteractiveControl: boolean;
@@ -35015,6 +35068,11 @@ declare module "sap/m/GroupHeaderListItem" {
35015
35068
  * in `sap.m.List` and `sap.m.Table`. **Note:** The inherited properties `unread`, `selected`, `counter`
35016
35069
  * and `press` event from `sap.m.ListItemBase` are not supported.
35017
35070
  *
35071
+ * There are the following known restrictions:
35072
+ * - When a list is manually populated with items and groups without using data binding, changes to the
35073
+ * order or group structure will only be correctly applied when all items are removed and reinserted again.
35074
+ *
35075
+ *
35018
35076
  * @since 1.12
35019
35077
  */
35020
35078
  export default class GroupHeaderListItem
@@ -40026,20 +40084,52 @@ declare module "sap/m/IllustratedMessageSize" {
40026
40084
  Base = "Base",
40027
40085
  /**
40028
40086
  * Dialog `Illustration` size (M breakpoint). Suitable for dialogs.
40087
+ *
40088
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Medium}
40029
40089
  */
40030
40090
  Dialog = "Dialog",
40031
40091
  /**
40032
40092
  * Dot `Illustration` size (XS breakpoint). Suitable for spaces with little vertical space.
40033
40093
  *
40034
40094
  * @since 1.108
40095
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.ExtraSmall}
40035
40096
  */
40036
40097
  Dot = "Dot",
40098
+ /**
40099
+ * Extra Small `Illustration` size. Alias for `Dot` size (XS breakpoint). Suitable for spaces with little
40100
+ * vertical space.
40101
+ *
40102
+ * @since 1.136
40103
+ */
40104
+ ExtraSmall = "ExtraSmall",
40105
+ /**
40106
+ * Large `Illustration` size. Alias for `Scene` size (L breakpoint). Suitable for a `Page` or a table.
40107
+ *
40108
+ * @since 1.136
40109
+ */
40110
+ Large = "Large",
40111
+ /**
40112
+ * Medium `Illustration` size. Alias for `Dialog` size (M breakpoint). Suitable for dialogs.
40113
+ *
40114
+ * @since 1.136
40115
+ */
40116
+ Medium = "Medium",
40037
40117
  /**
40038
40118
  * Scene `Illustration` size (L breakpoint). Suitable for a `Page` or a table.
40119
+ *
40120
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Large}
40039
40121
  */
40040
40122
  Scene = "Scene",
40123
+ /**
40124
+ * Small `Illustration` size. Alias for `Spot` size (S breakpoint). Suitable for cards (four columns).
40125
+ *
40126
+ * @since 1.136
40127
+ */
40128
+ Small = "Small",
40041
40129
  /**
40042
40130
  * Spot `Illustration` size (S breakpoint). Suitable for cards (four columns).
40131
+ *
40132
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Small}
40043
40133
  */
40044
40134
  Spot = "Spot",
40045
40135
  }
@@ -40053,18 +40143,34 @@ declare module "sap/m/IllustratedMessageType" {
40053
40143
  * @since 1.98
40054
40144
  */
40055
40145
  enum IllustratedMessageType {
40146
+ /**
40147
+ * "Achievement" illustration type.
40148
+ */
40149
+ Achievement = "sapIllus-Achievement",
40056
40150
  /**
40057
40151
  * "Add Column" illustration type.
40152
+ *
40153
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.AddingColumns}
40058
40154
  */
40059
40155
  AddColumn = "sapIllus-AddColumn",
40060
40156
  /**
40061
40157
  * "Add Dimensions" illustration type.
40062
40158
  */
40063
40159
  AddDimensions = "sapIllus-AddDimensions",
40160
+ /**
40161
+ * "Adding Columns" illustration type.
40162
+ */
40163
+ AddingColumns = "sapIllus-AddingColumns",
40064
40164
  /**
40065
40165
  * "Add People" illustration type.
40166
+ *
40167
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.AddPeopleToCalendar}
40066
40168
  */
40067
40169
  AddPeople = "sapIllus-AddPeople",
40170
+ /**
40171
+ * "Add People To Calendar" illustration type.
40172
+ */
40173
+ AddPeopleToCalendar = "sapIllus-AddPeopleToCalendar",
40068
40174
  /**
40069
40175
  * "Balloon Sky" illustration type.
40070
40176
  */
@@ -40077,12 +40183,20 @@ declare module "sap/m/IllustratedMessageType" {
40077
40183
  * "Connection" illustration type.
40078
40184
  */
40079
40185
  Connection = "sapIllus-Connection",
40186
+ /**
40187
+ * "Drag Files To Upload" illustration type.
40188
+ */
40189
+ DragFilesToUpload = "sapIllus-DragFilesToUpload",
40080
40190
  /**
40081
40191
  * "Empty Calendar" illustration type.
40192
+ *
40193
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoActivities}
40082
40194
  */
40083
40195
  EmptyCalendar = "sapIllus-EmptyCalendar",
40084
40196
  /**
40085
40197
  * "Empty List" illustration type.
40198
+ *
40199
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoEntries}
40086
40200
  */
40087
40201
  EmptyList = "sapIllus-EmptyList",
40088
40202
  /**
@@ -40091,16 +40205,34 @@ declare module "sap/m/IllustratedMessageType" {
40091
40205
  EmptyPlanningCalendar = "sapIllus-EmptyPlanningCalendar",
40092
40206
  /**
40093
40207
  * "Error Screen" illustration type.
40208
+ *
40209
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToUpload}
40094
40210
  */
40095
40211
  ErrorScreen = "sapIllus-ErrorScreen",
40212
+ /**
40213
+ * "Filtering Columns" illustration type.
40214
+ */
40215
+ FilteringColumns = "sapIllus-FilteringColumns",
40096
40216
  /**
40097
40217
  * "Filter Table" illustration type.
40218
+ *
40219
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.FilteringColumns}
40098
40220
  */
40099
40221
  FilterTable = "sapIllus-FilterTable",
40222
+ /**
40223
+ * "Grouping Columns" illustration type.
40224
+ */
40225
+ GroupingColumns = "sapIllus-GroupingColumns",
40100
40226
  /**
40101
40227
  * "Group Table" illustration type.
40228
+ *
40229
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.GroupingColumns}
40102
40230
  */
40103
40231
  GroupTable = "sapIllus-GroupTable",
40232
+ /**
40233
+ * "KeyTask" illustration type.
40234
+ */
40235
+ KeyTask = "sapIllus-KeyTask",
40104
40236
  /**
40105
40237
  * "New Mail" illustration type.
40106
40238
  */
@@ -40109,6 +40241,10 @@ declare module "sap/m/IllustratedMessageType" {
40109
40241
  * "No Activities" illustration type.
40110
40242
  */
40111
40243
  NoActivities = "sapIllus-NoActivities",
40244
+ /**
40245
+ * "No Chart Data" illustration type.
40246
+ */
40247
+ NoChartData = "sapIllus-NoChartData",
40112
40248
  /**
40113
40249
  * "No Columns Set" illustration type.
40114
40250
  */
@@ -40119,6 +40255,8 @@ declare module "sap/m/IllustratedMessageType" {
40119
40255
  NoData = "sapIllus-NoData",
40120
40256
  /**
40121
40257
  * "No Dimensions Set" illustration type.
40258
+ *
40259
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoChartData}
40122
40260
  */
40123
40261
  NoDimensionsSet = "sapIllus-NoDimensionsSet",
40124
40262
  /**
@@ -40135,6 +40273,8 @@ declare module "sap/m/IllustratedMessageType" {
40135
40273
  NoMail = "sapIllus-NoMail",
40136
40274
  /**
40137
40275
  * "No Email v1" illustration type.
40276
+ *
40277
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoMail}
40138
40278
  */
40139
40279
  NoMailV1 = "sapIllus-NoMail_v1",
40140
40280
  /**
@@ -40147,6 +40287,8 @@ declare module "sap/m/IllustratedMessageType" {
40147
40287
  NoSavedItems = "sapIllus-NoSavedItems",
40148
40288
  /**
40149
40289
  * "No Saved Items v1" illustration type.
40290
+ *
40291
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSavedItems}
40150
40292
  */
40151
40293
  NoSavedItemsV1 = "sapIllus-NoSavedItems_v1",
40152
40294
  /**
@@ -40159,26 +40301,44 @@ declare module "sap/m/IllustratedMessageType" {
40159
40301
  NoTasks = "sapIllus-NoTasks",
40160
40302
  /**
40161
40303
  * "No Tasks v1" illustration type.
40304
+ *
40305
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoTasks}
40162
40306
  */
40163
40307
  NoTasksV1 = "sapIllus-NoTasks_v1",
40164
40308
  /**
40165
40309
  * "Page Not Found" illustration type.
40166
40310
  */
40167
40311
  PageNotFound = "sapIllus-PageNotFound",
40312
+ /**
40313
+ * "Receive Appreciation" illustration type.
40314
+ */
40315
+ ReceiveAppreciation = "sapIllus-ReceiveAppreciation",
40168
40316
  /**
40169
40317
  * "Reload Screen" illustration type.
40318
+ *
40319
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
40170
40320
  */
40171
40321
  ReloadScreen = "sapIllus-ReloadScreen",
40172
40322
  /**
40173
40323
  * "Resize Column" illustration type.
40324
+ *
40325
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ResizingColumns}
40174
40326
  */
40175
40327
  ResizeColumn = "sapIllus-ResizeColumn",
40328
+ /**
40329
+ * "Resizing Columns" illustration type.
40330
+ */
40331
+ ResizingColumns = "sapIllus-ResizingColumns",
40176
40332
  /**
40177
40333
  * "Search Earth" illustration type.
40334
+ *
40335
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.BeforeSearch}
40178
40336
  */
40179
40337
  SearchEarth = "sapIllus-SearchEarth",
40180
40338
  /**
40181
40339
  * "Search Folder" illustration type.
40340
+ *
40341
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSearchResults}
40182
40342
  */
40183
40343
  SearchFolder = "sapIllus-SearchFolder",
40184
40344
  /**
@@ -40187,18 +40347,26 @@ declare module "sap/m/IllustratedMessageType" {
40187
40347
  SignOut = "sapIllus-SignOut",
40188
40348
  /**
40189
40349
  * "Simple Balloon" illustration type.
40350
+ *
40351
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
40190
40352
  */
40191
40353
  SimpleBalloon = "sapIllus-SimpleBalloon",
40192
40354
  /**
40193
40355
  * "Simple Bell" illustration type.
40356
+ *
40357
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoNotifications}
40194
40358
  */
40195
40359
  SimpleBell = "sapIllus-SimpleBell",
40196
40360
  /**
40197
40361
  * "Simple Calendar" illustration type.
40362
+ *
40363
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoActivities}
40198
40364
  */
40199
40365
  SimpleCalendar = "sapIllus-SimpleCalendar",
40200
40366
  /**
40201
40367
  * "Simple CheckMark" illustration type.
40368
+ *
40369
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
40202
40370
  */
40203
40371
  SimpleCheckMark = "sapIllus-SimpleCheckMark",
40204
40372
  /**
@@ -40207,62 +40375,96 @@ declare module "sap/m/IllustratedMessageType" {
40207
40375
  SimpleConnection = "sapIllus-SimpleConnection",
40208
40376
  /**
40209
40377
  * "Simple Empty Doc" illustration type.
40378
+ *
40379
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoData}
40210
40380
  */
40211
40381
  SimpleEmptyDoc = "sapIllus-SimpleEmptyDoc",
40212
40382
  /**
40213
40383
  * "Simple Empty List" illustration type.
40384
+ *
40385
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoEntries}
40214
40386
  */
40215
40387
  SimpleEmptyList = "sapIllus-SimpleEmptyList",
40216
40388
  /**
40217
40389
  * "Simple Error" illustration type.
40390
+ *
40391
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToUpload}
40218
40392
  */
40219
40393
  SimpleError = "sapIllus-SimpleError",
40220
40394
  /**
40221
40395
  * "Simple Magnifier" illustration type.
40396
+ *
40397
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.BeforeSearch}
40222
40398
  */
40223
40399
  SimpleMagnifier = "sapIllus-SimpleMagnifier",
40224
40400
  /**
40225
40401
  * "Simple Mail" illustration type.
40402
+ *
40403
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoMail}
40226
40404
  */
40227
40405
  SimpleMail = "sapIllus-SimpleMail",
40228
40406
  /**
40229
40407
  * "Simple No Saved Items" illustration type.
40408
+ *
40409
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSavedItems}
40230
40410
  */
40231
40411
  SimpleNoSavedItems = "sapIllus-SimpleNoSavedItems",
40232
40412
  /**
40233
40413
  * "Simple Not Found Magnifier" illustration type.
40414
+ *
40415
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSearchResults}
40234
40416
  */
40235
40417
  SimpleNotFoundMagnifier = "sapIllus-SimpleNotFoundMagnifier",
40236
40418
  /**
40237
40419
  * "Simple Reload" illustration type.
40420
+ *
40421
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
40238
40422
  */
40239
40423
  SimpleReload = "sapIllus-SimpleReload",
40240
40424
  /**
40241
40425
  * "Simple Task" illustration type.
40426
+ *
40427
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoTasks}
40242
40428
  */
40243
40429
  SimpleTask = "sapIllus-SimpleTask",
40244
40430
  /**
40245
40431
  * "Sleeping Bell" illustration type.
40432
+ *
40433
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoNotifications}
40246
40434
  */
40247
40435
  SleepingBell = "sapIllus-SleepingBell",
40248
40436
  /**
40249
40437
  * "Sort Column" illustration type.
40438
+ *
40439
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.SortingColumns}
40250
40440
  */
40251
40441
  SortColumn = "sapIllus-SortColumn",
40442
+ /**
40443
+ * "Sorting Columns" illustration type.
40444
+ */
40445
+ SortingColumns = "sapIllus-SortingColumns",
40252
40446
  /**
40253
40447
  * "Success Balloon" illustration type.
40448
+ *
40449
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
40254
40450
  */
40255
40451
  SuccessBalloon = "sapIllus-SuccessBalloon",
40256
40452
  /**
40257
40453
  * "Success CheckMark" illustration type.
40454
+ *
40455
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
40258
40456
  */
40259
40457
  SuccessCheckMark = "sapIllus-SuccessCheckMark",
40260
40458
  /**
40261
40459
  * "Success HighFive" illustration type.
40460
+ *
40461
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
40262
40462
  */
40263
40463
  SuccessHighFive = "sapIllus-SuccessHighFive",
40264
40464
  /**
40265
40465
  * "Success Screen" illustration type.
40466
+ *
40467
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
40266
40468
  */
40267
40469
  SuccessScreen = "sapIllus-SuccessScreen",
40268
40470
  /**
@@ -40271,6 +40473,8 @@ declare module "sap/m/IllustratedMessageType" {
40271
40473
  Survey = "sapIllus-Survey",
40272
40474
  /**
40273
40475
  * "Tent" illustration type.
40476
+ *
40477
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoData}
40274
40478
  */
40275
40479
  Tent = "sapIllus-Tent",
40276
40480
  /**
@@ -40287,12 +40491,18 @@ declare module "sap/m/IllustratedMessageType" {
40287
40491
  UnableToUpload = "sapIllus-UnableToUpload",
40288
40492
  /**
40289
40493
  * "Upload Collection" illustration type.
40494
+ *
40495
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.DragFilesToUpload}
40290
40496
  */
40291
40497
  UploadCollection = "sapIllus-UploadCollection",
40292
40498
  /**
40293
40499
  * "Upload To Cloud" illustration type.
40294
40500
  */
40295
40501
  UploadToCloud = "sapIllus-UploadToCloud",
40502
+ /**
40503
+ * "User has signed up for an application" illustration type.
40504
+ */
40505
+ UserHasSignedUp = "sapIllus-UserHasSignedUp",
40296
40506
  }
40297
40507
  export default IllustratedMessageType;
40298
40508
  }
@@ -40662,7 +40872,11 @@ declare module "sap/m/IllustrationPool" {
40662
40872
  /**
40663
40873
  * whether or not all of the assets for the Illustration Set should be loaded once the metadata is loaded
40664
40874
  */
40665
- bLoadAllResources: boolean
40875
+ bLoadAllResources: boolean,
40876
+ /**
40877
+ * optional array containing the Illustration Set symbols
40878
+ */
40879
+ aOptionalSymbols: any[]
40666
40880
  ): void;
40667
40881
  }
40668
40882
  const IllustrationPool: IllustrationPool;
@@ -44791,6 +45005,8 @@ declare module "sap/m/InputBase" {
44791
45005
  CSSSize,
44792
45006
  } from "sap/ui/core/library";
44793
45007
 
45008
+ import { IToolbarInteractiveControl } from "sap/m/library";
45009
+
44794
45010
  import Icon from "sap/ui/core/Icon";
44795
45011
 
44796
45012
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
@@ -44814,7 +45030,7 @@ declare module "sap/m/InputBase" {
44814
45030
  IFormContent,
44815
45031
  ISemanticFormContent,
44816
45032
  ILabelable,
44817
- /* was: sap.m.IToolbarInteractiveControl */ Object
45033
+ IToolbarInteractiveControl
44818
45034
  {
44819
45035
  __implements__sap_ui_core_IFormContent: boolean;
44820
45036
  __implements__sap_ui_core_ISemanticFormContent: boolean;
@@ -45288,6 +45504,22 @@ declare module "sap/m/InputBase" {
45288
45504
  * @returns Value of property `valueState`
45289
45505
  */
45290
45506
  getValueState(): ValueState;
45507
+ /**
45508
+ * Gets the ID of the hidden value state message related to value state links
45509
+ *
45510
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
45511
+ *
45512
+ * @returns The ID of the hidden value state message related to value state links
45513
+ */
45514
+ getValueStateLinksShortcutsId(): string;
45515
+ /**
45516
+ * Returns the keyboard shortcuts announcement for the value state links
45517
+ *
45518
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
45519
+ *
45520
+ * @returns The text for value state links shortcuts
45521
+ */
45522
+ getValueStateLinksShortcutsTextAcc(): string;
45291
45523
  /**
45292
45524
  * Gets current value of property {@link #getValueStateText valueStateText}.
45293
45525
  *
@@ -47116,6 +47348,7 @@ declare module "sap/m/Label" {
47116
47348
 
47117
47349
  import {
47118
47350
  IOverflowToolbarContent,
47351
+ IToolbarInteractiveControl,
47119
47352
  LabelDesign,
47120
47353
  OverflowToolbarConfig,
47121
47354
  WrappingType,
@@ -47152,7 +47385,7 @@ declare module "sap/m/Label" {
47152
47385
  IAccessKeySupport,
47153
47386
  ILabelable,
47154
47387
  IOverflowToolbarContent,
47155
- /* was: sap.m.IToolbarInteractiveControl */ Object
47388
+ IToolbarInteractiveControl
47156
47389
  {
47157
47390
  __implements__sap_ui_core_Label: boolean;
47158
47391
  __implements__sap_ui_core_IShrinkable: boolean;
@@ -48222,6 +48455,7 @@ declare module "sap/m/Link" {
48222
48455
  } from "sap/ui/core/library";
48223
48456
 
48224
48457
  import {
48458
+ IToolbarInteractiveControl,
48225
48459
  LinkAccessibleRole,
48226
48460
  EmptyIndicatorMode,
48227
48461
  ReactiveAreaMode,
@@ -48266,7 +48500,7 @@ declare module "sap/m/Link" {
48266
48500
  ITitleContent,
48267
48501
  IAccessKeySupport,
48268
48502
  ILabelable,
48269
- /* was: sap.m.IToolbarInteractiveControl */ Object
48503
+ IToolbarInteractiveControl
48270
48504
  {
48271
48505
  __implements__sap_ui_core_IShrinkable: boolean;
48272
48506
  __implements__sap_ui_core_IFormContent: boolean;
@@ -54321,7 +54555,7 @@ declare module "sap/m/MaskInputRule" {
54321
54555
  declare module "sap/m/Menu" {
54322
54556
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
54323
54557
 
54324
- import { IContextMenu, Dock } from "sap/ui/core/library";
54558
+ import { IContextMenu } from "sap/ui/core/library";
54325
54559
 
54326
54560
  import { IMenuItem } from "sap/m/library";
54327
54561
 
@@ -54336,6 +54570,8 @@ declare module "sap/m/Menu" {
54336
54570
 
54337
54571
  import UI5Element from "sap/ui/core/Element";
54338
54572
 
54573
+ import Popup from "sap/ui/core/Popup";
54574
+
54339
54575
  import MenuItem from "sap/m/MenuItem";
54340
54576
 
54341
54577
  /**
@@ -54788,11 +55024,11 @@ declare module "sap/m/Menu" {
54788
55024
  /**
54789
55025
  * The reference docking location of the `Menu` for positioning the menu on the screen
54790
55026
  */
54791
- sDockMy?: Dock,
55027
+ sDockMy?: typeof Popup.Dock | keyof typeof Popup.Dock,
54792
55028
  /**
54793
55029
  * The `oControl` reference docking location for positioning the menu on the screen
54794
55030
  */
54795
- sDockAt?: Dock,
55031
+ sDockAt?: typeof Popup.Dock | keyof typeof Popup.Dock,
54796
55032
  /**
54797
55033
  * The offset relative to the docking point, specified as a string with space-separated pixel values (e.g.
54798
55034
  * "0 10" to move the popup 10 pixels to the right). If the docking of both "my" and "at" is RTL-sensitive
@@ -54919,12 +55155,16 @@ declare module "sap/m/Menu" {
54919
55155
  declare module "sap/m/MenuButton" {
54920
55156
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
54921
55157
 
55158
+ import {
55159
+ IToolbarInteractiveControl,
55160
+ MenuButtonMode,
55161
+ ButtonType,
55162
+ } from "sap/m/library";
55163
+
54922
55164
  import { ID, URI, TextDirection, CSSSize } from "sap/ui/core/library";
54923
55165
 
54924
55166
  import Event from "sap/ui/base/Event";
54925
55167
 
54926
- import { MenuButtonMode, ButtonType } from "sap/m/library";
54927
-
54928
55168
  import Menu from "sap/m/Menu";
54929
55169
 
54930
55170
  import Popup from "sap/ui/core/Popup";
@@ -54940,7 +55180,7 @@ declare module "sap/m/MenuButton" {
54940
55180
  */
54941
55181
  export default class MenuButton
54942
55182
  extends Control
54943
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
55183
+ implements IToolbarInteractiveControl
54944
55184
  {
54945
55185
  __implements__sap_m_IToolbarInteractiveControl: boolean;
54946
55186
  /**
@@ -55532,7 +55772,7 @@ declare module "sap/m/MenuButton" {
55532
55772
  /**
55533
55773
  * New value for property `menuPosition`
55534
55774
  */
55535
- sMenuPosition?: typeof Popup.Dock
55775
+ sMenuPosition?: typeof Popup.Dock | keyof typeof Popup.Dock
55536
55776
  ): this;
55537
55777
  /**
55538
55778
  * Sets a new value for property {@link #getText text}.
@@ -55723,7 +55963,10 @@ declare module "sap/m/MenuButton" {
55723
55963
  *
55724
55964
  * @since 1.56.0
55725
55965
  */
55726
- menuPosition?: typeof Popup.Dock | PropertyBindingInfo | `{${string}}`;
55966
+ menuPosition?:
55967
+ | (typeof Popup.Dock | keyof typeof Popup.Dock)
55968
+ | PropertyBindingInfo
55969
+ | `{${string}}`;
55727
55970
 
55728
55971
  /**
55729
55972
  * Controls whether the default action handler is invoked always or it is invoked only until a menu item
@@ -61237,12 +61480,12 @@ declare module "sap/m/MessageToast" {
61237
61480
  * Specifies which point of the message toast should be aligned (e.g. `Dock.LeftTop` To use as align point
61238
61481
  * the left top corner of the message toast).
61239
61482
  */
61240
- my?: typeof Popup.Dock;
61483
+ my?: typeof Popup.Dock | keyof typeof Popup.Dock;
61241
61484
  /**
61242
61485
  * Specifies the point of the reference element to which the message toast should be aligned (e.g. `Dock.RightBottom`
61243
61486
  * To position the message toast according to the bottom right corner of the reference element).
61244
61487
  */
61245
- at?: typeof Popup.Dock;
61488
+ at?: typeof Popup.Dock | keyof typeof Popup.Dock;
61246
61489
  /**
61247
61490
  * Specifies the reference element to which the message toast should be aligned, by default it is aligned
61248
61491
  * to the browser visual viewport.
@@ -62958,8 +63201,8 @@ declare module "sap/m/MultiInput" {
62958
63201
  * When not to use::
62959
63202
  * - When you need to select only one value.
62960
63203
  * - When you want the user to select from a predefined set of options. Use {@link sap.m.MultiComboBox }
62961
- * instead. Responsive Behavior: If there are many tokens, the control shows only the last selected
62962
- * tokens that fit and for the others a label N-more is provided. In case the length of the last
63204
+ * instead. Responsive Behavior: If there are many tokens, the control shows only the first selected
63205
+ * tokens that fit and for the others a label N-more is provided. In case the length of the first
62963
63206
  * selected token is exceeding the width of the control, only a label N-Items is shown. In both cases,
62964
63207
  * pressing on the label will show the tokens in a popup. On Phones:
62965
63208
  * - Only the last entered token is displayed.
@@ -74239,7 +74482,10 @@ declare module "sap/m/OverflowToolbarButton" {
74239
74482
 
74240
74483
  import { IShellBar } from "sap/f/library";
74241
74484
 
74242
- import { IOverflowToolbarContent } from "sap/m/library";
74485
+ import {
74486
+ IOverflowToolbarContent,
74487
+ IToolbarInteractiveControl,
74488
+ } from "sap/m/library";
74243
74489
 
74244
74490
  import ElementMetadata from "sap/ui/core/ElementMetadata";
74245
74491
 
@@ -74254,10 +74500,7 @@ declare module "sap/m/OverflowToolbarButton" {
74254
74500
  */
74255
74501
  export default class OverflowToolbarButton
74256
74502
  extends Button
74257
- implements
74258
- IShellBar,
74259
- IOverflowToolbarContent,
74260
- /* was: sap.m.IToolbarInteractiveControl */ Object
74503
+ implements IShellBar, IOverflowToolbarContent, IToolbarInteractiveControl
74261
74504
  {
74262
74505
  __implements__sap_f_IShellBar: boolean;
74263
74506
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -75780,6 +76023,15 @@ declare module "sap/m/p13n/MetadataHelper" {
75780
76023
  */
75781
76024
  sKey: string
75782
76025
  ): MetadataObject | undefined;
76026
+ /**
76027
+ * Gets a list of properties that are redundant and should be filtered out in the {@link sap.ui.mdc.p13n.SelectionController }
76028
+ * for personalization.
76029
+ *
76030
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
76031
+ *
76032
+ * @returns A list of properties
76033
+ */
76034
+ getRedundantProperties(): object[];
75783
76035
  }
75784
76036
  /**
75785
76037
  * Personalization `MetadataObject` type.
@@ -76160,6 +76412,10 @@ declare module "sap/m/p13n/Popup" {
76160
76412
  * Width configuration for the related popup container
76161
76413
  */
76162
76414
  contentWidth?: CSSSize;
76415
+ /**
76416
+ * Key of active panel that is opened initially
76417
+ */
76418
+ activePanel?: string;
76163
76419
  }
76164
76420
  ): void;
76165
76421
  /**
@@ -89626,27 +89882,17 @@ declare module "sap/m/PlanningCalendar" {
89626
89882
  | keyof typeof CalendarAppointmentRoundWidth
89627
89883
  ): this;
89628
89884
  /**
89629
- * Sets a new value for property {@link #getAppointmentsReducedHeight appointmentsReducedHeight}.
89630
- *
89631
- * Determines whether the appointments that have only title without text are rendered with smaller height.
89885
+ * Set the appointment reduced height property to the appointments in the calendar
89632
89886
  *
89633
- * **Note:** On phone devices this property is ignored, appointments are always rendered in full height
89634
- * to facilitate touching.
89635
- *
89636
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
89637
- *
89638
- * Default value is `false`.
89639
- *
89640
- * @since 1.38.0
89641
89887
  * @deprecated As of version 1.119. Please use the `appointmentHeight` with value "Automatic" property instead.
89642
89888
  *
89643
- * @returns Reference to `this` in order to allow method chaining
89889
+ * @returns Reference to `this` for method chaining
89644
89890
  */
89645
89891
  setAppointmentsReducedHeight(
89646
89892
  /**
89647
- * New value for property `appointmentsReducedHeight`
89893
+ * if set to true, the appointments will have a reduced height
89648
89894
  */
89649
- bAppointmentsReducedHeight?: boolean
89895
+ bAppointmentsReducedHeight: boolean
89650
89896
  ): this;
89651
89897
  /**
89652
89898
  * Sets a new value for property {@link #getAppointmentsVisualization appointmentsVisualization}.
@@ -93653,6 +93899,206 @@ declare module "sap/m/plugins/CellSelector" {
93653
93899
  >;
93654
93900
  }
93655
93901
 
93902
+ declare module "sap/m/plugins/ColumnAIAction" {
93903
+ import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
93904
+
93905
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
93906
+
93907
+ import Control from "sap/ui/core/Control";
93908
+
93909
+ import Event from "sap/ui/base/Event";
93910
+
93911
+ /**
93912
+ * This plugin adds an AI related action to a table column.
93913
+ *
93914
+ * @since 1.136
93915
+ */
93916
+ export default class ColumnAIAction extends UI5Element {
93917
+ /**
93918
+ * Constructor for a new `ColumnAIAction` plugin that can be used to add an AI related action for table
93919
+ * columns.
93920
+ *
93921
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
93922
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
93923
+ * of the syntax of the settings object.
93924
+ */
93925
+ constructor(
93926
+ /**
93927
+ * Initial settings for the `ColumnAIAction`
93928
+ */
93929
+ mSettings?: $ColumnAIActionSettings
93930
+ );
93931
+ /**
93932
+ * Constructor for a new `ColumnAIAction` plugin that can be used to add an AI related action for table
93933
+ * columns.
93934
+ *
93935
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
93936
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
93937
+ * of the syntax of the settings object.
93938
+ */
93939
+ constructor(
93940
+ /**
93941
+ * ID for the new `ColumnAIAction`, generated automatically if no ID is given
93942
+ */
93943
+ sId?: string,
93944
+ /**
93945
+ * Initial settings for the `ColumnAIAction`
93946
+ */
93947
+ mSettings?: $ColumnAIActionSettings
93948
+ );
93949
+
93950
+ /**
93951
+ * Creates a new subclass of class sap.m.plugins.ColumnAIAction with name `sClassName` and enriches it with
93952
+ * the information contained in `oClassInfo`.
93953
+ *
93954
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
93955
+ *
93956
+ *
93957
+ * @returns Created class / constructor function
93958
+ */
93959
+ static extend<T extends Record<string, unknown>>(
93960
+ /**
93961
+ * Name of the class being created
93962
+ */
93963
+ sClassName: string,
93964
+ /**
93965
+ * Object literal with information about the class
93966
+ */
93967
+ oClassInfo?: sap.ClassInfo<T, ColumnAIAction>,
93968
+ /**
93969
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
93970
+ * used by this class
93971
+ */
93972
+ FNMetaImpl?: Function
93973
+ ): Function;
93974
+ /**
93975
+ * Searches a plugin of the corresponding type in the aggregations of the given `Element` instance. The
93976
+ * first plugin that is found is returned.
93977
+ *
93978
+ *
93979
+ * @returns The found plugin instance or `undefined` if not found
93980
+ */
93981
+ static findOn(
93982
+ /**
93983
+ * The `Element` instance to check for
93984
+ */
93985
+ oElement: UI5Element
93986
+ ): UI5Element | undefined;
93987
+ /**
93988
+ * Returns a metadata object for class sap.m.plugins.ColumnAIAction.
93989
+ *
93990
+ *
93991
+ * @returns Metadata object describing this class
93992
+ */
93993
+ static getMetadata(): ElementMetadata;
93994
+ /**
93995
+ * Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.m.plugins.ColumnAIAction`.
93996
+ *
93997
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
93998
+ * otherwise it will be bound to this `sap.m.plugins.ColumnAIAction` itself.
93999
+ *
94000
+ * Fired when the AI action is pressed.
94001
+ *
94002
+ *
94003
+ * @returns Reference to `this` in order to allow method chaining
94004
+ */
94005
+ attachPress(
94006
+ /**
94007
+ * An application-specific payload object that will be passed to the event handler along with the event
94008
+ * object when firing the event
94009
+ */
94010
+ oData: object,
94011
+ /**
94012
+ * The function to be called when the event occurs
94013
+ */
94014
+ fnFunction: (p1: ColumnAIAction$PressEvent) => void,
94015
+ /**
94016
+ * Context object to call the event handler with. Defaults to this `sap.m.plugins.ColumnAIAction` itself
94017
+ */
94018
+ oListener?: object
94019
+ ): this;
94020
+ /**
94021
+ * Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.m.plugins.ColumnAIAction`.
94022
+ *
94023
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
94024
+ * otherwise it will be bound to this `sap.m.plugins.ColumnAIAction` itself.
94025
+ *
94026
+ * Fired when the AI action is pressed.
94027
+ *
94028
+ *
94029
+ * @returns Reference to `this` in order to allow method chaining
94030
+ */
94031
+ attachPress(
94032
+ /**
94033
+ * The function to be called when the event occurs
94034
+ */
94035
+ fnFunction: (p1: ColumnAIAction$PressEvent) => void,
94036
+ /**
94037
+ * Context object to call the event handler with. Defaults to this `sap.m.plugins.ColumnAIAction` itself
94038
+ */
94039
+ oListener?: object
94040
+ ): this;
94041
+ /**
94042
+ * Detaches event handler `fnFunction` from the {@link #event:press press} event of this `sap.m.plugins.ColumnAIAction`.
94043
+ *
94044
+ * The passed function and listener object must match the ones used for event registration.
94045
+ *
94046
+ *
94047
+ * @returns Reference to `this` in order to allow method chaining
94048
+ */
94049
+ detachPress(
94050
+ /**
94051
+ * The function to be called, when the event occurs
94052
+ */
94053
+ fnFunction: (p1: ColumnAIAction$PressEvent) => void,
94054
+ /**
94055
+ * Context object on which the given function had to be called
94056
+ */
94057
+ oListener?: object
94058
+ ): this;
94059
+ /**
94060
+ * Fires event {@link #event:press press} to attached listeners.
94061
+ *
94062
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
94063
+ *
94064
+ * @returns Reference to `this` in order to allow method chaining
94065
+ */
94066
+ firePress(
94067
+ /**
94068
+ * Parameters to pass along with the event
94069
+ */
94070
+ mParameters?: ColumnAIAction$PressEventParameters
94071
+ ): this;
94072
+ }
94073
+ /**
94074
+ * Describes the settings that can be provided to the ColumnAIAction constructor.
94075
+ */
94076
+ export interface $ColumnAIActionSettings extends $ElementSettings {
94077
+ /**
94078
+ * Fired when the AI action is pressed.
94079
+ */
94080
+ press?: (oEvent: ColumnAIAction$PressEvent) => void;
94081
+ }
94082
+
94083
+ /**
94084
+ * Parameters of the ColumnAIAction#press event.
94085
+ */
94086
+ export interface ColumnAIAction$PressEventParameters {
94087
+ /**
94088
+ * The column action that triggered the event.
94089
+ */
94090
+ action?: Control;
94091
+ }
94092
+
94093
+ /**
94094
+ * Event object of the ColumnAIAction#press event.
94095
+ */
94096
+ export type ColumnAIAction$PressEvent = Event<
94097
+ ColumnAIAction$PressEventParameters,
94098
+ ColumnAIAction
94099
+ >;
94100
+ }
94101
+
93656
94102
  declare module "sap/m/plugins/ColumnResizer" {
93657
94103
  import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
93658
94104
 
@@ -96654,6 +97100,24 @@ declare module "sap/m/plugins/UploadSetwithTable" {
96654
97100
  * @returns Value of property `directory`
96655
97101
  */
96656
97102
  getDirectory(): boolean;
97103
+ /**
97104
+ * Gets current value of property {@link #getFileNameValidationConfig fileNameValidationConfig}.
97105
+ *
97106
+ * File name validation configuration.
97107
+ * Set this property to configure the file name validation characters and the validation mode.
97108
+ * This configuration is used to validate the file name when a file is selected for renaming.
97109
+ * For the plugin to pick up this configuration, mode and characters of the property must be set to validate
97110
+ * the file name.
97111
+ * see {@link sap.m.plugins.UploadSetwithTable.FilenameValidationConfigMode mode} to configure the file
97112
+ * name validation mode.
97113
+ *
97114
+ * The default restricted filename character set is: \:/*?"<>|[]{}@#$
97115
+ *
97116
+ * @since 1.136
97117
+ *
97118
+ * @returns Value of property `fileNameValidationConfig`
97119
+ */
97120
+ getFileNameValidationConfig(): FilenameValidationConfig;
96657
97121
  /**
96658
97122
  * Gets current value of property {@link #getFileTypes fileTypes}.
96659
97123
  *
@@ -96965,6 +97429,31 @@ declare module "sap/m/plugins/UploadSetwithTable" {
96965
97429
  */
96966
97430
  bDirectory?: boolean
96967
97431
  ): this;
97432
+ /**
97433
+ * Sets a new value for property {@link #getFileNameValidationConfig fileNameValidationConfig}.
97434
+ *
97435
+ * File name validation configuration.
97436
+ * Set this property to configure the file name validation characters and the validation mode.
97437
+ * This configuration is used to validate the file name when a file is selected for renaming.
97438
+ * For the plugin to pick up this configuration, mode and characters of the property must be set to validate
97439
+ * the file name.
97440
+ * see {@link sap.m.plugins.UploadSetwithTable.FilenameValidationConfigMode mode} to configure the file
97441
+ * name validation mode.
97442
+ *
97443
+ * The default restricted filename character set is: \:/*?"<>|[]{}@#$
97444
+ *
97445
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
97446
+ *
97447
+ * @since 1.136
97448
+ *
97449
+ * @returns Reference to `this` in order to allow method chaining
97450
+ */
97451
+ setFileNameValidationConfig(
97452
+ /**
97453
+ * New value for property `fileNameValidationConfig`
97454
+ */
97455
+ sFileNameValidationConfig?: FilenameValidationConfig
97456
+ ): this;
96968
97457
  /**
96969
97458
  * Sets a new value for property {@link #getFileTypes fileTypes}.
96970
97459
  *
@@ -97227,6 +97716,43 @@ declare module "sap/m/plugins/UploadSetwithTable" {
97227
97716
  oPromise: Promise<any>
97228
97717
  ): UploadItem;
97229
97718
  }
97719
+ /**
97720
+ * This property type is used to define the file name validation configuration. Object is passed to {@link sap.m.plugins.UploadSetwithTable fileNameValidationConfig property}
97721
+ */
97722
+ export type FilenameValidationConfig = {
97723
+ /**
97724
+ * The file name validation config mode.
97725
+ */
97726
+ mode: FilenameValidationConfigMode;
97727
+ /**
97728
+ * The file name validation configuration characters.
97729
+ *
97730
+ * The default restricted filename character set is: \:/*?"<>|[]{}@#$
97731
+ */
97732
+ characters: string;
97733
+ };
97734
+
97735
+ /**
97736
+ * Key property of {@link sap.m.plugins.UploadSetwithTable.FilenameValidationConfig FileNameValidationConfig}.
97737
+ * Used to determine the mode for file name validation.
97738
+ *
97739
+ * @since 1.136
97740
+ */
97741
+ export type FilenameValidationConfigMode = {
97742
+ /**
97743
+ * The file name validation mode. The allowed values are 'include', 'exclude', or 'override'.
97744
+ *
97745
+ * If the mode is 'include', the specified characters are added to the default restricted character set.
97746
+ *
97747
+ * If the mode is 'exclude', the specified characters are excluded from the default resrtricted character
97748
+ * set.
97749
+ * If the mode is 'override', the specified characters replace the entire default restricted character
97750
+ * set.
97751
+ * If the mode is not set, the default restricted file name character set is used.
97752
+ */
97753
+ mode: string;
97754
+ };
97755
+
97230
97756
  /**
97231
97757
  * Item info object sent as paramter to {@link sap.m.plugins.UploadSetwithTable.itemValidationHandler itemValidationHandler callback}
97232
97758
  */
@@ -97343,6 +97869,24 @@ declare module "sap/m/plugins/UploadSetwithTable" {
97343
97869
  */
97344
97870
  cloudFilePickerButtonText?: string | PropertyBindingInfo;
97345
97871
 
97872
+ /**
97873
+ * File name validation configuration.
97874
+ * Set this property to configure the file name validation characters and the validation mode.
97875
+ * This configuration is used to validate the file name when a file is selected for renaming.
97876
+ * For the plugin to pick up this configuration, mode and characters of the property must be set to validate
97877
+ * the file name.
97878
+ * see {@link sap.m.plugins.UploadSetwithTable.FilenameValidationConfigMode mode} to configure the file
97879
+ * name validation mode.
97880
+ *
97881
+ * The default restricted filename character set is: \:/*?"<>|[]{}@#$
97882
+ *
97883
+ * @since 1.136
97884
+ */
97885
+ fileNameValidationConfig?:
97886
+ | FilenameValidationConfig
97887
+ | PropertyBindingInfo
97888
+ | `{${string}}`;
97889
+
97346
97890
  /**
97347
97891
  * Defines the uploader to be used. If not specified, the default implementation is used.
97348
97892
  */
@@ -102796,9 +103340,9 @@ declare module "sap/m/RadioButton" {
102796
103340
  CSSSize,
102797
103341
  } from "sap/ui/core/library";
102798
103342
 
102799
- import ElementMetadata from "sap/ui/core/ElementMetadata";
103343
+ import { IToolbarInteractiveControl, WrappingType } from "sap/m/library";
102800
103344
 
102801
- import { WrappingType } from "sap/m/library";
103345
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
102802
103346
 
102803
103347
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
102804
103348
 
@@ -102839,7 +103383,7 @@ declare module "sap/m/RadioButton" {
102839
103383
  */
102840
103384
  export default class RadioButton
102841
103385
  extends Control
102842
- implements IFormContent, /* was: sap.m.IToolbarInteractiveControl */ Object
103386
+ implements IFormContent, IToolbarInteractiveControl
102843
103387
  {
102844
103388
  __implements__sap_ui_core_IFormContent: boolean;
102845
103389
  __implements__sap_m_IToolbarInteractiveControl: boolean;
@@ -108243,6 +108787,8 @@ declare module "sap/m/SearchField" {
108243
108787
 
108244
108788
  import { IShellBar } from "sap/f/library";
108245
108789
 
108790
+ import { IToolbarInteractiveControl } from "sap/m/library";
108791
+
108246
108792
  import SuggestionItem from "sap/m/SuggestionItem";
108247
108793
 
108248
108794
  import {
@@ -108272,10 +108818,7 @@ declare module "sap/m/SearchField" {
108272
108818
  */
108273
108819
  export default class SearchField
108274
108820
  extends Control
108275
- implements
108276
- IFormContent,
108277
- IShellBar,
108278
- /* was: sap.m.IToolbarInteractiveControl */ Object
108821
+ implements IFormContent, IShellBar, IToolbarInteractiveControl
108279
108822
  {
108280
108823
  __implements__sap_ui_core_IFormContent: boolean;
108281
108824
  __implements__sap_f_IShellBar: boolean;
@@ -109518,7 +110061,10 @@ declare module "sap/m/SegmentedButton" {
109518
110061
  CSSSize,
109519
110062
  } from "sap/ui/core/library";
109520
110063
 
109521
- import { IOverflowToolbarContent } from "sap/m/library";
110064
+ import {
110065
+ IOverflowToolbarContent,
110066
+ IToolbarInteractiveControl,
110067
+ } from "sap/m/library";
109522
110068
 
109523
110069
  import Button from "sap/m/Button";
109524
110070
 
@@ -109544,10 +110090,7 @@ declare module "sap/m/SegmentedButton" {
109544
110090
  */
109545
110091
  export default class SegmentedButton
109546
110092
  extends Control
109547
- implements
109548
- IFormContent,
109549
- IOverflowToolbarContent,
109550
- /* was: sap.m.IToolbarInteractiveControl */ Object
110093
+ implements IFormContent, IOverflowToolbarContent, IToolbarInteractiveControl
109551
110094
  {
109552
110095
  __implements__sap_ui_core_IFormContent: boolean;
109553
110096
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -110691,6 +111234,7 @@ declare module "sap/m/Select" {
110691
111234
 
110692
111235
  import {
110693
111236
  IOverflowToolbarContent,
111237
+ IToolbarInteractiveControl,
110694
111238
  SelectColumnRatio,
110695
111239
  OverflowToolbarConfig,
110696
111240
  SelectType,
@@ -110719,7 +111263,7 @@ declare module "sap/m/Select" {
110719
111263
  ISemanticFormContent,
110720
111264
  ILabelable,
110721
111265
  IOverflowToolbarContent,
110722
- /* was: sap.m.IToolbarInteractiveControl */ Object,
111266
+ IToolbarInteractiveControl,
110723
111267
  IShellBar
110724
111268
  {
110725
111269
  __implements__sap_ui_core_IFormContent: boolean;
@@ -129161,14 +129705,14 @@ declare module "sap/m/Slider" {
129161
129705
  CSSSize,
129162
129706
  } from "sap/ui/core/library";
129163
129707
 
129708
+ import { IToolbarInteractiveControl, IScale } from "sap/m/library";
129709
+
129164
129710
  import SliderTooltipBase from "sap/m/SliderTooltipBase";
129165
129711
 
129166
129712
  import UI5Element from "sap/ui/core/Element";
129167
129713
 
129168
129714
  import ElementMetadata from "sap/ui/core/ElementMetadata";
129169
129715
 
129170
- import { IScale } from "sap/m/library";
129171
-
129172
129716
  import {
129173
129717
  PropertyBindingInfo,
129174
129718
  AggregationBindingInfo,
@@ -129218,10 +129762,7 @@ declare module "sap/m/Slider" {
129218
129762
  */
129219
129763
  export default class Slider
129220
129764
  extends Control
129221
- implements
129222
- IFormContent,
129223
- ISemanticFormContent,
129224
- /* was: sap.m.IToolbarInteractiveControl */ Object
129765
+ implements IFormContent, ISemanticFormContent, IToolbarInteractiveControl
129225
129766
  {
129226
129767
  __implements__sap_ui_core_IFormContent: boolean;
129227
129768
  __implements__sap_ui_core_ISemanticFormContent: boolean;
@@ -136057,7 +136598,11 @@ declare module "sap/m/Switch" {
136057
136598
 
136058
136599
  import { IFormContent, ID } from "sap/ui/core/library";
136059
136600
 
136060
- import { IOverflowToolbarContent, SwitchType } from "sap/m/library";
136601
+ import {
136602
+ IOverflowToolbarContent,
136603
+ IToolbarInteractiveControl,
136604
+ SwitchType,
136605
+ } from "sap/m/library";
136061
136606
 
136062
136607
  import ElementMetadata from "sap/ui/core/ElementMetadata";
136063
136608
 
@@ -136071,10 +136616,7 @@ declare module "sap/m/Switch" {
136071
136616
  */
136072
136617
  export default class Switch
136073
136618
  extends Control
136074
- implements
136075
- IFormContent,
136076
- IOverflowToolbarContent,
136077
- /* was: sap.m.IToolbarInteractiveControl */ Object
136619
+ implements IFormContent, IOverflowToolbarContent, IToolbarInteractiveControl
136078
136620
  {
136079
136621
  __implements__sap_ui_core_IFormContent: boolean;
136080
136622
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -145108,9 +145650,13 @@ declare module "sap/m/Text" {
145108
145650
  CSSSize,
145109
145651
  } from "sap/ui/core/library";
145110
145652
 
145111
- import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
145653
+ import {
145654
+ IToolbarInteractiveControl,
145655
+ EmptyIndicatorMode,
145656
+ WrappingType,
145657
+ } from "sap/m/library";
145112
145658
 
145113
- import { EmptyIndicatorMode, WrappingType } from "sap/m/library";
145659
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
145114
145660
 
145115
145661
  import ElementMetadata from "sap/ui/core/ElementMetadata";
145116
145662
 
@@ -145131,7 +145677,7 @@ declare module "sap/m/Text" {
145131
145677
  IFormContent,
145132
145678
  ISemanticFormContent,
145133
145679
  ILabelable,
145134
- /* was: sap.m.IToolbarInteractiveControl */ Object
145680
+ IToolbarInteractiveControl
145135
145681
  {
145136
145682
  __implements__sap_ui_core_IShrinkable: boolean;
145137
145683
  __implements__sap_ui_core_IFormContent: boolean;
@@ -147574,7 +148120,8 @@ declare module "sap/m/TileContent" {
147574
148120
  /**
147575
148121
  * Gets current value of property {@link #getPriority priority}.
147576
148122
  *
147577
- * Adds a priority badge before the content. Works only in Generic Tile ActionMode.
148123
+ * Adds a priority badge before the content. Works only in Generic Tiles in ActionMode or Article Mode containing
148124
+ * NewsContent.
147578
148125
  *
147579
148126
  * Default value is `None`.
147580
148127
  *
@@ -147586,7 +148133,8 @@ declare module "sap/m/TileContent" {
147586
148133
  /**
147587
148134
  * Gets current value of property {@link #getPriorityText priorityText}.
147588
148135
  *
147589
- * Sets the Text inside the Priority badge in Generic Tile ActionMode.
148136
+ * Sets the Text inside the Priority badge in Generic Tile. Works only in Generic Tiles in ActionMode or
148137
+ * Article Mode containing NewsContent.
147590
148138
  *
147591
148139
  * @since 1.103
147592
148140
  *
@@ -147712,40 +148260,28 @@ declare module "sap/m/TileContent" {
147712
148260
  sFrameType?: FrameType | keyof typeof FrameType
147713
148261
  ): this;
147714
148262
  /**
147715
- * Sets a new value for property {@link #getPriority priority}.
148263
+ * Sets the priority of the tile content.
147716
148264
  *
147717
- * Adds a priority badge before the content. Works only in Generic Tile ActionMode.
147718
148265
  *
147719
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
147720
- *
147721
- * Default value is `None`.
147722
- *
147723
- * @since 1.96
147724
- *
147725
- * @returns Reference to `this` in order to allow method chaining
148266
+ * @returns Reference to the current instance for method chaining.
147726
148267
  */
147727
148268
  setPriority(
147728
148269
  /**
147729
- * New value for property `priority`
148270
+ * The priority level.
147730
148271
  */
147731
- sPriority?: Priority | keyof typeof Priority
148272
+ sPriority: Priority | keyof typeof Priority
147732
148273
  ): this;
147733
148274
  /**
147734
- * Sets a new value for property {@link #getPriorityText priorityText}.
147735
- *
147736
- * Sets the Text inside the Priority badge in Generic Tile ActionMode.
147737
- *
147738
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
148275
+ * Sets the text for the priority badge.
147739
148276
  *
147740
- * @since 1.103
147741
148277
  *
147742
- * @returns Reference to `this` in order to allow method chaining
148278
+ * @returns Reference to the current instance for method chaining.
147743
148279
  */
147744
148280
  setPriorityText(
147745
148281
  /**
147746
- * New value for property `priorityText`
148282
+ * The text to be displayed on the badge.
147747
148283
  */
147748
- sPriorityText?: string
148284
+ sPriorityText: string
147749
148285
  ): this;
147750
148286
  /**
147751
148287
  * Setter for protected property to enable or disable content rendering. This function does not invalidate
@@ -147886,7 +148422,8 @@ declare module "sap/m/TileContent" {
147886
148422
  | `{${string}}`;
147887
148423
 
147888
148424
  /**
147889
- * Adds a priority badge before the content. Works only in Generic Tile ActionMode.
148425
+ * Adds a priority badge before the content. Works only in Generic Tiles in ActionMode or Article Mode containing
148426
+ * NewsContent.
147890
148427
  *
147891
148428
  * @since 1.96
147892
148429
  */
@@ -147896,7 +148433,8 @@ declare module "sap/m/TileContent" {
147896
148433
  | `{${string}}`;
147897
148434
 
147898
148435
  /**
147899
- * Sets the Text inside the Priority badge in Generic Tile ActionMode.
148436
+ * Sets the Text inside the Priority badge in Generic Tile. Works only in Generic Tiles in ActionMode or
148437
+ * Article Mode containing NewsContent.
147900
148438
  *
147901
148439
  * @since 1.103
147902
148440
  */
@@ -150149,9 +150687,9 @@ declare module "sap/m/Title" {
150149
150687
  CSSSize,
150150
150688
  } from "sap/ui/core/library";
150151
150689
 
150152
- import ElementMetadata from "sap/ui/core/ElementMetadata";
150690
+ import { IToolbarInteractiveControl, WrappingType } from "sap/m/library";
150153
150691
 
150154
- import { WrappingType } from "sap/m/library";
150692
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
150155
150693
 
150156
150694
  import Title1 from "sap/ui/core/Title";
150157
150695
 
@@ -150187,7 +150725,7 @@ declare module "sap/m/Title" {
150187
150725
  */
150188
150726
  export default class Title
150189
150727
  extends Control
150190
- implements IShrinkable, /* was: sap.m.IToolbarInteractiveControl */ Object
150728
+ implements IShrinkable, IToolbarInteractiveControl
150191
150729
  {
150192
150730
  __implements__sap_ui_core_IShrinkable: boolean;
150193
150731
  __implements__sap_m_IToolbarInteractiveControl: boolean;
@@ -150714,6 +151252,8 @@ declare module "sap/m/ToggleButton" {
150714
151252
  Button$PressEventParameters,
150715
151253
  } from "sap/m/Button";
150716
151254
 
151255
+ import { IToolbarInteractiveControl } from "sap/m/library";
151256
+
150717
151257
  import { AccessibilityInfo } from "sap/ui/core/library";
150718
151258
 
150719
151259
  import ElementMetadata from "sap/ui/core/ElementMetadata";
@@ -150730,7 +151270,7 @@ declare module "sap/m/ToggleButton" {
150730
151270
  */
150731
151271
  export default class ToggleButton
150732
151272
  extends Button
150733
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
151273
+ implements IToolbarInteractiveControl
150734
151274
  {
150735
151275
  __implements__sap_m_IToolbarInteractiveControl: boolean;
150736
151276
  /**
@@ -151847,6 +152387,12 @@ declare module "sap/m/Tokenizer" {
151847
152387
  */
151848
152388
  fValidator: Function
151849
152389
  ): void;
152390
+ /**
152391
+ * Function to execute after the n-more popover is closed.
152392
+ *
152393
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
152394
+ */
152395
+ afterPopupClose(): void;
151850
152396
  /**
151851
152397
  * Attaches event handler `fnFunction` to the {@link #event:renderModeChange renderModeChange} event of
151852
152398
  * this `sap.m.Tokenizer`.
@@ -154915,6 +155461,64 @@ declare module "sap/m/upload/FilePreviewDialog" {
154915
155461
  * Control by default adds two buttons (download and close).
154916
155462
  */
154917
155463
  getAdditionalFooterButtons(): Button[];
155464
+ /**
155465
+ * Gets current value of property {@link #getCustomPageContentHandler customPageContentHandler}.
155466
+ *
155467
+ * Callback function to insert custom content into the preview dialog using a control to display the preview
155468
+ * of unsupported file types.
155469
+ * Use this property as callback function to insert a control with the content into the preview dialog.
155470
+ *
155471
+ * Callback function returns a promise that resolves with a control that is displayed in the preview dialog.
155472
+ * Reject the promise to display the default illustrated message.
155473
+ * Callback function is invoked with {@link sap.m.upload.UploadItem item} for each unsupported file type.
155474
+ *
155475
+ *
155476
+ * Example: There is a file with an xml extension and you want to display the content inside a codeeditor
155477
+ * control for the file type.
155478
+ *
155479
+ *
155480
+ * ```javascript
155481
+ *
155482
+ * <UploadSetwithTable>
155483
+ * <upload:FilePreviewDialog customPageContentHandler="{onCustomContentHandler}"></upload:FilePreviewDialog>
155484
+ * </UploadSetwithTable>
155485
+ * ```
155486
+ *
155487
+ *
155488
+ *
155489
+ * ```javascript
155490
+ *
155491
+ * onCustomContentHandler: function(oItem) {
155492
+ *
155493
+ * return new Promise(function(resolve, reject) {
155494
+ *
155495
+ * switch (oItem.getMediaType().toLowerCase()) {
155496
+ *
155497
+ * case "application/xml":
155498
+ *
155499
+ * var oCodeEditor = new CodeEditor({
155500
+ * value: "XML content",
155501
+ * width: "100%",
155502
+ * height: "100%"
155503
+ * });
155504
+ *
155505
+ * resolve(oCodeEditor);
155506
+ * break;
155507
+ *
155508
+ * default:
155509
+ * reject(); // reject the promise to display the default illustrated message.
155510
+ * break;
155511
+ * }
155512
+ * });
155513
+ * }
155514
+ * ```
155515
+ *
155516
+ *
155517
+ * @since 1.136
155518
+ *
155519
+ * @returns Value of property `customPageContentHandler`
155520
+ */
155521
+ getCustomPageContentHandler(): Function;
154918
155522
  /**
154919
155523
  * Gets current value of property {@link #getMaxFileSizeforPreview maxFileSizeforPreview}.
154920
155524
  *
@@ -154988,6 +155592,71 @@ declare module "sap/m/upload/FilePreviewDialog" {
154988
155592
  * @returns An array of the removed elements (might be empty)
154989
155593
  */
154990
155594
  removeAllAdditionalFooterButtons(): Button[];
155595
+ /**
155596
+ * Sets a new value for property {@link #getCustomPageContentHandler customPageContentHandler}.
155597
+ *
155598
+ * Callback function to insert custom content into the preview dialog using a control to display the preview
155599
+ * of unsupported file types.
155600
+ * Use this property as callback function to insert a control with the content into the preview dialog.
155601
+ *
155602
+ * Callback function returns a promise that resolves with a control that is displayed in the preview dialog.
155603
+ * Reject the promise to display the default illustrated message.
155604
+ * Callback function is invoked with {@link sap.m.upload.UploadItem item} for each unsupported file type.
155605
+ *
155606
+ *
155607
+ * Example: There is a file with an xml extension and you want to display the content inside a codeeditor
155608
+ * control for the file type.
155609
+ *
155610
+ *
155611
+ * ```javascript
155612
+ *
155613
+ * <UploadSetwithTable>
155614
+ * <upload:FilePreviewDialog customPageContentHandler="{onCustomContentHandler}"></upload:FilePreviewDialog>
155615
+ * </UploadSetwithTable>
155616
+ * ```
155617
+ *
155618
+ *
155619
+ *
155620
+ * ```javascript
155621
+ *
155622
+ * onCustomContentHandler: function(oItem) {
155623
+ *
155624
+ * return new Promise(function(resolve, reject) {
155625
+ *
155626
+ * switch (oItem.getMediaType().toLowerCase()) {
155627
+ *
155628
+ * case "application/xml":
155629
+ *
155630
+ * var oCodeEditor = new CodeEditor({
155631
+ * value: "XML content",
155632
+ * width: "100%",
155633
+ * height: "100%"
155634
+ * });
155635
+ *
155636
+ * resolve(oCodeEditor);
155637
+ * break;
155638
+ *
155639
+ * default:
155640
+ * reject(); // reject the promise to display the default illustrated message.
155641
+ * break;
155642
+ * }
155643
+ * });
155644
+ * }
155645
+ * ```
155646
+ *
155647
+ *
155648
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
155649
+ *
155650
+ * @since 1.136
155651
+ *
155652
+ * @returns Reference to `this` in order to allow method chaining
155653
+ */
155654
+ setCustomPageContentHandler(
155655
+ /**
155656
+ * New value for property `customPageContentHandler`
155657
+ */
155658
+ fnCustomPageContentHandler?: Function
155659
+ ): this;
154991
155660
  /**
154992
155661
  * Sets a new value for property {@link #getMaxFileSizeforPreview maxFileSizeforPreview}.
154993
155662
  *
@@ -155039,6 +155708,61 @@ declare module "sap/m/upload/FilePreviewDialog" {
155039
155708
  */
155040
155709
  maxFileSizeforPreview?: float | PropertyBindingInfo | `{${string}}`;
155041
155710
 
155711
+ /**
155712
+ * Callback function to insert custom content into the preview dialog using a control to display the preview
155713
+ * of unsupported file types.
155714
+ * Use this property as callback function to insert a control with the content into the preview dialog.
155715
+ *
155716
+ * Callback function returns a promise that resolves with a control that is displayed in the preview dialog.
155717
+ * Reject the promise to display the default illustrated message.
155718
+ * Callback function is invoked with {@link sap.m.upload.UploadItem item} for each unsupported file type.
155719
+ *
155720
+ *
155721
+ * Example: There is a file with an xml extension and you want to display the content inside a codeeditor
155722
+ * control for the file type.
155723
+ *
155724
+ *
155725
+ * ```javascript
155726
+ *
155727
+ * <UploadSetwithTable>
155728
+ * <upload:FilePreviewDialog customPageContentHandler="{onCustomContentHandler}"></upload:FilePreviewDialog>
155729
+ * </UploadSetwithTable>
155730
+ * ```
155731
+ *
155732
+ *
155733
+ *
155734
+ * ```javascript
155735
+ *
155736
+ * onCustomContentHandler: function(oItem) {
155737
+ *
155738
+ * return new Promise(function(resolve, reject) {
155739
+ *
155740
+ * switch (oItem.getMediaType().toLowerCase()) {
155741
+ *
155742
+ * case "application/xml":
155743
+ *
155744
+ * var oCodeEditor = new CodeEditor({
155745
+ * value: "XML content",
155746
+ * width: "100%",
155747
+ * height: "100%"
155748
+ * });
155749
+ *
155750
+ * resolve(oCodeEditor);
155751
+ * break;
155752
+ *
155753
+ * default:
155754
+ * reject(); // reject the promise to display the default illustrated message.
155755
+ * break;
155756
+ * }
155757
+ * });
155758
+ * }
155759
+ * ```
155760
+ *
155761
+ *
155762
+ * @since 1.136
155763
+ */
155764
+ customPageContentHandler?: Function | PropertyBindingInfo | `{${string}}`;
155765
+
155042
155766
  /**
155043
155767
  * Custom buttons, to be displayed in the preview dialog footer.
155044
155768
  * Control by default adds two buttons (download and close).
@@ -156161,7 +156885,9 @@ declare module "sap/m/upload/UploaderTableItem" {
156161
156885
  oListener?: object
156162
156886
  ): this;
156163
156887
  /**
156164
- * Starts the process of downloading a file.
156888
+ * Starts the process of downloading a file. Plugin uses the URL set in the item or the downloadUrl set
156889
+ * in the uploader class to download the file. If the URL is not set, a warning is logged. API downloads
156890
+ * the file with xhr response of blob type or string type.
156165
156891
  *
156166
156892
  *
156167
156893
  * @returns It returns true if the download is processed successfully
@@ -166506,6 +167232,7 @@ declare module "sap/m/VariantManagement" {
166506
167232
 
166507
167233
  import {
166508
167234
  IOverflowToolbarContent,
167235
+ IToolbarInteractiveControl,
166509
167236
  VariantManagementRename,
166510
167237
  VariantManagementExe,
166511
167238
  VariantManagementFav,
@@ -166533,10 +167260,7 @@ declare module "sap/m/VariantManagement" {
166533
167260
  */
166534
167261
  export default class VariantManagement
166535
167262
  extends Control
166536
- implements
166537
- IShrinkable,
166538
- IOverflowToolbarContent,
166539
- /* was: sap.m.IToolbarInteractiveControl */ Object
167263
+ implements IShrinkable, IOverflowToolbarContent, IToolbarInteractiveControl
166540
167264
  {
166541
167265
  __implements__sap_ui_core_IShrinkable: boolean;
166542
167266
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -171652,6 +172376,8 @@ declare namespace sap {
171652
172376
 
171653
172377
  "sap/m/plugins/CellSelector": undefined;
171654
172378
 
172379
+ "sap/m/plugins/ColumnAIAction": undefined;
172380
+
171655
172381
  "sap/m/plugins/ColumnResizer": undefined;
171656
172382
 
171657
172383
  "sap/m/plugins/ContextMenuSetting": undefined;