@openui5/types 1.141.2 → 1.143.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.141.2
1
+ // For Library Version: 1.143.0
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -1442,6 +1442,7 @@ declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
1442
1442
  * Items can be removed, updated, or added. Use the binding information of the `MultiValueField` control
1443
1443
  * to update the data in the related model.
1444
1444
  *
1445
+ * @deprecated As of version 1.142. replaced by {@link module:sap/ui/mdc/field/MultiValueFieldDelegate.updateItemsFromConditions updateItemsFromConditions}.
1445
1446
  * @experimental
1446
1447
  */
1447
1448
  updateItems(
@@ -1459,6 +1460,26 @@ declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
1459
1460
  */
1460
1461
  oMultiValueField: MultiValueField
1461
1462
  ): void;
1463
+ /**
1464
+ * Implements the model-specific logic to update items after conditions have been updated.
1465
+ *
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.
1468
+ *
1469
+ * @since 1.142
1470
+ * @experimental
1471
+ */
1472
+ updateItemsFromConditions(
1473
+ /**
1474
+ * Current `MultiValueField` control to determine binding information to update the values of the related
1475
+ * model
1476
+ */
1477
+ oMultiValueField: MultiValueField,
1478
+ /**
1479
+ * Current conditions of the `MultiValueField` control
1480
+ */
1481
+ aConditions: ConditionObject[]
1482
+ ): void;
1462
1483
  }
1463
1484
  const MultiValueFieldDelegate: MultiValueFieldDelegate;
1464
1485
  export default MultiValueFieldDelegate;
@@ -1654,6 +1675,330 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
1654
1675
  export default FilterBarDelegate;
1655
1676
  }
1656
1677
 
