@openui5/types 1.124.0 → 1.124.2

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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -2457,12 +2457,12 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
2457
2457
 
2458
2458
  import ListBinding from "sap/ui/model/ListBinding";
2459
2459
 
2460
+ import { ConditionObject } from "sap/ui/mdc/condition/Condition";
2461
+
2460
2462
  import FilterableListContent from "sap/ui/mdc/valuehelp/base/FilterableListContent";
2461
2463
 
2462
2464
  import Context from "sap/ui/model/Context";
2463
2465
 
2464
- import { ConditionObject } from "sap/ui/mdc/condition/Condition";
2465
-
2466
2466
  import { util } from "sap/ui/mdc/library";
2467
2467
 
2468
2468
  import Filter from "sap/ui/model/Filter";
@@ -2507,6 +2507,28 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
2507
2507
  */
2508
2508
  iRequestedItems: int
2509
2509
  ): boolean | Promise<boolean>;
2510
+ /**
2511
+ * Allows control to customize selection behavior in valuelist scenarios
2512
+ *
2513
+ * @since 1.124.2
2514
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2515
+ *
2516
+ * @returns `true` if conditions are considered equal
2517
+ */
2518
+ compareConditions(
2519
+ /**
2520
+ * The `ValueHelp` control instance
2521
+ */
2522
+ oValueHelp: ValueHelp,
2523
+ /**
2524
+ * Condition to compare
2525
+ */
2526
+ oConditionA: ConditionObject,
2527
+ /**
2528
+ * Condition to compare
2529
+ */
2530
+ oConditionB: ConditionObject
2531
+ ): boolean;
2510
2532
  /**
2511
2533
  * Provides the possibility to convey custom data in conditions. This enables an application to enhance
2512
2534
  * conditions with data relevant for combined key or out parameter scenarios.
@@ -23862,7 +23884,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
23862
23884
  $ListContentSettings,
23863
23885
  } from "sap/ui/mdc/valuehelp/base/ListContent";
23864
23886
 
23865
- import FilterBar from "sap/ui/mdc/filterbar/vh/FilterBar";
23887
+ import FilterBar from "sap/ui/mdc/valuehelp/FilterBar";
23866
23888
 
23867
23889
  import Context from "sap/ui/model/Context";
23868
23890
 
@@ -24002,7 +24024,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
24002
24024
  /**
24003
24025
  * Gets content of aggregation {@link #getFilterBar filterBar}.
24004
24026
  *
24005
- * {@link sap.ui.mdc.filterbar.vh.FilterBar FilterBar} used for filtering.
24027
+ * {@link sap.ui.mdc.valuehelp.FilterBar FilterBar} used for filtering.
24006
24028
  */
24007
24029
  getFilterBar(): FilterBar;
24008
24030
  /**
@@ -24236,7 +24258,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
24236
24258
  group?: string | PropertyBindingInfo;
24237
24259
 
24238
24260
  /**
24239
- * {@link sap.ui.mdc.filterbar.vh.FilterBar FilterBar} used for filtering.
24261
+ * {@link sap.ui.mdc.valuehelp.FilterBar FilterBar} used for filtering.
24240
24262
  */
24241
24263
  filterBar?: FilterBar;
24242
24264
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
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.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -3005,8 +3005,11 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
3005
3005
 
3006
3006
  /**
3007
3007
  * Implements a plugin to enable a special multi-selection behavior:
3008
- * - No Select All checkbox, select all can only be done via range selection
3009
- * - Dedicated Deselect All button to clear the selection
3008
+ * - Select All checkbox for selecting rows up to the set limit.
3009
+ * If the number of selected rows is smaller than the limit, all these rows can be selected at once with
3010
+ * a single operation. If there are more rows than the limit, the first x rows are selected until the limit
3011
+ * x has been reached.
3012
+ * - Dedicated Deselect All button for removing the selection
3010
3013
  * - The number of indices which can be selected in a range is defined by the `limit` property. If the
3011
3014
  * user tries to select more indices, the selection is automatically limited, and the table scrolls to the
3012
3015
  * last selected index.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.124.0
1
+ // For Library Version: 1.124.2
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4