@openui5/ts-types 1.130.0 → 1.131.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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.0
1
+ // For Library Version: 1.131.0
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -210,7 +210,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
210
210
  fnCallbackDataLoaded: Function
211
211
  ): void;
212
212
  /**
213
- * Returns the relevant property info based on the metadata used with the chart instance.
213
+ * Gets the relevant PropertyInfos based on the metadata used with the chart instance.
214
214
  *
215
215
  * **Note:** The result of this function must be kept stable throughout the lifecycle of your application.
216
216
  * Any changes of the returned values might result in undesired effects.
@@ -242,7 +242,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
242
242
  oChart: sap.ui.mdc.Chart
243
243
  ): sap.ui.mdc.chart.ChartTypeObject[];
244
244
  /**
245
- * Returns the binding info for given chart.
245
+ * Gets the binding info for given chart.
246
246
  *
247
247
  *
248
248
  * @returns BindingInfo object
@@ -254,7 +254,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
254
254
  oChart: sap.ui.mdc.Chart
255
255
  ): sap.ui.base.ManagedObject.AggregationBindingInfo;
256
256
  /**
257
- * Returns the current chart type.
257
+ * Gets the current chart type.
258
258
  *
259
259
  *
260
260
  * @returns Information about the current chart type
@@ -274,7 +274,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
274
274
  */
275
275
  getChartTypeLayoutConfig(): sap.ui.mdc.chart.ChartTypeLayoutConfig[];
276
276
  /**
277
- * Determines which MDC items are drillable and returns them. This function is used by the breadcrumb navigation.
277
+ * Gets the drillable items. This function is used by the breadcrumb navigation.
278
278
  *
279
279
  *
280
280
  * @returns Array of MDC items that are drillable
@@ -286,7 +286,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
286
286
  oChart: sap.ui.mdc.Chart
287
287
  ): sap.ui.mdc.chart.Item[];
288
288
  /**
289
- * Returns the current drilling stack of the inner chart.
289
+ * Gets the current drilling stack of the inner chart.
290
290
  * The returned objects need at least a `label` and a `name` property.
291
291
  * Also, a `dimension` array containing the dimension drill stack at the current level is required.
292
292
  *
@@ -300,7 +300,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
300
300
  oChart: sap.ui.mdc.Chart
301
301
  ): any[];
302
302
  /**
303
- * Returns the filter delegate of the chart that provides basic filter functionality, such as adding filter
303
+ * Gets the filter delegate of the chart that provides basic filter functionality, such as adding filter
304
304
  * fields. **Note:** The functionality provided in this delegate acts as a subset of a `FilterBarDelegate`
305
305
  * to enable the chart for inbuilt filtering.
306
306
  *
@@ -315,7 +315,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
315
315
  ) => Promise<sap.ui.mdc.FilterField>;
316
316
  };
317
317
  /**
318
- * Returns filters to be applied when updating the chart's binding based on the filter conditions of the
318
+ * Gets the filters to be applied when updating the chart's binding based on the filter conditions of the
319
319
  * chart itself and it's associated {@link sap.ui.mdc.IFilterSource IFilterSource}.
320
320
  *
321
321
  * @since 1.121
@@ -330,7 +330,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
330
330
  oChart: sap.ui.mdc.Chart
331
331
  ): sap.ui.model.Filter[];
332
332
  /**
333
- * Returns the instance of the inner chart.
333
+ * Gets the instance of the inner chart.
334
334
  *
335
335
  *
336
336
  * @returns Instance of the inner chart
@@ -342,7 +342,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
342
342
  oChart: sap.ui.mdc.Chart
343
343
  ): sap.ui.core.Control;
344
344
  /**
345
- * Returns the information whether the inner chart is currently bound.
345
+ * Gets the information whether the inner chart is currently bound.
346
346
  *
347
347
  *
348
348
  * @returns `true` if inner chart is bound; `false` if not
@@ -354,7 +354,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
354
354
  oChart: sap.ui.mdc.Chart
355
355
  ): boolean;
356
356
  /**
357
- * Returns the event handler for `SelectionDetails` as an object.
357
+ * Gets the event handler for `SelectionDetails` as an object.
358
358
  *
359
359
  *
360
360
  * @returns Event handler for SelectionDetails
@@ -366,7 +366,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
366
366
  oChart: sap.ui.mdc.Chart
367
367
  ): sap.ui.mdc.chart.SelectionDetails;
368
368
  /**
369
- * This function returns an ID that should be used in the internal chart for the Measure/Dimension.
369
+ * Gets an ID that should be used in the internal chart for the Measure/Dimension.
370
370
  * For standard cases, this is just the ID of the property.
371
371
  * If it is necessary to use another ID internally inside the chart (for example, for duplicate property
372
372
  * IDs) this method can be overwritten.
@@ -390,8 +390,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
390
390
  oChart: sap.ui.mdc.Chart
391
391
  ): string;
392
392
  /**
393
- * Maps an ID of an internal chart dimension/measure and type of a property to its corresponding property
394
- * entry.
393
+ * Gets a PropertyInfo object based on an internal chart dimension/measure and type of a property.
395
394
  *
396
395
  *
397
396
  * @returns PropertyInfo object
@@ -411,7 +410,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
411
410
  oChart: sap.ui.mdc.Chart
412
411
  ): sap.ui.mdc.chart.PropertyInfo;
413
412
  /**
414
- * Returns all sorted dimensions of an inner chart. This is used to determine possible drill-down dimensions
413
+ * Gets all sorted dimensions of an inner chart. This is used to determine possible drill-down dimensions
415
414
  * in the drill-down popover of the chart.
416
415
  *
417
416
  *
@@ -572,7 +571,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
572
571
  sText: string
573
572
  ): void;
574
573
  /**
575
- * Adds/Removes the busy overlay shown above the inner chart.
574
+ * Adds/Removes the busy overlay shown over the inner chart.
576
575
  */
