@sapui5/ts-types 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 -3
  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 +696 -184
  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 +75 -14
  21. package/types/sap.insights.d.ts +1 -1
  22. package/types/sap.m.d.ts +275 -45
  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 +354 -1388
  29. package/types/sap.suite.ui.commons.d.ts +75 -1
  30. package/types/sap.suite.ui.generic.template.d.ts +6 -2
  31. package/types/sap.suite.ui.microchart.d.ts +1 -1
  32. package/types/sap.tnt.d.ts +215 -15
  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 +89 -14
  36. package/types/sap.ui.core.d.ts +168 -38
  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 +10 -2
  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 +1 -1
  43. package/types/sap.ui.layout.d.ts +11 -10
  44. package/types/sap.ui.mdc.d.ts +26 -6
  45. package/types/sap.ui.richtexteditor.d.ts +37 -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 +22 -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 -73
  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 +45 -13
  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 namespace sap {
4
4
  /**
@@ -1157,6 +1157,15 @@ declare namespace sap {
1157
1157
  */
1158
1158
  sKey: string
1159
1159
  ): sap.m.p13n.MetadataObject | undefined;
1160
+ /**
1161
+ * Gets a list of properties that are redundant and should be filtered out in the {@link sap.ui.mdc.p13n.SelectionController }
1162
+ * for personalization.
1163
+ *
1164
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1165
+ *
1166
+ * @returns A list of properties
1167
+ */
1168
+ getRedundantProperties(): object[];
1160
1169
  }
1161
1170
  /**
1162
1171
  * This control can be used to show personalization-related content in different popup controls.
@@ -1488,6 +1497,10 @@ declare namespace sap {
1488
1497
  * Width configuration for the related popup container
1489
1498
  */
1490
1499
  contentWidth?: sap.ui.core.CSSSize;
1500
+ /**
1501
+ * Key of active panel that is opened initially
1502
+ */
1503
+ activePanel?: string;
1491
1504
  }
1492
1505
  ): void;
1493
1506
  /**
@@ -25554,6 +25567,17 @@ declare namespace sap {
25554
25567
  __implements__sap_m_ITableItem: boolean;
25555
25568
  }
25556
25569
 
25570
+ /**
25571
+ * Interface for controls placed in the `content` aggregation of `{@link sap.m.Toolbar}` or `{@link sap.m.OverflowToolbar}`,
25572
+ * which need to indicate whether they are interactive or not.
25573
+ *
25574
+ * Controls that implement this interface should have the following method: `_getToolbarInteractive` - returns
25575
+ * boolean value that shows whether the control is interactive or not
25576
+ */
25577
+ interface IToolbarInteractiveControl {
25578
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
25579
+ }
25580
+
25557
25581
  /**
25558
25582
  * sap.m.NavContainerChild is an artificial interface with the only purpose to bear the documentation of
25559
25583
  * pseudo events triggered by sap.m.NavContainer on its child controls when navigation occurs and child
@@ -29307,6 +29331,14 @@ declare namespace sap {
29307
29331
  | sap.ui.base.ManagedObject.PropertyBindingInfo
29308
29332
  | `{${string}}`;
29309
29333
 
29334
+ /**
29335
+ * Disables rendering of the `style` attribute in the `FormattedText`.
29336
+ */
29337
+ disableStyleAttribute?:
29338
+ | boolean
29339
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
29340
+ | `{${string}}`;
29341
+
29310
29342
  /**
29311
29343
  * Contains {@link sap.m.FeedListItemAction elements} that are displayed in the action sheet.
29312
29344
  *
@@ -49372,7 +49404,11 @@ declare namespace sap {
49372
49404
  /**
49373
49405
  * whether or not all of the assets for the Illustration Set should be loaded once the metadata is loaded
49374
49406
  */
49375
- bLoadAllResources: boolean
49407
+ bLoadAllResources: boolean,
49408
+ /**
49409
+ * optional array containing the Illustration Set symbols
49410
+ */
49411
+ aOptionalSymbols: any[]
49376
49412
  ): void;
49377
49413
  }
49378
49414
 
