@openui5/types 1.143.1 → 1.145.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.143.1
1
+ // For Library Version: 1.145.0
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -173,7 +173,6 @@ declare module "sap/ui/mdc/ChartDelegate" {
173
173
  * the internal behavior.
174
174
  *
175
175
  * @since 1.88
176
- * @experimental As of version 1.88.
177
176
  */
178
177
  interface ChartDelegate extends AggregationBaseDelegate {
179
178
  /**
@@ -824,8 +823,10 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
824
823
  */
825
824
  interface FieldBaseDelegate extends BaseDelegate {
826
825
  /**
827
- * Enables applications to control condition updates based on `value` / `additionalvalue` property changes.
828
- *
826
+ * Enables applications to control condition updates based on {@link sap.ui.mdc.Field#getValue value} /
827
+ * {@link sap.ui.mdc.Field#getAdditionalValue additionalValue} property changes of a {@link sap.ui.mdc.Field Field }
828
+ * or {@link sap.ui.mdc.field.MultiValueFieldItem#getKey key} / {@link sap.ui.mdc.field.MultiValueFieldItem#getDescription description }
829
+ * property changes of a {@link sap.ui.mdc.MultiValueField MultiValueField}.
829
830
  * By default, this method returns a condition with an `EQ` operator.
830
831
  *
831
832
  * **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
@@ -855,8 +856,10 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
855
856
  oCurrentCondition: undefined | ConditionObject
856
857
  ): undefined | ConditionObject;
857
858
  /**
858
- * Enables applications to control condition updates based on `value` / `additionalvalue` property changes.
859
- *
859
+ * Enables applications to control condition updates based on {@link sap.ui.mdc.Field#getValue value} /
860
+ * {@link sap.ui.mdc.Field#getAdditionalValue additionalValue} property changes of a {@link sap.ui.mdc.Field Field }
861
+ * or {@link sap.ui.mdc.field.MultiValueFieldItem#getKey key} / {@link sap.ui.mdc.field.MultiValueFieldItem#getDescription description }
862
+ * property changes of a {@link sap.ui.mdc.MultiValueField MultiValueField}.
860
863
  * By default, this method returns a condition with an `EQ` operator.
861
864
  *
862
865
  * **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
@@ -1417,7 +1420,9 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
1417
1420
  */
1418
1421
  additionalValueType: SimpleType;
1419
1422
  }
1420
- ): Array<ConditionObject | string> | Promise<any[]>;
1423
+ ):
1424
+ | Array<ConditionObject | string>
1425
+ | Promise<Array<ConditionObject | string>>;
1421
1426
  }
1422
1427
  const FieldBaseDelegate: FieldBaseDelegate;
1423
1428
  export default FieldBaseDelegate;
@@ -1439,11 +1444,10 @@ declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
1439
1444
  /**
1440
1445
  * Implements the model-specific logic to update items after conditions have been updated.
1441
1446
  *
1442
- * Items can be removed, updated, or added. Use the binding information of the `MultiValueField` control
1443
- * to update the data in the related model.
1447
+ * Items can be removed, updated, or added. Use the binding information of the {@link sap.ui.mdc.MultiValueField MultiValueField }
1448
+ * control to update the data in the related model.
1444
1449
  *
1445
1450
  * @deprecated As of version 1.142. replaced by {@link module:sap/ui/mdc/field/MultiValueFieldDelegate.updateItemsFromConditions updateItemsFromConditions}.
1446
- * @experimental
1447
1451
  */
1448
1452
  updateItems(
1449
1453
  /**
@@ -1451,32 +1455,31 @@ declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
1451
1455
  */
1452
1456
  oPayload: object,
1453
1457
  /**
1454
- * Current conditions of the `MultiValueField` control
1458
+ * Current conditions of the {@link sap.ui.mdc.MultiValueField MultiValueField} control
1455
1459
  */
1456
1460
  aConditions: ConditionObject[],
1457
1461
  /**
1458
- * Current `MultiValueField` control to determine binding information to update the values of the related
1459
- * model
1462
+ * Current {@link sap.ui.mdc.MultiValueField MultiValueField} control to determine binding information to
1463
+ * update the values of the related model
1460
1464
  */
1461
1465
  oMultiValueField: MultiValueField
1462
1466
  ): void;
1463
1467
  /**
1464
1468
  * Implements the model-specific logic to update items after conditions have been updated.
1465
1469
  *
1466
- * Items can be removed, updated, or added. Use the binding information of the `MultiValueField` control
1467
- * to update the data in the related model.
1470
+ * Items can be removed, updated, or added. Use the binding information of the {@link sap.ui.mdc.MultiValueField MultiValueField }
1471
+ * control to update the data in the related model.
1468
1472
  *
1469
1473
  * @since 1.142
1470
- * @experimental
1471
1474
  */
1472
1475
  updateItemsFromConditions(
1473
1476
  /**
1474
- * Current `MultiValueField` control to determine binding information to update the values of the related
1475
- * model
1477
+ * Current {@link sap.ui.mdc.MultiValueField MultiValueField} control to determine binding information to
1478
+ * update the values of the related model
1476
1479
  */
1477
1480
  oMultiValueField: MultiValueField,
1478
1481
  /**
1479
- * Current conditions of the `MultiValueField` control
1482
+ * Current conditions of the {@link sap.ui.mdc.MultiValueField MultiValueField} control
1480
1483
  */
1481
1484
  aConditions: ConditionObject[]
1482
1485
  ): void;
@@ -1564,6 +1567,8 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
1564
1567
  /**
1565
1568
  * A validator to evaluate the `FilterBar` state.
1566
1569
  *
1570
+ * **Note:** Conditions of filters with error will be removed if shown on P13n dialog.
1571
+ *
1567
1572
  *
1568
1573
  * @returns The inner `FilterBar` state
1569
1574
  */
@@ -1688,7 +1693,7 @@ declare module "sap/ui/mdc/GeomapDelegate" {
1688
1693
 
1689
1694
  /**
1690
1695
  * Base Delegate for {@link sap.ui.mdc.Geomap Geomap}. Extend this object in your project to use all functionalities
1691
- * of the {@link sap.ui.mdc.GeoMap GeoMap}.
1696
+ * of the {@link sap.ui.mdc.Geomap Geomap}.
1692
1697
  * This class provides method calls, that are called by the `geomap` for specific operations and overwrite
1693
1698
  * the internal behavior.
1694
1699
  *
@@ -1763,8 +1768,8 @@ declare module "sap/ui/mdc/GeomapDelegate" {
1763
1768
  * **Note:** The result of this function must be kept stable throughout the lifecycle of your application.
1764
1769
  * Any changes of the returned values might result in undesired effects.
1765
1770
  *
1766
- * **Note**: Existing properties (set via `sap.ui.mdc.GeoMap#setPropertyInfo`) must not be removed and their
1767
- * attributes must not be changed during the {@link module:sap/ui/mdc/GeoMapDelegate.fetchProperties fetchProperties }
1771
+ * **Note**: Existing properties (set via `sap.ui.mdc.Geomap#setPropertyInfo`) must not be removed and their
1772
+ * attributes must not be changed during the {@link module:sap/ui/mdc/GeomapDelegate.fetchProperties fetchProperties }
1768
1773
  * callback. Otherwise validation errors might occur whenever personalization-related control features (such
1769
1774
  * as the opening of any personalization dialog) are activated.
1770
1775
  *
@@ -1776,7 +1781,7 @@ declare module "sap/ui/mdc/GeomapDelegate" {
1776
1781
  * Reference to the geomap
1777
1782
  */
1778
1783
  oGeomap: Geomap
1779
- ): Promise</* was: sap.ui.mdc.GeoMap.PropertyInfo */ any[]>;
1784
+ ): Promise</* was: sap.ui.mdc.Geomap.PropertyInfo */ any[]>;
1780
1785
  /**
1781
1786
  * Returns the binding info for given geomap.
1782
1787
  *
@@ -1819,7 +1824,7 @@ declare module "sap/ui/mdc/GeomapDelegate" {
1819
1824
  * Reference to the MDC geomap
1820
1825
  */
