@sapui5/types 1.139.2 → 1.139.4
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.chart.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +25 -3
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- 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.comp.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.export.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.richtexteditor.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.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.139.
|
|
1
|
+
// For Library Version: 1.139.3
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -109606,7 +109606,11 @@ declare module "sap/m/SearchField" {
|
|
|
109606
109606
|
|
|
109607
109607
|
import { IShellBar } from "sap/f/library";
|
|
109608
109608
|
|
|
109609
|
-
import {
|
|
109609
|
+
import {
|
|
109610
|
+
IToolbarInteractiveControl,
|
|
109611
|
+
IOverflowToolbarContent,
|
|
109612
|
+
OverflowToolbarConfig,
|
|
109613
|
+
} from "sap/m/library";
|
|
109610
109614
|
|
|
109611
109615
|
import SuggestionItem from "sap/m/SuggestionItem";
|
|
109612
109616
|
|
|
@@ -109637,11 +109641,16 @@ declare module "sap/m/SearchField" {
|
|
|
109637
109641
|
*/
|
|
109638
109642
|
export default class SearchField
|
|
109639
109643
|
extends Control
|
|
109640
|
-
implements
|
|
109644
|
+
implements
|
|
109645
|
+
IFormContent,
|
|
109646
|
+
IShellBar,
|
|
109647
|
+
IToolbarInteractiveControl,
|
|
109648
|
+
IOverflowToolbarContent
|
|
109641
109649
|
{
|
|
109642
109650
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
109643
109651
|
__implements__sap_f_IShellBar: boolean;
|
|
109644
109652
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
109653
|
+
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
109645
109654
|
/**
|
|
109646
109655
|
* Constructor for a new SearchField.
|
|
109647
109656
|
*
|
|
@@ -110144,6 +110153,14 @@ declare module "sap/m/SearchField" {
|
|
|
110144
110153
|
* @returns Value of property `maxLength`
|
|
110145
110154
|
*/
|
|
110146
110155
|
getMaxLength(): int;
|
|
110156
|
+
/**
|
|
110157
|
+
* Enables the `sap.m.SearchField` to be used inside sap.m.OverflowToolbar. Required by the {@link sap.m.IOverflowToolbarContent }
|
|
110158
|
+
* interface.
|
|
110159
|
+
*
|
|
110160
|
+
*
|
|
110161
|
+
* @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
|
|
110162
|
+
*/
|
|
110163
|
+
getOverflowToolbarConfig(): OverflowToolbarConfig;
|
|
110147
110164
|
/**
|
|
110148
110165
|
* Gets current value of property {@link #getPlaceholder placeholder}.
|
|
110149
110166
|
*
|
|
@@ -129775,6 +129792,11 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
129775
129792
|
* The end date as a UI5Date or JavaScript Date object of the focused grid cell.
|
|
129776
129793
|
*/
|
|
129777
129794
|
endDate?: object;
|
|
129795
|
+
|
|
129796
|
+
/**
|
|
129797
|
+
* The original browser event.
|
|
129798
|
+
*/
|
|
129799
|
+
originalEvent?: object;
|
|
129778
129800
|
}
|
|
129779
129801
|
|
|
129780
129802
|
/**
|
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.ovp.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.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.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED