@openui5/ts-types 1.105.0 → 1.106.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.
- package/package.json +1 -1
- package/types/sap.f.d.ts +80 -4
- package/types/sap.m.d.ts +387 -103
- package/types/sap.tnt.d.ts +3 -3
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +31 -31
- package/types/sap.ui.core.d.ts +426 -225
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -3
- package/types/sap.ui.integration.d.ts +64 -33
- package/types/sap.ui.layout.d.ts +7 -7
- package/types/sap.ui.mdc.d.ts +3 -1
- package/types/sap.ui.rta.d.ts +3 -1
- package/types/sap.ui.suite.d.ts +5 -5
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +26 -8
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +16 -16
- package/types/sap.ui.ux3.d.ts +11 -11
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +31 -28
- package/types/sap.ui.webc.main.d.ts +132 -104
- package/types/sap.uxap.d.ts +41 -1
package/types/sap.uxap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.106.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -1056,6 +1056,15 @@ declare namespace sap {
|
|
|
1056
1056
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
1057
1057
|
| `{${string}}`;
|
|
1058
1058
|
|
|
1059
|
+
/**
|
|
1060
|
+
* @SINCE 1.106
|
|
1061
|
+
*
|
|
1062
|
+
* Section heading content.
|
|
1063
|
+
*
|
|
1064
|
+
* Note: For some accessibility concerns we encourage you to use non-focusable elements.
|
|
1065
|
+
*/
|
|
1066
|
+
heading?: sap.ui.core.Control;
|
|
1067
|
+
|
|
1059
1068
|
/**
|
|
1060
1069
|
* The most recently selected Subsection by the user.
|
|
1061
1070
|
*/
|
|
@@ -6501,12 +6510,30 @@ declare namespace sap {
|
|
|
6501
6510
|
*/
|
|
6502
6511
|
oSubSection: sap.uxap.ObjectPageSubSection
|
|
6503
6512
|
): this;
|
|
6513
|
+
/**
|
|
6514
|
+
* @SINCE 1.106
|
|
6515
|
+
*
|
|
6516
|
+
* Destroys the heading in the aggregation {@link #getHeading heading}.
|
|
6517
|
+
*
|
|
6518
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6519
|
+
*/
|
|
6520
|
+
destroyHeading(): this;
|
|
6504
6521
|
/**
|
|
6505
6522
|
* Destroys all the subSections in the aggregation {@link #getSubSections subSections}.
|
|
6506
6523
|
*
|
|
6507
6524
|
* @returns Reference to `this` in order to allow method chaining
|
|
6508
6525
|
*/
|
|
6509
6526
|
destroySubSections(): this;
|
|
6527
|
+
/**
|
|
6528
|
+
* @SINCE 1.106
|
|
6529
|
+
*
|
|
6530
|
+
* Gets content of aggregation {@link #getHeading heading}.
|
|
6531
|
+
*
|
|
6532
|
+
* Section heading content.
|
|
6533
|
+
*
|
|
6534
|
+
* Note: For some accessibility concerns we encourage you to use non-focusable elements.
|
|
6535
|
+
*/
|
|
6536
|
+
getHeading(): sap.ui.core.Control;
|
|
6510
6537
|
/**
|
|
6511
6538
|
* ID of the element which is the current target of the association {@link #getSelectedSubSection selectedSubSection},
|
|
6512
6539
|
* or `null`.
|
|
@@ -6586,6 +6613,19 @@ declare namespace sap {
|
|
|
6586
6613
|
*/
|
|
6587
6614
|
vSubSection: int | string | sap.uxap.ObjectPageSubSection
|
|
6588
6615
|
): sap.uxap.ObjectPageSubSection | null;
|
|
6616
|
+
/**
|
|
6617
|
+
* @SINCE 1.106
|
|
6618
|
+
*
|
|
6619
|
+
* Sets the aggregated {@link #getHeading heading}.
|
|
6620
|
+
*
|
|
6621
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6622
|
+
*/
|
|
6623
|
+
setHeading(
|
|
6624
|
+
/**
|
|
6625
|
+
* The heading to set
|
|
6626
|
+
*/
|
|
6627
|
+
oHeading: sap.ui.core.Control
|
|
6628
|
+
): this;
|
|
6589
6629
|
/**
|
|
6590
6630
|
* Sets the associated {@link #getSelectedSubSection selectedSubSection}.
|
|
6591
6631
|
*
|