@sapui5/ts-types 1.120.8 → 1.121.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 (65) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +50 -18
  4. package/types/sap.ca.ui.d.ts +1114 -546
  5. package/types/sap.chart.d.ts +17 -1
  6. package/types/sap.collaboration.d.ts +185 -64
  7. package/types/sap.esh.search.ui.d.ts +2 -1960
  8. package/types/sap.f.d.ts +124 -45
  9. package/types/sap.fe.core.d.ts +212 -191
  10. package/types/sap.fe.macros.d.ts +371 -531
  11. package/types/sap.fe.navigation.d.ts +59 -26
  12. package/types/sap.fe.placeholder.d.ts +1 -1
  13. package/types/sap.fe.plugins.managecache.d.ts +7 -0
  14. package/types/sap.fe.templates.d.ts +16 -11
  15. package/types/sap.fe.test.d.ts +333 -33
  16. package/types/sap.fe.tools.d.ts +1 -1
  17. package/types/sap.feedback.ui.d.ts +1 -1
  18. package/types/sap.gantt.d.ts +3947 -1754
  19. package/types/sap.insights.d.ts +162 -43
  20. package/types/sap.m.d.ts +2023 -289
  21. package/types/sap.makit.d.ts +11 -1
  22. package/types/sap.me.d.ts +7 -1
  23. package/types/sap.ndc.d.ts +1 -1
  24. package/types/sap.ovp.d.ts +9 -7
  25. package/types/sap.rules.ui.d.ts +134 -75
  26. package/types/sap.sac.df.d.ts +272 -49
  27. package/types/sap.suite.ui.commons.d.ts +4231 -1008
  28. package/types/sap.suite.ui.generic.template.d.ts +38 -48
  29. package/types/sap.suite.ui.microchart.d.ts +66 -1
  30. package/types/sap.tnt.d.ts +601 -116
  31. package/types/sap.ui.codeeditor.d.ts +10 -6
  32. package/types/sap.ui.commons.d.ts +86 -8
  33. package/types/sap.ui.comp.d.ts +259 -110
  34. package/types/sap.ui.core.d.ts +471 -186
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +16 -3
  37. package/types/sap.ui.fl.d.ts +91 -68
  38. package/types/sap.ui.generic.app.d.ts +250 -193
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +51 -4
  41. package/types/sap.ui.layout.d.ts +221 -26
  42. package/types/sap.ui.mdc.d.ts +1516 -787
  43. package/types/sap.ui.richtexteditor.d.ts +4 -1
  44. package/types/sap.ui.rta.d.ts +1 -1
  45. package/types/sap.ui.suite.d.ts +3 -1
  46. package/types/sap.ui.support.d.ts +28 -4
  47. package/types/sap.ui.table.d.ts +65 -11
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +157 -54
  50. package/types/sap.ui.ux3.d.ts +30 -12
  51. package/types/sap.ui.vbm.d.ts +5300 -2517
  52. package/types/sap.ui.vk.d.ts +2742 -836
  53. package/types/sap.ui.vtm.d.ts +685 -215
  54. package/types/sap.ui.webc.common.d.ts +1 -1
  55. package/types/sap.ui.webc.fiori.d.ts +49 -1
  56. package/types/sap.ui.webc.main.d.ts +144 -9
  57. package/types/sap.uiext.inbox.d.ts +1 -1
  58. package/types/sap.ushell.d.ts +977 -535
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +55 -5
  61. package/types/sap.viz.d.ts +86 -1
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +79 -18
  64. package/types/sap.zen.crosstab.d.ts +83 -15
  65. package/types/sap.zen.dsh.d.ts +194 -143
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.8
1
+ // For Library Version: 1.121.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -196,8 +196,7 @@ declare namespace sap {
196
196
  change?: (oEvent: BasePanel$ChangeEvent) => void;
197
197
  }
198
198
 
