@openui5/ts-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 +1366 -198
- package/types/sap.m.d.ts +329 -23
- 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 +53 -4
- package/types/sap.ui.layout.d.ts +5 -5
- package/types/sap.ui.mdc.d.ts +426 -204
- 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 +94 -23
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +601 -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 +46 -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 namespace sap {
|
|
4
4
|
/**
|
|
@@ -330,6 +330,18 @@ declare namespace sap {
|
|
|
330
330
|
* is set.
|
|
331
331
|
*/
|
|
332
332
|
footerLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
336
|
+
* control.
|
|
337
|
+
*
|
|
338
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
339
|
+
*
|
|
340
|
+
* @since 1.127.0
|
|
341
|
+
*/
|
|
342
|
+
headerContentLabel?:
|
|
343
|
+
| string
|
|
344
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
333
345
|
}
|
|
334
346
|
|
|
335
347
|
/**
|
|
@@ -2683,6 +2695,19 @@ declare namespace sap {
|
|
|
2683
2695
|
* @returns Value of property `footerRole`
|
|
2684
2696
|
*/
|
|
2685
2697
|
getFooterRole(): sap.ui.core.AccessibleLandmarkRole;
|
|
2698
|
+
/**
|
|
2699
|
+
* Gets current value of property {@link #getHeaderContentLabel headerContentLabel}.
|
|
2700
|
+
*
|
|
2701
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
2702
|
+
* control.
|
|
2703
|
+
*
|
|
2704
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
2705
|
+
*
|
|
2706
|
+
* @since 1.127.0
|
|
2707
|
+
*
|
|
2708
|
+
* @returns Value of property `headerContentLabel`
|
|
2709
|
+
*/
|
|
2710
|
+
getHeaderContentLabel(): string;
|
|
2686
2711
|
/**
|
|
2687
2712
|
* Gets current value of property {@link #getHeaderLabel headerLabel}.
|
|
2688
2713
|
*
|
|
@@ -2841,6 +2866,26 @@ declare namespace sap {
|
|
|
2841
2866
|
*/
|
|
2842
2867
|
sFooterRole?: sap.ui.core.AccessibleLandmarkRole
|
|
2843
2868
|
): this;
|
|
2869
|
+
/**
|
|
2870
|
+
* Sets a new value for property {@link #getHeaderContentLabel headerContentLabel}.
|
|
2871
|
+
*
|
|
2872
|
+
* Texts which describe the landmark of the section inside the header container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
2873
|
+
* control.
|
|
2874
|
+
*
|
|
2875
|
+
* If not set, default "Expanded header" aria-label is set.
|
|
2876
|
+
*
|
|
2877
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2878
|
+
*
|
|
2879
|
+
* @since 1.127.0
|
|
2880
|
+
*
|
|
2881
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2882
|
+
*/
|
|
2883
|
+
setHeaderContentLabel(
|
|
2884
|
+
/**
|
|
2885
|
+
* New value for property `headerContentLabel`
|
|
2886
|
+
*/
|
|
2887
|
+
sHeaderContentLabel?: string
|
|
2888
|
+
): this;
|
|
2844
2889
|
/**
|
|
2845
2890
|
* Sets a new value for property {@link #getHeaderLabel headerLabel}.
|
|
2846
2891
|
*
|