@openui5/ts-types 1.136.7 → 1.136.8
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 +1 -1
- package/types/sap.m.d.ts +13 -4
- package/types/sap.tnt.d.ts +1 -1
- 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 +3 -3
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +2 -2
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- 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 +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -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 +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.8
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -2489,7 +2489,16 @@ declare namespace sap {
|
|
|
2489
2489
|
/**
|
|
2490
2490
|
* Escape handler for sap.m.Dialog control.
|
|
2491
2491
|
*/
|
|
2492
|
-
type EscapeHandler = (oHandlers:
|
|
2492
|
+
type EscapeHandler = (oHandlers: {
|
|
2493
|
+
/**
|
|
2494
|
+
* Call this function if the dialog should be closed.
|
|
2495
|
+
*/
|
|
2496
|
+
resolve: () => void;
|
|
2497
|
+
/**
|
|
2498
|
+
* Call this function if the dialog should not be closed.
|
|
2499
|
+
*/
|
|
2500
|
+
reject: () => void;
|
|
2501
|
+
}) => void;
|
|
2493
2502
|
}
|
|
2494
2503
|
|
|
2495
2504
|
namespace MessageBox {
|
|
@@ -51749,8 +51758,8 @@ declare namespace sap {
|
|
|
51749
51758
|
* sap.m.MessageToast.show("This message should appear in the message toast", {
|
|
51750
51759
|
* duration: 3000, // default
|
|
51751
51760
|
* width: "15em", // default
|
|
51752
|
-
* my: "
|
|
51753
|
-
* at: "
|
|
51761
|
+
* my: "CenterBottom", // default
|
|
51762
|
+
* at: "CenterBottom", // default
|
|
51754
51763
|
* of: window, // default
|
|
51755
51764
|
* offset: "0 0", // default
|
|
51756
51765
|
* collision: "fit fit", // default
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -279,7 +279,7 @@ declare namespace sap {
|
|
|
279
279
|
"sap/ui/thirdparty/qunit-2": undefined;
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
|
-
// For Library Version: 1.136.
|
|
282
|
+
// For Library Version: 1.136.8
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -85950,11 +85950,11 @@ declare namespace sap {
|
|
|
85950
85950
|
* whether a function is used as arrangement or action. Each function typically contains one or multiple
|
|
85951
85951
|
* `waitFor` statements.
|
|
85952
85952
|
*/
|
|
85953
|
-
actions?: Record<string,
|
|
85953
|
+
actions?: Record<string, Function> | Function;
|
|
85954
85954
|
/**
|
|
85955
85955
|
* A map or a class of functions that can be used as assertions in Opa tests.
|
|
85956
85956
|
*/
|
|
85957
|
-
assertions?: Record<string,
|
|
85957
|
+
assertions?: Record<string, Function> | Function;
|
|
85958
85958
|
};
|
|
85959
85959
|
}
|
|
85960
85960
|
/**
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.8
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -3513,7 +3513,7 @@ declare namespace sap {
|
|
|
3513
3513
|
*
|
|
3514
3514
|
* @returns Value of property `formatters`
|
|
3515
3515
|
*/
|
|
3516
|
-
getFormatters(): Record<string,
|
|
3516
|
+
getFormatters(): Record<string, Function> | undefined;
|
|
3517
3517
|
/**
|
|
3518
3518
|
* Override this method to lazy load dependencies for the extension.
|
|
3519
3519
|
*
|
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED