@openui5/types 1.127.0 → 1.128.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.127.0
1
+ // For Library Version: 1.128.0
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.0
1
+ // For Library Version: 1.128.0
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.0
1
+ // For Library Version: 1.128.0
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.0
1
+ // For Library Version: 1.128.0
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.0
1
+ // For Library Version: 1.128.0
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**
@@ -1675,6 +1675,19 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
1675
1675
  getFooterRole():
1676
1676
  | AccessibleLandmarkRole
1677
1677
  | keyof typeof AccessibleLandmarkRole;
1678
+ /**
1679
+ * Gets current value of property {@link #getHeaderContentLabel headerContentLabel}.
1680
+ *
1681
+ * Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
1682
+ * control.
1683
+ *
1684
+ * If not set, default "Expanded header" aria-label is set.
1685
+ *
1686
+ * @since 1.127.0
1687
+ *
1688
+ * @returns Value of property `headerContentLabel`
1689
+ */
1690
+ getHeaderContentLabel(): string;
1678
1691
  /**
1679
1692
  * Gets current value of property {@link #getHeaderLabel headerLabel}.
1680
1693
  *
@@ -1839,6 +1852,26 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
1839
1852
  */
1840
1853
  sFooterRole?: AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole
1841
1854
  ): this;
1855
+ /**
1856
+ * Sets a new value for property {@link #getHeaderContentLabel headerContentLabel}.
1857
+ *
1858
+ * Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
1859
+ * control.
1860
+ *
1861
+ * If not set, default "Expanded header" aria-label is set.
1862
+ *
1863
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1864
+ *
1865
+ * @since 1.127.0
1866
+ *
1867
+ * @returns Reference to `this` in order to allow method chaining
1868
+ */
1869
+ setHeaderContentLabel(
1870
+ /**
1871
+ * New value for property `headerContentLabel`
1872
+ */
1873
+ sHeaderContentLabel?: string
1874
+ ): this;
1842
1875
  /**
1843
1876
  * Sets a new value for property {@link #getHeaderLabel headerLabel}.
1844
1877
  *
@@ -2061,6 +2094,16 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
2061
2094
  * is set.
2062
2095
  */
2063
2096
  footerLabel?: string | PropertyBindingInfo;
2097
+
2098
+ /**
2099
+ * Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
2100
+ * control.
2101
+ *
2102
+ * If not set, default "Expanded header" aria-label is set.
2103
+ *
2104
+ * @since 1.127.0
2105
+ */
2106
+ headerContentLabel?: string | PropertyBindingInfo;
2064
2107
  }
2065
2108
  }
2066
2109