@sapui5/ts-types-esm 1.134.0 → 1.135.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 (67) 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.esh.search.ui.d.ts +1 -1
  7. package/types/sap.f.d.ts +2 -8
  8. package/types/sap.fe.base.d.ts +1 -1
  9. package/types/sap.fe.controls.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +5 -5
  11. package/types/sap.fe.ina.d.ts +1 -1
  12. package/types/sap.fe.macros.d.ts +807 -293
  13. package/types/sap.fe.navigation.d.ts +1 -1
  14. package/types/sap.fe.placeholder.d.ts +1 -1
  15. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  16. package/types/sap.fe.templates.d.ts +1 -1
  17. package/types/sap.fe.test.d.ts +6 -4
  18. package/types/sap.fe.tools.d.ts +1 -1
  19. package/types/sap.feedback.ui.d.ts +1 -1
  20. package/types/sap.gantt.d.ts +73 -15
  21. package/types/sap.insights.d.ts +1 -1
  22. package/types/sap.m.d.ts +330 -83
  23. package/types/sap.makit.d.ts +1 -1
  24. package/types/sap.me.d.ts +1 -1
  25. package/types/sap.ndc.d.ts +1 -1
  26. package/types/sap.ovp.d.ts +1 -1
  27. package/types/sap.rules.ui.d.ts +1 -1
  28. package/types/sap.sac.df.d.ts +248 -1229
  29. package/types/sap.suite.ui.commons.d.ts +72 -1
  30. package/types/sap.suite.ui.generic.template.d.ts +8 -2
  31. package/types/sap.suite.ui.microchart.d.ts +1 -1
  32. package/types/sap.tnt.d.ts +215 -19
  33. package/types/sap.ui.codeeditor.d.ts +1 -1
  34. package/types/sap.ui.commons.d.ts +1 -1
  35. package/types/sap.ui.comp.d.ts +90 -18
  36. package/types/sap.ui.core.d.ts +160 -40
  37. package/types/sap.ui.dt.d.ts +1 -1
  38. package/types/sap.ui.export.d.ts +1 -1
  39. package/types/sap.ui.fl.d.ts +14 -6
  40. package/types/sap.ui.generic.app.d.ts +1 -1
  41. package/types/sap.ui.generic.template.d.ts +1 -1
  42. package/types/sap.ui.integration.d.ts +2 -4
  43. package/types/sap.ui.layout.d.ts +14 -13
  44. package/types/sap.ui.mdc.d.ts +26 -6
  45. package/types/sap.ui.richtexteditor.d.ts +39 -1
  46. package/types/sap.ui.rta.d.ts +31 -5
  47. package/types/sap.ui.suite.d.ts +1 -1
  48. package/types/sap.ui.support.d.ts +30 -16
  49. package/types/sap.ui.table.d.ts +10 -18
  50. package/types/sap.ui.testrecorder.d.ts +1 -1
  51. package/types/sap.ui.unified.d.ts +32 -1
  52. package/types/sap.ui.ux3.d.ts +1 -1
  53. package/types/sap.ui.vbm.d.ts +1 -1
  54. package/types/sap.ui.vk.d.ts +11 -72
  55. package/types/sap.ui.vtm.d.ts +1 -1
  56. package/types/sap.ui.webc.common.d.ts +1 -1
  57. package/types/sap.ui.webc.fiori.d.ts +1 -1
  58. package/types/sap.ui.webc.main.d.ts +1 -1
  59. package/types/sap.uiext.inbox.d.ts +1 -1
  60. package/types/sap.ushell.d.ts +46 -16
  61. package/types/sap.ushell_abap.d.ts +1 -1
  62. package/types/sap.uxap.d.ts +10 -1
  63. package/types/sap.viz.d.ts +1 -1
  64. package/types/sap.webanalytics.core.d.ts +1 -1
  65. package/types/sap.zen.commons.d.ts +1 -1
  66. package/types/sap.zen.crosstab.d.ts +1 -1
  67. 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.135.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
@@ -39778,9 +39836,7 @@ declare module "sap/m/IllustratedMessage" {
39778
39836
  /**
39779
39837
  * New value for property `illustrationSize`
39780
39838
  */
39781
- sIllustrationSize?:
39782
- | IllustratedMessageSize
39783
- | keyof typeof IllustratedMessageSize
39839
+ sIllustrationSize?: IllustratedMessageSize
39784
39840
  ): this;
39785
39841
  /**
39786
39842
  * Sets a new value for property {@link #getIllustrationType illustrationType}.
@@ -39916,7 +39972,7 @@ declare module "sap/m/IllustratedMessage" {
39916
39972
  * @since 1.98
39917
39973
  */
39918
39974
  illustrationSize?:
39919
- | (IllustratedMessageSize | keyof typeof IllustratedMessageSize)
39975
+ | IllustratedMessageSize
39920
39976
  | PropertyBindingInfo
39921
39977
  | `{${string}}`;
39922
39978
 