@@ -55262,7 +55298,7 @@ declare namespace sap {
55262
55298
  sap.m.IBreadcrumbs,
55263
55299
  sap.m.IOverflowToolbarContent,
55264
55300
  sap.ui.core.IShrinkable,
55265
- /* was: sap.m.IToolbarInteractiveControl */ Object
55301
+ sap.m.IToolbarInteractiveControl
55266
55302
  {
55267
55303
  __implements__sap_m_IBreadcrumbs: boolean;
55268
55304
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -56462,7 +56498,7 @@ declare namespace sap {
56462
56498
  implements
56463
56499
  sap.ui.core.IFormContent,
56464
56500
  sap.ui.core.IAccessKeySupport,
56465
- /* was: sap.m.IToolbarInteractiveControl */ Object
56501
+ sap.m.IToolbarInteractiveControl
56466
56502
  {
56467
56503
  __implements__sap_ui_core_IFormContent: boolean;
56468
56504
  __implements__sap_ui_core_IAccessKeySupport: boolean;
@@ -58320,7 +58356,7 @@ declare namespace sap {
58320
58356
  sap.ui.core.IFormContent,
58321
58357
  sap.ui.core.ISemanticFormContent,
58322
58358
  sap.ui.core.IAccessKeySupport,
58323
- /* was: sap.m.IToolbarInteractiveControl */ Object
58359
+ sap.m.IToolbarInteractiveControl
58324
58360
  {
58325
58361
  __implements__sap_ui_core_IFormContent: boolean;
58326
58362
  __implements__sap_ui_core_ISemanticFormContent: boolean;
@@ -60958,7 +60994,7 @@ declare namespace sap {
60958
60994
  */
60959
60995
  class ComboBox
60960
60996
  extends sap.m.ComboBoxBase
60961
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
60997
+ implements sap.m.IToolbarInteractiveControl
60962
60998
  {
60963
60999
  __implements__sap_m_IToolbarInteractiveControl: boolean;
60964
61000
  /**
@@ -64635,7 +64671,7 @@ declare namespace sap {
64635
64671
  */
64636
64672
  class DateTimeInput
64637
64673
  extends sap.ui.core.Control
64638
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
64674
+ implements sap.m.IToolbarInteractiveControl
64639
64675
  {
64640
64676
  __implements__sap_m_IToolbarInteractiveControl: boolean;
64641
64677
  /**
@@ -72074,6 +72110,17 @@ declare namespace sap {
72074
72110
  * @returns Value of property `convertLinksToAnchorTags`
72075
72111
  */
72076
72112
  getConvertLinksToAnchorTags(): sap.m.LinkConversion;
72113
+ /**
72114
+ * Gets current value of property {@link #getDisableStyleAttribute disableStyleAttribute}.
72115
+ *
72116
+ * Disables rendering of the `style` attribute in the `FormattedText`.
72117
+ *
72118
+ * Default value is `false`.
72119
+ *
72120
+ *
72121
+ * @returns Value of property `disableStyleAttribute`
72122
+ */
72123
+ getDisableStyleAttribute(): boolean;
72077
72124
  /**
72078
72125
  * Gets current value of property {@link #getIcon icon}.
72079
72126
  *
@@ -72356,6 +72403,24 @@ declare namespace sap {
72356
72403
  */
72357
72404
  sConvertLinksToAnchorTags?: sap.m.LinkConversion
72358
72405
  ): this;
72406
+ /**
72407
+ * Sets a new value for property {@link #getDisableStyleAttribute disableStyleAttribute}.
72408
+ *
72409
+ * Disables rendering of the `style` attribute in the `FormattedText`.
72410
+ *
72411
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
72412
+ *
72413
+ * Default value is `false`.
72414
+ *
72415
+ *
72416
+ * @returns Reference to `this` in order to allow method chaining
72417
+ */
72418
+ setDisableStyleAttribute(
72419
+ /**
72420
+ * New value for property `disableStyleAttribute`
72421
+ */
72422
+ bDisableStyleAttribute?: boolean
72423
+ ): this;
72359
72424
  /**
72360
72425
  * Sets a new value for property {@link #getIcon icon}.
72361
72426
  *
@@ -74325,9 +74390,7 @@ declare namespace sap {
74325
74390
  */
74326
74391
  class GenericTag
74327
74392
  extends sap.ui.core.Control
74328
- implements
74329
- sap.m.IOverflowToolbarContent,
74330
- /* was: sap.m.IToolbarInteractiveControl */ Object
74393
+ implements sap.m.IOverflowToolbarContent, sap.m.IToolbarInteractiveControl
74331
74394
  {
74332
74395
  __implements__sap_m_IOverflowToolbarContent: boolean;
74333
74396
  __implements__sap_m_IToolbarInteractiveControl: boolean;
@@ -76086,6 +76149,11 @@ declare namespace sap {
76086
76149
  * in `sap.m.List` and `sap.m.Table`. **Note:** The inherited properties `unread`, `selected`, `counter`
76087
76150
  * and `press` event from `sap.m.ListItemBase` are not supported.
76088
76151
  *
76152
+ * There are the following known restrictions:
76153
+ * - When a list is manually populated with items and groups without using data binding, changes to the
76154
+ * order or group structure will only be correctly applied when all items are removed and reinserted again.
76155
+ *
76156
+ *
76089
76157
  * @since 1.12
76090
76158
  */
76091
76159
  class GroupHeaderListItem
@@ -83656,7 +83724,7 @@ declare namespace sap {
83656
83724
  sap.ui.core.IFormContent,
83657
83725
  sap.ui.core.ISemanticFormContent,
83658
83726
  sap.ui.core.ILabelable,
83659
- /* was: sap.m.IToolbarInteractiveControl */ Object
83727
+ sap.m.IToolbarInteractiveControl
83660
83728
  {
83661
83729
  __implements__sap_ui_core_IFormContent: boolean;
83662
83730
  __implements__sap_ui_core_ISemanticFormContent: boolean;
@@ -84130,6 +84198,22 @@ declare namespace sap {
84130
84198
  * @returns Value of property `valueState`
84131
84199
  */
84132
84200
  getValueState(): sap.ui.core.ValueState;
84201
+ /**
84202
+ * Gets the ID of the hidden value state message related to value state links
84203
+ *
84204
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
84205
+ *
84206
+ * @returns The ID of the hidden value state message related to value state links
84207
+ */
84208
+ getValueStateLinksShortcutsId(): string;
84209
+ /**
84210
+ * Returns the keyboard shortcuts announcement for the value state links
84211
+ *
84212
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
84213
+ *
84214
+ * @returns The text for value state links shortcuts
84215
+ */
84216
+ getValueStateLinksShortcutsTextAcc(): string;
84133
84217
  /**
84134
84218
  * Gets current value of property {@link #getValueStateText valueStateText}.
84135
84219
  *
@@ -84870,7 +84954,7 @@ declare namespace sap {
84870
84954
  sap.ui.core.IAccessKeySupport,
84871
84955
  sap.ui.core.ILabelable,
84872
84956
  sap.m.IOverflowToolbarContent,
84873
- /* was: sap.m.IToolbarInteractiveControl */ Object
84957
+ sap.m.IToolbarInteractiveControl
84874
84958
  {
84875
84959
  __implements__sap_ui_core_Label: boolean;
84876
84960
  __implements__sap_ui_core_IShrinkable: boolean;
@@ -85787,7 +85871,7 @@ declare namespace sap {
85787
85871
  sap.ui.core.ITitleContent,
85788
85872
  sap.ui.core.IAccessKeySupport,
85789
85873
  sap.ui.core.ILabelable,
85790
- /* was: sap.m.IToolbarInteractiveControl */ Object
85874
+ sap.m.IToolbarInteractiveControl
85791
85875
  {
85792
85876
  __implements__sap_ui_core_IShrinkable: boolean;
85793
85877
  __implements__sap_ui_core_IFormContent: boolean;
@@ -91041,7 +91125,7 @@ declare namespace sap {
91041
91125
  */
91042
91126
  class MenuButton
91043
91127
  extends sap.ui.core.Control
91044
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
91128
+ implements sap.m.IToolbarInteractiveControl
91045
91129
  {
91046
91130
  __implements__sap_m_IToolbarInteractiveControl: boolean;
91047
91131
  /**
@@ -96626,8 +96710,8 @@ declare namespace sap {
96626
96710
  * When not to use::
96627
96711
  * - When you need to select only one value.
96628
96712
  * - When you want the user to select from a predefined set of options. Use {@link sap.m.MultiComboBox }
96629
- * instead. Responsive Behavior: If there are many tokens, the control shows only the last selected
96630
- * tokens that fit and for the others a label N-more is provided. In case the length of the last
96713
+ * instead. Responsive Behavior: If there are many tokens, the control shows only the first selected
96714
+ * tokens that fit and for the others a label N-more is provided. In case the length of the first
96631
96715
  * selected token is exceeding the width of the control, only a label N-Items is shown. In both cases,
96632
96716
  * pressing on the label will show the tokens in a popup. On Phones:
96633
96717
  * - Only the last entered token is displayed.
@@ -105612,7 +105696,7 @@ declare namespace sap {
105612
105696
  implements
105613
105697
  sap.f.IShellBar,
105614
105698
  sap.m.IOverflowToolbarContent,
105615
- /* was: sap.m.IToolbarInteractiveControl */ Object
105699
+ sap.m.IToolbarInteractiveControl
105616
105700
  {
105617
105701
  __implements__sap_f_IShellBar: boolean;
105618
105702
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -116475,27 +116559,17 @@ declare namespace sap {
116475
116559
  sAppointmentRoundWidth?: sap.ui.unified.CalendarAppointmentRoundWidth
116476
116560
  ): this;
116477
116561
  /**
116478
- * Sets a new value for property {@link #getAppointmentsReducedHeight appointmentsReducedHeight}.
116479
- *
116480
- * Determines whether the appointments that have only title without text are rendered with smaller height.
116481
- *
116482
- * **Note:** On phone devices this property is ignored, appointments are always rendered in full height
116483
- * to facilitate touching.
116562
+ * Set the appointment reduced height property to the appointments in the calendar
116484
116563
  *
116485
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
116486
- *
116487
- * Default value is `false`.
116488
- *
116489
- * @since 1.38.0
116490
116564
  * @deprecated As of version 1.119. Please use the `appointmentHeight` with value "Automatic" property instead.
116491
116565
  *
116492
- * @returns Reference to `this` in order to allow method chaining
116566
+ * @returns Reference to `this` for method chaining
116493
116567
  */
116494
116568
  setAppointmentsReducedHeight(
116495
116569
  /**
116496
- * New value for property `appointmentsReducedHeight`
116570
+ * if set to true, the appointments will have a reduced height
116497
116571
  */
116498
- bAppointmentsReducedHeight?: boolean
116572
+ bAppointmentsReducedHeight: boolean
116499
116573
  ): this;
116500
116574
  /**
116501
116575
  * Sets a new value for property {@link #getAppointmentsVisualization appointmentsVisualization}.
@@ -123031,9 +123105,7 @@ declare namespace sap {
123031
123105
  */
123032
123106
  class RadioButton
123033
123107
  extends sap.ui.core.Control
123034
- implements
123035
- sap.ui.core.IFormContent,
123036
- /* was: sap.m.IToolbarInteractiveControl */ Object
123108
+ implements sap.ui.core.IFormContent, sap.m.IToolbarInteractiveControl
123037
123109
  {
123038
123110
  __implements__sap_ui_core_IFormContent: boolean;
123039
123111
  __implements__sap_m_IToolbarInteractiveControl: boolean;
@@ -126755,7 +126827,7 @@ declare namespace sap {
126755
126827
  implements
126756
126828
  sap.ui.core.IFormContent,
126757
126829
  sap.f.IShellBar,
126758
- /* was: sap.m.IToolbarInteractiveControl */ Object
126830
+ sap.m.IToolbarInteractiveControl
126759
126831
  {
126760
126832
  __implements__sap_ui_core_IFormContent: boolean;
126761
126833
  __implements__sap_f_IShellBar: boolean;
@@ -127754,7 +127826,7 @@ declare namespace sap {
127754
127826
  implements
127755
127827
  sap.ui.core.IFormContent,
127756
127828
  sap.m.IOverflowToolbarContent,
127757
- /* was: sap.m.IToolbarInteractiveControl */ Object
127829
+ sap.m.IToolbarInteractiveControl
127758
127830
  {
127759
127831
  __implements__sap_ui_core_IFormContent: boolean;
127760
127832
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -128696,7 +128768,7 @@ declare namespace sap {
128696
128768
  sap.ui.core.ISemanticFormContent,
128697
128769
  sap.ui.core.ILabelable,
128698
128770
  sap.m.IOverflowToolbarContent,
128699
- /* was: sap.m.IToolbarInteractiveControl */ Object,
128771
+ sap.m.IToolbarInteractiveControl,
128700
128772
  sap.f.IShellBar
128701
128773
  {
128702
128774
  __implements__sap_ui_core_IFormContent: boolean;
@@ -136907,7 +136979,7 @@ declare namespace sap {
136907
136979
  implements
136908
136980
  sap.ui.core.IFormContent,
136909
136981
  sap.ui.core.ISemanticFormContent,
136910
- /* was: sap.m.IToolbarInteractiveControl */ Object
136982
+ sap.m.IToolbarInteractiveControl
136911
136983
  {
136912
136984
  __implements__sap_ui_core_IFormContent: boolean;
136913
136985
  __implements__sap_ui_core_ISemanticFormContent: boolean;
@@ -142391,7 +142463,7 @@ declare namespace sap {
142391
142463
  implements
142392
142464
  sap.ui.core.IFormContent,
142393
142465
  sap.m.IOverflowToolbarContent,
142394
- /* was: sap.m.IToolbarInteractiveControl */ Object
142466
+ sap.m.IToolbarInteractiveControl
142395
142467
  {
142396
142468
  __implements__sap_ui_core_IFormContent: boolean;
142397
142469
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -146675,7 +146747,7 @@ declare namespace sap {
146675
146747
  sap.ui.core.IFormContent,
146676
146748
  sap.ui.core.ISemanticFormContent,
146677
146749
  sap.ui.core.ILabelable,
146678
- /* was: sap.m.IToolbarInteractiveControl */ Object
146750
+ sap.m.IToolbarInteractiveControl
146679
146751
  {
146680
146752
  __implements__sap_ui_core_IShrinkable: boolean;
146681
146753
  __implements__sap_ui_core_IFormContent: boolean;
@@ -150817,9 +150889,7 @@ declare namespace sap {
150817
150889
  */
150818
150890
  class Title
150819
150891
  extends sap.ui.core.Control
150820
- implements
150821
- sap.ui.core.IShrinkable,
150822
- /* was: sap.m.IToolbarInteractiveControl */ Object
150892
+ implements sap.ui.core.IShrinkable, sap.m.IToolbarInteractiveControl
150823
150893
  {
150824
150894
  __implements__sap_ui_core_IShrinkable: boolean;
150825
150895
  __implements__sap_m_IToolbarInteractiveControl: boolean;
@@ -151236,7 +151306,7 @@ declare namespace sap {
151236
151306
  */
151237
151307
  class ToggleButton
151238
151308
  extends sap.m.Button
151239
- implements /* was: sap.m.IToolbarInteractiveControl */ Object
151309
+ implements sap.m.IToolbarInteractiveControl
151240
151310
  {
151241
151311
  __implements__sap_m_IToolbarInteractiveControl: boolean;
151242
151312
  /**
@@ -152182,6 +152252,12 @@ declare namespace sap {
152182
152252
  */
152183
152253
  fValidator: Function
152184
152254
  ): void;
152255
+ /**
152256
+ * Function to execute after the n-more popover is closed.
152257
+ *
152258
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
152259
+ */
152260
+ afterPopupClose(): void;
152185
152261
  /**
152186
152262
  * Attaches event handler `fnFunction` to the {@link #event:renderModeChange renderModeChange} event of
152187
152263
  * this `sap.m.Tokenizer`.
@@ -157667,7 +157743,7 @@ declare namespace sap {
157667
157743
  implements
157668
157744
  sap.ui.core.IShrinkable,
157669
157745
  sap.m.IOverflowToolbarContent,
157670
- /* was: sap.m.IToolbarInteractiveControl */ Object
157746
+ sap.m.IToolbarInteractiveControl
157671
157747
  {
157672
157748
  __implements__sap_ui_core_IShrinkable: boolean;
157673
157749
  __implements__sap_m_IOverflowToolbarContent: boolean;
@@ -164257,20 +164333,52 @@ declare namespace sap {
164257
164333
  Base = "Base",
164258
164334
  /**
164259
164335
  * Dialog `Illustration` size (M breakpoint). Suitable for dialogs.
164336
+ *
164337
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Medium}
164260
164338
  */
164261
164339
  Dialog = "Dialog",
164262
164340
  /**
164263
164341
  * Dot `Illustration` size (XS breakpoint). Suitable for spaces with little vertical space.
164264
164342
  *
164265
164343
  * @since 1.108
164344
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.ExtraSmall}
164266
164345
  */
164267
164346
  Dot = "Dot",
164347
+ /**
164348
+ * Extra Small `Illustration` size. Alias for `Dot` size (XS breakpoint). Suitable for spaces with little
164349
+ * vertical space.
164350
+ *
164351
+ * @since 1.136
164352
+ */
164353
+ ExtraSmall = "Dot",
164354
+ /**
164355
+ * Large `Illustration` size. Alias for `Scene` size (L breakpoint). Suitable for a `Page` or a table.
164356
+ *
164357
+ * @since 1.136
164358
+ */
164359
+ Large = "Scene",
164360
+ /**
164361
+ * Medium `Illustration` size. Alias for `Dialog` size (M breakpoint). Suitable for dialogs.
164362
+ *
164363
+ * @since 1.136
164364
+ */
164365
+ Medium = "Dialog",
164268
164366
  /**
164269
164367
  * Scene `Illustration` size (L breakpoint). Suitable for a `Page` or a table.
164368
+ *
164369
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Large}
164270
164370
  */
164271
164371
  Scene = "Scene",
164372
+ /**
164373
+ * Small `Illustration` size. Alias for `Spot` size (S breakpoint). Suitable for cards (four columns).
164374
+ *
164375
+ * @since 1.136
164376
+ */
164377
+ Small = "Spot",
164272
164378
  /**
164273
164379
  * Spot `Illustration` size (S breakpoint). Suitable for cards (four columns).
164380
+ *
164381
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageSize.Small}
164274
164382
  */
164275
164383
  Spot = "Spot",
164276
164384
  }
@@ -164280,18 +164388,34 @@ declare namespace sap {
164280
164388
  * @since 1.98
164281
164389
  */
164282
164390
  enum IllustratedMessageType {
164391
+ /**
164392
+ * "Achievement" illustration type.
164393
+ */
164394
+ Achievement = "sapIllus-Achievement",
164283
164395
  /**
164284
164396
  * "Add Column" illustration type.
164397
+ *
164398
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.AddingColumns}
164285
164399
  */
164286
164400
  AddColumn = "sapIllus-AddColumn",
164287
164401
  /**
164288
164402
  * "Add Dimensions" illustration type.
164289
164403
  */
164290
164404
  AddDimensions = "sapIllus-AddDimensions",
164405
+ /**
164406
+ * "Adding Columns" illustration type.
164407
+ */
164408
+ AddingColumns = "sapIllus-AddingColumns",
164291
164409
  /**
164292
164410
  * "Add People" illustration type.
164411
+ *
164412
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.AddPeopleToCalendar}
164293
164413
  */
164294
164414
  AddPeople = "sapIllus-AddPeople",
164415
+ /**
164416
+ * "Add People To Calendar" illustration type.
164417
+ */
164418
+ AddPeopleToCalendar = "sapIllus-AddPeopleToCalendar",
164295
164419
  /**
164296
164420
  * "Balloon Sky" illustration type.
164297
164421
  */
@@ -164304,12 +164428,20 @@ declare namespace sap {
164304
164428
  * "Connection" illustration type.
164305
164429
  */
164306
164430
  Connection = "sapIllus-Connection",
164431
+ /**
164432
+ * "Drag Files To Upload" illustration type.
164433
+ */
164434
+ DragFilesToUpload = "sapIllus-DragFilesToUpload",
164307
164435
  /**
164308
164436
  * "Empty Calendar" illustration type.
164437
+ *
164438
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoActivities}
164309
164439
  */
164310
164440
  EmptyCalendar = "sapIllus-EmptyCalendar",
164311
164441
  /**
164312
164442
  * "Empty List" illustration type.
164443
+ *
164444
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoEntries}
164313
164445
  */
164314
164446
  EmptyList = "sapIllus-EmptyList",
164315
164447
  /**
@@ -164318,16 +164450,34 @@ declare namespace sap {
164318
164450
  EmptyPlanningCalendar = "sapIllus-EmptyPlanningCalendar",
164319
164451
  /**
164320
164452
  * "Error Screen" illustration type.
164453
+ *
164454
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToUpload}
164321
164455
  */
164322
164456
  ErrorScreen = "sapIllus-ErrorScreen",
164457
+ /**
164458
+ * "Filtering Columns" illustration type.
164459
+ */
164460
+ FilteringColumns = "sapIllus-FilteringColumns",
164323
164461
  /**
164324
164462
  * "Filter Table" illustration type.
164463
+ *
164464
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.FilteringColumns}
164325
164465
  */
164326
164466
  FilterTable = "sapIllus-FilterTable",
164467
+ /**
164468
+ * "Grouping Columns" illustration type.
164469
+ */
164470
+ GroupingColumns = "sapIllus-GroupingColumns",
164327
164471
  /**
164328
164472
  * "Group Table" illustration type.
164473
+ *
164474
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.GroupingColumns}
164329
164475
  */
164330
164476
  GroupTable = "sapIllus-GroupTable",
164477
+ /**
164478
+ * "KeyTask" illustration type.
164479
+ */
164480
+ KeyTask = "sapIllus-KeyTask",
164331
164481
  /**
164332
164482
  * "New Mail" illustration type.
164333
164483
  */
@@ -164336,6 +164486,10 @@ declare namespace sap {
164336
164486
  * "No Activities" illustration type.
164337
164487
  */
164338
164488
  NoActivities = "sapIllus-NoActivities",
164489
+ /**
164490
+ * "No Chart Data" illustration type.
164491
+ */
164492
+ NoChartData = "sapIllus-NoChartData",
164339
164493
  /**
164340
164494
  * "No Columns Set" illustration type.
164341
164495
  */
@@ -164346,6 +164500,8 @@ declare namespace sap {
164346
164500
  NoData = "sapIllus-NoData",
164347
164501
  /**
164348
164502
  * "No Dimensions Set" illustration type.
164503
+ *
164504
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoChartData}
164349
164505
  */
164350
164506
  NoDimensionsSet = "sapIllus-NoDimensionsSet",
164351
164507
  /**
@@ -164362,6 +164518,8 @@ declare namespace sap {
164362
164518
  NoMail = "sapIllus-NoMail",
164363
164519
  /**
164364
164520
  * "No Email v1" illustration type.
164521
+ *
164522
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoMail}
164365
164523
  */
164366
164524
  NoMailV1 = "sapIllus-NoMail_v1",
164367
164525
  /**
@@ -164374,6 +164532,8 @@ declare namespace sap {
164374
164532
  NoSavedItems = "sapIllus-NoSavedItems",
164375
164533
  /**
164376
164534
  * "No Saved Items v1" illustration type.
164535
+ *
164536
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSavedItems}
164377
164537
  */
164378
164538
  NoSavedItemsV1 = "sapIllus-NoSavedItems_v1",
164379
164539
  /**
@@ -164386,26 +164546,44 @@ declare namespace sap {
164386
164546
  NoTasks = "sapIllus-NoTasks",
164387
164547
  /**
164388
164548
  * "No Tasks v1" illustration type.
164549
+ *
164550
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoTasks}
164389
164551
  */
164390
164552
  NoTasksV1 = "sapIllus-NoTasks_v1",
164391
164553
  /**
164392
164554
  * "Page Not Found" illustration type.
164393
164555
  */
164394
164556
  PageNotFound = "sapIllus-PageNotFound",
164557
+ /**
164558
+ * "Receive Appreciation" illustration type.
164559
+ */
164560
+ ReceiveAppreciation = "sapIllus-ReceiveAppreciation",
164395
164561
  /**
164396
164562
  * "Reload Screen" illustration type.
164563
+ *
164564
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
164397
164565
  */
164398
164566
  ReloadScreen = "sapIllus-ReloadScreen",
164399
164567
  /**
164400
164568
  * "Resize Column" illustration type.
164569
+ *
164570
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ResizingColumns}
164401
164571
  */
164402
164572
  ResizeColumn = "sapIllus-ResizeColumn",
164573
+ /**
164574
+ * "Resizing Columns" illustration type.
164575
+ */
164576
+ ResizingColumns = "sapIllus-ResizingColumns",
164403
164577
  /**
164404
164578
  * "Search Earth" illustration type.
164579
+ *
164580
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.BeforeSearch}
164405
164581
  */
164406
164582
  SearchEarth = "sapIllus-SearchEarth",
164407
164583
  /**
164408
164584
  * "Search Folder" illustration type.
164585
+ *
164586
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSearchResults}
164409
164587
  */
164410
164588
  SearchFolder = "sapIllus-SearchFolder",
164411
164589
  /**
@@ -164414,18 +164592,26 @@ declare namespace sap {
164414
164592
  SignOut = "sapIllus-SignOut",
164415
164593
  /**
164416
164594
  * "Simple Balloon" illustration type.
164595
+ *
164596
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
164417
164597
  */
164418
164598
  SimpleBalloon = "sapIllus-SimpleBalloon",
164419
164599
  /**
164420
164600
  * "Simple Bell" illustration type.
164601
+ *
164602
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoNotifications}
164421
164603
  */
164422
164604
  SimpleBell = "sapIllus-SimpleBell",
164423
164605
  /**
164424
164606
  * "Simple Calendar" illustration type.
164607
+ *
164608
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoActivities}
164425
164609
  */
164426
164610
  SimpleCalendar = "sapIllus-SimpleCalendar",
164427
164611
  /**
164428
164612
  * "Simple CheckMark" illustration type.
164613
+ *
164614
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
164429
164615
  */
164430
164616
  SimpleCheckMark = "sapIllus-SimpleCheckMark",
164431
164617
  /**
@@ -164434,62 +164620,96 @@ declare namespace sap {
164434
164620
  SimpleConnection = "sapIllus-SimpleConnection",
164435
164621
  /**
164436
164622
  * "Simple Empty Doc" illustration type.
164623
+ *
164624
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoData}
164437
164625
  */
164438
164626
  SimpleEmptyDoc = "sapIllus-SimpleEmptyDoc",
164439
164627
  /**
164440
164628
  * "Simple Empty List" illustration type.
164629
+ *
164630
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoEntries}
164441
164631
  */
164442
164632
  SimpleEmptyList = "sapIllus-SimpleEmptyList",
164443
164633
  /**
164444
164634
  * "Simple Error" illustration type.
164635
+ *
164636
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToUpload}
164445
164637
  */
164446
164638
  SimpleError = "sapIllus-SimpleError",
164447
164639
  /**
164448
164640
  * "Simple Magnifier" illustration type.
164641
+ *
164642
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.BeforeSearch}
164449
164643
  */
164450
164644
  SimpleMagnifier = "sapIllus-SimpleMagnifier",
164451
164645
  /**
164452
164646
  * "Simple Mail" illustration type.
164647
+ *
164648
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoMail}
164453
164649
  */
164454
164650
  SimpleMail = "sapIllus-SimpleMail",
164455
164651
  /**
164456
164652
  * "Simple No Saved Items" illustration type.
164653
+ *
164654
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSavedItems}
164457
164655
  */
164458
164656
  SimpleNoSavedItems = "sapIllus-SimpleNoSavedItems",
164459
164657
  /**
164460
164658
  * "Simple Not Found Magnifier" illustration type.
164659
+ *
164660
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoSearchResults}
164461
164661
  */
164462
164662
  SimpleNotFoundMagnifier = "sapIllus-SimpleNotFoundMagnifier",
164463
164663
  /**
164464
164664
  * "Simple Reload" illustration type.
164665
+ *
164666
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
164465
164667
  */
164466
164668
  SimpleReload = "sapIllus-SimpleReload",
164467
164669
  /**
164468
164670
  * "Simple Task" illustration type.
164671
+ *
164672
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoTasks}
164469
164673
  */
164470
164674
  SimpleTask = "sapIllus-SimpleTask",
164471
164675
  /**
164472
164676
  * "Sleeping Bell" illustration type.
164677
+ *
164678
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoNotifications}
164473
164679
  */
164474
164680
  SleepingBell = "sapIllus-SleepingBell",
164475
164681
  /**
164476
164682
  * "Sort Column" illustration type.
164683
+ *
164684
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.SortingColumns}
164477
164685
  */
164478
164686
  SortColumn = "sapIllus-SortColumn",
164687
+ /**
164688
+ * "Sorting Columns" illustration type.
164689
+ */
164690
+ SortingColumns = "sapIllus-SortingColumns",
164479
164691
  /**
164480
164692
  * "Success Balloon" illustration type.
164693
+ *
164694
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
164481
164695
  */
164482
164696
  SuccessBalloon = "sapIllus-SuccessBalloon",
164483
164697
  /**
164484
164698
  * "Success CheckMark" illustration type.
164699
+ *
164700
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
164485
164701
  */
164486
164702
  SuccessCheckMark = "sapIllus-SuccessCheckMark",
164487
164703
  /**
164488
164704
  * "Success HighFive" illustration type.
164705
+ *
164706
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
164489
164707
  */
164490
164708
  SuccessHighFive = "sapIllus-SuccessHighFive",
164491
164709
  /**
164492
164710
  * "Success Screen" illustration type.
164711
+ *
164712
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.KeyTask}
164493
164713
  */
164494
164714
  SuccessScreen = "sapIllus-SuccessScreen",
164495
164715
  /**
@@ -164498,6 +164718,8 @@ declare namespace sap {
164498
164718
  Survey = "sapIllus-Survey",
164499
164719
  /**
164500
164720
  * "Tent" illustration type.
164721
+ *
164722
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.NoData}
164501
164723
  */
164502
164724
  Tent = "sapIllus-Tent",
164503
164725
  /**
@@ -164514,12 +164736,18 @@ declare namespace sap {
164514
164736
  UnableToUpload = "sapIllus-UnableToUpload",
164515
164737
  /**
164516
164738
  * "Upload Collection" illustration type.
164739
+ *
164740
+ * @deprecated As of version 1.135. replaced by {@link sap.m.IllustratedMessageType.DragFilesToUpload}
164517
164741
  */
164518
164742
  UploadCollection = "sapIllus-UploadCollection",
164519
164743
  /**
164520
164744
  * "Upload To Cloud" illustration type.
164521
164745
  */
164522
164746
  UploadToCloud = "sapIllus-UploadToCloud",
164747
+ /**
164748
+ * "User has signed up for an application" illustration type.
164749
+ */
164750
+ UserHasSignedUp = "sapIllus-UserHasSignedUp",
164523
164751
  }
164524
164752
  /**
164525
164753
  * Determines how the source image is used on the output DOM element.
@@ -166874,6 +167102,8 @@ declare namespace sap {
166874
167102
  * In case the less parameter color cannot be determined, the validation fails. You need to check if less
166875
167103
  * parameters are supported on control level. An empty string is also allowed and has the same effect as
166876
167104
  * setting no color.
167105
+ *
167106
+ * @deprecated As of version 1.135. the concept has been discarded.
166877
167107
  */
166878
167108
  type ValueCSSColor = string;
166879
167109