@openui5/ts-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/ts-types",
3
- "version": "1.121.1",
3
+ "version": "1.122.1",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://openui5.org",
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 namespace sap {
4
4
  /**
@@ -80,6 +80,17 @@ declare namespace sap {
80
80
  | sap.ui.base.ManagedObject.PropertyBindingInfo
81
81
  | `{${string}}`;
82
82
 
83
+ /**
84
+ * Defines the type of text wrapping to be used inside the header. This applies to title, subtitle and details
85
+ * texts of the header.
86
+ *
87
+ * @experimental (since 1.122) - this feature is experimental and the API may change.
88
+ */
89
+ wrappingType?:
90
+ | sap.m.WrappingType
91
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
92
+ | `{${string}}`;
93
+
83
94
  /**
84
95
  * Defines the toolbar.
85
96
  *
@@ -589,6 +600,19 @@ declare namespace sap {
589
600
  * @experimental (since 1.86)
590
601
  */
591
602
  getToolbar(): sap.ui.core.Control;
603
+ /**
604
+ * Gets current value of property {@link #getWrappingType wrappingType}.
605
+ *
606
+ * Defines the type of text wrapping to be used inside the header. This applies to title, subtitle and details
607
+ * texts of the header.
608
+ *
609
+ * Default value is `Normal`.
610
+ *
611
+ * @experimental (since 1.122) - this feature is experimental and the API may change.
612
+ *
613
+ * @returns Value of property `wrappingType`
614
+ */
615
+ getWrappingType(): sap.m.WrappingType;
592
616
  /**
593
617
  * Checks for the provided `sap.m.Text` in the aggregation {@link #getBannerLines bannerLines}. and returns
594
618
  * its index if found or -1 otherwise.
@@ -706,6 +730,26 @@ declare namespace sap {
706
730
  */
707
731
  oToolbar: sap.ui.core.Control
708
732
  ): this;
733
+ /**
734
+ * Sets a new value for property {@link #getWrappingType wrappingType}.
735
+ *
736
+ * Defines the type of text wrapping to be used inside the header. This applies to title, subtitle and details
737
+ * texts of the header.
738
+ *
739
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
740
+ *
741
+ * Default value is `Normal`.
742
+ *
743
+ * @experimental (since 1.122) - this feature is experimental and the API may change.
744
+ *
745
+ * @returns Reference to `this` in order to allow method chaining
746
+ */
747
+ setWrappingType(
748
+ /**
749
+ * New value for property `wrappingType`
750
+ */
751
+ sWrappingType?: sap.m.WrappingType
752
+ ): this;
709
753
  }
710
754
  /**
711
755
  * Displays general information in the header of the {@link sap.f.Card}.