199
- interface $GroupPanelSettings
200
- extends /* was: sap.m.p13n.$QueryPanelSettings */ Object {
199
+ interface $GroupPanelSettings extends sap.m.p13n.$QueryPanelSettings {
201
200
  /**
202
201
  * A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
203
202
  * in a `sap.m.p13n.Popup`.
@@ -266,6 +265,16 @@ declare namespace sap {
266
265
  close?: (oEvent: Popup$CloseEvent) => void;
267
266
  }
268
267
 
268
+ interface $QueryPanelSettings extends sap.m.p13n.$BasePanelSettings {
269
+ /**
270
+ * The limit for the number of queries that can be created by the user. By default, no query limit is provided.
271
+ */
272
+ queryLimit?:
273
+ | int
274
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
275
+ | `{${string}}`;
276
+ }
277
+
269
278
  interface $SelectionPanelSettings extends sap.m.p13n.$BasePanelSettings {
270
279
  /**
271
280
  * A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
@@ -321,8 +330,7 @@ declare namespace sap {
321
330
  | `{${string}}`;
322
331
  }
323
332
 
324
- interface $SortPanelSettings
325
- extends /* was: sap.m.p13n.$QueryPanelSettings */ Object {
333
+ interface $SortPanelSettings extends sap.m.p13n.$QueryPanelSettings {
326
334
  /**
327
335
  * A short text describing the panel. **Note:** This text will only be displayed if the panel is being used
328
336
  * in a `sap.m.p13n.Popup`.
@@ -517,6 +525,18 @@ declare namespace sap {
517
525
  * @returns Value of property `enableReorder`
518
526
  */
519
527
  getEnableReorder(): boolean;
528
+ /**
529
+ * Gets the corresponding `sap.m.p13n.Item` for the provided key.
530
+ *
531
+ *
532
+ * @returns The personalization model item
533
+ */
534
+ getItemByKey(
535
+ /**
536
+ * The unique identifier
537
+ */
538
+ sName: string
539
+ ): sap.m.p13n.Item | null;
520
540
  /**
521
541
  * Getter for the `messageStrip` aggregation.
522
542
  *
@@ -810,14 +830,78 @@ declare namespace sap {
810
830
  }
811
831
  ): Promise<sap.m.p13n.Popup>;
812
832
  }
833
+ /**
834
+ * The `FilterController` entity serves as a base class to create personalization implementations that are
835
+ * specific to filtering.
836
+ *
837
+ * @since 1.121
838
+ */
839
+ class FilterController extends sap.m.p13n.SelectionController {
840
+ /**
841
+ * Constructor for a new `FilterController`.
842
+ */
843
+ constructor(
844
+ /**
845
+ * Initial settings for the new controller
846
+ */
847
+ mSettings: {
848
+ /**
849
+ * The control instance that is personalized by this controller
850
+ */
851
+ control: sap.ui.core.Control;
852
+ /**
853
+ * A factory function that will be called whenever the user selects a new entry from the `ComboBox`. The
854
+ * factory must return a single control instance of an input based control to provide custom filter capabilities.
855
+ * This control is then going to be added in the layout provided by the `FilterPanel`. **Note:**: The Panel
856
+ * will not handle the lifecylce of the provided factory control instance, in case the row is going to be
857
+ * removed, the according consumer needs to decide about destroying or keeping the control instance. In
858
+ * addition, the `getIdForLabel` method can be used to return a focusable children control to provide the
859
+ * `labelFor` reference.
860
+ */
861
+ itemFactory?: Function;
862
+ }
863
+ );
864
+
865
+ /**
866
+ * Creates a new subclass of class sap.m.p13n.FilterController with name `sClassName` and enriches it with
867
+ * the information contained in `oClassInfo`.
868
+ *
869
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.p13n.SelectionController.extend}.
870
+ *
871
+ *
872
+ * @returns Created class / constructor function
873
+ */
874
+ static extend<T extends Record<string, unknown>>(
875
+ /**
876
+ * Name of the class being created
877
+ */
878
+ sClassName: string,
879
+ /**
880
+ * Object literal with information about the class
881
+ */
882
+ oClassInfo?: sap.ClassInfo<T, sap.m.p13n.FilterController>,
883
+ /**
884
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
885
+ * used by this class
886
+ */
887
+ FNMetaImpl?: Function
888
+ ): Function;
889
+ /**
890
+ * Returns a metadata object for class sap.m.p13n.FilterController.
891
+ *
892
+ *
893
+ * @returns Metadata object describing this class
894
+ */
895
+ static getMetadata(): sap.ui.base.Metadata;
896
+ }
813
897
  /**
814
898
  * The `GroupController` entity serves as a base class to create group-specific personalization implementations.
815
899
  *
816
900
  * @since 1.104
817
901
  */
818
- class GroupController extends sap.ui.base.Object {
902
+ class GroupController extends sap.m.p13n.SelectionController {
819
903
  /**
820
- * /** Constructor for a new `GroupController`.
904
+ * Constructor for a new `GroupController`.
821
905
  */
822
906
  constructor(
823
907
  /**
@@ -835,7 +919,7 @@ declare namespace sap {
835
919
  * This control can be used to customize personalization content for grouping for an associated control
836
920
  * instance.
837
921
  */
838
- class GroupPanel /* was: sap.m.p13n.QueryPanel */ extends Object {
922
+ class GroupPanel extends sap.m.p13n.QueryPanel {
839
923
  /**
840
924
  * Constructor for a new `GroupPanel`.
841
925
  *
@@ -908,7 +992,7 @@ declare namespace sap {
908
992
  /**
909
993
  * An array containing the personalization state
910
994
  */
911
- aP13nData: sap.m.p13n.GroupItem
995
+ aP13nData: sap.m.p13n.GroupItem[]
912
996
  ): sap.m.p13n.GroupPanel;
913
997
  /**
914
998
  * Gets current value of property {@link #getEnableShowField enableShowField}.
@@ -1036,7 +1120,7 @@ declare namespace sap {
1036
1120
  *
1037
1121
  * @returns Array of properties
1038
1122
  */
1039
- getProperties(): sap.m.p13n.MetadataObject[];
1123
+ getProperties(): object[];
1040
1124
  /**
1041
1125
  * Gets a single property.
1042
1126
  *
@@ -1048,7 +1132,7 @@ declare namespace sap {
1048
1132
  * The property key identifying a property entry
1049
1133
  */
1050
1134
  sKey: string
1051
- ): sap.m.p13n.MetadataObject;
1135
+ ): object;
1052
1136
  }
1053
1137
  /**
1054
1138
  * This control can be used to show personalization-related content in different popup controls.
@@ -1461,6 +1545,116 @@ declare namespace sap {
1461
1545
  sWarningText: string
1462
1546
  ): this;
1463
1547
  }
1548
+ /**
1549
+ * This control serves as base class for a query builder like personalization implementation.
1550
+ *
1551
+ * @since 1.96
1552
+ */
1553
+ class QueryPanel extends sap.m.p13n.BasePanel {
1554
+ /**
1555
+ * Constructor for a new `QueryPanel`.
1556
+ *
1557
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
1558
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1559
+ * of the syntax of the settings object.
1560
+ */
1561
+ constructor(
1562
+ /**
1563
+ * Initial settings for the new control
1564
+ */
1565
+ mSettings?: sap.m.p13n.$QueryPanelSettings
1566
+ );
1567
+ /**
1568
+ * Constructor for a new `QueryPanel`.
1569
+ *
1570
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
1571
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1572
+ * of the syntax of the settings object.
1573
+ */
1574
+ constructor(
1575
+ /**
1576
+ * ID for the new control, generated automatically if no ID is given
1577
+ */
1578
+ sId?: string,
1579
+ /**
1580
+ * Initial settings for the new control
1581
+ */
1582
+ mSettings?: sap.m.p13n.$QueryPanelSettings
1583
+ );
1584
+
1585
+ /**
1586
+ * Creates a new subclass of class sap.m.p13n.QueryPanel with name `sClassName` and enriches it with the
1587
+ * information contained in `oClassInfo`.
1588
+ *
1589
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.p13n.BasePanel.extend}.
1590
+ *
1591
+ *
1592
+ * @returns Created class / constructor function
1593
+ */
1594
+ static extend<T extends Record<string, unknown>>(
1595
+ /**
1596
+ * Name of the class being created
1597
+ */
1598
+ sClassName: string,
1599
+ /**
1600
+ * Object literal with information about the class
1601
+ */
1602
+ oClassInfo?: sap.ClassInfo<T, sap.m.p13n.QueryPanel>,
1603
+ /**
1604
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
1605
+ * used by this class
1606
+ */
1607
+ FNMetaImpl?: Function
1608
+ ): Function;
1609
+ /**
1610
+ * Returns a metadata object for class sap.m.p13n.QueryPanel.
1611
+ *
1612
+ *
1613
+ * @returns Metadata object describing this class
1614
+ */
1615
+ static getMetadata(): sap.ui.core.ElementMetadata;
1616
+ /**
1617
+ * Gets current value of property {@link #getQueryLimit queryLimit}.
1618
+ *
1619
+ * The limit for the number of queries that can be created by the user. By default, no query limit is provided.
1620
+ *
1621
+ * Default value is `-1`.
1622
+ *
1623
+ *
1624
+ * @returns Value of property `queryLimit`
1625
+ */
1626
+ getQueryLimit(): int;
1627
+ /**
1628
+ * Sets the personalization state of the panel instance.
1629
+ *
1630
+ *
1631
+ * @returns The `QueryPanel` instance
1632
+ */
1633
+ setP13nData(
1634
+ /**
1635
+ * An array containing the personalization state that is represented by the `QueryPanel`
1636
+ */
1637
+ aP13nData: sap.m.p13n.Item[]
1638
+ ): this;
1639
+ /**
1640
+ * Sets a new value for property {@link #getQueryLimit queryLimit}.
1641
+ *
1642
+ * The limit for the number of queries that can be created by the user. By default, no query limit is provided.
1643
+ *
1644
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1645
+ *
1646
+ * Default value is `-1`.
1647
+ *
1648
+ *
1649
+ * @returns Reference to `this` in order to allow method chaining
1650
+ */
1651
+ setQueryLimit(
1652
+ /**
1653
+ * New value for property `queryLimit`
1654
+ */
1655
+ iQueryLimit?: int
1656
+ ): this;
1657
+ }
1464
1658
  /**
1465
1659
  * The `SelectionController` entity serves as a base class to create control-specific personalization implementations.
1466
1660
  */
@@ -1488,6 +1682,16 @@ declare namespace sap {
1488
1682
  * The name of the aggregation that is now managed by this controller
1489
1683
  */
1490
1684
  targetAggregation: string;
1685
+ /**
1686
+ * If multiple `SelectionController` controls exist for a personalization use case, the `persistenceIdentifier`
1687
+ * property must be added to uniquely identify a `SelectionController` control
1688
+ */
1689
+ persistenceIdentifier?: string;
1690
+ /**
1691
+ * The `{@link sap.m.p13n.MetadataHelper MetadataHelper}` to provide metadata-specific information. It may
1692
+ * be used to define more granular information for the selection of items.
1693
+ */
1694
+ helper?: sap.m.p13n.MetadataHelper;
1491
1695
  }
1492
1696
  );
1493
1697
 
@@ -1873,7 +2077,7 @@ declare namespace sap {
1873
2077
  *
1874
2078
  * @since 1.96
1875
2079
  */
1876
- class SortPanel /* was: sap.m.p13n.QueryPanel */ extends Object {
2080
+ class SortPanel extends sap.m.p13n.QueryPanel {
1877
2081
  /**
1878
2082
  * Constructor for a new `SortPanel`.
1879
2083
  *
@@ -1946,7 +2150,7 @@ declare namespace sap {
1946
2150
  /**
1947
2151
  * An array containing the personalization state
1948
2152
  */
1949
- aP13nData: sap.m.p13n.SortItem
2153
+ aP13nData: sap.m.p13n.SortItem[]
1950
2154
  ): sap.m.p13n.SortPanel;
1951
2155
  /**
1952
2156
  * Gets current value of property {@link #getTitle title}.
@@ -1989,7 +2193,8 @@ declare namespace sap {
1989
2193
  */
1990
2194
  type EngineRegistrationConfig = {
1991
2195
  /**
1992
- * The `{@link sap.m.p13n.modification.MetadataHelper MetadataHelper}` to provide metadata-specific information.
2196
+ * The `{@link sap.m.p13n.MetadataHelper MetadataHelper}` to provide metadata-specific information. It may
2197
+ * be used to define more granular information for the selection of items.
1993
2198
  */
1994
2199
  helper: sap.m.p13n.MetadataHelper;
1995
2200
  /**
@@ -1999,6 +2204,30 @@ declare namespace sap {
1999
2204
  controller: Record<string, sap.m.p13n.SelectionController>;
2000
2205
  };
2001
2206
 
2207
+ /**
2208
+ * Personalization `FilterState` object type. This object describes the state processed by this controller
2209
+ * when accessing it through the {@link sap.m.p13n.Engine Engine}.
2210
+ */
2211
+ type FilterState = Record<string, sap.m.p13n.FilterStateItem[]>;
2212
+
2213
+ /**
2214
+ * Personalization `FilterStateItem` object type. This object describes a single filter condition.
2215
+ */
2216
+ type FilterStateItem = {
2217
+ /**
2218
+ * The operator of the condition
2219
+ */
2220
+ operator: string;
2221
+ /**
2222
+ * The values of the condition
2223
+ */
2224
+ values: string[];
2225
+ /**
2226
+ * Defines whether the item is filtered (if a filter state is provided, it's filtered automatically)
2227
+ */
2228
+ filtered?: boolean;
2229
+ };
2230
+
2002
2231
  /**
2003
2232
  * P13n `GroupItem` object type.
2004
2233
  */
@@ -2056,8 +2285,6 @@ declare namespace sap {
2056
2285
 
2057
2286
  /**
2058
2287
  * Personalization `MetadataObject` type.
2059
- *
2060
- * @experimental (since 1.104)
2061
2288
  */
2062
2289
  type MetadataObject = {
2063
2290
  /**
@@ -2213,6 +2440,8 @@ declare namespace sap {
2213
2440
  *
2214
2441
  * Each action is represented as a button in the message box. The values of this enumeration are used for
2215
2442
  * both, specifying the set of allowed actions as well as reporting back the user choice.
2443
+ *
2444
+ * This enum is part of the 'sap/m/MessageBox' module export and must be accessed by the property 'Action'.
2216
2445
  */
2217
2446
  enum Action {
2218
2447
  /**
@@ -2254,6 +2483,8 @@ declare namespace sap {
2254
2483
  }
2255
2484
  /**
2256
2485
  * Enumeration of the pre-defined icons that can be used in a MessageBox.
2486
+ *
2487
+ * This enum is part of the 'sap/m/MessageBox' module export and must be accessed by the property 'Icon'.
2257
2488
  */
2258
2489
  enum Icon {
2259
2490
  /**
@@ -2283,6 +2514,26 @@ declare namespace sap {
2283
2514
  }
2284
2515
  }
2285
2516
 
2517
+ namespace P13nFilterPanel {
2518
+ type FilterConditionOperations = {
2519
+ exclude: undefined | boolean;
2520
+
2521
+ key: string;
2522
+
2523
+ keyField: string;
2524
+
2525
+ operation: sap.m.P13nConditionOperation;
2526
+
2527
+ showIfGrouped: boolean;
2528
+
2529
+ text: string;
2530
+
2531
+ value1: string;
2532
+
2533
+ value2: string;
2534
+ };
2535
+ }
2536
+
2286
2537
  namespace PlanningCalendar {
2287
2538
  /**
2288
2539
  * A comparison function for appointments.
@@ -2296,6 +2547,25 @@ declare namespace sap {
2296
2547
  }
2297
2548
 
2298
2549
  namespace plugins {
2550
+ namespace CellSelector {
2551
+ /**
2552
+ * A selection object representing the selected cells.
2553
+ *
2554
+ * The selection object contains the selected cells separated into rows and columns. Rows are represented
2555
+ * by their context, while columns are the column instance, which may vary depending on the table type.
2556
+ */
2557
+ type Selection = {
2558
+ /**
2559
+ * The row contexts of the selected cells.
2560
+ */
2561
+ rows: sap.ui.model.Context[];
2562
+ /**
2563
+ * The column instances of the selected cells; the content is based on the owner control.
2564
+ */
2565
+ columns: sap.ui.core.Element[];
2566
+ };
2567
+ }
2568
+
2299
2569
  namespace CopyProvider {
2300
2570
  /**
2301
2571
  * Callback function to exclude certain contexts from being copied to the clipboard.
@@ -2306,14 +2576,52 @@ declare namespace sap {
2306
2576
 
2307
2577
  /**
2308
2578
  * Callback function to extract the cell data that is copied to the clipboard.
2579
+ * - If an array is returned, then each array value will be copied as a separate cell into the clipboard.
2580
+ *
2581
+ * - If `undefined` or `null` is returned, then the cell will be excluded from copying.
2582
+ * - If an object is returned, then it must have the following properties:
2583
+ * `text`: (mandatory) The cell data to be copied to the clipboard as `text/plain` MIME type.
2584
+ * - `html`: (optional) The cell data to be copied to the clipboard as `text/html` MIME type.
2585
+ *
2586
+ *
2587
+ * **Note:** The `CopyProvider` uses the `text/html` MIME type to display the merged cell data shown in
2588
+ * a UI5 table as a single cell in the clipboard. This allows users in applications supporting `text/html`
2589
+ * MIME type, such as `Spreadsheet`, to preserve the cell data format that appears in a UI5 table. The `CopyProvider`
2590
+ * also uses the `text/plain` MIME type to display the merged cell data shown in a UI5 table as separate
2591
+ * clipboard cells. This allows users to edit plain data with applications like `SpreadSheet`, then copy
2592
+ * and paste the data back into a UI5 table, preserving data integrity without in-cell formatting.
2593
+ * Spreadsheet-like applications supporting `text/html` MIME type typically prioritize `text/html` clipboard
2594
+ * data during paste. This means that the data format copied from a UI5 table is preserved with the default
2595
+ * paste operation. Users wanting to make edits can access the individual and unformatted cell data in the
2596
+ * clipboard, which is stored in the text/plain MIME type, by selecting the "Paste Special" option and then
2597
+ * choosing "Unicode Text" in spreadsheet applications.
2598
+ *
2599
+ *
2600
+ * **Note:** Using `text/html` MIME type as a clipboard item might not be supported on all platforms. In
2601
+ * such cases, the `CopyProvider` writes only `text/plain` data to the clipboard. Refer to the `bIncludeHtmlMimeType`
2602
+ * parameter and do not return the object type if this value is `false`.
2603
+ *
2604
+ *
2605
+ * **Note:** Even if the user is on a platform supporting `text/html` MIME type as a clipboard item, currently,
2606
+ * any HTML tags are not allowed; all data is encoded.
2309
2607
  */
2310
2608
  type extractDataHandler = (
2311
2609
  oContextOrRow: sap.ui.model.Context | sap.m.ColumnListItem,
2312
2610
  oColumn:
2313
2611
  | sap.m.Column
2314
2612
  | /* was: sap.ui.table.Column */ any
2315
- | /* was: sap.ui.mdc.table.Column */ any
2316
- ) => any | any[] | undefined | null;
2613
+ | /* was: sap.ui.mdc.table.Column */ any,
2614
+ bIncludeHtmlMimeType: boolean
2615
+ ) =>
2616
+ | any
2617
+ | {
2618
+ text: any;
2619
+
2620
+ html: any;
2621
+ }
2622
+ | any[]
2623
+ | undefined
2624
+ | null;
2317
2625
  }
2318
2626
 
2319
2627
  interface $CellSelectorSettings extends sap.ui.core.$ElementSettings {
@@ -2350,6 +2658,22 @@ declare namespace sap {
2350
2658
  columnResize?: (oEvent: ColumnResizer$ColumnResizeEvent) => void;
2351
2659
  }
2352
2660
 
2661
+ interface $ContextMenuSettingSettings
2662
+ extends sap.ui.core.$ElementSettings {
2663
+ /**
2664
+ * Defines the scope of the context menu actions.
2665
+ *
2666
+ * The scope of the context menu is visually represented to the user by providing a clear indication of
2667
+ * the affected items. The visual cues help users understand the potential impact of their actions.
2668
+ *
2669
+ * **Note:** The scope visualization is only supported if a `sap.m.Menu` is used as context menu.
2670
+ */
2671
+ scope?:
2672
+ | sap.m.plugins.ContextMenuScope
2673
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2674
+ | `{${string}}`;
2675
+ }
2676
+
2353
2677
  interface $CopyProviderSettings extends sap.ui.core.$ElementSettings {
2354
2678
  /**
2355
2679
  * Defines a {@link sap.m.plugins.CopyProvider.extractDataHandler callback function} that gets called for
@@ -2645,6 +2969,19 @@ declare namespace sap {
2645
2969
  */
2646
2970
  FNMetaImpl?: Function
2647
2971
  ): Function;
2972
+ /**
2973
+ * Searches a plugin of the corresponding type in the aggregations of the given `Element` instance. The
2974
+ * first plugin that is found is returned.
2975
+ *
2976
+ *
2977
+ * @returns The found plugin instance or `undefined` if not found
2978
+ */
2979
+ static findOn(
2980
+ /**
2981
+ * The `Element` instance to check for
2982
+ */
2983
+ oElement: sap.ui.core.Element
2984
+ ): sap.ui.core.Element | undefined;
2648
2985
  /**
2649
2986
  * Returns a metadata object for class sap.m.plugins.CellSelector.
2650
2987
  *
@@ -2791,6 +3128,19 @@ declare namespace sap {
2791
3128
  */
2792
3129
  FNMetaImpl?: Function
2793
3130
  ): Function;
3131
+ /**
3132
+ * Searches a plugin of the corresponding type in the aggregations of the given `Element` instance. The
3133
+ * first plugin that is found is returned.
3134
+ *
3135
+ *
3136
+ * @returns The found plugin instance or `undefined` if not found
3137
+ */
3138
+ static findOn(
3139
+ /**
3140
+ * The `Element` instance to check for
3141
+ */
3142
+ oElement: sap.ui.core.Element
3143
+ ): sap.ui.core.Element | undefined;
2794
3144
  /**
2795
3145
  * Returns a metadata object for class sap.m.plugins.ColumnResizer.
2796
3146
  *
@@ -2891,6 +3241,106 @@ declare namespace sap {
2891
3241
  oDomRef: HTMLElement
2892
3242
  ): void;
2893
3243
  }
3244
+ /**
3245
+ * Provides configuration options and an extended behavior for the context menu that is applied to the related
3246
+ * control.
3247
+ *
3248
+ * @since 1.121
3249
+ */
3250
+ class ContextMenuSetting extends sap.ui.core.Element {
3251
+ /**
3252
+ * Constructs an instance of sap.m.plugins.ContextMenuSetting
3253
+ *
3254
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
3255
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
3256
+ * of the syntax of the settings object.
3257
+ */
3258
+ constructor();
3259
+
3260
+ /**
3261
+ * Creates a new subclass of class sap.m.plugins.ContextMenuSetting with name `sClassName` and enriches
3262
+ * it with the information contained in `oClassInfo`.
3263
+ *
3264
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3265
+ *
3266
+ *
3267
+ * @returns Created class / constructor function
3268
+ */
3269
+ static extend<T extends Record<string, unknown>>(
3270
+ /**
3271
+ * Name of the class being created
3272
+ */
3273
+ sClassName: string,
3274
+ /**
3275
+ * Object literal with information about the class
3276
+ */
3277
+ oClassInfo?: sap.ClassInfo<T, sap.m.plugins.ContextMenuSetting>,
3278
+ /**
3279
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
3280
+ * used by this class
3281
+ */
3282
+ FNMetaImpl?: Function
3283
+ ): Function;
3284
+ /**
3285
+ * Searches a plugin of the corresponding type in the aggregations of the given `Element` instance. The
3286
+ * first plugin that is found is returned.
3287
+ *
3288
+ *
3289
+ * @returns The found plugin instance or `undefined` if not found
3290
+ */
3291
+ static findOn(
3292
+ /**
3293
+ * The `Element` instance to check for
3294
+ */
3295
+ oElement: sap.ui.core.Element
3296
+ ): sap.ui.core.Element | undefined;
3297
+ /**
3298
+ * Returns a metadata object for class sap.m.plugins.ContextMenuSetting.
3299
+ *
3300
+ *
3301
+ * @returns Metadata object describing this class
3302
+ */
3303
+ static getMetadata(): sap.ui.core.ElementMetadata;
3304
+ /**
3305
+ * Gets current value of property {@link #getScope scope}.
3306
+ *
3307
+ * Defines the scope of the context menu actions.
3308
+ *
3309
+ * The scope of the context menu is visually represented to the user by providing a clear indication of
3310
+ * the affected items. The visual cues help users understand the potential impact of their actions.
3311
+ *
3312
+ * **Note:** The scope visualization is only supported if a `sap.m.Menu` is used as context menu.
3313
+ *
3314
+ * Default value is `Default`.
3315
+ *
3316
+ *
3317
+ * @returns Value of property `scope`
3318
+ */
3319
+ getScope(): sap.m.plugins.ContextMenuScope;
3320
+ /**
3321
+ * Sets a new value for property {@link #getScope scope}.
3322
+ *
3323
+ * Defines the scope of the context menu actions.
3324
+ *
3325
+ * The scope of the context menu is visually represented to the user by providing a clear indication of
3326
+ * the affected items. The visual cues help users understand the potential impact of their actions.
3327
+ *
3328
+ * **Note:** The scope visualization is only supported if a `sap.m.Menu` is used as context menu.
3329
+ *
3330
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3331
+ *
3332
+ * Default value is `Default`.
3333
+ *
3334
+ *
3335
+ * @returns Reference to `this` in order to allow method chaining
3336
+ */
3337
+ setScope(
3338
+ /**
3339
+ * New value for property `scope`
3340
+ */
3341
+ sScope?: sap.m.plugins.ContextMenuScope
3342
+ ): this;
3343
+ }
2894
3344
  /**
2895
3345
  * Provides copy to clipboard capabilities for the selected rows of the table. This plugin can copy individual
2896
3346
  * cells if the {@link sap.m.plugins.CellSelector CellSelector} plugin is also enabled for that table.
@@ -2962,6 +3412,19 @@ declare namespace sap {
2962
3412
  */
2963
3413
  FNMetaImpl?: Function
2964
3414
  ): Function;
3415
+ /**
3416
+ * Searches a plugin of the corresponding type in the aggregations of the given `Element` instance. The
3417
+ * first plugin that is found is returned.
3418
+ *
3419
+ *
3420
+ * @returns The found plugin instance or `undefined` if not found
3421
+ */
3422
+ static findOn(
3423
+ /**
3424
+ * The `Element` instance to check for
3425
+ */
3426
+ oElement: sap.ui.core.Element
3427
+ ): sap.ui.core.Element | undefined;
2965
3428
  /**
2966
3429
  * Returns a metadata object for class sap.m.plugins.CopyProvider.
2967
3430
  *
@@ -3169,9 +3632,23 @@ declare namespace sap {
3169
3632
  * ** The returned array might be a sparse array if the {@link #getCopySparse copySparse} property is `true`.
3170
3633
  *
3171
3634
  *
3172
- * @returns Two-dimensional extracted data from the selection.
3635
+ * @returns Two-dimensional data extracted from the selection, or an object with `text` and `html` keys,
3636
+ * each with two-dimensional data extracted from the selection if `bIncludeHtmlMimeType` parameter is `true`
3637
+ * and the platform supports `text/html` MIME type as a clipboard item.
3173
3638
  */
3174
- getSelectionData(): any[][];
3639
+ getSelectionData(
3640
+ /**
3641
+ * Determines whether the selection data to be returned includes `text/html` MIME type values, if the platform
3642
+ * supports `text/html` MIME type as a clipboard item
3643
+ */
3644
+ bIncludeHtmlMimeType: boolean
3645
+ ):
3646
+ | any[][]
3647
+ | {
3648
+ text: any[][];
3649
+
3650
+ html: any[][];
3651
+ };
3175
3652
  /**
3176
3653
  * Gets current value of property {@link #getVisible visible}.
3177
3654
  *
@@ -3363,6 +3840,19 @@ declare namespace sap {
3363
3840
  */
3364
3841
  FNMetaImpl?: Function
3365
3842
  ): Function;
3843
+ /**
3844
+ * Searches a plugin of the corresponding type in the aggregations of the given `Element` instance. The
3845
+ * first plugin that is found is returned.
3846
+ *
3847
+ *
3848
+ * @returns The found plugin instance or `undefined` if not found
3849
+ */
3850
+ static findOn(
3851
+ /**
3852
+ * The `Element` instance to check for
3853
+ */
3854
+ oElement: sap.ui.core.Element
3855
+ ): sap.ui.core.Element | undefined;
3366
3856
  /**
3367
3857
  * Returns a metadata object for class sap.m.plugins.DataStateIndicator.
3368
3858
  *
@@ -3871,6 +4361,19 @@ declare namespace sap {
3871
4361
  */
3872
4362
  FNMetaImpl?: Function
3873
4363
  ): Function;
4364
+ /**
4365
+ * Searches a plugin of the corresponding type in the aggregations of the given `Element` instance. The
4366
+ * first plugin that is found is returned.
4367
+ *
4368
+ *
4369
+ * @returns The found plugin instance or `undefined` if not found
4370
+ */
4371
+ static findOn(
4372
+ /**
4373
+ * The `Element` instance to check for
4374
+ */
4375
+ oElement: sap.ui.core.Element
4376
+ ): sap.ui.core.Element | undefined;
3874
4377
  /**
3875
4378
  * Returns a metadata object for class sap.m.plugins.PasteProvider.
3876
4379
  *
@@ -3970,7 +4473,7 @@ declare namespace sap {
3970
4473
  /**
3971
4474
  * ID of the element which is the current target of the association {@link #getPasteFor pasteFor}, or `null`.
3972
4475
  */
3973
- getPasteFor(): sap.ui.core.ID;
4476
+ getPasteFor(): sap.ui.core.ID | null;
3974
4477
  /**
3975
4478
  * Sets the associated {@link #getPasteFor pasteFor}.
3976
4479
  *
@@ -3985,9 +4488,28 @@ declare namespace sap {
3985
4488
  oPasteFor: sap.ui.core.ID | sap.ui.core.Control
3986
4489
  ): this;
3987
4490
  }
4491
+ /**
4492
+ * Defines the states of list items when the context menu is opened.
4493
+ *
4494
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'plugins.ContextMenuScope'.
4495
+ *
4496
+ * @since 1.121
4497
+ */
4498
+ enum ContextMenuScope {
4499
+ /**
4500
+ * The scope is set to the default value where the focus is unaffected by the opening of the context menu.
4501
+ */
4502
+ Default = "Default",
4503
+ /**
4504
+ * The focus will be on the clicked item and also on other selected items, if the clicked item is selected.
4505
+ */
4506
+ Selection = "Selection",
4507
+ }
3988
4508
  /**
3989
4509
  * Enumeration of the `copyPreference` in `CopyProvider`. Determines what is copied during a copy operation.
3990
4510
  *
4511
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'plugins.CopyPreference'.
4512
+ *
3991
4513
  * @since 1.119
3992
4514
  */
3993
4515
  enum CopyPreference {
@@ -10059,7 +10581,7 @@ declare namespace sap {
10059
10581
  * ID of the element which is the current target of the association {@link #getSelectedItem selectedItem},
10060
10582
  * or `null`.
10061
10583
  */
10062
- getSelectedItem(): sap.ui.core.ID;
10584
+ getSelectedItem(): sap.ui.core.ID | null;
10063
10585
  /**
10064
10586
  * Gets current value of property {@link #getSelectedKey selectedKey}.
10065
10587
  *
@@ -10839,6 +11361,8 @@ declare namespace sap {
10839
11361
  /**
10840
11362
  * Declares the type of semantic ruleset that will govern the styling and positioning of semantic content.
10841
11363
  *
11364
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'semantic.SemanticRuleSetType'.
11365
+ *
10842
11366
  * @since 1.44
10843
11367
  */
10844
11368
  enum SemanticRuleSetType {
@@ -11937,6 +12461,78 @@ declare namespace sap {
11937
12461
  */
11938
12462
  sLabel: string
11939
12463
  ): this;
12464
+ /**
12465
+ * Sets a new value for property {@link #getResetButtonEnabled resetButtonEnabled}.
12466
+ *
12467
+ * Defines whether the Reset button is enabled when navigating to the item.
12468
+ *
12469
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12470
+ *
12471
+ * Default value is `true`.
12472
+ *
12473
+ *
12474
+ * @returns Reference to `this` in order to allow method chaining
12475
+ */
12476
+ setResetButtonEnabled(
12477
+ /**
12478
+ * New value for property `resetButtonEnabled`
12479
+ */
12480
+ bResetButtonEnabled?: boolean
12481
+ ): this;
12482
+ /**
12483
+ * Sets a new value for property {@link #getShowCancelButton showCancelButton}.
12484
+ *
12485
+ * Defines whether the Cancel button is shown when navigating to the item.
12486
+ *
12487
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12488
+ *
12489
+ * Default value is `true`.
12490
+ *
12491
+ *
12492
+ * @returns Reference to `this` in order to allow method chaining
12493
+ */
12494
+ setShowCancelButton(
12495
+ /**
12496
+ * New value for property `showCancelButton`
12497
+ */
12498
+ bShowCancelButton?: boolean
12499
+ ): this;
12500
+ /**
12501
+ * Sets a new value for property {@link #getShowConfirmButton showConfirmButton}.
12502
+ *
12503
+ * Defines whether the Confirm button is shown when navigating to the item.
12504
+ *
12505
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12506
+ *
12507
+ * Default value is `true`.
12508
+ *
12509
+ *
12510
+ * @returns Reference to `this` in order to allow method chaining
12511
+ */
12512
+ setShowConfirmButton(
12513
+ /**
12514
+ * New value for property `showConfirmButton`
12515
+ */
12516
+ bShowConfirmButton?: boolean
12517
+ ): this;
12518
+ /**
12519
+ * Sets a new value for property {@link #getShowResetButton showResetButton}.
12520
+ *
12521
+ * Defines whether the Reset button is shown when navigating to the item.
12522
+ *
12523
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12524
+ *
12525
+ * Default value is `true`.
12526
+ *
12527
+ *
12528
+ * @returns Reference to `this` in order to allow method chaining
12529
+ */
12530
+ setShowResetButton(
12531
+ /**
12532
+ * New value for property `showResetButton`
12533
+ */
12534
+ bShowResetButton?: boolean
12535
+ ): this;
11940
12536
  }
11941
12537
  /**
11942
12538
  * The `ItemBase` class is used as a base class for menu items for the `sap.m.table.columnmenu.Menu`. This
@@ -13941,6 +14537,8 @@ declare namespace sap {
13941
14537
  /**
13942
14538
  * Categories of column menu entries.
13943
14539
  *
14540
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'table.columnmenu.Category'.
14541
+ *
13944
14542
  * @since 1.110
13945
14543
  */
13946
14544
  enum Category {
@@ -14022,14 +14620,10 @@ declare namespace sap {
14022
14620
  * controls.
14023
14621
  */
14024
14622
  constructor(
14025
- /**
14026
- * ID for the new control, generated automatically if no ID is given
14027
- */
14028
- sId?: string,
14029
14623
  /**
14030
14624
  * Initial settings for the new control
14031
14625
  */
14032
- mSettings?: {
14626
+ mSettings: {
14033
14627
  /**
14034
14628
  * The table instance that is personalized by this controller
14035
14629
  */
@@ -14436,11 +15030,15 @@ declare namespace sap {
14436
15030
 
14437
15031
  /**
14438
15032
  * Defines custom text for the 'No data' text label.
15033
+ *
15034
+ * @deprecated (since 1.121) - Use illustratedMessage instead.
14439
15035
  */
14440
15036
  noDataText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
14441
15037
 
14442
15038
  /**
14443
15039
  * Defines custom text for the 'No data' description label.
15040
+ *
15041
+ * @deprecated (since 1.121) - Use illustratedMessage instead.
14444
15042
  */
14445
15043
  noDataDescription?:
14446
15044
  | string
@@ -14450,6 +15048,7 @@ declare namespace sap {
14450
15048
  * Determines which illustration type is displayed when the control holds no data.
14451
15049
  *
14452
15050
  * @since 1.117
15051
+ * @deprecated (since 1.121) - Use illustratedMessage instead.
14453
15052
  */
14454
15053
  noDataIllustrationType?:
14455
15054
  | sap.m.IllustratedMessageType
@@ -14639,6 +15238,13 @@ declare namespace sap {
14639
15238
  */
14640
15239
  uploader?: sap.m.upload.Uploader;
14641
15240
 
15241
+ /**
15242
+ * An illustrated message is displayed when no data is loaded or provided
15243
+ *
15244
+ * @since 1.121
15245
+ */
15246
+ illustratedMessage?: sap.m.IllustratedMessage;
15247
+
14642
15248
  /**
14643
15249
  * This event is fired when a new file is added to the set of items to be uploaded.
14644
15250
  */
@@ -18215,6 +18821,14 @@ declare namespace sap {
18215
18821
  * @returns Reference to `this` in order to allow method chaining
18216
18822
  */
18217
18823
  destroyHeaderFields(): this;
18824
+ /**
18825
+ * Destroys the illustratedMessage in the aggregation {@link #getIllustratedMessage illustratedMessage}.
18826
+ *
18827
+ * @since 1.121
18828
+ *
18829
+ * @returns Reference to `this` in order to allow method chaining
18830
+ */
18831
+ destroyIllustratedMessage(): this;
18218
18832
  /**
18219
18833
  * Destroys all the incompleteItems in the aggregation {@link #getIncompleteItems incompleteItems}.
18220
18834
  *
@@ -18946,6 +19560,14 @@ declare namespace sap {
18946
19560
  * @returns Value of property `httpRequestMethod`
18947
19561
  */
18948
19562
  getHttpRequestMethod(): sap.m.upload.UploaderHttpRequestMethod;
19563
+ /**
19564
+ * Gets content of aggregation {@link #getIllustratedMessage illustratedMessage}.
19565
+ *
19566
+ * An illustrated message is displayed when no data is loaded or provided
19567
+ *
19568
+ * @since 1.121
19569
+ */
19570
+ getIllustratedMessage(): sap.m.IllustratedMessage;
18949
19571
  /**
18950
19572
  * Gets content of aggregation {@link #getIncompleteItems incompleteItems}.
18951
19573
  *
@@ -19042,6 +19664,7 @@ declare namespace sap {
19042
19664
  *
19043
19665
  * Defines custom text for the 'No data' description label.
19044
19666
  *
19667
+ * @deprecated (since 1.121) - Use illustratedMessage instead.
19045
19668
  *
19046
19669
  * @returns Value of property `noDataDescription`
19047
19670
  */
@@ -19054,6 +19677,7 @@ declare namespace sap {
19054
19677
  * Default value is `NoData`.
19055
19678
  *
19056
19679
  * @since 1.117
19680
+ * @deprecated (since 1.121) - Use illustratedMessage instead.
19057
19681
  *
19058
19682
  * @returns Value of property `noDataIllustrationType`
19059
19683
  */
@@ -19063,6 +19687,7 @@ declare namespace sap {
19063
19687
  *
19064
19688
  * Defines custom text for the 'No data' text label.
19065
19689
  *
19690
+ * @deprecated (since 1.121) - Use illustratedMessage instead.
19066
19691
  *
19067
19692
  * @returns Value of property `noDataText`
19068
19693
  */
@@ -19495,6 +20120,19 @@ declare namespace sap {
19495
20120
  */
19496
20121
  sHttpRequestMethod?: sap.m.upload.UploaderHttpRequestMethod
19497
20122
  ): this;
20123
+ /**
20124
+ * Sets the aggregated {@link #getIllustratedMessage illustratedMessage}.
20125
+ *
20126
+ * @since 1.121
20127
+ *
20128
+ * @returns Reference to `this` in order to allow method chaining
20129
+ */
20130
+ setIllustratedMessage(
20131
+ /**
20132
+ * The illustratedMessage to set
20133
+ */
20134
+ oIllustratedMessage: sap.m.IllustratedMessage
20135
+ ): this;
19498
20136
  /**
19499
20137
  * Sets a new value for property {@link #getInstantUpload instantUpload}.
19500
20138
  *
@@ -19616,6 +20254,7 @@ declare namespace sap {
19616
20254
  *
19617
20255
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19618
20256
  *
20257
+ * @deprecated (since 1.121) - Use illustratedMessage instead.
19619
20258
  *
19620
20259
  * @returns Reference to `this` in order to allow method chaining
19621
20260
  */
@@ -19635,6 +20274,7 @@ declare namespace sap {
19635
20274
  * Default value is `NoData`.
19636
20275
  *
19637
20276
  * @since 1.117
20277
+ * @deprecated (since 1.121) - Use illustratedMessage instead.
19638
20278
  *
19639
20279
  * @returns Reference to `this` in order to allow method chaining
19640
20280
  */
@@ -19651,6 +20291,7 @@ declare namespace sap {
19651
20291
  *
19652
20292
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19653
20293
  *
20294
+ * @deprecated (since 1.121) - Use illustratedMessage instead.
19654
20295
  *
19655
20296
  * @returns Reference to `this` in order to allow method chaining
19656
20297
  */
@@ -22110,7 +22751,7 @@ declare namespace sap {
22110
22751
  * ID of the element which is the current target of the association {@link #getPreviewDialog previewDialog},
22111
22752
  * or `null`.
22112
22753
  */
22113
- getPreviewDialog(): sap.ui.core.ID;
22754
+ getPreviewDialog(): sap.ui.core.ID | null;
22114
22755
  /**
22115
22756
  * Gets current value of property {@link #getUploadButtonInvisible uploadButtonInvisible}.
22116
22757
  *
@@ -24398,6 +25039,20 @@ declare namespace sap {
24398
25039
  | int
24399
25040
  | sap.ui.base.ManagedObject.PropertyBindingInfo
24400
25041
  | `{${string}}`;
25042
+
25043
+ /**
25044
+ * Defines how the items will be scrolled through in `Carousel` control. One at a time or depending on the
25045
+ * `visiblePagesCount`
25046
+ *
25047
+ * NOTE: `visiblePagesCount` must be set a value larger than 1, to be able to use `scrollMode` with value
25048
+ * "VisiblePages"
25049
+ *
25050
+ * @since 1.121
25051
+ */
25052
+ scrollMode?:
25053
+ | sap.m.CarouselScrollMode
25054
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
25055
+ | `{${string}}`;
24401
25056
  }
24402
25057
 
24403
25058
  interface $CheckBoxSettings extends sap.ui.core.$ControlSettings {
@@ -24440,6 +25095,23 @@ declare namespace sap {
24440
25095
  | sap.ui.base.ManagedObject.PropertyBindingInfo
24441
25096
  | `{${string}}`;
24442
25097
 
25098
+ /**
25099
+ * Sets the `required` state of the `CheckBox`.
25100
+ *
25101
+ * **Note:** Use this property only when a single relationship between this field and a Label cannot be
25102
+ * established. For example, with the assistance of the `labelFor` property of `sap.m.Label`.
25103
+ *
25104
+ * **Note:** This property won't work as expected without setting a value to the `text` property of the
25105
+ * `CheckBox`. The `text` property acts as a label for the `CheckBox` and is crucial for assistive technologies,
25106
+ * like screen readers, to provide a meaningful context.
25107
+ *
25108
+ * @since 1.121
25109
+ */
25110
+ required?:
25111
+ | boolean
25112
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
25113
+ | `{${string}}`;
25114
+
24443
25115
  /**
24444
25116
  * The 'name' property to be used in the HTML code, for example for HTML forms that send data to the server
24445
25117
  * via submit.
@@ -25869,6 +26541,9 @@ declare namespace sap {
25869
26541
  * and 'values' - an array of parameters for the same option. The control uses a special wrong-value object,
25870
26542
  * when the input receives an unrecognized string - { operator: "PARSEERROR", values: [...]}
25871
26543
  *
26544
+ * **Note:** Data binding for the `value` property is not supported. Instead, you should use DynamicDateRange's
26545
+ * `getValue` and `setValue` methods.
26546
+ *
25872
26547
  * @since 1.92
25873
26548
  */
25874
26549
  value?:
@@ -25966,6 +26641,9 @@ declare namespace sap {
25966
26641
  * An instance of sap.m.DynamicDateFormat or a user defined format object with the corresponding formatting
25967
26642
  * and parsing functionality.
25968
26643
  *
26644
+ * **Note:** Data binding for the `formatter` property is not supported. Instead, you should use DynamicDateRange's
26645
+ * `getFormatter` and `setFormatter` methods.
26646
+ *
25969
26647
  * @since 1.92
25970
26648
  */
25971
26649
  formatter?:
@@ -27986,6 +28664,17 @@ declare namespace sap {
27986
28664
  | sap.ui.base.ManagedObject.PropertyBindingInfo
27987
28665
  | `{${string}}`;
27988
28666
 
28667
+ /**
28668
+ * Specifies the interaction mode.
28669
+ *
28670
+ * @experimental (since 1.121) - Disclaimer: this property is in a beta state - incompatible API changes
28671
+ * may be done before its official public release. Use at your own discretion.
28672
+ */
28673
+ interactionMode?:
28674
+ | sap.m.IconTabFilterInteractionMode
28675
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
28676
+ | `{${string}}`;
28677
+
27989
28678
  /**
27990
28679
  * The content displayed for this item (optional).
27991
28680
  *
@@ -28649,6 +29338,14 @@ declare namespace sap {
28649
29338
  * for all user interactions. The properties "showValueHelp", "editable", and "enabled" must be set to true,
28650
29339
  * otherwise the property will have no effect. In this scenario, the `showItems` API will not work.
28651
29340
  *
29341
+ * **Note:** The property is deprecated, as it creates unnecessary usability and accessibility restrictions.
29342
+ * The decision to deprecate it is based on the fact that it serves no purpose to have an input field where
29343
+ * the user cannot type. This property restricts even the paste functionality, which can be useful, e.g.
29344
+ * the needed info is already in the clipboard. If the user's input needs to match specific predefined values,
29345
+ * the application should validate the input against the set of values and provide feedback to the user
29346
+ * or use other mechanism for selection, where freestyle input is not allowed by design (Select, SelectDialog,
29347
+ * etc).
29348
+ *
28652
29349
  * @since 1.21.0
28653
29350
  * @deprecated (since 1.119) - The property valueHelpOnly should not be used anymore
28654
29351
  */
@@ -29044,8 +29741,6 @@ declare namespace sap {
29044
29741
  * `valueStateText` and `formattedValueStateText` are set - the latter is shown.
29045
29742
  *
29046
29743
  * @since 1.78
29047
- * @experimental (since 1.78) - This aggregation is experimental and provides only limited functionality.
29048
- * Also the API might be changed in future.
29049
29744
  */
29050
29745
  formattedValueStateText?: sap.m.FormattedText;
29051
29746
 
@@ -33946,10 +34641,9 @@ declare namespace sap {
33946
34641
 
33947
34642
  /**
33948
34643
  * Defines rounding of the width `CalendarAppoinment` **Note:** This property is applied, when the calendar
33949
- * interval type is day and the view shows more than 20 days
34644
+ * interval type is Day and the view shows more than 20 days
33950
34645
  *
33951
34646
  * @since 1.81.0
33952
- * @experimental (since 1.81.0)
33953
34647
  */
33954
34648
  appointmentRoundWidth?:
33955
34649
  | sap.ui.unified.CalendarAppointmentRoundWidth
@@ -34150,7 +34844,39 @@ declare namespace sap {
34150
34844
  /**
34151
34845
  * Special days in the header calendar visualized as date range with a type.
34152
34846
  *
34153
- * **Note:** If one day is assigned to more than one type, only the first type will be used.
34847
+ * **Note:** In case there are multiple `sap.ui.unified.DateTypeRange` instances given for a single date,
34848
+ * only the first `sap.ui.unified.DateTypeRange` instance will be used. For example, using the following
34849
+ * sample, the 1st of November will be displayed as a working day of type "Type10":
34850
+ *
34851
+ *
34852
+ * ```javascript
34853
+ *
34854
+ * new DateTypeRange({
34855
+ * startDate: UI5Date.getInstance(2023, 10, 1),
34856
+ * type: CalendarDayType.Type10,
34857
+ * }),
34858
+ * new DateTypeRange({
34859
+ * startDate: UI5Date.getInstance(2023, 10, 1),
34860
+ * type: CalendarDayType.NonWorking
34861
+ * })
34862
+ * ```
34863
+ *
34864
+ *
34865
+ * If you want the first of November to be displayed as a non-working day and also as "Type10," the following
34866
+ * should be done:
34867
+ * ```javascript
34868
+ *
34869
+ * new DateTypeRange({
34870
+ * startDate: UI5Date.getInstance(2023, 10, 1),
34871
+ * type: CalendarDayType.Type10,
34872
+ * secondaryType: CalendarDayType.NonWorking
34873
+ * })
34874
+ * ```
34875
+ *
34876
+ *
34877
+ * You can use only one of the following types for a given date: `sap.ui.unified.CalendarDayType.NonWorking`,
34878
+ * `sap.ui.unified.CalendarDayType.Working` or `sap.ui.unified.CalendarDayType.None`. Assigning more than
34879
+ * one of these values in combination for the same date will lead to unpredictable results.
34154
34880
  */
34155
34881
  specialDates?:
34156
34882
  | sap.ui.unified.DateTypeRange[]
@@ -34414,6 +35140,13 @@ declare namespace sap {
34414
35140
  | string
34415
35141
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
34416
35142
 
35143
+ /**
35144
+ * Defines the text that will be announced by the screen reader when a user navigates to the row header.
35145
+ */
35146
+ rowHeaderDescription?:
35147
+ | string
35148
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
35149
+
34417
35150
  /**
34418
35151
  * The appointments to be displayed in the row. Appointments that outside the visible time frame are not
34419
35152
  * rendered.
@@ -34442,11 +35175,13 @@ declare namespace sap {
34442
35175
  | `{${string}}`;
34443
35176
 
34444
35177
  /**
34445
- * Holds the special dates in the context of a row. A single date or a date range can be set.
35178
+ * Holds the special dates in the context of a row. A single `sap.ui.unified.DateTypeRange` instance can
35179
+ * be set.
34446
35180
  *
34447
- * **Note** Only date or date ranges of type `sap.ui.unified.CalendarDayType.NonWorking` will be visualized
34448
- * in the `PlanningCalendarRow`. If the aggregation is set as another type, the date or date range will
34449
- * be ignored and will not be displayed in the control.
35181
+ * **Note** Only `sap.ui.unified.DateTypeRange` isntances configured with `sap.ui.unified.CalendarDayType.NonWorking`
35182
+ * or `sap.ui.unified.CalendarDayType.Working` type will be visualized in the row. In all other cases the
35183
+ * `sap.ui.unified.DateTypeRange` instances will be ignored and will not be displayed in the control. Assigning
35184
+ * more than one of these values in combination for the same date will lead to unpredictable results.
34450
35185
  *
34451
35186
  * @since 1.56
34452
35187
  */
@@ -34459,12 +35194,13 @@ declare namespace sap {
34459
35194
  /**
34460
35195
  * Holds the header content of the row.
34461
35196
  *
34462
- * **Note:** If the `headerContent` aggregation is added, then the set icon, description, title and tooltip
34463
- * are ignored.
35197
+ * **Note:**
35198
+ * - If the `headerContent` aggregation is added, then the set icon, description, title and tooltip are
35199
+ * ignored.
35200
+ * - The application developer has to ensure, that the size of the content conforms with the size of the
35201
+ * header.
34464
35202
  *
34465
35203
  * @since 1.67
34466
- * @experimental (since 1.67) - providing only limited functionality. Also, the API might be changed in
34467
- * the future.
34468
35204
  */
34469
35205
  headerContent?:
34470
35206
  | sap.ui.core.Control[]
@@ -34538,8 +35274,6 @@ declare namespace sap {
34538
35274
  * An integer that defines the period size.
34539
35275
  *
34540
35276
  * @since 1.93
34541
- * @experimental (since 1.93) - This class is experimental and provides only limited functionality. Also
34542
- * the API might be changed in future.
34543
35277
  */
34544
35278
  intervalSize?:
34545
35279
  | int
@@ -34550,8 +35284,6 @@ declare namespace sap {
34550
35284
  * A function that formats the interval.
34551
35285
  *
34552
35286
  * @since 1.93
34553
- * @experimental (since 1.93) - This class is experimental and provides only limited functionality. Also
34554
- * the API might be changed in future.
34555
35287
  */
34556
35288
  intervalLabelFormatter?:
34557
35289
  | object
@@ -34563,8 +35295,6 @@ declare namespace sap {
34563
35295
  * and when used they need intervalSize and intervalLabelFormatter defined.
34564
35296
  *
34565
35297
  * @since 1.93
34566
- * @experimental (since 1.93) - This class is experimental and provides only limited functionality. Also
34567
- * the API might be changed in future.
34568
35298
  */
34569
35299
  relative?:
34570
35300
  | boolean
@@ -34785,10 +35515,9 @@ declare namespace sap {
34785
35515
  | `{${string}}`;
34786
35516
 
34787
35517
  /**
34788
- * Whether resize option is enabled. *Note:* This property is effective only on Desktop
35518
+ * Whether resize option is enabled. NOTE: This property is effective only on Desktop
34789
35519
  *
34790
35520
  * @since 1.36.4
34791
- * @experimental (since 1.36.4) - Do not use directly on Popover while in experimental mode!
34792
35521
  */
34793
35522
  resizable?:
34794
35523
  | boolean
@@ -35765,7 +36494,6 @@ declare namespace sap {
35765
36494
  * Whether resize option is enabled.
35766
36495
  *
35767
36496
  * @since 1.36.4
35768
- * @experimental (since 1.36.4) - Do not use directly on ResponsivePopover while in experimental mode!
35769
36497
  */
35770
36498
  resizable?:
35771
36499
  | boolean
@@ -37265,7 +37993,39 @@ declare namespace sap {
37265
37993
  /**
37266
37994
  * Special days in the header visualized as a date range with type.
37267
37995
  *
37268
- * **Note:** If one day is assigned to more than one type, only the first type is used.
37996
+ * **Note:** In case there are multiple `sap.ui.unified.DateTypeRange` instances given for a single date,
37997
+ * only the first `sap.ui.unified.DateTypeRange` instance will be used. For example, using the following
37998
+ * sample, the 1st of November will be displayed as a working day of type "Type10":
37999
+ *
38000
+ *
38001
+ * ```javascript
38002
+ *
38003
+ * new DateTypeRange({
38004
+ * startDate: UI5Date.getInstance(2023, 10, 1),
38005
+ * type: CalendarDayType.Type10,
38006
+ * }),
38007
+ * new DateTypeRange({
38008
+ * startDate: UI5Date.getInstance(2023, 10, 1),
38009
+ * type: CalendarDayType.NonWorking
38010
+ * })
38011
+ * ```
38012
+ *
38013
+ *
38014
+ * If you want the first of November to be displayed as a non-working day and also as "Type10," the following
38015
+ * should be done:
38016
+ * ```javascript
38017
+ *
38018
+ * new DateTypeRange({
38019
+ * startDate: UI5Date.getInstance(2023, 10, 1),
38020
+ * type: CalendarDayType.Type10,
38021
+ * secondaryType: CalendarDayType.NonWorking
38022
+ * })
38023
+ * ```
38024
+ *
38025
+ *
38026
+ * You can use only one of the following types for a given date: `sap.ui.unified.CalendarDayType.NonWorking`,
38027
+ * `sap.ui.unified.CalendarDayType.Working` or `sap.ui.unified.CalendarDayType.None`. Assigning more than
38028
+ * one of these values in combination for the same date will lead to unpredictable results.
37269
38029
  *
37270
38030
  * @since 1.66
37271
38031
  */
@@ -38453,8 +39213,7 @@ declare namespace sap {
38453
39213
  /**
38454
39214
  * Determines additional text to be displayed for the item.
38455
39215
  *
38456
- * @experimental (since 1.63) - Disclaimer: this property is in a beta state - incompatible API changes
38457
- * may be done before its official public release. Use at your own discretion.
39216
+ * @since 1.63
38458
39217
  */
38459
39218
  additionalText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
38460
39219
 
@@ -38462,8 +39221,7 @@ declare namespace sap {
38462
39221
  * Defines the icon to be displayed as graphical element within the `TabContainerItem`. It can be an image
38463
39222
  * or an icon from the icon font.
38464
39223
  *
38465
- * @experimental (since 1.63) - Disclaimer: this property is in a beta state - incompatible API changes
38466
- * may be done before its official public release. Use at your own discretion.
39224
+ * @since 1.63
38467
39225
  */
38468
39226
  icon?:
38469
39227
  | sap.ui.core.URI
@@ -38473,8 +39231,7 @@ declare namespace sap {
38473
39231
  /**
38474
39232
  * Determines the tooltip text of the `TabContainerItem`'s icon.
38475
39233
  *
38476
- * @experimental (since 1.63) - Disclaimer: this property is in a beta state - incompatible API changes
38477
- * may be done before its official public release. Use at your own discretion.
39234
+ * @since 1.63
38478
39235
  */
38479
39236
  iconTooltip?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
38480
39237
 
@@ -39059,9 +39816,6 @@ declare namespace sap {
39059
39816
  /**
39060
39817
  * Limits the number of lines for wrapping texts.
39061
39818
  *
39062
- * **Note**: The multi-line overflow indicator depends on the browser line clamping support. For such browsers,
39063
- * this will be shown as ellipsis, for the other browsers the overflow will just be hidden.
39064
- *
39065
39819
  * @since 1.13.2
39066
39820
  */
39067
39821
  maxLines?:
@@ -40470,7 +41224,10 @@ declare namespace sap {
40470
41224
  /**
40471
41225
  * Contains the information is the item is public or private.
40472
41226
  */
40473
- sharing?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
41227
+ sharing?:
41228
+ | sap.m.SharingMode
41229
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
41230
+ | `{${string}}`;
40474
41231
 
40475
41232
  /**
40476
41233
  * Indicates if the item is removable.
@@ -40531,7 +41288,8 @@ declare namespace sap {
40531
41288
  author?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
40532
41289
 
40533
41290
  /**
40534
- * Contains the contexts information of the item.
41291
+ * Contains the contexts information of the item. **Note**: This property must not be bound.
41292
+ * **Note**: This property is used exclusively for SAPUI5 flexibility. Do not use it otherwise.
40535
41293
  */
40536
41294
  contexts?:
40537
41295
  | object
@@ -40592,7 +41350,7 @@ declare namespace sap {
40592
41350
  defaultKey?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
40593
41351
 
40594
41352
  /**
40595
- * Controls the visibility of the 'SaveAs' button
41353
+ * Controls the visibility of the Save As button.
40596
41354
  */
40597
41355
  showSaveAs?:
40598
41356
  | boolean
@@ -40600,7 +41358,7 @@ declare namespace sap {
40600
41358
  | `{${string}}`;
40601
41359
 
40602
41360
  /**
40603
- * If set to `false` neither 'Save As' nor 'Save' buttons on the 'My Views' dialog are visible.
41361
+ * If set to `false`, neither the Save As nor the Save button in the My Views dialog is visible.
40604
41362
  */
40605
41363
  creationAllowed?:
40606
41364
  | boolean
@@ -40624,7 +41382,7 @@ declare namespace sap {
40624
41382
  | `{${string}}`;
40625
41383
 
40626
41384
  /**
40627
- * The title in the 'My Views' popover.
41385
+ * The title in the My Views popover.
40628
41386
  */
40629
41387
  popoverTitle?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
40630
41388
 
@@ -40675,8 +41433,7 @@ declare namespace sap {
40675
41433
  | `{${string}}`;
40676
41434
 
40677
41435
  /**
40678
- * This event is fired when either Save As is triggered from the Save View dialog, or Save
40679
- * from My Views.
41436
+ * This event is fired when the Save View dialog or the Save As dialog is closed with the Save button.
40680
41437
  */
40681
41438
  save?: (oEvent: VariantManagement$SaveEvent) => void;
40682
41439
 
@@ -40948,6 +41705,16 @@ declare namespace sap {
40948
41705
  | sap.ui.base.ManagedObject.PropertyBindingInfo
40949
41706
  | `{${string}}`;
40950
41707
 
41708
+ /**
41709
+ * Defines the wrapping behavior of the title text.
41710
+ *
41711
+ * @since 1.121.0
41712
+ */
41713
+ wrapping?:
41714
+ | boolean
41715
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
41716
+ | `{${string}}`;
41717
+
40951
41718
  /**
40952
41719
  * Let the outside world know that some of its properties has changed.
40953
41720
  */
@@ -44106,8 +44873,8 @@ declare namespace sap {
44106
44873
 
44107
44874
  interface VariantManagement$ManageEventParameters {
44108
44875
  /**
44109
- * List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
44110
- * of the variant
44876
+ * List of changed variants. Each entry contains a `key` (the variant key) and a `name` (the new title of
44877
+ * the variant).
44111
44878
  */
44112
44879
  renamed?: object[];
44113
44880
 
@@ -44117,14 +44884,14 @@ declare namespace sap {
44117
44884
  deleted?: string[];
44118
44885
 
44119
44886
  /**
44120
- * List of variant keys and the associated Execute on Selection indicator. Each entry contains a 'key' -
44121
- * the variant key and a 'exe' - flag describing the intention
44887
+ * List of variant keys and the associated Execute on Selection indicator. Each entry contains a `key` (the
44888
+ * variant key) and an `exe` flag describing the intention.
44122
44889
  */
44123
44890
  exe?: object[];
44124
44891
 
44125
44892
  /**
44126
- * List of variant keys and the associated favorite indicator. Each entry contains a 'key' - the variant
44127
- * key and a 'visible' - flag describing the intention
44893
+ * List of variant keys and the associated favorite indicator. Each entry contains a `key` (the variant
44894
+ * key) and a `visible` flag describing the intention.
44128
44895
  */
44129
44896
  fav?: object[];
44130
44897
 
@@ -44134,8 +44901,9 @@ declare namespace sap {
44134
44901
  def?: string;
44135
44902
 
44136
44903
  /**
44137
- * List of variant keys and the associated contexts array. Each entry contains a 'key' - the variant key
44138
- * and a 'contexts' - array describing the contexts
44904
+ * List of variant keys and the associated contexts array. Each entry contains a `key` (the variant key)
44905
+ * and a `contexts` array describing the contexts. **Note:** It is only used internally by the SAPUI5 flexibility
44906
+ * layer.
44139
44907
  */
44140
44908
  contexts?: object[];
44141
44909
  }
@@ -44149,8 +44917,7 @@ declare namespace sap {
44149
44917
  name?: string;
44150
44918
 
44151
44919
  /**
44152
- * Indicates if an existing variant is updated or if a new variant is created. Basically 'Save' operation
44153
- * leads to overwrite `true`, while 'Save As' leads to overwrite `false`.
44920
+ * Indicates if an existing variant is updated or if a new variant is created.
44154
44921
  */
44155
44922
  overwrite?: boolean;
44156
44923
 
@@ -44175,7 +44942,7 @@ declare namespace sap {
44175
44942
  public?: boolean;
44176
44943
 
44177
44944
  /**
44178
- * Array describing the contexts.
44945
+ * Array describing the contexts. **Note:** It is only used internally by the SAPUI5 flexibility layer.
44179
44946
  */
44180
44947
  contexts?: object[];
44181
44948
 
@@ -46870,7 +47637,7 @@ declare namespace sap {
46870
47637
  /**
46871
47638
  * The button to remove or its index or ID.
46872
47639
  */
46873
- vButton: int | string | sap.m.Button
47640
+ vButton: int | sap.ui.core.ID | sap.m.Button
46874
47641
  ): string | null;
46875
47642
  }
46876
47643
  /**
@@ -48326,10 +49093,10 @@ declare namespace sap {
48326
49093
  oBindingInfo: sap.ui.base.ManagedObject.AggregationBindingInfo
48327
49094
  ): this;
48328
49095
  /**
48329
- * Destroys the detailBox in the aggregation {@link #getDetailBox detailBox}.
49096
+ * Destroys the `detailBox` aggregation.
48330
49097
  *
48331
49098
  *
48332
- * @returns Reference to `this` in order to allow method chaining
49099
+ * @returns `this` for chaining
48333
49100
  */
48334
49101
  destroyDetailBox(): this;
48335
49102
  /**
@@ -50473,7 +51240,7 @@ declare namespace sap {
50473
51240
  /**
50474
51241
  * Icon to use as a busy animation.
50475
51242
  */
50476
- sIcon: string
51243
+ sIcon: sap.ui.core.URI
50477
51244
  ): this;
50478
51245
  /**
50479
51246
  * Sets the density of the custom icon.
@@ -50498,7 +51265,7 @@ declare namespace sap {
50498
51265
  /**
50499
51266
  * Height of the provided icon in CSSSize.
50500
51267
  */
50501
- sHeight: string
51268
+ sHeight: sap.ui.core.CSSSize
50502
51269
  ): this;
50503
51270
  /**
50504
51271
  * Sets the rotation speed of the custom icon.
@@ -50522,7 +51289,7 @@ declare namespace sap {
50522
51289
  /**
50523
51290
  * Width of the provided icon in CSSSize.
50524
51291
  */
50525
- sWidth: string
51292
+ sWidth: sap.ui.core.CSSSize
50526
51293
  ): this;
50527
51294
  /**
50528
51295
  * Shows the cancel button.
@@ -52180,7 +52947,7 @@ declare namespace sap {
52180
52947
  * ID of the element which is the current target of the association {@link #getActivePage activePage}, or
52181
52948
  * `null`.
52182
52949
  */
52183
- getActivePage(): sap.ui.core.ID;
52950
+ getActivePage(): sap.ui.core.ID | null;
52184
52951
  /**
52185
52952
  * Gets current value of property {@link #getArrowsPlacement arrowsPlacement}.
52186
52953
  *
@@ -52668,6 +53435,22 @@ declare namespace sap {
52668
53435
  * @returns Metadata object describing this class
52669
53436
  */
52670
53437
  static getMetadata(): sap.ui.base.ManagedObjectMetadata;
53438
+ /**
53439
+ * Gets current value of property {@link #getScrollMode scrollMode}.
53440
+ *
53441
+ * Defines how the items will be scrolled through in `Carousel` control. One at a time or depending on the
53442
+ * `visiblePagesCount`
53443
+ *
53444
+ * NOTE: `visiblePagesCount` must be set a value larger than 1, to be able to use `scrollMode` with value
53445
+ * "VisiblePages"
53446
+ *
53447
+ * Default value is `SinglePage`.
53448
+ *
53449
+ * @since 1.121
53450
+ *
53451
+ * @returns Value of property `scrollMode`
53452
+ */
53453
+ getScrollMode(): sap.m.CarouselScrollMode;
52671
53454
  /**
52672
53455
  * Gets current value of property {@link #getVisiblePagesCount visiblePagesCount}.
52673
53456
  *
@@ -52683,6 +53466,29 @@ declare namespace sap {
52683
53466
  * @returns Value of property `visiblePagesCount`
52684
53467
  */
52685
53468
  getVisiblePagesCount(): int;
53469
+ /**
53470
+ * Sets a new value for property {@link #getScrollMode scrollMode}.
53471
+ *
53472
+ * Defines how the items will be scrolled through in `Carousel` control. One at a time or depending on the
53473
+ * `visiblePagesCount`
53474
+ *
53475
+ * NOTE: `visiblePagesCount` must be set a value larger than 1, to be able to use `scrollMode` with value
53476
+ * "VisiblePages"
53477
+ *
53478
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
53479
+ *
53480
+ * Default value is `SinglePage`.
53481
+ *
53482
+ * @since 1.121
53483
+ *
53484
+ * @returns Reference to `this` in order to allow method chaining
53485
+ */
53486
+ setScrollMode(
53487
+ /**
53488
+ * New value for property `scrollMode`
53489
+ */
53490
+ sScrollMode?: sap.m.CarouselScrollMode
53491
+ ): this;
52686
53492
  /**
52687
53493
  * Sets a new value for property {@link #getVisiblePagesCount visiblePagesCount}.
52688
53494
  *
@@ -53020,6 +53826,25 @@ declare namespace sap {
53020
53826
  * @returns Value of property `partiallySelected`
53021
53827
  */
53022
53828
  getPartiallySelected(): boolean;
53829
+ /**
53830
+ * Gets current value of property {@link #getRequired required}.
53831
+ *
53832
+ * Sets the `required` state of the `CheckBox`.
53833
+ *
53834
+ * **Note:** Use this property only when a single relationship between this field and a Label cannot be
53835
+ * established. For example, with the assistance of the `labelFor` property of `sap.m.Label`.
53836
+ *
53837
+ * **Note:** This property won't work as expected without setting a value to the `text` property of the
53838
+ * `CheckBox`. The `text` property acts as a label for the `CheckBox` and is crucial for assistive technologies,
53839
+ * like screen readers, to provide a meaningful context.
53840
+ *
53841
+ * Default value is `false`.
53842
+ *
53843
+ * @since 1.121
53844
+ *
53845
+ * @returns Value of property `required`
53846
+ */
53847
+ getRequired(): boolean;
53023
53848
  /**
53024
53849
  * Gets current value of property {@link #getSelected selected}.
53025
53850
  *
@@ -53295,6 +54120,32 @@ declare namespace sap {
53295
54120
  */
53296
54121
  bPartiallySelected?: boolean
53297
54122
  ): this;
54123
+ /**
54124
+ * Sets a new value for property {@link #getRequired required}.
54125
+ *
54126
+ * Sets the `required` state of the `CheckBox`.
54127
+ *
54128
+ * **Note:** Use this property only when a single relationship between this field and a Label cannot be
54129
+ * established. For example, with the assistance of the `labelFor` property of `sap.m.Label`.
54130
+ *
54131
+ * **Note:** This property won't work as expected without setting a value to the `text` property of the
54132
+ * `CheckBox`. The `text` property acts as a label for the `CheckBox` and is crucial for assistive technologies,
54133
+ * like screen readers, to provide a meaningful context.
54134
+ *
54135
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
54136
+ *
54137
+ * Default value is `false`.
54138
+ *
54139
+ * @since 1.121
54140
+ *
54141
+ * @returns Reference to `this` in order to allow method chaining
54142
+ */
54143
+ setRequired(
54144
+ /**
54145
+ * New value for property `required`
54146
+ */
54147
+ bRequired?: boolean
54148
+ ): this;
53298
54149
  /**
53299
54150
  * Sets a new value for property {@link #getSelected selected}.
53300
54151
  *
@@ -54387,7 +55238,7 @@ declare namespace sap {
54387
55238
  *
54388
55239
  * @since 1.98.0
54389
55240
  */
54390
- getHeaderMenu(): sap.ui.core.ID;
55241
+ getHeaderMenu(): sap.ui.core.ID | null;
54391
55242
  /**
54392
55243
  * Gets current value of property {@link #getImportance importance}.
54393
55244
  *
@@ -55734,7 +56585,7 @@ declare namespace sap {
55734
56585
  * this ID becomes the `selectedItem` association. Alternatively, a `sap.ui.core.Item` instance may be given
55735
56586
  * or `null` to clear the selection.
55736
56587
  */
55737
- vItem: string | sap.ui.core.Item | null
56588
+ vItem: sap.ui.core.ID | sap.ui.core.Item | null
55738
56589
  ): this;
55739
56590
  /**
55740
56591
  * Sets the `selectedItemId` property.
@@ -57151,6 +58002,69 @@ declare namespace sap {
57151
58002
  *
57152
58003
  *
57153
58004
  * - Use the `value` property if you want to bind the `DatePicker` to a model using the `sap.ui.model.type.Date`
58005
+ * binding the `value` property by using types
58006
+ * ```javascript
58007
+ *
58008
+ * new sap.ui.model.json.JSONModel({
58009
+ * date: sap.ui.core.date.UI5Date.getInstance(2022,10,10,10,10,10)
58010
+ * });
58011
+ *
58012
+ * new sap.m.DatePicker({
58013
+ * value:{path:"/date",type:"sap.ui.model.type.Date"}
58014
+ * });
58015
+ * ```
58016
+ *
58017
+ * - Use the `value` property if the date is provided as a string from the backend or inside the app (for
58018
+ * example, as ABAP type DATS field) binding the `value` property by using types
58019
+ * ```javascript
58020
+ *
58021
+ * new sap.ui.model.json.JSONModel({date:'2022-11-10');
58022
+ *
58023
+ * new sap.m.DatePicker({
58024
+ * value:{
58025
+ * path:"/date",
58026
+ * type:"sap.ui.model.type.Date",
58027
+ * formatOptions:{
58028
+ * source:{
58029
+ * pattern:"yyyy-MM-dd"
58030
+ * }
58031
+ * }
58032
+ * }
58033
+ * });
58034
+ * ```
58035
+ * **Note:** There are multiple binding type choices, such as: sap.ui.model.type.Date sap.ui.model.odata.type.DateTime
58036
+ * sap.ui.model.odata.type.DateTimeOffset See {@link sap.ui.model.type.Date}, {@link sap.ui.model.odata.type.DateTime }
58037
+ * or {@link sap.ui.model.odata.type.DateTimeOffset}
58038
+ *
58039
+ *
58040
+ * - Use the `dateValue` property if the date is already provided as a UI5Date or JavaScript Date object
58041
+ * or you want to work with a UI5Date or JavaScript Date object. Use `dateValue` as a helper property to
58042
+ * easily obtain the day, month and year of the chosen date. Although it's possible to bind it, it's not
58043
+ * recommended to do so. When binding is needed, use `value` property instead
58044
+ *
58045
+ * Formatting:
58046
+ *
58047
+ * All formatting and parsing of dates from and to strings is done using the {@link sap.ui.core.format.DateFormat}.
58048
+ * If a date is entered by typing it into the input field, it must fit to the used date format and locale.
58049
+ *
58050
+ * Supported format options are pattern-based on Unicode LDML Date Format notation. See {@link http://unicode.org/reports/tr35/#Date_Field_Symbol_Table}
58051
+ *
58052
+ * For example, if the `valueFormat` is "yyyy-MM-dd", the `displayFormat` is "MMM d, y", and the used locale
58053
+ * is English, a valid value string is "2015-07-30", which leads to an output of "Jul 30, 2015".
58054
+ *
58055
+ * If no placeholder is set to the `DatePicker`, the used `displayFormat` is displayed as a placeholder.
58056
+ * If another placeholder is needed, it must be set.
58057
+ *
58058
+ * **Note:** If the string does NOT match the `displayFormat` (from user input) or the `valueFormat` (on
58059
+ * app level), the {@link sap.ui.core.format.DateFormat} makes an attempt to parse it based on the locale
58060
+ * settings. For more information, see the respective documentation in the API Reference.
58061
+ *
58062
+ * Responsive behavior:
58063
+ *
58064
+ * The `DatePicker` is smaller in compact mode and provides a touch-friendly size in cozy mode.
58065
+ *
58066
+ * On mobile devices, one tap on the input field opens the `DatePicker` in full screen. To close the window,
58067
+ * the user can select a date (which triggers the close event), or select Cancel.
57154
58068
  *
57155
58069
  * @since 1.22.0
57156
58070
  */
@@ -57592,7 +58506,7 @@ declare namespace sap {
57592
58506
  *
57593
58507
  * @since 1.38.5
57594
58508
  */
57595
- getLegend(): sap.ui.core.ID;
58509
+ getLegend(): sap.ui.core.ID | null;
57596
58510
  /**
57597
58511
  * Gets current value of property {@link #getMaxDate maxDate}.
57598
58512
  *
@@ -57783,14 +58697,14 @@ declare namespace sap {
57783
58697
  *
57784
58698
  * @since 1.38.5
57785
58699
  *
57786
- * @returns The removed `specialDate` or `null`
58700
+ * @returns The removed `specialDate`
57787
58701
  */
57788
58702
  removeSpecialDate(
57789
58703
  /**
57790
58704
  * The `specialDate` to remove or its index or ID
57791
58705
  */
57792
58706
  oSpecialDate: sap.ui.unified.DateTypeRange
57793
- ): sap.ui.unified.DateTypeRange | null;
58707
+ ): int | string | sap.ui.unified.DateTypeRange;
57794
58708
  /**
57795
58709
  * Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
57796
58710
  *
@@ -57957,7 +58871,7 @@ declare namespace sap {
57957
58871
  /**
57958
58872
  * when true footer is displayed
57959
58873
  */
57960
- bFlag: undefined
58874
+ bFlag: boolean
57961
58875
  ): void;
57962
58876
  /**
57963
58877
  * Setter for property `value`.
@@ -58038,7 +58952,65 @@ declare namespace sap {
58038
58952
  * properties (only one of these options should be used at a time):
58039
58953
  *
58040
58954
  *
58041
- * - Use the `value` property if the date range is already provided as a formatted string
58955
+ * - Use the `value` property if the date range is already provided as a formatted string binding
58956
+ * the `value` property by using types
58957
+ * ```javascript
58958
+ *
58959
+ * new sap.ui.model.json.JSONModel({start:'2022-11-10', end:'2022-11-15'});
58960
+ *
58961
+ * new sap.m.DateRangeSelection({
58962
+ * value: {
58963
+ * type: "sap.ui.model.type.DateInterval",
58964
+ * parts: [{
58965
+ * type: "sap.ui.model.type.Date",
58966
+ * path: "/start",
58967
+ * formatOptions: {
58968
+ * source: {
58969
+ * pattern: "yyyy-MM-dd"
58970
+ * }
58971
+ * }
58972
+ * },
58973
+ * {
58974
+ * type: "sap.ui.model.type.Date",
58975
+ * path:"/end",
58976
+ * formatOptions: {
58977
+ * source: {
58978
+ * pattern: "yyyy-MM-dd"
58979
+ * }
58980
+ * }}]
58981
+ * }
58982
+ * });
58983
+ * ```
58984
+ * **Note:** There are multiple binding type choices, such as: sap.ui.model.type.Date sap.ui.model.odata.type.DateTime
58985
+ * sap.ui.model.odata.type.DateTimeOffset See {@link sap.ui.model.type.Date}, {@link sap.ui.model.odata.type.DateTime }
58986
+ * or {@link sap.ui.model.odata.type.DateTimeOffset}
58987
+ *
58988
+ *
58989
+ * - Use the `dateValue` and `secondDateValue` properties if the date range is already provided as UI5Date
58990
+ * or JavaScript Date objects or you want to work with UI5Date or JavaScript Date objects
58991
+ *
58992
+ * Formatting:
58993
+ *
58994
+ * All formatting and parsing of dates from and to strings is done using the {@link sap.ui.core.format.DateFormat}.
58995
+ * If a date is entered by typing it into the input field, it must fit to the used date format and locale.
58996
+ *
58997
+ * Supported format options are pattern-based on Unicode LDML Date Format notation. See {@link http://unicode.org/reports/tr35/#Date_Field_Symbol_Table}
58998
+ *
58999
+ * For example, if the `displayFormat` is "MMM d, y", delimiter is "-", and the used locale is English,
59000
+ * a valid value string is "Jul 29, 2015 - Jul 31, 2015" and it is displayed in the same way in the input
59001
+ * field.
59002
+ *
59003
+ * If no placeholder is set to the `DateRangeSelection`, the used `displayFormat` is displayed as a placeholder.
59004
+ * If another placeholder is needed, it must be set.
59005
+ *
59006
+ * **Note:** If the string does NOT match the `displayFormat` (from user input) or the `valueFormat` (on
59007
+ * app level), the {@link sap.ui.core.format.DateFormat} makes an attempt to parse it based on the locale
59008
+ * settings. For more information, see the respective documentation in the API Reference.
59009
+ *
59010
+ * Responsive behavior:
59011
+ *
59012
+ * The `DateRangeSelection` is fully responsive. It is smaller in compact mode and provides a touch-friendly
59013
+ * size in cozy mode.
58042
59014
  *
58043
59015
  * @since 1.22.0
58044
59016
  */
@@ -59342,6 +60314,70 @@ declare namespace sap {
59342
60314
  *
59343
60315
  *
59344
60316
  * - Use the `value` property if you want to bind the `DateTimePicker` to a model using the `sap.ui.model.type.DateTime`
60317
+ * binding the `value` property by using types
60318
+ * ```javascript
60319
+ *
60320
+ * new sap.ui.model.json.JSONModel({date: sap.ui.core.date.UI5Date.getInstance(2022,10,10,12,10,10)});
60321
+ *
60322
+ * new sap.m.DateTimePicker({
60323
+ * value: {
60324
+ * type: "sap.ui.model.type.DateTime",
60325
+ * path: "/date"
60326
+ * }
60327
+ * });
60328
+ * ```
60329
+ *
60330
+ * - Use the `value` property if the date is provided as a string from the backend or inside the app (for
60331
+ * example, as ABAP type DATS field) binding the `value` property by using types
60332
+ * ```javascript
60333
+ *
60334
+ * new sap.ui.model.json.JSONModel({date:"2022-11-10-12-10-10"});
60335
+ *
60336
+ * new sap.m.DateTimePicker({
60337
+ * value: {
60338
+ * type: "sap.ui.model.type.DateTime",
60339
+ * path: "/date",
60340
+ * formatOptions: {
60341
+ * source: {
60342
+ * pattern: "yyyy-MM-dd-HH-mm-ss"
60343
+ * }
60344
+ * }
60345
+ * }
60346
+ * });
60347
+ * ```
60348
+ * **Note:** There are multiple binding type choices, such as: sap.ui.model.type.Date sap.ui.model.odata.type.DateTime
60349
+ * sap.ui.model.odata.type.DateTimeOffset sap.ui.model.odata.type.DateTimeWithTimezone See {@link sap.ui.model.type.Date},
60350
+ * {@link sap.ui.model.odata.type.DateTime}, {@link sap.ui.model.odata.type.DateTimeOffset} or {@link sap.ui.model.odata.type.DateTimeWithTimezone}
60351
+ *
60352
+ *
60353
+ * - Use the `dateValue` property if the date is already provided as a UI5Date or JavaScript Date object
60354
+ * or you want to work with a UI5Date or JavaScript Date object. Use `dateValue` as a helper property to
60355
+ * easily obtain the day, month, year, hours, minutes and seconds of the chosen date and time. Although
60356
+ * it's possible to bind it, it's not recommended to do so. When binding is needed, use `value` property
60357
+ * instead
60358
+ *
60359
+ * Formatting:
60360
+ *
60361
+ * All formatting and parsing of dates from and to strings is done using the {@link sap.ui.core.format.DateFormat}.
60362
+ * If a date is entered by typing it into the input field, it must fit to the used date format and locale.
60363
+ *
60364
+ * Supported format options are pattern-based on Unicode LDML Date Format notation. See {@link http://unicode.org/reports/tr35/#Date_Field_Symbol_Table}
60365
+ *
60366
+ * For example, if the `valueFormat` is "yyyy-MM-dd-HH-mm-ss", the `displayFormat` is "MMM d, y, HH:mm:ss",
60367
+ * and the used locale is English, a valid value string is "2015-07-30-10-30-15", which leads to an output
60368
+ * of "Jul 30, 2015, 10:30:15".
60369
+ *
60370
+ * If no placeholder is set to the `DateTimePicker`, the used `displayFormat` is displayed as a placeholder.
60371
+ * If another placeholder is needed, it must be set.
60372
+ *
60373
+ * **Note:** If the string does NOT match the `displayFormat` (from user input) or the `valueFormat` (on
60374
+ * app level), the {@link sap.ui.core.format.DateFormat} makes an attempt to parse it based on the locale
60375
+ * settings. For more information, see the respective documentation in the API Reference.
60376
+ *
60377
+ * Responsive behavior:
60378
+ *
60379
+ * The `DateTimePicker` is responsive and fully adapts to all devices. For larger screens, such as tablet
60380
+ * or desktop, it opens as a popover. For mobile devices, it opens in full screen.
59345
60381
  *
59346
60382
  * @since 1.38.0
59347
60383
  */
@@ -60355,7 +61391,7 @@ declare namespace sap {
60355
61391
  *
60356
61392
  * @since 1.15.0
60357
61393
  */
60358
- getInitialFocus(): sap.ui.core.ID;
61394
+ getInitialFocus(): sap.ui.core.ID | null;
60359
61395
  /**
60360
61396
  * ID of the element which is the current target of the association {@link #getLeftButton leftButton}, or
60361
61397
  * `null`.
@@ -60363,7 +61399,7 @@ declare namespace sap {
60363
61399
  * @deprecated (since 1.15.1) - `LeftButton` has been deprecated since 1.15.1. Please use the `beginButton`
60364
61400
  * instead which is more RTL friendly.
60365
61401
  */
60366
- getLeftButton(): sap.ui.core.ID;
61402
+ getLeftButton(): sap.ui.core.ID | null;
60367
61403
  /**
60368
61404
  * Gets current value of property {@link #getResizable resizable}.
60369
61405
  *
@@ -60385,7 +61421,7 @@ declare namespace sap {
60385
61421
  * @deprecated (since 1.15.1) - `RightButton` has been deprecated since 1.15.1. Please use the `endButton`
60386
61422
  * instead which is more RTL friendly.
60387
61423
  */
60388
- getRightButton(): sap.ui.core.ID;
61424
+ getRightButton(): sap.ui.core.ID | null;
60389
61425
  /**
60390
61426
  * Gets current value of property {@link #getShowHeader showHeader}.
60391
61427
  *
@@ -61267,7 +62303,7 @@ declare namespace sap {
61267
62303
  *
61268
62304
  * @since 1.32.0
61269
62305
  */
61270
- abstract class DraftIndicator extends sap.ui.core.Control {
62306
+ class DraftIndicator extends sap.ui.core.Control {
61271
62307
  /**
61272
62308
  * Constructor for a new DraftIndicator.
61273
62309
  *
@@ -61532,7 +62568,10 @@ declare namespace sap {
61532
62568
  * manner according to a set of format options.
61533
62569
  */
61534
62570
  class DynamicDateFormat {
61535
- constructor();
62571
+ /**
62572
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
62573
+ */
62574
+ protected constructor();
61536
62575
 
61537
62576
  /**
61538
62577
  * Get an instance of the DynamicDateFormat which can be used for formatting.
@@ -61832,7 +62871,11 @@ declare namespace sap {
61832
62871
  /**
61833
62872
  * A `sap.m.DynamicDateRangeValue`
61834
62873
  */
61835
- oValue: sap.m.DynamicDateRangeValue
62874
+ oValue: sap.m.DynamicDateRangeValue,
62875
+ /**
62876
+ * The type of calendar week numbering
62877
+ */
62878
+ sCalendarWeekNumbering: string
61836
62879
  ): /* was: sap.ui.core.date.UniversalDate */ any[];
61837
62880
  /**
61838
62881
  * Validates all input controls in the value help UI related to the current option. If one of the input
@@ -61870,6 +62913,9 @@ declare namespace sap {
61870
62913
  * to be used its key should be added into the `standardOptions` property of the control. No options are
61871
62914
  * added by default.
61872
62915
  *
62916
+ * **Note:** Property binding with the `value` and `formatter` properties is not supported. Instead, you
62917
+ * should use their public getter and setter methods.
62918
+ *
61873
62919
  * Suggestions are available when the user types in the control input field.
61874
62920
  *
61875
62921
  * Responsive behavior:
@@ -62176,6 +63222,13 @@ declare namespace sap {
62176
63222
  * @returns Value of property `enableGroupHeaders`
62177
63223
  */
62178
63224
  getEnableGroupHeaders(): boolean;
63225
+ /**
63226
+ * Getter for the `formatter` of the control.
63227
+ *
63228
+ *
63229
+ * @returns A `sap.m.DynamicDateFormat`
63230
+ */
63231
+ getFormatter(): sap.m.DynamicDateFormat;
62179
63232
  /**
62180
63233
  * Provides the option's group header text.
62181
63234
  *
@@ -62290,6 +63343,13 @@ declare namespace sap {
62290
63343
  * @returns Value of property `standardOptions`
62291
63344
  */
62292
63345
  getStandardOptions(): string[];
63346
+ /**
63347
+ * Getter for the `value` of the control.
63348
+ *
63349
+ *
63350
+ * @returns A `sap.m.DynamicDateRangeValue`
63351
+ */
63352
+ getValue(): sap.m.DynamicDateRangeValue;
62293
63353
  /**
62294
63354
  * Gets current value of property {@link #getValueState valueState}.
62295
63355
  *
@@ -62531,6 +63591,18 @@ declare namespace sap {
62531
63591
  */
62532
63592
  bEnableGroupHeaders?: boolean
62533
63593
  ): this;
63594
+ /**
63595
+ * Setter for the `formatter` of the control.
63596
+ *
63597
+ *
63598
+ * @returns A `sap.m.DynamicDateFormat`
63599
+ */
63600
+ setFormatter(
63601
+ /**
63602
+ * A `sap.m.DynamicDateFormat`
63603
+ */
63604
+ oFormatter: sap.m.DynamicDateFormat
63605
+ ): sap.m.DynamicDateFormat;
62534
63606
  /**
62535
63607
  * Sets a new header to an existing custom group.
62536
63608
  */
@@ -62675,6 +63747,18 @@ declare namespace sap {
62675
63747
  */
62676
63748
  vTooltip: sap.ui.core.TooltipBase | string
62677
63749
  ): this;
63750
+ /**
63751
+ * Setter for the `value` control property.
63752
+ *
63753
+ *
63754
+ * @returns Reference to `this` for method chaining
63755
+ */
63756
+ setValue(
63757
+ /**
63758
+ * A `sap.m.DynamicDateRangeValue`
63759
+ */
63760
+ oValue: sap.m.DynamicDateRangeValue
63761
+ ): this;
62678
63762
  /**
62679
63763
  * Sets a new value for property {@link #getValueState valueState}.
62680
63764
  *
@@ -62737,9 +63821,9 @@ declare namespace sap {
62737
63821
  */
62738
63822
  toDates(
62739
63823
  /**
62740
- * The provided value
63824
+ * A `sap.m.DynamicDateRangeValue`
62741
63825
  */
62742
- oValue: string
63826
+ oValue: sap.m.DynamicDateRangeValue
62743
63827
  ): /* was: sap.ui.core.date.UniversalDate */ any[];
62744
63828
  }
62745
63829
  /**
@@ -63079,7 +64163,7 @@ declare namespace sap {
63079
64163
  /**
63080
64164
  * Indication for normalized text.
63081
64165
  */
63082
- bNormalize: boolean
64166
+ bNormalize?: boolean
63083
64167
  ): string;
63084
64168
  /**
63085
64169
  * Gets current value of property {@link #getTextAlign textAlign}.
@@ -64403,7 +65487,7 @@ declare namespace sap {
64403
65487
  *
64404
65488
  * @returns Object with the selected keys
64405
65489
  */
64406
- getSelectedKeys(): Record<string, string | null>;
65490
+ getSelectedKeys(): Record<string, string>;
64407
65491
  /**
64408
65492
  * Gets current value of property {@link #getSequence sequence}.
64409
65493
  *
@@ -64612,7 +65696,7 @@ declare namespace sap {
64612
65696
  * or FacetFilter summary bar is displayed. If no property value is set then the property key is used for
64613
65697
  * the text.
64614
65698
  */
64615
- oKeys: Record<string, string | null>
65699
+ oKeys?: Record<string, string | undefined> | null
64616
65700
  ): void;
64617
65701
  /**
64618
65702
  * Sets a new value for property {@link #getSequence sequence}.
@@ -67261,7 +68345,7 @@ declare namespace sap {
67261
68345
  /**
67262
68346
  * Render type in string format.
67263
68347
  */
67264
- sValue: string
68348
+ sValue: sap.m.FlexRendertype
67265
68349
  ): this;
67266
68350
  /**
67267
68351
  * Sets a new value for property {@link #getWidth width}.
@@ -67523,7 +68607,7 @@ declare namespace sap {
67523
68607
  /**
67524
68608
  * Align option.
67525
68609
  */
67526
- sValue: string
68610
+ sValue: sap.m.FlexAlignSelf
67527
68611
  ): this;
67528
68612
  /**
67529
68613
  * Sets background design for flex items.
@@ -67535,7 +68619,7 @@ declare namespace sap {
67535
68619
  /**
67536
68620
  * Background design in string format.
67537
68621
  */
67538
- sValue: string
68622
+ sValue: sap.m.BackgroundDesign
67539
68623
  ): this;
67540
68624
  /**
67541
68625
  * Sets the base size for flex items.
@@ -67547,7 +68631,7 @@ declare namespace sap {
67547
68631
  /**
67548
68632
  * Base size in string format.
67549
68633
  */
67550
- sValue: string
68634
+ sValue: sap.ui.core.CSSSize
67551
68635
  ): this;
67552
68636
  /**
67553
68637
  * Sets the `growFactor` property.
@@ -67557,9 +68641,9 @@ declare namespace sap {
67557
68641
  */
67558
68642
  setGrowFactor(
67559
68643
  /**
67560
- * Grow factor in string format.
68644
+ * Grow factor as a number.
67561
68645
  */
67562
- sValue: string
68646
+ fValue: float
67563
68647
  ): this;
67564
68648
  /**
67565
68649
  * Sets maximum height.
@@ -67571,7 +68655,7 @@ declare namespace sap {
67571
68655
  /**
67572
68656
  * Maximum height in string format.
67573
68657
  */
67574
- sValue: string
68658
+ sValue: sap.ui.core.CSSSize
67575
68659
  ): this;
67576
68660
  /**
67577
68661
  * Sets maximum width.
@@ -67583,7 +68667,7 @@ declare namespace sap {
67583
68667
  /**
67584
68668
  * Maximum width in string format.
67585
68669
  */
67586
- sValue: string
68670
+ sValue: sap.ui.core.CSSSize
67587
68671
  ): this;
67588
68672
  /**
67589
68673
  * Sets minimum height.
@@ -67595,7 +68679,7 @@ declare namespace sap {
67595
68679
  /**
67596
68680
  * Minimum height in string format.
67597
68681
  */
67598
- sValue: string
68682
+ sValue: sap.ui.core.CSSSize
67599
68683
  ): this;
67600
68684
  /**
67601
68685
  * Sets minimum width.
@@ -67607,7 +68691,7 @@ declare namespace sap {
67607
68691
  /**
67608
68692
  * Minimum width in string format.
67609
68693
  */
67610
- sValue: string
68694
+ sValue: sap.ui.core.CSSSize
67611
68695
  ): this;
67612
68696
  /**
67613
68697
  * Sets the order.
@@ -67617,9 +68701,9 @@ declare namespace sap {
67617
68701
  */
67618
68702
  setOrder(
67619
68703
  /**
67620
- * Order in string format.
68704
+ * Order in integer format.
67621
68705
  */
67622
- sValue: string
68706
+ iValue: int
67623
68707
  ): this;
67624
68708
  /**
67625
68709
  * Sets the `shrinkFactor` property.
@@ -67631,9 +68715,9 @@ declare namespace sap {
67631
68715
  */
67632
68716
  setShrinkFactor(
67633
68717
  /**
67634
- * Shrink factor in string format.
68718
+ * Shrink factor as a number.
67635
68719
  */
67636
- sValue: string
68720
+ fValue: float
67637
68721
  ): this;
67638
68722
  /**
67639
68723
  * Sets style class.
@@ -69992,11 +71076,16 @@ declare namespace sap {
69992
71076
  bUpperCase?: boolean
69993
71077
  ): this;
69994
71078
  }
69995
-
71079
+ /**
71080
+ * @since 1.16
71081
+ * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
71082
+ */
69996
71083
  class GrowingEnablement extends sap.ui.base.Object {
69997
71084
  /**
69998
71085
  * Creates a GrowingEnablement delegate that can be attached to ListBase Controls requiring capabilities
69999
- * for growing
71086
+ * for growing.
71087
+ *
71088
+ * **Note**: Do not extend this class.
70000
71089
  *
70001
71090
  * @ui5-protected Do not call from applications (only from related classes in the framework)
70002
71091
  */
@@ -71958,6 +73047,19 @@ declare namespace sap {
71958
73047
  * @returns Value of property `iconDensityAware`
71959
73048
  */
71960
73049
  getIconDensityAware(): boolean;
73050
+ /**
73051
+ * Gets current value of property {@link #getInteractionMode interactionMode}.
73052
+ *
73053
+ * Specifies the interaction mode.
73054
+ *
73055
+ * Default value is `Auto`.
73056
+ *
73057
+ * @experimental (since 1.121) - Disclaimer: this property is in a beta state - incompatible API changes
73058
+ * may be done before its official public release. Use at your own discretion.
73059
+ *
73060
+ * @returns Value of property `interactionMode`
73061
+ */
73062
+ getInteractionMode(): sap.m.IconTabFilterInteractionMode;
71961
73063
  /**
71962
73064
  * Gets content of aggregation {@link #getItems items}.
71963
73065
  *
@@ -72247,6 +73349,26 @@ declare namespace sap {
72247
73349
  */
72248
73350
  bIconDensityAware?: boolean
72249
73351
  ): this;
73352
+ /**
73353
+ * Sets a new value for property {@link #getInteractionMode interactionMode}.
73354
+ *
73355
+ * Specifies the interaction mode.
73356
+ *
73357
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
73358
+ *
73359
+ * Default value is `Auto`.
73360
+ *
73361
+ * @experimental (since 1.121) - Disclaimer: this property is in a beta state - incompatible API changes
73362
+ * may be done before its official public release. Use at your own discretion.
73363
+ *
73364
+ * @returns Reference to `this` in order to allow method chaining
73365
+ */
73366
+ setInteractionMode(
73367
+ /**
73368
+ * New value for property `interactionMode`
73369
+ */
73370
+ sInteractionMode?: sap.m.IconTabFilterInteractionMode
73371
+ ): this;
72250
73372
  /**
72251
73373
  * Sets a new value for property {@link #getShowAll showAll}.
72252
73374
  *
@@ -73589,6 +74711,33 @@ declare namespace sap {
73589
74711
  */
73590
74712
  sIllustrationSize?: sap.m.IllustratedMessageSize
73591
74713
  ): this;
74714
+ /**
74715
+ * Sets a new value for property {@link #getIllustrationType illustrationType}.
74716
+ *
74717
+ * Determines which illustration type is displayed.
74718
+ *
74719
+ * **Note:** The {@link sap.m.IllustratedMessageType} enumeration contains a default illustration set. If
74720
+ * you want to use another illustration set, you have to register it in the {@link sap.m.IllustrationPool}.
74721
+ *
74722
+ * Example input for the `illustrationType` property is `sapIllus-UnableToLoad`. The logic behind this format
74723
+ * is as follows:
74724
+ * - First is the the illustration set - sapIllus
74725
+ * - Second is the illustration type - UnableToLoad
74726
+ *
74727
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
74728
+ *
74729
+ * Default value is `IllustratedMessageType.NoSearchResults`.
74730
+ *
74731
+ * @since 1.98
74732
+ *
74733
+ * @returns Reference to `this` in order to allow method chaining
74734
+ */
74735
+ setIllustrationType(
74736
+ /**
74737
+ * New value for property `illustrationType`
74738
+ */
74739
+ sIllustrationType?: string
74740
+ ): this;
73592
74741
  /**
73593
74742
  * Sets a new value for property {@link #getTitle title}.
73594
74743
  *
@@ -75932,7 +77081,7 @@ declare namespace sap {
75932
77081
  *
75933
77082
  * @since 1.44
75934
77083
  */
75935
- getSelectedItem(): sap.ui.core.ID;
77084
+ getSelectedItem(): sap.ui.core.ID | null;
75936
77085
  /**
75937
77086
  * Gets current value of property {@link #getSelectedKey selectedKey}.
75938
77087
  *
@@ -75953,7 +77102,7 @@ declare namespace sap {
75953
77102
  *
75954
77103
  * @since 1.44
75955
77104
  */
75956
- getSelectedRow(): sap.ui.core.ID;
77105
+ getSelectedRow(): sap.ui.core.ID | null;
75957
77106
  /**
75958
77107
  * Gets current value of property {@link #getShowClearIcon showClearIcon}.
75959
77108
  *
@@ -76169,6 +77318,14 @@ declare namespace sap {
76169
77318
  * for all user interactions. The properties "showValueHelp", "editable", and "enabled" must be set to true,
76170
77319
  * otherwise the property will have no effect. In this scenario, the `showItems` API will not work.
76171
77320
  *
77321
+ * **Note:** The property is deprecated, as it creates unnecessary usability and accessibility restrictions.
77322
+ * The decision to deprecate it is based on the fact that it serves no purpose to have an input field where
77323
+ * the user cannot type. This property restricts even the paste functionality, which can be useful, e.g.
77324
+ * the needed info is already in the clipboard. If the user's input needs to match specific predefined values,
77325
+ * the application should validate the input against the set of values and provide feedback to the user
77326
+ * or use other mechanism for selection, where freestyle input is not allowed by design (Select, SelectDialog,
77327
+ * etc).
77328
+ *
76172
77329
  * Default value is `false`.
76173
77330
  *
76174
77331
  * @since 1.21.0
@@ -76733,7 +77890,7 @@ declare namespace sap {
76733
77890
  * this ID becomes the `selectedItem` association. Alternatively, a `sap.ui.core.Item` instance may be given
76734
77891
  * or `null` to clear the selection.
76735
77892
  */
76736
- oItem?: sap.ui.core.Item
77893
+ oItem?: sap.ui.core.ID | sap.ui.core.Item | null
76737
77894
  ): this;
76738
77895
  /**
76739
77896
  * Sets the `selectedKey` property.
@@ -76764,7 +77921,7 @@ declare namespace sap {
76764
77921
  * with this ID becomes the `selectedRow` association. Alternatively, a `sap.m.ColumnListItem` instance
76765
77922
  * may be given or `null` to clear the selection.
76766
77923
  */
76767
- oListItem: sap.m.ColumnListItem
77924
+ oListItem: sap.ui.core.ID | sap.m.ColumnListItem | null
76768
77925
  ): this;
76769
77926
  /**
76770
77927
  * Sets a new value for property {@link #getShowClearIcon showClearIcon}.
@@ -77007,6 +78164,14 @@ declare namespace sap {
77007
78164
  * for all user interactions. The properties "showValueHelp", "editable", and "enabled" must be set to true,
77008
78165
  * otherwise the property will have no effect. In this scenario, the `showItems` API will not work.
77009
78166
  *
78167
+ * **Note:** The property is deprecated, as it creates unnecessary usability and accessibility restrictions.
78168
+ * The decision to deprecate it is based on the fact that it serves no purpose to have an input field where
78169
+ * the user cannot type. This property restricts even the paste functionality, which can be useful, e.g.
78170
+ * the needed info is already in the clipboard. If the user's input needs to match specific predefined values,
78171
+ * the application should validate the input against the set of values and provide feedback to the user
78172
+ * or use other mechanism for selection, where freestyle input is not allowed by design (Select, SelectDialog,
78173
+ * etc).
78174
+ *
77010
78175
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
77011
78176
  *
77012
78177
  * Default value is `false`.
@@ -77108,7 +78273,12 @@ declare namespace sap {
77108
78273
  *
77109
78274
  * @ui5-protected Do not call from applications (only from related classes in the framework)
77110
78275
  */
77111
- updateInputField(): void;
78276
+ updateInputField(
78277
+ /**
78278
+ * Dom value which will be set.
78279
+ */
78280
+ sNewValue: string
78281
+ ): void;
77112
78282
  /**
77113
78283
  * Update suggestion items.
77114
78284
  *
@@ -77124,8 +78294,9 @@ declare namespace sap {
77124
78294
  */
77125
78295
  class InputBase
77126
78296
  extends sap.ui.core.Control
77127
- implements sap.ui.core.IFormContent {
78297
+ implements sap.ui.core.IFormContent, sap.ui.core.ISemanticFormContent {
77128
78298
  __implements__sap_ui_core_IFormContent: boolean;
78299
+ __implements__sap_ui_core_ISemanticFormContent: boolean;
77129
78300
  /**
77130
78301
  * Constructor for a new `sap.m.InputBase`.
77131
78302
  *
@@ -77349,8 +78520,6 @@ declare namespace sap {
77349
78520
  * Destroys the formattedValueStateText in the aggregation {@link #getFormattedValueStateText formattedValueStateText}.
77350
78521
  *
77351
78522
  * @since 1.78
77352
- * @experimental (since 1.78) - This aggregation is experimental and provides only limited functionality.
77353
- * Also the API might be changed in future.
77354
78523
  *
77355
78524
  * @returns Reference to `this` in order to allow method chaining
77356
78525
  */
@@ -77472,8 +78641,6 @@ declare namespace sap {
77472
78641
  * `valueStateText` and `formattedValueStateText` are set - the latter is shown.
77473
78642
  *
77474
78643
  * @since 1.78
77475
- * @experimental (since 1.78) - This aggregation is experimental and provides only limited functionality.
77476
- * Also the API might be changed in future.
77477
78644
  */
77478
78645
  getFormattedValueStateText(): sap.m.FormattedText;
77479
78646
  /**
@@ -77806,8 +78973,6 @@ declare namespace sap {
77806
78973
  * Sets the aggregated {@link #getFormattedValueStateText formattedValueStateText}.
77807
78974
  *
77808
78975
  * @since 1.78
77809
- * @experimental (since 1.78) - This aggregation is experimental and provides only limited functionality.
77810
- * Also the API might be changed in future.
77811
78976
  *
77812
78977
  * @returns Reference to `this` in order to allow method chaining
77813
78978
  */
@@ -78389,7 +79554,7 @@ declare namespace sap {
78389
79554
  /**
78390
79555
  * ID of the element which is the current target of the association {@link #getLabelFor labelFor}, or `null`.
78391
79556
  */
78392
- getLabelFor(): sap.ui.core.ID;
79557
+ getLabelFor(): sap.ui.core.ID | null;
78393
79558
  /**
78394
79559
  * Enables the `sap.m.Label` to move inside the sap.m.OverflowToolbar. Required by the {@link sap.m.IOverflowToolbarContent }
78395
79560
  * interface.
@@ -79180,11 +80345,13 @@ declare namespace sap {
79180
80345
  implements
79181
80346
  sap.ui.core.IShrinkable,
79182
80347
  sap.ui.core.IFormContent,
80348
+ sap.ui.core.ISemanticFormContent,
79183
80349
  sap.ui.core.ITitleContent,
79184
80350
  sap.ui.core.IAccessKeySupport,
79185
80351
  /* was: sap.m.IToolbarInteractiveControl */ Object {
79186
80352
  __implements__sap_ui_core_IShrinkable: boolean;
79187
80353
  __implements__sap_ui_core_IFormContent: boolean;
80354
+ __implements__sap_ui_core_ISemanticFormContent: boolean;
79188
80355
  __implements__sap_ui_core_ITitleContent: boolean;
79189
80356
  __implements__sap_ui_core_IAccessKeySupport: boolean;
79190
80357
  __implements__sap_m_IToolbarInteractiveControl: boolean;
@@ -81812,13 +82979,20 @@ declare namespace sap {
81812
82979
  ): sap.m.ListItemBase | null;
81813
82980
  /**
81814
82981
  * Removes visible selections of the current selection mode.
82982
+ *
82983
+ *
82984
+ * @returns Reference to `this` in order to allow method chaining
81815
82985
  */
81816
82986
  removeSelections(
81817
82987
  /**
81818
- * Since version 1.16.3. This control keeps old selections after filter or sorting. Set this parameter "true"
81819
- * to remove all selections.
82988
+ * If the `rememberSelection` property is set to `true`, this control preserves selections after filtering
82989
+ * or sorting. Set this parameter to `true` to remove all selections (as of version 1.16)
82990
+ */
82991
+ bAll?: boolean,
82992
+ /**
82993
+ * Determines whether the `selectionChange` event is fired by this method call (as of version 1.121)
81820
82994
  */
81821
- bAll: boolean
82995
+ bFireEvent?: boolean
81822
82996
  ): this;
81823
82997
  /**
81824
82998
  * Requests a specified number of items from the back end to load more data in the list. If the number of
@@ -81864,8 +83038,15 @@ declare namespace sap {
81864
83038
  * the items are not selected if `getMultiSelectMode=ClearAll`.
81865
83039
  *
81866
83040
  * @since 1.16
83041
+ *
83042
+ * @returns Reference to `this` in order to allow method chaining
81867
83043
  */
81868
- selectAll(): this;
83044
+ selectAll(
83045
+ /**
83046
+ * Determines whether the `selectionChange` event is fired by this method call (as of version 1.121)
83047
+ */
83048
+ bFireEvent?: boolean
83049
+ ): this;
81869
83050
  /**
81870
83051
  * Sets the aggregated {@link #getContextMenu contextMenu}.
81871
83052
  *
@@ -82291,16 +83472,23 @@ declare namespace sap {
82291
83472
  ): this;
82292
83473
  /**
82293
83474
  * Selects or deselects the given list item.
83475
+ *
83476
+ *
83477
+ * @returns Reference to `this` in order to allow method chaining
82294
83478
  */
82295
83479
  setSelectedItem(
82296
83480
  /**
82297
- * The list item whose selection to be changed. This parameter is mandatory.
83481
+ * The list item whose selection is changed
82298
83482
  */
82299
83483
  oListItem: sap.m.ListItemBase,
82300
83484
  /**
82301
- * Sets selected status of the list item
83485
+ * Sets selected status of the list item provided
82302
83486
  */
82303
- bSelect?: boolean
83487
+ bSelect?: boolean,
83488
+ /**
83489
+ * Determines whether the `selectionChange` event is fired by this method call (as of version 1.121)
83490
+ */
83491
+ bFireEvent?: boolean
82304
83492
  ): this;
82305
83493
  /**
82306
83494
  * Sets a list item to be selected by id. In single mode the method removes the previous selection.
@@ -88852,7 +90040,7 @@ declare namespace sap {
88852
90040
  /**
88853
90041
  * The selected item to add; if empty, nothing is added.
88854
90042
  */
88855
- oItem: sap.ui.core.Item
90043
+ oItem: sap.ui.core.ID | sap.ui.core.Item
88856
90044
  ): this;
88857
90045
  /**
88858
90046
  * Adds selected items. Only items with valid keys are added as selected.
@@ -89269,10 +90457,7 @@ declare namespace sap {
89269
90457
  * - You can review the tokens by pressing the right or left arrows on the keyboard.
89270
90458
  * - You can select single tokens or a range of tokens and you can copy/cut/delete them.
89271
90459
  */
89272
- class MultiInput
89273
- extends sap.m.Input
89274
- implements sap.ui.core.ISemanticFormContent {
89275
- __implements__sap_ui_core_ISemanticFormContent: boolean;
90460
+ class MultiInput extends sap.m.Input {
89276
90461
  /**
89277
90462
  * Constructor for a new MultiInput.
89278
90463
  *
@@ -89894,12 +91079,30 @@ declare namespace sap {
89894
91079
  */
89895
91080
  aTokens: sap.m.Token[]
89896
91081
  ): this;
91082
+ /**
91083
+ * A helper function calculating if the SuggestionsPopover should be opened on mobile.
91084
+ *
91085
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
91086
+ *
91087
+ * @returns If the popover should be opened.
91088
+ */
91089
+ shouldSuggetionsPopoverOpenOnMobile(
91090
+ /**
91091
+ * Ontap event.
91092
+ */
91093
+ oEvent: jQuery.Event
91094
+ ): boolean;
89897
91095
  /**
89898
91096
  * Updates the inner input field.
89899
91097
  *
89900
91098
  * @ui5-protected Do not call from applications (only from related classes in the framework)
89901
91099
  */
89902
- updateInputField(): void;
91100
+ updateInputField(
91101
+ /**
91102
+ * Dom value which will be set.
91103
+ */
91104
+ sNewValue: string
91105
+ ): void;
89903
91106
  }
89904
91107
  /**
89905
91108
  * Handles hierarchical navigation between Pages or other fullscreen controls.
@@ -90523,7 +91726,7 @@ declare namespace sap {
90523
91726
  * ID of the element which is the current target of the association {@link #getInitialPage initialPage},
90524
91727
  * or `null`.
90525
91728
  */
90526
- getInitialPage(): sap.ui.core.ID;
91729
+ getInitialPage(): sap.ui.core.ID | null;
90527
91730
  /**
90528
91731
  * Returns the control with the given ID from the `pages` aggregation (if available).
90529
91732
  *
@@ -90685,7 +91888,7 @@ declare namespace sap {
90685
91888
  * the position or ID of the `Control` that should be removed or that `Control` itself; if `vPage` is invalid,
90686
91889
  * a negative value or a value greater or equal than the current size of the aggregation, nothing is removed.
90687
91890
  */
90688
- vPage: int | string | sap.ui.core.Control
91891
+ vPage: int | sap.ui.core.ID | sap.ui.core.Control
90689
91892
  ): sap.ui.core.Control | null;
90690
91893
  /**
90691
91894
  * Sets a new value for property {@link #getAutoFocus autoFocus}.
@@ -94675,7 +95878,7 @@ declare namespace sap {
94675
95878
  /**
94676
95879
  * the alternative icon text
94677
95880
  */
94678
- sIconAlt: boolean
95881
+ sIconAlt: string
94679
95882
  ): this;
94680
95883
  /**
94681
95884
  * Sets a new value for property {@link #getIconDensityAware iconDensityAware}.
@@ -96365,6 +97568,71 @@ declare namespace sap {
96365
97568
  */
96366
97569
  vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
96367
97570
  ): this;
97571
+ /**
97572
+ * Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.m.ObjectMarker`.
97573
+ *
97574
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
97575
+ * otherwise it will be bound to this `sap.m.ObjectMarker` itself.
97576
+ *
97577
+ * Event is fired when the `ObjectMarker` is interactive and the user taps/clicks on it.
97578
+ *
97579
+ *
97580
+ * @returns Reference to `this` in order to allow method chaining
97581
+ */
97582
+ attachPress(
97583
+ /**
97584
+ * An application-specific payload object that will be passed to the event handler along with the event
97585
+ * object when firing the event
97586
+ */
97587
+ oData: object,
97588
+ /**
97589
+ * The function to be called when the event occurs
97590
+ */
97591
+ fnFunction: (p1: ObjectMarker$PressEvent) => void,
97592
+ /**
97593
+ * Context object to call the event handler with. Defaults to this `sap.m.ObjectMarker` itself
97594
+ */
97595
+ oListener?: object
97596
+ ): this;
97597
+ /**
97598
+ * Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.m.ObjectMarker`.
97599
+ *
97600
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
97601
+ * otherwise it will be bound to this `sap.m.ObjectMarker` itself.
97602
+ *
97603
+ * Event is fired when the `ObjectMarker` is interactive and the user taps/clicks on it.
97604
+ *
97605
+ *
97606
+ * @returns Reference to `this` in order to allow method chaining
97607
+ */
97608
+ attachPress(
97609
+ /**
97610
+ * The function to be called when the event occurs
97611
+ */
97612
+ fnFunction: (p1: ObjectMarker$PressEvent) => void,
97613
+ /**
97614
+ * Context object to call the event handler with. Defaults to this `sap.m.ObjectMarker` itself
97615
+ */
97616
+ oListener?: object
97617
+ ): this;
97618
+ /**
97619
+ * Detaches event handler `fnFunction` from the {@link #event:press press} event of this `sap.m.ObjectMarker`.
97620
+ *
97621
+ * The passed function and listener object must match the ones used for event registration.
97622
+ *
97623
+ *
97624
+ * @returns Reference to `this` in order to allow method chaining
97625
+ */
97626
+ detachPress(
97627
+ /**
97628
+ * The function to be called, when the event occurs
97629
+ */
97630
+ fnFunction: (p1: ObjectMarker$PressEvent) => void,
97631
+ /**
97632
+ * Context object on which the given function had to be called
97633
+ */
97634
+ oListener?: object
97635
+ ): this;
96368
97636
  /**
96369
97637
  * Fires event {@link #event:press press} to attached listeners.
96370
97638
  *
@@ -97084,8 +98352,9 @@ declare namespace sap {
97084
98352
  */
97085
98353
  class ObjectStatus
97086
98354
  extends sap.ui.core.Control
97087
- implements sap.ui.core.IFormContent {
98355
+ implements sap.ui.core.IFormContent, sap.ui.core.ISemanticFormContent {
97088
98356
  __implements__sap_ui_core_IFormContent: boolean;
98357
+ __implements__sap_ui_core_ISemanticFormContent: boolean;
97089
98358
  /**
97090
98359
  * Constructor for a new ObjectStatus.
97091
98360
  *
@@ -98062,6 +99331,26 @@ declare namespace sap {
98062
99331
  */
98063
99332
  bMoveToOverflow?: boolean
98064
99333
  ): this;
99334
+ /**
99335
+ * Sets a new value for property {@link #getPriority priority}.
99336
+ *
99337
+ * Defines OverflowToolbar items priority. Available priorities are NeverOverflow, High, Low, Disappear
99338
+ * and AlwaysOverflow.
99339
+ *
99340
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
99341
+ *
99342
+ * Default value is `High`.
99343
+ *
99344
+ * @since 1.32
99345
+ *
99346
+ * @returns Reference to `this` in order to allow method chaining
99347
+ */
99348
+ setPriority(
99349
+ /**
99350
+ * New value for property `priority`
99351
+ */
99352
+ sPriority?: sap.m.OverflowToolbarPriority
99353
+ ): this;
98065
99354
  /**
98066
99355
  * Sets a new value for property {@link #getStayInOverflow stayInOverflow}.
98067
99356
  *
@@ -101350,8 +102639,11 @@ declare namespace sap {
101350
102639
  ): this;
101351
102640
  /**
101352
102641
  * Returns the array of conditions.
102642
+ *
102643
+ *
102644
+ * @returns array with filter conditions
101353
102645
  */
101354
- getConditions(): void;
102646
+ getConditions(): sap.m.P13nFilterPanel.FilterConditionOperations[];
101355
102647
  /**
101356
102648
  * Gets current value of property {@link #getContainerQuery containerQuery}.
101357
102649
  *
@@ -101517,7 +102809,7 @@ declare namespace sap {
101517
102809
  /**
101518
102810
  * the complete list of conditions
101519
102811
  */
101520
- aConditions: object[]
102812
+ aConditions: sap.m.P13nFilterPanel.FilterConditionOperations[]
101521
102813
  ): this;
101522
102814
  /**
101523
102815
  * Sets a new value for property {@link #getContainerQuery containerQuery}.
@@ -107916,12 +109208,11 @@ declare namespace sap {
107916
109208
  * Gets current value of property {@link #getAppointmentRoundWidth appointmentRoundWidth}.
107917
109209
  *
107918
109210
  * Defines rounding of the width `CalendarAppoinment` **Note:** This property is applied, when the calendar
107919
- * interval type is day and the view shows more than 20 days
109211
+ * interval type is Day and the view shows more than 20 days
107920
109212
  *
107921
109213
  * Default value is `None`.
107922
109214
  *
107923
109215
  * @since 1.81.0
107924
- * @experimental (since 1.81.0)
107925
109216
  *
107926
109217
  * @returns Value of property `appointmentRoundWidth`
107927
109218
  */
@@ -108061,7 +109352,7 @@ declare namespace sap {
108061
109352
  *
108062
109353
  * @since 1.40.0
108063
109354
  */
108064
- getLegend(): sap.ui.core.ID;
109355
+ getLegend(): sap.ui.core.ID | null;
108065
109356
  /**
108066
109357
  * Gets current value of property {@link #getMaxDate maxDate}.
108067
109358
  *
@@ -108242,7 +109533,39 @@ declare namespace sap {
108242
109533
  *
108243
109534
  * Special days in the header calendar visualized as date range with a type.
108244
109535
  *
108245
- * **Note:** If one day is assigned to more than one type, only the first type will be used.
109536
+ * **Note:** In case there are multiple `sap.ui.unified.DateTypeRange` instances given for a single date,
109537
+ * only the first `sap.ui.unified.DateTypeRange` instance will be used. For example, using the following
109538
+ * sample, the 1st of November will be displayed as a working day of type "Type10":
109539
+ *
109540
+ *
109541
+ * ```javascript
109542
+ *
109543
+ * new DateTypeRange({
109544
+ * startDate: UI5Date.getInstance(2023, 10, 1),
109545
+ * type: CalendarDayType.Type10,
109546
+ * }),
109547
+ * new DateTypeRange({
109548
+ * startDate: UI5Date.getInstance(2023, 10, 1),
109549
+ * type: CalendarDayType.NonWorking
109550
+ * })
109551
+ * ```
109552
+ *
109553
+ *
109554
+ * If you want the first of November to be displayed as a non-working day and also as "Type10," the following
109555
+ * should be done:
109556
+ * ```javascript
109557
+ *
109558
+ * new DateTypeRange({
109559
+ * startDate: UI5Date.getInstance(2023, 10, 1),
109560
+ * type: CalendarDayType.Type10,
109561
+ * secondaryType: CalendarDayType.NonWorking
109562
+ * })
109563
+ * ```
109564
+ *
109565
+ *
109566
+ * You can use only one of the following types for a given date: `sap.ui.unified.CalendarDayType.NonWorking`,
109567
+ * `sap.ui.unified.CalendarDayType.Working` or `sap.ui.unified.CalendarDayType.None`. Assigning more than
109568
+ * one of these values in combination for the same date will lead to unpredictable results.
108246
109569
  */
108247
109570
  getSpecialDates(): sap.ui.unified.DateTypeRange[];
108248
109571
  /**
@@ -108596,14 +109919,13 @@ declare namespace sap {
108596
109919
  * Sets a new value for property {@link #getAppointmentRoundWidth appointmentRoundWidth}.
108597
109920
  *
108598
109921
  * Defines rounding of the width `CalendarAppoinment` **Note:** This property is applied, when the calendar
108599
- * interval type is day and the view shows more than 20 days
109922
+ * interval type is Day and the view shows more than 20 days
108600
109923
  *
108601
109924
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
108602
109925
  *
108603
109926
  * Default value is `None`.
108604
109927
  *
108605
109928
  * @since 1.81.0
108606
- * @experimental (since 1.81.0)
108607
109929
  *
108608
109930
  * @returns Reference to `this` in order to allow method chaining
108609
109931
  */
@@ -109362,8 +110684,6 @@ declare namespace sap {
109362
110684
  * Adds some headerContent to the aggregation {@link #getHeaderContent headerContent}.
109363
110685
  *
109364
110686
  * @since 1.67
109365
- * @experimental (since 1.67) - providing only limited functionality. Also, the API might be changed in
109366
- * the future.
109367
110687
  *
109368
110688
  * @returns Reference to `this` in order to allow method chaining
109369
110689
  */
@@ -109627,8 +110947,6 @@ declare namespace sap {
109627
110947
  * Destroys all the headerContent in the aggregation {@link #getHeaderContent headerContent}.
109628
110948
  *
109629
110949
  * @since 1.67
109630
- * @experimental (since 1.67) - providing only limited functionality. Also, the API might be changed in
109631
- * the future.
109632
110950
  *
109633
110951
  * @returns Reference to `this` in order to allow method chaining
109634
110952
  */
@@ -109896,12 +111214,13 @@ declare namespace sap {
109896
111214
  *
109897
111215
  * Holds the header content of the row.
109898
111216
  *
109899
- * **Note:** If the `headerContent` aggregation is added, then the set icon, description, title and tooltip
109900
- * are ignored.
111217
+ * **Note:**
111218
+ * - If the `headerContent` aggregation is added, then the set icon, description, title and tooltip are
111219
+ * ignored.
111220
+ * - The application developer has to ensure, that the size of the content conforms with the size of the
111221
+ * header.
109901
111222
  *
109902
111223
  * @since 1.67
109903
- * @experimental (since 1.67) - providing only limited functionality. Also, the API might be changed in
109904
- * the future.
109905
111224
  */
109906
111225
  getHeaderContent(): sap.ui.core.Control[];
109907
111226
  /**
@@ -109971,6 +111290,15 @@ declare namespace sap {
109971
111290
  * @returns Value of property `nonWorkingHours`
109972
111291
  */
109973
111292
  getNonWorkingHours(): int[];
111293
+ /**
111294
+ * Gets current value of property {@link #getRowHeaderDescription rowHeaderDescription}.
111295
+ *
111296
+ * Defines the text that will be announced by the screen reader when a user navigates to the row header.
111297
+ *
111298
+ *
111299
+ * @returns Value of property `rowHeaderDescription`
111300
+ */
111301
+ getRowHeaderDescription(): string;
109974
111302
  /**
109975
111303
  * Gets current value of property {@link #getSelected selected}.
109976
111304
  *
@@ -109988,11 +111316,13 @@ declare namespace sap {
109988
111316
  /**
109989
111317
  * Gets content of aggregation {@link #getSpecialDates specialDates}.
109990
111318
  *
109991
- * Holds the special dates in the context of a row. A single date or a date range can be set.
111319
+ * Holds the special dates in the context of a row. A single `sap.ui.unified.DateTypeRange` instance can
111320
+ * be set.
109992
111321
  *
109993
- * **Note** Only date or date ranges of type `sap.ui.unified.CalendarDayType.NonWorking` will be visualized
109994
- * in the `PlanningCalendarRow`. If the aggregation is set as another type, the date or date range will
109995
- * be ignored and will not be displayed in the control.
111322
+ * **Note** Only `sap.ui.unified.DateTypeRange` isntances configured with `sap.ui.unified.CalendarDayType.NonWorking`
111323
+ * or `sap.ui.unified.CalendarDayType.Working` type will be visualized in the row. In all other cases the
111324
+ * `sap.ui.unified.DateTypeRange` instances will be ignored and will not be displayed in the control. Assigning
111325
+ * more than one of these values in combination for the same date will lead to unpredictable results.
109996
111326
  *
109997
111327
  * @since 1.56
109998
111328
  */
@@ -110033,8 +111363,6 @@ declare namespace sap {
110033
111363
  * and returns its index if found or -1 otherwise.
110034
111364
  *
110035
111365
  * @since 1.67
110036
- * @experimental (since 1.67) - providing only limited functionality. Also, the API might be changed in
110037
- * the future.
110038
111366
  *
110039
111367
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
110040
111368
  */
@@ -110093,8 +111421,6 @@ declare namespace sap {
110093
111421
  * Inserts a headerContent into the aggregation {@link #getHeaderContent headerContent}.
110094
111422
  *
110095
111423
  * @since 1.67
110096
- * @experimental (since 1.67) - providing only limited functionality. Also, the API might be changed in
110097
- * the future.
110098
111424
  *
110099
111425
  * @returns Reference to `this` in order to allow method chaining
110100
111426
  */
@@ -110162,8 +111488,6 @@ declare namespace sap {
110162
111488
  * Additionally, it unregisters them from the hosting UIArea.
110163
111489
  *
110164
111490
  * @since 1.67
110165
- * @experimental (since 1.67) - providing only limited functionality. Also, the API might be changed in
110166
- * the future.
110167
111491
  *
110168
111492
  * @returns An array of the removed elements (might be empty)
110169
111493
  */
@@ -110203,8 +111527,6 @@ declare namespace sap {
110203
111527
  * Removes a headerContent from the aggregation {@link #getHeaderContent headerContent}.
110204
111528
  *
110205
111529
  * @since 1.67
110206
- * @experimental (since 1.67) - providing only limited functionality. Also, the API might be changed in
110207
- * the future.
110208
111530
  *
110209
111531
  * @returns The removed headerContent or `null`
110210
111532
  */
@@ -110445,6 +111767,22 @@ declare namespace sap {
110445
111767
  */
110446
111768
  sNonWorkingHours?: int[]
110447
111769
  ): this;
111770
+ /**
111771
+ * Sets a new value for property {@link #getRowHeaderDescription rowHeaderDescription}.
111772
+ *
111773
+ * Defines the text that will be announced by the screen reader when a user navigates to the row header.
111774
+ *
111775
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
111776
+ *
111777
+ *
111778
+ * @returns Reference to `this` in order to allow method chaining
111779
+ */
111780
+ setRowHeaderDescription(
111781
+ /**
111782
+ * New value for property `rowHeaderDescription`
111783
+ */
111784
+ sRowHeaderDescription?: string
111785
+ ): this;
110448
111786
  /**
110449
111787
  * Sets a new value for property {@link #getSelected selected}.
110450
111788
  *
@@ -110597,8 +111935,6 @@ declare namespace sap {
110597
111935
  * A function that formats the interval.
110598
111936
  *
110599
111937
  * @since 1.93
110600
- * @experimental (since 1.93) - This class is experimental and provides only limited functionality. Also
110601
- * the API might be changed in future.
110602
111938
  *
110603
111939
  * @returns Value of property `intervalLabelFormatter`
110604
111940
  */
@@ -110611,8 +111947,6 @@ declare namespace sap {
110611
111947
  * Default value is `1`.
110612
111948
  *
110613
111949
  * @since 1.93
110614
- * @experimental (since 1.93) - This class is experimental and provides only limited functionality. Also
110615
- * the API might be changed in future.
110616
111950
  *
110617
111951
  * @returns Value of property `intervalSize`
110618
111952
  */
@@ -110685,8 +112019,6 @@ declare namespace sap {
110685
112019
  * Default value is `false`.
110686
112020
  *
110687
112021
  * @since 1.93
110688
- * @experimental (since 1.93) - This class is experimental and provides only limited functionality. Also
110689
- * the API might be changed in future.
110690
112022
  *
110691
112023
  * @returns Value of property `relative`
110692
112024
  */
@@ -110750,8 +112082,6 @@ declare namespace sap {
110750
112082
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
110751
112083
  *
110752
112084
  * @since 1.93
110753
- * @experimental (since 1.93) - This class is experimental and provides only limited functionality. Also
110754
- * the API might be changed in future.
110755
112085
  *
110756
112086
  * @returns Reference to `this` in order to allow method chaining
110757
112087
  */
@@ -110771,8 +112101,6 @@ declare namespace sap {
110771
112101
  * Default value is `1`.
110772
112102
  *
110773
112103
  * @since 1.93
110774
- * @experimental (since 1.93) - This class is experimental and provides only limited functionality. Also
110775
- * the API might be changed in future.
110776
112104
  *
110777
112105
  * @returns Reference to `this` in order to allow method chaining
110778
112106
  */
@@ -110887,8 +112215,6 @@ declare namespace sap {
110887
112215
  * Default value is `false`.
110888
112216
  *
110889
112217
  * @since 1.93
110890
- * @experimental (since 1.93) - This class is experimental and provides only limited functionality. Also
110891
- * the API might be changed in future.
110892
112218
  *
110893
112219
  * @returns Reference to `this` in order to allow method chaining
110894
112220
  */
@@ -111601,7 +112927,7 @@ declare namespace sap {
111601
112927
  *
111602
112928
  * @since 1.15.0
111603
112929
  */
111604
- getInitialFocus(): sap.ui.core.ID;
112930
+ getInitialFocus(): sap.ui.core.ID | null;
111605
112931
  /**
111606
112932
  * ID of the element which is the current target of the association {@link #getLeftButton leftButton}, or
111607
112933
  * `null`.
@@ -111609,7 +112935,7 @@ declare namespace sap {
111609
112935
  * @deprecated (since 1.15.1) - This property has been deprecated since 1.15.1. Please use the beginButton
111610
112936
  * instead.
111611
112937
  */
111612
- getLeftButton(): sap.ui.core.ID;
112938
+ getLeftButton(): sap.ui.core.ID | null;
111613
112939
  /**
111614
112940
  * Gets current value of property {@link #getModal modal}.
111615
112941
  *
@@ -111663,12 +112989,11 @@ declare namespace sap {
111663
112989
  /**
111664
112990
  * Gets current value of property {@link #getResizable resizable}.
111665
112991
  *
111666
- * Whether resize option is enabled. Note:* This property is effective only on Desktop
112992
+ * Whether resize option is enabled. NOTE: This property is effective only on Desktop
111667
112993
  *
111668
112994
  * Default value is `false`.
111669
112995
  *
111670
112996
  * @since 1.36.4
111671
- * @experimental (since 1.36.4) - Do not use directly on Popover while in experimental mode!
111672
112997
  *
111673
112998
  * @returns Value of property `resizable`
111674
112999
  */
@@ -111680,7 +113005,7 @@ declare namespace sap {
111680
113005
  * @deprecated (since 1.15.1) - This property has been deprecated since 1.15.1. Please use the endButton
111681
113006
  * instead.
111682
113007
  */
111683
- getRightButton(): sap.ui.core.ID;
113008
+ getRightButton(): sap.ui.core.ID | null;
111684
113009
  /**
111685
113010
  * Gets current value of property {@link #getShowArrow showArrow}.
111686
113011
  *
@@ -112162,14 +113487,13 @@ declare namespace sap {
112162
113487
  /**
112163
113488
  * Sets a new value for property {@link #getResizable resizable}.
112164
113489
  *
112165
- * Whether resize option is enabled. Note:* This property is effective only on Desktop
113490
+ * Whether resize option is enabled. NOTE: This property is effective only on Desktop
112166
113491
  *
112167
113492
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
112168
113493
  *
112169
113494
  * Default value is `false`.
112170
113495
  *
112171
113496
  * @since 1.36.4
112172
- * @experimental (since 1.36.4) - Do not use directly on Popover while in experimental mode!
112173
113497
  *
112174
113498
  * @returns Reference to `this` in order to allow method chaining
112175
113499
  */
@@ -115606,8 +116930,9 @@ declare namespace sap {
115606
116930
  */
115607
116931
  class RadioButtonGroup
115608
116932
  extends sap.ui.core.Control
115609
- implements sap.ui.core.IFormContent {
116933
+ implements sap.ui.core.IFormContent, sap.ui.core.ISemanticFormContent {
115610
116934
  __implements__sap_ui_core_IFormContent: boolean;
116935
+ __implements__sap_ui_core_ISemanticFormContent: boolean;
115611
116936
  /**
115612
116937
  * Constructor for a new RadioButtonGroup.
115613
116938
  *
@@ -116010,7 +117335,12 @@ declare namespace sap {
116010
117335
  *
116011
117336
  * @returns vElement The removed radio button.
116012
117337
  */
116013
- removeButton(): sap.m.RadioButton;
117338
+ removeButton(
117339
+ /**
117340
+ * The button to remove
117341
+ */
117342
+ vElement: int | sap.ui.core.ID | sap.m.RadioButton
117343
+ ): sap.m.RadioButton;
116014
117344
  /**
116015
117345
  * Sets a new value for property {@link #getColumns columns}.
116016
117346
  *
@@ -117542,7 +118872,7 @@ declare namespace sap {
117542
118872
  * ID of the element which is the current target of the association {@link #getInitialFocus initialFocus},
117543
118873
  * or `null`.
117544
118874
  */
117545
- getInitialFocus(): sap.ui.core.ID;
118875
+ getInitialFocus(): sap.ui.core.ID | null;
117546
118876
  /**
117547
118877
  * Gets current value of property {@link #getModal modal}.
117548
118878
  *
@@ -117589,7 +118919,6 @@ declare namespace sap {
117589
118919
  * Default value is `false`.
117590
118920
  *
117591
118921
  * @since 1.36.4
117592
- * @experimental (since 1.36.4) - Do not use directly on ResponsivePopover while in experimental mode!
117593
118922
  *
117594
118923
  * @returns Value of property `resizable`
117595
118924
  */
@@ -117979,7 +119308,6 @@ declare namespace sap {
117979
119308
  * Default value is `false`.
117980
119309
  *
117981
119310
  * @since 1.36.4
117982
- * @experimental (since 1.36.4) - Do not use directly on ResponsivePopover while in experimental mode!
117983
119311
  *
117984
119312
  * @returns Reference to `this` in order to allow method chaining
117985
119313
  */
@@ -120046,14 +121374,14 @@ declare namespace sap {
120046
121374
  *
120047
121375
  * @deprecated (since 1.52) - replaced by `selectedItem` association
120048
121376
  */
120049
- getSelectedButton(): sap.ui.core.ID;
121377
+ getSelectedButton(): sap.ui.core.ID | null;
120050
121378
  /**
120051
121379
  * ID of the element which is the current target of the association {@link #getSelectedItem selectedItem},
120052
121380
  * or `null`.
120053
121381
  *
120054
121382
  * @since 1.52
120055
121383
  */
120056
- getSelectedItem(): sap.ui.core.ID;
121384
+ getSelectedItem(): sap.ui.core.ID | null;
120057
121385
  /**
120058
121386
  * Gets the `selectedKey` and is usable only when the control is initiated with the `items` aggregation.
120059
121387
  *
@@ -120245,7 +121573,7 @@ declare namespace sap {
120245
121573
  * this `selectedButton` association. Alternatively, the ID of an sap.m.Button instance may be given as
120246
121574
  * a string. If the value of null, undefined, or an empty string is provided the first item will be selected.
120247
121575
  */
120248
- vButton: string | sap.m.Button | null | undefined
121576
+ vButton: sap.ui.core.ID | sap.m.Button | null | undefined
120249
121577
  ): this;
120250
121578
  /**
120251
121579
  * Setter for association `selectedItem`.
@@ -120260,7 +121588,7 @@ declare namespace sap {
120260
121588
  * may be given as a string. If the value of null, undefined, or an empty string is provided, the first
120261
121589
  * item will be selected.
120262
121590
  */
120263
- vItem: string | sap.m.SegmentedButtonItem | null | undefined
121591
+ vItem: sap.ui.core.ID | sap.m.SegmentedButtonItem | null | undefined
120264
121592
  ): this;
120265
121593
  /**
120266
121594
  * Sets the `selectedKey` and is usable only when the control is initiated with the `items` aggregation.
@@ -120559,12 +121887,14 @@ declare namespace sap {
120559
121887
  sap.ui.core.ISemanticFormContent,
120560
121888
  sap.m.IOverflowToolbarContent,
120561
121889
  /* was: sap.m.IToolbarInteractiveControl */ Object,
120562
- sap.f.IShellBar {
121890
+ sap.f.IShellBar,
121891
+ /* was: sap.ui.core.ILabelable */ Object {
120563
121892
  __implements__sap_ui_core_IFormContent: boolean;
120564
121893
  __implements__sap_ui_core_ISemanticFormContent: boolean;
120565
121894
  __implements__sap_m_IOverflowToolbarContent: boolean;
120566
121895
  __implements__sap_m_IToolbarInteractiveControl: boolean;
120567
121896
  __implements__sap_f_IShellBar: boolean;
121897
+ __implements__sap_ui_core_ILabelable: boolean;
120568
121898
  /**
120569
121899
  * Constructor for a new `sap.m.Select`.
120570
121900
  *
@@ -121005,15 +122335,6 @@ declare namespace sap {
121005
122335
  * @returns Value of property `icon`
121006
122336
  */
121007
122337
  getIcon(): sap.ui.core.URI;
121008
- /**
121009
- * Returns the DOMNode Id to be used for the "labelFor" attribute of the label.
121010
- *
121011
- * By default, this is the Id of the control itself.
121012
- *
121013
- *
121014
- * @returns Id to be used for the `labelFor`
121015
- */
121016
- getIdForLabel(): string;
121017
122338
  /**
121018
122339
  * Gets the item from the aggregation named `items` at the given 0-based index.
121019
122340
  *
@@ -121264,6 +122585,13 @@ declare namespace sap {
121264
122585
  * @returns Value of property `wrapItemsText`
121265
122586
  */
121266
122587
  getWrapItemsText(): boolean;
122588
+ /**
122589
+ * Returns the DOMNode Id of the labelable HTML element for the `sap.m.Select`.
122590
+ *
122591
+ *
122592
+ * @returns Id of the labelable HTML element
122593
+ */
122594
+ hasLabelableHTMLElement(): string;
121267
122595
  /**
121268
122596
  * Checks for the provided `sap.ui.core.Item` in the aggregation {@link #getItems items}. and returns its
121269
122597
  * index if found or -1 otherwise.
@@ -121351,7 +122679,7 @@ declare namespace sap {
121351
122679
  /**
121352
122680
  * The item to be removed or its index or ID.
121353
122681
  */
121354
- vItem: int | string | sap.ui.core.Item
122682
+ vItem: int | sap.ui.core.ID | sap.ui.core.Item
121355
122683
  ): sap.ui.core.Item | null;
121356
122684
  /**
121357
122685
  * Sets a new value for property {@link #getAutoAdjustWidth autoAdjustWidth}.
@@ -121572,7 +122900,7 @@ declare namespace sap {
121572
122900
  * or `null`. If the value of `null` is provided, the first enabled item will be selected (if any items
121573
122901
  * exist).
121574
122902
  */
121575
- vItem: string | sap.ui.core.Item | null
122903
+ vItem: sap.ui.core.ID | sap.ui.core.Item | null
121576
122904
  ): this;
121577
122905
  /**
121578
122906
  * Sets the `selectedItemId` property.
@@ -125436,7 +126764,7 @@ declare namespace sap {
125436
126764
  /**
125437
126765
  * The item to remove or its index or id.
125438
126766
  */
125439
- vItem: int | string | sap.ui.core.Item
126767
+ vItem: int | sap.ui.core.ID | sap.ui.core.Item
125440
126768
  ): sap.ui.core.Item | null;
125441
126769
  /**
125442
126770
  * Sets a new value for property {@link #getEnabled enabled}.
@@ -125527,7 +126855,7 @@ declare namespace sap {
125527
126855
  * this ID becomes the `selectedItem` association. Alternatively, a `sap.ui.core.Item` instance may be given
125528
126856
  * or `null` to clear the selection.
125529
126857
  */
125530
- vItem: string | sap.ui.core.Item | null
126858
+ vItem: sap.ui.core.ID | sap.ui.core.Item | null
125531
126859
  ): this;
125532
126860
  /**
125533
126861
  * Sets property `selectedItemId`.
@@ -126259,7 +127587,7 @@ declare namespace sap {
126259
127587
  /**
126260
127588
  * A DateRange object
126261
127589
  */
126262
- oSelectedDate: object
127590
+ oSelectedDate: sap.ui.unified.DateRange
126263
127591
  ): this;
126264
127592
  /**
126265
127593
  * Adds some specialDate to the aggregation {@link #getSpecialDates specialDates}.
@@ -127198,7 +128526,7 @@ declare namespace sap {
127198
128526
  *
127199
128527
  * @since 1.65.0
127200
128528
  */
127201
- getLegend(): sap.ui.core.ID;
128529
+ getLegend(): sap.ui.core.ID | null;
127202
128530
  /**
127203
128531
  * Gets current value of property {@link #getScaleFactor scaleFactor}.
127204
128532
  *
@@ -127227,18 +128555,50 @@ declare namespace sap {
127227
128555
  *
127228
128556
  * @returns An array of DateRange objects
127229
128557
  */
127230
- getSelectedDates(): object;
128558
+ getSelectedDates(): sap.ui.unified.DateRange[];
127231
128559
  /**
127232
128560
  * ID of the element which is the current target of the association {@link #getSelectedView selectedView},
127233
128561
  * or `null`.
127234
128562
  */
127235
- getSelectedView(): sap.ui.core.ID;
128563
+ getSelectedView(): sap.ui.core.ID | null;
127236
128564
  /**
127237
128565
  * Gets content of aggregation {@link #getSpecialDates specialDates}.
127238
128566
  *
127239
128567
  * Special days in the header visualized as a date range with type.
127240
128568
  *
127241
- * **Note:** If one day is assigned to more than one type, only the first type is used.
128569
+ * **Note:** In case there are multiple `sap.ui.unified.DateTypeRange` instances given for a single date,
128570
+ * only the first `sap.ui.unified.DateTypeRange` instance will be used. For example, using the following
128571
+ * sample, the 1st of November will be displayed as a working day of type "Type10":
128572
+ *
128573
+ *
128574
+ * ```javascript
128575
+ *
128576
+ * new DateTypeRange({
128577
+ * startDate: UI5Date.getInstance(2023, 10, 1),
128578
+ * type: CalendarDayType.Type10,
128579
+ * }),
128580
+ * new DateTypeRange({
128581
+ * startDate: UI5Date.getInstance(2023, 10, 1),
128582
+ * type: CalendarDayType.NonWorking
128583
+ * })
128584
+ * ```
128585
+ *
128586
+ *
128587
+ * If you want the first of November to be displayed as a non-working day and also as "Type10," the following
128588
+ * should be done:
128589
+ * ```javascript
128590
+ *
128591
+ * new DateTypeRange({
128592
+ * startDate: UI5Date.getInstance(2023, 10, 1),
128593
+ * type: CalendarDayType.Type10,
128594
+ * secondaryType: CalendarDayType.NonWorking
128595
+ * })
128596
+ * ```
128597
+ *
128598
+ *
128599
+ * You can use only one of the following types for a given date: `sap.ui.unified.CalendarDayType.NonWorking`,
128600
+ * `sap.ui.unified.CalendarDayType.Working` or `sap.ui.unified.CalendarDayType.None`. Assigning more than
128601
+ * one of these values in combination for the same date will lead to unpredictable results.
127242
128602
  *
127243
128603
  * @since 1.66
127244
128604
  */
@@ -127508,7 +128868,7 @@ declare namespace sap {
127508
128868
  *
127509
128869
  * @returns An array of the removed DateRange objects
127510
128870
  */
127511
- removeAllSelectedDates(): object;
128871
+ removeAllSelectedDates(): sap.ui.unified.DateRange[];
127512
128872
  /**
127513
128873
  * Removes all the controls from the aggregation {@link #getSpecialDates specialDates}.
127514
128874
  *
@@ -128426,8 +129786,9 @@ declare namespace sap {
128426
129786
  */
128427
129787
  class Slider
128428
129788
  extends sap.ui.core.Control
128429
- implements sap.ui.core.IFormContent {
129789
+ implements sap.ui.core.IFormContent, sap.ui.core.ISemanticFormContent {
128430
129790
  __implements__sap_ui_core_IFormContent: boolean;
129791
+ __implements__sap_ui_core_ISemanticFormContent: boolean;
128431
129792
  /**
128432
129793
  * Constructor for a new `Slider`.
128433
129794
  *
@@ -131267,12 +132628,12 @@ declare namespace sap {
131267
132628
  * ID of the element which is the current target of the association {@link #getInitialDetail initialDetail},
131268
132629
  * or `null`.
131269
132630
  */
131270
- getInitialDetail(): sap.ui.core.ID;
132631
+ getInitialDetail(): sap.ui.core.ID | null;
131271
132632
  /**
131272
132633
  * ID of the element which is the current target of the association {@link #getInitialMaster initialMaster},
131273
132634
  * or `null`.
131274
132635
  */
131275
- getInitialMaster(): sap.ui.core.ID;
132636
+ getInitialMaster(): sap.ui.core.ID | null;
131276
132637
  /**
131277
132638
  * Gets current value of property {@link #getMasterButtonText masterButtonText}.
131278
132639
  *
@@ -134686,7 +136047,7 @@ declare namespace sap {
134686
136047
  * ID of the element which is the current target of the association {@link #getSelectedItem selectedItem},
134687
136048
  * or `null`.
134688
136049
  */
134689
- getSelectedItem(): sap.ui.core.ID;
136050
+ getSelectedItem(): sap.ui.core.ID | null;
134690
136051
  /**
134691
136052
  * Gets current value of property {@link #getShowAddNewButton showAddNewButton}.
134692
136053
  *
@@ -134744,7 +136105,7 @@ declare namespace sap {
134744
136105
  /**
134745
136106
  * The item to remove or its index or ID
134746
136107
  */
134747
- vItem: int | string | sap.m.TabContainerItem
136108
+ vItem: int | sap.ui.core.ID | sap.m.TabContainerItem
134748
136109
  ): sap.m.TabContainerItem | null;
134749
136110
  /**
134750
136111
  * Overrides the `addButton` property setter to proxy to the `TabStrip`.
@@ -134991,8 +136352,7 @@ declare namespace sap {
134991
136352
  *
134992
136353
  * Default value is `empty string`.
134993
136354
  *
134994
- * @experimental (since 1.63) - Disclaimer: this property is in a beta state - incompatible API changes
134995
- * may be done before its official public release. Use at your own discretion.
136355
+ * @since 1.63
134996
136356
  *
134997
136357
  * @returns Value of property `additionalText`
134998
136358
  */
@@ -135009,8 +136369,7 @@ declare namespace sap {
135009
136369
  * Defines the icon to be displayed as graphical element within the `TabContainerItem`. It can be an image
135010
136370
  * or an icon from the icon font.
135011
136371
  *
135012
- * @experimental (since 1.63) - Disclaimer: this property is in a beta state - incompatible API changes
135013
- * may be done before its official public release. Use at your own discretion.
136372
+ * @since 1.63
135014
136373
  *
135015
136374
  * @returns Value of property `icon`
135016
136375
  */
@@ -135020,8 +136379,7 @@ declare namespace sap {
135020
136379
  *
135021
136380
  * Determines the tooltip text of the `TabContainerItem`'s icon.
135022
136381
  *
135023
- * @experimental (since 1.63) - Disclaimer: this property is in a beta state - incompatible API changes
135024
- * may be done before its official public release. Use at your own discretion.
136382
+ * @since 1.63
135025
136383
  *
135026
136384
  * @returns Value of property `iconTooltip`
135027
136385
  */
@@ -135119,8 +136477,7 @@ declare namespace sap {
135119
136477
  *
135120
136478
  * Default value is `empty string`.
135121
136479
  *
135122
- * @experimental (since 1.63) - Disclaimer: this property is in a beta state - incompatible API changes
135123
- * may be done before its official public release. Use at your own discretion.
136480
+ * @since 1.63
135124
136481
  *
135125
136482
  * @returns Reference to `this` in order to allow method chaining
135126
136483
  */
@@ -135149,8 +136506,7 @@ declare namespace sap {
135149
136506
  *
135150
136507
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
135151
136508
  *
135152
- * @experimental (since 1.63) - Disclaimer: this property is in a beta state - incompatible API changes
135153
- * may be done before its official public release. Use at your own discretion.
136509
+ * @since 1.63
135154
136510
  *
135155
136511
  * @returns Reference to `this` in order to allow method chaining
135156
136512
  */
@@ -136375,7 +137731,7 @@ declare namespace sap {
136375
137731
  /**
136376
137732
  * ID of the element which is the current target of the association {@link #getTable table}, or `null`.
136377
137733
  */
136378
- getTable(): sap.ui.core.ID;
137734
+ getTable(): sap.ui.core.ID | null;
136379
137735
  /**
136380
137736
  * Returns a _tablePersoDialog instance if available. It can be NULL if the controller has not been activated
136381
137737
  * yet.
@@ -136842,7 +138198,7 @@ declare namespace sap {
136842
138198
  * ID of the element which is the current target of the association {@link #getPersoDialogFor persoDialogFor},
136843
138199
  * or `null`.
136844
138200
  */
136845
- getPersoDialogFor(): sap.ui.core.ID;
138201
+ getPersoDialogFor(): sap.ui.core.ID | null;
136846
138202
  /**
136847
138203
  * Gets current value of property {@link #getPersoMap persoMap}.
136848
138204
  *
@@ -138334,6 +139690,7 @@ declare namespace sap {
138334
139690
  * Default value is true.
138335
139691
  *
138336
139692
  * @since 1.22
139693
+ * @deprecated (since 1.121) - Native line clamp is now available in all supported browsers.
138337
139694
  * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
138338
139695
  */
138339
139696
  cacheLineHeight: boolean;
@@ -138344,6 +139701,7 @@ declare namespace sap {
138344
139701
  * Can be overwritten with 3dots(...) if fonts do not support this UTF-8 character.
138345
139702
  *
138346
139703
  * @since 1.13.2
139704
+ * @deprecated (since 1.121) - Native line clamp is now available in all supported browsers.
138347
139705
  * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
138348
139706
  */
138349
139707
  ellipsis: string;
@@ -138352,6 +139710,7 @@ declare namespace sap {
138352
139710
  * Defines whether browser supports native line clamp or not
138353
139711
  *
138354
139712
  * @since 1.13.2
139713
+ * @deprecated (since 1.121) - Native line clamp is now available in all supported browsers.
138355
139714
  * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
138356
139715
  */
138357
139716
  static hasNativeLineClamp: undefined;
@@ -138365,6 +139724,7 @@ declare namespace sap {
138365
139724
  * and can also vary within a given face.
138366
139725
  *
138367
139726
  * @since 1.22
139727
+ * @deprecated (since 1.121)
138368
139728
  * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
138369
139729
  */
138370
139730
  normalLineHeight: int;
@@ -138405,6 +139765,8 @@ declare namespace sap {
138405
139765
  * of the first child if it exists.
138406
139766
  *
138407
139767
  * @since 1.30.3
139768
+ * @deprecated (since 1.121) - Since native line clamp is now available in all supported browsers and the
139769
+ * renderer uses `apiVersion: 2`, this method is no longer needed.
138408
139770
  * @ui5-protected Do not call from applications (only from related classes in the framework)
138409
139771
  */
138410
139772
  static setNodeValue(
@@ -138438,6 +139800,7 @@ declare namespace sap {
138438
139800
  * In RTL mode native line clamp feature is not supported.
138439
139801
  *
138440
139802
  * @since 1.20
139803
+ * @deprecated (since 1.121) - Native line clamp is now available in all supported browsers.
138441
139804
  * @ui5-protected Do not call from applications (only from related classes in the framework)
138442
139805
  */
138443
139806
  canUseNativeLineClamp(): boolean;
@@ -138445,6 +139808,7 @@ declare namespace sap {
138445
139808
  * Sets the max height to support `maxLines` property.
138446
139809
  *
138447
139810
  * @since 1.22
139811
+ * @deprecated (since 1.121) - Native line clamp is now available in all supported browsers.
138448
139812
  * @ui5-protected Do not call from applications (only from related classes in the framework)
138449
139813
  *
138450
139814
  * @returns Calculated max height value.
@@ -138460,6 +139824,7 @@ declare namespace sap {
138460
139824
  * be used for better performance.
138461
139825
  *
138462
139826
  * @since 1.20
139827
+ * @deprecated (since 1.121) - Native line clamp is now available in all supported browsers.
138463
139828
  * @ui5-protected Do not call from applications (only from related classes in the framework)
138464
139829
  *
138465
139830
  * @returns Returns found ellipsis position or `undefined`.
@@ -138493,6 +139858,7 @@ declare namespace sap {
138493
139858
  * height!
138494
139859
  *
138495
139860
  * @since 1.22
139861
+ * @deprecated (since 1.121) - Native line clamp is now available in all supported browsers.
138496
139862
  * @ui5-protected Do not call from applications (only from related classes in the framework)
138497
139863
  *
138498
139864
  * @returns The clamp height of the text.
@@ -138521,6 +139887,7 @@ declare namespace sap {
138521
139887
  * sap.m.Text#cacheLineHeight
138522
139888
  *
138523
139889
  * @since 1.22
139890
+ * @deprecated (since 1.121)
138524
139891
  * @ui5-protected Do not call from applications (only from related classes in the framework)
138525
139892
  *
138526
139893
  * @returns returns calculated line height
@@ -138536,9 +139903,6 @@ declare namespace sap {
138536
139903
  *
138537
139904
  * Limits the number of lines for wrapping texts.
138538
139905
  *
138539
- * **Note**: The multi-line overflow indicator depends on the browser line clamping support. For such browsers,
138540
- * this will be shown as ellipsis, for the other browsers the overflow will just be hidden.
138541
- *
138542
139906
  * @since 1.13.2
138543
139907
  *
138544
139908
  * @returns Value of property `maxLines`
@@ -138568,7 +139932,7 @@ declare namespace sap {
138568
139932
  /**
138569
139933
  * Indication for normalized text.
138570
139934
  */
138571
- bNormalize: boolean
139935
+ bNormalize?: boolean
138572
139936
  ): string;
138573
139937
  /**
138574
139938
  * Gets current value of property {@link #getTextAlign textAlign}.
@@ -138647,10 +140011,6 @@ declare namespace sap {
138647
140011
  * @returns Max lines of the text.
138648
140012
  */
138649
140013
  hasMaxLines(): HTMLElement | null;
138650
- /**
138651
- * Overwrites onAfterRendering
138652
- */
138653
- onAfterRendering(): void;
138654
140014
  /**
138655
140015
  * Sets a new value for property {@link #getEmptyIndicatorMode emptyIndicatorMode}.
138656
140016
  *
@@ -138675,9 +140035,6 @@ declare namespace sap {
138675
140035
  *
138676
140036
  * Limits the number of lines for wrapping texts.
138677
140037
  *
138678
- * **Note**: The multi-line overflow indicator depends on the browser line clamping support. For such browsers,
138679
- * this will be shown as ellipsis, for the other browsers the overflow will just be hidden.
138680
- *
138681
140038
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
138682
140039
  *
138683
140040
  * @since 1.13.2
@@ -140447,6 +141804,71 @@ declare namespace sap {
140447
141804
  *
140448
141805
  *
140449
141806
  * - Use the `value` property if you want to bind the `TimePicker` to a model using the `sap.ui.model.type.Time`
141807
+ * binding the `value` property by using types
141808
+ * ```javascript
141809
+ *
141810
+ * new sap.ui.model.json.JSONModel({date: sap.ui.core.date.UI5Date.getInstance(2022,10,10,10,15,10)});
141811
+ *
141812
+ * new sap.m.TimePicker({
141813
+ * value: {
141814
+ * type: "sap.ui.model.type.Time",
141815
+ * path:"/date"
141816
+ * }
141817
+ * });
141818
+ * ```
141819
+ *
141820
+ * - Use the `value` property if the date is provided as a string from the backend or inside the app (for
141821
+ * example, as ABAP type DATS field) binding the `value` property by using types
141822
+ * ```javascript
141823
+ *
141824
+ * new sap.ui.model.json.JSONModel({date:"10:15:10"});
141825
+ * new sap.m.TimePicker({
141826
+ * value: {
141827
+ * type: "sap.ui.model.type.Time",
141828
+ * path: "/date",
141829
+ * formatOptions: {
141830
+ * source: {
141831
+ * pattern: "HH:mm:ss"
141832
+ * }
141833
+ * }
141834
+ * }
141835
+ * });
141836
+ * ```
141837
+ * **Note:** There are multiple binding type choices, such as: sap.ui.model.type.Date sap.ui.model.odata.type.DateTime
141838
+ * sap.ui.model.odata.type.DateTimeOffset See {@link sap.ui.model.type.Date}, {@link sap.ui.model.odata.type.DateTime }
141839
+ * or {@link sap.ui.model.odata.type.DateTimeOffset}
141840
+ *
141841
+ *
141842
+ * - Use the `dateValue` property if the date is already provided as a UI5Date or JavaScript Date object
141843
+ * or you want to work with a UI5Date or JavaScript Date object. Use `dateValue` as a helper property to
141844
+ * easily obtain the hours, minutes and seconds of the chosen time. Although possible to bind it, the recommendation
141845
+ * is to not to do it. When binding is needed, use `value` property instead
141846
+ *
141847
+ * Formatting:
141848
+ *
141849
+ * All formatting and parsing of values from and to strings is done using the {@link sap.ui.core.format.DateFormat}.
141850
+ * If a value is entered by typing it into the input field, it must fit to the used time format and locale.
141851
+ *
141852
+ * Supported format options are pattern-based on Unicode LDML Date Format notation. The format pattern symbols
141853
+ * supported in TimePicker are as follows: "h"/"H" (Hour), "m" (Minute), "s" (Second), and "a" (AM/PM).
141854
+ *
141855
+ * See {@link http://unicode.org/reports/tr35/#Date_Field_Symbol_Table}
141856
+ *
141857
+ * A time format must be specified, otherwise the default "HH:mm:ss a" will be used. For example, if the
141858
+ * `valueFormat` is "HH-mm-ss a", the `displayFormat` is "HH:mm:ss a", and the used locale is English, a
141859
+ * valid value string is "10-30-15 AM", which leads to an output of "10:30:15 AM".
141860
+ *
141861
+ * If no placeholder is set to the `TimePicker`, the used `displayFormat` is displayed as a placeholder.
141862
+ * If another placeholder is needed, it must be set.
141863
+ *
141864
+ * **Note:** If the string does NOT match the `displayFormat` (from user input) or the `valueFormat` (on
141865
+ * app level), the {@link sap.ui.core.format.DateFormat} makes an attempt to parse it based on the locale
141866
+ * settings. For more information, see the respective documentation in the API Reference.
141867
+ *
141868
+ * Responsive behavior:
141869
+ *
141870
+ * The `TimePicker` is responsive and fully adapts to all device types. For larger screens, such as tablet
141871
+ * or desktop, it opens as a popover. For mobile devices, it opens in full screen.
140450
141872
  *
140451
141873
  * @since 1.32
140452
141874
  */
@@ -142078,7 +143500,7 @@ declare namespace sap {
142078
143500
  /**
142079
143501
  * ID of the element which is the current target of the association {@link #getTitle title}, or `null`.
142080
143502
  */
142081
- getTitle(): sap.ui.core.ID;
143503
+ getTitle(): sap.ui.core.ID | null;
142082
143504
  /**
142083
143505
  * Gets current value of property {@link #getTitleStyle titleStyle}.
142084
143506
  *
@@ -142239,7 +143661,7 @@ declare namespace sap {
142239
143661
  */
142240
143662
  setTitle(
142241
143663
  /**
142242
- * Given variant of the a title which can be `sap.m.Title` or `sap.ui.core.Title`.
143664
+ * Given variant of a title which can be `sap.m.Title` or `sap.ui.core.Title`.
142243
143665
  */
142244
143666
  vTitle: sap.m.Title | sap.ui.core.Title
142245
143667
  ): this;
@@ -143132,8 +144554,8 @@ declare namespace sap {
143132
144554
  * in it are editable. Still the Token itself can determine if it is `editable`. This allows you to have
143133
144555
  * non-editable Tokens in an editable Tokenizer.
143134
144556
  *
143135
- * Usage: When to use:: The tokenizer can only be used as part of {@link sap.m.MultiComboBox MultiComboBox},{@link sap.m.MultiInput MultiInput }
143136
- * or {@link sap.ui.comp.valuehelpdialog.ValueHelpDialog ValueHelpDialog}
144557
+ * Usage: When to use:: The tokenizer can only be used as part of {@link sap.m.MultiComboBox MultiComboBox},
144558
+ * {@link sap.m.MultiInput MultiInput} or sap.ui.comp.valuehelpdialog.ValueHelpDialog.
143137
144559
  *
143138
144560
  * @since 1.22
143139
144561
  */
@@ -147514,7 +148936,7 @@ declare namespace sap {
147514
148936
  *
147515
148937
  * @since 1.30.0
147516
148938
  */
147517
- getFileUploader(): sap.ui.core.ID;
148939
+ getFileUploader(): sap.ui.core.ID | null;
147518
148940
  /**
147519
148941
  * Gets content of aggregation {@link #getMarkers markers}.
147520
148942
  *
@@ -148348,7 +149770,8 @@ declare namespace sap {
148348
149770
  /**
148349
149771
  * Gets current value of property {@link #getContexts contexts}.
148350
149772
  *
148351
- * Contains the contexts information of the item.
149773
+ * Contains the contexts information of the item. **Note**: This property must not be bound.
149774
+ * **Note**: This property is used exclusively for SAPUI5 flexibility. Do not use it otherwise.
148352
149775
  *
148353
149776
  * Default value is `{}`.
148354
149777
  *
@@ -148405,12 +149828,12 @@ declare namespace sap {
148405
149828
  *
148406
149829
  * Contains the information is the item is public or private.
148407
149830
  *
148408
- * Default value is `"private"`.
149831
+ * Default value is `Private`.
148409
149832
  *
148410
149833
  *
148411
149834
  * @returns Value of property `sharing`
148412
149835
  */
148413
- getSharing(): string;
149836
+ getSharing(): sap.m.SharingMode;
148414
149837
  /**
148415
149838
  * Gets current value of property {@link #getTitle title}.
148416
149839
  *
@@ -148468,7 +149891,8 @@ declare namespace sap {
148468
149891
  /**
148469
149892
  * Sets a new value for property {@link #getContexts contexts}.
148470
149893
  *
148471
- * Contains the contexts information of the item.
149894
+ * Contains the contexts information of the item. **Note**: This property must not be bound.
149895
+ * **Note**: This property is used exclusively for SAPUI5 flexibility. Do not use it otherwise.
148472
149896
  *
148473
149897
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
148474
149898
  *
@@ -148562,7 +149986,7 @@ declare namespace sap {
148562
149986
  *
148563
149987
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
148564
149988
  *
148565
- * Default value is `"private"`.
149989
+ * Default value is `Private`.
148566
149990
  *
148567
149991
  *
148568
149992
  * @returns Reference to `this` in order to allow method chaining
@@ -148571,7 +149995,7 @@ declare namespace sap {
148571
149995
  /**
148572
149996
  * New value for property `sharing`
148573
149997
  */
148574
- sSharing?: string
149998
+ sSharing?: sap.m.SharingMode
148575
149999
  ): this;
148576
150000
  /**
148577
150001
  * Sets a new value for property {@link #getTitle title}.
@@ -148847,8 +150271,7 @@ declare namespace sap {
148847
150271
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
148848
150272
  * otherwise it will be bound to this `sap.m.VariantManagement` itself.
148849
150273
  *
148850
- * This event is fired when either Save As is triggered from the Save View dialog, or Save
148851
- * from My Views.
150274
+ * This event is fired when the Save View dialog or the Save As dialog is closed with the Save button.
148852
150275
  *
148853
150276
  *
148854
150277
  * @returns Reference to `this` in order to allow method chaining
@@ -148874,8 +150297,7 @@ declare namespace sap {
148874
150297
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
148875
150298
  * otherwise it will be bound to this `sap.m.VariantManagement` itself.
148876
150299
  *
148877
- * This event is fired when either Save As is triggered from the Save View dialog, or Save
148878
- * from My Views.
150300
+ * This event is fired when the Save View dialog or the Save As dialog is closed with the Save button.
148879
150301
  *
148880
150302
  *
148881
150303
  * @returns Reference to `this` in order to allow method chaining
@@ -149102,7 +150524,7 @@ declare namespace sap {
149102
150524
  /**
149103
150525
  * Gets current value of property {@link #getCreationAllowed creationAllowed}.
149104
150526
  *
149105
- * If set to `false` neither 'Save As' nor 'Save' buttons on the 'My Views' dialog are visible.
150527
+ * If set to `false`, neither the Save As nor the Save button in the My Views dialog is visible.
149106
150528
  *
149107
150529
  * Default value is `true`.
149108
150530
  *
@@ -149201,7 +150623,7 @@ declare namespace sap {
149201
150623
  /**
149202
150624
  * Gets current value of property {@link #getPopoverTitle popoverTitle}.
149203
150625
  *
149204
- * The title in the 'My Views' popover.
150626
+ * The title in the My Views popover.
149205
150627
  *
149206
150628
  * Default value is `empty string`.
149207
150629
  *
@@ -149234,7 +150656,7 @@ declare namespace sap {
149234
150656
  /**
149235
150657
  * Gets current value of property {@link #getShowSaveAs showSaveAs}.
149236
150658
  *
149237
- * Controls the visibility of the 'SaveAs' button
150659
+ * Controls the visibility of the Save As button.
149238
150660
  *
149239
150661
  * Default value is `true`.
149240
150662
  *
@@ -149382,7 +150804,7 @@ declare namespace sap {
149382
150804
  /**
149383
150805
  * Sets a new value for property {@link #getCreationAllowed creationAllowed}.
149384
150806
  *
149385
- * If set to `false` neither 'Save As' nor 'Save' buttons on the 'My Views' dialog are visible.
150807
+ * If set to `false`, neither the Save As nor the Save button in the My Views dialog is visible.
149386
150808
  *
149387
150809
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
149388
150810
  *
@@ -149397,6 +150819,15 @@ declare namespace sap {
149397
150819
  */
149398
150820
  bCreationAllowed?: boolean
149399
150821
  ): this;
150822
+ /**
150823
+ * Enables the programmatic selection of a variant.
150824
+ */
150825
+ setCurrentVariantKey(
150826
+ /**
150827
+ * of variant to be selected. If the passed key doesn't identify a variant, it will be ignored
150828
+ */
150829
+ sKey: string
150830
+ ): void;
149400
150831
  /**
149401
150832
  * Sets a new value for property {@link #getDefaultKey defaultKey}.
149402
150833
  *
@@ -149492,7 +150923,7 @@ declare namespace sap {
149492
150923
  /**
149493
150924
  * Sets a new value for property {@link #getPopoverTitle popoverTitle}.
149494
150925
  *
149495
- * The title in the 'My Views' popover.
150926
+ * The title in the My Views popover.
149496
150927
  *
149497
150928
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
149498
150929
  *
@@ -149546,7 +150977,7 @@ declare namespace sap {
149546
150977
  /**
149547
150978
  * Sets a new value for property {@link #getShowSaveAs showSaveAs}.
149548
150979
  *
149549
- * Controls the visibility of the 'SaveAs' button
150980
+ * Controls the visibility of the Save As button.
149550
150981
  *
149551
150982
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
149552
150983
  *
@@ -150957,17 +152388,17 @@ declare namespace sap {
150957
152388
  * ID of the element which is the current target of the association {@link #getSelectedGroupItem selectedGroupItem},
150958
152389
  * or `null`.
150959
152390
  */
150960
- getSelectedGroupItem(): sap.ui.core.ID;
152391
+ getSelectedGroupItem(): sap.ui.core.ID | null;
150961
152392
  /**
150962
152393
  * ID of the element which is the current target of the association {@link #getSelectedPresetFilterItem selectedPresetFilterItem},
150963
152394
  * or `null`.
150964
152395
  */
150965
- getSelectedPresetFilterItem(): sap.ui.core.ID;
152396
+ getSelectedPresetFilterItem(): sap.ui.core.ID | null;
150966
152397
  /**
150967
152398
  * ID of the element which is the current target of the association {@link #getSelectedSortItem selectedSortItem},
150968
152399
  * or `null`.
150969
152400
  */
150970
- getSelectedSortItem(): sap.ui.core.ID;
152401
+ getSelectedSortItem(): sap.ui.core.ID | null;
150971
152402
  /**
150972
152403
  * Gets current value of property {@link #getSortDescending sortDescending}.
150973
152404
  *
@@ -151267,9 +152698,9 @@ declare namespace sap {
151267
152698
  */
151268
152699
  removeFilterItem(
151269
152700
  /**
151270
- * The filter item's index, or the item itself, or its id
152701
+ * The filter item's index, or the item itself, or its ID
151271
152702
  */
151272
- vFilterItem: int | sap.m.ViewSettingsFilterItem | string
152703
+ vFilterItem: int | sap.m.ViewSettingsFilterItem | sap.ui.core.ID
151273
152704
  ): sap.m.ViewSettingsFilterItem | null;
151274
152705
  /**
151275
152706
  * Removes a groupItem from the aggregation {@link #getGroupItems groupItems}.
@@ -151430,7 +152861,7 @@ declare namespace sap {
151430
152861
  /**
151431
152862
  * The selected item, the item's string key or the item id
151432
152863
  */
151433
- vItemOrKey: sap.m.ViewSettingsItem | string
152864
+ vItemOrKey: sap.m.ViewSettingsItem | sap.ui.core.ID | string
151434
152865
  ): this;
151435
152866
  /**
151436
152867
  * Sets the selected preset filter item.
@@ -151442,7 +152873,7 @@ declare namespace sap {
151442
152873
  /**
151443
152874
  * The selected item or the item's key string
151444
152875
  */
151445
- vItemOrKey: sap.m.ViewSettingsItem | string | null
152876
+ vItemOrKey: sap.m.ViewSettingsItem | sap.ui.core.ID | string | null
151446
152877
  ): this;
151447
152878
  /**
151448
152879
  * Sets the selected sort item (either by key, item id or item instance).
@@ -151454,7 +152885,7 @@ declare namespace sap {
151454
152885
  /**
151455
152886
  * The selected item, the item's string key or the item id
151456
152887
  */
151457
- vItemOrKey: sap.m.ViewSettingsItem | string
152888
+ vItemOrKey: sap.m.ViewSettingsItem | sap.ui.core.ID | string
151458
152889
  ): this;
151459
152890
  /**
151460
152891
  * Sets a new value for property {@link #getSortDescending sortDescending}.
@@ -152012,6 +153443,18 @@ declare namespace sap {
152012
153443
  * @returns Value of property `selected`
152013
153444
  */
152014
153445
  getSelected(): boolean;
153446
+ /**
153447
+ * Gets current value of property {@link #getWrapping wrapping}.
153448
+ *
153449
+ * Defines the wrapping behavior of the title text.
153450
+ *
153451
+ * Default value is `false`.
153452
+ *
153453
+ * @since 1.121.0
153454
+ *
153455
+ * @returns Value of property `wrapping`
153456
+ */
153457
+ getWrapping(): boolean;
152015
153458
  /**
152016
153459
  * Sets a new value for property {@link #getSelected selected}.
152017
153460
  *
@@ -152031,6 +153474,25 @@ declare namespace sap {
152031
153474
  */
152032
153475
  bSelected?: boolean
152033
153476
  ): this;
153477
+ /**
153478
+ * Sets a new value for property {@link #getWrapping wrapping}.
153479
+ *
153480
+ * Defines the wrapping behavior of the title text.
153481
+ *
153482
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
153483
+ *
153484
+ * Default value is `false`.
153485
+ *
153486
+ * @since 1.121.0
153487
+ *
153488
+ * @returns Reference to `this` in order to allow method chaining
153489
+ */
153490
+ setWrapping(
153491
+ /**
153492
+ * New value for property `wrapping`
153493
+ */
153494
+ bWrapping?: boolean
153495
+ ): this;
152034
153496
  }
152035
153497
  /**
152036
153498
  * Single select list slider with simple text values, that supports cyclic scrolling and expands/collapses
@@ -153159,7 +154621,7 @@ declare namespace sap {
153159
154621
  *
153160
154622
  * @since 1.50
153161
154623
  */
153162
- getCurrentStep(): sap.ui.core.ID;
154624
+ getCurrentStep(): sap.ui.core.ID | null;
153163
154625
  /**
153164
154626
  * Gets current value of property {@link #getEnableBranching enableBranching}.
153165
154627
  *
@@ -153767,7 +155229,7 @@ declare namespace sap {
153767
155229
  *
153768
155230
  * @since 1.32
153769
155231
  */
153770
- getNextStep(): sap.ui.core.ID;
155232
+ getNextStep(): sap.ui.core.ID | null;
153771
155233
  /**
153772
155234
  * Gets current value of property {@link #getOptional optional}.
153773
155235
  *
@@ -154123,6 +155585,8 @@ declare namespace sap {
154123
155585
  }
154124
155586
  /**
154125
155587
  * Available Background Design.
155588
+ *
155589
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'BackgroundDesign'.
154126
155590
  */
154127
155591
  enum BackgroundDesign {
154128
155592
  /**
@@ -154141,6 +155605,8 @@ declare namespace sap {
154141
155605
  /**
154142
155606
  * Types of animation performed by {@link sap.m.BadgeEnabler}.
154143
155607
  *
155608
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'BadgeAnimationType'.
155609
+ *
154144
155610
  * @since 1.87
154145
155611
  */
154146
155612
  enum BadgeAnimationType {
@@ -154160,6 +155626,8 @@ declare namespace sap {
154160
155626
  /**
154161
155627
  * Types of state of {@link sap.m.BadgeEnabler} to expose its current state.
154162
155628
  *
155629
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'BadgeState'.
155630
+ *
154163
155631
  * @since 1.81
154164
155632
  */
154165
155633
  enum BadgeState {
@@ -154179,6 +155647,8 @@ declare namespace sap {
154179
155647
  /**
154180
155648
  * Types of the Bar design.
154181
155649
  *
155650
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'BarDesign'.
155651
+ *
154182
155652
  * @since 1.20
154183
155653
  */
154184
155654
  enum BarDesign {
@@ -154202,6 +155672,8 @@ declare namespace sap {
154202
155672
  }
154203
155673
  /**
154204
155674
  * Available Border Design.
155675
+ *
155676
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'BorderDesign'.
154205
155677
  */
154206
155678
  enum BorderDesign {
154207
155679
  /**
@@ -154216,6 +155688,8 @@ declare namespace sap {
154216
155688
  /**
154217
155689
  * Variations of the {@link sap.m.Breadcrumbs} separators.
154218
155690
  *
155691
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'BreadcrumbsSeparatorStyle'.
155692
+ *
154219
155693
  * @since 1.69
154220
155694
  */
154221
155695
  enum BreadcrumbsSeparatorStyle {
@@ -154247,6 +155721,8 @@ declare namespace sap {
154247
155721
  /**
154248
155722
  * Enumeration for possible Button accessibility roles.
154249
155723
  *
155724
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ButtonAccessibleRole'.
155725
+ *
154250
155726
  * @since 1.114.0
154251
155727
  */
154252
155728
  enum ButtonAccessibleRole {
@@ -154261,6 +155737,8 @@ declare namespace sap {
154261
155737
  }
154262
155738
  /**
154263
155739
  * Different predefined button types for the {@link sap.m.Button sap.m.Button}.
155740
+ *
155741
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ButtonType'.
154264
155742
  */
154265
155743
  enum ButtonType {
154266
155744
  /**
@@ -154344,6 +155822,8 @@ declare namespace sap {
154344
155822
  }
154345
155823
  /**
154346
155824
  * Carousel arrows align.
155825
+ *
155826
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'CarouselArrowsPlacement'.
154347
155827
  */
154348
155828
  enum CarouselArrowsPlacement {
154349
155829
  /**
@@ -154355,9 +155835,26 @@ declare namespace sap {
154355
155835
  */
154356
155836
  PageIndicator = "PageIndicator",
154357
155837
  }
155838
+ /**
155839
+ * Defines how pages will be scrolled, when clicking the arrow.
155840
+ *
155841
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'CarouselScrollMode'.
155842
+ */
155843
+ enum CarouselScrollMode {
155844
+ /**
155845
+ * Pages will be scrolled one at a time
155846
+ */
155847
+ SinglePage = "SinglePage",
155848
+ /**
155849
+ * Pages will be scrolled, depending on the value of `visiblePagesCount`
155850
+ */
155851
+ VisiblePages = "VisiblePages",
155852
+ }
154358
155853
  /**
154359
155854
  * A subset of DateTimeInput types that fit to a simple API returning one string.
154360
155855
  *
155856
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'DateTimeInputType'.
155857
+ *
154361
155858
  * @deprecated (since 1.32.8) - Instead, use dedicated `sap.m.DatePicker` and/or `sap.m.TimePicker` controls.
154362
155859
  */
154363
155860
  enum DateTimeInputType {
@@ -154385,6 +155882,8 @@ declare namespace sap {
154385
155882
  /**
154386
155883
  * Enum of the available deviation markers for the NumericContent control.
154387
155884
  *
155885
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'DeviationIndicator'.
155886
+ *
154388
155887
  * @since 1.34
154389
155888
  */
154390
155889
  enum DeviationIndicator {
@@ -154404,6 +155903,8 @@ declare namespace sap {
154404
155903
  /**
154405
155904
  * Enum for the ARIA role of {@link sap.m.Dialog} control.
154406
155905
  *
155906
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'DialogRoleType'.
155907
+ *
154407
155908
  * @since 1.65
154408
155909
  */
154409
155910
  enum DialogRoleType {
@@ -154418,6 +155919,8 @@ declare namespace sap {
154418
155919
  }
154419
155920
  /**
154420
155921
  * Enum for the type of {@link sap.m.Dialog} control.
155922
+ *
155923
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'DialogType'.
154421
155924
  */
154422
155925
  enum DialogType {
154423
155926
  /**
@@ -154435,6 +155938,8 @@ declare namespace sap {
154435
155938
  }
154436
155939
  /**
154437
155940
  * Enum for the state of {@link sap.m.DraftIndicator} control.
155941
+ *
155942
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'DraftIndicatorState'.
154438
155943
  */
154439
155944
  enum DraftIndicatorState {
154440
155945
  /**
@@ -154453,6 +155958,8 @@ declare namespace sap {
154453
155958
  /**
154454
155959
  * Defines the groups in {@link sap.m.DynamicDateRange}.
154455
155960
  *
155961
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'DynamicDateRangeGroups'.
155962
+ *
154456
155963
  * @since 1.118
154457
155964
  */
154458
155965
  enum DynamicDateRangeGroups {
@@ -154484,6 +155991,8 @@ declare namespace sap {
154484
155991
  /**
154485
155992
  * Modes in which a control will render empty indicator if its content is empty.
154486
155993
  *
155994
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'EmptyIndicatorMode'.
155995
+ *
154487
155996
  * @since 1.87
154488
155997
  */
154489
155998
  enum EmptyIndicatorMode {
@@ -154503,6 +156012,8 @@ declare namespace sap {
154503
156012
  }
154504
156013
  /**
154505
156014
  * Expandable text overflow mode
156015
+ *
156016
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ExpandableTextOverflowMode'.
154506
156017
  */
154507
156018
  enum ExpandableTextOverflowMode {
154508
156019
  /**
@@ -154516,6 +156027,8 @@ declare namespace sap {
154516
156027
  }
154517
156028
  /**
154518
156029
  * FacetFilterList data types.
156030
+ *
156031
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'FacetFilterListDataType'.
154519
156032
  */
154520
156033
  enum FacetFilterListDataType {
154521
156034
  /**
@@ -154551,6 +156064,8 @@ declare namespace sap {
154551
156064
  }
154552
156065
  /**
154553
156066
  * Used by the FacetFilter control to adapt its design according to type.
156067
+ *
156068
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'FacetFilterType'.
154554
156069
  */
154555
156070
  enum FacetFilterType {
154556
156071
  /**
@@ -154566,6 +156081,8 @@ declare namespace sap {
154566
156081
  }
154567
156082
  /**
154568
156083
  * Available options for the layout of container lines along the cross axis of the flexbox layout.
156084
+ *
156085
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'FlexAlignContent'.
154569
156086
  */
154570
156087
  enum FlexAlignContent {
154571
156088
  /**
@@ -154599,6 +156116,8 @@ declare namespace sap {
154599
156116
  }
154600
156117
  /**
154601
156118
  * Available options for the layout of all elements along the cross axis of the flexbox layout.
156119
+ *
156120
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'FlexAlignItems'.
154602
156121
  */
154603
156122
  enum FlexAlignItems {
154604
156123
  /**
@@ -154633,6 +156152,8 @@ declare namespace sap {
154633
156152
  /**
154634
156153
  * Available options for the layout of individual elements along the cross axis of the flexbox layout overriding
154635
156154
  * the default alignment.
156155
+ *
156156
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'FlexAlignSelf'.
154636
156157
  */
154637
156158
  enum FlexAlignSelf {
154638
156159
  /**
@@ -154670,6 +156191,8 @@ declare namespace sap {
154670
156191
  }
154671
156192
  /**
154672
156193
  * Available directions for flex layouts.
156194
+ *
156195
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'FlexDirection'.
154673
156196
  */
154674
156197
  enum FlexDirection {
154675
156198
  /**
@@ -154695,6 +156218,8 @@ declare namespace sap {
154695
156218
  }
154696
156219
  /**
154697
156220
  * Available options for the layout of elements along the main axis of the flexbox layout.
156221
+ *
156222
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'FlexJustifyContent'.
154698
156223
  */
154699
156224
  enum FlexJustifyContent {
154700
156225
  /**
@@ -154724,6 +156249,8 @@ declare namespace sap {
154724
156249
  }
154725
156250
  /**
154726
156251
  * Determines the type of HTML elements used for rendering controls.
156252
+ *
156253
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'FlexRendertype'.
154727
156254
  */
154728
156255
  enum FlexRendertype {
154729
156256
  /**
@@ -154743,6 +156270,8 @@ declare namespace sap {
154743
156270
  }
154744
156271
  /**
154745
156272
  * Available options for the wrapping behavior of a flex container.
156273
+ *
156274
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'FlexWrap'.
154746
156275
  */
154747
156276
  enum FlexWrap {
154748
156277
  /**
@@ -154761,6 +156290,8 @@ declare namespace sap {
154761
156290
  /**
154762
156291
  * Enum for possible frame size types for sap.m.TileContent and sap.m.GenericTile control.
154763
156292
  *
156293
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'FrameType'.
156294
+ *
154764
156295
  * @since 1.34.0
154765
156296
  */
154766
156297
  enum FrameType {
@@ -154802,6 +156333,8 @@ declare namespace sap {
154802
156333
  /**
154803
156334
  * Design modes for the `GenericTag` control.
154804
156335
  *
156336
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'GenericTagDesign'.
156337
+ *
154805
156338
  * @since 1.62.0
154806
156339
  */
154807
156340
  enum GenericTagDesign {
@@ -154817,6 +156350,8 @@ declare namespace sap {
154817
156350
  /**
154818
156351
  * Value states for the `GenericTag` control.
154819
156352
  *
156353
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'GenericTagValueState'.
156354
+ *
154820
156355
  * @since 1.62.0
154821
156356
  */
154822
156357
  enum GenericTagValueState {
@@ -154833,6 +156368,8 @@ declare namespace sap {
154833
156368
  /**
154834
156369
  * Defines the mode of GenericTile.
154835
156370
  *
156371
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'GenericTileMode'.
156372
+ *
154836
156373
  * @since 1.38.0
154837
156374
  */
154838
156375
  enum GenericTileMode {
@@ -154886,6 +156423,8 @@ declare namespace sap {
154886
156423
  /**
154887
156424
  * Defines the scopes of GenericTile enabling the developer to implement different "flavors" of tiles.
154888
156425
  *
156426
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'GenericTileScope'.
156427
+ *
154889
156428
  * @since 1.46.0
154890
156429
  */
154891
156430
  enum GenericTileScope {
@@ -154913,6 +156452,8 @@ declare namespace sap {
154913
156452
  }
154914
156453
  /**
154915
156454
  * Different levels for headers.
156455
+ *
156456
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'HeaderLevel'.
154916
156457
  */
154917
156458
  enum HeaderLevel {
154918
156459
  /**
@@ -154943,6 +156484,8 @@ declare namespace sap {
154943
156484
  /**
154944
156485
  * Allowed tags for the implementation of the IBar interface.
154945
156486
  *
156487
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'IBarHTMLTag'.
156488
+ *
154946
156489
  * @since 1.22
154947
156490
  */
154948
156491
  enum IBarHTMLTag {
@@ -154961,6 +156504,8 @@ declare namespace sap {
154961
156504
  }
154962
156505
  /**
154963
156506
  * Specifies `IconTabBar` tab density mode.
156507
+ *
156508
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'IconTabDensityMode'.
154964
156509
  */
154965
156510
  enum IconTabDensityMode {
154966
156511
  /**
@@ -154980,6 +156525,8 @@ declare namespace sap {
154980
156525
  }
154981
156526
  /**
154982
156527
  * Available Filter Item Design.
156528
+ *
156529
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'IconTabFilterDesign'.
154983
156530
  */
154984
156531
  enum IconTabFilterDesign {
154985
156532
  /**
@@ -154991,8 +156538,34 @@ declare namespace sap {
154991
156538
  */
154992
156539
  Vertical = "Vertical",
154993
156540
  }
156541
+ /**
156542
+ * Available Interaction Modes.
156543
+ *
156544
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'IconTabFilterInteractionMode'.
156545
+ *
156546
+ * @experimental (since 1.121) - Behavior might change.
156547
+ */
156548
+ enum IconTabFilterInteractionMode {
156549
+ /**
156550
+ * The item is selectable if it has own content. Select event will not be fired if it has no own content.
156551
+ * Note: When IconTabHeader is placed in ToolHeader the items will act as selectable items even if they
156552
+ * don’t explicitly have content.
156553
+ */
156554
+ Auto = "Auto",
156555
+ /**
156556
+ * The item is selectable and select event will be fired.
156557
+ */
156558
+ Select = "Select",
156559
+ /**
156560
+ * The item is selectable (and select event is fired) only if it doesn't have any sub items. Select event
156561
+ * will not be fired if it has sub items.
156562
+ */
156563
+ SelectLeavesOnly = "SelectLeavesOnly",
156564
+ }
154994
156565
  /**
154995
156566
  * Specifies `IconTabBar` header mode.
156567
+ *
156568
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'IconTabHeaderMode'.
154996
156569
  */
154997
156570
  enum IconTabHeaderMode {
154998
156571
  /**
@@ -155098,6 +156671,10 @@ declare namespace sap {
155098
156671
  * "Group Table" illustration type.
155099
156672
  */
155100
156673
  GroupTable = "sapIllus-GroupTable",
156674
+ /**
156675
+ * "New Mail" illustration type.
156676
+ */
156677
+ NewMail = "sapIllus-NewMail",
155101
156678
  /**
155102
156679
  * "No Activities" illustration type.
155103
156680
  */
@@ -155174,6 +156751,10 @@ declare namespace sap {
155174
156751
  * "Search Folder" illustration type.
155175
156752
  */
155176
156753
  SearchFolder = "sapIllus-SearchFolder",
156754
+ /**
156755
+ * "Sign Out" illustration type.
156756
+ */
156757
+ SignOut = "sapIllus-SignOut",
155177
156758
  /**
155178
156759
  * "Simple Balloon" illustration type.
155179
156760
  */
@@ -155286,6 +156867,8 @@ declare namespace sap {
155286
156867
  /**
155287
156868
  * Determines how the source image is used on the output DOM element.
155288
156869
  *
156870
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ImageMode'.
156871
+ *
155289
156872
  * @since 1.30.0
155290
156873
  */
155291
156874
  enum ImageMode {
@@ -155312,6 +156895,8 @@ declare namespace sap {
155312
156895
  /**
155313
156896
  * Defines how the input display text should be formatted.
155314
156897
  *
156898
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'InputTextFormatMode'.
156899
+ *
155315
156900
  * @since 1.44.0
155316
156901
  */
155317
156902
  enum InputTextFormatMode {
@@ -155336,6 +156921,8 @@ declare namespace sap {
155336
156921
  * A subset of input types that fits to a simple API returning one string.
155337
156922
  *
155338
156923
  * Not available on purpose: button, checkbox, hidden, image, password, radio, range, reset, search, submit.
156924
+ *
156925
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'InputType'.
155339
156926
  */
155340
156927
  enum InputType {
155341
156928
  /**
@@ -155406,6 +156993,8 @@ declare namespace sap {
155406
156993
  }
155407
156994
  /**
155408
156995
  * Available label display modes.
156996
+ *
156997
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'LabelDesign'.
155409
156998
  */
155410
156999
  enum LabelDesign {
155411
157000
  /**
@@ -155420,6 +157009,8 @@ declare namespace sap {
155420
157009
  /**
155421
157010
  * Types of LightBox loading stages.
155422
157011
  *
157012
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'LightBoxLoadingStates'.
157013
+ *
155423
157014
  * @since 1.40
155424
157015
  */
155425
157016
  enum LightBoxLoadingStates {
@@ -155443,6 +157034,8 @@ declare namespace sap {
155443
157034
  /**
155444
157035
  * Enumeration for possible Link accessibility roles.
155445
157036
  *
157037
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'LinkAccessibleRole'.
157038
+ *
155446
157039
  * @since 1.104.0
155447
157040
  */
155448
157041
  enum LinkAccessibleRole {
@@ -155458,6 +157051,8 @@ declare namespace sap {
155458
157051
  /**
155459
157052
  * Enumeration for possible link-to-anchor conversion strategy.
155460
157053
  *
157054
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'LinkConversion'.
157055
+ *
155461
157056
  * @since 1.45.5
155462
157057
  */
155463
157058
  enum LinkConversion {
@@ -155477,6 +157072,8 @@ declare namespace sap {
155477
157072
  /**
155478
157073
  * Defines the growing direction of the `sap.m.List` or `sap.m.Table`.
155479
157074
  *
157075
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ListGrowingDirection'.
157076
+ *
155480
157077
  * @since 1.40.0
155481
157078
  */
155482
157079
  enum ListGrowingDirection {
@@ -155495,6 +157092,8 @@ declare namespace sap {
155495
157092
  /**
155496
157093
  * Defines the different header styles.
155497
157094
  *
157095
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ListHeaderDesign'.
157096
+ *
155498
157097
  * @deprecated (since 1.16) - Has no functionality since 1.16.
155499
157098
  */
155500
157099
  enum ListHeaderDesign {
@@ -155510,6 +157109,8 @@ declare namespace sap {
155510
157109
  /**
155511
157110
  * Defines the keyboard handling behavior of the `sap.m.List` or `sap.m.Table`.
155512
157111
  *
157112
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ListKeyboardMode'.
157113
+ *
155513
157114
  * @since 1.38.0
155514
157115
  */
155515
157116
  enum ListKeyboardMode {
@@ -155532,6 +157133,8 @@ declare namespace sap {
155532
157133
  }
155533
157134
  /**
155534
157135
  * Defines the mode of the list.
157136
+ *
157137
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ListMode'.
155535
157138
  */
155536
157139
  enum ListMode {
155537
157140
  /**
@@ -155561,6 +157164,8 @@ declare namespace sap {
155561
157164
  }
155562
157165
  /**
155563
157166
  * Defines which separator style will be applied for the items.
157167
+ *
157168
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ListSeparators'.
155564
157169
  */
155565
157170
  enum ListSeparators {
155566
157171
  /**
@@ -155578,6 +157183,8 @@ declare namespace sap {
155578
157183
  }
155579
157184
  /**
155580
157185
  * Defines the visual indication and behaviour of the list items.
157186
+ *
157187
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ListType'.
155581
157188
  */
155582
157189
  enum ListType {
155583
157190
  /**
@@ -155605,6 +157212,8 @@ declare namespace sap {
155605
157212
  /**
155606
157213
  * Enumeration of possible load statuses.
155607
157214
  *
157215
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'LoadState'.
157216
+ *
155608
157217
  * @since 1.34.0
155609
157218
  */
155610
157219
  enum LoadState {
@@ -155628,6 +157237,8 @@ declare namespace sap {
155628
157237
  /**
155629
157238
  * Different modes for a MenuButton (predefined types).
155630
157239
  *
157240
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'MenuButtonMode'.
157241
+ *
155631
157242
  * @since 1.38.0
155632
157243
  */
155633
157244
  enum MenuButtonMode {
@@ -155644,6 +157255,8 @@ declare namespace sap {
155644
157255
  /**
155645
157256
  * Enumeration of the `multiSelectMode>/code> in ListBase`.
155646
157257
  *
157258
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'MultiSelectMode'.
157259
+ *
155647
157260
  * @since 1.93
155648
157261
  */
155649
157262
  enum MultiSelectMode {
@@ -155668,6 +157281,8 @@ declare namespace sap {
155668
157281
  /**
155669
157282
  * Used by the `ObjectHeader` control to define which shape to use for the image.
155670
157283
  *
157284
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ObjectHeaderPictureShape'.
157285
+ *
155671
157286
  * @since 1.61
155672
157287
  */
155673
157288
  enum ObjectHeaderPictureShape {
@@ -155682,6 +157297,8 @@ declare namespace sap {
155682
157297
  }
155683
157298
  /**
155684
157299
  * Predefined types for ObjectMarker.
157300
+ *
157301
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ObjectMarkerType'.
155685
157302
  */
155686
157303
  enum ObjectMarkerType {
155687
157304
  /**
@@ -155715,6 +157332,8 @@ declare namespace sap {
155715
157332
  }
155716
157333
  /**
155717
157334
  * Predefined visibility for ObjectMarker.
157335
+ *
157336
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ObjectMarkerVisibility'.
155718
157337
  */
155719
157338
  enum ObjectMarkerVisibility {
155720
157339
  /**
@@ -155733,6 +157352,8 @@ declare namespace sap {
155733
157352
  /**
155734
157353
  * Defines the priorities of the controls within {@link sap.m.OverflowToolbar}.
155735
157354
  *
157355
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'OverflowToolbarPriority'.
157356
+ *
155736
157357
  * @since 1.32
155737
157358
  */
155738
157359
  enum OverflowToolbarPriority {
@@ -155770,7 +157391,13 @@ declare namespace sap {
155770
157391
  */
155771
157392
  NeverOverflow = "NeverOverflow",
155772
157393
  }
155773
-
157394
+ /**
157395
+ * undefined
157396
+ *
157397
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'P13nConditionOperation'.
157398
+ *
157399
+ * @experimental (since 1.26) - !!! THIS TYPE IS ONLY FOR INTERNAL USE !!!
157400
+ */
155774
157401
  enum P13nConditionOperation {
155775
157402
  Ascending = "Ascending",
155776
157403
 
@@ -155834,6 +157461,8 @@ declare namespace sap {
155834
157461
  }
155835
157462
  /**
155836
157463
  * Type of panels used in the personalization dialog.
157464
+ *
157465
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'P13nPanelType'.
155837
157466
  */
155838
157467
  enum P13nPanelType {
155839
157468
  /**
@@ -155859,6 +157488,8 @@ declare namespace sap {
155859
157488
  }
155860
157489
  /**
155861
157490
  * Type of popup used in the `sap.m.p13n.Popup`.
157491
+ *
157492
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'P13nPopupMode'.
155862
157493
  */
155863
157494
  enum P13nPopupMode {
155864
157495
  /**
@@ -155872,6 +157503,8 @@ declare namespace sap {
155872
157503
  }
155873
157504
  /**
155874
157505
  * Available Page Background Design.
157506
+ *
157507
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'PageBackgroundDesign'.
155875
157508
  */
155876
157509
  enum PageBackgroundDesign {
155877
157510
  /**
@@ -155893,6 +157526,8 @@ declare namespace sap {
155893
157526
  }
155894
157527
  /**
155895
157528
  * Available Panel Accessible Landmark Roles.
157529
+ *
157530
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'PanelAccessibleRole'.
155896
157531
  */
155897
157532
  enum PanelAccessibleRole {
155898
157533
  /**
@@ -155913,6 +157548,8 @@ declare namespace sap {
155913
157548
  }
155914
157549
  /**
155915
157550
  * PDF viewer display types.
157551
+ *
157552
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'PDFViewerDisplayType'.
155916
157553
  */
155917
157554
  enum PDFViewerDisplayType {
155918
157555
  /**
@@ -155932,6 +157569,8 @@ declare namespace sap {
155932
157569
  }
155933
157570
  /**
155934
157571
  * Types for the placement of Popover control.
157572
+ *
157573
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'PlacementType'.
155935
157574
  */
155936
157575
  enum PlacementType {
155937
157576
  /**
@@ -156050,6 +157689,8 @@ declare namespace sap {
156050
157689
  /**
156051
157690
  * A list of the default built-in views in a {@link sap.m.PlanningCalendar}, described by their keys.
156052
157691
  *
157692
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'PlanningCalendarBuiltInView'.
157693
+ *
156053
157694
  * @since 1.50
156054
157695
  */
156055
157696
  enum PlanningCalendarBuiltInView {
@@ -156079,6 +157720,8 @@ declare namespace sap {
156079
157720
  /**
156080
157721
  * Available sticky modes for the {@link sap.m.SinglePlanningCalendar}
156081
157722
  *
157723
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'PlanningCalendarStickyMode'.
157724
+ *
156082
157725
  * @since 1.62
156083
157726
  */
156084
157727
  enum PlanningCalendarStickyMode {
@@ -156098,6 +157741,8 @@ declare namespace sap {
156098
157741
  /**
156099
157742
  * Defines the display of table pop-ins.
156100
157743
  *
157744
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'PopinDisplay'.
157745
+ *
156101
157746
  * @since 1.13.2
156102
157747
  */
156103
157748
  enum PopinDisplay {
@@ -156121,6 +157766,8 @@ declare namespace sap {
156121
157766
  /**
156122
157767
  * Defines the layout options of the table popins.
156123
157768
  *
157769
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'PopinLayout'.
157770
+ *
156124
157771
  * @since 1.52
156125
157772
  */
156126
157773
  enum PopinLayout {
@@ -156155,6 +157802,8 @@ declare namespace sap {
156155
157802
  }
156156
157803
  /**
156157
157804
  * Defines the priority for the TileContent in ActionMode
157805
+ *
157806
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'Priority'.
156158
157807
  */
156159
157808
  enum Priority {
156160
157809
  /**
@@ -156181,6 +157830,8 @@ declare namespace sap {
156181
157830
  /**
156182
157831
  * QuickViewGroupElement is a combination of one label and another control (Link or Text) associated to
156183
157832
  * this label.
157833
+ *
157834
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'QuickViewGroupElementType'.
156184
157835
  */
156185
157836
  enum QuickViewGroupElementType {
156186
157837
  /**
@@ -156210,6 +157861,8 @@ declare namespace sap {
156210
157861
  }
156211
157862
  /**
156212
157863
  * Possible values for the visualization of float values in the RatingIndicator control.
157864
+ *
157865
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'RatingIndicatorVisualMode'.
156213
157866
  */
156214
157867
  enum RatingIndicatorVisualMode {
156215
157868
  /**
@@ -156222,7 +157875,9 @@ declare namespace sap {
156222
157875
  Half = "Half",
156223
157876
  }
156224
157877
  /**
156225
- * Enumeration of the `ResetAllMode>/code> that can be used in a TablePersoController`.
157878
+ * Enumeration of the `ResetAllMode` that can be used in a `TablePersoController`.
157879
+ *
157880
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ResetAllMode'.
156226
157881
  */
156227
157882
  enum ResetAllMode {
156228
157883
  /**
@@ -156240,6 +157895,8 @@ declare namespace sap {
156240
157895
  }
156241
157896
  /**
156242
157897
  * Breakpoint names for different screen sizes.
157898
+ *
157899
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ScreenSize'.
156243
157900
  */
156244
157901
  enum ScreenSize {
156245
157902
  /**
@@ -156286,6 +157943,8 @@ declare namespace sap {
156286
157943
  /**
156287
157944
  * Defines the control that will receive the initial focus in the `sap.m.SelectDialog` or `sap.m.TableSelectDialog`.
156288
157945
  *
157946
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'SelectDialogInitialFocus'.
157947
+ *
156289
157948
  * @since 1.117.0
156290
157949
  */
156291
157950
  enum SelectDialogInitialFocus {
@@ -156301,6 +157960,8 @@ declare namespace sap {
156301
157960
  /**
156302
157961
  * Enumeration for different action levels in sap.m.SelectionDetails control.
156303
157962
  *
157963
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'SelectionDetailsActionLevel'.
157964
+ *
156304
157965
  * @since 1.48
156305
157966
  * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
156306
157967
  */
@@ -156327,6 +157988,8 @@ declare namespace sap {
156327
157988
  /**
156328
157989
  * Defines the keyboard navigation mode.
156329
157990
  *
157991
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'SelectListKeyboardNavigationMode'.
157992
+ *
156330
157993
  * @since 1.38
156331
157994
  */
156332
157995
  enum SelectListKeyboardNavigationMode {
@@ -156342,6 +158005,8 @@ declare namespace sap {
156342
158005
  /**
156343
158006
  * Enumeration for different Select types.
156344
158007
  *
158008
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'SelectType'.
158009
+ *
156345
158010
  * @since 1.16
156346
158011
  */
156347
158012
  enum SelectType {
@@ -156354,9 +158019,26 @@ declare namespace sap {
156354
158019
  */
156355
158020
  IconOnly = "IconOnly",
156356
158021
  }
158022
+ /**
158023
+ * Enumeration of the `SharingMode` that can be used in a `VariantItem`.
158024
+ *
158025
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'SharingMode'.
158026
+ */
158027
+ enum SharingMode {
158028
+ /**
158029
+ * Private mode of the `VariantItem`.
158030
+ */
158031
+ Private = "private",
158032
+ /**
158033
+ * Public mode of the `VariantItem`.
158034
+ */
158035
+ Public = "public",
158036
+ }
156357
158037
  /**
156358
158038
  * Available selection modes for the {@link sap.m.SinglePlanningCalendar}
156359
158039
  *
158040
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'SinglePlanningCalendarSelectionMode'.
158041
+ *
156360
158042
  * @since 1.113
156361
158043
  */
156362
158044
  enum SinglePlanningCalendarSelectionMode {
@@ -156372,6 +158054,8 @@ declare namespace sap {
156372
158054
  /**
156373
158055
  * Enumeration of possible size settings.
156374
158056
  *
158057
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'Size'.
158058
+ *
156375
158059
  * @since 1.34.0
156376
158060
  */
156377
158061
  enum Size {
@@ -156406,6 +158090,8 @@ declare namespace sap {
156406
158090
  }
156407
158091
  /**
156408
158092
  * The mode of SplitContainer or SplitApp control to show/hide the master area.
158093
+ *
158094
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'SplitAppMode'.
156409
158095
  */
156410
158096
  enum SplitAppMode {
156411
158097
  /**
@@ -156430,6 +158116,8 @@ declare namespace sap {
156430
158116
  }
156431
158117
  /**
156432
158118
  * The option keys of all the standard options of a DynamicDateRange control.
158119
+ *
158120
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'StandardDynamicDateRangeKeys'.
156433
158121
  */
156434
158122
  enum StandardDynamicDateRangeKeys {
156435
158123
  /**
@@ -156653,6 +158341,8 @@ declare namespace sap {
156653
158341
  }
156654
158342
  /**
156655
158343
  * Types for StandardTile.
158344
+ *
158345
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'StandardTileType'.
156656
158346
  */
156657
158347
  enum StandardTileType {
156658
158348
  /**
@@ -156671,6 +158361,8 @@ declare namespace sap {
156671
158361
  /**
156672
158362
  * Available step modes for {@link sap.m.StepInput}.
156673
158363
  *
158364
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'StepInputStepModeType'.
158365
+ *
156674
158366
  * @since 1.54
156675
158367
  */
156676
158368
  enum StepInputStepModeType {
@@ -156705,6 +158397,8 @@ declare namespace sap {
156705
158397
  }
156706
158398
  /**
156707
158399
  * Available validation modes for {@link sap.m.StepInput}.
158400
+ *
158401
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'StepInputValidationMode'.
156708
158402
  */
156709
158403
  enum StepInputValidationMode {
156710
158404
  /**
@@ -156720,6 +158414,8 @@ declare namespace sap {
156720
158414
  * Defines which area of the control remains fixed at the top of the page during vertical scrolling as long
156721
158415
  * as the control is in the viewport.
156722
158416
  *
158417
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'Sticky'.
158418
+ *
156723
158419
  * @since 1.54
156724
158420
  */
156725
158421
  enum Sticky {
@@ -156743,6 +158439,8 @@ declare namespace sap {
156743
158439
  /**
156744
158440
  * Types of string filter operators.
156745
158441
  *
158442
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'StringFilterOperator'.
158443
+ *
156746
158444
  * @since 1.42
156747
158445
  */
156748
158446
  enum StringFilterOperator {
@@ -156765,6 +158463,8 @@ declare namespace sap {
156765
158463
  }
156766
158464
  /**
156767
158465
  * Directions for swipe event.
158466
+ *
158467
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'SwipeDirection'.
156768
158468
  */
156769
158469
  enum SwipeDirection {
156770
158470
  /**
@@ -156798,6 +158498,8 @@ declare namespace sap {
156798
158498
  }
156799
158499
  /**
156800
158500
  * Enumeration for different switch types.
158501
+ *
158502
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'SwitchType'.
156801
158503
  */
156802
158504
  enum SwitchType {
156803
158505
  /**
@@ -156812,6 +158514,8 @@ declare namespace sap {
156812
158514
  /**
156813
158515
  * Specifies `IconTabBar` tab overflow mode.
156814
158516
  *
158517
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'TabsOverflowMode'.
158518
+ *
156815
158519
  * @since 1.90.0
156816
158520
  */
156817
158521
  enum TabsOverflowMode {
@@ -156827,6 +158531,8 @@ declare namespace sap {
156827
158531
  /**
156828
158532
  * Describes the behavior of tiles when displayed on a small-screened phone (374px wide and lower).
156829
158533
  *
158534
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'TileSizeBehavior'.
158535
+ *
156830
158536
  * @since 1.56.0
156831
158537
  */
156832
158538
  enum TileSizeBehavior {
@@ -156842,6 +158548,8 @@ declare namespace sap {
156842
158548
  /**
156843
158549
  * Different modes for the `sap.m.TimePicker` mask.
156844
158550
  *
158551
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'TimePickerMaskMode'.
158552
+ *
156845
158553
  * @since 1.54
156846
158554
  */
156847
158555
  enum TimePickerMaskMode {
@@ -156856,6 +158564,8 @@ declare namespace sap {
156856
158564
  }
156857
158565
  /**
156858
158566
  * Declares the type of title alignment for some controls
158567
+ *
158568
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'TitleAlignment'.
156859
158569
  */
156860
158570
  enum TitleAlignment {
156861
158571
  /**
@@ -156878,6 +158588,8 @@ declare namespace sap {
156878
158588
  /**
156879
158589
  * Types of the `sap.m.Tokenizer` responsive modes.
156880
158590
  *
158591
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'TokenizerRenderMode'.
158592
+ *
156881
158593
  * @since 1.80
156882
158594
  */
156883
158595
  enum TokenizerRenderMode {
@@ -156898,6 +158610,8 @@ declare namespace sap {
156898
158610
  * To preview the different combinations of `sap.m.ToolbarDesign` and `sap.m.ToolbarStyle`, see the **OverflowToolbar
156899
158611
  * - Design and styling** sample of the {@link sap.m.OverflowToolbar} control.
156900
158612
  *
158613
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ToolbarDesign'.
158614
+ *
156901
158615
  * @since 1.16.8
156902
158616
  */
156903
158617
  enum ToolbarDesign {
@@ -156930,6 +158644,8 @@ declare namespace sap {
156930
158644
  * To preview the different combinations of `sap.m.ToolbarDesign` and `sap.m.ToolbarStyle`, see the **OverflowToolbar
156931
158645
  * - Design and styling** sample of the {@link sap.m.OverflowToolbar} control.
156932
158646
  *
158647
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ToolbarStyle'.
158648
+ *
156933
158649
  * @since 1.54
156934
158650
  */
156935
158651
  enum ToolbarStyle {
@@ -156947,6 +158663,8 @@ declare namespace sap {
156947
158663
  /**
156948
158664
  * Defines the placeholder type for the control to be replaced.
156949
158665
  *
158666
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'UploadSetwithTableActionPlaceHolder'.
158667
+ *
156950
158668
  * @since 1.120
156951
158669
  */
156952
158670
  enum UploadSetwithTableActionPlaceHolder {
@@ -156969,6 +158687,8 @@ declare namespace sap {
156969
158687
  }
156970
158688
  /**
156971
158689
  * States of the upload process of {@link sap.m.UploadCollectionItem}.
158690
+ *
158691
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'UploadState'.
156972
158692
  */
156973
158693
  enum UploadState {
156974
158694
  /**
@@ -156990,6 +158710,8 @@ declare namespace sap {
156990
158710
  }
156991
158711
  /**
156992
158712
  * Type of the upload {@link sap.m.UploadSetItem}.
158713
+ *
158714
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'UploadType'.
156993
158715
  */
156994
158716
  enum UploadType {
156995
158717
  /**
@@ -157003,6 +158725,8 @@ declare namespace sap {
157003
158725
  }
157004
158726
  /**
157005
158727
  * Enumeration of possible value color settings.
158728
+ *
158729
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'ValueColor'.
157006
158730
  */
157007
158731
  enum ValueColor {
157008
158732
  /**
@@ -157032,6 +158756,8 @@ declare namespace sap {
157032
158756
  }
157033
158757
  /**
157034
158758
  * Types for the placement of message Popover control.
158759
+ *
158760
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'VerticalPlacementType'.
157035
158761
  */
157036
158762
  enum VerticalPlacementType {
157037
158763
  /**
@@ -157050,7 +158776,9 @@ declare namespace sap {
157050
158776
  /**
157051
158777
  * Wizard rendering mode.
157052
158778
  *
157053
- * @experimental (since 1.83)
158779
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'WizardRenderMode'.
158780
+ *
158781
+ * @since 1.83
157054
158782
  */
157055
158783
  enum WizardRenderMode {
157056
158784
  /**
@@ -157068,6 +158796,8 @@ declare namespace sap {
157068
158796
  *
157069
158797
  * For more information about text hyphenation, see {@link sap.ui.core.hyphenation.Hyphenation} and {@link https://ui5.sap.com/#/topic/6322164936f047de941ec522b95d7b70 Text Controls Hyphenation}.
157070
158798
  *
158799
+ * This enum is part of the 'sap/m/library' module export and must be accessed by the property 'WrappingType'.
158800
+ *
157071
158801
  * @since 1.60
157072
158802
  */
157073
158803
  enum WrappingType {
@@ -159004,9 +160734,11 @@ declare namespace sap {
159004
160734
 
159005
160735
  "sap/m/p13n/Engine": undefined;
159006
160736
 
159007
- "sap/m/p13n/enum/PersistenceMode": undefined;
160737
+ "sap/m/p13n/enums/PersistenceMode": undefined;
159008
160738
 
159009
- "sap/m/p13n/enum/ProcessingStrategy": undefined;
160739
+ "sap/m/p13n/enums/ProcessingStrategy": undefined;
160740
+
160741
+ "sap/m/p13n/FilterController": undefined;
159010
160742
 
159011
160743
  "sap/m/p13n/GroupController": undefined;
159012
160744
 
@@ -159080,6 +160812,8 @@ declare namespace sap {
159080
160812
 
159081
160813
  "sap/m/plugins/ColumnResizer": undefined;
159082
160814
 
160815
+ "sap/m/plugins/ContextMenuSetting": undefined;
160816
+
159083
160817
  "sap/m/plugins/CopyProvider": undefined;
159084
160818
 
159085
160819
  "sap/m/plugins/DataStateIndicator": undefined;