@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.
- package/package.json +1 -1
- package/types/sap.f.d.ts +1414 -225
- package/types/sap.m.d.ts +327 -26
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +10 -4
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +48 -28
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +10 -4
- package/types/sap.ui.integration.d.ts +55 -5
- package/types/sap.ui.layout.d.ts +5 -5
- package/types/sap.ui.mdc.d.ts +426 -212
- 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 +91 -23
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +624 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- 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 +44 -1
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
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
|
|