@openui5/types 1.134.0 → 1.135.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 +2 -8
- package/types/sap.m.d.ts +330 -83
- package/types/sap.tnt.d.ts +215 -19
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +160 -40
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +14 -6
- package/types/sap.ui.integration.d.ts +2 -4
- package/types/sap.ui.layout.d.ts +14 -13
- package/types/sap.ui.mdc.d.ts +26 -6
- package/types/sap.ui.rta.d.ts +31 -5
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +30 -16
- package/types/sap.ui.table.d.ts +10 -18
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +32 -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 +10 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.135.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -20861,8 +20861,6 @@ declare module "sap/f/ShellBar" {
|
|
|
20861
20861
|
|
|
20862
20862
|
import { IBar } from "sap/m/library";
|
|
20863
20863
|
|
|
20864
|
-
import { IToolHeader } from "sap/tnt/library";
|
|
20865
|
-
|
|
20866
20864
|
import { BarContexts } from "sap/m/BarInPageEnabler";
|
|
20867
20865
|
|
|
20868
20866
|
import { URI } from "sap/ui/core/library";
|
|
@@ -20901,13 +20899,9 @@ declare module "sap/f/ShellBar" {
|
|
|
20901
20899
|
*
|
|
20902
20900
|
* @since 1.63
|
|
20903
20901
|
*/
|
|
20904
|
-
export default class ShellBar
|
|
20905
|
-
extends Control
|
|
20906
|
-
implements IShellBar, IBar, IToolHeader
|
|
20907
|
-
{
|
|
20902
|
+
export default class ShellBar extends Control implements IShellBar, IBar {
|
|
20908
20903
|
__implements__sap_f_IShellBar: boolean;
|
|
20909
20904
|
__implements__sap_m_IBar: boolean;
|
|
20910
|
-
__implements__sap_tnt_IToolHeader: boolean;
|
|
20911
20905
|
/**
|
|
20912
20906
|
* Constructor for a new `ShellBar`.
|
|
20913
20907
|
*
|