@openui5/types 1.136.8 → 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 +25 -3
- 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 +1 -1
- 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 +1 -1
- 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 {
|
|
@@ -108832,7 +108832,11 @@ declare module "sap/m/SearchField" {
|
|
|
108832
108832
|
|
|
108833
108833
|
import { IShellBar } from "sap/f/library";
|
|
108834
108834
|
|
|
108835
|
-
import {
|
|
108835
|
+
import {
|
|
108836
|
+
IToolbarInteractiveControl,
|
|
108837
|
+
IOverflowToolbarContent,
|
|
108838
|
+
OverflowToolbarConfig,
|
|
108839
|
+
} from "sap/m/library";
|
|
108836
108840
|
|
|
108837
108841
|
import SuggestionItem from "sap/m/SuggestionItem";
|
|
108838
108842
|
|
|
@@ -108863,11 +108867,16 @@ declare module "sap/m/SearchField" {
|
|
|
108863
108867
|
*/
|
|
108864
108868
|
export default class SearchField
|
|
108865
108869
|
extends Control
|
|
108866
|
-
implements
|
|
108870
|
+
implements
|
|
108871
|
+
IFormContent,
|
|
108872
|
+
IShellBar,
|
|
108873
|
+
IToolbarInteractiveControl,
|
|
108874
|
+
IOverflowToolbarContent
|
|
108867
108875
|
{
|
|
108868
108876
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
108869
108877
|
__implements__sap_f_IShellBar: boolean;
|
|
108870
108878
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
108879
|
+
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
108871
108880
|
/**
|
|
108872
108881
|
* Constructor for a new SearchField.
|
|
108873
108882
|
*
|
|
@@ -109370,6 +109379,14 @@ declare module "sap/m/SearchField" {
|
|
|
109370
109379
|
* @returns Value of property `maxLength`
|
|
109371
109380
|
*/
|
|
109372
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;
|
|
109373
109390
|
/**
|
|
109374
109391
|
* Gets current value of property {@link #getPlaceholder placeholder}.
|
|
109375
109392
|
*
|
|
@@ -128987,6 +129004,11 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
128987
129004
|
* The end date as a UI5Date or JavaScript Date object of the focused grid cell.
|
|
128988
129005
|
*/
|
|
128989
129006
|
endDate?: object;
|
|
129007
|
+
|
|
129008
|
+
/**
|
|
129009
|
+
* The original browser event.
|
|
129010
|
+
*/
|
|
129011
|
+
originalEvent?: object;
|
|
128990
129012
|
}
|
|
128991
129013
|
|
|
128992
129014
|
/**
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
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