@openui5/ts-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/ts-types",
3
- "version": "1.136.7",
3
+ "version": "1.136.9",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://openui5.org",
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 namespace sap {
4
4
  /**
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 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: object) => void;
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 {
@@ -48378,6 +48387,11 @@ declare namespace sap {
48378
48387
  * The end date as a UI5Date or JavaScript Date object of the focused grid cell.
48379
48388
  */
48380
48389
  endDate?: object;
48390
+
48391
+ /**
48392
+ * The original browser event.
48393
+ */
48394
+ originalEvent?: object;
48381
48395
  }
48382
48396
 
48383
48397
  /**
@@ -51749,8 +51763,8 @@ declare namespace sap {
51749
51763
  * sap.m.MessageToast.show("This message should appear in the message toast", {
51750
51764
  * duration: 3000, // default
51751
51765
  * width: "15em", // default
51752
- * my: "center bottom", // default
51753
- * at: "center bottom", // default
51766
+ * my: "CenterBottom", // default
51767
+ * at: "CenterBottom", // default
51754
51768
  * of: window, // default
51755
51769
  * offset: "0 0", // default
51756
51770
  * collision: "fit fit", // default
@@ -127329,11 +127343,13 @@ declare namespace sap {
127329
127343
  implements
127330
127344
  sap.ui.core.IFormContent,
127331
127345
  sap.f.IShellBar,
127332
- sap.m.IToolbarInteractiveControl
127346
+ sap.m.IToolbarInteractiveControl,
127347
+ sap.m.IOverflowToolbarContent
127333
127348
  {
127334
127349
  __implements__sap_ui_core_IFormContent: boolean;
127335
127350
  __implements__sap_f_IShellBar: boolean;
127336
127351
  __implements__sap_m_IToolbarInteractiveControl: boolean;
127352
+ __implements__sap_m_IOverflowToolbarContent: boolean;
127337
127353
  /**
127338
127354
  * Constructor for a new SearchField.
127339
127355
  *
@@ -127836,6 +127852,14 @@ declare namespace sap {
127836
127852
  * @returns Value of property `maxLength`
127837
127853
  */
127838
127854
  getMaxLength(): int;
127855
+ /**
127856
+ * Enables the `sap.m.SearchField` to be used inside sap.m.OverflowToolbar. Required by the {@link sap.m.IOverflowToolbarContent }
127857
+ * interface.
127858
+ *
127859
+ *
127860
+ * @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
127861
+ */
127862
+ getOverflowToolbarConfig(): sap.m.OverflowToolbarConfig;
127839
127863
  /**
127840
127864
  * Gets current value of property {@link #getPlaceholder placeholder}.
127841
127865
  *
@@ -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
  /**
@@ -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
  namespace ui {
@@ -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
  namespace ui {
@@ -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
  /**
@@ -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, () => void> | Function;
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, () => void> | Function;
85957
+ assertions?: Record<string, Function> | Function;
85958
85958
  };
85959
85959
  }
85960
85960
  /**
@@ -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 namespace sap {
4
4
  namespace ui {
@@ -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
  namespace ui {
@@ -3513,7 +3513,7 @@ declare namespace sap {
3513
3513
  *
3514
3514
  * @returns Value of property `formatters`
3515
3515
  */
3516
- getFormatters(): Record<string, () => void> | undefined;
3516
+ getFormatters(): Record<string, Function> | undefined;
3517
3517
  /**
3518
3518
  * Override this method to lazy load dependencies for the extension.
3519
3519
  *
@@ -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
  namespace ui {
@@ -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
  /**
@@ -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
  namespace ui {
@@ -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
  namespace ui {
@@ -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
  namespace ui {
@@ -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 namespace sap {
4
4
  namespace ui {
@@ -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
  namespace ui {
@@ -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
  namespace ui {
@@ -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
  namespace ui {
@@ -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
  namespace ui {
@@ -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
  /**