1821
1826
  oGeomap: Geomap
1822
- ): /* was: sap.ui.mdc.GeoMap.GeomapTypeObject */ any[];
1827
+ ): GeomapTypeObject[];
1823
1828
  /**
1824
1829
  * Gets the current zooming information for the geomap.
1825
1830
  *
@@ -1952,7 +1957,7 @@ declare module "sap/ui/mdc/GeomapDelegate" {
1952
1957
  /**
1953
1958
  * Reference to the geomap
1954
1959
  */
1955
- oGeoMap: /* was: sap.ui.mdc.GeoMap */ any
1960
+ oGeomap: Geomap
1956
1961
  ): void;
1957
1962
  }
1958
1963
  const GeomapDelegate: GeomapDelegate;
@@ -2514,12 +2519,12 @@ declare module "sap/ui/mdc/TableDelegate" {
2514
2519
  * To enable specific functionalities, the configuration must contain the following functions:
2515
2520
  * - To enable **Expand Entire Tree**, the `expandAll` function needs to be implemented.
2516
2521
  * - To enable **Collapse Entire Tree**, the `collapseAll` function needs to be implemented.
2517
- * - To enable **Expand Entire Node**, the `expandAllFromNode` and `isNodeExpanded` functions need to
2518
- * be implemented.
2519
- * - To enable **Collapse Entire Node**, the `collapseAllFromNode` and `isNodeExpanded` functions need
2522
+ * - To enable **Expand Entire Node**, the `expandEntireNode` and `isNodeExpanded` functions need to be
2523
+ * implemented.
2524
+ * - To enable **Collapse Entire Node**, the `collapseEntireNode` and `isNodeExpanded` functions need
2520
2525
  * to be implemented.
2521
2526
  *
2522
- * **Note:** Expand and collapse all from a specific node is only supported if the table rows are selectable.
2527
+ * **Note:** Expanding and collapsing an entire node is only supported if the table rows are selectable.
2523
2528
  *
2524
2529
  * @ui5-protected Do not call from applications (only from related classes in the framework)
2525
2530
  *
@@ -2726,35 +2731,35 @@ declare module "sap/ui/mdc/TableDelegate" {
2726
2731
  */
2727
2732
  export type ExpandAndCollapseConfiguration = {
2728
2733
  /**
2729
- * Function to expand all rows
2734
+ * Function to expand the entire tree
2730
2735
  *
2731
2736
  * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2732
2737
  */
2733
2738
  expandAll?: (p1: Table) => void;
2734
2739
  /**
2735
- * Function to collapse all rows
2740
+ * Function to collapse the entire tree
2736
2741
  *
2737
2742
  * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2738
2743
  */
2739
2744
  collapseAll?: (p1: Table) => void;
2740
2745
  /**
2741
- * Function to expand all rows from a specific node
2746
+ * Function to expand a node and all the nodes in its entire subtree.
2742
2747
  *
2743
2748
  * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2744
2749
  */
2745
- expandAllFromNode?: (p1: Table, p2: Context) => void;
2750
+ expandEntireNode?: (p1: Table, p2: Context) => void;
2746
2751
  /**
2747
- * Function to collapse all rows from a specific node
2752
+ * Function to collapse a node and all the nodes in its entire subtree.
2748
2753
  *
2749
2754
  * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2750
2755
  */
2751
- collapseAllFromNode?: (p1: Table, p2: Context) => void;
2756
+ collapseEntireNode?: (p1: Table, p2: Context) => void;
2752
2757
  /**
2753
- * Function to check if a specific node is expanded
2758
+ * Function to check if a specific node is expanded. Returns `undefined` if the node is a leaf.
2754
2759
  *
2755
2760
  * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2756
2761
  */
2757
- isNodeExpanded?: (p1: Table, p2: Context) => void;
2762
+ isNodeExpanded?: (p1: Table, p2: Context) => boolean | undefined;
2758
2763
  };
2759
2764
  }
2760
2765
 
@@ -3876,8 +3881,8 @@ declare module "sap/ui/mdc/library" {
3876
3881
 
3877
3882
  /**
3878
3883
  * The `State` object describes the interface to apply and retrieve the current adaptation state from mdc
3879
- * controls. The {@link sap.mdc.p13n.StateUtil StateUtil} class can be used to programatically apply changes
3880
- * considered for the controls personalization to be part of its persistence.
3884
+ * controls. The {@link sap.ui.mdc.p13n.StateUtil StateUtil} class can be used to programatically apply
3885
+ * changes considered for the controls personalization to be part of its persistence.
3881
3886
  */
3882
3887
  export type State = {
3883
3888
  /**
@@ -4559,7 +4564,6 @@ declare module "sap/ui/mdc/Chart" {
4559
4564
  * via an implementation of a `ChartDelegate` module.
4560
4565
  *
4561
4566
  * @since 1.88
4562
- * @experimental As of version 1.88.
4563
4567
  */
4564
4568
  export default class Chart extends Control implements IFilterSource, IxState {
4565
4569
  __implements__sap_ui_mdc_IFilterSource: boolean;
@@ -4632,6 +4636,19 @@ declare module "sap/ui/mdc/Chart" {
4632
4636
  * @returns Metadata object describing this class
4633
4637
  */
4634
4638
  static getMetadata(): ElementMetadata;
4639
+ /**
4640
+ * Adds some chartAction to the aggregation {@link #getChartActions chartActions}.
4641
+ *
4642
+ * @since 1.145
4643
+ *
4644
+ * @returns Reference to `this` in order to allow method chaining
4645
+ */
4646
+ addChartAction(
4647
+ /**
4648
+ * The chartAction to add; if empty, nothing is inserted
4649
+ */
4650
+ oChartAction: Control1
4651
+ ): this;
4635
4652
  /**
4636
4653
  * Attaches event handler `fnFunction` to the {@link #event:selectionDetailsActionPressed selectionDetailsActionPressed }
4637
4654
  * event of this `sap.ui.mdc.Chart`.
@@ -4681,6 +4698,14 @@ declare module "sap/ui/mdc/Chart" {
4681
4698
  */
4682
4699
  oListener?: object
4683
4700
  ): this;
4701
+ /**
4702
+ * Destroys all the chartActions in the aggregation {@link #getChartActions chartActions}.
4703
+ *
4704
+ * @since 1.145
4705
+ *
4706
+ * @returns Reference to `this` in order to allow method chaining
4707
+ */
4708
+ destroyChartActions(): this;
4684
4709
  /**
4685
4710
  * Destroys the noData in the aggregation {@link #getNoData noData}.
4686
4711
  *
@@ -4758,6 +4783,20 @@ declare module "sap/ui/mdc/Chart" {
4758
4783
  * @returns Value of property `autoBindOnInit`
4759
4784
  */
4760
4785
  getAutoBindOnInit(): boolean;
4786
+ /**
4787
+ * Gets content of aggregation {@link #getChartActions chartActions}.
4788
+ *
4789
+ * Additional chart-related actions that are positioned together with other chart-generated actions, based
4790
+ * on the {@link sap.ui.mdc.chart.ActionLayoutData ActionLayoutData} provided.
4791
+ *
4792
+ * **Note:** All actions should use layout data of the {@link sap.ui.mdc.chart.ActionLayoutData ActionLayoutData }
4793
+ * type to ensure correct ordering. Actions that do not use this layout data will be placed after the chart-generated
4794
+ * actions.
4795
+ * **Note:** As with other chart-generated actions, these actions are excluded from the UI adaptation.
4796
+ *
4797
+ * @since 1.145
4798
+ */
4799
+ getChartActions(): Control1[];
4761
4800
  /**
4762
4801
  * Gets current value of property {@link #getChartType chartType}.
4763
4802
  *
@@ -4795,7 +4834,6 @@ declare module "sap/ui/mdc/Chart" {
4795
4834
  *
4796
4835
  * Default value is `...see text or source`.
4797
4836
  *
4798
- * @experimental
4799
4837
  *
4800
4838
  * @returns Value of property `delegate`
4801
4839
  */
@@ -5013,6 +5051,20 @@ declare module "sap/ui/mdc/Chart" {
5013
5051
  */
5014
5052
  oAction: Control1
5015
5053
  ): int;
5054
+ /**
5055
+ * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getChartActions chartActions}.
5056
+ * and returns its index if found or -1 otherwise.
5057
+ *
5058
+ * @since 1.145
5059
+ *
5060
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
5061
+ */
5062
+ indexOfChartAction(
5063
+ /**
5064
+ * The chartAction whose index is looked for
5065
+ */
5066
+ oChartAction: Control1
5067
+ ): int;
5016
5068
  /**
5017
5069
  * Checks for the provided `sap.ui.mdc.chart.Item` in the aggregation {@link #getItems items}. and returns
5018
5070
  * its index if found or -1 otherwise.
@@ -5026,6 +5078,25 @@ declare module "sap/ui/mdc/Chart" {
5026
5078
  */
5027
5079
  oItem: Item
5028
5080
  ): int;
5081
+ /**
5082
+ * Inserts a chartAction into the aggregation {@link #getChartActions chartActions}.
5083
+ *
5084
+ * @since 1.145
5085
+ *
5086
+ * @returns Reference to `this` in order to allow method chaining
5087
+ */
5088
+ insertChartAction(
5089
+ /**
5090
+ * The chartAction to insert; if empty, nothing is inserted
5091
+ */
5092
+ oChartAction: Control1,
5093
+ /**
5094
+ * The `0`-based index the chartAction should be inserted at; for a negative value of `iIndex`, the chartAction
5095
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the chartAction
5096
+ * is inserted at the last position
5097
+ */
5098
+ iIndex: int
5099
+ ): this;
5029
5100
  /**
5030
5101
  * Executes a rebind considering the provided external and inbuilt filtering.
5031
5102
  *
@@ -5035,6 +5106,29 @@ declare module "sap/ui/mdc/Chart" {
5035
5106
  * for example because there are invalid filters.
5036
5107
  */
5037
5108
  rebind(): Promise<any>;
5109
+ /**
5110
+ * Removes all the controls from the aggregation {@link #getChartActions chartActions}.
5111
+ *
5112
+ * Additionally, it unregisters them from the hosting UIArea.
5113
+ *
5114
+ * @since 1.145
5115
+ *
5116
+ * @returns An array of the removed elements (might be empty)
5117
+ */
5118
+ removeAllChartActions(): Control1[];
5119
+ /**
5120
+ * Removes a chartAction from the aggregation {@link #getChartActions chartActions}.
5121
+ *
5122
+ * @since 1.145
5123
+ *
5124
+ * @returns The removed chartAction or `null`
5125
+ */
5126
+ removeChartAction(
5127
+ /**
5128
+ * The chartAction to remove or its index or id
5129
+ */
5130
+ vChartAction: int | string | Control1
5131
+ ): Control1 | null;
5038
5132
  /**
5039
5133
  * Sets a new value for property {@link #getAutoBindOnInit autoBindOnInit}.
5040
5134
  *
@@ -5075,7 +5169,6 @@ declare module "sap/ui/mdc/Chart" {
5075
5169
  *
5076
5170
  * Default value is `...see text or source`.
5077
5171
  *
5078
- * @experimental
5079
5172
  *
5080
5173
  * @returns Reference to `this` in order to allow method chaining
5081
5174
  */
@@ -5393,8 +5486,6 @@ declare module "sap/ui/mdc/Chart" {
5393
5486
  * - `aggregatable`
5394
5487
  * - `role`
5395
5488
  * - `dataType`
5396
- *
5397
- * @experimental As of version 1.80.
5398
5489
  */
5399
5490
  export type PropertyInfo = PropertyInfo1 & {
5400
5491
  /**
@@ -5413,8 +5504,6 @@ declare module "sap/ui/mdc/Chart" {
5413
5504
 
5414
5505
  /**
5415
5506
  * Describes the settings that can be provided to the Chart constructor.
5416
- *
5417
- * @experimental As of version 1.88.
5418
5507
  */
5419
5508
  export interface $ChartSettings extends $ControlSettings {
5420
5509
  /**
@@ -5441,8 +5530,6 @@ declare module "sap/ui/mdc/Chart" {
5441
5530
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
5442
5531
  * that).
5443
5532
  * Do not bind or modify the module. This property can only be configured during control initialization.
5444
- *
5445
- * @experimental
5446
5533
  */
5447
5534
  delegate?: object | PropertyBindingInfo | `{${string}}`;
5448
5535
 
@@ -5498,20 +5585,18 @@ declare module "sap/ui/mdc/Chart" {
5498
5585
  minHeight?: CSSSize | PropertyBindingInfo | `{${string}}`;
5499
5586
 
5500
5587
  /**
5501
- * Defines the sort conditions.
5502
- * **Note:** This property must not be bound.
5503
- * **Note:** This property is exclusively used for handling SAPUI5 flexibility changes. Do not use it for
5504
- * anything else.
5588
+ * Defines the XML baseline for sort conditions in SAPUI5 flexibility.
5589
+ *
5590
+ * **Note:** This property must not be bound. **Note:** This property must not be changed during runtime.
5505
5591
  *
5506
5592
  * @since 1.88
5507
5593
  */
5508
5594
  sortConditions?: object | PropertyBindingInfo | `{${string}}`;
5509
5595
 
5510
5596
  /**
5511
- * Defines the filter conditions.
5512
- * **Note:** This property must not be bound.
5513
- * **Note:** This property is exclusively used for handling SAPUI5 flexibility changes. Do not use it for
5514
- * anything else.
5597
+ * Defines the XML baseline for filter conditions in SAPUI5 flexibility.
5598
+ *
5599
+ * **Note:** This property must not be bound. **Note:** This property must not be changed during runtime.
5515
5600
  *
5516
5601
  * @since 1.99
5517
5602
  */
@@ -5605,6 +5690,23 @@ declare module "sap/ui/mdc/Chart" {
5605
5690
  */
5606
5691
  actions?: Control1[] | Control1 | AggregationBindingInfo | `{${string}}`;
5607
5692
 
5693
+ /**
5694
+ * Additional chart-related actions that are positioned together with other chart-generated actions, based
5695
+ * on the {@link sap.ui.mdc.chart.ActionLayoutData ActionLayoutData} provided.
5696
+ *
5697
+ * **Note:** All actions should use layout data of the {@link sap.ui.mdc.chart.ActionLayoutData ActionLayoutData }
5698
+ * type to ensure correct ordering. Actions that do not use this layout data will be placed after the chart-generated
5699
+ * actions.
5700
+ * **Note:** As with other chart-generated actions, these actions are excluded from the UI adaptation.
5701
+ *
5702
+ * @since 1.145
5703
+ */
5704
+ chartActions?:
5705
+ | Control1[]
5706
+ | Control1
5707
+ | AggregationBindingInfo
5708
+ | `{${string}}`;
5709
+
5608
5710
  /**
5609
5711
  * Feeds details popover actions for data point selection in the chart.
5610
5712
  * For more information, see {@link sap.ui.mdc.chart.SelectionDetailsActions SelectionDetailsActions}.
@@ -5679,6 +5781,138 @@ declare module "sap/ui/mdc/Chart" {
5679
5781
  >;
5680
5782
  }
5681
5783
 
5784
+ declare module "sap/ui/mdc/chart/ActionLayoutData" {
5785
+ import {
5786
+ default as OverflowToolbarLayoutData,
5787
+ $OverflowToolbarLayoutDataSettings,
5788
+ } from "sap/m/OverflowToolbarLayoutData";
5789
+
5790
+ import { IActionLayoutData } from "sap/ui/mdc/library";
5791
+
5792
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
5793
+
5794
+ import ChartActionPosition from "sap/ui/mdc/enums/ChartActionPosition";
5795
+
5796
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
5797
+
5798
+ /**
5799
+ * Defines the layout data for the {@link sap.ui.mdc.Chart#getActions actions} and {@link sap.ui.mdc.Chart#getChartActions chartActions }
5800
+ * of the {@link sap.ui.mdc.Chart Chart}.
5801
+ *
5802
+ * @since 1.145
5803
+ */
5804
+ export default class ActionLayoutData
5805
+ extends OverflowToolbarLayoutData
5806
+ implements IActionLayoutData
5807
+ {
5808
+ __implements__sap_ui_mdc_IActionLayoutData: boolean;
5809
+ /**
5810
+ * Constructor for a new `ActionLayoutData`.
5811
+ *
5812
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
5813
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
5814
+ * of the syntax of the settings object.
5815
+ */
5816
+ constructor(
5817
+ /**
5818
+ * Initial settings for the new layout data
5819
+ */
5820
+ mSettings?: $ActionLayoutDataSettings
5821
+ );
5822
+ /**
5823
+ * Constructor for a new `ActionLayoutData`.
5824
+ *
5825
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
5826
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
5827
+ * of the syntax of the settings object.
5828
+ */
5829
+ constructor(
5830
+ /**
5831
+ * ID for the new layout data, generated automatically if no ID is given
5832
+ */
5833
+ sId?: string,
5834
+ /**
5835
+ * Initial settings for the new layout data
5836
+ */
5837
+ mSettings?: $ActionLayoutDataSettings
5838
+ );
5839
+
5840
+ /**
5841
+ * Creates a new subclass of class sap.ui.mdc.chart.ActionLayoutData with name `sClassName` and enriches
5842
+ * it with the information contained in `oClassInfo`.
5843
+ *
5844
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.OverflowToolbarLayoutData.extend}.
5845
+ *
5846
+ *
5847
+ * @returns Created class / constructor function
5848
+ */
5849
+ static extend<T extends Record<string, unknown>>(
5850
+ /**
5851
+ * Name of the class being created
5852
+ */
5853
+ sClassName: string,
5854
+ /**
5855
+ * Object literal with information about the class
5856
+ */
5857
+ oClassInfo?: sap.ClassInfo<T, ActionLayoutData>,
5858
+ /**
5859
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
5860
+ * used by this class
5861
+ */
5862
+ FNMetaImpl?: Function
5863
+ ): Function;
5864
+ /**
5865
+ * Returns a metadata object for class sap.ui.mdc.chart.ActionLayoutData.
5866
+ *
5867
+ *
5868
+ * @returns Metadata object describing this class
5869
+ */
5870
+ static getMetadata(): ElementMetadata;
5871
+ /**
5872
+ * Gets current value of property {@link #getPosition position}.
5873
+ *
5874
+ * Defines the position of the action within the group of chart actions.
5875
+ *
5876
+ * Default value is `EndActions`.
5877
+ *
5878
+ *
5879
+ * @returns Value of property `position`
5880
+ */
5881
+ getPosition(): ChartActionPosition;
5882
+ /**
5883
+ * Sets a new value for property {@link #getPosition position}.
5884
+ *
5885
+ * Defines the position of the action within the group of chart actions.
5886
+ *
5887
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5888
+ *
5889
+ * Default value is `EndActions`.
5890
+ *
5891
+ *
5892
+ * @returns Reference to `this` in order to allow method chaining
5893
+ */
5894
+ setPosition(
5895
+ /**
5896
+ * New value for property `position`
5897
+ */
5898
+ sPosition?: ChartActionPosition | keyof typeof ChartActionPosition
5899
+ ): this;
5900
+ }
5901
+ /**
5902
+ * Describes the settings that can be provided to the ActionLayoutData constructor.
5903
+ */
5904
+ export interface $ActionLayoutDataSettings
5905
+ extends $OverflowToolbarLayoutDataSettings {
5906
+ /**
5907
+ * Defines the position of the action within the group of chart actions.
5908
+ */
5909
+ position?:
5910
+ | (ChartActionPosition | keyof typeof ChartActionPosition)
5911
+ | PropertyBindingInfo
5912
+ | `{${string}}`;
5913
+ }
5914
+ }
5915
+
5682
5916
  declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
5683
5917
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
5684
5918
 
@@ -5693,7 +5927,6 @@ declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
5693
5927
  * Based on the `showNoDataStruct` the `content` or `noDataContent` will be shown.
5694
5928
  *
5695
5929
  * @since 1.105
5696
- * @experimental As of version 1.105.
5697
5930
  */
5698
5931
  export default class ChartImplementationContainer extends Control {
5699
5932
  /**
@@ -5805,8 +6038,6 @@ declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
5805
6038
  }
5806
6039
  /**
5807
6040
  * Describes the settings that can be provided to the ChartImplementationContainer constructor.
5808
- *
5809
- * @experimental As of version 1.105.
5810
6041
  */
5811
6042
  export interface $ChartImplementationContainerSettings
5812
6043
  extends $ControlSettings {
@@ -5850,7 +6081,6 @@ declare module "sap/ui/mdc/chart/ChartSelectionDetails" {
5850
6081
  * the configuration specified.
5851
6082
  *
5852
6083
  * @since 1.88
5853
- * @experimental As of version 1.88.
5854
6084
  */
5855
6085
  export default class ChartSelectionDetails extends SelectionDetails {
5856
6086
  /**
@@ -5994,8 +6224,6 @@ declare module "sap/ui/mdc/chart/ChartSelectionDetails" {
5994
6224
  }
5995
6225
  /**
5996
6226
  * Describes the settings that can be provided to the ChartSelectionDetails constructor.
5997
- *
5998
- * @experimental As of version 1.88.
5999
6227
  */
6000
6228
  export interface $ChartSelectionDetailsSettings
6001
6229
  extends $SelectionDetailsSettings {
@@ -6037,7 +6265,6 @@ declare module "sap/ui/mdc/chart/Item" {
6037
6265
  * The `Item` control for the chart/property metadata used within MDC Chart.
6038
6266
  *
6039
6267
  * @since 1.88
6040
- * @experimental As of version 1.88.
6041
6268
  */
6042
6269
  export default class Item extends UI5Element {
6043
6270
  /**
@@ -6242,8 +6469,6 @@ declare module "sap/ui/mdc/chart/Item" {
6242
6469
  }
6243
6470
  /**
6244
6471
  * Describes the settings that can be provided to the Item constructor.
6245
- *
6246
- * @experimental As of version 1.88.
6247
6472
  */
6248
6473
  export interface $ItemSettings extends $ElementSettings {
6249
6474
  /**
@@ -6294,7 +6519,6 @@ declare module "sap/ui/mdc/chart/SelectionDetailsActions" {
6294
6519
  * The `SelectionDetailsActions` is used to provide additional functionality to the Details popover.
6295
6520
  *
6296
6521
  * @since 1.88
6297
- * @experimental As of version 1.88.
6298
6522
  */
6299
6523
  export default class SelectionDetailsActions extends UI5Element {
6300
6524
  /**
@@ -6593,8 +6817,6 @@ declare module "sap/ui/mdc/chart/SelectionDetailsActions" {
6593
6817
  }
6594
6818
  /**
6595
6819
  * Describes the settings that can be provided to the SelectionDetailsActions constructor.
6596
- *
6597
- * @experimental As of version 1.88.
6598
6820
  */
6599
6821
  export interface $SelectionDetailsActionsSettings extends $ElementSettings {
6600
6822
  /**
@@ -7848,12 +8070,65 @@ declare module "sap/ui/mdc/enums/BaseType" {
7848
8070
  export default BaseType;
7849
8071
  }
7850
8072
 
8073
+ declare module "sap/ui/mdc/enums/ChartActionPosition" {
8074
+ /**
8075
+ * Defines the supported positions for chart-relevant actions within the chart toolbar, in accordance with
8076
+ * the {@link https://www.sap.com/design-system/fiori-design-web/ui-elements/chart-toolbar/ SAP Design System}.
8077
+ *
8078
+ * @since 1.145
8079
+ */
8080
+ enum ChartActionPosition {
8081
+ /**
8082
+ * Extension point for actions displayed after all chart-relevant actions.
8083
+ */
8084
+ EndActions = "EndActions",
8085
+ /**
8086
+ * The position of the drill-down action in the personalization actions group.
8087
+ */
8088
+ PersonalizationActionsDrillDown = "PersonalizationActionsDrillDown",
8089
+ /**
8090
+ * The position of the legend action in the personalization actions group.
8091
+ */
8092
+ PersonalizationActionsLegend = "PersonalizationActionsLegend",
8093
+ /**
8094
+ * The position of the selection details action in the personalization actions group.
8095
+ */
8096
+ PersonalizationActionsSelectionDetails = "PersonalizationActionsSelectionDetails",
8097
+ /**
8098
+ * The position of the settings action in the personalization actions group.
8099
+ */
8100
+ PersonalizationActionsSettings = "PersonalizationActionsSettings",
8101
+ /**
8102
+ * The position of the zoom in action in the personalization actions group.
8103
+ */
8104
+ PersonalizationActionsZoomIn = "PersonalizationActionsZoomIn",
8105
+ /**
8106
+ * The position of the zoom out action in the personalization actions group.
8107
+ */
8108
+ PersonalizationActionsZoomOut = "PersonalizationActionsZoomOut",
8109
+ /**
8110
+ * Extension point for the share actions. These actions allow users to share chart content with another
8111
+ * application or with the homepage as a tile, such as Send as Email, Save as Tile.
8112
+ */
8113
+ ShareActions = "ShareActions",
8114
+ /**
8115
+ * Extension point for the view actions. These actions change the representation of the entire chart, such
8116
+ * as View Switch, Fullscreen.
8117
+ */
8118
+ ViewActions = "ViewActions",
8119
+ /**
8120
+ * The position of the chart type menu in the view actions group.
8121
+ */
8122
+ ViewActionsChartType = "ViewActionsChartType",
8123
+ }
8124
+ export default ChartActionPosition;
8125
+ }
8126
+
7851
8127
  declare module "sap/ui/mdc/enums/ChartP13nMode" {
7852
8128
  /**
7853
8129
  * Defines the personalization mode of the chart.
7854
8130
  *
7855
8131
  * @since 1.115
7856
- * @experimental As of version 1.115.
7857
8132
  */
7858
8133
  enum ChartP13nMode {
7859
8134
  /**
@@ -7882,7 +8157,6 @@ declare module "sap/ui/mdc/enums/ChartToolbarActionType" {
7882
8157
  * Can be used to remove some of the default `ToolbarAction`. For more information, see {@link sap.ui.mdc.Chart#ignoreToolbarActions}.
7883
8158
  *
7884
8159
  * @since 1.115
7885
- * @experimental As of version 1.115.
7886
8160
  */
7887
8161
  enum ChartToolbarActionType {
7888
8162
  /**
@@ -8025,37 +8299,53 @@ declare module "sap/ui/mdc/enums/FieldEditMode" {
8025
8299
  */
8026
8300
  enum FieldEditMode {
8027
8301
  /**
8028
- * {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField} or {@link sap.ui.mdc.MultiValueField MultiValueField }
8029
- * is rendered in disabled mode
8302
+ * {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField}, or {@link sap.ui.mdc.MultiValueField MultiValueField }
8303
+ * is rendered in disabled mode.
8030
8304
  */
8031
8305
  Disabled = "Disabled",
8032
8306
  /**
8033
- * {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField} or {@link sap.ui.mdc.MultiValueField MultiValueField }
8034
- * is rendered in display mode
8307
+ * If more than one control is rendered by the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
8308
+ * or {@link sap.ui.mdc.MultiValueField MultiValueField} control, the first part is disabled, and the other
8309
+ * parts are in display mode.
8310
+ *
8311
+ * @since 1.144
8312
+ */
8313
+ DisabledDisplay = "DisabledDisplay",
8314
+ /**
8315
+ * {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField}, or {@link sap.ui.mdc.MultiValueField MultiValueField }
8316
+ * is rendered in display mode.
8035
8317
  */
8036
8318
  Display = "Display",
8037
8319
  /**
8038
- * {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField} or {@link sap.ui.mdc.MultiValueField MultiValueField }
8039
- * is rendered in editable mode
8320
+ * {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField}, or {@link sap.ui.mdc.MultiValueField MultiValueField }
8321
+ * is rendered in editable mode.
8040
8322
  */
8041
8323
  Editable = "Editable",
8042
8324
  /**
8043
- * If more than one control is rendered by the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField }
8325
+ * If more than one control is rendered by the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
8044
8326
  * or {@link sap.ui.mdc.MultiValueField MultiValueField} control, the first part is editable, and the other
8045
8327
  * parts are in display mode.
8046
8328
  */
8047
8329
  EditableDisplay = "EditableDisplay",
8048
8330
  /**
8049
- * If more than one control is rendered by the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField }
8331
+ * If more than one control is rendered by the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
8050
8332
  * or {@link sap.ui.mdc.MultiValueField MultiValueField} control, the first part is editable, and the other
8051
8333
  * parts are read-only.
8052
8334
  */
8053
8335
  EditableReadOnly = "EditableReadOnly",
8054
8336
  /**
8055
- * {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField} or {@link sap.ui.mdc.MultiValueField MultiValueField }
8056
- * is rendered in read-only mode
8337
+ * {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField}, or {@link sap.ui.mdc.MultiValueField MultiValueField }
8338
+ * is rendered in read-only mode.
8057
8339
  */
8058
8340
  ReadOnly = "ReadOnly",
8341
+ /**
8342
+ * If more than one control is rendered by the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.FilterField FilterField},
8343
+ * or {@link sap.ui.mdc.MultiValueField MultiValueField} control, the first part is read-only, and the other
8344
+ * parts are in display mode.
8345
+ *
8346
+ * @since 1.144
8347
+ */
8348
+ ReadOnlyDisplay = "ReadOnlyDisplay",
8059
8349
  }
8060
8350
  export default FieldEditMode;
8061
8351
  }
@@ -8924,19 +9214,19 @@ declare module "sap/ui/mdc/enums/RequestShowContainerReason" {
8924
9214
  declare module "sap/ui/mdc/enums/TableActionPosition" {
8925
9215
  /**
8926
9216
  * Defines the supported positions for table-relevant actions within the table toolbar, in accordance with
8927
- * the {@link https://www.sap.com/design-system/fiori-design-web/ui-elements/table-bar/ SAP Design System}.
9217
+ * the {@link https://www.sap.com/design-system/fiori-design-web/ui-elements/table-bar/ SAP Design System guidelines}.
8928
9218
  *
8929
9219
  * @since 1.143
8930
9220
  */
8931
9221
  enum TableActionPosition {
8932
9222
  /**
8933
9223
  * Extension point for actions displayed after all table-relevant actions. These actions allow applications
8934
- * to add additional functionality, such as Pagination, Refresh.
9224
+ * to add additional functionality, such as pagination, refresh.
8935
9225
  */
8936
9226
  EndActions = "EndActions",
8937
9227
  /**
8938
9228
  * Extension point for the export actions at the start of the group. These actions convert the content of
8939
- * the table into an external format, such as Excel, PDF, Print.
9229
+ * the table into an external format, such as Excel, PDF, a printed document.
8940
9230
  */
8941
9231
  ExportActions = "ExportActions",
8942
9232
  /**
@@ -8957,7 +9247,7 @@ declare module "sap/ui/mdc/enums/TableActionPosition" {
8957
9247
  PersonalizationActions = "PersonalizationActions",
8958
9248
  /**
8959
9249
  * Extension point for the personalization actions inserted after the first and before the second group
8960
- * of predefined actions. These actions change the arrangement or personalization of the table on an item
9250
+ * of predefined actions. These actions change the arrangement or personalization of the table at the item
8961
9251
  * level, such as Expand/Collapse Node, Show/Hide Details, Table Settings.
8962
9252
  */
8963
9253
  PersonalizationActionsMiddle = "PersonalizationActionsMiddle",
@@ -9038,12 +9328,12 @@ declare module "sap/ui/mdc/enums/TablePopinDisplay" {
9038
9328
  */
9039
9329
  enum TablePopinDisplay {
9040
9330
  /**
9041
- * The header is displayed in the first line, and the cell content is displayed in the next line.
9331
+ * The header is displayed on the first line, and the cell content is displayed on the next line.
9042
9332
  */
9043
9333
  Block = "Block",
9044
9334
  /**
9045
- * The cell content is displayed next to the header in the same line. **Note:** If there is not enough space
9046
- * for the cell content, then it is displayed in the next line.
9335
+ * The cell content is displayed next to the header on the same line. **Note:** If there is not enough space
9336
+ * for the cell content, then it is displayed on the next line.
9047
9337
  */
9048
9338
  Inline = "Inline",
9049
9339
  }
@@ -12705,7 +12995,7 @@ declare module "sap/ui/mdc/field/FieldInfoBase" {
12705
12995
  * Returns the content of the popover.
12706
12996
  *
12707
12997
  *
12708
- * @returns `Promise` with a popover content of type sap.ui.Control as result
12998
+ * @returns `Promise` with a popover content of type sap.ui.core.Control as result
12709
12999
  */
12710
13000
  getContent(
12711
13001
  /**
@@ -13484,6 +13774,19 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
13484
13774
  */
13485
13775
  mParameters?: FilterBarBase$SearchEventParameters
13486
13776
  ): this;
13777
+ /**
13778
+ * Updates the Adapt Filters button text based on the number of assigned filters.
13779
+ *
13780
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13781
+ *
13782
+ * @returns text for the Adapt Filters button
13783
+ */
13784
+ getAdaptFiltersButtonText(
13785
+ /**
13786
+ * number of assigned filters
13787
+ */
13788
+ iFilterCount: int
13789
+ ): string;
13487
13790
  /**
13488
13791
  * Gets the labels of all filters with a value assignment.
13489
13792
  *
@@ -13887,8 +14190,13 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
13887
14190
 
13888
14191
  /**
13889
14192
  * Specifies the filter metadata.
14193
+ * The format is the same as the return type of the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
14194
+ * delegate function.
14195
+ * Properties specified here must be consistent with properties returned by the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
14196
+ * callback, otherwise validation errors might occur.
14197
+ * Metadata for initially rendered {@link sap.ui.mdc.FilterField FilterFields} (those in the `filterItems`
14198
+ * aggregation) should be specified here, rather than in the `FilterField` configuration.
13890
14199
  * **Note**: This property must not be bound.
13891
- * **Note**: This property is used exclusively for SAPUI5 flexibility/ Fiori Elements. Do not use it otherwise.
13892
14200
  * **Node**: Please check {@link sap.ui.mdc.filterbar.PropertyInfo} for more information about the supported
13893
14201
  * inner elements. **Note**: Existing properties (set via `sap.ui.mdc.filterbar.FilterBarBase#setPropertyInfo`)
13894
14202
  * must not be removed and their attributes must not be changed during the {@link module:sap/ui/mdc/FilterBarDelegate.fetchProperties fetchProperties }
@@ -14006,10 +14314,10 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
14006
14314
  declare module "sap/ui/mdc/filterbar/IFilterContainer" {
14007
14315
  import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
14008
14316
 
14009
- import FilterField from "sap/ui/mdc/FilterField";
14010
-
14011
14317
  import Control from "sap/ui/core/Control";
14012
14318
 
14319
+ import FilterField from "sap/ui/mdc/FilterField";
14320
+
14013
14321
  import ElementMetadata from "sap/ui/core/ElementMetadata";
14014
14322
 
14015
14323
  /**
@@ -14060,6 +14368,17 @@ declare module "sap/ui/mdc/filterbar/IFilterContainer" {
14060
14368
  * @returns Metadata object describing this class
14061
14369
  */
14062
14370
  static getMetadata(): ElementMetadata;
14371
+ /**
14372
+ * Adds a button control to the inner layout of the `IFilterContainer`.
14373
+ *
14374
+ * @since 1.144
14375
+ */
14376
+ addButton(
14377
+ /**
14378
+ * Control that is added
14379
+ */
14380
+ oControl: Control
14381
+ ): void;
14063
14382
  /**
14064
14383
  * Overwrites the default exit to clean up the created layout properly.
14065
14384
  */
@@ -14754,7 +15073,7 @@ declare module "sap/ui/mdc/Geomap" {
14754
15073
  __implements__sap_ui_mdc_IFilterSource: boolean;
14755
15074
  __implements__sap_ui_mdc_IxState: boolean;
14756
15075
  /**
14757
- * Constructor for a new GeoMap.
15076
+ * Constructor for a new Geomap.
14758
15077
  *
14759
15078
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
14760
15079
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -14769,7 +15088,7 @@ declare module "sap/ui/mdc/Geomap" {
14769
15088
  mSettings?: $GeomapSettings
14770
15089
  );
14771
15090
  /**
14772
- * Constructor for a new GeoMap.
15091
+ * Constructor for a new Geomap.
14773
15092
  *
14774
15093
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
14775
15094
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -14941,7 +15260,7 @@ declare module "sap/ui/mdc/Geomap" {
14941
15260
  *
14942
15261
  * Default value is `...see text or source`.
14943
15262
  *
14944
- * @experimental
15263
+ * @experimental As of version 1.142.
14945
15264
  *
14946
15265
  * @returns Value of property `delegate`
14947
15266
  */
@@ -15144,7 +15463,7 @@ declare module "sap/ui/mdc/Geomap" {
15144
15463
  *
15145
15464
  * Default value is `...see text or source`.
15146
15465
  *
15147
- * @experimental
15466
+ * @experimental As of version 1.142.
15148
15467
  *
15149
15468
  * @returns Reference to `this` in order to allow method chaining
15150
15469
  */
@@ -15316,9 +15635,9 @@ declare module "sap/ui/mdc/Geomap" {
15316
15635
  ): this;
15317
15636
  }
15318
15637
  /**
15319
- * An object literal describing a data property in the context of a {@link sap.ui.mdc.GeoMap}.
15638
+ * An object literal describing a data property in the context of a {@link sap.ui.mdc.Geomap}.
15320
15639
  *
15321
- * When specifying the `PropertyInfo` objects in the {@link sap.ui.mdc.GeoMap#getPropertyInfo propertyInfo }
15640
+ * When specifying the `PropertyInfo` objects in the {@link sap.ui.mdc.Geomap#getPropertyInfo propertyInfo }
15322
15641
  * property, the following attributes need to be specified:
15323
15642
  * - `key`
15324
15643
  * - `label`
@@ -15437,7 +15756,7 @@ declare module "sap/ui/mdc/Geomap" {
15437
15756
  * that).
15438
15757
  * Do not bind or modify the module. This property can only be configured during control initialization.
15439
15758
  *
15440
- * @experimental
15759
+ * @experimental As of version 1.142.
15441
15760
  */
15442
15761
  delegate?: object | PropertyBindingInfo | `{${string}}`;
15443
15762
 
@@ -15446,7 +15765,7 @@ declare module "sap/ui/mdc/Geomap" {
15446
15765
  * **Note:** This property must not be bound.
15447
15766
  * **Note:** This property is exclusively used for handling SAPUI5 flexibility changes. Do not use it otherwise.
15448
15767
  * **Note**: Existing properties (set via `sap.ui.mdc.Geomap#setPropertyInfo`) must not be removed and
15449
- * their attributes must not be changed during the {@link module:sap/ui/mdc/GeoMapDelegate.fetchProperties fetchProperties }
15768
+ * their attributes must not be changed during the {@link module:sap/ui/mdc/GeomapDelegate.fetchProperties fetchProperties }
15450
15769
  * callback. Otherwise validation errors might occur whenever personalization-related control features (such
15451
15770
  * as the opening of any personalization dialog) are activated.
15452
15771
  *
@@ -16612,7 +16931,6 @@ declare module "sap/ui/mdc/MultiValueField" {
16612
16931
  *
16613
16932
  * Default value is `...see text or source`.
16614
16933
  *
16615
- * @experimental
16616
16934
  *
16617
16935
  * @returns Value of property `delegate`
16618
16936
  */
@@ -16781,7 +17099,6 @@ declare module "sap/ui/mdc/MultiValueField" {
16781
17099
  *
16782
17100
  * Default value is `...see text or source`.
16783
17101
  *
16784
- * @experimental
16785
17102
  *
16786
17103
  * @returns Reference to `this` in order to allow method chaining
16787
17104
  */
@@ -16855,8 +17172,6 @@ declare module "sap/ui/mdc/MultiValueField" {
16855
17172
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
16856
17173
  * that).
16857
17174
  * Do not bind or modify the module. This property can only be configured during control initialization.
16858
- *
16859
- * @experimental
16860
17175
  */
16861
17176
  delegate?: object | PropertyBindingInfo | `{${string}}`;
16862
17177
 
@@ -19107,40 +19422,36 @@ declare module "sap/ui/mdc/Table" {
19107
19422
  threshold?: int | PropertyBindingInfo | `{${string}}`;
19108
19423
 
19109
19424
  /**
19110
- * Defines the sort conditions.
19425
+ * Defines the XML baseline for sort conditions in SAPUI5 flexibility.
19111
19426
  *
19112
- * **Note:** This property must not be bound. It is used exclusively for handling SAPUI5 flexibility changes.
19113
- * Do not use it otherwise.
19427
+ * **Note:** This property must not be bound. **Note:** This property must not be changed during runtime.
19114
19428
  *
19115
19429
  * @since 1.73
19116
19430
  */
19117
19431
  sortConditions?: object | PropertyBindingInfo | `{${string}}`;
19118
19432
 
19119
19433
  /**
19120
- * Defines the filter conditions.
19434
+ * Defines the XML baseline for filter conditions in SAPUI5 flexibility.
19121
19435
  *
19122
- * **Note:** This property must not be bound. It is used exclusively for handling SAPUI5 flexibility changes.
19123
- * Do not use it otherwise.
19436
+ * **Note:** This property must not be bound. **Note:** This property must not be changed during runtime.
19124
19437
  *
19125
19438
  * @since 1.80.0
19126
19439
  */
19127
19440
  filterConditions?: object | PropertyBindingInfo | `{${string}}`;
19128
19441
 
19129
19442
  /**
19130
- * Defines the group conditions.
19443
+ * Defines the XML baseline for group conditions in SAPUI5 flexibility.
19131
19444
  *
19132
- * **Note:** This property must not be bound. It is used exclusively for handling SAPUI5 flexibility changes.
19133
- * Do not use it otherwise.
19445
+ * **Note:** This property must not be bound. **Note:** This property must not be changed during runtime.
19134
19446
  *
19135
19447
  * @since 1.87
19136
19448
  */
19137
19449
  groupConditions?: object | PropertyBindingInfo | `{${string}}`;
19138
19450
 
19139
19451
  /**
19140
- * Defines the aggregate conditions.
19452
+ * Defines the XML baseline for aggregate conditions in SAPUI5 flexibility.
19141
19453
  *
19142
- * **Note:** This property must not be bound. It is exclusively used for handling SAPUI5 flexibility changes.
19143
- * Do not use it otherwise.
19454
+ * **Note:** This property must not be bound. **Note:** This property must not be changed during runtime.
19144
19455
  *
19145
19456
  * @since 1.87
19146
19457
  */
@@ -24501,10 +24812,12 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
24501
24812
  declare module "sap/ui/mdc/valuehelp/base/Content" {
24502
24813
  import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
24503
24814
 
24504
- import { ConditionObject } from "sap/ui/mdc/condition/Condition";
24815
+ import { ID } from "sap/ui/core/library";
24505
24816
 
24506
24817
  import Control from "sap/ui/core/Control";
24507
24818
 
24819
+ import { ConditionObject } from "sap/ui/mdc/condition/Condition";
24820
+
24508
24821
  import {
24509
24822
  ItemForValueConfiguration,
24510
24823
  ValueHelpItem,
@@ -24597,6 +24910,19 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
24597
24910
  * @returns Metadata object describing this class
24598
24911
  */
24599
24912
  static getMetadata(): ElementMetadata;
24913
+ /**
24914
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
24915
+ *
24916
+ * @since 1.145.0
24917
+ *
24918
+ * @returns Reference to `this` in order to allow method chaining
24919
+ */
24920
+ addAriaLabelledBy(
24921
+ /**
24922
+ * The ariaLabelledBy to add; if empty, nothing is inserted
24923
+ */
24924
+ vAriaLabelledBy: ID | Control
24925
+ ): this;
24600
24926
  /**
24601
24927
  * Provides access to the delegate initialization `Promise` of the value help.
24602
24928
  *
@@ -24627,6 +24953,12 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
24627
24953
  */
24628
24954
  oPayload?: object
24629
24955
  ): ConditionObject;
24956
+ /**
24957
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
24958
+ *
24959
+ * @since 1.145.0
24960
+ */
24961
+ getAriaLabelledBy(): ID[];
24630
24962
  /**
24631
24963
  * Loads additional dependencies, creates and returns displayed content.
24632
24964
  *
@@ -24872,6 +25204,27 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
24872
25204
  * @returns `true` if a scrolling mechanism is needed
24873
25205
  */
24874
25206
  provideScrolling(): boolean;
25207
+ /**
25208
+ * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
25209
+ *
25210
+ * @since 1.145.0
25211
+ *
25212
+ * @returns An array of the removed elements (might be empty)
25213
+ */
25214
+ removeAllAriaLabelledBy(): ID[];
25215
+ /**
25216
+ * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
25217
+ *
25218
+ * @since 1.145.0
25219
+ *
25220
+ * @returns The removed ariaLabelledBy or `null`
25221
+ */
25222
+ removeAriaLabelledBy(
25223
+ /**
25224
+ * The ariaLabelledBy to be removed or its index or ID
25225
+ */
25226
+ vAriaLabelledBy: int | ID | Control
25227
+ ): ID | null;
24875
25228
  /**
24876
25229
  * The focus visualization of the field help needs to be removed as the user starts typing into the source
24877
25230
  * control.
@@ -24980,6 +25333,13 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
24980
25333
  * Hide content temporary.
24981
25334
  */
24982
25335
  visible?: boolean | PropertyBindingInfo | `{${string}}`;
25336
+
25337
+ /**
25338
+ * Association to controls / IDs that label this control (see WAI-ARIA attribute aria-labelledby).
25339
+ *
25340
+ * @since 1.145.0
25341
+ */
25342
+ ariaLabelledBy?: Array<Control | string>;
24983
25343
  }
24984
25344
 
24985
25345
  /**
@@ -27560,6 +27920,8 @@ declare namespace sap {
27560
27920
 
27561
27921
  "sap/ui/mdc/Chart": undefined;
27562
27922
 
27923
+ "sap/ui/mdc/chart/ActionLayoutData": undefined;
27924
+
27563
27925
  "sap/ui/mdc/chart/ChartImplementationContainer": undefined;
27564
27926
 
27565
27927
  "sap/ui/mdc/chart/ChartSelectionDetails": undefined;
@@ -27628,6 +27990,8 @@ declare namespace sap {
27628
27990
 
27629
27991
  "sap/ui/mdc/enums/BaseType": undefined;
27630
27992
 
27993
+ "sap/ui/mdc/enums/ChartActionPosition": undefined;
27994
+
27631
27995
  "sap/ui/mdc/enums/ChartP13nMode": undefined;
27632
27996
 
27633
27997
  "sap/ui/mdc/enums/ChartToolbarActionType": undefined;
@@ -27736,6 +28100,8 @@ declare namespace sap {
27736
28100
 
27737
28101
  "sap/ui/mdc/filterbar/FilterBarBase": undefined;
27738
28102
 
28103
+ "sap/ui/mdc/filterbar/FilterContainer": undefined;
28104
+
27739
28105
  "sap/ui/mdc/filterbar/IFilterContainer": undefined;
27740
28106
 
27741
28107
  "sap/ui/mdc/filterbar/p13n/AdaptationFilterBar": undefined;