@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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.0
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
  *