@openui5/ts-types 1.122.0 → 1.123.0

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.122.0
1
+ // For Library Version: 1.123.0
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -768,7 +768,8 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
768
768
  * user input changes while typing what would lead to confusion.
769
769
  *
770
770
  *
771
- * @returns Output text
771
+ * @returns Output text or boolean true, if the autocomplete value should be accepted without modifying
772
+ * the visible input
772
773
  */
773
774
  getAutocompleteOutput(
774
775
  /**
@@ -795,7 +796,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
795
796
  * If `true` the description matches to the user input
796
797
  */
797
798
  bDescriptionMatch: boolean
798
- ): string;
799
+ ): string | boolean;
799
800
  /**
800
801
  * Determines the description for a given key.
801
802
  * By default, this method calls the {@link sap.ui.mdc.ValueHelp#getItemForValue getItemForValue} function
@@ -1147,7 +1148,7 @@ declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
1147
1148
  * Implements the model-specific logic to update items after conditions have been updated.
1148
1149
  *
1149
1150
  * Items can be removed, updated, or added. Use the binding information of the `MultiValueField` control
1150
- * to update the data in the model.
1151
+ * to update the data in the related model.
1151
1152
  */
1152
1153
  updateItems(
1153
1154
  /**
@@ -1159,7 +1160,7 @@ declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
1159
1160
  */
1160
1161
  aConditions: sap.ui.mdc.condition.ConditionObject[],
1161
1162
  /**
1162
- * Current `MultiValueField` control to determine binding information to update the values of the corresponding
1163
+ * Current `MultiValueField` control to determine binding information to update the values of the related
1163
1164
  * model
1164
1165
  */
1165
1166
  oMultiValueField: sap.ui.mdc.MultiValueField
@@ -1562,6 +1563,28 @@ declare module "sap/ui/mdc/odata/v4/TableDelegate" {
1562
1563
  * @since 1.85
1563
1564
  */
1564
1565
  interface TableDelegate extends TableDelegate1 {
1566
+ /**
1567
+ * Collapses all rows.
1568
+ *
1569
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1570
+ */
1571
+ collapseAllRows(
1572
+ /**
1573
+ * Instance of the table
1574
+ */
1575
+ oTable: sap.ui.mdc.Table
1576
+ ): void;
1577
+ /**
1578
+ * Expands all rows.
1579
+ *
1580
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1581
+ */
1582
+ expandAllRows(
1583
+ /**
1584
+ * Instance of the table
1585
+ */
1586
+ oTable: sap.ui.mdc.Table
1587
+ ): void;
1565
1588
  /**
1566
1589
  * Retrieves information about the relevant properties.
1567
1590
  *
@@ -1704,7 +1727,7 @@ declare module "sap/ui/mdc/TableDelegate" {
1704
1727
  *
1705
1728
  * The following methods need to be added or overridden in your delegate. Please also see the documentation
1706
1729
  * of the methods to learn about their default implementation and what you need to implement.
1707
- * - `Basic prerequisites`
1730
+ * - **Basic prerequisites**
1708
1731
  * - {@link module:sap/ui/mdc/TableDelegate.fetchProperties fetchProperties}
1709
1732
  * - {@link module:sap/ui/mdc/TableDelegate.updateBindingInfo updateBindingInfo}
1710
1733
  * - Column personalization (related to `p13nMode` `Column`)
@@ -2359,7 +2382,20 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
2359
2382
  /**
2360
2383
  * Returns the content that is used for the autocomplete feature and for user input, if the entered text
2361
2384
  * leads to more than one filter result.
2362
- * By default, this method returns the first entry of a set of relevant contexts of the given {@link sap.ui.mdc.valuehelp.base.ListContent ListContent}.
2385
+ *
2386
+ * By default, this method searches and returns an entry from a set of relevant contexts of the given {@link sap.ui.mdc.valuehelp.base.ListContent ListContent}.
2387
+ *
2388
+ * To determine which columns are relevant for the search, the currently active displayMode {@link sap.ui.mdc.enums.FieldDisplay Display }
2389
+ * of the connected control will be used. While a 'Value' configuration will lead to a 'key'-only search,
2390
+ * 'DescriptionValue' leads to searching 'description' first and 'key' afterwards. Other modes work accordingly.
2391
+ *
2392
+ * For each relevant column all items are searched for an exact match first and again with a startsWith
2393
+ * filter afterwards, if necessary.
2394
+ *
2395
+ * If the caseSensitive property is disabled, the letter case of the user's input and the corresponding
2396
+ * column value are completely ignored. Whichever entry comes first, wins.
2397
+ *
2398
+ * {@link sap.ui.mdc.valuehelp.base.ListContent ListContent}
2363
2399
  *
2364
2400
  * @since 1.120.0
2365
2401
  *
@@ -2686,6 +2722,9 @@ declare namespace sap {
2686
2722
  */
2687
2723
  namespace mdc {
2688
2724
  namespace chart {
2725
+ /**
2726
+ * Describes the settings that can be provided to the ChartImplementationContainer constructor.
2727
+ */
2689
2728
  interface $ChartImplementationContainerSettings
2690
2729
  extends sap.ui.core.$ControlSettings {
2691
2730
  /**
@@ -2715,9 +2754,15 @@ declare namespace sap {
2715
2754
  chartNoDataContent?: sap.ui.core.Control | string;
2716
2755
  }
2717
2756
 
2757
+ /**
2758
+ * Describes the settings that can be provided to the ChartSelectionDetails constructor.
2759
+ */
2718
2760
  interface $ChartSelectionDetailsSettings
2719
2761
  extends sap.m.$SelectionDetailsSettings {}
2720
2762
 
2763
+ /**
2764
+ * Describes the settings that can be provided to the Item constructor.
2765
+ */
2721
2766
  interface $ItemSettings extends sap.ui.core.$ElementSettings {
2722
2767
  /**
2723
2768
  * The unique identifier of the chart item that reflects the name of the data property in the resulting
@@ -2755,6 +2800,9 @@ declare namespace sap {
2755
2800
  role?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
2756
2801
  }
2757
2802
 
2803
+ /**
2804
+ * Describes the settings that can be provided to the SelectionDetailsActions constructor.
2805
+ */
2758
2806
  interface $SelectionDetailsActionsSettings
2759
2807
  extends sap.ui.core.$ElementSettings {
2760
2808
  /**
@@ -4074,6 +4122,36 @@ declare namespace sap {
4074
4122
  * used (undefined) the Include or Exclude information of the operator is used.
4075
4123
  */
4076
4124
  additionalInfo?: string;
4125
+ /**
4126
+ * Additional group settings for the operator. Will be used by the `DynamicDateRange`. If not used (undefined),
4127
+ * the operators will be added to the include and exclude groups.
4128
+ */
4129
+ group?: {
4130
+ /**
4131
+ * Group ID for the operator. The following groups are available for the `DynamicDateRange` control:
4132
+ *
4133
+ * - 1 - Single Dates
4134
+ * - 2 - Date Ranges
4135
+ * - 3 - Weeks
4136
+ * - 4 - Months
4137
+ * - 5 - Quarters
4138
+ * - 6 - Years See {@link sap.m.DynamicDateRangeGroups DynamicDateRangeGroups}.
4139
+ * This only works for `FilterFields` with custom operators if `maxConditions=1` and no `valueHelp` is
4140
+ * assigned to the `FilterField`. Example:
4141
+ * group: undefined - if group is not specified; default behavior include/exclude group with id 1 and 2
4142
+ * will be created
4143
+ * group: {id : 1} - adds the operator to existing group 1 'Single Dates'
4144
+ * group: {id : 2, text: "new group"} - inserts a new group with id 2. Existing group 2 will be shifted
4145
+ * to 3, 4....
4146
+ * group: {id : 10, text: "new group at the end"} - adds a new group with id 10 and text "new group as
4147
+ * the end" to the end of all groups
4148
+ */
4149
+ id: string;
4150
+ /**
4151
+ * Group title for the operator. When used a new group with this title will be added.
4152
+ */
4153
+ text?: string;
4154
+ };
4077
4155
  }
4078
4156
  );
4079
4157
 
@@ -5192,7 +5270,7 @@ declare namespace sap {
5192
5270
  * Only one row can be selected at a time. The selection column is not shown. Instead, the user can press
5193
5271
  * the row to select it.
5194
5272
  *
5195
- * **Note:** If this selection mode is used, the table does not fire the `rowPress` event
5273
+ * **Note:** If this selection mode is used, the table does not fire the `rowPress` event.
5196
5274
  */
5197
5275
  SingleMaster = "SingleMaster",
5198
5276
  }
@@ -5237,6 +5315,9 @@ declare namespace sap {
5237
5315
  * @since 1.58.0
5238
5316
  */
5239
5317
  namespace field {
5318
+ /**
5319
+ * Describes the settings that can be provided to the FieldBase constructor.
5320
+ */
5240
5321
  interface $FieldBaseSettings extends sap.ui.mdc.$ControlSettings {
5241
5322
  /**
5242
5323
  * The type of data handled by the field. This type is used to parse, format, and validate the value.
@@ -5572,6 +5653,9 @@ declare namespace sap {
5572
5653
  submit?: (oEvent: FieldBase$SubmitEvent) => void;
5573
5654
  }
5574
5655
 
5656
+ /**
5657
+ * Describes the settings that can be provided to the FieldInfoBase constructor.
5658
+ */
5575
5659
  interface $FieldInfoBaseSettings extends sap.ui.mdc.$ElementSettings {
5576
5660
  /**
5577
5661
  * This event is fired if the data was updated.
@@ -5584,6 +5668,9 @@ declare namespace sap {
5584
5668
  popoverAfterOpen?: (oEvent: sap.ui.base.Event) => void;
5585
5669
  }
5586
5670
 
5671
+ /**
5672
+ * Describes the settings that can be provided to the MultiValueFieldItem constructor.
5673
+ */
5587
5674
  interface $MultiValueFieldItemSettings
5588
5675
  extends sap.ui.core.$ElementSettings {
5589
5676
  /**
@@ -5600,6 +5687,9 @@ declare namespace sap {
5600
5687
  description?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
5601
5688
  }
5602
5689
 
5690
+ /**
5691
+ * Parameters of the FieldBase#liveChange event.
5692
+ */
5603
5693
  interface FieldBase$LiveChangeEventParameters {
5604
5694
  /**
5605
5695
  * The new value of the input
@@ -5617,8 +5707,14 @@ declare namespace sap {
5617
5707
  previousValue?: string;
5618
5708
  }
5619
5709
 
5710
+ /**
5711
+ * Parameters of the FieldBase#press event.
5712
+ */
5620
5713
  interface FieldBase$PressEventParameters {}
5621
5714
 
5715
+ /**
5716
+ * Parameters of the FieldBase#submit event.
5717
+ */
5622
5718
  interface FieldBase$SubmitEventParameters {
5623
5719
  /**
5624
5720
  * Returns a `Promise` for the change. The `Promise` returns the value if it is resolved. If the last `change`
@@ -5628,8 +5724,14 @@ declare namespace sap {
5628
5724
  promise?: Promise<any>;
5629
5725
  }
5630
5726
 
5727
+ /**
5728
+ * Parameters of the FieldInfoBase#dataUpdate event.
5729
+ */
5631
5730
  interface FieldInfoBase$DataUpdateEventParameters {}
5632
5731
 
5732
+ /**
5733
+ * Parameters of the FieldInfoBase#popoverAfterOpen event.
5734
+ */
5633
5735
  interface FieldInfoBase$PopoverAfterOpenEventParameters {}
5634
5736
 
5635
5737
  /**
@@ -8162,26 +8264,41 @@ declare namespace sap {
8162
8264
  ): this;
8163
8265
  }
8164
8266
 
8267
+ /**
8268
+ * Event object of the FieldBase#liveChange event.
8269
+ */
8165
8270
  type FieldBase$LiveChangeEvent = sap.ui.base.Event<
8166
8271
  FieldBase$LiveChangeEventParameters,
8167
8272
  FieldBase
8168
8273
  >;
8169
8274
 
8275
+ /**
8276
+ * Event object of the FieldBase#press event.
8277
+ */
8170
8278
  type FieldBase$PressEvent = sap.ui.base.Event<
8171
8279
  FieldBase$PressEventParameters,
8172
8280
  FieldBase
8173
8281
  >;
8174
8282
 
8283
+ /**
8284
+ * Event object of the FieldBase#submit event.
8285
+ */
8175
8286
  type FieldBase$SubmitEvent = sap.ui.base.Event<
8176
8287
  FieldBase$SubmitEventParameters,
8177
8288
  FieldBase
8178
8289
  >;
8179
8290
 
8291
+ /**
8292
+ * Event object of the FieldInfoBase#dataUpdate event.
8293
+ */
8180
8294
  type FieldInfoBase$DataUpdateEvent = sap.ui.base.Event<
8181
8295
  FieldInfoBase$DataUpdateEventParameters,
8182
8296
  FieldInfoBase
8183
8297
  >;
8184
8298
 
8299
+ /**
8300
+ * Event object of the FieldInfoBase#popoverAfterOpen event.
8301
+ */
8185
8302
  type FieldInfoBase$PopoverAfterOpenEvent = sap.ui.base.Event<
8186
8303
  FieldInfoBase$PopoverAfterOpenEventParameters,
8187
8304
  FieldInfoBase
@@ -8199,6 +8316,9 @@ declare namespace sap {
8199
8316
  * @since 1.84.0
8200
8317
  */
8201
8318
  namespace vh {
8319
+ /**
8320
+ * Describes the settings that can be provided to the FilterBar constructor.
8321
+ */
8202
8322
  interface $FilterBarSettings
8203
8323
  extends sap.ui.mdc.filterbar.$FilterBarBaseSettings {
8204
8324
  /**
@@ -8435,7 +8555,9 @@ declare namespace sap {
8435
8555
  ): this;
8436
8556
  }
8437
8557
  }
8438
-
8558
+ /**
8559
+ * Describes the settings that can be provided to the FilterBarBase constructor.
8560
+ */
8439
8561
  interface $FilterBarBaseSettings extends sap.ui.mdc.$ControlSettings {
8440
8562
  /**
8441
8563
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
@@ -8568,6 +8690,9 @@ declare namespace sap {
8568
8690
  filtersChanged?: (oEvent: FilterBarBase$FiltersChangedEvent) => void;
8569
8691
  }
8570
8692
 
8693
+ /**
8694
+ * Parameters of the FilterBarBase#filtersChanged event.
8695
+ */
8571
8696
  interface FilterBarBase$FiltersChangedEventParameters {
8572
8697
  /**
8573
8698
  * Indicates if the event is based on condition changes
@@ -8585,6 +8710,9 @@ declare namespace sap {
8585
8710
  filtersTextExpanded?: string;
8586
8711
  }
8587
8712
 
8713
+ /**
8714
+ * Parameters of the FilterBarBase#search event.
8715
+ */
8588
8716
  interface FilterBarBase$SearchEventParameters {
8589
8717
  /**
8590
8718
  * Indicates the initial reason for the search. This can either be:
@@ -9257,11 +9385,17 @@ declare namespace sap {
9257
9385
  required?: boolean;
9258
9386
  };
9259
9387
 
9388
+ /**
9389
+ * Event object of the FilterBarBase#filtersChanged event.
9390
+ */
9260
9391
  type FilterBarBase$FiltersChangedEvent = sap.ui.base.Event<
9261
9392
  FilterBarBase$FiltersChangedEventParameters,
9262
9393
  FilterBarBase
9263
9394
  >;
9264
9395
 
9396
+ /**
9397
+ * Event object of the FilterBarBase#search event.
9398
+ */
9265
9399
  type FilterBarBase$SearchEvent = sap.ui.base.Event<
9266
9400
  FilterBarBase$SearchEventParameters,
9267
9401
  FilterBarBase
@@ -9397,6 +9531,9 @@ declare namespace sap {
9397
9531
  * @since 1.95.0
9398
9532
  */
9399
9533
  namespace base {
9534
+ /**
9535
+ * Describes the settings that can be provided to the Container constructor.
9536
+ */
9400
9537
  interface $ContainerSettings extends sap.ui.core.$ElementSettings {
9401
9538
  /**
9402
9539
  * Title text that appears in the dialog or tab header.
@@ -9473,6 +9610,9 @@ declare namespace sap {
9473
9610
  ) => void;
9474
9611
  }
9475
9612
 
9613
+ /**
9614
+ * Describes the settings that can be provided to the Content constructor.
9615
+ */
9476
9616
  interface $ContentSettings extends sap.ui.core.$ElementSettings {
9477
9617
  /**
9478
9618
  * Title text that appears in the tab header.
@@ -9570,6 +9710,9 @@ declare namespace sap {
9570
9710
  ) => void;
9571
9711
  }
9572
9712
 
9713
+ /**
9714
+ * Describes the settings that can be provided to the FilterableListContent constructor.
9715
+ */
9573
9716
  interface $FilterableListContentSettings
9574
9717
  extends sap.ui.mdc.valuehelp.base.$ListContentSettings {
9575
9718
  /**
@@ -9618,6 +9761,9 @@ declare namespace sap {
9618
9761
  filterBar?: sap.ui.mdc.filterbar.vh.FilterBar;
9619
9762
  }
9620
9763
 
9764
+ /**
9765
+ * Describes the settings that can be provided to the ListContent constructor.
9766
+ */
9621
9767
  interface $ListContentSettings
9622
9768
  extends sap.ui.mdc.valuehelp.base.$ContentSettings {
9623
9769
  /**
@@ -9655,10 +9801,19 @@ declare namespace sap {
9655
9801
  | `{${string}}`;
9656
9802
  }
9657
9803
 
9804
+ /**
9805
+ * Parameters of the Container#cancel event.
9806
+ */
9658
9807
  interface Container$CancelEventParameters {}
9659
9808
 
9809
+ /**
9810
+ * Parameters of the Container#closed event.
9811
+ */
9660
9812
  interface Container$ClosedEventParameters {}
9661
9813
 
9814
+ /**
9815
+ * Parameters of the Container#confirm event.
9816
+ */
9662
9817
  interface Container$ConfirmEventParameters {
9663
9818
  /**
9664
9819
  * `true` if the value help needs to be closed
@@ -9666,6 +9821,9 @@ declare namespace sap {
9666
9821
  close?: boolean;
9667
9822
  }
9668
9823
 
9824
+ /**
9825
+ * Parameters of the Container#navigated event.
9826
+ */
9669
9827
  interface Container$NavigatedEventParameters {
9670
9828
  /**
9671
9829
  * `true` if the focus should be set back to the field.
@@ -9685,6 +9843,9 @@ declare namespace sap {
9685
9843
  itemId?: string;
9686
9844
  }
9687
9845
 
9846
+ /**
9847
+ * Parameters of the Container#opened event.
9848
+ */
9688
9849
  interface Container$OpenedEventParameters {
9689
9850
  /**
9690
9851
  * ID of the initially selected item
@@ -9692,6 +9853,9 @@ declare namespace sap {
9692
9853
  itemId?: string;
9693
9854
  }
9694
9855
 
9856
+ /**
9857
+ * Parameters of the Container#requestDelegateContent event.
9858
+ */
9695
9859
  interface Container$RequestDelegateContentEventParameters {
9696
9860
  /**
9697
9861
  * Content wrapper ID for which contents are requested
@@ -9699,8 +9863,14 @@ declare namespace sap {
9699
9863
  contentId?: string;
9700
9864
  }
9701
9865
 
9866
+ /**
9867
+ * Parameters of the Container#requestSwitchToDialog event.
9868
+ */
9702
9869
  interface Container$RequestSwitchToDialogEventParameters {}
9703
9870
 
9871
+ /**
9872
+ * Parameters of the Container#select event.
9873
+ */
9704
9874
  interface Container$SelectEventParameters {
9705
9875
  /**
9706
9876
  * Type of the selection change (add, remove)
@@ -9715,6 +9885,9 @@ declare namespace sap {
9715
9885
  conditions?: object[];
9716
9886
  }
9717
9887
 
9888
+ /**
9889
+ * Parameters of the Container#typeaheadSuggested event.
9890
+ */
9718
9891
  interface Container$TypeaheadSuggestedEventParameters {
9719
9892
  /**
9720
9893
  * Suggested condition
@@ -9739,8 +9912,14 @@ declare namespace sap {
9739
9912
  caseSensitive?: boolean;
9740
9913
  }
9741
9914
 
9915
+ /**
9916
+ * Parameters of the Content#cancel event.
9917
+ */
9742
9918
  interface Content$CancelEventParameters {}
9743
9919
 
9920
+ /**
9921
+ * Parameters of the Content#confirm event.
9922
+ */
9744
9923
  interface Content$ConfirmEventParameters {
9745
9924
  /**
9746
9925
  * `true` if the value help needs to be closed
@@ -9748,6 +9927,9 @@ declare namespace sap {
9748
9927
  close?: boolean;
9749
9928
  }
9750
9929
 
9930
+ /**
9931
+ * Parameters of the Content#navigated event.
9932
+ */
9751
9933
  interface Content$NavigatedEventParameters {
9752
9934
  /**
9753
9935
  * `true` if the focus should be set back to the field.
@@ -9767,8 +9949,14 @@ declare namespace sap {
9767
9949
  itemId?: string;
9768
9950
  }
9769
9951
 
9952
+ /**
9953
+ * Parameters of the Content#requestSwitchToDialog event.
9954
+ */
9770
9955
  interface Content$RequestSwitchToDialogEventParameters {}
9771
9956
 
9957
+ /**
9958
+ * Parameters of the Content#select event.
9959
+ */
9772
9960
  interface Content$SelectEventParameters {
9773
9961
  /**
9774
9962
  * Type of the selection change (add, remove)
@@ -9783,6 +9971,9 @@ declare namespace sap {
9783
9971
  conditions?: object[];
9784
9972
  }
9785
9973
 
9974
+ /**
9975
+ * Parameters of the Content#typeaheadSuggested event.
9976
+ */
9786
9977
  interface Content$TypeaheadSuggestedEventParameters {
9787
9978
  /**
9788
9979
  * Suggested condition
@@ -12362,26 +12553,26 @@ declare namespace sap {
12362
12553
  */
12363
12554
  getCaseSensitive(): boolean;
12364
12555
  /**
12365
- * Gets the `ListBinding` of the content.
12556
+ * Gets current descriptionPath of the content. **Note:** Every listcontent must implement this method.
12366
12557
  *
12367
- * @ui5-protected Do not call from applications (only from related classes in the framework)
12368
12558
  *
12369
- * @returns `ListBinding`
12559
+ * @returns Content description path
12370
12560
  */
12371
- getListBinding(): sap.ui.model.ListBinding;
12561
+ getDescriptionPath(): string;
12372
12562
  /**
12373
- * Gets the relevant `BindingContexts` of the content.
12563
+ * Gets current keyPath of the content. **Note:** Every listcontent must implement this method.
12374
12564
  *
12375
- * @ui5-protected Do not call from applications (only from related classes in the framework)
12376
12565
  *
12377
- * @returns `BindingContexts`
12566
+ * @returns Content key path
12378
12567
  */
12379
- getRelevantContexts(
12380
- /**
12381
- * Configuration
12382
- */
12383
- oConfig: sap.ui.mdc.valuehelp.base.ItemForValueConfiguration
12384
- ): sap.ui.model.Context[];
12568
+ getKeyPath(): string;
12569
+ /**
12570
+ * Gets the `ListBinding` of the content. **Note:** Every listcontent must implement this method.
12571
+ *
12572
+ *
12573
+ * @returns `ListBinding`
12574
+ */
12575
+ getListBinding(): sap.ui.model.ListBinding;
12385
12576
  /**
12386
12577
  * Gets current value of property {@link #getUseAsValueHelp useAsValueHelp}.
12387
12578
  *
@@ -12541,76 +12732,121 @@ declare namespace sap {
12541
12732
  control: sap.ui.core.Control;
12542
12733
  };
12543
12734
 
12735
+ /**
12736
+ * Event object of the Container#cancel event.
12737
+ */
12544
12738
  type Container$CancelEvent = sap.ui.base.Event<
12545
12739
  Container$CancelEventParameters,
12546
12740
  Container
12547
12741
  >;
12548
12742
 
12743
+ /**
12744
+ * Event object of the Container#closed event.
12745
+ */
12549
12746
  type Container$ClosedEvent = sap.ui.base.Event<
12550
12747
  Container$ClosedEventParameters,
12551
12748
  Container
12552
12749
  >;
12553
12750
 
12751
+ /**
12752
+ * Event object of the Container#confirm event.
12753
+ */
12554
12754
  type Container$ConfirmEvent = sap.ui.base.Event<
12555
12755
  Container$ConfirmEventParameters,
12556
12756
  Container
12557
12757
  >;
12558
12758
 
12759
+ /**
12760
+ * Event object of the Container#navigated event.
12761
+ */
12559
12762
  type Container$NavigatedEvent = sap.ui.base.Event<
12560
12763
  Container$NavigatedEventParameters,
12561
12764
  Container
12562
12765
  >;
12563
12766
 
12767
+ /**
12768
+ * Event object of the Container#opened event.
12769
+ */
12564
12770
  type Container$OpenedEvent = sap.ui.base.Event<
12565
12771
  Container$OpenedEventParameters,
12566
12772
  Container
12567
12773
  >;
12568
12774
 
12775
+ /**
12776
+ * Event object of the Container#requestDelegateContent event.
12777
+ */
12569
12778
  type Container$RequestDelegateContentEvent = sap.ui.base.Event<
12570
12779
  Container$RequestDelegateContentEventParameters,
12571
12780
  Container
12572
12781
  >;
12573
12782
 
12783
+ /**
12784
+ * Event object of the Container#requestSwitchToDialog event.
12785
+ */
12574
12786
  type Container$RequestSwitchToDialogEvent = sap.ui.base.Event<
12575
12787
  Container$RequestSwitchToDialogEventParameters,
12576
12788
  Container
12577
12789
  >;
12578
12790
 
12791
+ /**
12792
+ * Event object of the Container#select event.
12793
+ */
12579
12794
  type Container$SelectEvent = sap.ui.base.Event<
12580
12795
  Container$SelectEventParameters,
12581
12796
  Container
12582
12797
  >;
12583
12798
 
12799
+ /**
12800
+ * Event object of the Container#typeaheadSuggested event.
12801
+ */
12584
12802
  type Container$TypeaheadSuggestedEvent = sap.ui.base.Event<
12585
12803
  Container$TypeaheadSuggestedEventParameters,
12586
12804
  Container
12587
12805
  >;
12588
12806
 
12807
+ /**
12808
+ * Event object of the Content#cancel event.
12809
+ */
12589
12810
  type Content$CancelEvent = sap.ui.base.Event<
12590
12811
  Content$CancelEventParameters,
12591
12812
  Content
12592
12813
  >;
12593
12814
 
12815
+ /**
12816
+ * Event object of the Content#confirm event.
12817
+ */
12594
12818
  type Content$ConfirmEvent = sap.ui.base.Event<
12595
12819
  Content$ConfirmEventParameters,
12596
12820
  Content
12597
12821
  >;
12598
12822
 
12823
+ /**
12824
+ * Event object of the Content#navigated event.
12825
+ */
12599
12826
  type Content$NavigatedEvent = sap.ui.base.Event<
12600
12827
  Content$NavigatedEventParameters,
12601
12828
  Content
12602
12829
  >;
12603
12830
 
12831
+ /**
12832
+ * Event object of the Content#requestSwitchToDialog event.
12833
+ */
12604
12834
  type Content$RequestSwitchToDialogEvent = sap.ui.base.Event<
12605
12835
  Content$RequestSwitchToDialogEventParameters,
12606
12836
  Content
12607
12837
  >;
12608
12838
 
12839
+ /**
12840
+ * Event object of the Content#select event.
12841
+ */
12609
12842
  type Content$SelectEvent = sap.ui.base.Event<
12610
12843
  Content$SelectEventParameters,
12611
12844
  Content
12612
12845
  >;
12613
12846
 
12847
+ /**
12848
+ * Event object of the Content#typeaheadSuggested event.
12849
+ */
12614
12850
  type Content$TypeaheadSuggestedEvent = sap.ui.base.Event<
12615
12851
  Content$TypeaheadSuggestedEventParameters,
12616
12852
  Content
@@ -12624,6 +12860,9 @@ declare namespace sap {
12624
12860
  * @since 1.95.0
12625
12861
  */
12626
12862
  namespace content {
12863
+ /**
12864
+ * Describes the settings that can be provided to the Conditions constructor.
12865
+ */
12627
12866
  interface $ConditionsSettings
12628
12867
  extends sap.ui.mdc.valuehelp.base.$ContentSettings {
12629
12868
  /**
@@ -12660,6 +12899,9 @@ declare namespace sap {
12660
12899
  valueHelp?: sap.ui.mdc.ValueHelp | string;
12661
12900
  }
12662
12901
 
12902
+ /**
12903
+ * Describes the settings that can be provided to the FixedList constructor.
12904
+ */
12663
12905
  interface $FixedListSettings
12664
12906
  extends sap.ui.mdc.valuehelp.base.$ListContentSettings {
12665
12907
  /**
@@ -12700,6 +12942,9 @@ declare namespace sap {
12700
12942
  | `{${string}}`;
12701
12943
  }
12702
12944
 
12945
+ /**
12946
+ * Describes the settings that can be provided to the FixedListItem constructor.
12947
+ */
12703
12948
  interface $FixedListItemSettings
12704
12949
  extends sap.ui.core.$ListItemSettings {
12705
12950
  /**
@@ -12716,6 +12961,9 @@ declare namespace sap {
12716
12961
  groupText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
12717
12962
  }
12718
12963
 
12964
+ /**
12965
+ * Describes the settings that can be provided to the MDCTable constructor.
12966
+ */
12719
12967
  interface $MDCTableSettings
12720
12968
  extends sap.ui.mdc.valuehelp.base.$FilterableListContentSettings {
12721
12969
  /**
@@ -12739,6 +12987,9 @@ declare namespace sap {
12739
12987
  table?: sap.ui.mdc.Table;
12740
12988
  }
12741
12989
 
12990
+ /**
12991
+ * Describes the settings that can be provided to the MTable constructor.
12992
+ */
12742
12993
  interface $MTableSettings
12743
12994
  extends sap.ui.mdc.valuehelp.base.$FilterableListContentSettings {
12744
12995
  /**
@@ -12762,6 +13013,11 @@ declare namespace sap {
12762
13013
  contentUpdated?: (oEvent: sap.ui.base.Event) => void;
12763
13014
  }
12764
13015
 
13016
+ /**
13017
+ * Parameters of the MTable#contentUpdated event.
13018
+ *
13019
+ * @deprecated (since 1.118.0) - This event is not fired or consumed anymore
13020
+ */
12765
13021
  interface MTable$ContentUpdatedEventParameters {}
12766
13022
 
12767
13023
  /**
@@ -13592,12 +13848,19 @@ declare namespace sap {
13592
13848
  nnLabel: string;
13593
13849
  };
13594
13850
 
13851
+ /**
13852
+ * Event object of the MTable#contentUpdated event.
13853
+ *
13854
+ * @deprecated (since 1.118.0) - This event is not fired or consumed anymore
13855
+ */
13595
13856
  type MTable$ContentUpdatedEvent = sap.ui.base.Event<
13596
13857
  MTable$ContentUpdatedEventParameters,
13597
13858
  MTable
13598
13859
  >;
13599
13860
  }
13600
-
13861
+ /**
13862
+ * Describes the settings that can be provided to the Dialog constructor.
13863
+ */
13601
13864
  interface $DialogSettings
13602
13865
  extends sap.ui.mdc.valuehelp.base.$ContainerSettings {
13603
13866
  /**
@@ -13622,6 +13885,9 @@ declare namespace sap {
13622
13885
  | `{${string}}`;
13623
13886
  }
13624
13887
 
13888
+ /**
13889
+ * Describes the settings that can be provided to the Popover constructor.
13890
+ */
13625
13891
  interface $PopoverSettings
13626
13892
  extends sap.ui.mdc.valuehelp.base.$ContainerSettings {
13627
13893
  /**
@@ -13944,6 +14210,9 @@ declare namespace sap {
13944
14210
  }
13945
14211
 
13946
14212
  namespace actiontoolbar {
14213
+ /**
14214
+ * Describes the settings that can be provided to the ActionToolbarAction constructor.
14215
+ */
13947
14216
  interface $ActionToolbarActionSettings
13948
14217
  extends sap.ui.core.$ControlSettings {
13949
14218
  /**
@@ -14106,6 +14375,9 @@ declare namespace sap {
14106
14375
  }
14107
14376
 
14108
14377
  namespace link {
14378
+ /**
14379
+ * Describes the settings that can be provided to the LinkItem constructor.
14380
+ */
14109
14381
  interface $LinkItemSettings extends sap.ui.core.$ElementSettings {
14110
14382
  /**
14111
14383
  * Unique key of the `LinkItem` that is used for personalization.
@@ -14801,7 +15073,9 @@ declare namespace sap {
14801
15073
  namespace DragDropConfig {
14802
15074
  type DragSource = sap.ui.model.Context | sap.ui.core.Element;
14803
15075
  }
14804
-
15076
+ /**
15077
+ * Describes the settings that can be provided to the Column constructor.
15078
+ */
14805
15079
  interface $ColumnSettings extends sap.ui.core.$ControlSettings {
14806
15080
  /**
14807
15081
  * Defines the width of the column.
@@ -14925,9 +15199,15 @@ declare namespace sap {
14925
15199
  extendedSettings?: sap.ui.mdc.table.ColumnSettings;
14926
15200
  }
14927
15201
 
15202
+ /**
15203
+ * Describes the settings that can be provided to the ColumnSettings constructor.
15204
+ */
14928
15205
  interface $ColumnSettingsSettings
14929
15206
  extends sap.ui.core.$ElementSettings {}
14930
15207
 
15208
+ /**
15209
+ * Describes the settings that can be provided to the DragDropConfig constructor.
15210
+ */
14931
15211
  interface $DragDropConfigSettings
14932
15212
  extends sap.ui.core.dnd.$DragDropBaseSettings {
14933
15213
  /**
@@ -14996,6 +15276,9 @@ declare namespace sap {
14996
15276
  drop?: (oEvent: DragDropConfig$DropEvent) => void;
14997
15277
  }
14998
15278
 
15279
+ /**
15280
+ * Describes the settings that can be provided to the GridTableType constructor.
15281
+ */
14999
15282
  interface $GridTableTypeSettings
15000
15283
  extends sap.ui.mdc.table.$TableTypeBaseSettings {
15001
15284
  /**
@@ -15051,6 +15334,9 @@ declare namespace sap {
15051
15334
  | `{${string}}`;
15052
15335
  }
15053
15336
 
15337
+ /**
15338
+ * Describes the settings that can be provided to the ResponsiveColumnSettings constructor.
15339
+ */
15054
15340
  interface $ResponsiveColumnSettingsSettings
15055
15341
  extends sap.ui.mdc.table.$ColumnSettingsSettings {
15056
15342
  /**
@@ -15082,6 +15368,9 @@ declare namespace sap {
15082
15368
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
15083
15369
  }
15084
15370
 
15371
+ /**
15372
+ * Describes the settings that can be provided to the ResponsiveTableType constructor.
15373
+ */
15085
15374
  interface $ResponsiveTableTypeSettings
15086
15375
  extends sap.ui.mdc.table.$TableTypeBaseSettings {
15087
15376
  /**
@@ -15135,6 +15424,9 @@ declare namespace sap {
15135
15424
  | `{${string}}`;
15136
15425
  }
15137
15426
 
15427
+ /**
15428
+ * Describes the settings that can be provided to the RowActionItem constructor.
15429
+ */
15138
15430
  interface $RowActionItemSettings extends sap.ui.core.$ElementSettings {
15139
15431
  /**
15140
15432
  * Type of the row action item.
@@ -15184,6 +15476,9 @@ declare namespace sap {
15184
15476
  press?: (oEvent: RowActionItem$PressEvent) => void;
15185
15477
  }
15186
15478
 
15479
+ /**
15480
+ * Describes the settings that can be provided to the RowSettings constructor.
15481
+ */
15187
15482
  interface $RowSettingsSettings extends sap.ui.core.$ElementSettings {
15188
15483
  /**
15189
15484
  * The highlight state of the rows.
@@ -15229,11 +15524,20 @@ declare namespace sap {
15229
15524
  | `{${string}}`;
15230
15525
  }
15231
15526
 
15527
+ /**
15528
+ * Describes the settings that can be provided to the TableTypeBase constructor.
15529
+ */
15232
15530
  interface $TableTypeBaseSettings extends sap.ui.core.$ElementSettings {}
15233
15531
 
15532
+ /**
15533
+ * Describes the settings that can be provided to the TreeTableType constructor.
15534
+ */
15234
15535
  interface $TreeTableTypeSettings
15235
15536
  extends sap.ui.mdc.table.$GridTableTypeSettings {}
15236
15537
 
15538
+ /**
15539
+ * Parameters of the DragDropConfig#dragEnd event.
15540
+ */
15237
15541
  interface DragDropConfig$DragEndEventParameters {
15238
15542
  /**
15239
15543
  * The binding context of the dragged row
@@ -15241,6 +15545,9 @@ declare namespace sap {
15241
15545
  bindingContext?: sap.ui.model.Context;
15242
15546
  }
15243
15547
 
15548
+ /**
15549
+ * Parameters of the DragDropConfig#dragEnter event.
15550
+ */
15244
15551
  interface DragDropConfig$DragEnterEventParameters {
15245
15552
  /**
15246
15553
  * The binding context of the row on which the dragged element will be dropped
@@ -15253,6 +15560,9 @@ declare namespace sap {
15253
15560
  dragSource?: sap.ui.mdc.table.DragDropConfig.DragSource;
15254
15561
  }
15255
15562
 
15563
+ /**
15564
+ * Parameters of the DragDropConfig#dragOver event.
15565
+ */
15256
15566
  interface DragDropConfig$DragOverEventParameters {
15257
15567
  /**
15258
15568
  * The binding context of the row on which the dragged element will be dropped
@@ -15270,6 +15580,9 @@ declare namespace sap {
15270
15580
  dropPosition?: sap.ui.core.dnd.RelativeDropPosition;
15271
15581
  }
15272
15582
 
15583
+ /**
15584
+ * Parameters of the DragDropConfig#dragStart event.
15585
+ */
15273
15586
  interface DragDropConfig$DragStartEventParameters {
15274
15587
  /**
15275
15588
  * The binding context of the dragged row
@@ -15277,6 +15590,9 @@ declare namespace sap {
15277
15590
  bindingContext?: sap.ui.model.Context;
15278
15591
  }
15279
15592
 
15593
+ /**
15594
+ * Parameters of the DragDropConfig#drop event.
15595
+ */
15280
15596
  interface DragDropConfig$DropEventParameters {
15281
15597
  /**
15282
15598
  * The binding context of the row on which the dragged element is dropped
@@ -15294,6 +15610,9 @@ declare namespace sap {
15294
15610
  dropPosition?: sap.ui.core.dnd.RelativeDropPosition;
15295
15611
  }
15296
15612
 
15613
+ /**
15614
+ * Parameters of the RowActionItem#press event.
15615
+ */
15297
15616
  interface RowActionItem$PressEventParameters {
15298
15617
  /**
15299
15618
  * The binding context of the pressed row action
@@ -17815,31 +18134,49 @@ declare namespace sap {
17815
18134
  propertyInfos?: string[];
17816
18135
  };
17817
18136
 
18137
+ /**
18138
+ * Event object of the DragDropConfig#dragEnd event.
18139
+ */
17818
18140
  type DragDropConfig$DragEndEvent = sap.ui.base.Event<
17819
18141
  DragDropConfig$DragEndEventParameters,
17820
18142
  DragDropConfig
17821
18143
  >;
17822
18144
 
18145
+ /**
18146
+ * Event object of the DragDropConfig#dragEnter event.
18147
+ */
17823
18148
  type DragDropConfig$DragEnterEvent = sap.ui.base.Event<
17824
18149
  DragDropConfig$DragEnterEventParameters,
17825
18150
  DragDropConfig
17826
18151
  >;
17827
18152
 
18153
+ /**
18154
+ * Event object of the DragDropConfig#dragOver event.
18155
+ */
17828
18156
  type DragDropConfig$DragOverEvent = sap.ui.base.Event<
17829
18157
  DragDropConfig$DragOverEventParameters,
17830
18158
  DragDropConfig
17831
18159
  >;
17832
18160
 
18161
+ /**
18162
+ * Event object of the DragDropConfig#dragStart event.
18163
+ */
17833
18164
  type DragDropConfig$DragStartEvent = sap.ui.base.Event<
17834
18165
  DragDropConfig$DragStartEventParameters,
17835
18166
  DragDropConfig
17836
18167
  >;
17837
18168
 
18169
+ /**
18170
+ * Event object of the DragDropConfig#drop event.
18171
+ */
17838
18172
  type DragDropConfig$DropEvent = sap.ui.base.Event<
17839
18173
  DragDropConfig$DropEventParameters,
17840
18174
  DragDropConfig
17841
18175
  >;
17842
18176
 
18177
+ /**
18178
+ * Event object of the RowActionItem#press event.
18179
+ */
17843
18180
  type RowActionItem$PressEvent = sap.ui.base.Event<
17844
18181
  RowActionItem$PressEventParameters,
17845
18182
  RowActionItem
@@ -17917,6 +18254,9 @@ declare namespace sap {
17917
18254
  __implements__sap_ui_mdc_IxState: boolean;
17918
18255
  }
17919
18256
 
18257
+ /**
18258
+ * Describes the settings that can be provided to the ActionToolbar constructor.
18259
+ */
17920
18260
  interface $ActionToolbarSettings extends sap.m.$OverflowToolbarSettings {
17921
18261
  /**
17922
18262
  * Determines whether the toolbar is used as header (e.g. for a table).
@@ -17963,6 +18303,11 @@ declare namespace sap {
17963
18303
  | `{${string}}`;
17964
18304
  }
17965
18305
 
18306
+ /**
18307
+ * Describes the settings that can be provided to the Chart constructor.
18308
+ *
18309
+ * @experimental (since 1.88)
18310
+ */
17966
18311
  interface $ChartSettings extends sap.ui.mdc.$ControlSettings {
17967
18312
  /**
17968
18313
  * Defines the width of the chart.
@@ -18232,6 +18577,11 @@ declare namespace sap {
18232
18577
  ) => void;
18233
18578
  }
18234
18579
 
18580
+ /**
18581
+ * Describes the settings that can be provided to the Control constructor.
18582
+ *
18583
+ * @experimental (since 1.61)
18584
+ */
18235
18585
  interface $ControlSettings extends sap.ui.core.$ControlSettings {
18236
18586
  /**
18237
18587
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
@@ -18256,6 +18606,11 @@ declare namespace sap {
18256
18606
  | `{${string}}`;
18257
18607
  }
18258
18608
 
18609
+ /**
18610
+ * Describes the settings that can be provided to the Element constructor.
18611
+ *
18612
+ * @experimental (since 1.74)
18613
+ */
18259
18614
  interface $ElementSettings extends sap.ui.core.$ElementSettings {
18260
18615
  /**
18261
18616
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
@@ -18280,6 +18635,11 @@ declare namespace sap {
18280
18635
  | `{${string}}`;
18281
18636
  }
18282
18637
 
18638
+ /**
18639
+ * Describes the settings that can be provided to the Field constructor.
18640
+ *
18641
+ * @experimental (since 1.54.0)
18642
+ */
18283
18643
  interface $FieldSettings extends sap.ui.mdc.field.$FieldBaseSettings {
18284
18644
  /**
18285
18645
  * The value of the field.
@@ -18310,6 +18670,11 @@ declare namespace sap {
18310
18670
  change?: (oEvent: Field$ChangeEvent) => void;
18311
18671
  }
18312
18672
 
18673
+ /**
18674
+ * Describes the settings that can be provided to the FilterBar constructor.
18675
+ *
18676
+ * @experimental (since 1.61.0)
18677
+ */
18313
18678
  interface $FilterBarSettings
18314
18679
  extends sap.ui.mdc.filterbar.$FilterBarBaseSettings {
18315
18680
  /**
@@ -18342,6 +18707,11 @@ declare namespace sap {
18342
18707
  | `{${string}}`;
18343
18708
  }
18344
18709
 
18710
+ /**
18711
+ * Describes the settings that can be provided to the FilterField constructor.
18712
+ *
18713
+ * @experimental (since 1.48.0)
18714
+ */
18345
18715
  interface $FilterFieldSettings
18346
18716
  extends sap.ui.mdc.field.$FieldBaseSettings {
18347
18717
  /**
@@ -18404,6 +18774,11 @@ declare namespace sap {
18404
18774
  change?: (oEvent: FilterField$ChangeEvent) => void;
18405
18775
  }
18406
18776
 
18777
+ /**
18778
+ * Describes the settings that can be provided to the Link constructor.
18779
+ *
18780
+ * @experimental (since 1.74.0)
18781
+ */
18407
18782
  interface $LinkSettings extends sap.ui.mdc.field.$FieldInfoBaseSettings {
18408
18783
  /**
18409
18784
  * Enables/disables the personalization settings for users and key users.
@@ -18442,17 +18817,23 @@ declare namespace sap {
18442
18817
  sourceControl?: sap.ui.core.Control | string;
18443
18818
  }
18444
18819
 
18820
+ /**
18821
+ * Describes the settings that can be provided to the MultiValueField constructor.
18822
+ *
18823
+ * @experimental (since 1.93.0)
18824
+ */
18445
18825
  interface $MultiValueFieldSettings
18446
18826
  extends sap.ui.mdc.field.$FieldBaseSettings {
18447
18827
  /**
18448
18828
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
18449
18829
  * The object has the following properties:
18450
- * - `name` defines the path to the `Delegate` module
18830
+ * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/field/MultiValueFieldDelegate MultiValueFieldDelegate}.
18831
+ *
18451
18832
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
18452
18833
  * Sample delegate object:
18453
18834
  * ```javascript
18454
18835
  * {
18455
- * name: "sap/ui/mdc/BaseDelegate",
18836
+ * name: "sap/ui/mdc/field/MultiValueFieldDelegate",
18456
18837
  * payload: {}
18457
18838
  * }```
18458
18839
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
@@ -18468,6 +18849,10 @@ declare namespace sap {
18468
18849
 
18469
18850
  /**
18470
18851
  * Items of the `MultiValueField` control.
18852
+ *
18853
+ * The items are not updated by user input or value help selection automatically. That's because an aggregation
18854
+ * binding can only be updated by the model, not by the bound aggregation. Therefore, the {@link module:sap/ui/mdc/field/MultiValueFieldDelegate.updateItems MultiValueFieldDelegate.updateItems }
18855
+ * function needs to be implemented to update the items after a user interaction.
18471
18856
  */
18472
18857
  items?:
18473
18858
  | sap.ui.mdc.field.MultiValueFieldItem[]
@@ -18483,6 +18868,11 @@ declare namespace sap {
18483
18868
  change?: (oEvent: MultiValueField$ChangeEvent) => void;
18484
18869
  }
18485
18870
 
18871
+ /**
18872
+ * Describes the settings that can be provided to the Table constructor.
18873
+ *
18874
+ * @experimental (since 1.58.0)
18875
+ */
18486
18876
  interface $TableSettings extends sap.ui.mdc.$ControlSettings {
18487
18877
  /**
18488
18878
  * Width of the table.
@@ -18495,7 +18885,7 @@ declare namespace sap {
18495
18885
  /**
18496
18886
  * This property has no effect and will be removed soon.
18497
18887
  *
18498
- * @deprecated (since 1.115)
18888
+ * @deprecated (since 1.115) - the concept has been discarded.
18499
18889
  */
18500
18890
  height?:
18501
18891
  | sap.ui.core.CSSSize
@@ -19003,6 +19393,11 @@ declare namespace sap {
19003
19393
  ) => void;
19004
19394
  }
19005
19395
 
19396
+ /**
19397
+ * Describes the settings that can be provided to the ValueHelp constructor.
19398
+ *
19399
+ * @experimental (since 1.95.0)
19400
+ */
19006
19401
  interface $ValueHelpSettings extends sap.ui.mdc.$ElementSettings {
19007
19402
  /**
19008
19403
  * The conditions of the selected items.
@@ -19125,6 +19520,9 @@ declare namespace sap {
19125
19520
  ) => void;
19126
19521
  }
19127
19522
 
19523
+ /**
19524
+ * Parameters of the Chart#selectionDetailsActionPressed event.
19525
+ */
19128
19526
  interface Chart$SelectionDetailsActionPressedEventParameters {
19129
19527
  /**
19130
19528
  * The action that has to be processed once the action has been pressed
@@ -19145,6 +19543,9 @@ declare namespace sap {
19145
19543
  level?: sap.m.SelectionDetailsActionLevel;
19146
19544
  }
19147
19545
 
19546
+ /**
19547
+ * Parameters of the Field#change event.
19548
+ */
19148
19549
  interface Field$ChangeEventParameters {
19149
19550
  /**
19150
19551
  * The new value of the `Field`.
@@ -19169,6 +19570,9 @@ declare namespace sap {
19169
19570
  promise?: Promise<any>;
19170
19571
  }
19171
19572
 
19573
+ /**
19574
+ * Parameters of the FilterField#change event.
19575
+ */
19172
19576
  interface FilterField$ChangeEventParameters {
19173
19577
  /**
19174
19578
  * The new value of the `control`
@@ -19198,6 +19602,9 @@ declare namespace sap {
19198
19602
  promise?: boolean;
19199
19603
  }
19200
19604
 
19605
+ /**
19606
+ * Parameters of the MultiValueField#change event.
19607
+ */
19201
19608
  interface MultiValueField$ChangeEventParameters {
19202
19609
  /**
19203
19610
  * The new items of the `MultiValueField` control.
@@ -19223,6 +19630,9 @@ declare namespace sap {
19223
19630
  promise?: Promise<any>;
19224
19631
  }
19225
19632
 
19633
+ /**
19634
+ * Parameters of the Table#beforeExport event.
19635
+ */
19226
19636
  interface Table$BeforeExportEventParameters {
19227
19637
  /**
19228
19638
  * Contains `workbook.columns, dataSource`, and other export-related information.
@@ -19243,6 +19653,9 @@ declare namespace sap {
19243
19653
  filterSettings?: object[];
19244
19654
  }
19245
19655
 
19656
+ /**
19657
+ * Parameters of the Table#beforeOpenContextMenu event.
19658
+ */
19246
19659
  interface Table$BeforeOpenContextMenuEventParameters {
19247
19660
  /**
19248
19661
  * The binding context
@@ -19258,6 +19671,9 @@ declare namespace sap {
19258
19671
  column?: sap.ui.mdc.table.Column;
19259
19672
  }
19260
19673
 
19674
+ /**
19675
+ * Parameters of the Table#paste event.
19676
+ */
19261
19677
  interface Table$PasteEventParameters {
19262
19678
  /**
19263
19679
  * 2D array of strings with data from the clipboard. The first dimension represents the rows, and the second
@@ -19266,6 +19682,9 @@ declare namespace sap {
19266
19682
  data?: string[][];
19267
19683
  }
19268
19684
 
19685
+ /**
19686
+ * Parameters of the Table#rowPress event.
19687
+ */
19269
19688
  interface Table$RowPressEventParameters {
19270
19689
  /**
19271
19690
  * The binding context
@@ -19273,6 +19692,9 @@ declare namespace sap {
19273
19692
  bindingContext?: sap.ui.model.Context;
19274
19693
  }
19275
19694
 
19695
+ /**
19696
+ * Parameters of the Table#selectionChange event.
19697
+ */
19276
19698
  interface Table$SelectionChangeEventParameters {
19277
19699
  /**
19278
19700
  * Identifies whether the Select All checkbox was pressed
@@ -19280,10 +19702,19 @@ declare namespace sap {
19280
19702
  selectAll?: boolean;
19281
19703
  }
19282
19704
 
19705
+ /**
19706
+ * Parameters of the ValueHelp#closed event.
19707
+ */
19283
19708
  interface ValueHelp$ClosedEventParameters {}
19284
19709
 
19710
+ /**
19711
+ * Parameters of the ValueHelp#disconnect event.
19712
+ */
19285
19713
  interface ValueHelp$DisconnectEventParameters {}
19286
19714
 
19715
+ /**
19716
+ * Parameters of the ValueHelp#navigated event.
19717
+ */
19287
19718
  interface ValueHelp$NavigatedEventParameters {
19288
19719
  /**
19289
19720
  * True if the focus should be set back to the field.
@@ -19303,6 +19734,9 @@ declare namespace sap {
19303
19734
  itemId?: string;
19304
19735
  }
19305
19736
 
19737
+ /**
19738
+ * Parameters of the ValueHelp#open event.
19739
+ */
19306
19740
  interface ValueHelp$OpenEventParameters {
19307
19741
  /**
19308
19742
  * The container which will be opened
@@ -19310,6 +19744,9 @@ declare namespace sap {
19310
19744
  container?: sap.ui.mdc.valuehelp.base.Container;
19311
19745
  }
19312
19746
 
19747
+ /**
19748
+ * Parameters of the ValueHelp#opened event.
19749
+ */
19313
19750
  interface ValueHelp$OpenedEventParameters {
19314
19751
  /**
19315
19752
  * The container which was opened
@@ -19322,6 +19759,9 @@ declare namespace sap {
19322
19759
  itemId?: string;
19323
19760
  }
19324
19761
 
19762
+ /**
19763
+ * Parameters of the ValueHelp#select event.
19764
+ */
19325
19765
  interface ValueHelp$SelectEventParameters {
19326
19766
  /**
19327
19767
  * The selected `conditions`
@@ -19342,8 +19782,14 @@ declare namespace sap {
19342
19782
  close?: boolean;
19343
19783
  }
19344
19784
 
19785
+ /**
19786
+ * Parameters of the ValueHelp#switchToValueHelp event.
19787
+ */
19345
19788
  interface ValueHelp$SwitchToValueHelpEventParameters {}
19346
19789
 
19790
+ /**
19791
+ * Parameters of the ValueHelp#typeaheadSuggested event.
19792
+ */
19347
19793
  interface ValueHelp$TypeaheadSuggestedEventParameters {
19348
19794
  /**
19349
19795
  * Suggested condition
@@ -20245,6 +20691,15 @@ declare namespace sap {
20245
20691
  */
20246
20692
  oItem: sap.ui.mdc.chart.Item
20247
20693
  ): int;
20694
+ /**
20695
+ * Executes a rebind considering the provided external and inbuilt filtering.
20696
+ *
20697
+ * @since 1.98
20698
+ *
20699
+ * @returns A `Promise` that resolves after rebind is executed, and rejects if rebind cannot be executed,
20700
+ * for example because there are invalid filters.
20701
+ */
20702
+ rebind(): Promise<any>;
20248
20703
  /**
20249
20704
  * Sets a new value for property {@link #getAutoBindOnInit autoBindOnInit}.
20250
20705
  *
@@ -22475,12 +22930,13 @@ declare namespace sap {
22475
22930
  *
22476
22931
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
22477
22932
  * The object has the following properties:
22478
- * - `name` defines the path to the `Delegate` module
22933
+ * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/field/MultiValueFieldDelegate MultiValueFieldDelegate}.
22934
+ *
22479
22935
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
22480
22936
  * Sample delegate object:
22481
22937
  * ```javascript
22482
22938
  * {
22483
- * name: "sap/ui/mdc/BaseDelegate",
22939
+ * name: "sap/ui/mdc/field/MultiValueFieldDelegate",
22484
22940
  * payload: {}
22485
22941
  * }```
22486
22942
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
@@ -22498,6 +22954,10 @@ declare namespace sap {
22498
22954
  * Gets content of aggregation {@link #getItems items}.
22499
22955
  *
22500
22956
  * Items of the `MultiValueField` control.
22957
+ *
22958
+ * The items are not updated by user input or value help selection automatically. That's because an aggregation
22959
+ * binding can only be updated by the model, not by the bound aggregation. Therefore, the {@link module:sap/ui/mdc/field/MultiValueFieldDelegate.updateItems MultiValueFieldDelegate.updateItems }
22960
+ * function needs to be implemented to update the items after a user interaction.
22501
22961
  */
22502
22962
  getItems(): sap.ui.mdc.field.MultiValueFieldItem[];
22503
22963
  /**
@@ -22633,12 +23093,13 @@ declare namespace sap {
22633
23093
  *
22634
23094
  * Object related to the `Delegate` module that provides the required APIs to execute model-specific logic.
22635
23095
  * The object has the following properties:
22636
- * - `name` defines the path to the `Delegate` module
23096
+ * - `name` defines the path to the `Delegate` module. The used delegate module must inherit from {@link module:sap/ui/mdc/field/MultiValueFieldDelegate MultiValueFieldDelegate}.
23097
+ *
22637
23098
  * - `payload` (optional) defines application-specific information that can be used in the given delegate
22638
23099
  * Sample delegate object:
22639
23100
  * ```javascript
22640
23101
  * {
22641
- * name: "sap/ui/mdc/BaseDelegate",
23102
+ * name: "sap/ui/mdc/field/MultiValueFieldDelegate",
22642
23103
  * payload: {}
22643
23104
  * }```
22644
23105
  * **Note:** Ensure that the related file can be requested (any required library has to be loaded before
@@ -23541,7 +24002,7 @@ declare namespace sap {
23541
24002
  *
23542
24003
  * This property has no effect and will be removed soon.
23543
24004
  *
23544
- * @deprecated (since 1.115)
24005
+ * @deprecated (since 1.115) - the concept has been discarded.
23545
24006
  *
23546
24007
  * @returns Value of property `height`
23547
24008
  */
@@ -23784,6 +24245,15 @@ declare namespace sap {
23784
24245
  * @returns Whether the table is bound
23785
24246
  */
23786
24247
  isTableBound(): boolean;
24248
+ /**
24249
+ * Executes a rebind considering the provided external and inbuilt filtering.
24250
+ *
24251
+ * @since 1.98
24252
+ *
24253
+ * @returns A `Promise` that resolves after rebind is executed, and rejects if rebind cannot be executed,
24254
+ * for example because there are invalid filters.
24255
+ */
24256
+ rebind(): Promise<any>;
23787
24257
  /**
23788
24258
  * Scrolls the table to the row with the given index. Depending on the table type, this might cause additional
23789
24259
  * requests. If the given index is -1, it will scroll to the end of the table based on the length of the
@@ -24122,7 +24592,7 @@ declare namespace sap {
24122
24592
  *
24123
24593
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
24124
24594
  *
24125
- * @deprecated (since 1.115)
24595
+ * @deprecated (since 1.115) - the concept has been discarded.
24126
24596
  *
24127
24597
  * @returns Reference to `this` in order to allow method chaining
24128
24598
  */
@@ -25383,86 +25853,137 @@ declare namespace sap {
25383
25853
  aggregations?: sap.ui.mdc.State.Aggregations;
25384
25854
  };
25385
25855
 
25856
+ /**
25857
+ * Event object of the Chart#selectionDetailsActionPressed event.
25858
+ */
25386
25859
  type Chart$SelectionDetailsActionPressedEvent = sap.ui.base.Event<
25387
25860
  Chart$SelectionDetailsActionPressedEventParameters,
25388
25861
  Chart
25389
25862
  >;
25390
25863
 
25864
+ /**
25865
+ * Event object of the Field#change event.
25866
+ */
25391
25867
  type Field$ChangeEvent = sap.ui.base.Event<
25392
25868
  Field$ChangeEventParameters,
25393
25869
  Field
25394
25870
  >;
25395
25871
 
25872
+ /**
25873
+ * Event object of the FilterField#change event.
25874
+ */
25396
25875
  type FilterField$ChangeEvent = sap.ui.base.Event<
25397
25876
  FilterField$ChangeEventParameters,
25398
25877
  FilterField
25399
25878
  >;
25400
25879
 
25880
+ /**
25881
+ * Event object of the MultiValueField#change event.
25882
+ */
25401
25883
  type MultiValueField$ChangeEvent = sap.ui.base.Event<
25402
25884
  MultiValueField$ChangeEventParameters,
25403
25885
  MultiValueField
25404
25886
  >;
25405
25887
 
25888
+ /**
25889
+ * Event object of the Table#beforeExport event.
25890
+ */
25406
25891
  type Table$BeforeExportEvent = sap.ui.base.Event<
25407
25892
  Table$BeforeExportEventParameters,
25408
25893
  Table
25409
25894
  >;
25410
25895
 
25896
+ /**
25897
+ * Event object of the Table#beforeOpenContextMenu event.
25898
+ */
25411
25899
  type Table$BeforeOpenContextMenuEvent = sap.ui.base.Event<
25412
25900
  Table$BeforeOpenContextMenuEventParameters,
25413
25901
  Table
25414
25902
  >;
25415
25903
 
25904
+ /**
25905
+ * Event object of the Table#paste event.
25906
+ */
25416
25907
  type Table$PasteEvent = sap.ui.base.Event<
25417
25908
  Table$PasteEventParameters,
25418
25909
  Table
25419
25910
  >;
25420
25911
 
25912
+ /**
25913
+ * Event object of the Table#rowPress event.
25914
+ */
25421
25915
  type Table$RowPressEvent = sap.ui.base.Event<
25422
25916
  Table$RowPressEventParameters,
25423
25917
  Table
25424
25918
  >;
25425
25919
 
25920
+ /**
25921
+ * Event object of the Table#selectionChange event.
25922
+ */
25426
25923
  type Table$SelectionChangeEvent = sap.ui.base.Event<
25427
25924
  Table$SelectionChangeEventParameters,
25428
25925
  Table
25429
25926
  >;
25430
25927
 
25928
+ /**
25929
+ * Event object of the ValueHelp#closed event.
25930
+ */
25431
25931
  type ValueHelp$ClosedEvent = sap.ui.base.Event<
25432
25932
  ValueHelp$ClosedEventParameters,
25433
25933
  ValueHelp
25434
25934
  >;
25435
25935
 
25936
+ /**
25937
+ * Event object of the ValueHelp#disconnect event.
25938
+ */
25436
25939
  type ValueHelp$DisconnectEvent = sap.ui.base.Event<
25437
25940
  ValueHelp$DisconnectEventParameters,
25438
25941
  ValueHelp
25439
25942
  >;
25440
25943
 
25944
+ /**
25945
+ * Event object of the ValueHelp#navigated event.
25946
+ */
25441
25947
  type ValueHelp$NavigatedEvent = sap.ui.base.Event<
25442
25948
  ValueHelp$NavigatedEventParameters,
25443
25949
  ValueHelp
25444
25950
  >;
25445
25951
 
25952
+ /**
25953
+ * Event object of the ValueHelp#open event.
25954
+ */
25446
25955
  type ValueHelp$OpenEvent = sap.ui.base.Event<
25447
25956
  ValueHelp$OpenEventParameters,
25448
25957
  ValueHelp
25449
25958
  >;
25450
25959
 
25960
+ /**
25961
+ * Event object of the ValueHelp#opened event.
25962
+ */
25451
25963
  type ValueHelp$OpenedEvent = sap.ui.base.Event<
25452
25964
  ValueHelp$OpenedEventParameters,
25453
25965
  ValueHelp
25454
25966
  >;
25455
25967
 
25968
+ /**
25969
+ * Event object of the ValueHelp#select event.
25970
+ */
25456
25971
  type ValueHelp$SelectEvent = sap.ui.base.Event<
25457
25972
  ValueHelp$SelectEventParameters,
25458
25973
  ValueHelp
25459
25974
  >;
25460
25975
 
25976
+ /**
25977
+ * Event object of the ValueHelp#switchToValueHelp event.
25978
+ */
25461
25979
  type ValueHelp$SwitchToValueHelpEvent = sap.ui.base.Event<
25462
25980
  ValueHelp$SwitchToValueHelpEventParameters,
25463
25981
  ValueHelp
25464
25982
  >;
25465
25983
 
25984
+ /**
25985
+ * Event object of the ValueHelp#typeaheadSuggested event.
25986
+ */
25466
25987
  type ValueHelp$TypeaheadSuggestedEvent = sap.ui.base.Event<
25467
25988
  ValueHelp$TypeaheadSuggestedEventParameters,
25468
25989
  ValueHelp