@openui5/ts-types 1.120.12 → 1.120.13

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.120.12",
3
+ "version": "1.120.13",
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.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -10114,6 +10114,11 @@ declare namespace sap {
10114
10114
  * Reference to the button that has been pressed
10115
10115
  */
10116
10116
  image?: sap.m.Image;
10117
+
10118
+ /**
10119
+ * Reference to the button that has been pressed
10120
+ */
10121
+ button?: sap.m.Button;
10117
10122
  }
10118
10123
 
10119
10124
  /**
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -280,7 +280,7 @@ declare namespace sap {
280
280
  }
281
281
  }
282
282
 
283
- // For Library Version: 1.120.12
283
+ // For Library Version: 1.120.13
284
284
 
285
285
  declare module "sap/base/assert" {
286
286
  /**
@@ -62730,7 +62730,8 @@ declare namespace sap {
62730
62730
  ): this;
62731
62731
  /**
62732
62732
  * Changes this binding's parameters and refreshes the binding. Since 1.111.0, a list binding's header context
62733
- * is deselected.
62733
+ * is deselected, but (since 1.120.13) only if the binding parameter '$$clearSelectionOnFilter' is set and
62734
+ * the '$filter' or '$search' parameter is changed.
62734
62735
  *
62735
62736
  * If there are pending changes that cannot be ignored, an error is thrown. Use {@link #hasPendingChanges }
62736
62737
  * to check if there are such pending changes. If there are, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch }
@@ -63259,7 +63260,8 @@ declare namespace sap {
63259
63260
  ): this;
63260
63261
  /**
63261
63262
  * Changes this binding's parameters and refreshes the binding. Since 1.111.0, a list binding's header context
63262
- * is deselected.
63263
+ * is deselected, but (since 1.120.13) only if the binding parameter '$$clearSelectionOnFilter' is set and
63264
+ * the '$filter' or '$search' parameter is changed.
63263
63265
  *
63264
63266
  * If there are pending changes that cannot be ignored, an error is thrown. Use {@link #hasPendingChanges }
63265
63267
  * to check if there are such pending changes. If there are, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch }
@@ -63478,7 +63480,8 @@ declare namespace sap {
63478
63480
  ): this;
63479
63481
  /**
63480
63482
  * Filters the list with the given filters. Since 1.97.0, if filters are unchanged, no request is sent,
63481
- * regardless of pending changes. Since 1.111.0, the header context is deselected.
63483
+ * regardless of pending changes. Since 1.111.0, all contexts (incl. the header context) are deselected,
63484
+ * but (since 1.120.13) only if the binding parameter '$$clearSelectionOnFilter' is set.
63482
63485
  *
63483
63486
  * If there are pending changes that cannot be ignored, an error is thrown. Use {@link #hasPendingChanges }
63484
63487
  * to check if there are such pending changes. If there are, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch }
@@ -64054,7 +64057,9 @@ declare namespace sap {
64054
64057
  * certain content will break the syntax of the system query option `$apply` and result in an invalid request.
64055
64058
  * If the OData service supports the proposal ODATA-1452,
64056
64059
  * then `ODataUtils.formatLiteral(sSearch, "Edm.String");` should be used to encapsulate the whole search
64057
- * string beforehand (see {@link sap.ui.model.odata.v4.ODataUtils.formatLiteral}).
64060
+ * string beforehand (see {@link sap.ui.model.odata.v4.ODataUtils.formatLiteral}). Since 1.120.13, all contexts,
64061
+ * including the header context are deselected if the '$$clearSelectionOnFilter' binding parameter is set
64062
+ * and the search parameter is changed.
64058
64063
  */
64059
64064
  search?: string;
64060
64065
  /**
@@ -65364,6 +65369,11 @@ declare namespace sap {
65364
65369
  * from its context's path for data service requests; only the value `true` is allowed.
65365
65370
  */
65366
65371
  $$canonicalPath?: boolean;
65372
+ /**
65373
+ * Whether the selection state of the list binding is cleared when a filter is changed; this includes dynamic
65374
+ * filters, '$filter', '$search', and `$$aggregation.search`. Supported since 1.120.13.
65375
+ */
65376
+ $$clearSelectionOnFilter?: boolean;
65367
65377
  /**
65368
65378
  * Whether this binding is considered for a match when {@link #getKeepAliveContext} is called; only the
65369
65379
  * value `true` is allowed. Must not be combined with `$apply`, `$$aggregation`, `$$canonicalPath`, or `$$sharedRequest`.
@@ -74570,9 +74580,9 @@ declare namespace sap {
74570
74580
  * @since 1.82.0
74571
74581
  *
74572
74582
  * @returns An array of indices that determine which parts of this type shall not propagate their model
74573
- * messages to the attached control
74583
+ * messages to the attached control; an empty array is returned by default
74574
74584
  */
74575
- getPartsIgnoringMessages(): number[];
74585
+ getPartsIgnoringMessages(): int[];
74576
74586
  /**
74577
74587
  * Returns whether the {@link #formatValue} and {@link #parseValue} methods operate on the internal, related
74578
74588
  * native JavaScript values.
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
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.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare namespace sap {
4
4
  /**