577
576
  showOverlay(
578
577
  /**
@@ -1267,7 +1266,6 @@ declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
1267
1266
  * Delegate for {@link sap.ui.mdc.MultiValueField MultiValueField}.
1268
1267
  *
1269
1268
  * @since 1.93.0
1270
- * @experimental (since 1.93)
1271
1269
  */
1272
1270
  interface MultiValueFieldDelegate extends FieldBaseDelegate {
1273
1271
  /**
@@ -1575,7 +1573,11 @@ declare module "sap/ui/mdc/LinkDelegate" {
1575
1573
  * Instance of the `Panel`
1576
1574
  */
1577
1575
  oPanel: /* was: sap.ui.mdc.link.Panel */ any
1578
- ): any;
1576
+ ): Promise<{
1577
+ sTitle: string;
1578
+
1579
+ oLabelledByControl: sap.ui.core.Control;
1580
+ }>;
1579
1581
  /**
1580
1582
  * Allows to differenciate the created `Panel` of multiple `Link` instances for personalization reasons.
1581
1583
  * Please provide different IDs for each `Link` as otherwise the personalization will have problems keeping
@@ -1680,28 +1682,6 @@ declare module "sap/ui/mdc/odata/v4/TableDelegate" {
1680
1682
  * @since 1.85
1681
1683
  */