@@ -40026,20 +40082,52 @@ declare module "sap/m/IllustratedMessageSize" {
40026
40082
  Base = "Base",
40027
40083
  /**
40028
40084
  * Dialog `Illustration` size (M breakpoint). Suitable for dialogs.
40085
+ *
40086
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Medium}
40029
40087
  */
40030
40088
  Dialog = "Dialog",
40031
40089
  /**
40032
40090
  * Dot `Illustration` size (XS breakpoint). Suitable for spaces with little vertical space.
40033
40091
  *
40034
40092
  * @since 1.108
40093
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.ExtraSmall}
40035
40094
  */
40036
40095
  Dot = "Dot",
40096
+ /**
40097
+ * Extra Small `Illustration` size. Alias for `Dot` size (XS breakpoint). Suitable for spaces with little
40098
+ * vertical space.
40099
+ *
40100
+ * @since 1.136
40101
+ */
40102
+ ExtraSmall = "Dot",
40103
+ /**
40104
+ * Large `Illustration` size. Alias for `Scene` size (L breakpoint). Suitable for a `Page` or a table.
40105
+ *
40106
+ * @since 1.136
40107
+ */
40108
+ Large = "Scene",
40109
+ /**
40110
+ * Medium `Illustration` size. Alias for `Dialog` size (M breakpoint). Suitable for dialogs.
40111
+ *
40112
+ * @since 1.136
40113
+ */
40114
+ Medium = "Dialog",
40037
40115
  /**
40038
40116
  * Scene `Illustration` size (L breakpoint). Suitable for a `Page` or a table.
40117
+ *
40118
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Large}
40039
40119
  */
40040
40120
  Scene = "Scene",
40121
+ /**
40122
+ * Small `Illustration` size. Alias for `Spot` size (S breakpoint). Suitable for cards (four columns).
40123
+ *
40124
+ * @since 1.136
40125
+ */
40126
+ Small = "Spot",
40041
40127
  /**
40042
40128
  * Spot `Illustration` size (S breakpoint). Suitable for cards (four columns).
40129
+ *
40130
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Small}
40043
40131
  */
40044
40132
  Spot = "Spot",
40045
40133
  }
