@openui5/ts-types 1.105.1 → 1.107.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.1
1
+ // For Library Version: 1.107.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1047,6 +1047,14 @@ declare namespace sap {
1047
1047
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1048
1048
  | `{${string}}`;
1049
1049
 
1050
+ /**
1051
+ * Determines whether the Section title wraps on multiple lines, when the available space is not enough.
1052
+ */
1053
+ wrapTitle?:
1054
+ | boolean
1055
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1056
+ | `{${string}}`;
1057
+
1050
1058
  /**
1051
1059
  * The list of Subsections.
1052
1060
  */
@@ -1056,6 +1064,15 @@ declare namespace sap {
1056
1064
  | sap.ui.base.ManagedObject.AggregationBindingInfo
1057
1065
  | `{${string}}`;
1058
1066
 
1067
+ /**
1068
+ * @SINCE 1.106
1069
+ *
1070
+ * Section heading content.
1071
+ *
1072
+ * Note: For some accessibility concerns we encourage you to use non-focusable elements.
1073
+ */
1074
+ heading?: sap.ui.core.Control;
1075
+
1059
1076
  /**
1060
1077
  * The most recently selected Subsection by the user.
1061
1078
  */
@@ -6501,12 +6518,30 @@ declare namespace sap {
6501
6518
  */
6502
6519
  oSubSection: sap.uxap.ObjectPageSubSection
6503
6520
  ): this;
6521
+ /**
6522
+ * @SINCE 1.106
6523
+ *
6524
+ * Destroys the heading in the aggregation {@link #getHeading heading}.
6525
+ *
6526
+ * @returns Reference to `this` in order to allow method chaining
6527
+ */
6528
+ destroyHeading(): this;
6504
6529
  /**
6505
6530
  * Destroys all the subSections in the aggregation {@link #getSubSections subSections}.
6506
6531
  *
6507
6532
  * @returns Reference to `this` in order to allow method chaining
6508
6533
  */
6509
6534
  destroySubSections(): this;
6535
+ /**
6536
+ * @SINCE 1.106
6537
+ *
6538
+ * Gets content of aggregation {@link #getHeading heading}.
6539
+ *
6540
+ * Section heading content.
6541
+ *
6542
+ * Note: For some accessibility concerns we encourage you to use non-focusable elements.
6543
+ */
6544
+ getHeading(): sap.ui.core.Control;
6510
6545
  /**
6511
6546
  * ID of the element which is the current target of the association {@link #getSelectedSubSection selectedSubSection},
6512
6547
  * or `null`.
@@ -6538,6 +6573,16 @@ declare namespace sap {
6538
6573
  * @returns Value of property `titleUppercase`
6539
6574
  */
6540
6575
  getTitleUppercase(): boolean;
6576
+ /**
6577
+ * Gets current value of property {@link #getWrapTitle wrapTitle}.
6578
+ *
6579
+ * Determines whether the Section title wraps on multiple lines, when the available space is not enough.
6580
+ *
6581
+ * Default value is `false`.
6582
+ *
6583
+ * @returns Value of property `wrapTitle`
6584
+ */
6585
+ getWrapTitle(): boolean;
6541
6586
  /**
6542
6587
  * Checks for the provided `sap.uxap.ObjectPageSubSection` in the aggregation {@link #getSubSections subSections}.
6543
6588
  * and returns its index if found or -1 otherwise.
@@ -6586,6 +6631,19 @@ declare namespace sap {
6586
6631
  */
6587
6632
  vSubSection: int | string | sap.uxap.ObjectPageSubSection
6588
6633
  ): sap.uxap.ObjectPageSubSection | null;
6634
+ /**
6635
+ * @SINCE 1.106
6636
+ *
6637
+ * Sets the aggregated {@link #getHeading heading}.
6638
+ *
6639
+ * @returns Reference to `this` in order to allow method chaining
6640
+ */
6641
+ setHeading(
6642
+ /**
6643
+ * The heading to set
6644
+ */
6645
+ oHeading: sap.ui.core.Control
6646
+ ): this;
6589
6647
  /**
6590
6648
  * Sets the associated {@link #getSelectedSubSection selectedSubSection}.
6591
6649
  *
@@ -6632,6 +6690,23 @@ declare namespace sap {
6632
6690
  */
6633
6691
  bTitleUppercase?: boolean
6634
6692
  ): this;
6693
+ /**
6694
+ * Sets a new value for property {@link #getWrapTitle wrapTitle}.
6695
+ *
6696
+ * Determines whether the Section title wraps on multiple lines, when the available space is not enough.
6697
+ *
6698
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6699
+ *
6700
+ * Default value is `false`.
6701
+ *
6702
+ * @returns Reference to `this` in order to allow method chaining
6703
+ */
6704
+ setWrapTitle(
6705
+ /**
6706
+ * New value for property `wrapTitle`
6707
+ */
6708
+ bWrapTitle?: boolean
6709
+ ): this;
6635
6710
  }
6636
6711
  /**
6637
6712
  * @SINCE 1.26