1678
+ declare module "sap/ui/mdc/GeomapDelegate" {
1679
+ import AggregationBaseDelegate from "sap/ui/mdc/AggregationBaseDelegate";
1680
+
1681
+ import Geomap from "sap/ui/mdc/Geomap";
1682
+
1683
+ import Control from "sap/ui/core/Control";
1684
+
1685
+ import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
1686
+
1687
+ import { URI } from "sap/ui/core/library";
1688
+
1689
+ /**
1690
+ * 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}.
1692
+ * This class provides method calls, that are called by the `geomap` for specific operations and overwrite
1693
+ * the internal behavior.
1694
+ *
1695
+ * @experimental As of version 1.142.
1696
+ */
1697
+ interface GeomapDelegate extends AggregationBaseDelegate {
1698
+ /**
1699
+ * Returns the instance of the inner geomap.
1700
+ *
1701
+ *
1702
+ * @returns Instance of the inner geomap
1703
+ */
1704
+ _getInnerGeomap(
1705
+ /**
1706
+ * Reference to the MDC geomap
1707
+ */
1708
+ oGeomap: Geomap
1709
+ ): Control;
1710
+ /**
1711
+ * Creates a new geomap item for a given property name and updates the inner geomap.
1712
+ * **Note:** This does **not** add the geomap item to the `Items` aggregation of the geomap. Called and
1713
+ * used by `p13n`.
1714
+ *
1715
+ *
1716
+ * @returns `Promise` that resolves with new geomap `Item` as parameter
1717
+ */
1718
+ addItem(
1719
+ /**
1720
+ * Reference to the MDC geomap to add the property to
1721
+ */
1722
+ oGeomap: Geomap,
1723
+ /**
1724
+ * The name of the property added
1725
+ */
1726
+ sPropertyName: string,
1727
+ /**
1728
+ * The property bag containing useful information about the change
1729
+ */
1730
+ mPropertyBag: object,
1731
+ /**
1732
+ * New role for given item
1733
+ */
1734
+ sRole?: string
1735
+ ): Promise<object>;
1736
+ /**
1737
+ * Creates the initial content for the geomap before the metadata is retrieved.
1738
+ * This can be used by geomap libraries that can already show some information without the actual data
1739
+ * (for example, axis labels, legend, ...).
1740
+ */
1741
+ createInitialGeomapContent(
1742
+ /**
1743
+ * Reference to the geomap
1744
+ */
1745
+ oGeomap: Geomap
1746
+ ): void;
1747
+ /**
1748
+ * Binds the inner geomap to the back-end data and creates the inner geomap content.
1749
+ */
1750
+ createInnerGeomapContent(
1751
+ /**
1752
+ * Reference to the geomap
1753
+ */
1754
+ oGeomap: Geomap,
1755
+ /**
1756
+ * Callback function when data is loaded
1757
+ */
1758
+ fnCallbackDataLoaded: Function
1759
+ ): void;
1760
+ /**
1761
+ * Returns the relevant property info based on the metadata used with the geomap instance.
1762
+ *
1763
+ * **Note:** The result of this function must be kept stable throughout the lifecycle of your application.
1764
+ * Any changes of the returned values might result in undesired effects.
1765
+ *
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 }
1768
+ * callback. Otherwise validation errors might occur whenever personalization-related control features (such
1769
+ * as the opening of any personalization dialog) are activated.
1770
+ *
1771
+ *
1772
+ * @returns Array of the property infos that is used within the geomap
1773
+ */
1774
+ fetchProperties(
1775
+ /**
1776
+ * Reference to the geomap
1777
+ */
1778
+ oGeomap: Geomap
1779
+ ): Promise</* was: sap.ui.mdc.GeoMap.PropertyInfo */ any[]>;
1780
+ /**
1781
+ * Returns the binding info for given geomap.
1782
+ *
1783
+ *
1784
+ * @returns BindingInfo object
1785
+ */
1786
+ getBindingInfo(
1787
+ /**
1788
+ * Reference to the geomap
1789
+ */
1790
+ oGeomap: Geomap
1791
+ ): AggregationBindingInfo;
1792
+ /**
1793
+ * Returns the information for control positions on the map.
1794
+ *
1795
+ *
1796
+ * @returns with defined control positions
1797
+ */
1798
+ getControlPositions(): object;
1799
+ /**
1800
+ * Gets the information whether the inner geomap is currently bound.
1801
+ *
1802
+ *
1803
+ * @returns `true` if inner geomap is bound; `false` if not
1804
+ */
1805
+ getGeomapBound(
1806
+ /**
1807
+ * Reference to the geomap
1808
+ */
1809
+ oGeomap: Geomap
1810
+ ): boolean;
1811
+ /**
1812
+ * Returns the current geomap type.
1813
+ *
1814
+ *
1815
+ * @returns Information about the current geomap type
1816
+ */
1817
+ getGeomapTypeInfo(
1818
+ /**
1819
+ * Reference to the MDC geomap
1820
+ */
1821
+ oGeomap: Geomap
1822
+ ): /* was: sap.ui.mdc.GeoMap.GeomapTypeObject */ any[];
1823
+ /**
1824
+ * Gets the current zooming information for the geomap.
1825
+ *
1826
+ *
1827
+ * @returns Current `zoom` level of the inner geomap
1828
+ */
1829
+ getZoomLevel(
1830
+ /**
1831
+ * Reference to the geomap
1832
+ */
1833
+ oGeomap: Geomap
1834
+ ): float;
1835
+ /**
1836
+ * Loads the required libraries and creates the inner geomap.
1837
+ * By default, the method returns `Promise.reject()`.
1838
+ *
1839
+ *
1840
+ * @returns Resolved once the inner geomap has been initialized
1841
+ */
1842
+ initializeGeomap(
1843
+ /**
1844
+ * Reference to the geomap
1845
+ */
1846
+ oGeomap: Geomap
1847
+ ): Promise<any>;
1848
+ /**
1849
+ * Inserts a geomap item (spot / circle for `sap.geomap.geomap`) into the inner geomap.
1850
+ * This function is called by the geomap for a change of the `Items` aggregation.
1851
+ * **Note:** Do not call this yourself, as it would not be synced with the geomap, but insert the item
1852
+ * into the geomap instead.
1853
+ */
1854
+ insertItemToGeomap(
1855
+ /**
1856
+ * geomap into which the item is insert
1857
+ */
1858
+ oGeomap: Geomap,
1859
+ /**
1860
+ * geomap item (spot, container, circle & etc. )that is inserted into the inner geomap
1861
+ */
1862
+ oGeomapItem: object,
1863
+ /**
1864
+ * The index into which the geomap item is inserted
1865
+ */
1866
+ iIndex: int,
1867
+ /**
1868
+ * the type of item which should be added to the geomap
1869
+ */
1870
+ sType: string
1871
+ ): void;
1872
+ /**
1873
+ * Checks the binding of the geomap and rebinds it if required.
1874
+ */
1875
+ rebind(
1876
+ /**
1877
+ * Reference to the geomap
1878
+ */
1879
+ oGeomap: Geomap,
1880
+ /**
1881
+ * BindingInfo of the geomap
1882
+ */
1883
+ oBindingInfo: AggregationBindingInfo
1884
+ ): void;
1885
+ /**
1886
+ * Removes an existing geomap item for a given property name and updates the inner geomap..
1887
+ *
1888
+ *
1889
+ * @returns `Promise` containing information whether the item was deleted
1890
+ */
1891
+ removeItem(
1892
+ /**
1893
+ * Reference to the MDC geomap from which property is removed
1894
+ */
1895
+ oGeomap: Geomap,
1896
+ /**
1897
+ * The `item` that is removed from the geomap
1898
+ */
1899
+ oItem: object,
1900
+ /**
1901
+ * The property bag containing useful information about the change
1902
+ */
1903
+ mPropertyBag: object
1904
+ ): Promise<boolean>;
1905
+ /**
1906
+ * Removes a geomap item (spot / circle for `sap.geomap.geomap`) from the inner geomap.
1907
+ * This function is called by the geomap for a change of the `Items` aggregation.
1908
+ * **Note:** Do not call this yourself, as it would not be synced with the geomap, but remove the item
1909
+ * from the geomap instead.
1910
+ */
1911
+ removeItemFromGeomap(
1912
+ /**
1913
+ * geomap from which the item is removed
1914
+ */
1915
+ oGeoap: Geomap,
1916
+ /**
1917
+ * geomap item that is removed from the geomap
1918
+ */
1919
+ oGeomapItem: object,
1920
+ /**
1921
+ * geomap item type that should be removed from the geomap
1922
+ */
1923
+ sType: string
1924
+ ): void;
1925
+ /**
1926
+ * Updates the binding info with the relevant information.
1927
+ * By default, this method updates a given {@link sap.ui.base.ManagedObject.AggregationBindingInfo AggregationBindingInfo}.
1928
+ */
1929
+ updateBindingInfo(
1930
+ /**
1931
+ * Reference to the geomap
1932
+ */
1933
+ oGeomap: Geomap,
1934
+ /**
1935
+ * Binding info of the geomap
1936
+ */
1937
+ oBindingInfo: AggregationBindingInfo
1938
+ ): void;
1939
+ /**
1940
+ * Notifies the inner geomap to zoom in.
1941
+ */
1942
+ zoomIn(
1943
+ /**
1944
+ * Reference to the geomap
1945
+ */
1946
+ oGeomap: Geomap
1947
+ ): void;
1948
+ /**
1949
+ * Notifies the inner geomap to zoom out.
1950
+ */
1951
+ zoomOut(
1952
+ /**
1953
+ * Reference to the geomap
1954
+ */
1955
+ oGeoMap: /* was: sap.ui.mdc.GeoMap */ any
1956
+ ): void;
1957
+ }
1958
+ const GeomapDelegate: GeomapDelegate;
1959
+ export default GeomapDelegate;
1960
+
1961
+ /**
1962
+ * Geomap `GeomapTypeObject` type.
1963
+ *
1964
+ * @experimental As of version 1.142.
1965
+ */
1966
+ export type GeomapTypeObject = {
1967
+ /**
1968
+ * Unique key of the geomap type
1969
+ */
1970
+ key: string;
1971
+ /**
1972
+ * URI for the icon for the current geomap type
1973
+ */
1974
+ icon: URI;
1975
+ /**
1976
+ * Name of the current geomap type
1977
+ */
1978
+ text: string;
1979
+ /**
1980
+ * Whether the geomap type is the one currently used
1981
+ */
1982
+ selected: boolean;
1983
+ };
1984
+
1985
+ /**
1986
+ * geomap `ZoomState` type.
1987
+ *
1988
+ * @experimental As of version 1.142.
1989
+ */
1990
+ export type ZoomState = {
1991
+ /**
1992
+ * Zooming is enabled if set to `true`
1993
+ */
1994
+ enabled: boolean;
1995
+ /**
1996
+ * Current zoom level of the geomap in percent (between 0 and 1)
1997
+ */
1998
+ currentZoomLevel: number;
1999
+ };
2000
+ }
2001
+
1657
2002
  declare module "sap/ui/mdc/LinkDelegate" {
1658
2003
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
1659
2004
 
@@ -2989,9 +3334,8 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
2989
3334
  /**
2990
3335
  * Returns filters that are used when updating the binding of the `ValueHelp`.
2991
3336
  * By default, this method returns a set of {@link sap.ui.model.Filter Filters} originating from an available
2992
- * {@link sap.ui.mdc.FilterBar FilterBar}, the delegate's own {@link module:sap/ui/mdc/ValueHelpDelegate.getFilterConditions getFilterConditions},
2993
- * and/or the {@link sap.ui.mdc.valuehelp.base.FilterableListContent#getFilterFields filterFields} configuration
2994
- * of the given {@link sap.ui.mdc.valuehelp.base.FilterableListContent FilterableListContent}.
3337
+ * {@link sap.ui.mdc.FilterBar FilterBar} or the delegate's own {@link module:sap/ui/mdc/ValueHelpDelegate.getFilterConditions getFilterConditions }
3338
+ * implementation.
2995
3339
  *
2996
3340
  * @since 1.121
2997
3341
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -3444,6 +3788,20 @@ declare module "sap/ui/mdc/library" {
3444
3788
  >;
3445
3789
  };
3446
3790
 
3791
+ /**
3792
+ * Interface for subclasses of {@link sap.m.OverflowToolbarLayoutData} that position actions within the
3793
+ * toolbar and configure the overflow menu. Classes implementing this interface must provide a `position`
3794
+ * property, which uses an enumeration to define the relative order of the actions. The sequence of the
3795
+ * enumeration values determines the placement of the actions. Enumeration values can be organized into
3796
+ * groups by using the same prefix ending with the `Actions` keyword, such as `ClipboardActionsCopy` and
3797
+ * `ClipboardActionsPaste`.
3798
+ *
3799
+ * @since 1.143
3800
+ */
3801
+ export interface IActionLayoutData {
3802
+ __implements__sap_ui_mdc_IActionLayoutData: boolean;
3803
+ }
3804
+
3447
3805
  /**
3448
3806
  * Interface for controls or entities which can serve as filters in the `sap.ui.mdc.Table` & `sap.ui.mdc.Chart`.
3449
3807
  *
@@ -7744,6 +8102,16 @@ declare module "sap/ui/mdc/enums/FilterBarValidationStatus" {
7744
8102
  export default FilterBarValidationStatus;
7745
8103
  }
7746
8104
 
8105
+ declare module "sap/ui/mdc/enums/GeomapControlPosition" {
8106
+ /**
8107
+ * Enumeration of the `position` property of the Geomap controls
8108
+ *
8109
+ * @experimental As of version 1.142.
8110
+ */
8111
+ enum GeomapControlPosition {}
8112
+ export default GeomapControlPosition;
8113
+ }
8114
+
7747
8115
  declare module "sap/ui/mdc/enums/LinkType" {
7748
8116
  /**
7749
8117
  * Defines the behavior of the {@link sap.ui.mdc.Link}.
@@ -8553,26 +8921,80 @@ declare module "sap/ui/mdc/enums/RequestShowContainerReason" {
8553
8921
  export default RequestShowContainerReason;
8554
8922
  }
8555
8923
 
8556
- declare module "sap/ui/mdc/enums/TableGrowingMode" {
8924
+ declare module "sap/ui/mdc/enums/TableActionPosition" {
8557
8925
  /**
8558
- * Growing mode of the table.
8926
+ * 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}.
8559
8928
  *
8560
- * @since 1.115
8929
+ * @since 1.143
8561
8930
  */
8562
- enum TableGrowingMode {
8931
+ enum TableActionPosition {
8563
8932
  /**
8564
- * A More button is shown with which the user can request to load more rows
8933
+ * Extension point for actions displayed after all table-relevant actions. These actions allow applications
8934
+ * to add additional functionality, such as Pagination, Refresh.
8565
8935
  */
8566
- Basic = "Basic",
8936
+ EndActions = "EndActions",
8567
8937
  /**
8568
- * A fixed number of rows is shown
8938
+ * 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.
8569
8940
  */
8570
- None = "None",
8941
+ ExportActions = "ExportActions",
8571
8942
  /**
8572
- * Either the user requests to load more rows by scrolling down, or the More button is displayed if no scrolling
8573
- * is required because the table is fully visible
8943
+ * Extension point for the modification actions at the start of the group. These actions modify the structure
8944
+ * or content of the table, such as cut, copy, paste, reorder.
8574
8945
  */
8575
- Scroll = "Scroll",
8946
+ ModificationActions = "ModificationActions",
8947
+ /**
8948
+ * Extension point for the modification actions at the end of the group. These actions modify the structure
8949
+ * or content of the table, such as cut, copy, paste, reorder.
8950
+ */
8951
+ ModificationActionsEnd = "ModificationActionsEnd",
8952
+ /**
8953
+ * Extension point for the personalization actions at the start of the group. These actions change the arrangement
8954
+ * or personalization of the table at the item level, such as Expand/Collapse All Rows, Show/Hide Details,
8955
+ * Table Settings.
8956
+ */
8957
+ PersonalizationActions = "PersonalizationActions",
8958
+ /**
8959
+ * 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
8961
+ * level, such as Expand/Collapse Node, Show/Hide Details, Table Settings.
8962
+ */
8963
+ PersonalizationActionsMiddle = "PersonalizationActionsMiddle",
8964
+ /**
8965
+ * Extension point for the share actions at the start of the group. These actions allow users to share table
8966
+ * content with another application or with the homepage as a tile, such as Send as Email, Save as Tile.
8967
+ */
8968
+ ShareActions = "ShareActions",
8969
+ /**
8970
+ * Extension point for the view actions at the start of the group. These actions change the representation
8971
+ * of the entire table, such as View Switch, Fullscreen.
8972
+ */
8973
+ ViewActions = "ViewActions",
8974
+ }
8975
+ export default TableActionPosition;
8976
+ }
8977
+
8978
+ declare module "sap/ui/mdc/enums/TableGrowingMode" {
8979
+ /**
8980
+ * Growing mode of the table.
8981
+ *
8982
+ * @since 1.115
8983
+ */
8984
+ enum TableGrowingMode {
8985
+ /**
8986
+ * A More button is shown with which the user can request to load more rows
8987
+ */
8988
+ Basic = "Basic",
8989
+ /**
8990
+ * A fixed number of rows is shown
8991
+ */
8992
+ None = "None",
8993
+ /**
8994
+ * Either the user requests to load more rows by scrolling down, or the More button is displayed if no scrolling
8995
+ * is required because the table is fully visible
8996
+ */
8997
+ Scroll = "Scroll",
8576
8998
  }
8577
8999
  export default TableGrowingMode;
8578
9000
  }
@@ -8608,6 +9030,26 @@ declare module "sap/ui/mdc/enums/TableP13nMode" {
8608
9030
  export default TableP13nMode;
8609
9031
  }
8610
9032
 
9033
+ declare module "sap/ui/mdc/enums/TablePopinDisplay" {
9034
+ /**
9035
+ * Pop-in display mode of the table.
9036
+ *
9037
+ * @since 1.143
9038
+ */
9039
+ enum TablePopinDisplay {
9040
+ /**
9041
+ * The header is displayed in the first line, and the cell content is displayed in the next line.
9042
+ */
9043
+ Block = "Block",
9044
+ /**
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.
9047
+ */
9048
+ Inline = "Inline",
9049
+ }
9050
+ export default TablePopinDisplay;
9051
+ }
9052
+
8611
9053
  declare module "sap/ui/mdc/enums/TableRowActionType" {
8612
9054
  /**
8613
9055
  * Type of a table row action.
@@ -8766,12 +9208,15 @@ declare module "sap/ui/mdc/Field" {
8766
9208
  *
8767
9209
  *
8768
9210
  * - In display mode, usually a {@link sap.m.Text Text} control is rendered.
8769
- * - If `multipleLines` is set, an {@link sap.m.ExpandableText ExpandableText} control is rendered.
8770
- * - If `fieldInfo` is set and it is configured to be triggerable, a {@link sap.m.Link Link} control is
8771
- * rendered. The `multipleLines` property is forwarded to the `wrapping` property of the {@link sap.m.Link Link }
9211
+ * - If {@link sap.ui.mdc.field.FieldBase#getMultipleLines multipleLines} is set, an {@link sap.m.ExpandableText ExpandableText }
9212
+ * control is rendered.
9213
+ * - If {@link sap.ui.mdc.field.FieldBase#getFieldInfo fieldInfo} is set and it is configured to be triggerable,
9214
+ * a {@link sap.m.Link Link} control is rendered. The {@link sap.ui.mdc.field.FieldBase#getMultipleLines multipleLines }
9215
+ * property is forwarded to the {@link sap.m.Link#setWrapping wrapping} property of the {@link sap.m.Link Link }
8772
9216
  * control.
8773
9217
  * - In edit mode, usually an {@link sap.m.Input Input} control is rendered.
8774
- * - If `multipleLines` is set, a {@link sap.m.TextArea TextArea} control is rendered.
9218
+ * - If {@link sap.ui.mdc.field.FieldBase#getMultipleLines multipleLines} is set, a {@link sap.m.TextArea TextArea }
9219
+ * control is rendered.
8775
9220
  * - If a date type is used, a {@link sap.m.DatePicker DatePicker} control is rendered.
8776
9221
  * - If a date/time type is used, a {@link sap.m.DateTimePicker DateTimePicker} control is rendered.
8777
9222
  * - If a time type is used, a {@link sap.m.TimePicker TimePicker} control is rendered.
@@ -8861,7 +9306,7 @@ declare module "sap/ui/mdc/Field" {
8861
9306
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
8862
9307
  * otherwise it will be bound to this `sap.ui.mdc.Field` itself.
8863
9308
  *
8864
- * This event is fired when the `value` property of the field is changed by user interaction.
9309
+ * This event is fired when the {@link #getValue value} property of the field is changed by user interaction.
8865
9310
  *
8866
9311
  * **Note** This event is only triggered if the used content control has a change event.
8867
9312
  *
@@ -8889,7 +9334,7 @@ declare module "sap/ui/mdc/Field" {
8889
9334
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
8890
9335
  * otherwise it will be bound to this `sap.ui.mdc.Field` itself.
8891
9336
  *
8892
- * This event is fired when the `value` property of the field is changed by user interaction.
9337
+ * This event is fired when the {@link #getValue value} property of the field is changed by user interaction.
8893
9338
  *
8894
9339
  * **Note** This event is only triggered if the used content control has a change event.
8895
9340
  *
@@ -8994,6 +9439,9 @@ declare module "sap/ui/mdc/Field" {
8994
9439
  * To display the key and the description in one field, the description must be set on the `additionalValue`
8995
9440
  * property.
8996
9441
  *
9442
+ * **Warning:** Don't use a `Formatter` in the binding of this property since this only allows one-way binding.
9443
+ * Therefore, no parsing of user input and no model updates are possible.
9444
+ *
8997
9445
  *
8998
9446
  * @returns Value of property `additionalValue`
8999
9447
  */
@@ -9058,6 +9506,9 @@ declare module "sap/ui/mdc/Field" {
9058
9506
  *
9059
9507
  * To display the key and the description in one field, the key must be set on the `value` property.
9060
9508
  *
9509
+ * **Warning:** Don't use a `Formatter` in the binding of this property since this only allows one-way binding.
9510
+ * Therefore, no parsing of user input and no model updates are possible.
9511
+ *
9061
9512
  *
9062
9513
  * @returns Value of property `value`
9063
9514
  */
@@ -9070,6 +9521,9 @@ declare module "sap/ui/mdc/Field" {
9070
9521
  * To display the key and the description in one field, the description must be set on the `additionalValue`
9071
9522
  * property.
9072
9523
  *
9524
+ * **Warning:** Don't use a `Formatter` in the binding of this property since this only allows one-way binding.
9525
+ * Therefore, no parsing of user input and no model updates are possible.
9526
+ *
9073
9527
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9074
9528
  *
9075
9529
  *
@@ -9174,6 +9628,9 @@ declare module "sap/ui/mdc/Field" {
9174
9628
  *
9175
9629
  * To display the key and the description in one field, the key must be set on the `value` property.
9176
9630
  *
9631
+ * **Warning:** Don't use a `Formatter` in the binding of this property since this only allows one-way binding.
9632
+ * Therefore, no parsing of user input and no model updates are possible.
9633
+ *
9177
9634
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
9178
9635
  *
9179
9636
  *
@@ -9219,6 +9676,9 @@ declare module "sap/ui/mdc/Field" {
9219
9676
  * The value of the field.
9220
9677
  *
9221
9678
  * To display the key and the description in one field, the key must be set on the `value` property.
9679
+ *
9680
+ * **Warning:** Don't use a `Formatter` in the binding of this property since this only allows one-way binding.
9681
+ * Therefore, no parsing of user input and no model updates are possible.
9222
9682
  */
9223
9683
  value?: any | PropertyBindingInfo | `{${string}}`;
9224
9684
 
@@ -9227,11 +9687,14 @@ declare module "sap/ui/mdc/Field" {
9227
9687
  *
9228
9688
  * To display the key and the description in one field, the description must be set on the `additionalValue`
9229
9689
  * property.
9690
+ *
9691
+ * **Warning:** Don't use a `Formatter` in the binding of this property since this only allows one-way binding.
9692
+ * Therefore, no parsing of user input and no model updates are possible.
9230
9693
  */
9231
9694
  additionalValue?: any | PropertyBindingInfo | `{${string}}`;
9232
9695
 
9233
9696
  /**
9234
- * This event is fired when the `value` property of the field is changed by user interaction.
9697
+ * This event is fired when the {@link #getValue value} property of the field is changed by user interaction.
9235
9698
  *
9236
9699
  * **Note** This event is only triggered if the used content control has a change event.
9237
9700
  */
@@ -9245,7 +9708,8 @@ declare module "sap/ui/mdc/Field" {
9245
9708
  /**
9246
9709
  * The new value of the `Field`.
9247
9710
  *
9248
- * If a `ValueHelp` is assigned to the `Field`, the `value` is used as key for the `ValueHelp` items.
9711
+ * If a {@link sap.ui.mdc.field.FieldBase#getValueHelp ValueHelp} is assigned to the `Field`, the `value`
9712
+ * is used as key for the {@link sap.ui.mdc.field.FieldBase#getValueHelp ValueHelp} items.
9249
9713
  */
9250
9714
  value?: string;
9251
9715
 
@@ -9962,7 +10426,10 @@ declare module "sap/ui/mdc/field/FieldBase" {
9962
10426
  CSSSize,
9963
10427
  } from "sap/ui/core/library";
9964
10428
 
9965
- import { IOverflowToolbarContent } from "sap/m/library";
10429
+ import {
10430
+ IOverflowToolbarContent,
10431
+ IToolbarInteractiveControl,
10432
+ } from "sap/m/library";
9966
10433
 
9967
10434
  import Control1 from "sap/ui/core/Control";
9968
10435
 
@@ -10000,12 +10467,14 @@ declare module "sap/ui/mdc/field/FieldBase" {
10000
10467
  IFormContent,
10001
10468
  ISemanticFormContent,
10002
10469
  IOverflowToolbarContent,
10003
- ILabelable
10470
+ ILabelable,
10471
+ IToolbarInteractiveControl
10004
10472
  {
10005
10473
  __implements__sap_ui_core_IFormContent: boolean;
10006
10474
  __implements__sap_ui_core_ISemanticFormContent: boolean;
10007
10475
  __implements__sap_m_IOverflowToolbarContent: boolean;
10008
10476
  __implements__sap_ui_core_ILabelable: boolean;
10477
+ __implements__sap_m_IToolbarInteractiveControl: boolean;
10009
10478
  /**
10010
10479
  * Constructor for a new `FieldBase`.
10011
10480
  *
@@ -10088,7 +10557,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
10088
10557
  *
10089
10558
  * This event is fired when the value of the field is changed, for example, each time a key is pressed.
10090
10559
  *
10091
- * **Note** This event is only triggered if the used content control has a `liveChange` event.
10560
+ * **Note:** This event is only triggered if the used content control has a `liveChange` event.
10092
10561
  *
10093
10562
  *
10094
10563
  * @returns Reference to `this` in order to allow method chaining
@@ -10116,7 +10585,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
10116
10585
  *
10117
10586
  * This event is fired when the value of the field is changed, for example, each time a key is pressed.
10118
10587
  *
10119
- * **Note** This event is only triggered if the used content control has a `liveChange` event.
10588
+ * **Note:** This event is only triggered if the used content control has a `liveChange` event.
10120
10589
  *
10121
10590
  *
10122
10591
  * @returns Reference to `this` in order to allow method chaining
@@ -10187,7 +10656,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
10187
10656
  * This event is fired when the user presses Enter. It allows the application to implement some
10188
10657
  * submit logic.
10189
10658
  *
10190
- * **Note** This event is only triggered if the field is editable.
10659
+ * **Note:** This event is only triggered if the field is editable.
10191
10660
  *
10192
10661
  * @since 1.82.0
10193
10662
  *
@@ -10217,7 +10686,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
10217
10686
  * This event is fired when the user presses Enter. It allows the application to implement some
10218
10687
  * submit logic.
10219
10688
  *
10220
- * **Note** This event is only triggered if the field is editable.
10689
+ * **Note:** This event is only triggered if the field is editable.
10221
10690
  *
10222
10691
  * @since 1.82.0
10223
10692
  *
@@ -10270,12 +10739,13 @@ declare module "sap/ui/mdc/field/FieldBase" {
10270
10739
  vValue: any
10271
10740
  ): boolean;
10272
10741
  /**
10273
- * Assigns a `Label` control to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
10742
+ * Assigns a {@link sap.m.Label Label} control to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
10274
10743
  * or {@link sap.ui.mdc.FilterField FilterField} controls.
10275
10744
  *
10276
10745
  * The text of the label is taken from the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
10277
- * or {@link sap.ui.mdc.FilterField FilterField} controls. The `labelFor` association is set to the {@link sap.ui.mdc.Field Field},
10278
- * {@link sap.ui.mdc.MultiValueField MultiValueField}, or {@link sap.ui.mdc.FilterField FilterField} control.
10746
+ * or {@link sap.ui.mdc.FilterField FilterField} controls. The {@link sap.m.Label#setLabelFor labelFor }
10747
+ * association is set to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
10748
+ * or {@link sap.ui.mdc.FilterField FilterField} control.
10279
10749
  *
10280
10750
  * @since 1.62.0
10281
10751
  *
@@ -10469,10 +10939,11 @@ declare module "sap/ui/mdc/field/FieldBase" {
10469
10939
  /**
10470
10940
  * Returns the configuration for the additional data type.
10471
10941
  *
10472
- * For a {@link sap.ui.mdc.Field Field}, the data type is determined from the binding of the `additionalValue`.
10942
+ * For a {@link sap.ui.mdc.Field Field}, the data type is determined from the binding of the {@link sap.ui.mdc.Field#getAdditionalValue additionalValue}.
10473
10943
  * For a {@link sap.ui.mdc.MultiValueField MultiValueField}, the data type is determined from the binding
10474
- * of the `description` of an item. For a {@link sap.ui.mdc.FilterField FilterField}, the data type is provided
10475
- * via the `additionalDataType` property.
10944
+ * of the {@link sap.ui.mdc.field.MultiValueFieldItem#getDescription description} of an item. For a {@link sap.ui.mdc.FilterField FilterField},
10945
+ * the data type is provided via the {@link sap.ui.mdc.FilterField#getAdditionalDataType additionalDataType }
10946
+ * property.
10476
10947
  *
10477
10948
  * @since 1.118.0
10478
10949
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -10493,7 +10964,8 @@ declare module "sap/ui/mdc/field/FieldBase" {
10493
10964
  */
10494
10965
  getBaseType(): BaseType;
10495
10966
  /**
10496
- * Creates parameter for a `ParseError`, `ValidationError` or `ValidationSuccess` event based on the corresponding
10967
+ * Creates parameter for a {@link sap.ui.base.ManagedObject#event:ParseError ParseError}, {@link sap.ui.base.ManagedObject#event:ValidationError ValidationError }
10968
+ * or {@link sap.ui.base.ManagedObject#event:ValidationSuccess ValidationSuccess} event based on the corresponding
10497
10969
  * event fired on the inner control.
10498
10970
  *
10499
10971
  * The basic implementation just adds the element and error information. The `property` and `type` information
@@ -10519,9 +10991,9 @@ declare module "sap/ui/mdc/field/FieldBase" {
10519
10991
  * These should be bound to a {@link sap.ui.mdc.FilterBar FilterBar} using the corresponding `propertyPath`.
10520
10992
  *
10521
10993
  * **Note:** For {@link sap.ui.mdc.FilterField FilterField} controls, the `conditions` property is used
10522
- * to bind {@link sap.ui.mdc.FilterField FilterField} to its parent {@link @link sap.ui.mdc.FilterBar FilterBar}.
10523
- * If this property is not explicitly configured, the {@link @link sap.ui.mdc.FilterBar FilterBar} sets
10524
- * a default binding. For example, for a {@link sap.ui.mdc.FilterField FilterField} control inside a {@link sap.ui.mdc.FilterBar FilterBar }
10994
+ * to bind {@link sap.ui.mdc.FilterField FilterField} to its parent {@link sap.ui.mdc.FilterBar FilterBar}.
10995
+ * If this property is not explicitly configured, the {@link sap.ui.mdc.FilterBar FilterBar} sets a default
10996
+ * binding. For example, for a {@link sap.ui.mdc.FilterField FilterField} control inside a {@link sap.ui.mdc.FilterBar FilterBar }
10525
10997
  * control, the binding looks like this:
10526
10998
  * `conditions="{$filters>/conditions/propertyPath}"` with the following data:
10527
10999
  * - `$filters` as the name of the condition model
@@ -10541,9 +11013,10 @@ declare module "sap/ui/mdc/field/FieldBase" {
10541
11013
  *
10542
11014
  * Optional content that can be rendered.
10543
11015
  *
10544
- * Per default, depending on `editMode`, `multipleLines` and the used data type, a content control is rendered.
10545
- * For simple string types, a {@link sap.m.Text Text} control is rendered in display mode and a {@link sap.m.Input Input }
10546
- * control in edit mode. If a control is assigned in the `content` aggregation, this will be rendered instead.
11016
+ * Per default, depending on {@link #getEditMode editMode}, {@link #getMultipleLines multipleLines} and
11017
+ * the used data type, a content control is rendered. For simple string types, a {@link sap.m.Text Text }
11018
+ * control is rendered in display mode and a {@link sap.m.Input Input} control in edit mode. If a control
11019
+ * is assigned in the `content` aggregation, this will be rendered instead.
10547
11020
  *
10548
11021
  * **Note:** Bind the value-holding property of the control to `'$field>/conditions'` using {@link sap.ui.mdc.field.ConditionsType ConditionsType }
10549
11022
  * as type.
@@ -10560,11 +11033,11 @@ declare module "sap/ui/mdc/field/FieldBase" {
10560
11033
  /**
10561
11034
  * Gets content of aggregation {@link #getContentDisplay contentDisplay}.
10562
11035
  *
10563
- * Optional content to be rendered if the `editMode` property is set to `Display`.
11036
+ * Optional content to be rendered if the {@link #getEditMode editMode} property is set to `Display`.
10564
11037
  *
10565
- * Per default, depending on `multipleLines` and the used data type, a content control is rendered in display
10566
- * mode. For simple string types, a {@link sap.m.Text Text} control is rendered in display mode. If a control
10567
- * is assigned in the `contentDisplay` aggregation, this will be rendered instead.
11038
+ * Per default, depending on {@link #getMultipleLines multipleLines} and the used data type, a content control
11039
+ * is rendered in display mode. For simple string types, a {@link sap.m.Text Text} control is rendered in
11040
+ * display mode. If a control is assigned in the `contentDisplay` aggregation, this will be rendered instead.
10568
11041
  *
10569
11042
  * **Note:** If a control is assigned to the `content` aggregation, this one is ignored.
10570
11043
  *
@@ -10585,11 +11058,11 @@ declare module "sap/ui/mdc/field/FieldBase" {
10585
11058
  /**
10586
11059
  * Gets content of aggregation {@link #getContentEdit contentEdit}.
10587
11060
  *
10588
- * Optional content to be rendered if the `editMode` property is not set to `Display`.
11061
+ * Optional content to be rendered if the {@link #getEditMode editMode} property is not set to `Display`.
10589
11062
  *
10590
- * Per default, depending on `multipleLines` and the used data type, a content control is rendered in edit
10591
- * mode. For simple string types, an {@link sap.m.Input Input} control is rendered in edit mode. If a control
10592
- * is assigned in the `contentEdit` aggregation, this will be rendered instead.
11063
+ * Per default, depending on {@link #getMultipleLines multipleLines} and the used data type, a content control
11064
+ * is rendered in edit mode. For simple string types, an {@link sap.m.Input Input} control is rendered in
11065
+ * edit mode. If a control is assigned in the `contentEdit` aggregation, this will be rendered instead.
10593
11066
  *
10594
11067
  * **Note:** If a control is assigned to the `content` aggregation, this one is ignored.
10595
11068
  *
@@ -10632,7 +11105,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
10632
11105
  /**
10633
11106
  * Gets current value of property {@link #getDataTypeConstraints dataTypeConstraints}.
10634
11107
  *
10635
- * The constraints of the type specified in `dataType`.
11108
+ * The constraints of the type specified in {@link #setDataType dataType}.
10636
11109
  *
10637
11110
  *
10638
11111
  * @returns Value of property `dataTypeConstraints`
@@ -10641,7 +11114,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
10641
11114
  /**
10642
11115
  * Gets current value of property {@link #getDataTypeFormatOptions dataTypeFormatOptions}.
10643
11116
  *
10644
- * The format options of the type specified in `dataType`.
11117
+ * The format options of the type specified in {@link #setDataType dataType}.
10645
11118
  *
10646
11119
  *
10647
11120
  * @returns Value of property `dataTypeFormatOptions`
@@ -10724,7 +11197,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
10724
11197
  * @since 1.126.0
10725
11198
  * @ui5-protected Do not call from applications (only from related classes in the framework)
10726
11199
  *
10727
- * @returns returns a promise waiting for ongoing formatting
11200
+ * @returns returns a `Promise` waiting for ongoing formatting
10728
11201
  */
10729
11202
  getFormattingPromise(): undefined | Promise<any>;
10730
11203
  /**
@@ -10749,7 +11222,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
10749
11222
  *
10750
11223
  * The default value of -1 indicates that an unlimited number of conditions can be defined.
10751
11224
  *
10752
- * **Note** If the data type used doesn't support multiple conditions, an error is thrown.
11225
+ * **Note:** If the data type used doesn't support multiple conditions, an error is thrown.
10753
11226
  *
10754
11227
  * Default value is `-1`.
10755
11228
  *
@@ -10766,7 +11239,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
10766
11239
  *
10767
11240
  * This property is only used for single-value fields.
10768
11241
  *
10769
- * **Note** If the data type used doesn't support multiple lines, an error is thrown.
11242
+ * **Note:** If the data type used doesn't support multiple lines, an error is thrown.
10770
11243
  *
10771
11244
  * Default value is `false`.
10772
11245
  *
@@ -10780,7 +11253,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
10780
11253
  *
10781
11254
  * @ui5-protected Do not call from applications (only from related classes in the framework)
10782
11255
  *
10783
- * @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
11256
+ * @returns Configuration information for the {@link sap.m.IOverflowToolbarContent} interface.
10784
11257
  */
10785
11258
  getOverflowToolbarConfig(): object;
10786
11259
  /**
@@ -10826,10 +11299,10 @@ declare module "sap/ui/mdc/field/FieldBase" {
10826
11299
  *
10827
11300
  * If set, an empty `Field` renders an empty indicator in display mode.
10828
11301
  *
10829
- * This property only takes effect if `editMode` is set to `Display`.
11302
+ * This property only takes effect if {@link #setEditMode editMode} is set to `Display`.
10830
11303
  *
10831
- * **Note** Empty means the `Field` holds no value. If an empty string is a valid value, the `Field` might
10832
- * show nothing, depending on the `display` settings and assigned description or `ValueHelp`.
11304
+ * **Note:** Empty means the `Field` holds no value. If an empty string is a valid value, the `Field` might
11305
+ * show nothing, depending on the {@link #setDisplay display} settings and assigned description or {@link #setValueHelp ValueHelp}.
10833
11306
  *
10834
11307
  * Default value is `false`.
10835
11308
  *
@@ -10895,8 +11368,8 @@ declare module "sap/ui/mdc/field/FieldBase" {
10895
11368
  * Visualizes the validation state of the control, for example, `Error`, `Warning` or `Success`.
10896
11369
  *
10897
11370
  * **Note:** The visualization of the `ValueState` property is handled by the inner rendered control. If
10898
- * a control is set (using `content`, `contentEdit`, or `contentDisplay`), this control needs to support
10899
- * the `valueState` behavior, otherwise `valueState` is not visualized.
11371
+ * a control is set (using {@link #setContent content}, {@link #setContentEdit contentEdit}, or {@link #setContentDisplay contentDisplay}),
11372
+ * this control needs to support the `valueState` behavior, otherwise `valueState` is not visualized.
10900
11373
  *
10901
11374
  * Default value is `None`.
10902
11375
  *
@@ -10905,7 +11378,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
10905
11378
  */
10906
11379
  getValueState(): ValueState;
10907
11380
  /**
10908
- * Gets the ValueState for content controls
11381
+ * Gets the `ValueState` for content controls
10909
11382
  *
10910
11383
  * @since 1.138.0
10911
11384
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -10938,7 +11411,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
10938
11411
  */
10939
11412
  getWidth(): CSSSize;
10940
11413
  /**
10941
- * Handler of the `ModelContextChange` event.
11414
+ * Handler of the {@link sap.ui.base.ManagedObject#event:modelContextChange modelContextChange} event.
10942
11415
  *
10943
11416
  * @ui5-protected Do not call from applications (only from related classes in the framework)
10944
11417
  */
@@ -10960,12 +11433,12 @@ declare module "sap/ui/mdc/field/FieldBase" {
10960
11433
  * Returns the user interaction state of the control.
10961
11434
  *
10962
11435
  * If the user starts typing or navigates via arrow keys in a value help, the shown value might be updated.
10963
- * But as long as the user has not left the field or pressed the Enter key, the current user input will
10964
- * not be validated or updated or an event fired.
11436
+ * But as long as the user has not left the field or pressed the Enter key, the current user
11437
+ * input will not be validated or updated or an event fired.
10965
11438
  *
10966
11439
  * As long as the user is interacting with the field, this function returns `true`. If the user interaction
10967
- * has been completed because the user has left the field, pressed the Enter key, or chosen a value from
10968
- * the value help, the function returns `false`.
11440
+ * has been completed because the user has left the field, pressed the Enter key, or chosen a
11441
+ * value from the value help, the function returns `false`.
10969
11442
  *
10970
11443
  * @since 1.117.0
10971
11444
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -11001,8 +11474,8 @@ declare module "sap/ui/mdc/field/FieldBase" {
11001
11474
  isFieldDestroyed(): boolean;
11002
11475
  /**
11003
11476
  * Returns whether the given property value is initial and has not been explicitly set or no binding exist.
11004
- * Even after setting the default value or setting null/undefined (which also causes the default value to
11005
- * be set), the property is no longer initial. A property can be reset to initial state by calling `resetProperty(sPropertyName)`.
11477
+ * Even after setting the default value or setting `null`/`undefined` (which also causes the default value
11478
+ * to be set), the property is no longer initial. A property can be reset to initial state by calling `{@link sap.ui.base.ManagedObject#resetProperty resetProperty}(sPropertyName)`.
11006
11479
  *
11007
11480
  * @ui5-protected Do not call from applications (only from related classes in the framework)
11008
11481
  *
@@ -11076,12 +11549,13 @@ declare module "sap/ui/mdc/field/FieldBase" {
11076
11549
  */
11077
11550
  resetInvalidInput(
11078
11551
  /**
11079
- * If set to `true` the `ValueState` and `ValueStateText` is removed
11552
+ * If set to `true` the {@link #getValueState ValueState} and {@link #getValueStateText ValueStateText }
11553
+ * is removed
11080
11554
  */
11081
11555
  bRemoveUIMessage: boolean
11082
11556
  ): void;
11083
11557
  /**
11084
- * Resets the ValueState for content controls
11558
+ * Resets the `ValueState` for content controls
11085
11559
  *
11086
11560
  * @since 1.138.0
11087
11561
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -11095,9 +11569,9 @@ declare module "sap/ui/mdc/field/FieldBase" {
11095
11569
  * These should be bound to a {@link sap.ui.mdc.FilterBar FilterBar} using the corresponding `propertyPath`.
11096
11570
  *
11097
11571
  * **Note:** For {@link sap.ui.mdc.FilterField FilterField} controls, the `conditions` property is used
11098
- * to bind {@link sap.ui.mdc.FilterField FilterField} to its parent {@link @link sap.ui.mdc.FilterBar FilterBar}.
11099
- * If this property is not explicitly configured, the {@link @link sap.ui.mdc.FilterBar FilterBar} sets
11100
- * a default binding. For example, for a {@link sap.ui.mdc.FilterField FilterField} control inside a {@link sap.ui.mdc.FilterBar FilterBar }
11572
+ * to bind {@link sap.ui.mdc.FilterField FilterField} to its parent {@link sap.ui.mdc.FilterBar FilterBar}.
11573
+ * If this property is not explicitly configured, the {@link sap.ui.mdc.FilterBar FilterBar} sets a default
11574
+ * binding. For example, for a {@link sap.ui.mdc.FilterField FilterField} control inside a {@link sap.ui.mdc.FilterBar FilterBar }
11101
11575
  * control, the binding looks like this:
11102
11576
  * `conditions="{$filters>/conditions/propertyPath}"` with the following data:
11103
11577
  * - `$filters` as the name of the condition model
@@ -11181,7 +11655,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
11181
11655
  /**
11182
11656
  * Sets a new value for property {@link #getDataTypeConstraints dataTypeConstraints}.
11183
11657
  *
11184
- * The constraints of the type specified in `dataType`.
11658
+ * The constraints of the type specified in {@link #setDataType dataType}.
11185
11659
  *
11186
11660
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
11187
11661
  *
@@ -11197,7 +11671,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
11197
11671
  /**
11198
11672
  * Sets a new value for property {@link #getDataTypeFormatOptions dataTypeFormatOptions}.
11199
11673
  *
11200
- * The format options of the type specified in `dataType`.
11674
+ * The format options of the type specified in {@link #setDataType dataType}.
11201
11675
  *
11202
11676
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
11203
11677
  *
@@ -11332,7 +11806,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
11332
11806
  *
11333
11807
  * The default value of -1 indicates that an unlimited number of conditions can be defined.
11334
11808
  *
11335
- * **Note** If the data type used doesn't support multiple conditions, an error is thrown.
11809
+ * **Note:** If the data type used doesn't support multiple conditions, an error is thrown.
11336
11810
  *
11337
11811
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
11338
11812
  *
@@ -11356,7 +11830,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
11356
11830
  *
11357
11831
  * This property is only used for single-value fields.
11358
11832
  *
11359
- * **Note** If the data type used doesn't support multiple lines, an error is thrown.
11833
+ * **Note:** If the data type used doesn't support multiple lines, an error is thrown.
11360
11834
  *
11361
11835
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
11362
11836
  *
@@ -11415,10 +11889,10 @@ declare module "sap/ui/mdc/field/FieldBase" {
11415
11889
  *
11416
11890
  * If set, an empty `Field` renders an empty indicator in display mode.
11417
11891
  *
11418
- * This property only takes effect if `editMode` is set to `Display`.
11892
+ * This property only takes effect if {@link #setEditMode editMode} is set to `Display`.
11419
11893
  *
11420
- * **Note** Empty means the `Field` holds no value. If an empty string is a valid value, the `Field` might
11421
- * show nothing, depending on the `display` settings and assigned description or `ValueHelp`.
11894
+ * **Note:** Empty means the `Field` holds no value. If an empty string is a valid value, the `Field` might
11895
+ * show nothing, depending on the {@link #setDisplay display} settings and assigned description or {@link #setValueHelp ValueHelp}.
11422
11896
  *
11423
11897
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
11424
11898
  *
@@ -11493,8 +11967,8 @@ declare module "sap/ui/mdc/field/FieldBase" {
11493
11967
  * Visualizes the validation state of the control, for example, `Error`, `Warning` or `Success`.
11494
11968
  *
11495
11969
  * **Note:** The visualization of the `ValueState` property is handled by the inner rendered control. If
11496
- * a control is set (using `content`, `contentEdit`, or `contentDisplay`), this control needs to support
11497
- * the `valueState` behavior, otherwise `valueState` is not visualized.
11970
+ * a control is set (using {@link #setContent content}, {@link #setContentEdit contentEdit}, or {@link #setContentDisplay contentDisplay}),
11971
+ * this control needs to support the `valueState` behavior, otherwise `valueState` is not visualized.
11498
11972
  *
11499
11973
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
11500
11974
  *
@@ -11510,7 +11984,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
11510
11984
  sValueState?: ValueState | keyof typeof ValueState
11511
11985
  ): this;
11512
11986
  /**
11513
- * Sets the ValueState for content controls
11987
+ * Sets the `ValueState` for content controls
11514
11988
  *
11515
11989
  * @since 1.138.0
11516
11990
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -11562,6 +12036,25 @@ declare module "sap/ui/mdc/field/FieldBase" {
11562
12036
  */
11563
12037
  sWidth?: CSSSize
11564
12038
  ): this;
12039
+ /**
12040
+ * Checks if a condition update needs to fire a {@link sap.ui.base.ManagedObject#event:ValidationSuccess ValidationSuccess }
12041
+ * event.
12042
+ *
12043
+ * This is required in {@link sap.ui.mdc.field.Field Field} if the condition update doesn't lead to an update
12044
+ * of the {@link sap.ui.mdc.field.Field#setValue value} property. (If only description or payload is changed.)
12045
+ *
12046
+ * @since 1.142.0
12047
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
12048
+ *
12049
+ * @returns `true` if the {@link sap.ui.base.ManagedObject#event:ValidationSuccess ValidationSuccess} event
12050
+ * is fired
12051
+ */
12052
+ shouldFireValidationSuccessOnConditionUpdate(
12053
+ /**
12054
+ * Current conditions
12055
+ */
12056
+ aConditions: ConditionObject[]
12057
+ ): boolean;
11565
12058
  /**
11566
12059
  * Triggers a check if all relevant properties are set to create the internal content control.
11567
12060
  *
@@ -11601,12 +12094,12 @@ declare module "sap/ui/mdc/field/FieldBase" {
11601
12094
  dataType?: string | PropertyBindingInfo;
11602
12095
 
11603
12096
  /**
11604
- * The constraints of the type specified in `dataType`.
12097
+ * The constraints of the type specified in {@link #setDataType dataType}.
11605
12098
  */
11606
12099
  dataTypeConstraints?: object | PropertyBindingInfo | `{${string}}`;
11607
12100
 
11608
12101
  /**
11609
- * The format options of the type specified in `dataType`.
12102
+ * The format options of the type specified in {@link #setDataType dataType}.
11610
12103
  */
11611
12104
  dataTypeFormatOptions?: object | PropertyBindingInfo | `{${string}}`;
11612
12105
 
@@ -11663,8 +12156,8 @@ declare module "sap/ui/mdc/field/FieldBase" {
11663
12156
  * Visualizes the validation state of the control, for example, `Error`, `Warning` or `Success`.
11664
12157
  *
11665
12158
  * **Note:** The visualization of the `ValueState` property is handled by the inner rendered control. If
11666
- * a control is set (using `content`, `contentEdit`, or `contentDisplay`), this control needs to support
11667
- * the `valueState` behavior, otherwise `valueState` is not visualized.
12159
+ * a control is set (using {@link #setContent content}, {@link #setContentEdit contentEdit}, or {@link #setContentDisplay contentDisplay}),
12160
+ * this control needs to support the `valueState` behavior, otherwise `valueState` is not visualized.
11668
12161
  */
11669
12162
  valueState?:
11670
12163
  | (ValueState | keyof typeof ValueState)
@@ -11689,7 +12182,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
11689
12182
  *
11690
12183
  * This property is only used for single-value fields.
11691
12184
  *
11692
- * **Note** If the data type used doesn't support multiple lines, an error is thrown.
12185
+ * **Note:** If the data type used doesn't support multiple lines, an error is thrown.
11693
12186
  */
11694
12187
  multipleLines?: boolean | PropertyBindingInfo | `{${string}}`;
11695
12188
 
@@ -11698,7 +12191,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
11698
12191
  *
11699
12192
  * The default value of -1 indicates that an unlimited number of conditions can be defined.
11700
12193
  *
11701
- * **Note** If the data type used doesn't support multiple conditions, an error is thrown.
12194
+ * **Note:** If the data type used doesn't support multiple conditions, an error is thrown.
11702
12195
  */
11703
12196
  maxConditions?: int | PropertyBindingInfo | `{${string}}`;
11704
12197
 
@@ -11708,9 +12201,9 @@ declare module "sap/ui/mdc/field/FieldBase" {
11708
12201
  * These should be bound to a {@link sap.ui.mdc.FilterBar FilterBar} using the corresponding `propertyPath`.
11709
12202
  *
11710
12203
  * **Note:** For {@link sap.ui.mdc.FilterField FilterField} controls, the `conditions` property is used
11711
- * to bind {@link sap.ui.mdc.FilterField FilterField} to its parent {@link @link sap.ui.mdc.FilterBar FilterBar}.
11712
- * If this property is not explicitly configured, the {@link @link sap.ui.mdc.FilterBar FilterBar} sets
11713
- * a default binding. For example, for a {@link sap.ui.mdc.FilterField FilterField} control inside a {@link sap.ui.mdc.FilterBar FilterBar }
12204
+ * to bind {@link sap.ui.mdc.FilterField FilterField} to its parent {@link sap.ui.mdc.FilterBar FilterBar}.
12205
+ * If this property is not explicitly configured, the {@link sap.ui.mdc.FilterBar FilterBar} sets a default
12206
+ * binding. For example, for a {@link sap.ui.mdc.FilterField FilterField} control inside a {@link sap.ui.mdc.FilterBar FilterBar }
11714
12207
  * control, the binding looks like this:
11715
12208
  * `conditions="{$filters>/conditions/propertyPath}"` with the following data:
11716
12209
  * - `$filters` as the name of the condition model
@@ -11752,10 +12245,10 @@ declare module "sap/ui/mdc/field/FieldBase" {
11752
12245
  /**
11753
12246
  * If set, an empty `Field` renders an empty indicator in display mode.
11754
12247
  *
11755
- * This property only takes effect if `editMode` is set to `Display`.
12248
+ * This property only takes effect if {@link #setEditMode editMode} is set to `Display`.
11756
12249
  *
11757
- * **Note** Empty means the `Field` holds no value. If an empty string is a valid value, the `Field` might
11758
- * show nothing, depending on the `display` settings and assigned description or `ValueHelp`.
12250
+ * **Note:** Empty means the `Field` holds no value. If an empty string is a valid value, the `Field` might
12251
+ * show nothing, depending on the {@link #setDisplay display} settings and assigned description or {@link #setValueHelp ValueHelp}.
11759
12252
  *
11760
12253
  * @since 1.85.0
11761
12254
  */
@@ -11764,9 +12257,10 @@ declare module "sap/ui/mdc/field/FieldBase" {
11764
12257
  /**
11765
12258
  * Optional content that can be rendered.
11766
12259
  *
11767
- * Per default, depending on `editMode`, `multipleLines` and the used data type, a content control is rendered.
11768
- * For simple string types, a {@link sap.m.Text Text} control is rendered in display mode and a {@link sap.m.Input Input }
11769
- * control in edit mode. If a control is assigned in the `content` aggregation, this will be rendered instead.
12260
+ * Per default, depending on {@link #getEditMode editMode}, {@link #getMultipleLines multipleLines} and
12261
+ * the used data type, a content control is rendered. For simple string types, a {@link sap.m.Text Text }
12262
+ * control is rendered in display mode and a {@link sap.m.Input Input} control in edit mode. If a control
12263
+ * is assigned in the `content` aggregation, this will be rendered instead.
11770
12264
  *
11771
12265
  * **Note:** Bind the value-holding property of the control to `'$field>/conditions'` using {@link sap.ui.mdc.field.ConditionsType ConditionsType }
11772
12266
  * as type.
@@ -11782,11 +12276,11 @@ declare module "sap/ui/mdc/field/FieldBase" {
11782
12276
  content?: Control1;
11783
12277
 
11784
12278
  /**
11785
- * Optional content to be rendered if the `editMode` property is not set to `Display`.
12279
+ * Optional content to be rendered if the {@link #getEditMode editMode} property is not set to `Display`.
11786
12280
  *
11787
- * Per default, depending on `multipleLines` and the used data type, a content control is rendered in edit
11788
- * mode. For simple string types, an {@link sap.m.Input Input} control is rendered in edit mode. If a control
11789
- * is assigned in the `contentEdit` aggregation, this will be rendered instead.
12281
+ * Per default, depending on {@link #getMultipleLines multipleLines} and the used data type, a content control
12282
+ * is rendered in edit mode. For simple string types, an {@link sap.m.Input Input} control is rendered in
12283
+ * edit mode. If a control is assigned in the `contentEdit` aggregation, this will be rendered instead.
11790
12284
  *
11791
12285
  * **Note:** If a control is assigned to the `content` aggregation, this one is ignored.
11792
12286
  *
@@ -11806,11 +12300,11 @@ declare module "sap/ui/mdc/field/FieldBase" {
11806
12300
  contentEdit?: Control1;
11807
12301
 
11808
12302
  /**
11809
- * Optional content to be rendered if the `editMode` property is set to `Display`.
12303
+ * Optional content to be rendered if the {@link #getEditMode editMode} property is set to `Display`.
11810
12304
  *
11811
- * Per default, depending on `multipleLines` and the used data type, a content control is rendered in display
11812
- * mode. For simple string types, a {@link sap.m.Text Text} control is rendered in display mode. If a control
11813
- * is assigned in the `contentDisplay` aggregation, this will be rendered instead.
12305
+ * Per default, depending on {@link #getMultipleLines multipleLines} and the used data type, a content control
12306
+ * is rendered in display mode. For simple string types, a {@link sap.m.Text Text} control is rendered in
12307
+ * display mode. If a control is assigned in the `contentDisplay` aggregation, this will be rendered instead.
11814
12308
  *
11815
12309
  * **Note:** If a control is assigned to the `content` aggregation, this one is ignored.
11816
12310
  *
@@ -11844,7 +12338,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
11844
12338
  *
11845
12339
  * **Note:** If the field is inside of a table, do not set the `ValueHelp` instance as `dependent` to the
11846
12340
  * field. If you do, every field instance in every table row gets a clone of it. Put the `ValueHelp` instance
11847
- * e.g. as dependent on the table or page. The `FieldHelp` instance must be somewhere in the control tree,
12341
+ * e.g. as dependent on the table or page. The `ValueHelp` instance must be somewhere in the control tree,
11848
12342
  * otherwise there might be rendering or update issues.
11849
12343
  *
11850
12344
  * **Note:** For `Boolean` fields, no `ValueHelp` should be added, but a default `ValueHelp` used instead.
@@ -11856,12 +12350,14 @@ declare module "sap/ui/mdc/field/FieldBase" {
11856
12350
  /**
11857
12351
  * Optional `ValueHelp`.
11858
12352
  *
11859
- * This is an association that allows the usage of one `ValueHelp` instance for multiple fields.
12353
+ * This is an association that allows the usage of one {@link sap.ui.mdc.ValueHelp ValueHelp} instance for
12354
+ * multiple fields.
11860
12355
  *
11861
- * **Note:** If the field is inside of a table, do not set the `ValueHelp` instance as `dependent` to the
11862
- * field. If you do, every field instance in every table row gets a clone of it. Put the `ValueHelp` instance
11863
- * e.g. as dependent on the table or page. The `ValueHelp` instance must be somewhere in the control tree,
11864
- * otherwise there might be rendering or update issues.
12356
+ * **Note:** If the field is inside of a table, do not set the {@link sap.ui.mdc.ValueHelp ValueHelp} instance
12357
+ * as {@link sap.ui.core.Element#addDependent dependent} to the field. If you do, every field instance in
12358
+ * every table row gets a clone of it. Put the {@link sap.ui.mdc.ValueHelp ValueHelp} instance e.g. as {@link sap.ui.core.Element#addDependent dependent }
12359
+ * on the table or page. The {@link sap.ui.mdc.ValueHelp ValueHelp} instance must be somewhere in the control
12360
+ * tree, otherwise there might be rendering or update issues.
11865
12361
  *
11866
12362
  * **Note:** For `Boolean` fields, no `ValueHelp` should be added, but a default `ValueHelp` used instead.
11867
12363
  */
@@ -11875,7 +12371,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
11875
12371
  /**
11876
12372
  * This event is fired when the value of the field is changed, for example, each time a key is pressed.
11877
12373
  *
11878
- * **Note** This event is only triggered if the used content control has a `liveChange` event.
12374
+ * **Note:** This event is only triggered if the used content control has a `liveChange` event.
11879
12375
  */
11880
12376
  liveChange?: (oEvent: FieldBase$LiveChangeEvent) => void;
11881
12377
 
@@ -11888,7 +12384,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
11888
12384
  * This event is fired when the user presses Enter. It allows the application to implement some
11889
12385
  * submit logic.
11890
12386
  *
11891
- * **Note** This event is only triggered if the field is editable.
12387
+ * **Note:** This event is only triggered if the field is editable.
11892
12388
  *
11893
12389
  * @since 1.82.0
11894
12390
  */
@@ -12695,6 +13191,8 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
12695
13191
 
12696
13192
  import { IFilterSource, IFilter, IxState, State } from "sap/ui/mdc/library";
12697
13193
 
13194
+ import InvisibleText from "sap/ui/core/InvisibleText";
13195
+
12698
13196
  import FilterBarValidationStatus from "sap/ui/mdc/enums/FilterBarValidationStatus";
12699
13197
 
12700
13198
  import FilterField from "sap/ui/mdc/FilterField";
@@ -12788,6 +13286,18 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
12788
13286
  * @returns Metadata object describing this class
12789
13287
  */
12790
13288
  static getMetadata(): ElementMetadata;
13289
+ /**
13290
+ * Adds an `InvisibleText` to the `FilterBar` that can be used for accessibility purposes.
13291
+ *
13292
+ * @since 1.142
13293
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13294
+ */
13295
+ addInvisibleText(
13296
+ /**
13297
+ * The invisible text to be added
13298
+ */
13299
+ oInvisibleText: InvisibleText
13300
+ ): void;
12791
13301
  /**
12792
13302
  * Attaches event handler `fnFunction` to the {@link #event:filtersChanged filtersChanged} event of this
12793
13303
  * `sap.ui.mdc.filterbar.FilterBarBase`.
@@ -13051,6 +13561,20 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
13051
13561
  * Also, the `conditions` property of `filterItems` is managed by the control.
13052
13562
  */
13053
13563
  getFilterItems(): FilterField[];
13564
+ /**
13565
+ * Retrieves an `InvisibleText` by ID.
13566
+ *
13567
+ * @since 1.142
13568
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13569
+ *
13570
+ * @returns The invisible text with the given ID
13571
+ */
13572
+ getInvisibleText(
13573
+ /**
13574
+ * ID of the invisible text to be retrieved
13575
+ */
13576
+ sId: string
13577
+ ): InvisibleText;
13054
13578
  /**
13055
13579
  * Gets current value of property {@link #getLiveMode liveMode}.
13056
13580
  *
@@ -13707,19 +14231,21 @@ declare module "sap/ui/mdc/FilterField" {
13707
14231
 
13708
14232
  /**
13709
14233
  * The `FilterField` control is used to filter data based on the conditions. The conditions are managed
13710
- * in the corresponding {@link sap.ui.mdc.FilterBar FilterBar}. That is why the `conditions` property must
13711
- * be bound to the related conditions in the {@link sap.ui.mdc.FilterBar FilterBar}. The type of this data
13712
- * must be defined in the `dataType` property.
14234
+ * in the corresponding {@link sap.ui.mdc.FilterBar FilterBar}. That is why the {@link sap.ui.mdc.field.FieldBase#bindConditions conditions }
14235
+ * property must be bound to the related conditions in the {@link sap.ui.mdc.FilterBar FilterBar}. The type
14236
+ * of this data must be defined in the {@link sap.ui.mdc.field.FieldBase#setDataType dataType} property.
13713
14237
  *
13714
14238
  * Based on the data type settings, a default control is rendered by the `FilterField` as follows:
13715
14239
  *
13716
14240
  *
13717
14241
  * - In display mode, usually a {@link sap.m.Text Text} control is rendered.
13718
- * - If `multipleLines` is set, an {@link sap.m.ExpandableText ExpandableText} control is rendered.
14242
+ * - If {@link sap.ui.mdc.field.FieldBase#getMultipleLines multipleLines} is set, an {@link sap.m.ExpandableText ExpandableText }
14243
+ * control is rendered.
13719
14244
  * - If multiple values are allowed, a {@link sap.m.Tokenizer Tokenizer} control is rendered.
13720
14245
  * - In edit mode, usually an {@link sap.m.Input Input} control is rendered.
13721
14246
  * - If multiple values are allowed, a {@link sap.m.MultiInput MultiInput} control is rendered.
13722
- * - If `multipleLines` is set, a {@link sap.m.TextArea TextArea} control is rendered.
14247
+ * - If {@link sap.ui.mdc.field.FieldBase#getMultipleLines multipleLines} is set, a {@link sap.m.TextArea TextArea }
14248
+ * control is rendered.
13723
14249
  * - If a date type or a date/time type is used and only one condition is supported, a {@link sap.m.DynamicDateRange DynamicDateRange }
13724
14250
  * control is rendered.
13725
14251
  * - If a date type is used and only single values are allowed, a {@link sap.m.DatePicker DatePicker }
@@ -13812,8 +14338,8 @@ declare module "sap/ui/mdc/FilterField" {
13812
14338
  /**
13813
14339
  * Adds an operator to the list of known operators.
13814
14340
  *
13815
- * **Note**: If no operator is set, the used `datatType` of the `FilterField` defines the set of default
13816
- * operators. The standard operators are mentioned in {@link sap.ui.mdc.enums.OperatorName OperatorName}.
14341
+ * **Note:** If no operator is set, the used {@link sap.ui.mdc.field.FieldBase#getDataType dataType} of
14342
+ * the `FilterField` defines the set of default operators. The standard operators are mentioned in {@link sap.ui.mdc.enums.OperatorName OperatorName}.
13817
14343
  *
13818
14344
  *
13819
14345
  * @returns Reference to `this` to allow method chaining
@@ -13827,7 +14353,7 @@ declare module "sap/ui/mdc/FilterField" {
13827
14353
  /**
13828
14354
  * Adds an array of operators to the list of known operators.
13829
14355
  *
13830
- * **Note**: `aOperators` can be the name of an {@link sap.ui.mdc.condition.Operator Operator}, the instance
14356
+ * **Note:** `aOperators` can be the name of an {@link sap.ui.mdc.condition.Operator Operator}, the instance
13831
14357
  * itself, or multiple operators inside an array. The standard operators are mentioned in {@link sap.ui.mdc.enums.OperatorName OperatorName}.
13832
14358
  *
13833
14359
  *
@@ -13845,7 +14371,8 @@ declare module "sap/ui/mdc/FilterField" {
13845
14371
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
13846
14372
  * otherwise it will be bound to this `sap.ui.mdc.FilterField` itself.
13847
14373
  *
13848
- * This event is fired when the `conditions` property of the `FilterField` is changed by a user interaction.
14374
+ * This event is fired when the {@link sap.ui.mdc.field.FieldBase#getConditions conditions} property of
14375
+ * the `FilterField` is changed by a user interaction.
13849
14376
  *
13850
14377
  * **Note** This event is only triggered if the used content control has a change event.
13851
14378
  *
@@ -13873,7 +14400,8 @@ declare module "sap/ui/mdc/FilterField" {
13873
14400
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
13874
14401
  * otherwise it will be bound to this `sap.ui.mdc.FilterField` itself.
13875
14402
  *
13876
- * This event is fired when the `conditions` property of the `FilterField` is changed by a user interaction.
14403
+ * This event is fired when the {@link sap.ui.mdc.field.FieldBase#getConditions conditions} property of
14404
+ * the `FilterField` is changed by a user interaction.
13877
14405
  *
13878
14406
  * **Note** This event is only triggered if the used content control has a change event.
13879
14407
  *
@@ -13940,7 +14468,7 @@ declare module "sap/ui/mdc/FilterField" {
13940
14468
  * Default operator name for conditions. If empty, the relevant default operator depending on the data type
13941
14469
  * used is taken.
13942
14470
  *
13943
- * **Note**: `defaultOperator` can be the name of an {@link sap.ui.mdc.condition.Operator Operator} or the
14471
+ * **Note:** `defaultOperator` can be the name of an {@link sap.ui.mdc.condition.Operator Operator} or the
13944
14472
  * instance itself.
13945
14473
  *
13946
14474
  * @since 1.88.0
@@ -13997,7 +14525,7 @@ declare module "sap/ui/mdc/FilterField" {
13997
14525
  /**
13998
14526
  * Removes all given operators from the list of known operators.
13999
14527
  *
14000
- * **Note**: `aOperators` can be the name of an {@link sap.ui.mdc.condition.Operator Operator}, the instance
14528
+ * **Note:** `aOperators` can be the name of an {@link sap.ui.mdc.condition.Operator Operator}, the instance
14001
14529
  * itself, or multiple operators inside an array. The standard operators are mentioned in {@link sap.ui.mdc.enums.OperatorName OperatorName}.
14002
14530
  */
14003
14531
  removeOperators(
@@ -14032,7 +14560,7 @@ declare module "sap/ui/mdc/FilterField" {
14032
14560
  * Default operator name for conditions. If empty, the relevant default operator depending on the data type
14033
14561
  * used is taken.
14034
14562
  *
14035
- * **Note**: `defaultOperator` can be the name of an {@link sap.ui.mdc.condition.Operator Operator} or the
14563
+ * **Note:** `defaultOperator` can be the name of an {@link sap.ui.mdc.condition.Operator Operator} or the
14036
14564
  * instance itself.
14037
14565
  *
14038
14566
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
@@ -14119,7 +14647,7 @@ declare module "sap/ui/mdc/FilterField" {
14119
14647
  * Default operator name for conditions. If empty, the relevant default operator depending on the data type
14120
14648
  * used is taken.
14121
14649
  *
14122
- * **Note**: `defaultOperator` can be the name of an {@link sap.ui.mdc.condition.Operator Operator} or the
14650
+ * **Note:** `defaultOperator` can be the name of an {@link sap.ui.mdc.condition.Operator Operator} or the
14123
14651
  * instance itself.
14124
14652
  *
14125
14653
  * @since 1.88.0
@@ -14134,62 +14662,974 @@ declare module "sap/ui/mdc/FilterField" {
14134
14662
  propertyKey?: string | PropertyBindingInfo;
14135
14663
 
14136
14664
  /**
14137
- * The type of data for the description part of an "equal to" condition. This type is used to parse, format,
14138
- * and validate the value.
14665
+ * The type of data for the description part of an "equal to" condition. This type is used to parse, format,
14666
+ * and validate the value.
14667
+ *
14668
+ * Here a data type instance can be provided or an object containing `name`, `formatOptions`, and `constraints`.
14669
+ *
14670
+ * @since 1.118.0
14671
+ */
14672
+ additionalDataType?: object | PropertyBindingInfo | `{${string}}`;
14673
+
14674
+ /**
14675
+ * This event is fired when the {@link sap.ui.mdc.field.FieldBase#getConditions conditions} property of
14676
+ * the `FilterField` is changed by a user interaction.
14677
+ *
14678
+ * **Note** This event is only triggered if the used content control has a change event.
14679
+ */
14680
+ change?: (oEvent: FilterField$ChangeEvent) => void;
14681
+ }
14682
+
14683
+ /**
14684
+ * Parameters of the FilterField#change event.
14685
+ */
14686
+ export interface FilterField$ChangeEventParameters {
14687
+ /**
14688
+ * The new value of the `control`
14689
+ */
14690
+ value?: string;
14691
+
14692
+ /**
14693
+ * Flag that indicates if the entered `value` is valid
14694
+ */
14695
+ valid?: boolean;
14696
+
14697
+ /**
14698
+ * Conditions of the field. This includes all conditions, not only the changed ones.
14699
+ *
14700
+ * **Note:** A condition must have the structure of {@link sap.ui.mdc.condition.ConditionObject ConditionObject}.
14701
+ */
14702
+ conditions?: object[];
14703
+
14704
+ /**
14705
+ * Returns a `Promise` for the change. The `Promise` returns the value if it is resolved. If the `change`
14706
+ * event is synchronous, the `Promise` has already been resolved. If it is asynchronous, it will be resolved
14707
+ * after the value has been updated.
14708
+ *
14709
+ * The `FilterField` should be set to busy during the parsing to prevent user input. As there might be a
14710
+ * whole group of fields that needs to be busy, this cannot be done automatically.
14711
+ */
14712
+ promise?: boolean;
14713
+ }
14714
+
14715
+ /**
14716
+ * Event object of the FilterField#change event.
14717
+ */
14718
+ export type FilterField$ChangeEvent = Event<
14719
+ FilterField$ChangeEventParameters,
14720
+ FilterField
14721
+ >;
14722
+ }
14723
+
14724
+ declare module "sap/ui/mdc/Geomap" {
14725
+ import { default as Control, $ControlSettings } from "sap/ui/mdc/Control";
14726
+
14727
+ import { IFilterSource, IxState } from "sap/ui/mdc/library";
14728
+
14729
+ import Event from "sap/ui/base/Event";
14730
+
14731
+ import { CSSSize } from "sap/ui/core/library";
14732
+
14733
+ import Item from "sap/ui/mdc/geomap/Item";
14734
+
14735
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
14736
+
14737
+ import { PropertyInfo as PropertyInfo1 } from "sap/ui/mdc/util/PropertyHelper";
14738
+
14739
+ import {
14740
+ PropertyBindingInfo,
14741
+ AggregationBindingInfo,
14742
+ } from "sap/ui/base/ManagedObject";
14743
+
14744
+ /**
14745
+ * The `Geomap` control creates a geomap based on metadata and the configuration specified.
14746
+ * **Note:** The geomap needs to be created inside the `GeomapDelegate`.
14747
+ *
14748
+ * @experimental As of version 1.142.
14749
+ */
14750
+ export default class Geomap
14751
+ extends Control
14752
+ implements IFilterSource, IxState
14753
+ {
14754
+ __implements__sap_ui_mdc_IFilterSource: boolean;
14755
+ __implements__sap_ui_mdc_IxState: boolean;
14756
+ /**
14757
+ * Constructor for a new GeoMap.
14758
+ *
14759
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
14760
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
14761
+ * of the syntax of the settings object.
14762
+ * See:
14763
+ * {@link https://ui5.sap.com/#/topic/1dd2aa91115d43409452a271d11be95b sap.ui.mdc}
14764
+ */
14765
+ constructor(
14766
+ /**
14767
+ * Initial settings for the new control
14768
+ */
14769
+ mSettings?: $GeomapSettings
14770
+ );
14771
+ /**
14772
+ * Constructor for a new GeoMap.
14773
+ *
14774
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
14775
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
14776
+ * of the syntax of the settings object.
14777
+ * See:
14778
+ * {@link https://ui5.sap.com/#/topic/1dd2aa91115d43409452a271d11be95b sap.ui.mdc}
14779
+ */
14780
+ constructor(
14781
+ /**
14782
+ * ID for the new control, generated automatically if no id is given
14783
+ */
14784
+ sId?: string,
14785
+ /**
14786
+ * Initial settings for the new control
14787
+ */
14788
+ mSettings?: $GeomapSettings
14789
+ );
14790
+
14791
+ /**
14792
+ * Creates a new subclass of class sap.ui.mdc.Geomap with name `sClassName` and enriches it with the information
14793
+ * contained in `oClassInfo`.
14794
+ *
14795
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.mdc.Control.extend}.
14796
+ *
14797
+ *
14798
+ * @returns Created class / constructor function
14799
+ */
14800
+ static extend<T extends Record<string, unknown>>(
14801
+ /**
14802
+ * Name of the class being created
14803
+ */
14804
+ sClassName: string,
14805
+ /**
14806
+ * Object literal with information about the class
14807
+ */
14808
+ oClassInfo?: sap.ClassInfo<T, Geomap>,
14809
+ /**
14810
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
14811
+ * used by this class
14812
+ */
14813
+ FNMetaImpl?: Function
14814
+ ): Function;
14815
+ /**
14816
+ * Returns a metadata object for class sap.ui.mdc.Geomap.
14817
+ *
14818
+ *
14819
+ * @returns Metadata object describing this class
14820
+ */
14821
+ static getMetadata(): ElementMetadata;
14822
+ /**
14823
+ * Attaches event handler `fnFunction` to the {@link #event:zoomChange zoomChange} event of this `sap.ui.mdc.Geomap`.
14824
+ *
14825
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
14826
+ * otherwise it will be bound to this `sap.ui.mdc.Geomap` itself.
14827
+ *
14828
+ * This event is fired when zooming is performed on the map.
14829
+ *
14830
+ *
14831
+ * @returns Reference to `this` in order to allow method chaining
14832
+ */
14833
+ attachZoomChange(
14834
+ /**
14835
+ * An application-specific payload object that will be passed to the event handler along with the event
14836
+ * object when firing the event
14837
+ */
14838
+ oData: object,
14839
+ /**
14840
+ * The function to be called when the event occurs
14841
+ */
14842
+ fnFunction: (p1: Event) => void,
14843
+ /**
14844
+ * Context object to call the event handler with. Defaults to this `sap.ui.mdc.Geomap` itself
14845
+ */
14846
+ oListener?: object
14847
+ ): this;
14848
+ /**
14849
+ * Attaches event handler `fnFunction` to the {@link #event:zoomChange zoomChange} event of this `sap.ui.mdc.Geomap`.
14850
+ *
14851
+ * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
14852
+ * otherwise it will be bound to this `sap.ui.mdc.Geomap` itself.
14853
+ *
14854
+ * This event is fired when zooming is performed on the map.
14855
+ *
14856
+ *
14857
+ * @returns Reference to `this` in order to allow method chaining
14858
+ */
14859
+ attachZoomChange(
14860
+ /**
14861
+ * The function to be called when the event occurs
14862
+ */
14863
+ fnFunction: (p1: Event) => void,
14864
+ /**
14865
+ * Context object to call the event handler with. Defaults to this `sap.ui.mdc.Geomap` itself
14866
+ */
14867
+ oListener?: object
14868
+ ): this;
14869
+ /**
14870
+ * Destroys all the items in the aggregation {@link #getItems items}.
14871
+ *
14872
+ *
14873
+ * @returns Reference to `this` in order to allow method chaining
14874
+ */
14875
+ destroyItems(): this;
14876
+ /**
14877
+ * Detaches event handler `fnFunction` from the {@link #event:zoomChange zoomChange} event of this `sap.ui.mdc.Geomap`.
14878
+ *
14879
+ * The passed function and listener object must match the ones used for event registration.
14880
+ *
14881
+ *
14882
+ * @returns Reference to `this` in order to allow method chaining
14883
+ */
14884
+ detachZoomChange(
14885
+ /**
14886
+ * The function to be called, when the event occurs
14887
+ */
14888
+ fnFunction: (p1: Event) => void,
14889
+ /**
14890
+ * Context object on which the given function had to be called
14891
+ */
14892
+ oListener?: object
14893
+ ): this;
14894
+ /**
14895
+ * Fires event {@link #event:zoomChange zoomChange} to attached listeners.
14896
+ *
14897
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
14898
+ *
14899
+ * @returns Reference to `this` in order to allow method chaining
14900
+ */
14901
+ fireZoomChange(
14902
+ /**
14903
+ * Parameters to pass along with the event
14904
+ */
14905
+ mParameters?: object
14906
+ ): this;
14907
+ /**
14908
+ * Gets current value of property {@link #getCenterLat centerLat}.
14909
+ *
14910
+ * Latitude of the point where the map is centered
14911
+ *
14912
+ *
14913
+ * @returns Value of property `centerLat`
14914
+ */
14915
+ getCenterLat(): float;
14916
+ /**
14917
+ * Gets current value of property {@link #getCenterLng centerLng}.
14918
+ *
14919
+ * Longitude of the point where the map is centered
14920
+ *
14921
+ *
14922
+ * @returns Value of property `centerLng`
14923
+ */
14924
+ getCenterLng(): float;
14925
+ /**
14926
+ * Gets current value of property {@link #getDelegate delegate}.
14927
+ *
14928
+ * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
14929
+ * The object has the following properties:
14930
+ * - `name` defines the path to the `Delegate` module
14931
+ * - `payload` (optional) defines application-specific information that can be used in the given delegate
14932
+ * Sample delegate object:
14933
+ * ```javascript
14934
+ * {
14935
+ * name: "sap/ui/mdc/BaseDelegate",
14936
+ * payload: {}
14937
+ * }```
14938
+ * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
14939
+ * that).
14940
+ * Do not bind or modify the module. This property can only be configured during control initialization.
14941
+ *
14942
+ * Default value is `...see text or source`.
14943
+ *
14944
+ * @experimental
14945
+ *
14946
+ * @returns Value of property `delegate`
14947
+ */
14948
+ getDelegate(): object;
14949
+ /**
14950
+ * Gets current value of property {@link #getEnableCopyrightControl enableCopyrightControl}.
14951
+ *
14952
+ * Enables the copyright control for the map
14953
+ *
14954
+ * Default value is `false`.
14955
+ *
14956
+ *
14957
+ * @returns Value of property `enableCopyrightControl`
14958
+ */
14959
+ getEnableCopyrightControl(): boolean;
14960
+ /**
14961
+ * Gets current value of property {@link #getEnableFullscreenControl enableFullscreenControl}.
14962
+ *
14963
+ * Enables the full screen control for the map
14964
+ *
14965
+ * Default value is `true`.
14966
+ *
14967
+ *
14968
+ * @returns Value of property `enableFullscreenControl`
14969
+ */
14970
+ getEnableFullscreenControl(): boolean;
14971
+ /**
14972
+ * Gets current value of property {@link #getEnableNavigationControl enableNavigationControl}.
14973
+ *
14974
+ * Enables the navigation & compas control for the map
14975
+ *
14976
+ * Default value is `true`.
14977
+ *
14978
+ *
14979
+ * @returns Value of property `enableNavigationControl`
14980
+ */
14981
+ getEnableNavigationControl(): boolean;
14982
+ /**
14983
+ * Gets current value of property {@link #getEnableScaleControl enableScaleControl}.
14984
+ *
14985
+ * Enables the scale control for the map
14986
+ *
14987
+ * Default value is `true`.
14988
+ *
14989
+ *
14990
+ * @returns Value of property `enableScaleControl`
14991
+ */
14992
+ getEnableScaleControl(): boolean;
14993
+ /**
14994
+ * Gets current value of property {@link #getEnableSelectionControl enableSelectionControl}.
14995
+ *
14996
+ * Enables the selection control for the map
14997
+ *
14998
+ * Default value is `false`.
14999
+ *
15000
+ *
15001
+ * @returns Value of property `enableSelectionControl`
15002
+ */
15003
+ getEnableSelectionControl(): boolean;
15004
+ /**
15005
+ * Gets current value of property {@link #getHeader header}.
15006
+ *
15007
+ * Header text that appears in the geomap
15008
+ *
15009
+ * Default value is `empty string`.
15010
+ *
15011
+ *
15012
+ * @returns Value of property `header`
15013
+ */
15014
+ getHeader(): string;
15015
+ /**
15016
+ * Gets current value of property {@link #getHeight height}.
15017
+ *
15018
+ * Defines the height of the geomap.
15019
+ *
15020
+ * Default value is `"700px"`.
15021
+ *
15022
+ *
15023
+ * @returns Value of property `height`
15024
+ */
15025
+ getHeight(): CSSSize;
15026
+ /**
15027
+ * Gets content of aggregation {@link #getItems items}.
15028
+ *
15029
+ * Aggregates the items to be displayed in the geomap. Note: As items are custom elements defined as part
15030
+ * of the webc library the type here could not be strictly defined or used a generic one so supported types
15031
+ * are limited to those supported by the webc library.
15032
+ */
15033
+ getItems(): Item[];
15034
+ /**
15035
+ * Gets current value of property {@link #getWidth width}.
15036
+ *
15037
+ * Defines the width of the geomap.
15038
+ *
15039
+ * Default value is `"700px"`.
15040
+ *
15041
+ *
15042
+ * @returns Value of property `width`
15043
+ */
15044
+ getWidth(): CSSSize;
15045
+ /**
15046
+ * Gets current value of property {@link #getZoom zoom}.
15047
+ *
15048
+ * Zoom level of the map - the bigger, the more the map is zoomed
15049
+ *
15050
+ *
15051
+ * @returns Value of property `zoom`
15052
+ */
15053
+ getZoom(): float;
15054
+ /**
15055
+ * Checks for the provided `sap.ui.mdc.geomap.Item` in the aggregation {@link #getItems items}. and returns
15056
+ * its index if found or -1 otherwise.
15057
+ *
15058
+ *
15059
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
15060
+ */
15061
+ indexOfItem(
15062
+ /**
15063
+ * The item whose index is looked for
15064
+ */
15065
+ oItem: Item
15066
+ ): int;
15067
+ /**
15068
+ * Inserts a item into the aggregation {@link #getItems items}.
15069
+ *
15070
+ *
15071
+ * @returns Reference to `this` in order to allow method chaining
15072
+ */
15073
+ insertItem(
15074
+ /**
15075
+ * The item to insert; if empty, nothing is inserted
15076
+ */
15077
+ oItem: Item,
15078
+ /**
15079
+ * The `0`-based index the item should be inserted at; for a negative value of `iIndex`, the item is inserted
15080
+ * at position 0; for a value greater than the current size of the aggregation, the item is inserted at
15081
+ * the last position
15082
+ */
15083
+ iIndex: int
15084
+ ): this;
15085
+ /**
15086
+ * Executes a rebind considering the provided external and inbuilt filtering.
15087
+ *
15088
+ * @since 1.98
15089
+ *
15090
+ * @returns A `Promise` that resolves after rebind is executed, and rejects if rebind cannot be executed,
15091
+ * for example because there are invalid filters.
15092
+ */
15093
+ rebind(): Promise<any>;
15094
+ /**
15095
+ * Sets a new value for property {@link #getCenterLat centerLat}.
15096
+ *
15097
+ * Latitude of the point where the map is centered
15098
+ *
15099
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15100
+ *
15101
+ *
15102
+ * @returns Reference to `this` in order to allow method chaining
15103
+ */
15104
+ setCenterLat(
15105
+ /**
15106
+ * New value for property `centerLat`
15107
+ */
15108
+ fCenterLat: float
15109
+ ): this;
15110
+ /**
15111
+ * Sets a new value for property {@link #getCenterLng centerLng}.
15112
+ *
15113
+ * Longitude of the point where the map is centered
15114
+ *
15115
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15116
+ *
15117
+ *
15118
+ * @returns Reference to `this` in order to allow method chaining
15119
+ */
15120
+ setCenterLng(
15121
+ /**
15122
+ * New value for property `centerLng`
15123
+ */
15124
+ fCenterLng: float
15125
+ ): this;
15126
+ /**
15127
+ * Sets a new value for property {@link #getDelegate delegate}.
15128
+ *
15129
+ * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
15130
+ * The object has the following properties:
15131
+ * - `name` defines the path to the `Delegate` module
15132
+ * - `payload` (optional) defines application-specific information that can be used in the given delegate
15133
+ * Sample delegate object:
15134
+ * ```javascript
15135
+ * {
15136
+ * name: "sap/ui/mdc/BaseDelegate",
15137
+ * payload: {}
15138
+ * }```
15139
+ * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
15140
+ * that).
15141
+ * Do not bind or modify the module. This property can only be configured during control initialization.
15142
+ *
15143
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15144
+ *
15145
+ * Default value is `...see text or source`.
15146
+ *
15147
+ * @experimental
15148
+ *
15149
+ * @returns Reference to `this` in order to allow method chaining
15150
+ */
15151
+ setDelegate(
15152
+ /**
15153
+ * New value for property `delegate`
15154
+ */
15155
+ oDelegate?: object
15156
+ ): this;
15157
+ /**
15158
+ * Sets a new value for property {@link #getEnableCopyrightControl enableCopyrightControl}.
15159
+ *
15160
+ * Enables the copyright control for the map
15161
+ *
15162
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15163
+ *
15164
+ * Default value is `false`.
15165
+ *
15166
+ *
15167
+ * @returns Reference to `this` in order to allow method chaining
15168
+ */
15169
+ setEnableCopyrightControl(
15170
+ /**
15171
+ * New value for property `enableCopyrightControl`
15172
+ */
15173
+ bEnableCopyrightControl?: boolean
15174
+ ): this;
15175
+ /**
15176
+ * Sets a new value for property {@link #getEnableFullscreenControl enableFullscreenControl}.
15177
+ *
15178
+ * Enables the full screen control for the map
15179
+ *
15180
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15181
+ *
15182
+ * Default value is `true`.
15183
+ *
15184
+ *
15185
+ * @returns Reference to `this` in order to allow method chaining
15186
+ */
15187
+ setEnableFullscreenControl(
15188
+ /**
15189
+ * New value for property `enableFullscreenControl`
15190
+ */
15191
+ bEnableFullscreenControl?: boolean
15192
+ ): this;
15193
+ /**
15194
+ * Sets a new value for property {@link #getEnableNavigationControl enableNavigationControl}.
15195
+ *
15196
+ * Enables the navigation & compas control for the map
15197
+ *
15198
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15199
+ *
15200
+ * Default value is `true`.
15201
+ *
15202
+ *
15203
+ * @returns Reference to `this` in order to allow method chaining
15204
+ */
15205
+ setEnableNavigationControl(
15206
+ /**
15207
+ * New value for property `enableNavigationControl`
15208
+ */
15209
+ bEnableNavigationControl?: boolean
15210
+ ): this;
15211
+ /**
15212
+ * Sets a new value for property {@link #getEnableScaleControl enableScaleControl}.
15213
+ *
15214
+ * Enables the scale control for the map
15215
+ *
15216
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15217
+ *
15218
+ * Default value is `true`.
15219
+ *
15220
+ *
15221
+ * @returns Reference to `this` in order to allow method chaining
15222
+ */
15223
+ setEnableScaleControl(
15224
+ /**
15225
+ * New value for property `enableScaleControl`
15226
+ */
15227
+ bEnableScaleControl?: boolean
15228
+ ): this;
15229
+ /**
15230
+ * Sets a new value for property {@link #getEnableSelectionControl enableSelectionControl}.
15231
+ *
15232
+ * Enables the selection control for the map
15233
+ *
15234
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15235
+ *
15236
+ * Default value is `false`.
15237
+ *
15238
+ *
15239
+ * @returns Reference to `this` in order to allow method chaining
15240
+ */
15241
+ setEnableSelectionControl(
15242
+ /**
15243
+ * New value for property `enableSelectionControl`
15244
+ */
15245
+ bEnableSelectionControl?: boolean
15246
+ ): this;
15247
+ /**
15248
+ * Sets a new value for property {@link #getHeader header}.
15249
+ *
15250
+ * Header text that appears in the geomap
15251
+ *
15252
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15253
+ *
15254
+ * Default value is `empty string`.
15255
+ *
15256
+ *
15257
+ * @returns Reference to `this` in order to allow method chaining
15258
+ */
15259
+ setHeader(
15260
+ /**
15261
+ * New value for property `header`
15262
+ */
15263
+ sHeader?: string
15264
+ ): this;
15265
+ /**
15266
+ * Sets a new value for property {@link #getHeight height}.
15267
+ *
15268
+ * Defines the height of the geomap.
15269
+ *
15270
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15271
+ *
15272
+ * Default value is `"700px"`.
15273
+ *
15274
+ *
15275
+ * @returns Reference to `this` in order to allow method chaining
15276
+ */
15277
+ setHeight(
15278
+ /**
15279
+ * New value for property `height`
15280
+ */
15281
+ sHeight?: CSSSize
15282
+ ): this;
15283
+ /**
15284
+ * Sets a new value for property {@link #getWidth width}.
15285
+ *
15286
+ * Defines the width of the geomap.
15287
+ *
15288
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15289
+ *
15290
+ * Default value is `"700px"`.
15291
+ *
15292
+ *
15293
+ * @returns Reference to `this` in order to allow method chaining
15294
+ */
15295
+ setWidth(
15296
+ /**
15297
+ * New value for property `width`
15298
+ */
15299
+ sWidth?: CSSSize
15300
+ ): this;
15301
+ /**
15302
+ * Sets a new value for property {@link #getZoom zoom}.
15303
+ *
15304
+ * Zoom level of the map - the bigger, the more the map is zoomed
15305
+ *
15306
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15307
+ *
15308
+ *
15309
+ * @returns Reference to `this` in order to allow method chaining
15310
+ */
15311
+ setZoom(
15312
+ /**
15313
+ * New value for property `zoom`
15314
+ */
15315
+ fZoom: float
15316
+ ): this;
15317
+ }
15318
+ /**
15319
+ * An object literal describing a data property in the context of a {@link sap.ui.mdc.GeoMap}.
15320
+ *
15321
+ * When specifying the `PropertyInfo` objects in the {@link sap.ui.mdc.GeoMap#getPropertyInfo propertyInfo }
15322
+ * property, the following attributes need to be specified:
15323
+ * - `key`
15324
+ * - `label`
15325
+ * - `visible`
15326
+ * - `path`
15327
+ * - `dataType`
15328
+ * - `formatOptions`
15329
+ * - `constraints`
15330
+ *
15331
+ * @experimental As of version 1.142.
15332
+ */
15333
+ export type PropertyInfo = PropertyInfo1 & {
15334
+ /**
15335
+ * Defines the key that the property is related to
15336
+ */
15337
+ key?: string;
15338
+ /**
15339
+ * Defines the label of the property associated with the key.
15340
+ */
15341
+ label?: string;
15342
+ /**
15343
+ * Defines the visibility of the property.
15344
+ */
15345
+ visible?: boolean;
15346
+ /**
15347
+ * The path of the property in the data source.
15348
+ */
15349
+ path?: string;
15350
+ /**
15351
+ * Defines the data type associated to the property.
15352
+ */
15353
+ dataType?: string;
15354
+ /**
15355
+ * Defines if any format options are applied to the property.
15356
+ */
15357
+ formatOptions?: object;
15358
+ /**
15359
+ * Defines if any constraints are applied to the property.
15360
+ */
15361
+ constraints?: object;
15362
+ };
15363
+
15364
+ /**
15365
+ * Describes the settings that can be provided to the Geomap constructor.
15366
+ *
15367
+ * @experimental As of version 1.142.
15368
+ */
15369
+ export interface $GeomapSettings extends $ControlSettings {
15370
+ /**
15371
+ * Defines the width of the geomap.
15372
+ */
15373
+ width?: CSSSize | PropertyBindingInfo | `{${string}}`;
15374
+
15375
+ /**
15376
+ * Defines the height of the geomap.
15377
+ */
15378
+ height?: CSSSize | PropertyBindingInfo | `{${string}}`;
15379
+
15380
+ /**
15381
+ * Header text that appears in the geomap
15382
+ */
15383
+ header?: string | PropertyBindingInfo;
15384
+
15385
+ /**
15386
+ * Latitude of the point where the map is centered
15387
+ */
15388
+ centerLat?: float | PropertyBindingInfo | `{${string}}`;
15389
+
15390
+ /**
15391
+ * Longitude of the point where the map is centered
15392
+ */
15393
+ centerLng?: float | PropertyBindingInfo | `{${string}}`;
15394
+
15395
+ /**
15396
+ * Zoom level of the map - the bigger, the more the map is zoomed
15397
+ */
15398
+ zoom?: float | PropertyBindingInfo | `{${string}}`;
15399
+
15400
+ /**
15401
+ * Enables the selection control for the map
15402
+ */
15403
+ enableSelectionControl?: boolean | PropertyBindingInfo | `{${string}}`;
15404
+
15405
+ /**
15406
+ * Enables the navigation & compas control for the map
15407
+ */
15408
+ enableNavigationControl?: boolean | PropertyBindingInfo | `{${string}}`;
15409
+
15410
+ /**
15411
+ * Enables the full screen control for the map
15412
+ */
15413
+ enableFullscreenControl?: boolean | PropertyBindingInfo | `{${string}}`;
15414
+
15415
+ /**
15416
+ * Enables the scale control for the map
15417
+ */
15418
+ enableScaleControl?: boolean | PropertyBindingInfo | `{${string}}`;
15419
+
15420
+ /**
15421
+ * Enables the copyright control for the map
15422
+ */
15423
+ enableCopyrightControl?: boolean | PropertyBindingInfo | `{${string}}`;
15424
+
15425
+ /**
15426
+ * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
15427
+ * The object has the following properties:
15428
+ * - `name` defines the path to the `Delegate` module
15429
+ * - `payload` (optional) defines application-specific information that can be used in the given delegate
15430
+ * Sample delegate object:
15431
+ * ```javascript
15432
+ * {
15433
+ * name: "sap/ui/mdc/BaseDelegate",
15434
+ * payload: {}
15435
+ * }```
15436
+ * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
15437
+ * that).
15438
+ * Do not bind or modify the module. This property can only be configured during control initialization.
15439
+ *
15440
+ * @experimental
15441
+ */
15442
+ delegate?: object | PropertyBindingInfo | `{${string}}`;
15443
+
15444
+ /**
15445
+ * Specifies the geomap metadata.
15446
+ * **Note:** This property must not be bound.
15447
+ * **Note:** This property is exclusively used for handling SAPUI5 flexibility changes. Do not use it otherwise.
15448
+ * **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 }
15450
+ * callback. Otherwise validation errors might occur whenever personalization-related control features (such
15451
+ * as the opening of any personalization dialog) are activated.
15452
+ *
15453
+ * **Note**: For more information about the supported inner elements, see {@link sap.ui.mdc.geomap.PropertyInfo PropertyInfo}.
15454
+ */
15455
+ propertyInfo?: object | PropertyBindingInfo | `{${string}}`;
15456
+
15457
+ /**
15458
+ * Aggregates the items to be displayed in the geomap. Note: As items are custom elements defined as part
15459
+ * of the webc library the type here could not be strictly defined or used a generic one so supported types
15460
+ * are limited to those supported by the webc library.
15461
+ */
15462
+ items?: Item[] | Item | AggregationBindingInfo | `{${string}}`;
15463
+
15464
+ /**
15465
+ * This event is fired when zooming is performed on the map.
15466
+ */
15467
+ zoomChange?: (oEvent: Event) => void;
15468
+ }
15469
+
15470
+ /**
15471
+ * Parameters of the Geomap#zoomChange event.
15472
+ */
15473
+ export interface Geomap$ZoomChangeEventParameters {}
15474
+
15475
+ /**
15476
+ * Event object of the Geomap#zoomChange event.
15477
+ */
15478
+ export type Geomap$ZoomChangeEvent = Event<
15479
+ Geomap$ZoomChangeEventParameters,
15480
+ Geomap
15481
+ >;
15482
+ }
15483
+
15484
+ declare module "sap/ui/mdc/geomap/Item" {
15485
+ import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
15486
+
15487
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
15488
+
15489
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
15490
+
15491
+ /**
15492
+ * The `Item` element for the geomap/property metadata used within MDC Geomap.
15493
+ *
15494
+ * @experimental As of version 1.142.
15495
+ */
15496
+ export default class Item extends UI5Element {
15497
+ /**
15498
+ * Constructor for a new `Item`.
15499
+ *
15500
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
15501
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
15502
+ * of the syntax of the settings object.
15503
+ */
15504
+ constructor(
15505
+ /**
15506
+ * initial settings for the new element
15507
+ */
15508
+ mSettings?: $ItemSettings
15509
+ );
15510
+ /**
15511
+ * Constructor for a new `Item`.
15512
+ *
15513
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
15514
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
15515
+ * of the syntax of the settings object.
15516
+ */
15517
+ constructor(
15518
+ /**
15519
+ * ID for the new element, generated automatically if no ID is given
15520
+ */
15521
+ sId?: string,
15522
+ /**
15523
+ * initial settings for the new element
15524
+ */
15525
+ mSettings?: $ItemSettings
15526
+ );
15527
+
15528
+ /**
15529
+ * Creates a new subclass of class sap.ui.mdc.geomap.Item with name `sClassName` and enriches it with the
15530
+ * information contained in `oClassInfo`.
15531
+ *
15532
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
15533
+ *
15534
+ *
15535
+ * @returns Created class / constructor function
15536
+ */
15537
+ static extend<T extends Record<string, unknown>>(
15538
+ /**
15539
+ * Name of the class being created
15540
+ */
15541
+ sClassName: string,
15542
+ /**
15543
+ * Object literal with information about the class
15544
+ */
15545
+ oClassInfo?: sap.ClassInfo<T, Item>,
15546
+ /**
15547
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
15548
+ * used by this class
15549
+ */
15550
+ FNMetaImpl?: Function
15551
+ ): Function;
15552
+ /**
15553
+ * Returns a metadata object for class sap.ui.mdc.geomap.Item.
15554
+ *
15555
+ *
15556
+ * @returns Metadata object describing this class
15557
+ */
15558
+ static getMetadata(): ElementMetadata;
15559
+ /**
15560
+ * Gets current value of property {@link #getLabel label}.
15561
+ *
15562
+ * Label for the item, either as a string literal or by a pointer, using the binding to some property containing
15563
+ * the label.
15564
+ *
15565
+ *
15566
+ * @returns Value of property `label`
15567
+ */
15568
+ getLabel(): string;
15569
+ /**
15570
+ * Gets current value of property {@link #getPropertyKey propertyKey}.
15571
+ *
15572
+ * The unique identifier of the geomap item that reflects the name of property in the PropertyInfo.
15573
+ *
15574
+ * @since 1.142
15575
+ *
15576
+ * @returns Value of property `propertyKey`
15577
+ */
15578
+ getPropertyKey(): string;
15579
+ /**
15580
+ * Sets a new value for property {@link #getLabel label}.
14139
15581
  *
14140
- * Here a data type instance can be provided or an object containing `name`, `formatOptions`, and `constraints`.
15582
+ * Label for the item, either as a string literal or by a pointer, using the binding to some property containing
15583
+ * the label.
14141
15584
  *
14142
- * @since 1.118.0
15585
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15586
+ *
15587
+ *
15588
+ * @returns Reference to `this` in order to allow method chaining
14143
15589
  */
14144
- additionalDataType?: object | PropertyBindingInfo | `{${string}}`;
14145
-
15590
+ setLabel(
15591
+ /**
15592
+ * New value for property `label`
15593
+ */
15594
+ sLabel: string
15595
+ ): this;
14146
15596
  /**
14147
- * This event is fired when the `conditions` property of the `FilterField` is changed by a user interaction.
15597
+ * Sets a new value for property {@link #getPropertyKey propertyKey}.
14148
15598
  *
14149
- * **Note** This event is only triggered if the used content control has a change event.
15599
+ * The unique identifier of the geomap item that reflects the name of property in the PropertyInfo.
15600
+ *
15601
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15602
+ *
15603
+ * @since 1.142
15604
+ *
15605
+ * @returns Reference to `this` in order to allow method chaining
14150
15606
  */
14151
- change?: (oEvent: FilterField$ChangeEvent) => void;
15607
+ setPropertyKey(
15608
+ /**
15609
+ * New value for property `propertyKey`
15610
+ */
15611
+ sPropertyKey: string
15612
+ ): this;
14152
15613
  }
14153
-
14154
15614
  /**
14155
- * Parameters of the FilterField#change event.
15615
+ * Describes the settings that can be provided to the Item constructor.
15616
+ *
15617
+ * @experimental As of version 1.142.
14156
15618
  */
14157
- export interface FilterField$ChangeEventParameters {
14158
- /**
14159
- * The new value of the `control`
14160
- */
14161
- value?: string;
14162
-
14163
- /**
14164
- * Flag that indicates if the entered `value` is valid
14165
- */
14166
- valid?: boolean;
14167
-
15619
+ export interface $ItemSettings extends $ElementSettings {
14168
15620
  /**
14169
- * Conditions of the field. This includes all conditions, not only the changed ones.
15621
+ * The unique identifier of the geomap item that reflects the name of property in the PropertyInfo.
14170
15622
  *
14171
- * **Note:** A condition must have the structure of {@link sap.ui.mdc.condition.ConditionObject ConditionObject}.
15623
+ * @since 1.142
14172
15624
  */
14173
- conditions?: object[];
15625
+ propertyKey?: string | PropertyBindingInfo;
14174
15626
 
14175
15627
  /**
14176
- * Returns a `Promise` for the change. The `Promise` returns the value if it is resolved. If the `change`
14177
- * event is synchronous, the `Promise` has already been resolved. If it is asynchronous, it will be resolved
14178
- * after the value has been updated.
14179
- *
14180
- * The `FilterField` should be set to busy during the parsing to prevent user input. As there might be a
14181
- * whole group of fields that needs to be busy, this cannot be done automatically.
15628
+ * Label for the item, either as a string literal or by a pointer, using the binding to some property containing
15629
+ * the label.
14182
15630
  */
14183
- promise?: boolean;
15631
+ label?: string | PropertyBindingInfo;
14184
15632
  }
14185
-
14186
- /**
14187
- * Event object of the FilterField#change event.
14188
- */
14189
- export type FilterField$ChangeEvent = Event<
14190
- FilterField$ChangeEventParameters,
14191
- FilterField
14192
- >;
14193
15633
  }
14194
15634
 
14195
15635
  declare module "sap/ui/mdc/Link" {
@@ -14887,9 +16327,11 @@ declare module "sap/ui/mdc/MultiValueField" {
14887
16327
  *
14888
16328
  *
14889
16329
  * - In display mode, usually a {@link sap.m.Tokenizer Tokenizer} control is rendered.
14890
- * - If `multipleLines` is set, an {@link sap.m.ExpandableText ExpandableText} control is rendered.
16330
+ * - If {@link sap.ui.mdc.field.FieldBase#getMultipleLines multipleLines} is set, an {@link sap.m.ExpandableText ExpandableText }
16331
+ * control is rendered.
14891
16332
  * - In edit mode, usually a {@link sap.m.MultiInput MultiInput} control is rendered.
14892
- * - If `multipleLines` is set, a {@link sap.m.TextArea TextArea} control is rendered.
16333
+ * - If {@link sap.ui.mdc.field.FieldBase#getMultipleLines multipleLines} is set, a {@link sap.m.TextArea TextArea }
16334
+ * control is rendered.
14893
16335
  *
14894
16336
  * @since 1.93.0
14895
16337
  */
@@ -14980,7 +16422,7 @@ declare module "sap/ui/mdc/MultiValueField" {
14980
16422
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
14981
16423
  * otherwise it will be bound to this `sap.ui.mdc.MultiValueField` itself.
14982
16424
  *
14983
- * This event is fired when the `items` aggregation of the field is changed by user interaction.
16425
+ * This event is fired when the {@link #getItems items} aggregation of the field is changed by user interaction.
14984
16426
  *
14985
16427
  * **Note** This event is only triggered if the used content control has a change event.
14986
16428
  *
@@ -15008,7 +16450,7 @@ declare module "sap/ui/mdc/MultiValueField" {
15008
16450
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
15009
16451
  * otherwise it will be bound to this `sap.ui.mdc.MultiValueField` itself.
15010
16452
  *
15011
- * This event is fired when the `items` aggregation of the field is changed by user interaction.
16453
+ * This event is fired when the {@link #getItems items} aggregation of the field is changed by user interaction.
15012
16454
  *
15013
16455
  * **Note** This event is only triggered if the used content control has a change event.
15014
16456
  *
@@ -15181,7 +16623,7 @@ declare module "sap/ui/mdc/MultiValueField" {
15181
16623
  * Items of the `MultiValueField` control.
15182
16624
  *
15183
16625
  * The items are not updated by user input or value help selection automatically. That's because an aggregation
15184
- * binding can only be updated by the model, not by the bound aggregation. Therefore, the {@link module:sap/ui/mdc/field/MultiValueFieldDelegate.updateItems MultiValueFieldDelegate.updateItems }
16626
+ * binding can only be updated by the model, not by the bound aggregation. Therefore, the {@link module:sap/ui/mdc/field/MultiValueFieldDelegate.updateItemsFromConditions MultiValueFieldDelegate.updateItemsFromConditions }
15185
16627
  * function needs to be implemented to update the items after a user interaction.
15186
16628
  */
15187
16629
  getItems(): MultiValueFieldItem[];
@@ -15422,7 +16864,7 @@ declare module "sap/ui/mdc/MultiValueField" {
15422
16864
  * Items of the `MultiValueField` control.
15423
16865
  *
15424
16866
  * The items are not updated by user input or value help selection automatically. That's because an aggregation
15425
- * binding can only be updated by the model, not by the bound aggregation. Therefore, the {@link module:sap/ui/mdc/field/MultiValueFieldDelegate.updateItems MultiValueFieldDelegate.updateItems }
16867
+ * binding can only be updated by the model, not by the bound aggregation. Therefore, the {@link module:sap/ui/mdc/field/MultiValueFieldDelegate.updateItemsFromConditions MultiValueFieldDelegate.updateItemsFromConditions }
15426
16868
  * function needs to be implemented to update the items after a user interaction.
15427
16869
  */
15428
16870
  items?:
@@ -15432,7 +16874,7 @@ declare module "sap/ui/mdc/MultiValueField" {
15432
16874
  | `{${string}}`;
15433
16875
 
15434
16876
  /**
15435
- * This event is fired when the `items` aggregation of the field is changed by user interaction.
16877
+ * This event is fired when the {@link #getItems items} aggregation of the field is changed by user interaction.
15436
16878
  *
15437
16879
  * **Note** This event is only triggered if the used content control has a change event.
15438
16880
  */
@@ -15446,8 +16888,9 @@ declare module "sap/ui/mdc/MultiValueField" {
15446
16888
  /**
15447
16889
  * The new items of the `MultiValueField` control.
15448
16890
  *
15449
- * If a `ValueHelp` element is assigned to the `MultiValueField` control, the `key` of the items is used
15450
- * as key for the `ValueHelp` items.
16891
+ * If a {@link sap.ui.mdc.field.FieldBase#getValueHelp ValueHelp} element is assigned to the `MultiValueField`
16892
+ * control, the {@link sap.ui.mdc.field.MultiValueFieldItem#getKey key} of the items is used as key for
16893
+ * the {@link sap.ui.mdc.field.FieldBase#getValueHelp ValueHelp} items.
15451
16894
  */
15452
16895
  items?: MultiValueFieldItem[];
15453
16896
 
@@ -15569,7 +17012,7 @@ declare module "sap/ui/mdc/p13n/StateUtil" {
15569
17012
  * Retrieves the externalized state for a given control instance. The retrieved state is equivalent to the
15570
17013
  * `getCurrentState` API for the given control, after all necessary changes have been applied (for example,
15571
17014
  * variant appliance and `p13n, StateUtil` changes). After the returned `Promise` has been resolved, the
15572
- * returned state is in sync with the according state object of the MDC control (for example, `filterConditions`
17015
+ * returned state is in sync with the corresponding state object of the MDC control (for example, `filterConditions`
15573
17016
  * for the `FilterBar` control).
15574
17017
  *
15575
17018
  *
@@ -15712,6 +17155,19 @@ declare module "sap/ui/mdc/Table" {
15712
17155
  * @returns Metadata object describing this class
15713
17156
  */
15714
17157
  static getMetadata(): ElementMetadata;
17158
+ /**
17159
+ * Adds some tableAction to the aggregation {@link #getTableActions tableActions}.
17160
+ *
17161
+ * @since 1.143
17162
+ *
17163
+ * @returns Reference to `this` in order to allow method chaining
17164
+ */
17165
+ addTableAction(
17166
+ /**
17167
+ * The tableAction to add; if empty, nothing is inserted
17168
+ */
17169
+ oTableAction: Control1
17170
+ ): this;
15715
17171
  /**
15716
17172
  * Attaches event handler `fnFunction` to the {@link #event:beforeExport beforeExport} event of this `sap.ui.mdc.Table`.
15717
17173
  *
@@ -16017,6 +17473,14 @@ declare module "sap/ui/mdc/Table" {
16017
17473
  * @returns Reference to `this` in order to allow method chaining
16018
17474
  */
16019
17475
  destroyRowSettings(): this;
17476
+ /**
17477
+ * Destroys all the tableActions in the aggregation {@link #getTableActions tableActions}.
17478
+ *
17479
+ * @since 1.143
17480
+ *
17481
+ * @returns Reference to `this` in order to allow method chaining
17482
+ */
17483
+ destroyTableActions(): this;
16020
17484
  /**
16021
17485
  * Destroys the type in the aggregation {@link #getType type}.
16022
17486
  *
@@ -16583,6 +18047,20 @@ declare module "sap/ui/mdc/Table" {
16583
18047
  * @returns Value of property `showRowCount`
16584
18048
  */
16585
18049
  getShowRowCount(): boolean;
18050
+ /**
18051
+ * Gets content of aggregation {@link #getTableActions tableActions}.
18052
+ *
18053
+ * Additional table-related actions that are positioned together with other table-generated actions, based
18054
+ * on the {@link sap.ui.mdc.table.ActionLayoutData ActionLayoutData} provided.
18055
+ *
18056
+ * **Note:** All actions should use layout data of the {@link sap.ui.mdc.table.ActionLayoutData ActionLayoutData }
18057
+ * type to ensure correct ordering. Actions that do not use this layout data will be placed after the table-generated
18058
+ * actions.
18059
+ * **Note:** Like other table-generated actions, these actions are excluded from the UI adaptation.
18060
+ *
18061
+ * @since 1.143
18062
+ */
18063
+ getTableActions(): Control1[];
16586
18064
  /**
16587
18065
  * Gets current value of property {@link #getThreshold threshold}.
16588
18066
  *
@@ -16666,6 +18144,20 @@ declare module "sap/ui/mdc/Table" {
16666
18144
  */
16667
18145
  oColumn: Column
16668
18146
  ): int;
18147
+ /**
18148
+ * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getTableActions tableActions}.
18149
+ * and returns its index if found or -1 otherwise.
18150
+ *
18151
+ * @since 1.143
18152
+ *
18153
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
18154
+ */
18155
+ indexOfTableAction(
18156
+ /**
18157
+ * The tableAction whose index is looked for
18158
+ */
18159
+ oTableAction: Control1
18160
+ ): int;
16669
18161
  /**
16670
18162
  * Returns a `Promise` that resolves after the table has been initialized, and after it has been created
16671
18163
  * or its type has been changed.
@@ -16674,6 +18166,25 @@ declare module "sap/ui/mdc/Table" {
16674
18166
  * @returns A `Promise` that resolves after the table has been initialized
16675
18167
  */
16676
18168
  initialized(): Promise<any>;
18169
+ /**
18170
+ * Inserts a tableAction into the aggregation {@link #getTableActions tableActions}.
18171
+ *
18172
+ * @since 1.143
18173
+ *
18174
+ * @returns Reference to `this` in order to allow method chaining
18175
+ */
18176
+ insertTableAction(
18177
+ /**
18178
+ * The tableAction to insert; if empty, nothing is inserted
18179
+ */
18180
+ oTableAction: Control1,
18181
+ /**
18182
+ * The `0`-based index the tableAction should be inserted at; for a negative value of `iIndex`, the tableAction
18183
+ * is inserted at position 0; for a value greater than the current size of the aggregation, the tableAction
18184
+ * is inserted at the last position
18185
+ */
18186
+ iIndex: int
18187
+ ): this;
16677
18188
  /**
16678
18189
  * Checks whether the table is bound.
16679
18190
  *
@@ -16690,6 +18201,29 @@ declare module "sap/ui/mdc/Table" {
16690
18201
  * for example because there are invalid filters.
16691
18202
  */
16692
18203
  rebind(): Promise<any>;
18204
+ /**
18205
+ * Removes all the controls from the aggregation {@link #getTableActions tableActions}.
18206
+ *
18207
+ * Additionally, it unregisters them from the hosting UIArea.
18208
+ *
18209
+ * @since 1.143
18210
+ *
18211
+ * @returns An array of the removed elements (might be empty)
18212
+ */
18213
+ removeAllTableActions(): Control1[];
18214
+ /**
18215
+ * Removes a tableAction from the aggregation {@link #getTableActions tableActions}.
18216
+ *
18217
+ * @since 1.143
18218
+ *
18219
+ * @returns The removed tableAction or `null`
18220
+ */
18221
+ removeTableAction(
18222
+ /**
18223
+ * The tableAction to remove or its index or id
18224
+ */
18225
+ vTableAction: int | string | Control1
18226
+ ): Control1 | null;
16693
18227
  /**
16694
18228
  * Scrolls the table to the row with the given index. Depending on the table type, this might cause additional
16695
18229
  * requests. If the given index is -1, it will scroll to the end of the table based on the length of the
@@ -17760,6 +19294,23 @@ declare module "sap/ui/mdc/Table" {
17760
19294
  */
17761
19295
  actions?: Control1[] | Control1 | AggregationBindingInfo | `{${string}}`;
17762
19296
 
19297
+ /**
19298
+ * Additional table-related actions that are positioned together with other table-generated actions, based
19299
+ * on the {@link sap.ui.mdc.table.ActionLayoutData ActionLayoutData} provided.
19300
+ *
19301
+ * **Note:** All actions should use layout data of the {@link sap.ui.mdc.table.ActionLayoutData ActionLayoutData }
19302
+ * type to ensure correct ordering. Actions that do not use this layout data will be placed after the table-generated
19303
+ * actions.
19304
+ * **Note:** Like other table-generated actions, these actions are excluded from the UI adaptation.
19305
+ *
19306
+ * @since 1.143
19307
+ */
19308
+ tableActions?:
19309
+ | Control1[]
19310
+ | Control1
19311
+ | AggregationBindingInfo
19312
+ | `{${string}}`;
19313
+
17763
19314
  /**
17764
19315
  * VariantManagement control for the table.
17765
19316
  */
@@ -17975,6 +19526,138 @@ declare module "sap/ui/mdc/Table" {
17975
19526
  >;
17976
19527
  }
17977
19528
 
19529
+ declare module "sap/ui/mdc/table/ActionLayoutData" {
19530
+ import {
19531
+ default as OverflowToolbarLayoutData,
19532
+ $OverflowToolbarLayoutDataSettings,
19533
+ } from "sap/m/OverflowToolbarLayoutData";
19534
+
19535
+ import { IActionLayoutData } from "sap/ui/mdc/library";
19536
+
19537
+ import ElementMetadata from "sap/ui/core/ElementMetadata";
19538
+
19539
+ import TableActionPosition from "sap/ui/mdc/enums/TableActionPosition";
19540
+
19541
+ import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
19542
+
19543
+ /**
19544
+ * Defines the layout data for the {@link sap.ui.mdc.Table#getActions actions} and {@link sap.ui.mdc.Table#getTableActions tableActions }
19545
+ * of the {@link sap.ui.mdc.Table Table}.
19546
+ *
19547
+ * @since 1.143
19548
+ */
19549
+ export default class ActionLayoutData
19550
+ extends OverflowToolbarLayoutData
19551
+ implements IActionLayoutData
19552
+ {
19553
+ __implements__sap_ui_mdc_IActionLayoutData: boolean;
19554
+ /**
19555
+ * Constructor for a new `ActionLayoutData`.
19556
+ *
19557
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
19558
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
19559
+ * of the syntax of the settings object.
19560
+ */
19561
+ constructor(
19562
+ /**
19563
+ * Initial settings for the new layout data
19564
+ */
19565
+ mSettings?: $ActionLayoutDataSettings
19566
+ );
19567
+ /**
19568
+ * Constructor for a new `ActionLayoutData`.
19569
+ *
19570
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
19571
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
19572
+ * of the syntax of the settings object.
19573
+ */
19574
+ constructor(
19575
+ /**
19576
+ * ID for the new layout data, generated automatically if no ID is given
19577
+ */
19578
+ sId?: string,
19579
+ /**
19580
+ * Initial settings for the new layout data
19581
+ */
19582
+ mSettings?: $ActionLayoutDataSettings
19583
+ );
19584
+
19585
+ /**
19586
+ * Creates a new subclass of class sap.ui.mdc.table.ActionLayoutData with name `sClassName` and enriches
19587
+ * it with the information contained in `oClassInfo`.
19588
+ *
19589
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.m.OverflowToolbarLayoutData.extend}.
19590
+ *
19591
+ *
19592
+ * @returns Created class / constructor function
19593
+ */
19594
+ static extend<T extends Record<string, unknown>>(
19595
+ /**
19596
+ * Name of the class being created
19597
+ */
19598
+ sClassName: string,
19599
+ /**
19600
+ * Object literal with information about the class
19601
+ */
19602
+ oClassInfo?: sap.ClassInfo<T, ActionLayoutData>,
19603
+ /**
19604
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
19605
+ * used by this class
19606
+ */
19607
+ FNMetaImpl?: Function
19608
+ ): Function;
19609
+ /**
19610
+ * Returns a metadata object for class sap.ui.mdc.table.ActionLayoutData.
19611
+ *
19612
+ *
19613
+ * @returns Metadata object describing this class
19614
+ */
19615
+ static getMetadata(): ElementMetadata;
19616
+ /**
19617
+ * Gets current value of property {@link #getPosition position}.
19618
+ *
19619
+ * Defines the position of the action within the group of table actions.
19620
+ *
19621
+ * Default value is `EndActions`.
19622
+ *
19623
+ *
19624
+ * @returns Value of property `position`
19625
+ */
19626
+ getPosition(): TableActionPosition;
19627
+ /**
19628
+ * Sets a new value for property {@link #getPosition position}.
19629
+ *
19630
+ * Defines the position of the action within the group of table actions.
19631
+ *
19632
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19633
+ *
19634
+ * Default value is `EndActions`.
19635
+ *
19636
+ *
19637
+ * @returns Reference to `this` in order to allow method chaining
19638
+ */
19639
+ setPosition(
19640
+ /**
19641
+ * New value for property `position`
19642
+ */
19643
+ sPosition?: TableActionPosition | keyof typeof TableActionPosition
19644
+ ): this;
19645
+ }
19646
+ /**
19647
+ * Describes the settings that can be provided to the ActionLayoutData constructor.
19648
+ */
19649
+ export interface $ActionLayoutDataSettings
19650
+ extends $OverflowToolbarLayoutDataSettings {
19651
+ /**
19652
+ * Defines the position of the action within the group of table actions.
19653
+ */
19654
+ position?:
19655
+ | (TableActionPosition | keyof typeof TableActionPosition)
19656
+ | PropertyBindingInfo
19657
+ | `{${string}}`;
19658
+ }
19659
+ }
19660
+
17978
19661
  declare module "sap/ui/mdc/table/Column" {
17979
19662
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
17980
19663
 
@@ -20028,6 +21711,8 @@ declare module "sap/ui/mdc/table/ResponsiveTableType" {
20028
21711
 
20029
21712
  import ElementMetadata from "sap/ui/core/ElementMetadata";
20030
21713
 
21714
+ import TablePopinDisplay from "sap/ui/mdc/enums/TablePopinDisplay";
21715
+
20031
21716
  import { PopinLayout } from "sap/m/library";
20032
21717
 
20033
21718
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
@@ -20127,6 +21812,18 @@ declare module "sap/ui/mdc/table/ResponsiveTableType" {
20127
21812
  * @returns Value of property `growingMode`
20128
21813
  */
20129
21814
  getGrowingMode(): TableGrowingMode;
21815
+ /**
21816
+ * Gets current value of property {@link #getPopinDisplay popinDisplay}.
21817
+ *
21818
+ * Defines how the pop-in content is displayed.
21819
+ *
21820
+ * Default value is `Inline`.
21821
+ *
21822
+ * @since 1.143
21823
+ *
21824
+ * @returns Value of property `popinDisplay`
21825
+ */
21826
+ getPopinDisplay(): TablePopinDisplay;
20130
21827
  /**
20131
21828
  * Gets current value of property {@link #getPopinLayout popinLayout}.
20132
21829
  *
@@ -20198,6 +21895,25 @@ declare module "sap/ui/mdc/table/ResponsiveTableType" {
20198
21895
  */
20199
21896
  sGrowingMode?: TableGrowingMode | keyof typeof TableGrowingMode
20200
21897
  ): this;
21898
+ /**
21899
+ * Sets a new value for property {@link #getPopinDisplay popinDisplay}.
21900
+ *
21901
+ * Defines how the pop-in content is displayed.
21902
+ *
21903
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
21904
+ *
21905
+ * Default value is `Inline`.
21906
+ *
21907
+ * @since 1.143
21908
+ *
21909
+ * @returns Reference to `this` in order to allow method chaining
21910
+ */
21911
+ setPopinDisplay(
21912
+ /**
21913
+ * New value for property `popinDisplay`
21914
+ */
21915
+ sPopinDisplay?: TablePopinDisplay | keyof typeof TablePopinDisplay
21916
+ ): this;
20201
21917
  /**
20202
21918
  * Sets a new value for property {@link #getPopinLayout popinLayout}.
20203
21919
  *
@@ -20293,6 +22009,16 @@ declare module "sap/ui/mdc/table/ResponsiveTableType" {
20293
22009
  | (PopinLayout | keyof typeof PopinLayout)
20294
22010
  | PropertyBindingInfo
20295
22011
  | `{${string}}`;
22012
+
22013
+ /**
22014
+ * Defines how the pop-in content is displayed.
22015
+ *
22016
+ * @since 1.143
22017
+ */
22018
+ popinDisplay?:
22019
+ | (TablePopinDisplay | keyof typeof TablePopinDisplay)
22020
+ | PropertyBindingInfo
22021
+ | `{${string}}`;
20296
22022
  }
20297
22023
  }
20298
22024
 
@@ -25918,6 +27644,8 @@ declare namespace sap {
25918
27644
 
25919
27645
  "sap/ui/mdc/enums/FilterBarValidationStatus": undefined;
25920
27646
 
27647
+ "sap/ui/mdc/enums/GeomapControlPosition": undefined;
27648
+
25921
27649
  "sap/ui/mdc/enums/LinkType": undefined;
25922
27650
 
25923
27651
  "sap/ui/mdc/enums/OperatorName": undefined;
@@ -25932,12 +27660,16 @@ declare namespace sap {
25932
27660
 
25933
27661
  "sap/ui/mdc/enums/RequestShowContainerReason": undefined;
25934
27662
 
27663
+ "sap/ui/mdc/enums/TableActionPosition": undefined;
27664
+
25935
27665
  "sap/ui/mdc/enums/TableGrowingMode": undefined;
25936
27666
 
25937
27667
  "sap/ui/mdc/enums/TableMultiSelectMode": undefined;
25938
27668
 
25939
27669
  "sap/ui/mdc/enums/TableP13nMode": undefined;
25940
27670
 
27671
+ "sap/ui/mdc/enums/TablePopinDisplay": undefined;
27672
+
25941
27673
  "sap/ui/mdc/enums/TableRowActionType": undefined;
25942
27674
 
25943
27675
  "sap/ui/mdc/enums/TableRowCountMode": undefined;
@@ -26018,6 +27750,12 @@ declare namespace sap {
26018
27750
 
26019
27751
  "sap/ui/mdc/FilterField": undefined;
26020
27752
 
27753
+ "sap/ui/mdc/Geomap": undefined;
27754
+
27755
+ "sap/ui/mdc/geomap/Item": undefined;
27756
+
27757
+ "sap/ui/mdc/GeomapDelegate": undefined;
27758
+
26021
27759
  "sap/ui/mdc/library": undefined;
26022
27760
 
26023
27761
  "sap/ui/mdc/Link": undefined;
@@ -26044,6 +27782,8 @@ declare namespace sap {
26044
27782
 
26045
27783
  "sap/ui/mdc/odata/v4/ChartDelegate": undefined;
26046
27784
 
27785
+ "sap/ui/mdc/odata/v4/GeomapDelegate": undefined;
27786
+
26047
27787
  "sap/ui/mdc/odata/v4/TableDelegate": undefined;
26048
27788
 
26049
27789
  "sap/ui/mdc/odata/v4/TypeMap": undefined;
@@ -26058,6 +27798,8 @@ declare namespace sap {
26058
27798
 
26059
27799
  "sap/ui/mdc/Table": undefined;
26060
27800
 
27801
+ "sap/ui/mdc/table/ActionLayoutData": undefined;
27802
+
26061
27803
  "sap/ui/mdc/table/Column": undefined;
26062
27804
 
26063
27805
  "sap/ui/mdc/table/ColumnSettings": undefined;