@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 +1 -1
- package/types/sap.f.d.ts +45 -1
- package/types/sap.m.d.ts +986 -53
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +4 -1
- package/types/sap.ui.core.d.ts +337 -171
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -3
- package/types/sap.ui.integration.d.ts +5 -1
- package/types/sap.ui.layout.d.ts +4 -4
- package/types/sap.ui.mdc.d.ts +163 -39
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +15 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +4 -4
- package/types/sap.ui.ux3.d.ts +3 -3
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +50 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 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}.
|