@openui5/types 1.136.7 → 1.136.9
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 +37 -6
- 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.9
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -23508,7 +23508,16 @@ declare module "sap/m/Dialog" {
|
|
|
23508
23508
|
/**
|
|
23509
23509
|
* Escape handler for sap.m.Dialog control.
|
|
23510
23510
|
*/
|
|
23511
|
-
export type EscapeHandler = (oHandlers:
|
|
23511
|
+
export type EscapeHandler = (oHandlers: {
|
|
23512
|
+
/**
|
|
23513
|
+
* Call this function if the dialog should be closed.
|
|
23514
|
+
*/
|
|
23515
|
+
resolve: () => void;
|
|
23516
|
+
/**
|
|
23517
|
+
* Call this function if the dialog should not be closed.
|
|
23518
|
+
*/
|
|
23519
|
+
reject: () => void;
|
|
23520
|
+
}) => void;
|
|
23512
23521
|
|
|
23513
23522
|
/**
|
|
23514
23523
|
* Describes the settings that can be provided to the Dialog constructor.
|
|
@@ -61430,8 +61439,8 @@ declare module "sap/m/MessageToast" {
|
|
|
61430
61439
|
* sap.m.MessageToast.show("This message should appear in the message toast", {
|
|
61431
61440
|
* duration: 3000, // default
|
|
61432
61441
|
* width: "15em", // default
|
|
61433
|
-
* my: "
|
|
61434
|
-
* at: "
|
|
61442
|
+
* my: "CenterBottom", // default
|
|
61443
|
+
* at: "CenterBottom", // default
|
|
61435
61444
|
* of: window, // default
|
|
61436
61445
|
* offset: "0 0", // default
|
|
61437
61446
|
* collision: "fit fit", // default
|
|
@@ -108823,7 +108832,11 @@ declare module "sap/m/SearchField" {
|
|
|
108823
108832
|
|
|
108824
108833
|
import { IShellBar } from "sap/f/library";
|
|
108825
108834
|
|
|
108826
|
-
import {
|
|
108835
|
+
import {
|
|
108836
|
+
IToolbarInteractiveControl,
|
|
108837
|
+
IOverflowToolbarContent,
|
|
108838
|
+
OverflowToolbarConfig,
|
|
108839
|
+
} from "sap/m/library";
|
|
108827
108840
|
|
|
108828
108841
|
import SuggestionItem from "sap/m/SuggestionItem";
|
|
108829
108842
|
|
|
@@ -108854,11 +108867,16 @@ declare module "sap/m/SearchField" {
|
|
|
108854
108867
|
*/
|
|
108855
108868
|
export default class SearchField
|
|
108856
108869
|
extends Control
|
|
108857
|
-
implements
|
|
108870
|
+
implements
|
|
108871
|
+
IFormContent,
|
|
108872
|
+
IShellBar,
|
|
108873
|
+
IToolbarInteractiveControl,
|
|
108874
|
+
IOverflowToolbarContent
|
|
108858
108875
|
{
|
|
108859
108876
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
108860
108877
|
__implements__sap_f_IShellBar: boolean;
|
|
108861
108878
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
108879
|
+
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
108862
108880
|
/**
|
|
108863
108881
|
* Constructor for a new SearchField.
|
|
108864
108882
|
*
|
|
@@ -109361,6 +109379,14 @@ declare module "sap/m/SearchField" {
|
|
|
109361
109379
|
* @returns Value of property `maxLength`
|
|
109362
109380
|
*/
|
|
109363
109381
|
getMaxLength(): int;
|
|
109382
|
+
/**
|
|
109383
|
+
* Enables the `sap.m.SearchField` to be used inside sap.m.OverflowToolbar. Required by the {@link sap.m.IOverflowToolbarContent }
|
|
109384
|
+
* interface.
|
|
109385
|
+
*
|
|
109386
|
+
*
|
|
109387
|
+
* @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
|
|
109388
|
+
*/
|
|
109389
|
+
getOverflowToolbarConfig(): OverflowToolbarConfig;
|
|
109364
109390
|
/**
|
|
109365
109391
|
* Gets current value of property {@link #getPlaceholder placeholder}.
|
|
109366
109392
|
*
|
|
@@ -128978,6 +129004,11 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
128978
129004
|
* The end date as a UI5Date or JavaScript Date object of the focused grid cell.
|
|
128979
129005
|
*/
|
|
128980
129006
|
endDate?: object;
|
|
129007
|
+
|
|
129008
|
+
/**
|
|
129009
|
+
* The original browser event.
|
|
129010
|
+
*/
|
|
129011
|
+
originalEvent?: object;
|
|
128981
129012
|
}
|
|
128982
129013
|
|
|
128983
129014
|
/**
|
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.9
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -84580,11 +84580,11 @@ declare module "sap/ui/test/Opa5" {
|
|
|
84580
84580
|
* whether a function is used as arrangement or action. Each function typically contains one or multiple
|
|
84581
84581
|
* `waitFor` statements.
|
|
84582
84582
|
*/
|
|
84583
|
-
actions?: Record<string,
|
|
84583
|
+
actions?: Record<string, Function> | Function;
|
|
84584
84584
|
/**
|
|
84585
84585
|
* A map or a class of functions that can be used as assertions in Opa tests.
|
|
84586
84586
|
*/
|
|
84587
|
-
assertions?: Record<string,
|
|
84587
|
+
assertions?: Record<string, Function> | Function;
|
|
84588
84588
|
};
|
|
84589
84589
|
}
|
|
84590
84590
|
|
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.9
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/integration/library" {
|
|
4
4
|
import { URI } from "sap/ui/core/library";
|
|
@@ -3706,7 +3706,7 @@ declare module "sap/ui/integration/Extension" {
|
|
|
3706
3706
|
*
|
|
3707
3707
|
* @returns Value of property `formatters`
|
|
3708
3708
|
*/
|
|
3709
|
-
getFormatters(): Record<string,
|
|
3709
|
+
getFormatters(): Record<string, Function> | undefined;
|
|
3710
3710
|
/**
|
|
3711
3711
|
* Override this method to lazy load dependencies for the extension.
|
|
3712
3712
|
*
|
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