@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/types",
3
- "version": "1.136.7",
3
+ "version": "1.136.9",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://sap.github.io/ui5-typescript",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
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: object) => void;
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: "center bottom", // default
61434
- * at: "center bottom", // default
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 { IToolbarInteractiveControl } from "sap/m/library";
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 IFormContent, IShellBar, IToolbarInteractiveControl
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
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -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.7
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, () => void> | Function;
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, () => void> | Function;
84587
+ assertions?: Record<string, Function> | Function;
84588
84588
  };
84589
84589
  }
84590
84590
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
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, () => void> | undefined;
3709
+ getFormatters(): Record<string, Function> | undefined;
3710
3710
  /**
3711
3711
  * Override this method to lazy load dependencies for the extension.
3712
3712
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.7
1
+ // For Library Version: 1.136.9
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**