@openui5/types 1.121.1 → 1.122.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/types",
3
- "version": "1.121.1",
3
+ "version": "1.122.1",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://sap.github.io/ui5-typescript",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.121.1
1
+ // For Library Version: 1.122.1
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -1581,6 +1581,8 @@ declare module "sap/f/cards/BaseHeader" {
1581
1581
 
1582
1582
  import ElementMetadata from "sap/ui/core/ElementMetadata";
1583
1583
 
1584
+ import { WrappingType } from "sap/m/library";
1585
+
1584
1586
  import {
1585
1587
  PropertyBindingInfo,
1586
1588
  AggregationBindingInfo,
@@ -1731,6 +1733,19 @@ declare module "sap/f/cards/BaseHeader" {
1731
1733
  * @experimental (since 1.86)
1732
1734
  */
1733
1735
  getToolbar(): Control;
1736
+ /**
1737
+ * Gets current value of property {@link #getWrappingType wrappingType}.
1738
+ *
1739
+ * Defines the type of text wrapping to be used inside the header. This applies to title, subtitle and details
1740
+ * texts of the header.
1741
+ *
1742
+ * Default value is `Normal`.
1743
+ *
1744
+ * @experimental (since 1.122) - this feature is experimental and the API may change.
1745
+ *
1746
+ * @returns Value of property `wrappingType`
1747
+ */
1748
+ getWrappingType(): WrappingType | keyof typeof WrappingType;
1734
1749
  /**
1735
1750
  * Checks for the provided `sap.m.Text` in the aggregation {@link #getBannerLines bannerLines}. and returns
1736
1751
  * its index if found or -1 otherwise.
@@ -1848,6 +1863,26 @@ declare module "sap/f/cards/BaseHeader" {
1848
1863
  */
1849
1864
  oToolbar: Control
1850
1865
  ): this;
1866
+ /**
1867
+ * Sets a new value for property {@link #getWrappingType wrappingType}.
1868
+ *
1869
+ * Defines the type of text wrapping to be used inside the header. This applies to title, subtitle and details
1870
+ * texts of the header.
1871
+ *
1872
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1873
+ *
1874
+ * Default value is `Normal`.
1875
+ *
1876
+ * @experimental (since 1.122) - this feature is experimental and the API may change.
1877
+ *
1878
+ * @returns Reference to `this` in order to allow method chaining
1879
+ */
1880
+ setWrappingType(
1881
+ /**
1882
+ * New value for property `wrappingType`
1883
+ */
1884
+ sWrappingType?: WrappingType | keyof typeof WrappingType
1885
+ ): this;
1851
1886
  }
1852
1887
 
1853
1888
  export interface $BaseHeaderSettings extends $ControlSettings {
@@ -1870,6 +1905,17 @@ declare module "sap/f/cards/BaseHeader" {
1870
1905
  */
1871
1906
  statusVisible?: boolean | PropertyBindingInfo | `{${string}}`;
1872
1907
 
1908
+ /**
1909
+ * Defines the type of text wrapping to be used inside the header. This applies to title, subtitle and details
1910
+ * texts of the header.
1911
+ *
1912
+ * @experimental (since 1.122) - this feature is experimental and the API may change.
1913
+ */
1914
+ wrappingType?:
1915
+ | (WrappingType | keyof typeof WrappingType)
1916
+ | PropertyBindingInfo
1917
+ | `{${string}}`;
1918
+
1873
1919
  /**
1874
1920
  * Defines the toolbar.
1875
1921
  *