1682
1684
  interface TableDelegate extends TableDelegate1 {
1683
- /**
1684
- * Collapses all rows.
1685
- *
1686
- * @ui5-protected Do not call from applications (only from related classes in the framework)
1687
- */
1688
- collapseAllRows(
1689
- /**
1690
- * Instance of the table
1691
- */
1692
- oTable: sap.ui.mdc.Table
1693
- ): void;
1694
- /**
1695
- * Expands all rows.
1696
- *
1697
- * @ui5-protected Do not call from applications (only from related classes in the framework)
1698
- */
1699
- expandAllRows(
1700
- /**
1701
- * Instance of the table
1702
- */
1703
- oTable: sap.ui.mdc.Table
1704
- ): void;
1705
1685
  /**
1706
1686
  * Retrieves information about the relevant properties.
1707
1687
  *
@@ -1730,9 +1710,7 @@ declare module "sap/ui/mdc/odata/v4/TableDelegate" {
1730
1710
  * If a property is complex, the properties it references are taken into account.
1731
1711
  * If `autoExpandSelect` of the {@link sap.ui.model.odata.v4.ODataModel} is not enabled, this method must
1732
1712
  * return an empty array. If the table type is {@link sap.ui.mdc.table.GridTableType GridTable} and `p13nMode`
1733
- * `Group` or `p13nMode` `Aggregate` is enabled, referenced properties, for example, properties that are
1734
- * referenced via `text` or `unit`, are also included in the result. Please also see the restrictions in
1735
- * the description of the {@link module:sap/ui/mdc/odata/v4/TableDelegate TableDelegate}.
1713
+ * `Group` or `p13nMode` `Aggregate` is enabled, also see the restrictions in the description of the {@link module:sap/ui/mdc/odata/v4/TableDelegate TableDelegate}.
1736
1714
  * For more information about properties, see {@link sap.ui.mdc.odata.v4.TablePropertyInfo PropertyInfo}.
1737
1715
  *
1738
1716
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -1887,27 +1865,33 @@ declare module "sap/ui/mdc/TableDelegate" {
1887
1865
  mPropertyBag?: Object
1888
1866
  ): Promise<sap.ui.mdc.table.Column>;
1889
1867
  /**
1890
- * Collapses all rows.
1868
+ * Returns the feature set for expanding or collapsing in the table.
1891
1869
  *
1892
- * @ui5-protected Do not call from applications (only from related classes in the framework)
1893
- */
1894
- collapseAllRows(
1895
- /**
1896
- * Instance of the table
1897
- */
1898
- oTable: sap.ui.mdc.Table
1899
- ): void;
1900
- /**
1901
- * Expands all rows.
1870
+ * By default, this method returns an empty object.
1871
+ *
1872
+ * The configuration object needs to contain the following functions to enable specific functionalities:
1873
+ *
1874
+ * - To enable the **expand all** functionality, you need to implement the `expandAll` function in the
1875
+ * configuration object.
1876
+ * - To enable the **collapse all** functionality, you need to implement the `collapseAll` function in
1877
+ * the configuration object.
1878
+ * - To enable the **expand all from a specific node** functionality, you need to implement the `expandAllFromNode`
1879
+ * and the `isNodeExpanded` function in the configuration object.
1880
+ * - To enable the **collapse all from a specific node** functionality, you need to implement the `collapseAllFromNode`
1881
+ * and the `isNodeExpanded` function in the configuration object.
1882
+ *
1883
+ * **Note:** Expand and collapse all from a specific node is only supported, if the table rows are selectable.
1902
1884
  *
1903
1885
  * @ui5-protected Do not call from applications (only from related classes in the framework)
1886
+ *
1887
+ * @returns A `Promise` that resolves with an object containing the expand and collapse functions
1904
1888
  */
1905
- expandAllRows(
1889
+ fetchExpandAndCollapseConfiguration(
1906
1890
  /**
1907
- * Instance of the table
1891
+ * table instance
1908
1892
  */
1909
1893
  oTable: sap.ui.mdc.Table
1910
- ): void;
1894
+ ): Promise</* was: sap.ui.mdc.TableDelegate.ExpandAndCollapseConfiguration */ any>;
1911
1895
  /**
1912
1896
  * Returns the feature set for exporting data in the table.
1913
1897
  *
@@ -4632,7 +4616,6 @@ declare namespace sap {
4632
4616
  * Defines the alignment of the `ActionToolbarAction` action control.
4633
4617
  *
4634
4618
  * @since 1.115
4635
- * @experimental (since 1.115)
4636
4619
  */
4637
4620
  enum ActionToolbarActionAlignment {
4638
4621
  /**
@@ -5062,6 +5045,14 @@ declare namespace sap {
5062
5045
  * @since 1.74.0
5063
5046
  */
5064
5047
  LASTDAYS = "LASTDAYS",
5048
+ /**
5049
+ * "Last X Days" operator including current day
5050
+ *
5051
+ * The operator is available for date and date/time types.
5052
+ *
5053
+ * @since 1.131.0
5054
+ */
5055
+ LASTDAYSINCLUDED = "LASTDAYSINCLUDED",
5065
5056
  /**
5066
5057
  * "Last Day in This Week" operator
5067
5058
  *
@@ -5086,6 +5077,14 @@ declare namespace sap {
5086
5077
  * @since 1.112.0
5087
5078
  */
5088
5079
  LASTHOURS = "LASTHOURS",
5080
+ /**
5081
+ * "Last X Hours" operator including current hour
5082
+ *
5083
+ * The operator is available for date/time types.
5084
+ *
5085
+ * @since 1.131.0
5086
+ */
5087
+ LASTHOURSINCLUDED = "LASTHOURSINCLUDED",
5089
5088
  /**
5090
5089
  * "Last X Minutes" operator
5091
5090
  *
@@ -5094,6 +5093,14 @@ declare namespace sap {
5094
5093
  * @since 1.112.0
5095
5094
  */
5096
5095
  LASTMINUTES = "LASTMINUTES",
5096
+ /**
5097
+ * "Last X Minutes" operator including current minute
5098
+ *
5099
+ * The operator is available for date/time types.
5100
+ *
5101
+ * @since 1.131.0
5102
+ */
5103
+ LASTMINUTESINCLUDED = "LASTMINUTESINCLUDED",
5097
5104
  /**
5098
5105
  * "Last Month" operator
5099
5106
  *
@@ -5110,6 +5117,14 @@ declare namespace sap {
5110
5117
  * @since 1.74.0
5111
5118
  */
5112
5119
  LASTMONTHS = "LASTMONTHS",
5120
+ /**
5121
+ * "Last X Months" operator including current month
5122
+ *
5123
+ * The operator is available for date and date/time types.
5124
+ *
5125
+ * @since 1.131.0
5126
+ */
5127
+ LASTMONTHSINCLUDED = "LASTMONTHSINCLUDED",
5113
5128
  /**
5114
5129
  * "Last Quarter" operator
5115
5130
  *
@@ -5126,6 +5141,14 @@ declare namespace sap {
5126
5141
  * @since 1.74.0
5127
5142
  */
5128
5143
  LASTQUARTERS = "LASTQUARTERS",
5144
+ /**
5145
+ * "Last X Quarters" operator including current quarter
5146
+ *
5147
+ * The operator is available for date and date/time types.
5148
+ *
5149
+ * @since 1.131.0
5150
+ */
5151
+ LASTQUARTERSINCLUDED = "LASTQUARTERSINCLUDED",
5129
5152
  /**
5130
5153
  * "Last Week" operator
5131
5154
  *
@@ -5142,6 +5165,14 @@ declare namespace sap {
5142
5165
  * @since 1.74.0
5143
5166
  */
5144
5167
  LASTWEEKS = "LASTWEEKS",
5168
+ /**
5169
+ * "Last X Weeks" operator including current week
5170
+ *
5171
+ * The operator is available for date and date/time types.
5172
+ *
5173
+ * @since 1.131.0
5174
+ */
5175
+ LASTWEEKSINCLUDED = "LASTWEEKSINCLUDED",
5145
5176
  /**
5146
5177
  * "Last Year" operator
5147
5178
  *
@@ -5158,6 +5189,14 @@ declare namespace sap {
5158
5189
  * @since 1.74.0
5159
5190
  */
5160
5191
  LASTYEARS = "LASTYEARS",
5192
+ /**
5193
+ * "Last X Years" operator including current year
5194
+ *
5195
+ * The operator is available for date and date/time types.
5196
+ *
5197
+ * @since 1.131.0
5198
+ */
5199
+ LASTYEARSINCLUDED = "LASTYEARSINCLUDED",
5161
5200
  /**
5162
5201
  * "less than or equal to" operator
5163
5202
  *
@@ -5194,6 +5233,14 @@ declare namespace sap {
5194
5233
  * @since 1.74.0
5195
5234
  */
5196
5235
  NEXTDAYS = "NEXTDAYS",
5236
+ /**
5237
+ * "Next X Days" operator including current day
5238
+ *
5239
+ * The operator is available for date and date/time types.
5240
+ *
5241
+ * @since 1.131.0
5242
+ */
5243
+ NEXTDAYSINCLUDED = "NEXTDAYSINCLUDED",
5197
5244
  /**
5198
5245
  * "Next X Hours" operator
5199
5246
  *
@@ -5202,6 +5249,14 @@ declare namespace sap {
5202
5249
  * @since 1.112.0
5203
5250
  */
5204
5251
  NEXTHOURS = "NEXTHOURS",
5252
+ /**
5253
+ * "Next X Hours" operator including current hour
5254
+ *
5255
+ * The operator is available for date/time types.
5256
+ *
5257
+ * @since 1.131.0
5258
+ */
5259
+ NEXTHOURSINCLUDED = "NEXTHOURSINCLUDED",
5205
5260
  /**
5206
5261
  * "Next X Minutes" operator
5207
5262
  *
@@ -5210,6 +5265,14 @@ declare namespace sap {
5210
5265
  * @since 1.112.0
5211
5266
  */
5212
5267
  NEXTMINUTES = "NEXTMINUTES",
5268
+ /**
5269
+ * "Next X Minutes" operator including current minute
5270
+ *
5271
+ * The operator is available for date/time types.
5272
+ *
5273
+ * @since 1.131.0
5274
+ */
5275
+ NEXTMINUTESINCLUDED = "NEXTMINUTESINCLUDED",
5213
5276
  /**
5214
5277
  * "Next Month" operator
5215
5278
  *
@@ -5226,6 +5289,14 @@ declare namespace sap {
5226
5289
  * @since 1.74.0
5227
5290
  */
5228
5291
  NEXTMONTHS = "NEXTMONTHS",
5292
+ /**
5293
+ * "Next X Months" operator including current month
5294
+ *
5295
+ * The operator is available for date and date/time types.
5296
+ *
5297
+ * @since 1.131.0
5298
+ */
5299
+ NEXTMONTHSINCLUDED = "NEXTMONTHSINCLUDED",
5229
5300
  /**
5230
5301
  * "Next Quarter" operator
5231
5302
  *
@@ -5242,6 +5313,14 @@ declare namespace sap {
5242
5313
  * @since 1.74.0
5243
5314
  */
5244
5315
  NEXTQUARTERS = "NEXTQUARTERS",
5316
+ /**
5317
+ * "Next X Quarters" operator including current quarter
5318
+ *
5319
+ * The operator is available for date and date/time types.
5320
+ *
5321
+ * @since 1.131.0
5322
+ */
5323
+ NEXTQUARTERSINCLUDED = "NEXTQUARTERSINCLUDED",
5245
5324
  /**
5246
5325
  * "Next Week" operator
5247
5326
  *
@@ -5258,6 +5337,14 @@ declare namespace sap {
5258
5337
  * @since 1.74.0
5259
5338
  */
5260
5339
  NEXTWEEKS = "NEXTWEEKS",
5340
+ /**
5341
+ * "Next X Weeks" operator including current week
5342
+ *
5343
+ * The operator is available for date and date/time types.
5344
+ *
5345
+ * @since 1.131.0
5346
+ */
5347
+ NEXTWEEKSINCLUDED = "NEXTWEEKSINCLUDED",
5261
5348
  /**
5262
5349
  * "Next Year" operator
5263
5350
  *
@@ -5274,6 +5361,14 @@ declare namespace sap {
5274
5361
  * @since 1.74.0
5275
5362
  */
5276
5363
  NEXTYEARS = "NEXTYEARS",
5364
+ /**
5365
+ * "Next X Years" operator including current year
5366
+ *
5367
+ * The operator is available for date and date/time types.
5368
+ *
5369
+ * @since 1.131.0
5370
+ */
5371
+ NEXTYEARSINCLUDED = "NEXTYEARSINCLUDED",
5277
5372
  /**
5278
5373
  * "not between" operator
5279
5374
  *
@@ -6054,8 +6149,6 @@ declare namespace sap {
6054
6149
 
6055
6150
  /**
6056
6151
  * Describes the settings that can be provided to the MultiValueFieldItem constructor.
6057
- *
6058
- * @experimental (since 1.93)
6059
6152
  */
6060
6153
  interface $MultiValueFieldItemSettings
6061
6154
  extends sap.ui.core.$ElementSettings {
@@ -8564,7 +8657,6 @@ declare namespace sap {
8564
8657
  * its values as items. The `MultiValueFieldItem` element defines these items.
8565
8658
  *
8566
8659
  * @since 1.93.0
8567
- * @experimental (since 1.93)
8568
8660
  */
8569
8661
  class MultiValueFieldItem extends sap.ui.core.Element {
8570
8662
  /**
@@ -8739,7 +8831,7 @@ declare namespace sap {
8739
8831
  * @deprecated (since 1.124.0) - Please use the `sap.ui.mdc.valuehelp.FilterBar` control instead.
8740
8832
  */
8741
8833
  interface $FilterBarSettings
8742
- extends sap.ui.mdc.filterbar.$FilterBarBaseSettings {}
8834
+ extends sap.ui.mdc.valuehelp.$FilterBarSettings {}
8743
8835
 
8744
8836
  /**
8745
8837
  * The `FilterBar` control is used to display filter properties in a user-friendly manner to populate values
@@ -8755,9 +8847,16 @@ declare namespace sap {
8755
8847
  * @since 1.84.0
8756
8848
  * @deprecated (since 1.124.0) - Please use the `sap.ui.mdc.valuehelp.FilterBar` control instead.
8757
8849
  */
8758
- class FilterBar extends sap.ui.mdc.filterbar.FilterBarBase {
8850
+ class FilterBar extends sap.ui.mdc.valuehelp.FilterBar {
8759
8851
  /**
8760
8852
  * Constructor for a new `FilterBar` for a value help dialog.
8853
+ *
8854
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
8855
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8856
+ * of the syntax of the settings object.
8857
+ *
8858
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.mdc.valuehelp.FilterBar#constructor sap.ui.mdc.valuehelp.FilterBar }
8859
+ * can be used.
8761
8860
  */
8762
8861
  constructor(
8763
8862
  /**
@@ -8767,6 +8866,13 @@ declare namespace sap {
8767
8866
  );
8768
8867
  /**
8769
8868
  * Constructor for a new `FilterBar` for a value help dialog.
8869
+ *
8870
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
8871
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
8872
+ * of the syntax of the settings object.
8873
+ *
8874
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.mdc.valuehelp.FilterBar#constructor sap.ui.mdc.valuehelp.FilterBar }
8875
+ * can be used.
8770
8876
  */
8771
8877
  constructor(
8772
8878
  /**
@@ -8783,7 +8889,7 @@ declare namespace sap {
8783
8889
  * Creates a new subclass of class sap.ui.mdc.filterbar.vh.FilterBar with name `sClassName` and enriches
8784
8890
  * it with the information contained in `oClassInfo`.
8785
8891
  *
8786
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.mdc.filterbar.FilterBarBase.extend}.
8892
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.mdc.valuehelp.FilterBar.extend}.
8787
8893
  *
8788
8894
  *
8789
8895
  * @returns Created class / constructor function
@@ -14259,6 +14365,11 @@ declare namespace sap {
14259
14365
  * - `propertyInfos` (all referenced properties must be specified)
14260
14366
  */
14261
14367
  type TablePropertyInfo = sap.ui.mdc.table.PropertyInfo & {
14368
+ /**
14369
+ * Defines whether a property is a key or part of a key in the data. A key property must be technically
14370
+ * groupable.
14371
+ */
14372
+ isKey?: boolean;
14262
14373
  /**
14263
14374
  * Defines whether the property is aggregatable. A property can only be declared aggregatable if there is
14264
14375
  * a `CustomAggregate` whose `Qualifier` is equal to the property key.
@@ -14282,8 +14393,9 @@ declare namespace sap {
14282
14393
  technicallyAggregatable?: boolean;
14283
14394
  /**
14284
14395
  * Properties that are loaded in addition if this property is loaded. These properties must be technically
14285
- * groupable, otherwise they can't be loaded. This attribute is only taken into account if the `Aggregate`
14286
- * or `Group` `p13nMode` is enabled and the table type is {@link sap.ui.mdc.table.GridTableType GridTable}.
14396
+ * groupable, otherwise they can't be loaded. All nested additional properties must be listed at root level.
14397
+ * For example, if property A references B and B references C, A must also reference C. This attribute is
14398
+ * only taken into account if the `Aggregate` or `Group` `p13nMode` is enabled and the table type is {@link sap.ui.mdc.table.GridTableType GridTable}.
14287
14399
  * These properties are not considered for any other functionality, such as export or column width calculation,
14288
14400
  * for example.
14289
14401
  *
@@ -14914,7 +15026,8 @@ declare namespace sap {
14914
15026
  *
14915
15027
  * If the highlight is set to {@link sap.ui.core.MessageType sap.ui.core.MessageType.None} (default), no
14916
15028
  * highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link sap.ui.core.MessageType }
14917
- * or {@link sap.ui.core.IndicationColor}.
15029
+ * or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
15030
+ * for accessibility contrast reasons).
14918
15031
  *
14919
15032
  * Accessibility support is provided with the {@link sap.ui.mdc.table.RowSettings#setHighlightText highlightText }
14920
15033
  * property. If the `highlight` property is set to a value of {@link sap.ui.core.MessageType}, the `highlightText`
@@ -17187,7 +17300,8 @@ declare namespace sap {
17187
17300
  *
17188
17301
  * If the highlight is set to {@link sap.ui.core.MessageType sap.ui.core.MessageType.None} (default), no
17189
17302
  * highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link sap.ui.core.MessageType }
17190
- * or {@link sap.ui.core.IndicationColor}.
17303
+ * or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
17304
+ * for accessibility contrast reasons).
17191
17305
  *
17192
17306
  * Accessibility support is provided with the {@link sap.ui.mdc.table.RowSettings#setHighlightText highlightText }
17193
17307
  * property. If the `highlight` property is set to a value of {@link sap.ui.core.MessageType}, the `highlightText`
@@ -17292,7 +17406,8 @@ declare namespace sap {
17292
17406
  *
17293
17407
  * If the highlight is set to {@link sap.ui.core.MessageType sap.ui.core.MessageType.None} (default), no
17294
17408
  * highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link sap.ui.core.MessageType }
17295
- * or {@link sap.ui.core.IndicationColor}.
17409
+ * or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
17410
+ * for accessibility contrast reasons).
17296
17411
  *
17297
17412
  * Accessibility support is provided with the {@link sap.ui.mdc.table.RowSettings#setHighlightText highlightText }
17298
17413
  * property. If the `highlight` property is set to a value of {@link sap.ui.core.MessageType}, the `highlightText`
@@ -17543,11 +17658,13 @@ declare namespace sap {
17543
17658
  */
17544
17659
  isKey?: boolean;
17545
17660
  /**
17546
- * Key of the unit property that is related to this property.
17661
+ * Key of the unit property that is related to this property. A property must not have both a unit and a
17662
+ * text.
17547
17663
  */
17548
17664
  unit?: string;
17549
17665
  /**
17550
- * Key of the text property that is related to this property in a 1:1 relation.
17666
+ * Key of the text property that is related to this property in a 1:1 relation. A property must not have
17667
+ * both a unit and a text.
17551
17668
  */
17552
17669
  text?: string;
17553
17670
  /**
@@ -17822,7 +17939,7 @@ declare namespace sap {
17822
17939
  | `{${string}}`;
17823
17940
 
17824
17941
  /**
17825
- * Defines the minimum width.
17942
+ * Defines the minimum width of the chart.
17826
17943
  */
17827
17944
  minWidth?:
17828
17945
  | sap.ui.core.CSSSize
@@ -17830,7 +17947,7 @@ declare namespace sap {
17830
17947
  | `{${string}}`;
17831
17948
 
17832
17949
  /**
17833
- * Defines the minimum height.
17950
+ * Defines the minimum height of the chart.
17834
17951
  */
17835
17952
  minHeight?:
17836
17953
  | sap.ui.core.CSSSize
@@ -17864,8 +17981,9 @@ declare namespace sap {
17864
17981
  | `{${string}}`;
17865
17982
 
17866
17983
  /**
17867
- * Controls the visibility of the chart tooltip. If set to `true`, a call of the `delegate.setChartTooltipVisibility`
17868
- * will be triggered and can be used to make the `Chart` tooltip visible.
17984
+ * Controls the visibility of the chart tooltip.
17985
+ * If set to `true`, a call of the `delegate.setChartTooltipVisibility` will be triggered and can be used
17986
+ * to make the `Chart` tooltip visible.
17869
17987
  *
17870
17988
  * @since 1.88
17871
17989
  */
@@ -17902,7 +18020,7 @@ declare namespace sap {
17902
18020
  * **Note:** This property is exclusively used for handling SAPUI5 flexibility changes. Do not use it otherwise.
17903
18021
  * **Note**: Existing properties (set via `sap.ui.mdc.Chart#setPropertyInfo`) must not be removed and their
17904
18022
  * attributes must not be changed during the {@link module:sap/ui/mdc/ChartDelegate.fetchProperties fetchProperties }
17905
- * callback. Otherwise validation errors might occur whenever personalization-related control features (such
18023
+ * callback Otherwise validation errors might occur whenever personalization-related control features (such
17906
18024
  * as the opening of any personalization dialog) are activated.
17907
18025
  *
17908
18026
  * **Note**: For more information about the supported inner elements, see {@link sap.ui.mdc.chart.PropertyInfo PropertyInfo}.
@@ -17973,7 +18091,7 @@ declare namespace sap {
17973
18091
  | `{${string}}`;
17974
18092
 
17975
18093
  /**
17976
- * Feeds details actions for data point selection in the mdc chart.
18094
+ * Feeds details popover actions for data point selection in the mdc chart.
17977
18095
  * For more information, see {@link sap.ui.mdc.chart.SelectionDetailsActions SelectionDetailsActions}.
17978
18096
  */
17979
18097
  selectionDetailsActions?: sap.ui.mdc.chart.SelectionDetailsActions;
@@ -18237,8 +18355,6 @@ declare namespace sap {
18237
18355
 
18238
18356
  /**
18239
18357
  * Describes the settings that can be provided to the MultiValueField constructor.
18240
- *
18241
- * @experimental (since 1.93.0)
18242
18358
  */
18243
18359
  interface $MultiValueFieldSettings
18244
18360
  extends sap.ui.mdc.field.$FieldBaseSettings {
@@ -18888,14 +19004,19 @@ declare namespace sap {
18888
19004
  value?: string;
18889
19005
 
18890
19006
  /**
18891
- * Flag that indicates if the entered `value` is valid
19007
+ * Flag that indicates if the entered `value` is valid.
19008
+ *
19009
+ * This flag is only set if the user input is parsed and validated synchronously. If there is some asynchronous
19010
+ * parsing or validation, for example, via request to a back-end system, the validation result will be returned
19011
+ * in the `promise` parameter.
18892
19012
  */
18893
19013
  valid?: boolean;
18894
19014
 
18895
19015
  /**
18896
19016
  * Returns a `Promise` for the change. The `Promise` returns the value if it is resolved. If the `change`
18897
19017
  * event is synchronous, the `Promise` has already been already resolved. If it is asynchronous, it will
18898
- * be resolved after the value has been updated.
19018
+ * be resolved after the value has been updated. If the user input is not valid, the `Promise` will be rejected
19019
+ * with the corresponding exception.
18899
19020
  *
18900
19021
  * The `Field` should be set to busy during the parsing to prevent user input. As there might be a whole
18901
19022
  * group of fields that needs to be busy, this cannot be done automatically.
@@ -19514,7 +19635,7 @@ declare namespace sap {
19514
19635
  /**
19515
19636
  * Gets current value of property {@link #getMinHeight minHeight}.
19516
19637
  *
19517
- * Defines the minimum height.
19638
+ * Defines the minimum height of the chart.
19518
19639
  *
19519
19640
  * Default value is `"400px"`.
19520
19641
  *
@@ -19525,7 +19646,7 @@ declare namespace sap {
19525
19646
  /**
19526
19647
  * Gets current value of property {@link #getMinWidth minWidth}.
19527
19648
  *
19528
- * Defines the minimum width.
19649
+ * Defines the minimum width of the chart.
19529
19650
  *
19530
19651
  * Default value is `"240px"`.
19531
19652
  *
@@ -19573,15 +19694,16 @@ declare namespace sap {
19573
19694
  /**
19574
19695
  * Gets content of aggregation {@link #getSelectionDetailsActions selectionDetailsActions}.
19575
19696
  *
19576
- * Feeds details actions for data point selection in the mdc chart.
19697
+ * Feeds details popover actions for data point selection in the mdc chart.
19577
19698
  * For more information, see {@link sap.ui.mdc.chart.SelectionDetailsActions SelectionDetailsActions}.
19578
19699
  */
19579
19700
  getSelectionDetailsActions(): sap.ui.mdc.chart.SelectionDetailsActions;
19580
19701
  /**
19581
19702
  * Gets current value of property {@link #getShowChartTooltip showChartTooltip}.
19582
19703
  *
19583
- * Controls the visibility of the chart tooltip. If set to `true`, a call of the `delegate.setChartTooltipVisibility`
19584
- * will be triggered and can be used to make the `Chart` tooltip visible.
19704
+ * Controls the visibility of the chart tooltip.
19705
+ * If set to `true`, a call of the `delegate.setChartTooltipVisibility` will be triggered and can be used
19706
+ * to make the `Chart` tooltip visible.
19585
19707
  *
19586
19708
  * Default value is `true`.
19587
19709
  *
@@ -19601,12 +19723,6 @@ declare namespace sap {
19601
19723
  * @returns Value of property `showSelectionDetails`
19602
19724
  */
19603
19725
  getShowSelectionDetails(): boolean;
19604
- /**
19605
- * Gets content of aggregation {@link #getVariant variant}.
19606
- *
19607
- * Reference to a {@link sap.ui.fl.variants.VariantManagement} control for the chart.
19608
- */
19609
- getVariant(): sap.ui.fl.variants.VariantManagement;
19610
19726
  /**
19611
19727
  * Gets current value of property {@link #getWidth width}.
19612
19728
  *
@@ -19849,7 +19965,7 @@ declare namespace sap {
19849
19965
  /**
19850
19966
  * Sets a new value for property {@link #getMinHeight minHeight}.
19851
19967
  *
19852
- * Defines the minimum height.
19968
+ * Defines the minimum height of the chart.
19853
19969
  *
19854
19970
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19855
19971
  *
@@ -19867,7 +19983,7 @@ declare namespace sap {
19867
19983
  /**
19868
19984
  * Sets a new value for property {@link #getMinWidth minWidth}.
19869
19985
  *
19870
- * Defines the minimum width.
19986
+ * Defines the minimum width of the chart.
19871
19987
  *
19872
19988
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19873
19989
  *
@@ -19930,8 +20046,9 @@ declare namespace sap {
19930
20046
  /**
19931
20047
  * Sets a new value for property {@link #getShowChartTooltip showChartTooltip}.
19932
20048
  *
19933
- * Controls the visibility of the chart tooltip. If set to `true`, a call of the `delegate.setChartTooltipVisibility`
19934
- * will be triggered and can be used to make the `Chart` tooltip visible.
20049
+ * Controls the visibility of the chart tooltip.
20050
+ * If set to `true`, a call of the `delegate.setChartTooltipVisibility` will be triggered and can be used
20051
+ * to make the `Chart` tooltip visible.
19935
20052
  *
19936
20053
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19937
20054
  *
@@ -20382,7 +20499,8 @@ declare namespace sap {
20382
20499
  * - In display mode, usually a {@link sap.m.Text Text} control is rendered.
20383
20500
  * - If `multipleLines` is set, an {@link sap.m.ExpandableText ExpandableText} control is rendered.
20384
20501
  * - If `fieldInfo` is set and it is configured to be triggerable, a {@link sap.m.Link Link} control is
20385
- * rendered.
20502
+ * rendered. The `multipleLines` property is forwarded to the `wrapping` property of the {@link sap.m.Link Link }
20503
+ * control.
20386
20504
  * - In edit mode, usually an {@link sap.m.Input Input} control is rendered.
20387
20505
  * - If `multipleLines` is set, a {@link sap.m.TextArea TextArea} control is rendered.
20388
20506
  * - If a date type is used, a {@link sap.m.DatePicker DatePicker} control is rendered.
@@ -21607,7 +21725,6 @@ declare namespace sap {
21607
21725
  * - If `multipleLines` is set, a {@link sap.m.TextArea TextArea} control is rendered.
21608
21726
  *
21609
21727
  * @since 1.93.0
21610
- * @experimental (since 1.93.0)
21611
21728
  */
21612
21729
  class MultiValueField
21613
21730
  extends sap.ui.mdc.field.FieldBase
@@ -21750,7 +21867,7 @@ declare namespace sap {
21750
21867
  * See {@link sap.ui.base.ManagedObject#bindProperty ManagedObject.bindProperty} for a detailed description
21751
21868
  * of the possible properties of oBindingInfo
21752
21869
  *
21753
- * Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
21870
+ * Do not use the `conditions` property, use the `items` aggregation instead.
21754
21871
  *
21755
21872
  * @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. Use the `items`
21756
21873
  * aggregation to bind the control.
@@ -22097,7 +22214,7 @@ declare namespace sap {
22097
22214
  /**
22098
22215
  * Unbinds property {@link #getConditions conditions} from model data.
22099
22216
  *
22100
- * Do not use the `conditions` property, use the `value` and `additionalValue` properties instead.
22217
+ * Do not use the `conditions` property, use the `items` aggregation instead.
22101
22218
  *
22102
22219
  * @deprecated (since 1.93) - this property is not supported for the `MultiValueField`. Use the `items`
22103
22220
  * aggregation to bind the control.