@@ -40053,18 +40141,34 @@ declare module "sap/m/IllustratedMessageType" {
40053
40141
  * @since 1.98
40054
40142
  */
40055
40143
  enum IllustratedMessageType {
40144
+ /**
40145
+ * "Achievement" illustration type.
40146
+ */
40147
+ Achievement = "sapIllus-Achievement",
40056
40148
  /**
40057
40149
  * "Add Column" illustration type.
40150
+ *
40151
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.AddingColumns}
40058
40152
  */
40059
40153
  AddColumn = "sapIllus-AddColumn",
40060
40154
  /**
40061
40155
  * "Add Dimensions" illustration type.
40062
40156
  */
40063
40157
  AddDimensions = "sapIllus-AddDimensions",
40158
+ /**
40159
+ * "Adding Columns" illustration type.
40160
+ */
40161
+ AddingColumns = "sapIllus-AddingColumns",
40064
40162
  /**
40065
40163
  * "Add People" illustration type.
40164
+ *
40165
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.AddPeopleToCalendar}
40066
40166
  */
40067
40167
  AddPeople = "sapIllus-AddPeople",
40168
+ /**
40169
+ * "Add People To Calendar" illustration type.
40170
+ */
40171
+ AddPeopleToCalendar = "sapIllus-AddPeopleToCalendar",
40068
40172
  /**
40069
40173
  * "Balloon Sky" illustration type.
40070
40174
  */
@@ -40077,12 +40181,20 @@ declare module "sap/m/IllustratedMessageType" {
40077
40181
  * "Connection" illustration type.
40078
40182
  */
40079
40183
  Connection = "sapIllus-Connection",
40184
+ /**
40185
+ * "Drag Files To Upload" illustration type.
40186
+ */
40187
+ DragFilesToUpload = "sapIllus-DragFilesToUpload",
40080
40188
  /**
40081
40189
  * "Empty Calendar" illustration type.
40190
+ *
40191
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoActivities}
40082
40192
  */
40083
40193
  EmptyCalendar = "sapIllus-EmptyCalendar",
40084
40194
  /**
40085
40195
  * "Empty List" illustration type.
40196
+ *
40197
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoEntries}
40086
40198
  */
40087
40199
  EmptyList = "sapIllus-EmptyList",
40088
40200
  /**
@@ -40091,16 +40203,34 @@ declare module "sap/m/IllustratedMessageType" {
40091
40203
  EmptyPlanningCalendar = "sapIllus-EmptyPlanningCalendar",
40092
40204
  /**
40093
40205
  * "Error Screen" illustration type.
40206
+ *
40207
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToUpload}
40094
40208
  */
40095
40209
  ErrorScreen = "sapIllus-ErrorScreen",
40210
+ /**
40211
+ * "Filtering Columns" illustration type.
40212
+ */
40213
+ FilteringColumns = "sapIllus-FilteringColumns",
40096
40214
  /**
40097
40215
  * "Filter Table" illustration type.
40216
+ *
40217
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.FilteringColumns}
40098
40218
  */
40099
40219
  FilterTable = "sapIllus-FilterTable",
40220
+ /**
40221
+ * "Grouping Columns" illustration type.
40222
+ */
40223
+ GroupingColumns = "sapIllus-GroupingColumns",
40100
40224
  /**
40101
40225
  * "Group Table" illustration type.
40226
+ *
40227
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.GroupingColumns}
40102
40228
  */
40103
40229
  GroupTable = "sapIllus-GroupTable",
40230
+ /**
40231
+ * "KeyTask" illustration type.
40232
+ */
40233
+ KeyTask = "sapIllus-KeyTask",
40104
40234
  /**
40105
40235
  * "New Mail" illustration type.
40106
40236
  */
@@ -40109,6 +40239,10 @@ declare module "sap/m/IllustratedMessageType" {
40109
40239
  * "No Activities" illustration type.
40110
40240
  */
40111
40241
  NoActivities = "sapIllus-NoActivities",
40242
+ /**
40243
+ * "No Chart Data" illustration type.
40244
+ */
40245
+ NoChartData = "sapIllus-NoChartData",
40112
40246
  /**
40113
40247
  * "No Columns Set" illustration type.
40114
40248
  */
@@ -40119,6 +40253,8 @@ declare module "sap/m/IllustratedMessageType" {
40119
40253
  NoData = "sapIllus-NoData",
40120
40254
  /**
40121
40255
  * "No Dimensions Set" illustration type.
40256
+ *
40257
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoChartData}
40122
40258
  */
40123
40259
  NoDimensionsSet = "sapIllus-NoDimensionsSet",
40124
40260
  /**
@@ -40135,6 +40271,8 @@ declare module "sap/m/IllustratedMessageType" {
40135
40271
  NoMail = "sapIllus-NoMail",
40136
40272
  /**
40137
40273
  * "No Email v1" illustration type.
40274
+ *
40275
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoMail}
40138
40276
  */
40139
40277
  NoMailV1 = "sapIllus-NoMail_v1",
40140
40278
  /**
@@ -40147,6 +40285,8 @@ declare module "sap/m/IllustratedMessageType" {
40147
40285
  NoSavedItems = "sapIllus-NoSavedItems",
40148
40286
  /**
40149
40287
  * "No Saved Items v1" illustration type.
40288
+ *
40289
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSavedItems}
40150
40290
  */
40151
40291
  NoSavedItemsV1 = "sapIllus-NoSavedItems_v1",
40152
40292
  /**
@@ -40159,26 +40299,44 @@ declare module "sap/m/IllustratedMessageType" {
40159
40299
  NoTasks = "sapIllus-NoTasks",
40160
40300
  /**
40161
40301
  * "No Tasks v1" illustration type.
40302
+ *
40303
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoTasks}
40162
40304
  */
40163
40305
  NoTasksV1 = "sapIllus-NoTasks_v1",
40164
40306
  /**
40165
40307
  * "Page Not Found" illustration type.
40166
40308
  */
40167
40309
  PageNotFound = "sapIllus-PageNotFound",
40310
+ /**
40311
+ * "Receive Appreciation" illustration type.
40312
+ */
40313
+ ReceiveAppreciation = "sapIllus-ReceiveAppreciation",
40168
40314
  /**
40169
40315
  * "Reload Screen" illustration type.
40316
+ *
40317
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
40170
40318
  */
40171
40319
  ReloadScreen = "sapIllus-ReloadScreen",
40172
40320
  /**
40173
40321
  * "Resize Column" illustration type.
40322
+ *
40323
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ResizingColumns}
40174
40324
  */
40175
40325
  ResizeColumn = "sapIllus-ResizeColumn",
40326
+ /**
40327
+ * "Resizing Columns" illustration type.
40328
+ */
40329
+ ResizingColumns = "sapIllus-ResizingColumns",
40176
40330
  /**
40177
40331
  * "Search Earth" illustration type.
40332
+ *
40333
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.BeforeSearch}
40178
40334
  */
40179
40335
  SearchEarth = "sapIllus-SearchEarth",
40180
40336
  /**
40181
40337
  * "Search Folder" illustration type.
40338
+ *
40339
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSearchResults}
40182
40340
  */
40183
40341
  SearchFolder = "sapIllus-SearchFolder",
40184
40342
  /**
@@ -40187,18 +40345,26 @@ declare module "sap/m/IllustratedMessageType" {
40187
40345
  SignOut = "sapIllus-SignOut",
40188
40346
  /**
40189
40347
  * "Simple Balloon" illustration type.
40348
+ *
40349
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
40190
40350
  */
40191
40351
  SimpleBalloon = "sapIllus-SimpleBalloon",
40192
40352
  /**
40193
40353
  * "Simple Bell" illustration type.
40354
+ *
40355
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoNotifications}
40194
40356
  */
40195
40357
  SimpleBell = "sapIllus-SimpleBell",
40196
40358
  /**
40197
40359
  * "Simple Calendar" illustration type.
40360
+ *
40361
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoActivities}
40198
40362
  */
40199
40363
  SimpleCalendar = "sapIllus-SimpleCalendar",
40200
40364
  /**
40201
40365
  * "Simple CheckMark" illustration type.
40366
+ *
40367
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
40202
40368
  */
40203
40369
  SimpleCheckMark = "sapIllus-SimpleCheckMark",
40204
40370
  /**
@@ -40207,62 +40373,96 @@ declare module "sap/m/IllustratedMessageType" {
40207
40373
  SimpleConnection = "sapIllus-SimpleConnection",
40208
40374
  /**
40209
40375
  * "Simple Empty Doc" illustration type.
40376
+ *
40377
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoData}
40210
40378
  */
40211
40379
  SimpleEmptyDoc = "sapIllus-SimpleEmptyDoc",
40212
40380
  /**
40213
40381
  * "Simple Empty List" illustration type.
40382
+ *
40383
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoEntries}
40214
40384
  */
40215
40385
  SimpleEmptyList = "sapIllus-SimpleEmptyList",
40216
40386
  /**
40217
40387
  * "Simple Error" illustration type.
40388
+ *
40389
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToUpload}
40218
40390
  */
40219
40391
  SimpleError = "sapIllus-SimpleError",
40220
40392
  /**
40221
40393
  * "Simple Magnifier" illustration type.
40394
+ *
40395
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.BeforeSearch}
40222
40396
  */
40223
40397
  SimpleMagnifier = "sapIllus-SimpleMagnifier",
40224
40398
  /**
40225
40399
  * "Simple Mail" illustration type.
40400
+ *
40401
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoMail}
40226
40402
  */
40227
40403
  SimpleMail = "sapIllus-SimpleMail",
40228
40404
  /**
40229
40405
  * "Simple No Saved Items" illustration type.
40406
+ *
40407
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSavedItems}
40230
40408
  */
40231
40409
  SimpleNoSavedItems = "sapIllus-SimpleNoSavedItems",
40232
40410
  /**
40233
40411
  * "Simple Not Found Magnifier" illustration type.
40412
+ *
40413
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSearchResults}
40234
40414
  */
40235
40415
  SimpleNotFoundMagnifier = "sapIllus-SimpleNotFoundMagnifier",
40236
40416
  /**
40237
40417
  * "Simple Reload" illustration type.
40418
+ *
40419
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
40238
40420
  */
40239
40421
  SimpleReload = "sapIllus-SimpleReload",
40240
40422
  /**
40241
40423
  * "Simple Task" illustration type.
40424
+ *
40425
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoTasks}
40242
40426
  */
40243
40427
  SimpleTask = "sapIllus-SimpleTask",
40244
40428
  /**
40245
40429
  * "Sleeping Bell" illustration type.
40430
+ *
40431
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoNotifications}
40246
40432
  */
40247
40433
  SleepingBell = "sapIllus-SleepingBell",
40248
40434
  /**
40249
40435
  * "Sort Column" illustration type.
40436
+ *
40437
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.SortingColumns}
40250
40438
  */
40251
40439
  SortColumn = "sapIllus-SortColumn",
40440
+ /**
40441
+ * "Sorting Columns" illustration type.
40442
+ */
40443
+ SortingColumns = "sapIllus-SortingColumns",
40252
40444
  /**
40253
40445
  * "Success Balloon" illustration type.
40446
+ *
40447
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
40254
40448
  */
40255
40449
  SuccessBalloon = "sapIllus-SuccessBalloon",
40256
40450
  /**
40257
40451
  * "Success CheckMark" illustration type.
40452
+ *
40453
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
40258
40454
  */
40259
40455
  SuccessCheckMark = "sapIllus-SuccessCheckMark",
40260
40456
  /**
40261
40457
  * "Success HighFive" illustration type.
40458
+ *
40459
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
40262
40460
  */
40263
40461
  SuccessHighFive = "sapIllus-SuccessHighFive",
40264
40462
  /**
40265
40463
  * "Success Screen" illustration type.
40464
+ *
40465
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
40266
40466
  */
40267
40467
  SuccessScreen = "sapIllus-SuccessScreen",
40268
40468
  /**
@@ -40271,6 +40471,8 @@ declare module "sap/m/IllustratedMessageType" {
40271
40471
  Survey = "sapIllus-Survey",
40272
40472
  /**
40273
40473
  * "Tent" illustration type.
40474
+ *
40475
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoData}
40274
40476
  */
40275
40477
  Tent = "sapIllus-Tent",
40276
40478
  /**
@@ -40287,12 +40489,18 @@ declare module "sap/m/IllustratedMessageType" {
40287
40489
  UnableToUpload = "sapIllus-UnableToUpload",
40288
40490
  /**
40289
40491
  * "Upload Collection" illustration type.
40492
+ *
40493
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.DragFilesToUpload}
40290
40494
  */
40291
40495
  UploadCollection = "sapIllus-UploadCollection",
40292
40496
  /**
40293
40497
  * "Upload To Cloud" illustration type.
40294
40498
  */
40295
40499
  UploadToCloud = "sapIllus-UploadToCloud",
40500
+ /**
40501
+ * "User has signed up for an application" illustration type.
40502
+ */
40503
+ UserHasSignedUp = "sapIllus-UserHasSignedUp",
40296
40504
  }
40297
40505
  export default IllustratedMessageType;
40298
40506
  }
@@ -40662,7 +40870,11 @@ declare module "sap/m/IllustrationPool" {
40662
40870
  /**
40663
40871
  * whether or not all of the assets for the Illustration Set should be loaded once the metadata is loaded
40664
40872
  */
40665
- bLoadAllResources: boolean
40873
+ bLoadAllResources: boolean,
40874
+ /**
40875
+ * optional array containing the Illustration Set symbols
40876
+ */
40877
+ aOptionalSymbols: any[]
40666
40878
  ): void;
40667
40879
  }
40668
40880
  const IllustrationPool: IllustrationPool;
@@ -44791,6 +45003,8 @@ declare module "sap/m/InputBase" {
44791
45003
  CSSSize,
44792
45004
  } from "sap/ui/core/library";
44793
45005
 
45006
+ import { IToolbarInteractiveControl } from "sap/m/library";
45007
+
44794
45008
  import Icon from "sap/ui/core/Icon";
44795
45009
 
44796
45010
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
@@ -44814,7 +45028,7 @@ declare module "sap/m/InputBase" {
44814
45028
  IFormContent,
44815
45029
  ISemanticFormContent,
44816
45030
  ILabelable,
44817
- /* was: sap.m.IToolbarInteractiveControl */ Object
45031
+ IToolbarInteractiveControl
44818
45032
  {
44819
45033
  __implements__sap_ui_core_IFormContent: boolean;
44820
45034
  __implements__sap_ui_core_ISemanticFormContent: boolean;
@@ -45288,6 +45502,22 @@ declare module "sap/m/InputBase" {
45288
45502
  * @returns Value of property `valueState`
45289
45503
  */
45290
45504
  getValueState(): ValueState;
45505
+ /**
45506
+ * Gets the ID of the hidden value state message related to value state links
45507
+ *
45508
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
45509
+ *
45510
+ * @returns The ID of the hidden value state message related to value state links
45511
+ */
45512
+ getValueStateLinksShortcutsId(): string;
45513
+ /**
45514
+ * Returns the keyboard shortcuts announcement for the value state links
45515
+ *
45516
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
45517
+ *
45518
+ * @returns The text for value state links shortcuts
45519
+ */
45520
+ getValueStateLinksShortcutsTextAcc(): string;
45291
45521
  /**
45292
45522
  * Gets current value of property {@link #getValueStateText valueStateText}.
45293
45523
  *
@@ -47116,6 +47346,7 @@ declare module "sap/m/Label" {
47116
47346
 
47117
47347
  import {
47118
47348
  IOverflowToolbarContent,
47349
+ IToolbarInteractiveControl,
47119
47350
  LabelDesign,
47120
47351
  OverflowToolbarConfig,
47121
47352
  WrappingType,
@@ -47152,7 +47383,7 @@ declare module "sap/m/Label" {
47152
47383
  IAccessKeySupport,
47153
47384
  ILabelable,
47154
47385
  IOverflowToolbarContent,
47155
- /* was: sap.m.IToolbarInteractiveControl */ Object
47386
+ IToolbarInteractiveControl
47156
47387
  {
47157
47388
  __implements__sap_ui_core_Label: boolean;
47158
47389
  __implements__sap_ui_core_IShrinkable: boolean;
@@ -48222,6 +48453,7 @@ declare module "sap/m/Link" {
48222
48453
  } from "sap/ui/core/library";
48223
48454
 
48224
48455
  import {
48456
+ IToolbarInteractiveControl,
48225
48457
  LinkAccessibleRole,
48226
48458
  EmptyIndicatorMode,
48227
48459
  ReactiveAreaMode,
@@ -48266,7 +48498,7 @@ declare module "sap/m/Link" {
48266
48498
  ITitleContent,
48267
48499
  IAccessKeySupport,
48268
48500
  ILabelable,
48269
- /* was: sap.m.IToolbarInteractiveControl */ Object
48501
+ IToolbarInteractiveControl
48270
48502
  {
48271
48503
  __implements__sap_ui_core_IShrinkable: boolean;
48272
48504
  __implements__sap_ui_core_IFormContent: boolean;
@@ -54919,12 +55151,16 @@ declare module "sap/m/Menu" {
54919
55151
  declare module "sap/m/MenuButton" {
54920
55152
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
54921
55153
 
55154
+ import {
55155
+ IToolbarInteractiveControl,
55156
+ MenuButtonMode,
55157
+ ButtonType,
55158
+ } from "sap/m/library";
55159
+
54922
55160
  import { ID, URI, TextDirection, CSSSize } from "sap/ui/core/library";
54923
55161
 
54924
55162
  import Event from "sap/ui/base/Event";
54925
55163
 
54926
- import { MenuButtonMode, ButtonType } from "sap/m/library";
54927
-
54928
55164
  import Menu from "sap/m/Menu";
54929
55165
 
54930
55166
  import Popup from "sap/ui/core/Popup";
@@ -54940,7 +55176,7 @@ declare module "sap/m/MenuButton" {
54940
55176
  */
54941
55177
  export default class MenuButton
54942
55178
  extends Control
54943
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
55179
+ implements IToolbarInteractiveControl
54944
55180
  {
54945
55181
  __implements__sap_m_IToolbarInteractiveControl: boolean;
54946
55182
  /**
@@ -62958,8 +63194,8 @@ declare module "sap/m/MultiInput" {
62958
63194
  * When not to use::
62959
63195
  * - When you need to select only one value.
62960
63196
  * - 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
63197
+ * instead. Responsive Behavior: If there are many tokens, the control shows only the first selected
63198
+ * tokens that fit and for the others a label N-more is provided. In case the length of the first
62963
63199
  * selected token is exceeding the width of the control, only a label N-Items is shown. In both cases,
62964
63200
  * pressing on the label will show the tokens in a popup. On Phones:
62965
63201
  * - Only the last entered token is displayed.
@@ -74239,7 +74475,10 @@ declare module "sap/m/OverflowToolbarButton" {
74239
74475
 
74240
74476
  import { IShellBar } from "sap/f/library";
74241
74477
 
74242
- import { IOverflowToolbarContent } from "sap/m/library";
74478
+ import {
74479
+ IOverflowToolbarContent,
74480
+ IToolbarInteractiveControl,
74481
+ } from "sap/m/library";
74243
74482
 
74244
74483
  import ElementMetadata from "sap/ui/core/ElementMetadata";
74245
74484
 
@@ -74254,10 +74493,7 @@ declare module "sap/m/OverflowToolbarButton" {
74254
74493
  */
74255
74494
  export default class OverflowToolbarButton
74256
74495
  extends Button
74257
- implements
74258
- IShellBar,
74259
- IOverflowToolbarContent,
74260
- /* was: sap.m.IToolbarInteractiveControl */ Object
74496
+ implements IShellBar, IOverflowToolbarContent, IToolbarInteractiveControl
74261
74497
  {
74262
74498
  __implements__sap_f_IShellBar: boolean;
74263
74499
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -75780,6 +76016,15 @@ declare module "sap/m/p13n/MetadataHelper" {
75780
76016
  */
75781
76017
  sKey: string
75782
76018
  ): MetadataObject | undefined;
76019
+ /**
76020
+ * Gets a list of properties that are redundant and should be filtered out in the {@link sap.ui.mdc.p13n.SelectionController }
76021
+ * for personalization.
76022
+ *
76023
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
76024
+ *
76025
+ * @returns A list of properties
76026
+ */
76027
+ getRedundantProperties(): object[];
75783
76028
  }
75784
76029
  /**
75785
76030
  * Personalization `MetadataObject` type.
@@ -76160,6 +76405,10 @@ declare module "sap/m/p13n/Popup" {
76160
76405
  * Width configuration for the related popup container
76161
76406
  */
76162
76407
  contentWidth?: CSSSize;
76408
+ /**
76409
+ * Key of active panel that is opened initially
76410
+ */
76411
+ activePanel?: string;
76163
76412
  }
76164
76413
  ): void;
76165
76414
  /**
@@ -89626,27 +89875,17 @@ declare module "sap/m/PlanningCalendar" {
89626
89875
  | keyof typeof CalendarAppointmentRoundWidth
89627
89876
  ): this;
89628
89877
  /**
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.
89632
- *
89633
- * **Note:** On phone devices this property is ignored, appointments are always rendered in full height
89634
- * to facilitate touching.
89878
+ * Set the appointment reduced height property to the appointments in the calendar
89635
89879
  *
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
89880
  * @deprecated As of version 1.119. Please use the `appointmentHeight` with value "Automatic" property instead.
89642
89881
  *
89643
- * @returns Reference to `this` in order to allow method chaining
89882
+ * @returns Reference to `this` for method chaining
89644
89883
  */
89645
89884
  setAppointmentsReducedHeight(
89646
89885
  /**
89647
- * New value for property `appointmentsReducedHeight`
89886
+ * if set to true, the appointments will have a reduced height
89648
89887
  */
89649
- bAppointmentsReducedHeight?: boolean
89888
+ bAppointmentsReducedHeight: boolean
89650
89889
  ): this;
89651
89890
  /**
89652
89891
  * Sets a new value for property {@link #getAppointmentsVisualization appointmentsVisualization}.
@@ -102796,9 +103035,9 @@ declare module "sap/m/RadioButton" {
102796
103035
  CSSSize,
102797
103036
  } from "sap/ui/core/library";
102798
103037
 
102799
- import ElementMetadata from "sap/ui/core/ElementMetadata";
103038
+ import { IToolbarInteractiveControl, WrappingType } from "sap/m/library";
102800
103039
 
102801
- import { WrappingType } from "sap/m/library";
103040
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
102802
103041
 
102803
103042
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
102804
103043
 
@@ -102839,7 +103078,7 @@ declare module "sap/m/RadioButton" {
102839
103078
  */
102840
103079
  export default class RadioButton
102841
103080
  extends Control
102842
- implements IFormContent, /* was: sap.m.IToolbarInteractiveControl */ Object
103081
+ implements IFormContent, IToolbarInteractiveControl
102843
103082
  {
102844
103083
  __implements__sap_ui_core_IFormContent: boolean;
102845
103084
  __implements__sap_m_IToolbarInteractiveControl: boolean;
@@ -108243,6 +108482,8 @@ declare module "sap/m/SearchField" {
108243
108482
 
108244
108483
  import { IShellBar } from "sap/f/library";
108245
108484
 
108485
+ import { IToolbarInteractiveControl } from "sap/m/library";
108486
+
108246
108487
  import SuggestionItem from "sap/m/SuggestionItem";
108247
108488
 
108248
108489
  import {
@@ -108272,10 +108513,7 @@ declare module "sap/m/SearchField" {
108272
108513
  */
108273
108514
  export default class SearchField
108274
108515
  extends Control
108275
- implements
108276
- IFormContent,
108277
- IShellBar,
108278
- /* was: sap.m.IToolbarInteractiveControl */ Object
108516
+ implements IFormContent, IShellBar, IToolbarInteractiveControl
108279
108517
  {
108280
108518
  __implements__sap_ui_core_IFormContent: boolean;
108281
108519
  __implements__sap_f_IShellBar: boolean;
@@ -109518,7 +109756,10 @@ declare module "sap/m/SegmentedButton" {
109518
109756
  CSSSize,
109519
109757
  } from "sap/ui/core/library";
109520
109758
 
109521
- import { IOverflowToolbarContent } from "sap/m/library";
109759
+ import {
109760
+ IOverflowToolbarContent,
109761
+ IToolbarInteractiveControl,
109762
+ } from "sap/m/library";
109522
109763
 
109523
109764
  import Button from "sap/m/Button";
109524
109765
 
@@ -109544,10 +109785,7 @@ declare module "sap/m/SegmentedButton" {
109544
109785
  */
109545
109786
  export default class SegmentedButton
109546
109787
  extends Control
109547
- implements
109548
- IFormContent,
109549
- IOverflowToolbarContent,
109550
- /* was: sap.m.IToolbarInteractiveControl */ Object
109788
+ implements IFormContent, IOverflowToolbarContent, IToolbarInteractiveControl
109551
109789
  {
109552
109790
  __implements__sap_ui_core_IFormContent: boolean;
109553
109791
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -110691,6 +110929,7 @@ declare module "sap/m/Select" {
110691
110929
 
110692
110930
  import {
110693
110931
  IOverflowToolbarContent,
110932
+ IToolbarInteractiveControl,
110694
110933
  SelectColumnRatio,
110695
110934
  OverflowToolbarConfig,
110696
110935
  SelectType,
@@ -110719,7 +110958,7 @@ declare module "sap/m/Select" {
110719
110958
  ISemanticFormContent,
110720
110959
  ILabelable,
110721
110960
  IOverflowToolbarContent,
110722
- /* was: sap.m.IToolbarInteractiveControl */ Object,
110961
+ IToolbarInteractiveControl,
110723
110962
  IShellBar
110724
110963
  {
110725
110964
  __implements__sap_ui_core_IFormContent: boolean;
@@ -129161,14 +129400,14 @@ declare module "sap/m/Slider" {
129161
129400
  CSSSize,
129162
129401
  } from "sap/ui/core/library";
129163
129402
 
129403
+ import { IToolbarInteractiveControl, IScale } from "sap/m/library";
129404
+
129164
129405
  import SliderTooltipBase from "sap/m/SliderTooltipBase";
129165
129406
 
129166
129407
  import UI5Element from "sap/ui/core/Element";
129167
129408
 
129168
129409
  import ElementMetadata from "sap/ui/core/ElementMetadata";
129169
129410
 
129170
- import { IScale } from "sap/m/library";
129171
-
129172
129411
  import {
129173
129412
  PropertyBindingInfo,
129174
129413
  AggregationBindingInfo,
@@ -129218,10 +129457,7 @@ declare module "sap/m/Slider" {
129218
129457
  */
129219
129458
  export default class Slider
129220
129459
  extends Control
129221
- implements
129222
- IFormContent,
129223
- ISemanticFormContent,
129224
- /* was: sap.m.IToolbarInteractiveControl */ Object
129460
+ implements IFormContent, ISemanticFormContent, IToolbarInteractiveControl
129225
129461
  {
129226
129462
  __implements__sap_ui_core_IFormContent: boolean;
129227
129463
  __implements__sap_ui_core_ISemanticFormContent: boolean;
@@ -136057,7 +136293,11 @@ declare module "sap/m/Switch" {
136057
136293
 
136058
136294
  import { IFormContent, ID } from "sap/ui/core/library";
136059
136295
 
136060
- import { IOverflowToolbarContent, SwitchType } from "sap/m/library";
136296
+ import {
136297
+ IOverflowToolbarContent,
136298
+ IToolbarInteractiveControl,
136299
+ SwitchType,
136300
+ } from "sap/m/library";
136061
136301
 
136062
136302
  import ElementMetadata from "sap/ui/core/ElementMetadata";
136063
136303
 
@@ -136071,10 +136311,7 @@ declare module "sap/m/Switch" {
136071
136311
  */
136072
136312
  export default class Switch
136073
136313
  extends Control
136074
- implements
136075
- IFormContent,
136076
- IOverflowToolbarContent,
136077
- /* was: sap.m.IToolbarInteractiveControl */ Object
136314
+ implements IFormContent, IOverflowToolbarContent, IToolbarInteractiveControl
136078
136315
  {
136079
136316
  __implements__sap_ui_core_IFormContent: boolean;
136080
136317
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -145108,9 +145345,13 @@ declare module "sap/m/Text" {
145108
145345
  CSSSize,
145109
145346
  } from "sap/ui/core/library";
145110
145347
 
145111
- import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
145348
+ import {
145349
+ IToolbarInteractiveControl,
145350
+ EmptyIndicatorMode,
145351
+ WrappingType,
145352
+ } from "sap/m/library";
145112
145353
 
145113
- import { EmptyIndicatorMode, WrappingType } from "sap/m/library";
145354
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
145114
145355
 
145115
145356
  import ElementMetadata from "sap/ui/core/ElementMetadata";
145116
145357
 
@@ -145131,7 +145372,7 @@ declare module "sap/m/Text" {
145131
145372
  IFormContent,
145132
145373
  ISemanticFormContent,
145133
145374
  ILabelable,
145134
- /* was: sap.m.IToolbarInteractiveControl */ Object
145375
+ IToolbarInteractiveControl
145135
145376
  {
145136
145377
  __implements__sap_ui_core_IShrinkable: boolean;
145137
145378
  __implements__sap_ui_core_IFormContent: boolean;
@@ -150149,9 +150390,9 @@ declare module "sap/m/Title" {
150149
150390
  CSSSize,
150150
150391
  } from "sap/ui/core/library";
150151
150392
 
150152
- import ElementMetadata from "sap/ui/core/ElementMetadata";
150393
+ import { IToolbarInteractiveControl, WrappingType } from "sap/m/library";
150153
150394
 
150154
- import { WrappingType } from "sap/m/library";
150395
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
150155
150396
 
150156
150397
  import Title1 from "sap/ui/core/Title";
150157
150398
 
@@ -150187,7 +150428,7 @@ declare module "sap/m/Title" {
150187
150428
  */
150188
150429
  export default class Title
150189
150430
  extends Control
150190
- implements IShrinkable, /* was: sap.m.IToolbarInteractiveControl */ Object
150431
+ implements IShrinkable, IToolbarInteractiveControl
150191
150432
  {
150192
150433
  __implements__sap_ui_core_IShrinkable: boolean;
150193
150434
  __implements__sap_m_IToolbarInteractiveControl: boolean;
@@ -150714,6 +150955,8 @@ declare module "sap/m/ToggleButton" {
150714
150955
  Button$PressEventParameters,
150715
150956
  } from "sap/m/Button";
150716
150957
 
150958
+ import { IToolbarInteractiveControl } from "sap/m/library";
150959
+
150717
150960
  import { AccessibilityInfo } from "sap/ui/core/library";
150718
150961
 
150719
150962
  import ElementMetadata from "sap/ui/core/ElementMetadata";
@@ -150730,7 +150973,7 @@ declare module "sap/m/ToggleButton" {
150730
150973
  */
150731
150974
  export default class ToggleButton
150732
150975
  extends Button
150733
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
150976
+ implements IToolbarInteractiveControl
150734
150977
  {
150735
150978
  __implements__sap_m_IToolbarInteractiveControl: boolean;
150736
150979
  /**
@@ -151847,6 +152090,12 @@ declare module "sap/m/Tokenizer" {
151847
152090
  */
151848
152091
  fValidator: Function
151849
152092
  ): void;
152093
+ /**
152094
+ * Function to execute after the n-more popover is closed.
152095
+ *
152096
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
152097
+ */
152098
+ afterPopupClose(): void;
151850
152099
  /**
151851
152100
  * Attaches event handler `fnFunction` to the {@link #event:renderModeChange renderModeChange} event of
151852
152101
  * this `sap.m.Tokenizer`.
@@ -166506,6 +166755,7 @@ declare module "sap/m/VariantManagement" {
166506
166755
 
166507
166756
  import {
166508
166757
  IOverflowToolbarContent,
166758
+ IToolbarInteractiveControl,
166509
166759
  VariantManagementRename,
166510
166760
  VariantManagementExe,
166511
166761
  VariantManagementFav,
@@ -166533,10 +166783,7 @@ declare module "sap/m/VariantManagement" {
166533
166783
  */
166534
166784
  export default class VariantManagement
166535
166785
  extends Control
166536
- implements
166537
- IShrinkable,
166538
- IOverflowToolbarContent,
166539
- /* was: sap.m.IToolbarInteractiveControl */ Object
166786
+ implements IShrinkable, IOverflowToolbarContent, IToolbarInteractiveControl
166540
166787
  {
166541
166788
  __implements__sap_ui_core_IShrinkable: boolean;
166542
166789
  __implements__sap_m_IOverflowToolbarContent: boolean;