@openui5/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/types",
3
- "version": "1.120.12",
3
+ "version": "1.120.13",
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.120.12
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -20736,6 +20736,11 @@ declare module "sap/f/ShellBar" {
20736
20736
  * Reference to the button that has been pressed
20737
20737
  */
20738
20738
  image?: Image;
20739
+
20740
+ /**
20741
+ * Reference to the button that has been pressed
20742
+ */
20743
+ button?: Button;
20739
20744
  }
20740
20745
 
20741
20746
  /**
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 module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -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/tnt/library" {
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 module "sap/ui/codeeditor/library" {}
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 module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -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
  /**
@@ -53901,9 +53901,9 @@ declare module "sap/ui/model/CompositeType" {
53901
53901
  * @since 1.82.0
53902
53902
  *
53903
53903
  * @returns An array of indices that determine which parts of this type shall not propagate their model
53904
- * messages to the attached control
53904
+ * messages to the attached control; an empty array is returned by default
53905
53905
  */
53906
- getPartsIgnoringMessages(): number[];
53906
+ getPartsIgnoringMessages(): int[];
53907
53907
  /**
53908
53908
  * Returns whether the {@link #formatValue} and {@link #parseValue} methods operate on the internal, related
53909
53909
  * native JavaScript values.
@@ -70631,7 +70631,8 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
70631
70631
  ): this;
70632
70632
  /**
70633
70633
  * Changes this binding's parameters and refreshes the binding. Since 1.111.0, a list binding's header context
70634
- * is deselected.
70634
+ * is deselected, but (since 1.120.13) only if the binding parameter '$$clearSelectionOnFilter' is set and
70635
+ * the '$filter' or '$search' parameter is changed.
70635
70636
  *
70636
70637
  * If there are pending changes that cannot be ignored, an error is thrown. Use {@link #hasPendingChanges }
70637
70638
  * to check if there are such pending changes. If there are, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch }
@@ -71262,7 +71263,8 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71262
71263
  ): this;
71263
71264
  /**
71264
71265
  * Changes this binding's parameters and refreshes the binding. Since 1.111.0, a list binding's header context
71265
- * is deselected.
71266
+ * is deselected, but (since 1.120.13) only if the binding parameter '$$clearSelectionOnFilter' is set and
71267
+ * the '$filter' or '$search' parameter is changed.
71266
71268
  *
71267
71269
  * If there are pending changes that cannot be ignored, an error is thrown. Use {@link #hasPendingChanges }
71268
71270
  * to check if there are such pending changes. If there are, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch }
@@ -71481,7 +71483,8 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
71481
71483
  ): this;
71482
71484
  /**
71483
71485
  * Filters the list with the given filters. Since 1.97.0, if filters are unchanged, no request is sent,
71484
- * regardless of pending changes. Since 1.111.0, the header context is deselected.
71486
+ * regardless of pending changes. Since 1.111.0, all contexts (incl. the header context) are deselected,
71487
+ * but (since 1.120.13) only if the binding parameter '$$clearSelectionOnFilter' is set.
71485
71488
  *
71486
71489
  * If there are pending changes that cannot be ignored, an error is thrown. Use {@link #hasPendingChanges }
71487
71490
  * to check if there are such pending changes. If there are, call {@link sap.ui.model.odata.v4.ODataModel#submitBatch }
@@ -72057,7 +72060,9 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
72057
72060
  * certain content will break the syntax of the system query option `$apply` and result in an invalid request.
72058
72061
  * If the OData service supports the proposal ODATA-1452,
72059
72062
  * then `ODataUtils.formatLiteral(sSearch, "Edm.String");` should be used to encapsulate the whole search
72060
- * string beforehand (see {@link sap.ui.model.odata.v4.ODataUtils.formatLiteral}).
72063
+ * string beforehand (see {@link sap.ui.model.odata.v4.ODataUtils.formatLiteral}). Since 1.120.13, all contexts,
72064
+ * including the header context are deselected if the '$$clearSelectionOnFilter' binding parameter is set
72065
+ * and the search parameter is changed.
72061
72066
  */
72062
72067
  search?: string;
72063
72068
  /**
@@ -73603,6 +73608,11 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
73603
73608
  * from its context's path for data service requests; only the value `true` is allowed.
73604
73609
  */
73605
73610
  $$canonicalPath?: boolean;
73611
+ /**
73612
+ * Whether the selection state of the list binding is cleared when a filter is changed; this includes dynamic
73613
+ * filters, '$filter', '$search', and `$$aggregation.search`. Supported since 1.120.13.
73614
+ */
73615
+ $$clearSelectionOnFilter?: boolean;
73606
73616
  /**
73607
73617
  * Whether this binding is considered for a match when {@link #getKeepAliveContext} is called; only the
73608
73618
  * value `true` is allowed. Must not be combined with `$apply`, `$$aggregation`, `$$canonicalPath`, or `$$sharedRequest`.
@@ -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 module "sap/ui/fl/library" {}
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 module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -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/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -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
  import Control from "sap/ui/core/Control";
@@ -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/suite/library" {
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 module "sap/ui/support/library" {
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 module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -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/testrecorder/library" {}
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 module "sap/ui/unified/library" {
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 module "sap/ui/ux3/library" {
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 module "sap/ui/webc/common/library" {}
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 module "sap/ui/webc/fiori/library" {
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 module "sap/ui/webc/main/library" {
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 module "sap/uxap/library" {
4
4
  /**