@openui5/types 1.115.1 → 1.116.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.115.1
1
+ // For Library Version: 1.116.0
2
2
 
3
3
  declare module "sap/ui/mdc/BaseDelegate" {
4
4
  import Control from "sap/ui/mdc/Control";
@@ -398,7 +398,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
398
398
  /**
399
399
  * Sets the chart type of the inner chart. This function is called by the chart when the `chartType` property
400
400
  * is updated. **Note:** This function is called by the chart only. You must not call it directly but use
401
- * {@link sap.ui.mdc.Chart#setChartType setChartType} instead.
401
+ * {@link sap.ui.mdc.Chart#chartType chartType} instead.
402
402
  */
403
403
  setChartType(
404
404
  /**
@@ -482,7 +482,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
482
482
  export default ChartDelegate;
483
483
 
484
484
  /**
485
- * Char `ChartTypeLayoutConfig` type.
485
+ * Chart `ChartTypeLayoutConfig` type.
486
486
  */
487
487
  export type ChartTypeLayoutConfig = {
488
488
  /**
@@ -555,15 +555,15 @@ declare module "sap/ui/mdc/DefaultTypeMap" {
555
555
  * **Note:** This `TypeMap` implementation contains the following types:
556
556
  *
557
557
  *
558
- * - sap.ui.model.type.Boolean (alias Boolean)
559
- * - sap.ui.model.type.Currency (alias Currency)
560
- * - sap.ui.model.type.Date (alias Date)
561
- * - sap.ui.model.type.DateTime (alias DateTime)
562
- * - sap.ui.model.type.Float (alias Float)
563
- * - sap.ui.model.type.Integer (alias Integer)
564
- * - sap.ui.model.type.String (alias String)
565
- * - sap.ui.model.type.Time (alias Time)
566
- * - sap.ui.model.type.Unit (alias Unit)
558
+ * - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
559
+ * - {@link sap.ui.model.type.Currency} (alias `Currency`)
560
+ * - {@link sap.ui.model.type.Date} (alias `Date`)
561
+ * - {@link sap.ui.model.type.DateTime} (alias `DateTime`)
562
+ * - {@link sap.ui.model.type.Float} (alias `Float`)
563
+ * - {@link sap.ui.model.type.Integer} (alias `Integer`)
564
+ * - {@link sap.ui.model.type.String} (alias `String`)
565
+ * - {@link sap.ui.model.type.Time} (alias `Time`)
566
+ * - {@link sap.ui.model.type.Unit} (alias `Unit`)
567
567
  */
568
568
  interface DefaultTypeMap {}
569
569
  const DefaultTypeMap: DefaultTypeMap;
@@ -603,11 +603,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
603
603
  *
604
604
  * Enables applications to control condition updates based on `value` / `additionalvalue` property changes.
605
605
  *
606
- * **Note:** Use with care! Custom implementations of this method may lead to intransparency as a field's
607
- * condition may then differ from the state of the `value` / `additionalvalue` properties. Please also avoid
608
- * expensive operations, as this can delay the rendering of the output!
606
+ * **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
607
+ * then differ from the state of the `value` / `additionalvalue` properties. Avoid expensive operations,
608
+ * as this can delay the rendering of the output.
609
609
  *
610
- * @returns Returns a condition object to be set on the control
610
+ * @returns Returns a condition object that is set on the control
611
611
  */
612
612
  createCondition(
613
613
  /**
@@ -619,11 +619,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
619
619
  */
620
620
  oControl: Control,
621
621
  /**
622
- * key, description pair for the condition which is to be created.
622
+ * Key and description for the condition that is created
623
623
  */
624
624
  aValues: any[],
625
625
  /**
626
- * currently available condition before the property change
626
+ * Currently available condition before the property change
627
627
  */
628
628
  oCurrentCondition: undefined | ConditionObject
629
629
  ): undefined | ConditionObject;
@@ -632,11 +632,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
632
632
  *
633
633
  * Enables applications to control condition updates based on `value` / `additionalvalue` property changes.
634
634
  *
635
- * **Note:** Use with care! Custom implementations of this method may lead to intransparency as a field's
636
- * condition may then differ from the state of the `value` / `additionalvalue` properties. Please also avoid
637
- * expensive operations, as this can delay the rendering of the output!
635
+ * **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
636
+ * then differ from the state of the `value` / `additionalvalue` properties. Avoid expensive operations,
637
+ * as this can delay the rendering of the output.
638
638
  *
639
- * @returns Returns a condition object to be set on the control
639
+ * @returns Returns a condition object that is set on the control
640
640
  */
641
641
  createCondition(
642
642
  /**
@@ -644,11 +644,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
644
644
  */
645
645
  oField: FieldBase,
646
646
  /**
647
- * key, description pair for the condition which is to be created.
647
+ * Key and description for the condition that is created
648
648
  */
649
649
  aValues: any[],
650
650
  /**
651
- * currently available condition before the property change
651
+ * Currently available condition before the property change
652
652
  */
653
653
  oCurrentCondition: undefined | ConditionObject
654
654
  ): undefined | ConditionObject;
@@ -656,7 +656,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
656
656
  * @since 1.107.0
657
657
  *
658
658
  * Provides the possibility to convey custom data in conditions. This enables an application to enhance
659
- * conditions with data relevant for combined key or outparameter scenarios.
659
+ * conditions with data relevant for combined key or out parameter scenarios.
660
660
  *
661
661
  * @returns Optionally returns a serializeable object to be stored in the condition payload field.
662
662
  */
@@ -678,7 +678,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
678
678
  * @since 1.107.0
679
679
  *
680
680
  * Provides the possibility to convey custom data in conditions. This enables an application to enhance
681
- * conditions with data relevant for combined key or outparameter scenarios.
681
+ * conditions with data relevant for combined key or out parameter scenarios.
682
682
  *
683
683
  * @returns Optionally returns a serializeable object to be stored in the condition payload field.
684
684
  */
@@ -696,7 +696,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
696
696
  * Determines the description for a given key.
697
697
  *
698
698
  * This function is called while formatting the output of a {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
699
- * control in case a description is to be displayed but only a key is given.
699
+ * control if a description should be displayed but only a key is given.
700
700
  *
701
701
  * If this needs to be determined asynchronously, a `Promise` is returned.
702
702
  *
@@ -704,7 +704,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
704
704
  *
705
705
  * If the description cannot be determined, a corresponding FormatException is thrown.
706
706
  *
707
- * @returns Description for key or object containing description, key and payload. If it is not available
707
+ * @returns Description for key or object containing description, key, and payload. If it is not available
708
708
  * right away (must be requested), a `Promise` is returned.
709
709
  */
710
710
  getDescription(
@@ -722,24 +722,148 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
722
722
  */
723
723
  vKey: any,
724
724
  /**
725
- * In parameters for the key (as a key must not be unique.) (Only filled in conditions of old variants.)
725
+ * In parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
726
726
  */
727
727
  oInParameters: object,
728
728
  /**
729
- * Out parameters for the key (as a key must not be unique.) (Only filled in conditions of old variants.)
729
+ * Out parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
730
730
  */
731
731
  oOutParameters: object,
732
732
  /**
733
- * `BindingContext` of the checked field. Inside a table the `ValueHelp` element might be connected to a
734
- * different row.
733
+ * `BindingContext` of the checked field; Inside a table, the `ValueHelp` element might be connected to
734
+ * a different row.
735
735
  */
736
736
  oBindingContext: Context,
737
737
  /**
738
- * `ConditionModel`, if bound to one - NOT LONGER USED
738
+ * `ConditionModel`, if bound to one - NO LONGER USED
739
739
  */
740
740
  oConditionModel: undefined,
741
741
  /**
742
- * Name of the `ConditionModel`, if bound to one - NOT LONGER USED
742
+ * Name of the `ConditionModel`, if bound to one - NO LONGER USED
743
+ */
744
+ sConditionModelName: undefined,
745
+ /**
746
+ * Additional context information for this key
747
+ */
748
+ oConditionPayload: object,
749
+ /**
750
+ * Instance of the calling control if it is not the field itself
751
+ */
752
+ oControl: Control,
753
+ /**
754
+ * Type of the value
755
+ */
756
+ oType: Type
757
+ ):
758
+ | string
759
+ | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any
760
+ | Promise<string | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
761
+ /**
762
+ * Determines the description for a given key.
763
+ *
764
+ * This function is called while formatting the output of a {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
765
+ * control if a description should be displayed but only a key is given.
766
+ *
767
+ * If this needs to be determined asynchronously, a `Promise` is returned.
768
+ *
769
+ * As the key might change (uppercase), an object with key and description can be returned.
770
+ *
771
+ * If the description cannot be determined, a corresponding FormatException is thrown.
772
+ *
773
+ * @returns Description for key or object containing description, key, and payload. If it is not available
774
+ * right away (must be requested), a `Promise` is returned.
775
+ */
776
+ getDescription(
777
+ /**
778
+ * `Field` control instance
779
+ */
780
+ oField: FieldBase,
781
+ /**
782
+ * Field help assigned to the {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
783
+ * control
784
+ */
785
+ oValueHelp: ValueHelp,
786
+ /**
787
+ * Key
788
+ */
789
+ vKey: any,
790
+ /**
791
+ * In parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
792
+ */
793
+ oInParameters: object,
794
+ /**
795
+ * Out parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
796
+ */
797
+ oOutParameters: object,
798
+ /**
799
+ * `BindingContext` of the checked field; Inside a table, the `ValueHelp` element might be connected to
800
+ * a different row.
801
+ */
802
+ oBindingContext: Context,
803
+ /**
804
+ * `ConditionModel`, if bound to one - NO LONGER USED
805
+ */
806
+ oConditionModel: undefined,
807
+ /**
808
+ * Additional context information for this key
809
+ */
810
+ oConditionPayload: object,
811
+ /**
812
+ * Instance of the calling control if it is not the field itself
813
+ */
814
+ oControl: Control,
815
+ /**
816
+ * Type of the value
817
+ */
818
+ oType: Type
819
+ ):
820
+ | string
821
+ | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any
822
+ | Promise<string | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
823
+ /**
824
+ * Determines the description for a given key.
825
+ *
826
+ * This function is called while formatting the output of a {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
827
+ * control if a description should be displayed but only a key is given.
828
+ *
829
+ * If this needs to be determined asynchronously, a `Promise` is returned.
830
+ *
831
+ * As the key might change (uppercase), an object with key and description can be returned.
832
+ *
833
+ * If the description cannot be determined, a corresponding FormatException is thrown.
834
+ *
835
+ * @returns Description for key or object containing description, key, and payload. If it is not available
836
+ * right away (must be requested), a `Promise` is returned.
837
+ */
838
+ getDescription(
839
+ /**
840
+ * `Field` control instance
841
+ */
842
+ oField: FieldBase,
843
+ /**
844
+ * Field help assigned to the {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
845
+ * control
846
+ */
847
+ oValueHelp: ValueHelp,
848
+ /**
849
+ * Key
850
+ */
851
+ vKey: any,
852
+ /**
853
+ * In parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
854
+ */
855
+ oInParameters: object,
856
+ /**
857
+ * Out parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
858
+ */
859
+ oOutParameters: object,
860
+ /**
861
+ * `BindingContext` of the checked field; Inside a table, the `ValueHelp` element might be connected to
862
+ * a different row.
863
+ */
864
+ oBindingContext: Context,
865
+ /**
866
+ * Name of the `ConditionModel`, if bound to one - NO LONGER USED
743
867
  */
744
868
  sConditionModelName: undefined,
745
869
  /**
@@ -747,7 +871,65 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
747
871
  */
748
872
  oConditionPayload: object,
749
873
  /**
750
- * Instance if the calling control is not the field itself
874
+ * Instance of the calling control if it is not the field itself
875
+ */
876
+ oControl: Control,
877
+ /**
878
+ * Type of the value
879
+ */
880
+ oType: Type
881
+ ):
882
+ | string
883
+ | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any
884
+ | Promise<string | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
885
+ /**
886
+ * Determines the description for a given key.
887
+ *
888
+ * This function is called while formatting the output of a {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
889
+ * control if a description should be displayed but only a key is given.
890
+ *
891
+ * If this needs to be determined asynchronously, a `Promise` is returned.
892
+ *
893
+ * As the key might change (uppercase), an object with key and description can be returned.
894
+ *
895
+ * If the description cannot be determined, a corresponding FormatException is thrown.
896
+ *
897
+ * @returns Description for key or object containing description, key, and payload. If it is not available
898
+ * right away (must be requested), a `Promise` is returned.
899
+ */
900
+ getDescription(
901
+ /**
902
+ * `Field` control instance
903
+ */
904
+ oField: FieldBase,
905
+ /**
906
+ * Field help assigned to the {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
907
+ * control
908
+ */
909
+ oValueHelp: ValueHelp,
910
+ /**
911
+ * Key
912
+ */
913
+ vKey: any,
914
+ /**
915
+ * In parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
916
+ */
917
+ oInParameters: object,
918
+ /**
919
+ * Out parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
920
+ */
921
+ oOutParameters: object,
922
+ /**
923
+ * `BindingContext` of the checked field; Inside a table, the `ValueHelp` element might be connected to
924
+ * a different row.
925
+ */
926
+ oBindingContext: Context,
927
+ /**
928
+ * Additional context information for this key
929
+ */
930
+ oConditionPayload: object,
931
+ /**
932
+ * Instance of the calling control if it is not the field itself
751
933
  */
752
934
  oControl: Control,
753
935
  /**
@@ -903,34 +1085,34 @@ declare module "sap/ui/mdc/odata/TypeMap" {
903
1085
  * **Note:** This `TypeMap` implementation contains the following types:
904
1086
  *
905
1087
  *
906
- * - sap.ui.model.type.Boolean (alias Boolean)
907
- * - sap.ui.model.type.Currency (alias Currency)
908
- * - sap.ui.model.type.Date (alias Date)
909
- * - sap.ui.model.type.DateTime (alias DateTime)
910
- * - sap.ui.model.type.Float (alias Float)
911
- * - sap.ui.model.type.Integer (alias Integer)
912
- * - sap.ui.model.type.String (alias String)
913
- * - sap.ui.model.type.Time (alias Time)
914
- * - sap.ui.model.type.Unit (alias Unit)
915
- * - sap.ui.model.odata.type.Stream (alias Edm.Binary)
916
- * - sap.ui.model.odata.type.Boolean (alias Edm.Boolean)
917
- * - sap.ui.model.odata.type.Byte (alias Edm.Byte)
918
- * - sap.ui.model.odata.type.Date (alias Edm.Date)
919
- * - sap.ui.model.odata.type.DateTime (alias Edm.DateTime)
920
- * - sap.ui.model.odata.type.DateTimeOffset (alias Edm.DateTimeOffset)
921
- * - sap.ui.model.odata.type.Decimal (alias Edm.Decimal)
922
- * - sap.ui.model.odata.type.Double (alias Edm.Double)
923
- * - sap.ui.model.odata.type.Single (alias Edm.Float)
924
- * - sap.ui.model.odata.type.Guid (alias Edm.Guid)
925
- * - sap.ui.model.odata.type.Int16 (alias Edm.Int16)
926
- * - sap.ui.model.odata.type.Int32 (alias Edm.Int32)
927
- * - sap.ui.model.odata.type.Int64 (alias Edm.Int64)
928
- * - sap.ui.model.odata.type.SByte (alias Edm.SByte)
929
- * - sap.ui.model.odata.type.Single (alias Edm.Single)
930
- * - sap.ui.model.odata.type.Stream (alias Edm.Stream)
931
- * - sap.ui.model.odata.type.String (alias Edm.String)
932
- * - sap.ui.model.odata.type.Time (alias Edm.Time)
933
- * - sap.ui.model.odata.type.TimeOfDay (alias Edm.TimeOfDay)
1088
+ * - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
1089
+ * - {@link sap.ui.model.type.Currency} (alias `Currency`)
1090
+ * - {@link sap.ui.model.type.Date} (alias `Date`)
1091
+ * - {@link sap.ui.model.type.DateTime} (alias `DateTime`)
1092
+ * - {@link sap.ui.model.type.Float} (alias `Float`)
1093
+ * - {@link sap.ui.model.type.Integer} (alias `Integer`)
1094
+ * - {@link sap.ui.model.type.String} (alias `String`)
1095
+ * - {@link sap.ui.model.type.Time} (alias `Time`)
1096
+ * - {@link sap.ui.model.type.Unit} (alias `Unit`)
1097
+ * - {@link sap.ui.model.odata.type.Stream} (alias `Edm.Binary`)
1098
+ * - {@link sap.ui.model.odata.type.Boolean} (alias `Edm.Boolean`)
1099
+ * - {@link sap.ui.model.odata.type.Byte} (alias `Edm.Byte`)
1100
+ * - {@link sap.ui.model.odata.type.Date} (alias `Edm.Date`)
1101
+ * - {@link sap.ui.model.odata.type.DateTime} (alias `Edm.DateTime`)
1102
+ * - {@link sap.ui.model.odata.type.DateTimeOffset} (alias `Edm.DateTimeOffset`)
1103
+ * - {@link sap.ui.model.odata.type.Decimal} (alias `Edm.Decimal`)
1104
+ * - {@link sap.ui.model.odata.type.Double} (alias `Edm.Double`)
1105
+ * - {@link sap.ui.model.odata.type.Single} (alias `Edm.Float`)
1106
+ * - {@link sap.ui.model.odata.type.Guid} (alias `Edm.Guid`)
1107
+ * - {@link sap.ui.model.odata.type.Int16} (alias `Edm.Int16`)
1108
+ * - {@link sap.ui.model.odata.type.Int32} (alias `Edm.Int32`)
1109
+ * - {@link sap.ui.model.odata.type.Int64} (alias `Edm.Int64`)
1110
+ * - {@link sap.ui.model.odata.type.SByte} (alias `Edm.SByte`)
1111
+ * - {@link sap.ui.model.odata.type.Single} (alias `Edm.Single`)
1112
+ * - {@link sap.ui.model.odata.type.Stream} (alias `Edm.Stream`)
1113
+ * - {@link sap.ui.model.odata.type.String} (alias `Edm.String`)
1114
+ * - {@link sap.ui.model.odata.type.Time} (alias `Edm.Time`)
1115
+ * - {@link sap.ui.model.odata.type.TimeOfDay} (alias `Edm.TimeOfDay`)
934
1116
  */
935
1117
  interface TypeMap {}
936
1118
  const TypeMap: TypeMap;
@@ -1002,34 +1184,34 @@ declare module "sap/ui/mdc/odata/v4/TypeMap" {
1002
1184
  * **Note:** This `TypeMap` implementation contains the following types including ODataV4-specific configuration:
1003
1185
  *
1004
1186
  *
1005
- * - sap.ui.model.type.Boolean (alias Boolean)
1006
- * - sap.ui.model.type.Currency (alias Currency)
1007
- * - sap.ui.model.type.Date (alias Date)
1008
- * - sap.ui.model.type.DateTime (alias DateTime)
1009
- * - sap.ui.model.type.Float (alias Float)
1010
- * - sap.ui.model.type.Integer (alias Integer)
1011
- * - sap.ui.model.type.String (alias String)
1012
- * - sap.ui.model.type.Time (alias Time)
1013
- * - sap.ui.model.type.Unit (alias Unit)
1014
- * - sap.ui.model.odata.type.Stream (alias Edm.Binary)
1015
- * - sap.ui.model.odata.type.Boolean (alias Edm.Boolean)
1016
- * - sap.ui.model.odata.type.Byte (alias Edm.Byte)
1017
- * - sap.ui.model.odata.type.Date (alias Edm.Date)
1018
- * - sap.ui.model.odata.type.DateTime (alias Edm.DateTime)
1019
- * - sap.ui.model.odata.type.DateTimeOffset (alias Edm.DateTimeOffset)
1020
- * - sap.ui.model.odata.type.Decimal (alias Edm.Decimal)
1021
- * - sap.ui.model.odata.type.Double (alias Edm.Double)
1022
- * - sap.ui.model.odata.type.Single (alias Edm.Float)
1023
- * - sap.ui.model.odata.type.Guid (alias Edm.Guid)
1024
- * - sap.ui.model.odata.type.Int16 (alias Edm.Int16)
1025
- * - sap.ui.model.odata.type.Int32 (alias Edm.Int32)
1026
- * - sap.ui.model.odata.type.Int64 (alias Edm.Int64)
1027
- * - sap.ui.model.odata.type.SByte (alias Edm.SByte)
1028
- * - sap.ui.model.odata.type.Single (alias Edm.Single)
1029
- * - sap.ui.model.odata.type.Stream (alias Edm.Stream)
1030
- * - sap.ui.model.odata.type.String (alias Edm.String)
1031
- * - sap.ui.model.odata.type.Time (alias Edm.Time)
1032
- * - sap.ui.model.odata.type.TimeOfDay (alias Edm.TimeOfDay)
1187
+ * - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
1188
+ * - {@link sap.ui.model.type.Currency} (alias `Currency`)
1189
+ * - {@link sap.ui.model.type.Date} (alias `Date`)
1190
+ * - {@link sap.ui.model.type.DateTime} (alias `DateTime`)
1191
+ * - {@link sap.ui.model.type.Float} (alias `Float`)
1192
+ * - {@link sap.ui.model.type.Integer} (alias `Integer`)
1193
+ * - {@link sap.ui.model.type.String} (alias `String`)
1194
+ * - {@link sap.ui.model.type.Time} (alias `Time`)
1195
+ * - {@link sap.ui.model.type.Unit} (alias `Unit`)
1196
+ * - {@link sap.ui.model.odata.type.Stream} (alias `Edm.Binary`)
1197
+ * - {@link sap.ui.model.odata.type.Boolean} (alias `Edm.Boolean`)
1198
+ * - {@link sap.ui.model.odata.type.Byte} (alias `Edm.Byte`)
1199
+ * - {@link sap.ui.model.odata.type.Date} (alias `Edm.Date`)
1200
+ * - {@link sap.ui.model.odata.type.DateTime} (alias `Edm.DateTime`)
1201
+ * - {@link sap.ui.model.odata.type.DateTimeOffset} (alias `Edm.DateTimeOffset`)
1202
+ * - {@link sap.ui.model.odata.type.Decimal} (alias `Edm.Decimal`)
1203
+ * - {@link sap.ui.model.odata.type.Double} (alias `Edm.Double`)
1204
+ * - {@link sap.ui.model.odata.type.Single} (alias `Edm.Float`)
1205
+ * - {@link sap.ui.model.odata.type.Guid} (alias `Edm.Guid`)
1206
+ * - {@link sap.ui.model.odata.type.Int16} (alias `Edm.Int16`)
1207
+ * - {@link sap.ui.model.odata.type.Int32} (alias `Edm.Int32`)
1208
+ * - {@link sap.ui.model.odata.type.Int64} (alias `Edm.Int64`)
1209
+ * - {@link sap.ui.model.odata.type.SByte} (alias `Edm.SByte`)
1210
+ * - {@link sap.ui.model.odata.type.Single} (alias `Edm.Single`)
1211
+ * - {@link sap.ui.model.odata.type.Stream} (alias `Edm.Stream`)
1212
+ * - {@link sap.ui.model.odata.type.String} (alias `Edm.String`)
1213
+ * - {@link sap.ui.model.odata.type.Time} (alias `Edm.Time`)
1214
+ * - {@link sap.ui.model.odata.type.TimeOfDay} (alias `Edm.TimeOfDay`)
1033
1215
  */
1034
1216
  interface TypeMap {}
1035
1217
  const TypeMap: TypeMap;
@@ -1150,11 +1332,7 @@ declare module "sap/ui/mdc/TableDelegate" {
1150
1332
  /**
1151
1333
  * Instance of the MDC table
1152
1334
  */
1153
- oTable: Table,
1154
- /**
1155
- * Property to group
1156
- */
1157
- sPropertyName: string
1335
+ oTable: Table
1158
1336
  ): Sorter | undefined;
1159
1337
  /**
1160
1338
  * @ui5-protected Do not call from applications (only from related classes in the framework)
@@ -1279,7 +1457,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
1279
1457
  */
1280
1458
  getBaseType(
1281
1459
  /**
1282
- * Given type string or sap.ui.model.SimpleType
1460
+ * Given type string or {@link sap.ui.model.SimpleType}
1283
1461
  */
1284
1462
  sType: string,
1285
1463
  /**
@@ -1297,7 +1475,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
1297
1475
  */
1298
1476
  getBaseTypeForType(
1299
1477
  /**
1300
- * Given type string or sap.ui.model.SimpleType
1478
+ * Given type string or {@link sap.ui.model.SimpleType}
1301
1479
  */
1302
1480
  oType: SimpleType
1303
1481
  ): string;
@@ -1393,14 +1571,14 @@ declare module "sap/ui/mdc/util/TypeMap" {
1393
1571
  oConstraints?: object
1394
1572
  ): object;
1395
1573
  /**
1396
- * Sets a BaseType and an optional model- or scenario-specific configuration method for a given sap.ui.model.SimpleType
1574
+ * Sets a BaseType and an optional model- or scenario-specific configuration method for a given {@link sap.ui.model.SimpleType }
1397
1575
  * ObjectPath string
1398
1576
  *
1399
1577
  * As default `string` is returned.
1400
1578
  */
1401
1579
  set(
1402
1580
  /**
1403
- * Objectpath string for sap.ui.model.SimpleType
1581
+ * Objectpath string for {@link sap.ui.model.SimpleType}
1404
1582
  */
1405
1583
  sType: string,
1406
1584
  /**
@@ -1408,16 +1586,17 @@ declare module "sap/ui/mdc/util/TypeMap" {
1408
1586
  */
1409
1587
  vBaseType: (BaseType | keyof typeof BaseType) | Function,
1410
1588
  /**
1411
- * Optional customizing method for formatoptions and constraints. See `sap.ui.mdc.DefaultTypeMap` for examples.
1589
+ * Optional customizing method for formatoptions and constraints. See {@link sap.ui.mdc.DefaultTypeMap }
1590
+ * for examples.
1412
1591
  */
1413
1592
  fnOptions?: Function
1414
1593
  ): void;
1415
1594
  /**
1416
- * Allows alternative identifiers for Types, such as "Boolean" for "sap.ui.model.type.Boolean"
1595
+ * Allows alternative identifiers for Types, such as "Boolean" for "{@link sap.ui.model.type.Boolean}"
1417
1596
  */
1418
1597
  setAlias(
1419
1598
  /**
1420
- * Objectpath string for sap.ui.model.SimpleType
1599
+ * Objectpath string for {@link sap.ui.model.SimpleType}
1421
1600
  */
1422
1601
  sType: string,
1423
1602
  /**
@@ -1485,9 +1664,9 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1485
1664
  * @since 1.101.0
1486
1665
  *
1487
1666
  * Provides the possibility to convey custom data in conditions. This enables an application to enhance
1488
- * conditions with data relevant for combined key or outparameter scenarios.
1667
+ * conditions with data relevant for combined key or out parameter scenarios.
1489
1668
  *
1490
- * @returns Optionally returns a serializeable object to be stored in the condition payload field.
1669
+ * @returns Optionally returns a serializable object to be stored in the condition payload field
1491
1670
  */
1492
1671
  createConditionPayload(
1493
1672
  /**
@@ -1499,18 +1678,18 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1499
1678
  */
1500
1679
  oContent: FilterableListContent,
1501
1680
  /**
1502
- * key, description pair for the condition which is to be created.
1681
+ * Key and description pair for the condition that is created
1503
1682
  */
1504
1683
  aValues: any[],
1505
1684
  /**
1506
- * optional additional context
1685
+ * Optional additional context
1507
1686
  */
1508
1687
  oContext?: Context
1509
1688
  ): undefined | object;
1510
1689
  /**
1511
1690
  * Executes a filter in a `ListBinding`.
1512
1691
  *
1513
- * @returns Promise that is resolved if search is executed
1692
+ * @returns `Promise` that is resolved if search is executed
1514
1693
  */
1515
1694
  executeFilter(
1516
1695
  /**
@@ -1529,10 +1708,11 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1529
1708
  /**
1530
1709
  * @since 1.106.0
1531
1710
  *
1532
- * This method should provide a map of conditions for the following situations: 1. Initial set of conditions
1533
- * applied everytime a value help content is shown for the first time since opening it's container. 2. Detailed
1534
- * set of conditions in getItemForValue scenarios allowing to find a specific ValueHelpItem (indicated by
1535
- * oConfig availability)
1711
+ * Provides a map of conditions for the following situations:
1712
+ * - Initial set of conditions applied every time value help content is shown for the first time since
1713
+ * opening its container.
1714
+ * - Detailed set of conditions in `getItemForValue` scenarios that allow you to find a specific value
1715
+ * help item (indicated by oConfig availability).
1536
1716
  *
1537
1717
  * @returns Returns a map of conditions
1538
1718
  */
@@ -1558,18 +1738,18 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1558
1738
  */
1559
1739
  parsedValue?: any;
1560
1740
  /**
1561
- * Contextual information provided by condition payload or inParameters/outParameters. This is only filled
1562
- * if the description needs to be determined for an existing condition.
1741
+ * Contextual information provided by condition payload or `inParameters`/`outParameters`. This is only
1742
+ * filled if the description needs to be determined for an existing condition.
1563
1743
  */
1564
1744
  context?: {
1565
1745
  /**
1566
- * In parameters of the current condition (InParameter are not used any longer, but it might be filled in
1567
- * older conditiotions stored in variants.)
1746
+ * In parameters of the current condition (`inParameter` are not used any longer, but it might be filled
1747
+ * in older conditions stored in variants.)
1568
1748
  */
1569
1749
  inParameter?: object;
1570
1750
  /**
1571
- * Out parameters of the current condition (OutParameter are not used any longer, but it might be filled
1572
- * in older conditiotions stored in variants.)
1751
+ * Out parameters of the current condition (`outParameter` are not used any longer, but it might be filled
1752
+ * in older conditions stored in variants.)
1573
1753
  */
1574
1754
  ouParameter?: object;
1575
1755
  /**
@@ -1582,8 +1762,8 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1582
1762
  */
1583
1763
  control: Control;
1584
1764
  /**
1585
- * `BindingContext` of the checked field. Inside a table the `ValueHelp` element might be connected to a
1586
- * different row.
1765
+ * `BindingContext` of the checked field. Inside a table, the `ValueHelp` element might be connected to
1766
+ * a different row.
1587
1767
  */
1588
1768
  bindingContext?: Context;
1589
1769
  /**
@@ -1593,7 +1773,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1593
1773
  checkKey: boolean;
1594
1774
  /**
1595
1775
  * If set, the value help checks only if there is an item with the given description. This is set to `false`
1596
- * if only the key is used in the field. * @returns {object} Returns a type map for property paths
1776
+ * if only the key is used in the field.
1597
1777
  */
1598
1778
  checkDescription: boolean;
1599
1779
  }
@@ -1601,7 +1781,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1601
1781
  /**
1602
1782
  * @since 1.101.0
1603
1783
  *
1604
- * Provides type information for listcontent filtering
1784
+ * Provides type information for list content filtering.
1605
1785
  *
1606
1786
  * @returns Returns a type map for property paths
1607
1787
  */
@@ -1615,7 +1795,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1615
1795
  */
1616
1796
  oContent: FilterableListContent,
1617
1797
  /**
1618
- * set of conditions to create filters for
1798
+ * Set of conditions to create filters for
1619
1799
  */
1620
1800
  oConditions: object
1621
1801
  ): object;
@@ -1623,9 +1803,9 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1623
1803
  * @since 1.101.0
1624
1804
  *
1625
1805
  * Provides the possibility to customize selections in 'Select from list' scenarios. By default, only condition
1626
- * keys are considered. This may be extended with payload dependent filters.
1806
+ * keys are taken into consideration. This might be extended with payload dependent filters.
1627
1807
  *
1628
- * @returns True, if item is selected
1808
+ * @returns `true` if item is selected
1629
1809
  */
1630
1810
  isFilterableListItemSelected(
1631
1811
  /**
@@ -1646,9 +1826,9 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1646
1826
  aConditions: ConditionObject[]
1647
1827
  ): boolean;
1648
1828
  /**
1649
- * Checks if a `ListBinding` supports $Search.
1829
+ * Checks if a `ListBinding` supports `$search`.
1650
1830
  *
1651
- * @returns true if $search is supported
1831
+ * @returns `true` if `$search` is supported
1652
1832
  */
1653
1833
  isSearchSupported(
1654
1834
  /**
@@ -1660,7 +1840,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1660
1840
  */
1661
1841
  oContent: Content,
1662
1842
  /**
1663
- * ListBinding
1843
+ * `ListBinding`
1664
1844
  */
1665
1845
  oListBinding: ListBinding
1666
1846
  ): boolean;
@@ -1698,8 +1878,8 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1698
1878
  /**
1699
1879
  * @since 1.101.0
1700
1880
  *
1701
- * Callback invoked everytime a {@link sap.ui.mdc.ValueHelp ValueHelp} fires a select event or the value
1702
- * of the corresponding field changes This callback may be used to update external fields.
1881
+ * Callback invoked every time a {@link sap.ui.mdc.ValueHelp ValueHelp} fires a `select` event or the value
1882
+ * of the corresponding field changes. This callback can be used to update external fields.
1703
1883
  */
1704
1884
  onConditionPropagation(
1705
1885
  /**
@@ -1713,7 +1893,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1713
1893
  | ValueHelpPropagationReason
1714
1894
  | keyof typeof ValueHelpPropagationReason,
1715
1895
  /**
1716
- * current configuration provided by the calling control
1896
+ * Current configuration provided by the calling control
1717
1897
  */
1718
1898
  oConfig: object
1719
1899
  ): void;
@@ -1722,11 +1902,11 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1722
1902
  *
1723
1903
  * This function is called when the value help is opened or a key or description is requested.
1724
1904
  *
1725
- * So, depending on the value help content used, all content controls and data need to be assigned. Once
1905
+ * So depending on the value help content used, all content controls and data need to be assigned. Once
1726
1906
  * they are assigned and the data is set, the returned `Promise` needs to be resolved. Only then does the
1727
1907
  * value help continue opening or reading data.
1728
1908
  *
1729
- * @returns Promise that is resolved if all content is available
1909
+ * @returns `Promise` that is resolved if all content is available
1730
1910
  */
1731
1911
  retrieveContent(
1732
1912
  /**
@@ -1738,16 +1918,16 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1738
1918
  */
1739
1919
  oContainer: Container,
1740
1920
  /**
1741
- * id of the content shown after this call to retrieveContent
1921
+ * ID of the content shown after this call to retrieve content
1742
1922
  */
1743
1923
  sContentId: string
1744
1924
  ): Promise<any>;
1745
1925
  /**
1746
1926
  * @since 1.110.0
1747
1927
  *
1748
- * Controls if a typeahead should be opened or closed
1928
+ * Controls if a type-ahead is opened or closed.
1749
1929
  *
1750
- * @returns Boolean or Promise resolving to a boolean indicating the desired behavior
1930
+ * @returns Boolean or `Promise` resolving into a boolean indicating the desired behavior
1751
1931
  */
1752
1932
  showTypeahead(
1753
1933
  /**
@@ -1755,7 +1935,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1755
1935
  */
1756
1936
  oValueHelp: ValueHelp,
1757
1937
  /**
1758
- * ValueHelp content requesting conditions configuration
1938
+ * `ValueHelp` Content requesting conditions configuration
1759
1939
  */
1760
1940
  oContent: Content
1761
1941
  ): Promise<any> | boolean;
@@ -1774,18 +1954,18 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1774
1954
  */
1775
1955
  oListBinding: ListBinding,
1776
1956
  /**
1777
- * The binding info object to be used to bind the list to the model
1957
+ * The binding info object that is be used to bind the list to the model
1778
1958
  */
1779
1959
  oBindingInfo: AggregationBindingInfo,
1780
1960
  /**
1781
- * ValueHelp content requesting the binding update
1961
+ * `ValueHelp` content requesting the binding update
1782
1962
  */
1783
1963
  oContent: FilterableListContent
1784
1964
  ): void;
1785
1965
  /**
1786
1966
  * @since 1.110.0
1787
1967
  *
1788
- * Adjustable filtering for list-based contents
1968
+ * Adjustable filtering for list-based contents.
1789
1969
  */
1790
1970
  updateBindingInfo(
1791
1971
  /**
@@ -1793,11 +1973,11 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1793
1973
  */
1794
1974
  oValueHelp: ValueHelp,
1795
1975
  /**
1796
- * ValueHelp content requesting conditions configuration
1976
+ * `ValueHelp` content requesting conditions configuration
1797
1977
  */
1798
1978
  oContent: FilterableListContent,
1799
1979
  /**
1800
- * The binding info object to be used to bind the list to the model
1980
+ * The binding info object to that is used to bind the list to the model
1801
1981
  */
1802
1982
  oBindingInfo: AggregationBindingInfo
1803
1983
  ): void;
@@ -1809,6 +1989,78 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
1809
1989
  declare module "sap/ui/mdc/library" {
1810
1990
  import FieldDisplay from "sap/ui/mdc/enums/FieldDisplay";
1811
1991
 
1992
+ /**
1993
+ * @since 1.70
1994
+ *
1995
+ * Interface for controls or entities which can serve as filters in the `sap.ui.mdc.Table` & `sap.ui.mdc.Chart`.
1996
+ *
1997
+ * The following methods need to be implemented:
1998
+ *
1999
+ *
2000
+ * - `getConditions` - Part of the {@link sap.ui.mdc.IFilterSource} interface.
2001
+ * - `validate` - The `validate` method should return a promise which resolves after the IFilter interface
2002
+ * has handled its inner validation. The `getConditions` method will be called subsequently by the filtered
2003
+ * control.
2004
+ * - `getSearch` - **Note:** The `getSearch` method can optionally be implemented and should return a
2005
+ * string for approximate string matching implemented in the backend.
2006
+ *
2007
+ * The following events need to be implemented:
2008
+ *
2009
+ *
2010
+ * - `search` - This event should be fired once a filtering should be executed on the IFilter using control.
2011
+ *
2012
+ * - `filtersChanged` - **Note:** The `filtersChanged` event can optionally be implemented and should
2013
+ * be fired whenever a filter value has changed. This event will be used to display an overlay on the IFilter
2014
+ * consuming control.
2015
+ */
2016
+ export interface IFilter extends IFilterSource {
2017
+ __implements__sap_ui_mdc_IFilter: boolean;
2018
+
2019
+ /**
2020
+ * @since 1.80
2021
+ *
2022
+ * **Note:** The `getSearch` method can optionally be implemented and should return a string for approximate
2023
+ * string matching implemented in the backend.
2024
+ *
2025
+ * @returns The search string to be used for an approximate string matching
2026
+ */
2027
+ getSearch(): string;
2028
+ /**
2029
+ * @since 1.80
2030
+ *
2031
+ * The `validate` method should return a promise which resolves after the IFilter interface has handled
2032
+ * its inner validation. The `getConditions` method will be called subsequently by the filtered control.
2033
+ *
2034
+ * @returns A promise resolving once the necessary result validation has been handled
2035
+ */
2036
+ validate(
2037
+ /**
2038
+ * Determines whether the search should be suppressed. The default is null.
2039
+ */
2040
+ bSuppressSearch: boolean
2041
+ ): Promise<any>;
2042
+ }
2043
+
2044
+ /**
2045
+ * @since 1.80
2046
+ *
2047
+ * Interface for controls or entities which are able to return a set of present conditions. The controls
2048
+ * or entities have to implement the following APIs: `getConditions`.
2049
+ */
2050
+ export interface IFilterSource {
2051
+ __implements__sap_ui_mdc_IFilterSource: boolean;
2052
+ }
2053
+
2054
+ /**
2055
+ * @since 1.75
2056
+ *
2057
+ * Interface for controls or entities which support the appliance of an externalized state representation.
2058
+ * The controls or entities have to implement the following APIs: `getCurrentState` & `initialized` methods.
2059
+ */
2060
+ export interface IxState {
2061
+ __implements__sap_ui_mdc_IxState: boolean;
2062
+ }
2063
+
1812
2064
  /**
1813
2065
  * The `State` object describes the interface to apply and retrieve the current adaptation state from mdc
1814
2066
  * controls. The {@link sap.mdc.p13n.StateUtil StateUtil} class can be used to programatically apply changes
@@ -1859,9 +2111,9 @@ declare module "sap/ui/mdc/library" {
1859
2111
  */
1860
2112
  tooltip?: string;
1861
2113
  /**
1862
- * The name of the type of the property
2114
+ * The data type of the property
1863
2115
  */
1864
- datatype: string;
2116
+ dataType: string;
1865
2117
  /**
1866
2118
  * Defines constraints for the data type of the property
1867
2119
  */
@@ -2570,6 +2822,8 @@ declare module "sap/ui/mdc/actiontoolbar/ActionToolbarAction" {
2570
2822
  declare module "sap/ui/mdc/Chart" {
2571
2823
  import { default as Control, $ControlSettings } from "sap/ui/mdc/Control";
2572
2824
 
2825
+ import { IFilterSource, IxState, IFilter } from "sap/ui/mdc/library";
2826
+
2573
2827
  import Control1 from "sap/ui/core/Control";
2574
2828
 
2575
2829
  import Item from "sap/ui/mdc/chart/Item";
@@ -2591,14 +2845,14 @@ declare module "sap/ui/mdc/Chart" {
2591
2845
  AggregationBindingInfo,
2592
2846
  } from "sap/ui/base/ManagedObject";
2593
2847
 
2594
- import Event from "sap/ui/base/Event";
2595
-
2596
2848
  import Item1 from "sap/ui/core/Item";
2597
2849
 
2598
2850
  import Context from "sap/ui/model/Context";
2599
2851
 
2600
2852
  import { SelectionDetailsActionLevel } from "sap/m/library";
2601
2853
 
2854
+ import Event from "sap/ui/base/Event";
2855
+
2602
2856
  /**
2603
2857
  * @since 1.88
2604
2858
  * @experimental (since 1.88)
@@ -2606,7 +2860,9 @@ declare module "sap/ui/mdc/Chart" {
2606
2860
  * The `Chart` control creates a chart based on metadata and the configuration specified.
2607
2861
  * **Note:** The inner chart needs to be assigned `ChartDelegate`.
2608
2862
  */
2609
- export default class Chart extends Control {
2863
+ export default class Chart extends Control implements IFilterSource, IxState {
2864
+ __implements__sap_ui_mdc_IFilterSource: boolean;
2865
+ __implements__sap_ui_mdc_IxState: boolean;
2610
2866
  /**
2611
2867
  * Constructor for a new Chart.
2612
2868
  *
@@ -3230,7 +3486,7 @@ declare module "sap/ui/mdc/Chart" {
3230
3486
  * ID of an element which becomes the new target of this filter association; alternatively, an element instance
3231
3487
  * may be given
3232
3488
  */
3233
- oFilter: ID | /* was: sap.ui.mdc.IFilter */ any
3489
+ oFilter: ID | IFilter
3234
3490
  ): this;
3235
3491
  /**
3236
3492
  * @since 1.99
@@ -3581,7 +3837,7 @@ declare module "sap/ui/mdc/Chart" {
3581
3837
  */
3582
3838
  tooltip?: string;
3583
3839
  /**
3584
- * The name of the type of the property
3840
+ * The name of the data type of the property
3585
3841
  */
3586
3842
  datatype: string;
3587
3843
  /**
@@ -3812,13 +4068,13 @@ declare module "sap/ui/mdc/Chart" {
3812
4068
  * Control or object that enables the chart to do filtering, such as {@link sap.ui.mdc.FilterBar}. Also
3813
4069
  * see {@link sap.ui.mdc.IFilter}.
3814
4070
  */
3815
- filter?: /* was: sap.ui.mdc.IFilter */ any | string;
4071
+ filter?: IFilter | string;
3816
4072
 
3817
4073
  /**
3818
4074
  * This event is fired when a `SelectionDetailsAction` is pressed.
3819
4075
  */
3820
4076
  selectionDetailsActionPressed?: (
3821
- oEvent: Event<Chart$SelectionDetailsActionPressedEventParameters>
4077
+ oEvent: Chart$SelectionDetailsActionPressedEvent
3822
4078
  ) => void;
3823
4079
  }
3824
4080
 
@@ -3844,12 +4100,6 @@ declare module "sap/ui/mdc/Chart" {
3844
4100
  | keyof typeof SelectionDetailsActionLevel;
3845
4101
  }
3846
4102
 
3847
- /**
3848
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Chart$SelectionDetailsActionPressedEventParameters'
3849
- * in 1.115.1 and any later releases.
3850
- */
3851
- export type $ChartSelectionDetailsActionPressedEventParameters = Chart$SelectionDetailsActionPressedEventParameters;
3852
-
3853
4103
  export type Chart$SelectionDetailsActionPressedEvent = Event<Chart$SelectionDetailsActionPressedEventParameters>;
3854
4104
  }
3855
4105
 
@@ -3957,7 +4207,7 @@ declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
3957
4207
  *
3958
4208
  * Control that is shown when there is no data available inside the chart.
3959
4209
  * This can be used if the standard behavior of the used chart control needs to be overriden.
3960
- * To show this `noDataContent`, set {@link ap.ui.mdc.chart.ChartImplementationContainer#showNoDataStruct showNoDataStruct}.
4210
+ * To show this `noDataContent`, set {@link sap.ui.mdc.chart.ChartImplementationContainer#setShowNoDataStruct showNoDataStruct}.
3961
4211
  */
3962
4212
  getNoDataContent(): Control;
3963
4213
  /**
@@ -3987,7 +4237,7 @@ declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
3987
4237
  /**
3988
4238
  * Control that is shown when there is no data available inside the chart.
3989
4239
  * This can be used if the standard behavior of the used chart control needs to be overriden.
3990
- * To show this `noDataContent`, set {@link ap.ui.mdc.chart.ChartImplementationContainer#showNoDataStruct showNoDataStruct}.
4240
+ * To show this `noDataContent`, set {@link sap.ui.mdc.chart.ChartImplementationContainer#setShowNoDataStruct showNoDataStruct}.
3991
4241
  */
3992
4242
  noDataContent?: Control;
3993
4243
 
@@ -5763,7 +6013,16 @@ declare module "sap/ui/mdc/enums/ActionToolbarActionAlignment" {
5763
6013
  *
5764
6014
  * Defines the alignment of the `ActionToolbarAction` action control.
5765
6015
  */
5766
- enum ActionToolbarActionAlignment {}
6016
+ enum ActionToolbarActionAlignment {
6017
+ /**
6018
+ * Align to the beginning
6019
+ */
6020
+ Begin = "Begin",
6021
+ /**
6022
+ * Align to the end
6023
+ */
6024
+ End = "End",
6025
+ }
5767
6026
  export default ActionToolbarActionAlignment;
5768
6027
  }
5769
6028
 
@@ -6081,16 +6340,6 @@ declare module "sap/ui/mdc/enums/OperatorValueType" {
6081
6340
  export default OperatorValueType;
6082
6341
  }
6083
6342
 
6084
- declare module "sap/ui/mdc/enums/PersistenceMode" {
6085
- /**
6086
- * @since 1.115
6087
- *
6088
- * Enumeration of the preferred persistence mode for personalization changes.
6089
- */
6090
- enum PersistenceMode {}
6091
- export default PersistenceMode;
6092
- }
6093
-
6094
6343
  declare module "sap/ui/mdc/enums/TableGrowingMode" {
6095
6344
  /**
6096
6345
  * @since 1.115
@@ -6232,7 +6481,20 @@ declare module "sap/ui/mdc/enums/ValueHelpPropagationReason" {
6232
6481
  *
6233
6482
  * Enumeration of the propagation reason in the condition propagation callback of the {@link sap.ui.mdc.ValueHelp ValueHelp}
6234
6483
  */
6235
- enum ValueHelpPropagationReason {}
6484
+ enum ValueHelpPropagationReason {
6485
+ /**
6486
+ * Triggered by connected control after processing valuehelp output
6487
+ */
6488
+ ControlChange = "ControlChange",
6489
+ /**
6490
+ * Triggered by `ValueHelp` itself on `getItemForValue`
6491
+ */
6492
+ Info = "Info",
6493
+ /**
6494
+ * Triggered by `ValueHelp` itself on selection
6495
+ */
6496
+ Select = "Select",
6497
+ }
6236
6498
  export default ValueHelpPropagationReason;
6237
6499
  }
6238
6500
 
@@ -6536,7 +6798,7 @@ declare module "sap/ui/mdc/Field" {
6536
6798
  *
6537
6799
  * **Note** This event is only triggered if the used content control has a change event.
6538
6800
  */
6539
- change?: (oEvent: Event<Field$ChangeEventParameters>) => void;
6801
+ change?: (oEvent: Field$ChangeEvent) => void;
6540
6802
  }
6541
6803
 
6542
6804
  export interface Field$ChangeEventParameters {
@@ -6563,12 +6825,6 @@ declare module "sap/ui/mdc/Field" {
6563
6825
  promise?: Promise<any>;
6564
6826
  }
6565
6827
 
6566
- /**
6567
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Field$ChangeEventParameters'
6568
- * in 1.115.1 and any later releases.
6569
- */
6570
- export type $FieldChangeEventParameters = Field$ChangeEventParameters;
6571
-
6572
6828
  export type Field$ChangeEvent = Event<Field$ChangeEventParameters>;
6573
6829
  }
6574
6830
 
@@ -8083,7 +8339,12 @@ declare module "sap/ui/mdc/field/FieldBase" {
8083
8339
  *
8084
8340
  * Might be called if Binding changes or field is initialized.
8085
8341
  */
8086
- resetInvalidInput(): void;
8342
+ resetInvalidInput(
8343
+ /**
8344
+ * If set to `true` the `ValueState` and `ValueStateText` is removed
8345
+ */
8346
+ bRemoveUIMessage: boolean
8347
+ ): void;
8087
8348
  /**
8088
8349
  * Sets a new value for property {@link #getConditions conditions}.
8089
8350
  *
@@ -8814,7 +9075,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
8814
9075
  *
8815
9076
  * **Note** This event is only triggered if the used content control has a `liveChange` event.
8816
9077
  */
8817
- liveChange?: (oEvent: Event<FieldBase$LiveChangeEventParameters>) => void;
9078
+ liveChange?: (oEvent: FieldBase$LiveChangeEvent) => void;
8818
9079
 
8819
9080
  /**
8820
9081
  * This event is fired if the inner control has a press event and this is fired.
@@ -8829,7 +9090,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
8829
9090
  *
8830
9091
  * **Note** This event is only triggered if the field is editable.
8831
9092
  */
8832
- submit?: (oEvent: Event<FieldBase$SubmitEventParameters>) => void;
9093
+ submit?: (oEvent: FieldBase$SubmitEvent) => void;
8833
9094
  }
8834
9095
 
8835
9096
  export interface FieldBase$LiveChangeEventParameters {
@@ -8849,22 +9110,10 @@ declare module "sap/ui/mdc/field/FieldBase" {
8849
9110
  previousValue?: string;
8850
9111
  }
8851
9112
 
8852
- /**
8853
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FieldBase$LiveChangeEventParameters'
8854
- * in 1.115.1 and any later releases.
8855
- */
8856
- export type $FieldBaseLiveChangeEventParameters = FieldBase$LiveChangeEventParameters;
8857
-
8858
9113
  export type FieldBase$LiveChangeEvent = Event<FieldBase$LiveChangeEventParameters>;
8859
9114
 
8860
9115
  export interface FieldBase$PressEventParameters {}
8861
9116
 
8862
- /**
8863
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FieldBase$PressEventParameters'
8864
- * in 1.115.1 and any later releases.
8865
- */
8866
- export type $FieldBasePressEventParameters = FieldBase$PressEventParameters;
8867
-
8868
9117
  export type FieldBase$PressEvent = Event<FieldBase$PressEventParameters>;
8869
9118
 
8870
9119
  export interface FieldBase$SubmitEventParameters {
@@ -8876,12 +9125,6 @@ declare module "sap/ui/mdc/field/FieldBase" {
8876
9125
  promise?: Promise<any>;
8877
9126
  }
8878
9127
 
8879
- /**
8880
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FieldBase$SubmitEventParameters'
8881
- * in 1.115.1 and any later releases.
8882
- */
8883
- export type $FieldBaseSubmitEventParameters = FieldBase$SubmitEventParameters;
8884
-
8885
9128
  export type FieldBase$SubmitEvent = Event<FieldBase$SubmitEventParameters>;
8886
9129
  }
8887
9130
 
@@ -9196,22 +9439,10 @@ declare module "sap/ui/mdc/field/FieldInfoBase" {
9196
9439
 
9197
9440
  export interface FieldInfoBase$DataUpdateEventParameters {}
9198
9441
 
9199
- /**
9200
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FieldInfoBase$DataUpdateEventParameters'
9201
- * in 1.115.1 and any later releases.
9202
- */
9203
- export type $FieldInfoBaseDataUpdateEventParameters = FieldInfoBase$DataUpdateEventParameters;
9204
-
9205
9442
  export type FieldInfoBase$DataUpdateEvent = Event<FieldInfoBase$DataUpdateEventParameters>;
9206
9443
 
9207
9444
  export interface FieldInfoBase$PopoverAfterOpenEventParameters {}
9208
9445
 
9209
- /**
9210
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FieldInfoBase$PopoverAfterOpenEventParameters'
9211
- * in 1.115.1 and any later releases.
9212
- */
9213
- export type $FieldInfoBasePopoverAfterOpenEventParameters = FieldInfoBase$PopoverAfterOpenEventParameters;
9214
-
9215
9446
  export type FieldInfoBase$PopoverAfterOpenEvent = Event<FieldInfoBase$PopoverAfterOpenEventParameters>;
9216
9447
  }
9217
9448
 
@@ -9483,7 +9714,7 @@ declare module "sap/ui/mdc/FilterBar" {
9483
9714
  static getMetadata(): ElementMetadata;
9484
9715
  /**
9485
9716
  * Returns the external conditions of the inner condition model. **Note:** This API returns only attributes
9486
- * related to the {@link sap.ui.mdc.FilterBar#p13nMode} property configuration.
9717
+ * related to the {@link sap.ui.mdc.FilterBar#setP13nMode p13nMode} property configuration.
9487
9718
  *
9488
9719
  * @returns Object containing the current status of the `FilterBar`
9489
9720
  */
@@ -9612,14 +9843,14 @@ declare module "sap/ui/mdc/FilterBar" {
9612
9843
  declare module "sap/ui/mdc/filterbar/FilterBarBase" {
9613
9844
  import { default as Control, $ControlSettings } from "sap/ui/mdc/Control";
9614
9845
 
9846
+ import { IFilterSource, IFilter, IxState, State } from "sap/ui/mdc/library";
9847
+
9615
9848
  import FilterField from "sap/ui/mdc/FilterField";
9616
9849
 
9617
9850
  import Event from "sap/ui/base/Event";
9618
9851
 
9619
9852
  import FilterBarValidationStatus from "sap/ui/mdc/enums/FilterBarValidationStatus";
9620
9853
 
9621
- import { State } from "sap/ui/mdc/library";
9622
-
9623
9854
  import ElementMetadata from "sap/ui/core/ElementMetadata";
9624
9855
 
9625
9856
  import { ID } from "sap/ui/core/library";
@@ -9636,7 +9867,12 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
9636
9867
  *
9637
9868
  * The `FilterBarBase` control is the base for filter displaying controls in MDC.
9638
9869
  */
9639
- export default class FilterBarBase extends Control {
9870
+ export default class FilterBarBase
9871
+ extends Control
9872
+ implements IFilterSource, IFilter, IxState {
9873
+ __implements__sap_ui_mdc_IFilterSource: boolean;
9874
+ __implements__sap_ui_mdc_IFilter: boolean;
9875
+ __implements__sap_ui_mdc_IxState: boolean;
9640
9876
  /**
9641
9877
  * Constructor for a new FilterBarBase.
9642
9878
  *
@@ -9918,7 +10154,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
9918
10154
  getBasicSearchField(): FilterField;
9919
10155
  /**
9920
10156
  * Returns the external conditions of the inner condition model. **Note:** This API returns only attributes
9921
- * related to the {@link sap.ui.mdc.FilterBar#p13nMode} property configuration.
10157
+ * related to the {@link sap.ui.mdc.FilterBar#setP13nMode p13nMode} property configuration.
9922
10158
  *
9923
10159
  * @returns Object containing the current status of the `FilterBarBase`
9924
10160
  */
@@ -10273,7 +10509,9 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
10273
10509
  /**
10274
10510
  * Triggers the search.
10275
10511
  *
10276
- * @returns Returns a Promise which resolves after the validation of erroneous fields has been propagated.
10512
+ * @returns In case the property {@link sap.ui.mdc.FilterBarBase#setSuspendSelection suspendSelection} is
10513
+ * set to `true` the method will be immediatelly resolved, otherwise it returns the result of the {@link sap.ui.mdc.FilterBarBase#validate }
10514
+ * call.
10277
10515
  */
10278
10516
  triggerSearch(): Promise<any>;
10279
10517
  /**
@@ -10387,9 +10625,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
10387
10625
  /**
10388
10626
  * This event is fired after either a filter value or the visibility of a filter item has been changed.
10389
10627
  */
10390
- filtersChanged?: (
10391
- oEvent: Event<FilterBarBase$FiltersChangedEventParameters>
10392
- ) => void;
10628
+ filtersChanged?: (oEvent: FilterBarBase$FiltersChangedEvent) => void;
10393
10629
  }
10394
10630
 
10395
10631
  export interface FilterBarBase$FiltersChangedEventParameters {
@@ -10409,26 +10645,16 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
10409
10645
  filtersTextExpanded?: string;
10410
10646
  }
10411
10647
 
10412
- /**
10413
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FilterBarBase$FiltersChangedEventParameters'
10414
- * in 1.115.1 and any later releases.
10415
- */
10416
- export type $FilterBarBaseFiltersChangedEventParameters = FilterBarBase$FiltersChangedEventParameters;
10417
-
10418
10648
  export type FilterBarBase$FiltersChangedEvent = Event<FilterBarBase$FiltersChangedEventParameters>;
10419
10649
 
10420
10650
  export interface FilterBarBase$SearchEventParameters {}
10421
10651
 
10422
- /**
10423
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FilterBarBase$SearchEventParameters'
10424
- * in 1.115.1 and any later releases.
10425
- */
10426
- export type $FilterBarBaseSearchEventParameters = FilterBarBase$SearchEventParameters;
10427
-
10428
10652
  export type FilterBarBase$SearchEvent = Event<FilterBarBase$SearchEventParameters>;
10429
10653
  }
10430
10654
 
10431
10655
  declare module "sap/ui/mdc/filterbar/IFilterContainer" {
10656
+ import FilterField from "sap/ui/mdc/FilterField";
10657
+
10432
10658
  import Control from "sap/ui/core/Control";
10433
10659
 
10434
10660
  /**
@@ -10449,7 +10675,7 @@ declare module "sap/ui/mdc/filterbar/IFilterContainer" {
10449
10675
  *
10450
10676
  * @returns Array of all inner controls in the layout item
10451
10677
  */
10452
- getFilterFields(): /* was: sap.ui.mdc.FilterItem */ any[];
10678
+ getFilterFields(): FilterField[];
10453
10679
  /**
10454
10680
  * Getter for the inner layout item.
10455
10681
  *
@@ -10467,7 +10693,7 @@ declare module "sap/ui/mdc/filterbar/IFilterContainer" {
10467
10693
  /**
10468
10694
  * to be inserted
10469
10695
  */
10470
- oControl: /* was: sap.ui.mdc.FilterItem */ any,
10696
+ oControl: FilterField,
10471
10697
  /**
10472
10698
  * Position where the control is added
10473
10699
  */
@@ -10480,7 +10706,7 @@ declare module "sap/ui/mdc/filterbar/IFilterContainer" {
10480
10706
  /**
10481
10707
  * Control that is removed
10482
10708
  */
10483
- oControl: /* was: sap.ui.mdc.FilterItem */ any
10709
+ oControl: FilterField
10484
10710
  ): void;
10485
10711
  }
10486
10712
  }
@@ -10505,10 +10731,12 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
10505
10731
  * The `FilterBar` control creates and handles the filters based on the provided metadata information.
10506
10732
  * The metadata information is provided via the {@link sap.ui.mdc.FilterBarDelegate FilterBarDelegate} implementation.
10507
10733
  * This implementation has to be provided by the application.
10734
+ * **Note:** The `FilterBar` can only be used for a {@link sap.ui.mdc.valuehelp.Dialog Dialog} and not
10735
+ * on its own.
10508
10736
  */
10509
10737
  export default class FilterBar extends FilterBarBase {
10510
10738
  /**
10511
- * Constructor for a new FilterBar.
10739
+ * Constructor for a new `FilterBar` for a value help dialog.
10512
10740
  *
10513
10741
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
10514
10742
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -10521,7 +10749,7 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
10521
10749
  mSettings?: $FilterBarSettings
10522
10750
  );
10523
10751
  /**
10524
- * Constructor for a new FilterBar.
10752
+ * Constructor for a new `FilterBar` for a value help dialog.
10525
10753
  *
10526
10754
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
10527
10755
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -10570,7 +10798,7 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
10570
10798
  /**
10571
10799
  * @ui5-protected Do not call from applications (only from related classes in the framework)
10572
10800
  *
10573
- * Destroyes the `CollectiveSearch` control
10801
+ * Destroys the `CollectiveSearch` control.
10574
10802
  *
10575
10803
  * **Note:** This must only be used by the corresponding value help, not from outside.
10576
10804
  *
@@ -10722,83 +10950,15 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
10722
10950
  }
10723
10951
  }
10724
10952
 
10725
- declare module "sap/ui/mdc/filterbar/vh/FilterContainer" {
10726
- import IFilterContainer from "sap/ui/mdc/filterbar/IFilterContainer";
10727
-
10728
- import Metadata from "sap/ui/base/Metadata";
10729
-
10730
- /**
10731
- * @since 1.84.0
10732
- * @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10733
- *
10734
- * The FilterContainer is a IFilterContainer implementation for `AlignedFlowLayout`
10735
- */
10736
- export default class FilterContainer extends IFilterContainer {
10737
- /**
10738
- * @ui5-protected Do not call from applications (only from related classes in the framework)
10739
- *
10740
- * Constructor for a new filterBar/vh/FilterContainer.
10741
- *
10742
- * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
10743
- * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
10744
- * of the syntax of the settings object.
10745
- */
10746
- constructor(
10747
- /**
10748
- * ID for the new control, generated automatically if no ID is given
10749
- */
10750
- sId?: string
10751
- );
10752
-
10753
- /**
10754
- * @ui5-protected Do not call from applications (only from related classes in the framework)
10755
- *
10756
- * Creates a new subclass of class sap.ui.mdc.filterbar.vh.FilterContainer with name `sClassName` and enriches
10757
- * it with the information contained in `oClassInfo`.
10758
- *
10759
- * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.mdc.filterbar.IFilterContainer.extend}.
10760
- *
10761
- * @returns Created class / constructor function
10762
- */
10763
- static extend<T extends Record<string, unknown>>(
10764
- /**
10765
- * Name of the class being created
10766
- */
10767
- sClassName: string,
10768
- /**
10769
- * Object literal with information about the class
10770
- */
10771
- oClassInfo?: sap.ClassInfo<T, FilterContainer>,
10772
- /**
10773
- * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10774
- * used by this class
10775
- */
10776
- FNMetaImpl?: Function
10777
- ): Function;
10778
- /**
10779
- * @ui5-protected Do not call from applications (only from related classes in the framework)
10780
- *
10781
- * Returns a metadata object for class sap.ui.mdc.filterbar.vh.FilterContainer.
10782
- *
10783
- * @returns Metadata object describing this class
10784
- */
10785
- static getMetadata(): Metadata;
10786
- }
10787
- }
10788
-
10789
10953
  declare module "sap/ui/mdc/FilterBarDelegate" {
10790
- import Control from "sap/ui/mdc/Control";
10954
+ import FilterBar from "sap/ui/mdc/FilterBar";
10791
10955
 
10792
10956
  import FilterField from "sap/ui/mdc/FilterField";
10793
10957
 
10794
- import FilterBar from "sap/ui/mdc/FilterBar";
10795
-
10796
10958
  import FilterBarValidationStatus from "sap/ui/mdc/enums/FilterBarValidationStatus";
10797
10959
 
10798
10960
  import { filterbar } from "sap/ui/mdc/library";
10799
10961
 
10800
- import Control1 from "sap/ui/core/Control";
10801
-
10802
10962
  /**
10803
10963
  * @since 1.61.0
10804
10964
  *
@@ -10811,19 +10971,19 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
10811
10971
 
10812
10972
  /**
10813
10973
  * This method is called during the appliance of the add condition change. The intention is to update the
10814
- * {@link sap.ui.mdc.FilterBar#propertyInfo} property.
10974
+ * {@link sap.ui.mdc.FilterBarBase#setPropertyInfo propertyInfo} property.
10815
10975
  *
10816
10976
  * @returns `Promise` that is resolved once the propertyInfo property has been updated
10817
10977
  */
10818
10978
  static addCondition(
10819
10979
  /**
10820
- * The name of a property
10980
+ * Instance of the filter bar
10821
10981
  */
10822
- sPropertyName: string,
10982
+ oFilterBar: FilterBar,
10823
10983
  /**
10824
- * The instance of a filter bar
10984
+ * The name of a property
10825
10985
  */
10826
- oControl: Control,
10986
+ sPropertyName: string,
10827
10987
  /**
10828
10988
  * Instance of a property bag from the SAPUI5 flexibility change API
10829
10989
  */
@@ -10842,13 +11002,13 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
10842
11002
  */
10843
11003
  static addItem(
10844
11004
  /**
10845
- * The name of the property info object/JSON
11005
+ * Instance of the filter bar
10846
11006
  */
10847
- sPropertyName: string,
11007
+ oFilterBar: FilterBar,
10848
11008
  /**
10849
- * Instance of an `sap.ui.mdc.Control`
11009
+ * The name of the property info object/JSON
10850
11010
  */
10851
- oControl: Control,
11011
+ sPropertyName: string,
10852
11012
  /**
10853
11013
  * Instance of property bag from SAPUI5 flexibility change API
10854
11014
  */
@@ -10861,9 +11021,9 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
10861
11021
  */
10862
11022
  static clearFilters(
10863
11023
  /**
10864
- * The instance of a filter bar
11024
+ * Instance of the filter bar
10865
11025
  */
10866
- oControl: Control
11026
+ oFilterBar: FilterBar
10867
11027
  ): Promise<any>;
10868
11028
  /**
10869
11029
  * A validator to evaluate the filter bar state.
@@ -10872,7 +11032,7 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
10872
11032
  */
10873
11033
  static determineValidationState(
10874
11034
  /**
10875
- * Instance of an `sap.ui.mdc.FilterBar`
11035
+ * Instance of the filter bar
10876
11036
  */
10877
11037
  oFilterBar: FilterBar,
10878
11038
  /**
@@ -10892,25 +11052,25 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
10892
11052
  */
10893
11053
  static fetchProperties(
10894
11054
  /**
10895
- * Instance of an `sap.ui.mdc.Control`
11055
+ * Instance of the filter bar
10896
11056
  */
10897
- oControl: Control
11057
+ oFilterBar: FilterBar
10898
11058
  ): Promise<filterbar.PropertyInfo[]>;
10899
11059
  /**
10900
- * This method is called during the appliance of the remove condition change. The intention is to update
10901
- * the {@link sap.ui.mdc.FilterBar#propertyInfo} property.
11060
+ * propertyInfo This method is called during the appliance of the remove condition change. The intention
11061
+ * is to update the {@link sap.ui.mdc.FilterBarBase#setPropertyInfo propertyInfo} property.
10902
11062
  *
10903
11063
  * @returns `Promise` that is resolved once the propertyInfo property has been updated
10904
11064
  */
10905
11065
  static removeCondition(
10906
11066
  /**
10907
- * The name of a property
11067
+ * Instance of the filter bar
10908
11068
  */
10909
- sPropertyName: string,
11069
+ oFilterBar: FilterBar,
10910
11070
  /**
10911
- * The instance of a filter bar
11071
+ * The name of a property
10912
11072
  */
10913
- oControl: Control,
11073
+ sPropertyName: string,
10914
11074
  /**
10915
11075
  * Instance of a property bag from the SAPUI5 flexibility change API
10916
11076
  */
@@ -10929,13 +11089,13 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
10929
11089
  */
10930
11090
  static removeItem(
10931
11091
  /**
10932
- * The control instance that was removed
11092
+ * Instance of the filter bar
10933
11093
  */
10934
- oItem: Control1,
11094
+ oFilterBar: FilterBar,
10935
11095
  /**
10936
- * Instance of an `sap.ui.mdc.Control`
11096
+ * The filter field instance that was removed
10937
11097
  */
10938
- oControl: Control,
11098
+ oFilterField: FilterField,
10939
11099
  /**
10940
11100
  * Instance of property bag from SAPUI5 flexibility
10941
11101
  */
@@ -10946,7 +11106,7 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
10946
11106
  */
10947
11107
  static visualizeValidationState(
10948
11108
  /**
10949
- * Instance of an `sap.ui.mdc.FilterBar`
11109
+ * Instance of the filter bar
10950
11110
  */
10951
11111
  oFilterBar: FilterBar,
10952
11112
  /**
@@ -10989,24 +11149,26 @@ declare module "sap/ui/mdc/FilterField" {
10989
11149
  * property must be bound to the related conditions in the {@link sap.ui.mdc.condition.ConditionModel ConditionModel}.
10990
11150
  * The type of this data must be defined in the `dataType` property.
10991
11151
  *
11152
+ * Based on the data type settings, a default control is rendered by the `FilterField` as follows:
11153
+ *
10992
11154
  *
10993
- * - In display mode normally a {@link sap.m.Text Text} control is rendered.
10994
- * - If `multipleLines` is set a {@link sap.m.ExpandableText ExpandableText} control is rendered.
10995
- * - If multiple values are allowed a {@link sap.m.Tokenizer Tokenizer} control is rendered.
10996
- * - In edit mode normally a {@link sap.m.Input Input} control is rendered.
10997
- * - If multiple values are allowed a {@link sap.m.MultiInput MultiInput} control is rendered.
10998
- * - If `multipleLines` is set a {@link sap.m.TextArea TextArea} control is rendered.
10999
- * - If a date type or a date-time type is used, a {@link sap.m.DateRangeSelection DateRangeSelection }
11155
+ * - In display mode, usually a {@link sap.m.Text Text} control is rendered.
11156
+ * - If `multipleLines` is set, an {@link sap.m.ExpandableText ExpandableText} control is rendered.
11157
+ * - If multiple values are allowed, a {@link sap.m.Tokenizer Tokenizer} control is rendered.
11158
+ * - In edit mode, usually an {@link sap.m.Input Input} control is rendered.
11159
+ * - If multiple values are allowed, a {@link sap.m.MultiInput MultiInput} control is rendered.
11160
+ * - If `multipleLines` is set, a {@link sap.m.TextArea TextArea} control is rendered.
11161
+ * - If a date type or a date/time type is used, a {@link sap.m.DateRangeSelection DateRangeSelection }
11000
11162
  * control is rendered.
11001
11163
  * - If a date type is used and only single values are allowed, a {@link sap.m.DatePicker DatePicker }
11002
11164
  * control is rendered.
11003
11165
  * - If a date type is used and only single ranges are allowed, a {@link sap.m.DateRangeSelection DateRangeSelection }
11004
11166
  * control is rendered.
11005
- * - If a date-time type is used and only single values are allowed, a {@link sap.m.DateTimePicker DateTimePicker }
11167
+ * - If a date/time type is used and only single values are allowed, a {@link sap.m.DateTimePicker DateTimePicker }
11006
11168
  * control is rendered.
11007
11169
  * - If a time type is used and only single values are allowed, a {@link sap.m.TimePicker TimePicker }
11008
11170
  * control is rendered.
11009
- * - If used for search a {@link sap.m.SearchField SearchField} control is rendered.
11171
+ * - If used for search, a {@link sap.m.SearchField SearchField} control is rendered.
11010
11172
  */
11011
11173
  export default class FilterField
11012
11174
  extends FieldBase
@@ -11202,7 +11364,7 @@ declare module "sap/ui/mdc/FilterField" {
11202
11364
  *
11203
11365
  * Supported operator names for conditions.
11204
11366
  *
11205
- * If empty, default operators depending on used data type are used.
11367
+ * If empty, default operators depending on used data type are taken.
11206
11368
  *
11207
11369
  * Default value is `[]`.
11208
11370
  *
@@ -11274,7 +11436,7 @@ declare module "sap/ui/mdc/FilterField" {
11274
11436
  *
11275
11437
  * Supported operator names for conditions.
11276
11438
  *
11277
- * If empty, default operators depending on used data type are used.
11439
+ * If empty, default operators depending on used data type are taken.
11278
11440
  *
11279
11441
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
11280
11442
  *
@@ -11315,7 +11477,7 @@ declare module "sap/ui/mdc/FilterField" {
11315
11477
  *
11316
11478
  * Supported operator names for conditions.
11317
11479
  *
11318
- * If empty, default operators depending on used data type are used.
11480
+ * If empty, default operators depending on used data type are taken.
11319
11481
  */
11320
11482
  operators?: string[] | PropertyBindingInfo | `{${string}}`;
11321
11483
 
@@ -11342,7 +11504,7 @@ declare module "sap/ui/mdc/FilterField" {
11342
11504
  *
11343
11505
  * **Note** This event is only triggered if the used content control has a change event.
11344
11506
  */
11345
- change?: (oEvent: Event<FilterField$ChangeEventParameters>) => void;
11507
+ change?: (oEvent: FilterField$ChangeEvent) => void;
11346
11508
  }
11347
11509
 
11348
11510
  export interface FilterField$ChangeEventParameters {
@@ -11365,8 +11527,8 @@ declare module "sap/ui/mdc/FilterField" {
11365
11527
 
11366
11528
  /**
11367
11529
  * Returns a `Promise` for the change. The `Promise` returns the value if it is resolved. If the `change`
11368
- * event is synchronous, the promise has already been already resolved. If it is asynchronous, it will be
11369
- * resolved after the value has been updated.
11530
+ * event is synchronous, the `Promise` has already been resolved. If it is asynchronous, it will be resolved
11531
+ * after the value has been updated.
11370
11532
  *
11371
11533
  * The `FilterField` should be set to busy during the parsing to prevent user input. As there might be a
11372
11534
  * whole group of fields that needs to be busy, this cannot be done automatically.
@@ -11374,12 +11536,6 @@ declare module "sap/ui/mdc/FilterField" {
11374
11536
  promise?: boolean;
11375
11537
  }
11376
11538
 
11377
- /**
11378
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FilterField$ChangeEventParameters'
11379
- * in 1.115.1 and any later releases.
11380
- */
11381
- export type $FilterFieldChangeEventParameters = FilterField$ChangeEventParameters;
11382
-
11383
11539
  export type FilterField$ChangeEvent = Event<FilterField$ChangeEventParameters>;
11384
11540
  }
11385
11541
 
@@ -11530,6 +11686,8 @@ declare module "sap/ui/mdc/Link" {
11530
11686
  */
11531
11687
  getSourceControl(): ID;
11532
11688
  /**
11689
+ * Retrieves the `AdditionalContent` objects depending on the given `LinkDelegate`. Caches the returned
11690
+ * objects for further usage.
11533
11691
  *
11534
11692
  * @returns Resolves an array of type {@link sap.ui.core.Control}
11535
11693
  */
@@ -11541,6 +11699,7 @@ declare module "sap/ui/mdc/Link" {
11541
11699
  */
11542
11700
  retrieveLinkItems(): Promise<LinkItem[]>;
11543
11701
  /**
11702
+ * Determines the `LinkType` object depending on the given `LinkDelegate`.
11544
11703
  *
11545
11704
  * @returns Returns `undefined` or a {@link sap.ui.mdc.link.LinkType}, once resolved
11546
11705
  */
@@ -12024,13 +12183,13 @@ declare module "sap/ui/mdc/MultiValueField" {
12024
12183
  *
12025
12184
  * A `MultiValueField` control can hold multiple values. The values are stored as items. A `MultiValueField`
12026
12185
  * control can be used to bind its items to data of a certain data type. Based on the data type settings,
12027
- * a default control is rendered by the `MultiValueField` control.
12186
+ * a default control is rendered by the `MultiValueField` control as follows:
12028
12187
  *
12029
12188
  *
12030
- * - In display mode normally a {@link sap.m.Tokenizer Tokenizer} control is rendered.
12031
- * - If `multipleLines` is set a {@link sap.m.ExpandableText ExpandableText} control is rendered.
12032
- * - In edit mode normally a {@link sap.m.MultiInput MultiInput} control is rendered.
12033
- * - If `multipleLines` is set a {@link sap.m.TextArea TextArea} control is rendered.
12189
+ * - In display mode, usually a {@link sap.m.Tokenizer Tokenizer} control is rendered.
12190
+ * - If `multipleLines` is set, an {@link sap.m.ExpandableText ExpandableText} control is rendered.
12191
+ * - In edit mode, usually a {@link sap.m.MultiInput MultiInput} control is rendered.
12192
+ * - If `multipleLines` is set, a {@link sap.m.TextArea TextArea} control is rendered.
12034
12193
  */
12035
12194
  export default class MultiValueField
12036
12195
  extends FieldBase
@@ -12338,7 +12497,7 @@ declare module "sap/ui/mdc/MultiValueField" {
12338
12497
  *
12339
12498
  * **Note** This event is only triggered if the used content control has a change event.
12340
12499
  */
12341
- change?: (oEvent: Event<MultiValueField$ChangeEventParameters>) => void;
12500
+ change?: (oEvent: MultiValueField$ChangeEvent) => void;
12342
12501
  }
12343
12502
 
12344
12503
  export interface MultiValueField$ChangeEventParameters {
@@ -12357,7 +12516,7 @@ declare module "sap/ui/mdc/MultiValueField" {
12357
12516
 
12358
12517
  /**
12359
12518
  * Returns a `Promise` for the change. The `Promise` returns the items when it is resolved. If the `change`
12360
- * event is synchronous, the promise has already been resolved. If it is asynchronous, it will be resolved
12519
+ * event is synchronous, the `Promise` has already been resolved. If it is asynchronous, it will be resolved
12361
12520
  * after the items have been updated.
12362
12521
  *
12363
12522
  * The `MultiValueField` control should be set to busy during the parsing to prevent user input. As there
@@ -12366,12 +12525,6 @@ declare module "sap/ui/mdc/MultiValueField" {
12366
12525
  promise?: Promise<any>;
12367
12526
  }
12368
12527
 
12369
- /**
12370
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MultiValueField$ChangeEventParameters'
12371
- * in 1.115.1 and any later releases.
12372
- */
12373
- export type $MultiValueFieldChangeEventParameters = MultiValueField$ChangeEventParameters;
12374
-
12375
12528
  export type MultiValueField$ChangeEvent = Event<MultiValueField$ChangeEventParameters>;
12376
12529
  }
12377
12530
 
@@ -12548,6 +12701,8 @@ declare module "sap/ui/mdc/p13n/StateUtil" {
12548
12701
  declare module "sap/ui/mdc/Table" {
12549
12702
  import { default as Control, $ControlSettings } from "sap/ui/mdc/Control";
12550
12703
 
12704
+ import { IFilterSource, IxState, IFilter } from "sap/ui/mdc/library";
12705
+
12551
12706
  import Control1 from "sap/ui/core/Control";
12552
12707
 
12553
12708
  import Column from "sap/ui/mdc/table/Column";
@@ -12589,7 +12744,9 @@ declare module "sap/ui/mdc/Table" {
12589
12744
  * controls. The metadata needs to be provided via the {@link module:sap/ui/mdc/TableDelegate TableDelegate }
12590
12745
  * implementation as {@link sap.ui.mdc.table.PropertyInfo}.
12591
12746
  */
12592
- export default class Table extends Control {
12747
+ export default class Table extends Control implements IFilterSource, IxState {
12748
+ __implements__sap_ui_mdc_IFilterSource: boolean;
12749
+ __implements__sap_ui_mdc_IxState: boolean;
12593
12750
  /**
12594
12751
  * Constructor for a new `MDCTable`.
12595
12752
  *
@@ -13150,15 +13307,6 @@ declare module "sap/ui/mdc/Table" {
13150
13307
  * removed.
13151
13308
  */
13152
13309
  getCreationRow(): /* was: sap.ui.mdc.table.CreationRow */ any;
13153
- /**
13154
- * @ui5-protected Do not call from applications (only from related classes in the framework)
13155
- *
13156
- * Fetches the current state of the table (as a JSON) **Note:** This API may return attributes corresponding
13157
- * to the `p13nMode` property configuration.
13158
- *
13159
- * @returns Current state of the table
13160
- */
13161
- getCurrentState(): Object;
13162
13310
  /**
13163
13311
  * @since 1.89
13164
13312
  *
@@ -13296,6 +13444,17 @@ declare module "sap/ui/mdc/Table" {
13296
13444
  * @returns Value of property `headerLevel`
13297
13445
  */
13298
13446
  getHeaderLevel(): TitleLevel | keyof typeof TitleLevel;
13447
+ /**
13448
+ * @since 1.116
13449
+ * @experimental - Internal use only
13450
+ *
13451
+ * Gets current value of property {@link #getHeaderStyle headerStyle}.
13452
+ *
13453
+ * Defines style of the header. For more information, see {@link sap.m.Title#setTitleStyle}.
13454
+ *
13455
+ * @returns Value of property `headerStyle`
13456
+ */
13457
+ getHeaderStyle(): TitleLevel | keyof typeof TitleLevel;
13299
13458
  /**
13300
13459
  * @since 1.63
13301
13460
  *
@@ -13582,38 +13741,6 @@ declare module "sap/ui/mdc/Table" {
13582
13741
  */
13583
13742
  iIndex: int
13584
13743
  ): this;
13585
- /**
13586
- * @ui5-protected Do not call from applications (only from related classes in the framework)
13587
- *
13588
- * Checks whether aggregation personalization is enabled.
13589
- *
13590
- * @returns Whether aggregation personalization is enabled
13591
- */
13592
- isAggregationEnabled(): boolean;
13593
- /**
13594
- * @ui5-protected Do not call from applications (only from related classes in the framework)
13595
- *
13596
- * Checks whether filter personalization is enabled.
13597
- *
13598
- * @returns Whether filter personalization is enabled
13599
- */
13600
- isFilteringEnabled(): boolean;
13601
- /**
13602
- * @ui5-protected Do not call from applications (only from related classes in the framework)
13603
- *
13604
- * Checks whether group personalization is enabled.
13605
- *
13606
- * @returns Whether group personalization is enabled
13607
- */
13608
- isGroupingEnabled(): boolean;
13609
- /**
13610
- * @ui5-protected Do not call from applications (only from related classes in the framework)
13611
- *
13612
- * Checks whether sort personalization is enabled.
13613
- *
13614
- * @returns Whether sort personalization is enabled
13615
- */
13616
- isSortingEnabled(): boolean;
13617
13744
  /**
13618
13745
  * Checks whether the table is bound.
13619
13746
  *
@@ -13887,7 +14014,7 @@ declare module "sap/ui/mdc/Table" {
13887
14014
  * ID of an element which becomes the new target of this filter association; alternatively, an element instance
13888
14015
  * may be given
13889
14016
  */
13890
- oFilter: ID | /* was: sap.ui.mdc.IFilter */ any
14017
+ oFilter: ID | IFilter
13891
14018
  ): this;
13892
14019
  /**
13893
14020
  * @since 1.80.0
@@ -13965,6 +14092,24 @@ declare module "sap/ui/mdc/Table" {
13965
14092
  */
13966
14093
  sHeaderLevel?: TitleLevel | keyof typeof TitleLevel
13967
14094
  ): this;
14095
+ /**
14096
+ * @since 1.116
14097
+ * @experimental - Internal use only
14098
+ *
14099
+ * Sets a new value for property {@link #getHeaderStyle headerStyle}.
14100
+ *
14101
+ * Defines style of the header. For more information, see {@link sap.m.Title#setTitleStyle}.
14102
+ *
14103
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
14104
+ *
14105
+ * @returns Reference to `this` in order to allow method chaining
14106
+ */
14107
+ setHeaderStyle(
14108
+ /**
14109
+ * New value for property `headerStyle`
14110
+ */
14111
+ sHeaderStyle: TitleLevel | keyof typeof TitleLevel
14112
+ ): this;
13968
14113
  /**
13969
14114
  * @since 1.63
13970
14115
  *
@@ -14330,6 +14475,17 @@ declare module "sap/ui/mdc/Table" {
14330
14475
  | PropertyBindingInfo
14331
14476
  | `{${string}}`;
14332
14477
 
14478
+ /**
14479
+ * @since 1.116
14480
+ * @experimental - Internal use only
14481
+ *
14482
+ * Defines style of the header. For more information, see {@link sap.m.Title#setTitleStyle}.
14483
+ */
14484
+ headerStyle?:
14485
+ | (TitleLevel | keyof typeof TitleLevel)
14486
+ | PropertyBindingInfo
14487
+ | `{${string}}`;
14488
+
14333
14489
  /**
14334
14490
  * Determines whether to bind the table automatically after the initial creation or re-creation of the table.
14335
14491
  */
@@ -14608,19 +14764,17 @@ declare module "sap/ui/mdc/Table" {
14608
14764
  *
14609
14765
  * Automatic filter generation only works in combination with a `sap.ui.mdc.FilterBar`.
14610
14766
  */
14611
- filter?: /* was: sap.ui.mdc.IFilter */ any | string;
14767
+ filter?: IFilter | string;
14612
14768
 
14613
14769
  /**
14614
14770
  * This event is fired when a row in the table is pressed.
14615
14771
  */
14616
- rowPress?: (oEvent: Event<Table$RowPressEventParameters>) => void;
14772
+ rowPress?: (oEvent: Table$RowPressEvent) => void;
14617
14773
 
14618
14774
  /**
14619
14775
  * This event is fired when the selection in the table is changed.
14620
14776
  */
14621
- selectionChange?: (
14622
- oEvent: Event<Table$SelectionChangeEventParameters>
14623
- ) => void;
14777
+ selectionChange?: (oEvent: Table$SelectionChangeEvent) => void;
14624
14778
 
14625
14779
  /**
14626
14780
  * @since 1.75
@@ -14629,12 +14783,12 @@ declare module "sap/ui/mdc/Table" {
14629
14783
  *
14630
14784
  * For more information about the export settings, see {@link sap.ui.export.Spreadsheet} or {@link https://ui5.sap.com/#/topic/7e12e6b9154a4607be9d6072c72d609c Spreadsheet Export Configuration}.
14631
14785
  */
14632
- beforeExport?: (oEvent: Event<Table$BeforeExportEventParameters>) => void;
14786
+ beforeExport?: (oEvent: Table$BeforeExportEvent) => void;
14633
14787
 
14634
14788
  /**
14635
14789
  * This event is fired when the user pastes content from the clipboard to the table.
14636
14790
  */
14637
- paste?: (oEvent: Event<Table$PasteEventParameters>) => void;
14791
+ paste?: (oEvent: Table$PasteEvent) => void;
14638
14792
  }
14639
14793
 
14640
14794
  export interface Table$BeforeExportEventParameters {
@@ -14657,12 +14811,6 @@ declare module "sap/ui/mdc/Table" {
14657
14811
  filterSettings?: object[];
14658
14812
  }
14659
14813
 
14660
- /**
14661
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$BeforeExportEventParameters'
14662
- * in 1.115.1 and any later releases.
14663
- */
14664
- export type $TableBeforeExportEventParameters = Table$BeforeExportEventParameters;
14665
-
14666
14814
  export type Table$BeforeExportEvent = Event<Table$BeforeExportEventParameters>;
14667
14815
 
14668
14816
  export interface Table$PasteEventParameters {
@@ -14673,12 +14821,6 @@ declare module "sap/ui/mdc/Table" {
14673
14821
  data?: string[][];
14674
14822
  }
14675
14823
 
14676
- /**
14677
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$PasteEventParameters'
14678
- * in 1.115.1 and any later releases.
14679
- */
14680
- export type $TablePasteEventParameters = Table$PasteEventParameters;
14681
-
14682
14824
  export type Table$PasteEvent = Event<Table$PasteEventParameters>;
14683
14825
 
14684
14826
  export interface Table$RowPressEventParameters {
@@ -14688,12 +14830,6 @@ declare module "sap/ui/mdc/Table" {
14688
14830
  bindingContext?: Context;
14689
14831
  }
14690
14832
 
14691
- /**
14692
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$RowPressEventParameters'
14693
- * in 1.115.1 and any later releases.
14694
- */
14695
- export type $TableRowPressEventParameters = Table$RowPressEventParameters;
14696
-
14697
14833
  export type Table$RowPressEvent = Event<Table$RowPressEventParameters>;
14698
14834
 
14699
14835
  export interface Table$SelectionChangeEventParameters {
@@ -14703,12 +14839,6 @@ declare module "sap/ui/mdc/Table" {
14703
14839
  selectAll?: boolean;
14704
14840
  }
14705
14841
 
14706
- /**
14707
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$SelectionChangeEventParameters'
14708
- * in 1.115.1 and any later releases.
14709
- */
14710
- export type $TableSelectionChangeEventParameters = Table$SelectionChangeEventParameters;
14711
-
14712
14842
  export type Table$SelectionChangeEvent = Event<Table$SelectionChangeEventParameters>;
14713
14843
  }
14714
14844
 
@@ -16226,10 +16356,10 @@ declare module "sap/ui/mdc/table/RowActionItem" {
16226
16356
 
16227
16357
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
16228
16358
 
16229
- import Event from "sap/ui/base/Event";
16230
-
16231
16359
  import Context from "sap/ui/model/Context";
16232
16360
 
16361
+ import Event from "sap/ui/base/Event";
16362
+
16233
16363
  /**
16234
16364
  * The `RowActionItem` control represents a action for a row. This control can only be used in the context
16235
16365
  * of `sap.ui.mdc.Table` control to define row actions.
@@ -16534,7 +16664,7 @@ declare module "sap/ui/mdc/table/RowActionItem" {
16534
16664
  * `sap.m.Table`: The press event is fired when a row with a row action item is pressed. The `sap.ui.mdc.Table`'s
16535
16665
  * `rowPress` event is fired as well, when pressing a row with a row action item.
16536
16666
  */
16537
- press?: (oEvent: Event<RowActionItem$PressEventParameters>) => void;
16667
+ press?: (oEvent: RowActionItem$PressEvent) => void;
16538
16668
  }
16539
16669
 
16540
16670
  export interface RowActionItem$PressEventParameters {
@@ -16544,12 +16674,6 @@ declare module "sap/ui/mdc/table/RowActionItem" {
16544
16674
  bindingContext?: Context;
16545
16675
  }
16546
16676
 
16547
- /**
16548
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RowActionItem$PressEventParameters'
16549
- * in 1.115.1 and any later releases.
16550
- */
16551
- export type $RowActionItemPressEventParameters = RowActionItem$PressEventParameters;
16552
-
16553
16677
  export type RowActionItem$PressEvent = Event<RowActionItem$PressEventParameters>;
16554
16678
  }
16555
16679
 
@@ -16571,9 +16695,9 @@ declare module "sap/ui/mdc/table/RowSettings" {
16571
16695
  */
16572
16696
  export default class RowSettings extends UI5Element {
16573
16697
  /**
16574
- * Constructor for new RowSettings.
16698
+ * Constructor for new `RowSettings`.
16575
16699
  *
16576
- * Caution: Only use bindings which are bound against the rows, as working functionalities cannot be ensured
16700
+ * **Note:** Only use bindings that are bound against the rows, as working functionality cannot be ensured
16577
16701
  * for other binding types.
16578
16702
  *
16579
16703
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
@@ -16587,9 +16711,9 @@ declare module "sap/ui/mdc/table/RowSettings" {
16587
16711
  mSettings?: $RowSettingsSettings
16588
16712
  );
16589
16713
  /**
16590
- * Constructor for new RowSettings.
16714
+ * Constructor for new `RowSettings`.
16591
16715
  *
16592
- * Caution: Only use bindings which are bound against the rows, as working functionalities cannot be ensured
16716
+ * **Note:** Only use bindings that are bound against the rows, as working functionality cannot be ensured
16593
16717
  * for other binding types.
16594
16718
  *
16595
16719
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
@@ -17113,8 +17237,8 @@ declare module "sap/ui/mdc/ValueHelp" {
17113
17237
  /**
17114
17238
  * Constructor for a new `ValueHelp`.
17115
17239
  *
17116
- * The `ValueHelp` element can be assigned to {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField }
17117
- * and {@link sap.ui.mdc.FilterField FilterField} controls using `valueHelp` association. One `ValueHelp`
17240
+ * The `ValueHelp` element can be assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
17241
+ * and {@link sap.ui.mdc.FilterField FilterField} controls using the `valueHelp` association. One `ValueHelp`
17118
17242
  * element instance can be assigned to multiple fields (like in different table rows). It should be placed
17119
17243
  * in the control tree on the container holding the fields.
17120
17244
  *
@@ -17131,8 +17255,8 @@ declare module "sap/ui/mdc/ValueHelp" {
17131
17255
  /**
17132
17256
  * Constructor for a new `ValueHelp`.
17133
17257
  *
17134
- * The `ValueHelp` element can be assigned to {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField }
17135
- * and {@link sap.ui.mdc.FilterField FilterField} controls using `valueHelp` association. One `ValueHelp`
17258
+ * The `ValueHelp` element can be assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
17259
+ * and {@link sap.ui.mdc.FilterField FilterField} controls using the `valueHelp` association. One `ValueHelp`
17136
17260
  * element instance can be assigned to multiple fields (like in different table rows). It should be placed
17137
17261
  * in the control tree on the container holding the fields.
17138
17262
  *
@@ -17930,18 +18054,18 @@ declare module "sap/ui/mdc/ValueHelp" {
17930
18054
  */
17931
18055
  parsedValue?: any;
17932
18056
  /**
17933
- * Contextual information provided by condition payload or inParameters/outParameters. This is only filled
17934
- * if the description needs to be determined for an existing condition.
18057
+ * Contextual information provided by condition `payload` or `inParameters`/`outParameters`. This is only
18058
+ * filled if the description needs to be determined for an existing condition.
17935
18059
  */
17936
18060
  context?: {
17937
18061
  /**
17938
- * In parameters of the current condition (InParameter are not used any longer, but it might be filled in
17939
- * older conditiotions stored in variants.)
18062
+ * In parameters of the current condition (`inParameters` are not used any longer, but it might be filled
18063
+ * in older conditions stored in variants.)
17940
18064
  */
17941
18065
  inParameter?: object;
17942
18066
  /**
17943
- * Out parameters of the current condition (OutParameter are not used any longer, but it might be filled
17944
- * in older conditiotions stored in variants.)
18067
+ * Out parameters of the current condition (`outParameters` are not used any longer, but it might be filled
18068
+ * in older conditions stored in variants.)
17945
18069
  */
17946
18070
  ouParameter?: object;
17947
18071
  /**
@@ -17950,8 +18074,8 @@ declare module "sap/ui/mdc/ValueHelp" {
17950
18074
  payload?: object;
17951
18075
  };
17952
18076
  /**
17953
- * `BindingContext` of the checked field. Inside a table the `ValueHelp` element might be connected to a
17954
- * different row.
18077
+ * `BindingContext` of the checked field. Inside a table, the `ValueHelp` element might be connected to
18078
+ * a different row.
17955
18079
  */
17956
18080
  bindingContext?: Context;
17957
18081
  /**
@@ -17965,7 +18089,7 @@ declare module "sap/ui/mdc/ValueHelp" {
17965
18089
  */
17966
18090
  checkDescription: boolean;
17967
18091
  /**
17968
- * If set, the check is done case sensitive
18092
+ * If set, the check is done case-sensitively
17969
18093
  */
17970
18094
  caseSensitive?: boolean;
17971
18095
  /**
@@ -18032,7 +18156,7 @@ declare module "sap/ui/mdc/ValueHelp" {
18032
18156
  * **Note:** This event must only be handled by the control the `ValueHelp` element belongs to, not by the
18033
18157
  * application.
18034
18158
  */
18035
- select?: (oEvent: Event<ValueHelp$SelectEventParameters>) => void;
18159
+ select?: (oEvent: ValueHelp$SelectEvent) => void;
18036
18160
 
18037
18161
  /**
18038
18162
  * This event is fired when the `ValueHelp` element is disconnected from a control.
@@ -18050,17 +18174,17 @@ declare module "sap/ui/mdc/ValueHelp" {
18050
18174
  /**
18051
18175
  * This event is fired as the value help opening is triggered.
18052
18176
  */
18053
- open?: (oEvent: Event<ValueHelp$OpenEventParameters>) => void;
18177
+ open?: (oEvent: ValueHelp$OpenEvent) => void;
18054
18178
 
18055
18179
  /**
18056
18180
  * This event is fired as the value help is fully open.
18057
18181
  */
18058
- opened?: (oEvent: Event<ValueHelp$OpenedEventParameters>) => void;
18182
+ opened?: (oEvent: ValueHelp$OpenedEvent) => void;
18059
18183
 
18060
18184
  /**
18061
18185
  * This event is fired after the user navigated, using the arrow keys, in the value help.
18062
18186
  */
18063
- navigated?: (oEvent: Event<ValueHelp$NavigatedEventParameters>) => void;
18187
+ navigated?: (oEvent: ValueHelp$NavigatedEvent) => void;
18064
18188
 
18065
18189
  /**
18066
18190
  * This event is fired if the user wants to switch from typeahead to value help.
@@ -18070,22 +18194,10 @@ declare module "sap/ui/mdc/ValueHelp" {
18070
18194
 
18071
18195
  export interface ValueHelp$ClosedEventParameters {}
18072
18196
 
18073
- /**
18074
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$ClosedEventParameters'
18075
- * in 1.115.1 and any later releases.
18076
- */
18077
- export type $ValueHelpClosedEventParameters = ValueHelp$ClosedEventParameters;
18078
-
18079
18197
  export type ValueHelp$ClosedEvent = Event<ValueHelp$ClosedEventParameters>;
18080
18198
 
18081
18199
  export interface ValueHelp$DisconnectEventParameters {}
18082
18200
 
18083
- /**
18084
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$DisconnectEventParameters'
18085
- * in 1.115.1 and any later releases.
18086
- */
18087
- export type $ValueHelpDisconnectEventParameters = ValueHelp$DisconnectEventParameters;
18088
-
18089
18201
  export type ValueHelp$DisconnectEvent = Event<ValueHelp$DisconnectEventParameters>;
18090
18202
 
18091
18203
  export interface ValueHelp$NavigatedEventParameters {
@@ -18107,12 +18219,6 @@ declare module "sap/ui/mdc/ValueHelp" {
18107
18219
  itemId?: string;
18108
18220
  }
18109
18221
 
18110
- /**
18111
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$NavigatedEventParameters'
18112
- * in 1.115.1 and any later releases.
18113
- */
18114
- export type $ValueHelpNavigatedEventParameters = ValueHelp$NavigatedEventParameters;
18115
-
18116
18222
  export type ValueHelp$NavigatedEvent = Event<ValueHelp$NavigatedEventParameters>;
18117
18223
 
18118
18224
  export interface ValueHelp$OpenEventParameters {
@@ -18122,12 +18228,6 @@ declare module "sap/ui/mdc/ValueHelp" {
18122
18228
  container?: Container;
18123
18229
  }
18124
18230
 
18125
- /**
18126
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$OpenEventParameters'
18127
- * in 1.115.1 and any later releases.
18128
- */
18129
- export type $ValueHelpOpenEventParameters = ValueHelp$OpenEventParameters;
18130
-
18131
18231
  export type ValueHelp$OpenEvent = Event<ValueHelp$OpenEventParameters>;
18132
18232
 
18133
18233
  export interface ValueHelp$OpenedEventParameters {
@@ -18137,12 +18237,6 @@ declare module "sap/ui/mdc/ValueHelp" {
18137
18237
  container?: Container;
18138
18238
  }
18139
18239
 
18140
- /**
18141
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$OpenedEventParameters'
18142
- * in 1.115.1 and any later releases.
18143
- */
18144
- export type $ValueHelpOpenedEventParameters = ValueHelp$OpenedEventParameters;
18145
-
18146
18240
  export type ValueHelp$OpenedEvent = Event<ValueHelp$OpenedEventParameters>;
18147
18241
 
18148
18242
  export interface ValueHelp$SelectEventParameters {
@@ -18165,22 +18259,10 @@ declare module "sap/ui/mdc/ValueHelp" {
18165
18259
  close?: boolean;
18166
18260
  }
18167
18261
 
18168
- /**
18169
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$SelectEventParameters'
18170
- * in 1.115.1 and any later releases.
18171
- */
18172
- export type $ValueHelpSelectEventParameters = ValueHelp$SelectEventParameters;
18173
-
18174
18262
  export type ValueHelp$SelectEvent = Event<ValueHelp$SelectEventParameters>;
18175
18263
 
18176
18264
  export interface ValueHelp$SwitchToValueHelpEventParameters {}
18177
18265
 
18178
- /**
18179
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ValueHelp$SwitchToValueHelpEventParameters'
18180
- * in 1.115.1 and any later releases.
18181
- */
18182
- export type $ValueHelpSwitchToValueHelpEventParameters = ValueHelp$SwitchToValueHelpEventParameters;
18183
-
18184
18266
  export type ValueHelp$SwitchToValueHelpEvent = Event<ValueHelp$SwitchToValueHelpEventParameters>;
18185
18267
  }
18186
18268
 
@@ -18211,7 +18293,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18211
18293
  /**
18212
18294
  * Constructor for a new `Container`.
18213
18295
  *
18214
- * This is the basis for different value help containers. It cannot be used directly.
18296
+ * This is the basis for various value help containers. It cannot be used directly.
18215
18297
  *
18216
18298
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
18217
18299
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -18226,7 +18308,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18226
18308
  /**
18227
18309
  * Constructor for a new `Container`.
18228
18310
  *
18229
- * This is the basis for different value help containers. It cannot be used directly.
18311
+ * This is the basis for various value help containers. It cannot be used directly.
18230
18312
  *
18231
18313
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
18232
18314
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -18289,7 +18371,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18289
18371
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18290
18372
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18291
18373
  *
18292
- * Fired if the change is cancelled.
18374
+ * This event is fired if the change is cancelled.
18293
18375
  *
18294
18376
  * @returns Reference to `this` in order to allow method chaining
18295
18377
  */
@@ -18315,7 +18397,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18315
18397
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18316
18398
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18317
18399
  *
18318
- * Fired if the change is cancelled.
18400
+ * This event is fired if the change is cancelled.
18319
18401
  *
18320
18402
  * @returns Reference to `this` in order to allow method chaining
18321
18403
  */
@@ -18336,7 +18418,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18336
18418
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18337
18419
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18338
18420
  *
18339
- * Fired if the value help is closed.
18421
+ * This event is fired if the value help is closed.
18340
18422
  *
18341
18423
  * @returns Reference to `this` in order to allow method chaining
18342
18424
  */
@@ -18362,7 +18444,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18362
18444
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18363
18445
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18364
18446
  *
18365
- * Fired if the value help is closed.
18447
+ * This event is fired if the value help is closed.
18366
18448
  *
18367
18449
  * @returns Reference to `this` in order to allow method chaining
18368
18450
  */
@@ -18383,7 +18465,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18383
18465
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18384
18466
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18385
18467
  *
18386
- * Fired if a change on the value help is confirmed
18468
+ * This event is fired if a change of the value help is confirmed.
18387
18469
  *
18388
18470
  * @returns Reference to `this` in order to allow method chaining
18389
18471
  */
@@ -18409,7 +18491,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18409
18491
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18410
18492
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18411
18493
  *
18412
- * Fired if a change on the value help is confirmed
18494
+ * This event is fired if a change of the value help is confirmed.
18413
18495
  *
18414
18496
  * @returns Reference to `this` in order to allow method chaining
18415
18497
  */
@@ -18430,7 +18512,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18430
18512
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18431
18513
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18432
18514
  *
18433
- * Fired if a navigation was executed in the content of the container
18515
+ * This event is fired if a navigation has been executed in the content of the container.
18434
18516
  *
18435
18517
  * @returns Reference to `this` in order to allow method chaining
18436
18518
  */
@@ -18456,7 +18538,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18456
18538
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18457
18539
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18458
18540
  *
18459
- * Fired if a navigation was executed in the content of the container
18541
+ * This event is fired if a navigation has been executed in the content of the container.
18460
18542
  *
18461
18543
  * @returns Reference to `this` in order to allow method chaining
18462
18544
  */
@@ -18477,7 +18559,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18477
18559
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18478
18560
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18479
18561
  *
18480
- * Fired if the value help is opened.
18562
+ * This event is fired if the value help is opened.
18481
18563
  *
18482
18564
  * @returns Reference to `this` in order to allow method chaining
18483
18565
  */
@@ -18503,7 +18585,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18503
18585
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18504
18586
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18505
18587
  *
18506
- * Fired if the value help is opened.
18588
+ * This event is fired if the value help is opened.
18507
18589
  *
18508
18590
  * @returns Reference to `this` in order to allow method chaining
18509
18591
  */
@@ -18525,7 +18607,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18525
18607
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18526
18608
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18527
18609
  *
18528
- * Fired if the Container requests the delegate content.
18610
+ * This event is fired if the container requests the delegate content.
18529
18611
  *
18530
18612
  * @returns Reference to `this` in order to allow method chaining
18531
18613
  */
@@ -18552,7 +18634,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18552
18634
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18553
18635
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18554
18636
  *
18555
- * Fired if the Container requests the delegate content.
18637
+ * This event is fired if the container requests the delegate content.
18556
18638
  *
18557
18639
  * @returns Reference to `this` in order to allow method chaining
18558
18640
  */
@@ -18574,7 +18656,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18574
18656
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18575
18657
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18576
18658
  *
18577
- * Fired if the value help should switch to dialog mode.
18659
+ * This event is fired if the value help should switch to dialog mode.
18578
18660
  *
18579
18661
  * @returns Reference to `this` in order to allow method chaining
18580
18662
  */
@@ -18601,7 +18683,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18601
18683
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18602
18684
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18603
18685
  *
18604
- * Fired if the value help should switch to dialog mode.
18686
+ * This event is fired if the value help should switch to dialog mode.
18605
18687
  *
18606
18688
  * @returns Reference to `this` in order to allow method chaining
18607
18689
  */
@@ -18622,7 +18704,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18622
18704
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18623
18705
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18624
18706
  *
18625
- * Fired if the selected condition changed.
18707
+ * This event is fired if the selected condition has changed.
18626
18708
  *
18627
18709
  * @returns Reference to `this` in order to allow method chaining
18628
18710
  */
@@ -18648,7 +18730,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18648
18730
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
18649
18731
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
18650
18732
  *
18651
- * Fired if the selected condition changed.
18733
+ * This event is fired if the selected condition has changed.
18652
18734
  *
18653
18735
  * @returns Reference to `this` in order to allow method chaining
18654
18736
  */
@@ -18666,7 +18748,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18666
18748
  /**
18667
18749
  * @ui5-protected Do not call from applications (only from related classes in the framework)
18668
18750
  *
18669
- * Binds the content to the container
18751
+ * Binds the content to the container.
18670
18752
  */
18671
18753
  bindContentToContainer(
18672
18754
  /**
@@ -18677,7 +18759,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18677
18759
  /**
18678
18760
  * @ui5-protected Do not call from applications (only from related classes in the framework)
18679
18761
  *
18680
- * Closes the container control or element
18762
+ * Closes the container control or element.
18681
18763
  */
18682
18764
  closeContainer(): void;
18683
18765
  /**
@@ -18931,7 +19013,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18931
19013
  /**
18932
19014
  * @ui5-protected Do not call from applications (only from related classes in the framework)
18933
19015
  *
18934
- * Gets the confoguration for a specific content
19016
+ * Gets the configuration for a specific content.
18935
19017
  *
18936
19018
  * @returns configuration
18937
19019
  */
@@ -18944,20 +19026,20 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18944
19026
  /**
18945
19027
  * @ui5-protected Do not call from applications (only from related classes in the framework)
18946
19028
  *
18947
- * Returns the container control or element to be opened (for example Popover or Dialog)
19029
+ * Returns the container control or element that is opened (for example, a popover or dialog).
18948
19030
  */
18949
19031
  getContainerControl(): void;
18950
19032
  /**
18951
19033
  * Gets content of aggregation {@link #getContent content}.
18952
19034
  *
18953
19035
  * Content of the container. This aggregation holds the actual controls enabling the user to select items
18954
- * or create conditions (e.g. tables or condition panels)
19036
+ * or create conditions (for example, tables or condition panels).
18955
19037
  */
18956
19038
  getContent(): Content[];
18957
19039
  /**
18958
19040
  * @ui5-protected Do not call from applications (only from related classes in the framework)
18959
19041
  *
18960
- * Returns control connected to value help
19042
+ * Returns control connected to value help.
18961
19043
  *
18962
19044
  * @returns connected control
18963
19045
  */
@@ -18965,8 +19047,8 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18965
19047
  /**
18966
19048
  * Gets current value of property {@link #getLocalFilterValue localFilterValue}.
18967
19049
  *
18968
- * This property may be used by FilterableListContents to share basic search state in collective search
18969
- * scenarios
19050
+ * This property may be used by `FilterableListContents` to share basic search states in collective search
19051
+ * scenarios.
18970
19052
  *
18971
19053
  * @returns Value of property `localFilterValue`
18972
19054
  */
@@ -18974,7 +19056,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18974
19056
  /**
18975
19057
  * @ui5-protected Do not call from applications (only from related classes in the framework)
18976
19058
  *
18977
- * Returns the maximum allowed number of conditions, -1 if no limit is set
19059
+ * Returns the maximum allowed number of conditions, -1 if no limit is set.
18978
19060
  *
18979
19061
  * @returns maximum allowed number of conditions
18980
19062
  */
@@ -18982,15 +19064,15 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
18982
19064
  /**
18983
19065
  * @ui5-protected Do not call from applications (only from related classes in the framework)
18984
19066
  *
18985
- * Returns the promise for content creation
19067
+ * Returns the `Promise` for content creation.
18986
19068
  *
18987
- * @returns Promise for delegate content
19069
+ * @returns `Promise` for delegate content
18988
19070
  */
18989
19071
  getRetrieveDelegateContentPromise(): Promise<any>;
18990
19072
  /**
18991
19073
  * @ui5-protected Do not call from applications (only from related classes in the framework)
18992
19074
  *
18993
- * Return the currently used content
19075
+ * Returns the currently used content.
18994
19076
  *
18995
19077
  * @returns currently used content
18996
19078
  */
@@ -19008,7 +19090,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19008
19090
  /**
19009
19091
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19010
19092
  *
19011
- * Returns the UIArea of the content
19093
+ * Returns the `UIArea` of the content.
19012
19094
  *
19013
19095
  * @returns The UI area of the content or `null`
19014
19096
  */
@@ -19016,9 +19098,9 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19016
19098
  /**
19017
19099
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19018
19100
  *
19019
- * Handles the `cancelled` event of the content
19101
+ * Handles the `cancelled` event of the content.
19020
19102
  *
19021
- * Here the {@link #events/cancel cancel} event needs to be fired.
19103
+ * Here the {@link #event:cancel cancel} event needs to be fired.
19022
19104
  */
19023
19105
  handleCanceled(
19024
19106
  /**
@@ -19029,7 +19111,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19029
19111
  /**
19030
19112
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19031
19113
  *
19032
- * Handles the `closed` event of the container control or element
19114
+ * Handles the `closed` event of the container control or element.
19033
19115
  */
19034
19116
  handleClosed(
19035
19117
  /**
@@ -19040,9 +19122,9 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19040
19122
  /**
19041
19123
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19042
19124
  *
19043
- * Handles the `confirmed` event of the content
19125
+ * Handles the `confirmed` event of the content.
19044
19126
  *
19045
- * Here the {@link #events/confirm confirm} event needs to be fired.
19127
+ * Here the {@link #event:confirm confirm} event needs to be fired.
19046
19128
  */
19047
19129
  handleConfirmed(
19048
19130
  /**
@@ -19053,7 +19135,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19053
19135
  /**
19054
19136
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19055
19137
  *
19056
- * Handles the `requestSwitchToDialog` event of the content
19138
+ * Handles the `requestSwitchToDialog` event of the content.
19057
19139
  */
19058
19140
  handleNavigated(
19059
19141
  /**
@@ -19064,7 +19146,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19064
19146
  /**
19065
19147
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19066
19148
  *
19067
- * Handles the `opened` event of the container control or element
19149
+ * Handles the `opened` event of the container control or element.
19068
19150
  */
19069
19151
  handleOpened(
19070
19152
  /**
@@ -19075,7 +19157,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19075
19157
  /**
19076
19158
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19077
19159
  *
19078
- * Handles the `navigated` event of the content
19160
+ * Handles the `navigated` event of the content.
19079
19161
  */
19080
19162
  handleRequestSwitchToDialog(
19081
19163
  /**
@@ -19086,9 +19168,9 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19086
19168
  /**
19087
19169
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19088
19170
  *
19089
- * Handles the `select` event of the content
19171
+ * Handles the `select` event of the content.
19090
19172
  *
19091
- * Here the {@link #events/select select} event needs to be fired.
19173
+ * Here the {@link #event:select select} event needs to be fired.
19092
19174
  */
19093
19175
  handleSelect(
19094
19176
  /**
@@ -19128,9 +19210,9 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19128
19210
  /**
19129
19211
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19130
19212
  *
19131
- * Returns if the value help is used for single selection
19213
+ * Returns if the value help is used for single selection.
19132
19214
  *
19133
- * @returns `true` id single seletion
19215
+ * @returns `true` id single selection
19134
19216
  */
19135
19217
  isSingleSelect(): boolean;
19136
19218
  /**
@@ -19147,7 +19229,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19147
19229
  /**
19148
19230
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19149
19231
  *
19150
- * Observes property and aggregation changes
19232
+ * Observes property and aggregation changes.
19151
19233
  */
19152
19234
  observeChanges(
19153
19235
  /**
@@ -19158,7 +19240,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19158
19240
  /**
19159
19241
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19160
19242
  *
19161
- * Opens the container control or element
19243
+ * Opens the container control or element.
19162
19244
  */
19163
19245
  openContainer(
19164
19246
  /**
@@ -19173,7 +19255,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19173
19255
  /**
19174
19256
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19175
19257
  *
19176
- * Places the content into the container control or element
19258
+ * Places the content into the container control or element.
19177
19259
  *
19178
19260
  * @returns container
19179
19261
  */
@@ -19205,8 +19287,8 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19205
19287
  /**
19206
19288
  * Sets a new value for property {@link #getLocalFilterValue localFilterValue}.
19207
19289
  *
19208
- * This property may be used by FilterableListContents to share basic search state in collective search
19209
- * scenarios
19290
+ * This property may be used by `FilterableListContents` to share basic search states in collective search
19291
+ * scenarios.
19210
19292
  *
19211
19293
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19212
19294
  *
@@ -19238,7 +19320,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19238
19320
  /**
19239
19321
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19240
19322
  *
19241
- * Unbinds the content from the container
19323
+ * Unbinds the content from the container.
19242
19324
  */
19243
19325
  unbindContentFromContainer(
19244
19326
  /**
@@ -19255,98 +19337,80 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19255
19337
  title?: string | PropertyBindingInfo;
19256
19338
 
19257
19339
  /**
19258
- * This property may be used by FilterableListContents to share basic search state in collective search
19259
- * scenarios
19340
+ * This property may be used by `FilterableListContents` to share basic search states in collective search
19341
+ * scenarios.
19260
19342
  */
19261
19343
  localFilterValue?: string | PropertyBindingInfo;
19262
19344
 
19263
19345
  /**
19264
19346
  * Content of the container. This aggregation holds the actual controls enabling the user to select items
19265
- * or create conditions (e.g. tables or condition panels)
19347
+ * or create conditions (for example, tables or condition panels).
19266
19348
  */
19267
19349
  content?: Content[] | Content | AggregationBindingInfo | `{${string}}`;
19268
19350
 
19269
19351
  /**
19270
- * Fired if the selected condition changed.
19352
+ * This event is fired if the selected condition has changed.
19271
19353
  */
19272
- select?: (oEvent: Event<Container$SelectEventParameters>) => void;
19354
+ select?: (oEvent: Container$SelectEvent) => void;
19273
19355
 
19274
19356
  /**
19275
- * Fired if a change on the value help is confirmed
19357
+ * This event is fired if a change of the value help is confirmed.
19276
19358
  */
19277
- confirm?: (oEvent: Event<Container$ConfirmEventParameters>) => void;
19359
+ confirm?: (oEvent: Container$ConfirmEvent) => void;
19278
19360
 
19279
19361
  /**
19280
- * Fired if the value help is opened.
19362
+ * This event is fired if the value help is opened.
19281
19363
  */
19282
19364
  opened?: (oEvent: Event) => void;
19283
19365
 
19284
19366
  /**
19285
- * Fired if the value help is closed.
19367
+ * This event is fired if the value help is closed.
19286
19368
  */
19287
19369
  closed?: (oEvent: Event) => void;
19288
19370
 
19289
19371
  /**
19290
- * Fired if the change is cancelled.
19372
+ * This event is fired if the change is cancelled.
19291
19373
  */
19292
19374
  cancel?: (oEvent: Event) => void;
19293
19375
 
19294
19376
  /**
19295
- * Fired if the Container requests the delegate content.
19377
+ * This event is fired if the container requests the delegate content.
19296
19378
  */
19297
19379
  requestDelegateContent?: (
19298
- oEvent: Event<Container$RequestDelegateContentEventParameters>
19380
+ oEvent: Container$RequestDelegateContentEvent
19299
19381
  ) => void;
19300
19382
 
19301
19383
  /**
19302
- * Fired if the value help should switch to dialog mode.
19384
+ * This event is fired if the value help should switch to dialog mode.
19303
19385
  */
19304
19386
  requestSwitchToDialog?: (oEvent: Event) => void;
19305
19387
 
19306
19388
  /**
19307
- * Fired if a navigation was executed in the content of the container
19389
+ * This event is fired if a navigation has been executed in the content of the container.
19308
19390
  */
19309
- navigated?: (oEvent: Event<Container$NavigatedEventParameters>) => void;
19391
+ navigated?: (oEvent: Container$NavigatedEvent) => void;
19310
19392
  }
19311
19393
 
19312
19394
  export interface Container$CancelEventParameters {}
19313
19395
 
19314
- /**
19315
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$CancelEventParameters'
19316
- * in 1.115.1 and any later releases.
19317
- */
19318
- export type $ContainerCancelEventParameters = Container$CancelEventParameters;
19319
-
19320
19396
  export type Container$CancelEvent = Event<Container$CancelEventParameters>;
19321
19397
 
19322
19398
  export interface Container$ClosedEventParameters {}
19323
19399
 
19324
- /**
19325
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$ClosedEventParameters'
19326
- * in 1.115.1 and any later releases.
19327
- */
19328
- export type $ContainerClosedEventParameters = Container$ClosedEventParameters;
19329
-
19330
19400
  export type Container$ClosedEvent = Event<Container$ClosedEventParameters>;
19331
19401
 
19332
19402
  export interface Container$ConfirmEventParameters {
19333
19403
  /**
19334
- * True if the value help needs to be closed
19404
+ * `true` if the value help needs to be closed
19335
19405
  */
19336
19406
  close?: boolean;
19337
19407
  }
19338
19408
 
19339
- /**
19340
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$ConfirmEventParameters'
19341
- * in 1.115.1 and any later releases.
19342
- */
19343
- export type $ContainerConfirmEventParameters = Container$ConfirmEventParameters;
19344
-
19345
19409
  export type Container$ConfirmEvent = Event<Container$ConfirmEventParameters>;
19346
19410
 
19347
19411
  export interface Container$NavigatedEventParameters {
19348
19412
  /**
19349
- * True if the focus should be set back to the field.
19413
+ * `true` if the focus should be set back to the field.
19350
19414
  */
19351
19415
  leaveFocus?: boolean;
19352
19416
 
@@ -19363,47 +19427,23 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19363
19427
  itemId?: string;
19364
19428
  }
19365
19429
 
19366
- /**
19367
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$NavigatedEventParameters'
19368
- * in 1.115.1 and any later releases.
19369
- */
19370
- export type $ContainerNavigatedEventParameters = Container$NavigatedEventParameters;
19371
-
19372
19430
  export type Container$NavigatedEvent = Event<Container$NavigatedEventParameters>;
19373
19431
 
19374
19432
  export interface Container$OpenedEventParameters {}
19375
19433
 
19376
- /**
19377
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$OpenedEventParameters'
19378
- * in 1.115.1 and any later releases.
19379
- */
19380
- export type $ContainerOpenedEventParameters = Container$OpenedEventParameters;
19381
-
19382
19434
  export type Container$OpenedEvent = Event<Container$OpenedEventParameters>;
19383
19435
 
19384
19436
  export interface Container$RequestDelegateContentEventParameters {
19385
19437
  /**
19386
- * Content wrapper id for which contents are requested
19438
+ * Content wrapper ID for which contents are requested
19387
19439
  */
19388
19440
  contentId?: string;
19389
19441
  }
19390
19442
 
19391
- /**
19392
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$RequestDelegateContentEventParameters'
19393
- * in 1.115.1 and any later releases.
19394
- */
19395
- export type $ContainerRequestDelegateContentEventParameters = Container$RequestDelegateContentEventParameters;
19396
-
19397
19443
  export type Container$RequestDelegateContentEvent = Event<Container$RequestDelegateContentEventParameters>;
19398
19444
 
19399
19445
  export interface Container$RequestSwitchToDialogEventParameters {}
19400
19446
 
19401
- /**
19402
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$RequestSwitchToDialogEventParameters'
19403
- * in 1.115.1 and any later releases.
19404
- */
19405
- export type $ContainerRequestSwitchToDialogEventParameters = Container$RequestSwitchToDialogEventParameters;
19406
-
19407
19447
  export type Container$RequestSwitchToDialogEvent = Event<Container$RequestSwitchToDialogEventParameters>;
19408
19448
 
19409
19449
  export interface Container$SelectEventParameters {
@@ -19420,12 +19460,6 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
19420
19460
  conditions?: object[];
19421
19461
  }
19422
19462
 
19423
- /**
19424
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Container$SelectEventParameters'
19425
- * in 1.115.1 and any later releases.
19426
- */
19427
- export type $ContainerSelectEventParameters = Container$SelectEventParameters;
19428
-
19429
19463
  export type Container$SelectEvent = Event<Container$SelectEventParameters>;
19430
19464
  }
19431
19465
 
@@ -19453,7 +19487,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19453
19487
  /**
19454
19488
  * Constructor for a new `Content`.
19455
19489
  *
19456
- * This is the basis for different value help contents. It cannot be used directly.
19490
+ * This is the basis for various types of value help content. It cannot be used directly.
19457
19491
  *
19458
19492
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
19459
19493
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -19468,7 +19502,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19468
19502
  /**
19469
19503
  * Constructor for a new `Content`.
19470
19504
  *
19471
- * This is the basis for different value help contents. It cannot be used directly.
19505
+ * This is the basis for various types of value help content. It cannot be used directly.
19472
19506
  *
19473
19507
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
19474
19508
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -19520,7 +19554,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19520
19554
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
19521
19555
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
19522
19556
  *
19523
- * Fired if the change is cancelled.
19557
+ * This event is fired if the change is cancelled.
19524
19558
  *
19525
19559
  * @returns Reference to `this` in order to allow method chaining
19526
19560
  */
@@ -19545,7 +19579,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19545
19579
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
19546
19580
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
19547
19581
  *
19548
- * Fired if the change is cancelled.
19582
+ * This event is fired if the change is cancelled.
19549
19583
  *
19550
19584
  * @returns Reference to `this` in order to allow method chaining
19551
19585
  */
@@ -19565,7 +19599,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19565
19599
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
19566
19600
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
19567
19601
  *
19568
- * Fired if a change on the content is confirmed.
19602
+ * This event is fired if a change of the content is confirmed.
19569
19603
  *
19570
19604
  * @returns Reference to `this` in order to allow method chaining
19571
19605
  */
@@ -19590,7 +19624,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19590
19624
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
19591
19625
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
19592
19626
  *
19593
- * Fired if a change on the content is confirmed.
19627
+ * This event is fired if a change of the content is confirmed.
19594
19628
  *
19595
19629
  * @returns Reference to `this` in order to allow method chaining
19596
19630
  */
@@ -19610,7 +19644,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19610
19644
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
19611
19645
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
19612
19646
  *
19613
- * Fired if a navigation was executed in the content.
19647
+ * This event is fired if a navigation has been executed in the content.
19614
19648
  *
19615
19649
  * @returns Reference to `this` in order to allow method chaining
19616
19650
  */
@@ -19635,7 +19669,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19635
19669
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
19636
19670
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
19637
19671
  *
19638
- * Fired if a navigation was executed in the content.
19672
+ * This event is fired if a navigation has been executed in the content.
19639
19673
  *
19640
19674
  * @returns Reference to `this` in order to allow method chaining
19641
19675
  */
@@ -19656,7 +19690,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19656
19690
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
19657
19691
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
19658
19692
  *
19659
- * Fired if the value help should switch to dialog mode.
19693
+ * This event is fired if the value help should switch to dialog mode.
19660
19694
  *
19661
19695
  * @returns Reference to `this` in order to allow method chaining
19662
19696
  */
@@ -19682,7 +19716,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19682
19716
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
19683
19717
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
19684
19718
  *
19685
- * Fired if the value help should switch to dialog mode.
19719
+ * This event is fired if the value help should switch to dialog mode.
19686
19720
  *
19687
19721
  * @returns Reference to `this` in order to allow method chaining
19688
19722
  */
@@ -19702,7 +19736,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19702
19736
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
19703
19737
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
19704
19738
  *
19705
- * Fired if the selected condition changed.
19739
+ * This event is fired if the selected condition has changed.
19706
19740
  *
19707
19741
  * @returns Reference to `this` in order to allow method chaining
19708
19742
  */
@@ -19727,7 +19761,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19727
19761
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
19728
19762
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
19729
19763
  *
19730
- * Fired if the selected condition changed.
19764
+ * This event is fired if the selected condition has changed.
19731
19765
  *
19732
19766
  * @returns Reference to `this` in order to allow method chaining
19733
19767
  */
@@ -19759,7 +19793,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19759
19793
  */
19760
19794
  createCondition(
19761
19795
  /**
19762
- * Value of the condition. For item conditions this must be the key.
19796
+ * Value of the condition. For item conditions, this must be the key.
19763
19797
  */
19764
19798
  vValue: any,
19765
19799
  /**
@@ -19767,7 +19801,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19767
19801
  */
19768
19802
  sDescription?: string,
19769
19803
  /**
19770
- * payload
19804
+ * Payload
19771
19805
  */
19772
19806
  oPayload?: object
19773
19807
  ): ConditionObject;
@@ -19931,9 +19965,9 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19931
19965
  /**
19932
19966
  * Gets current value of property {@link #getConditions conditions}.
19933
19967
  *
19934
- * Conditions of the value help
19968
+ * Conditions of the value help.
19935
19969
  *
19936
- * **Note:** This property must not be set from outside, it is only to be used by the corresponding container
19970
+ * **Note:** This property must not be set from outside, it must only be used by the corresponding container.
19937
19971
  *
19938
19972
  * Default value is `[]`.
19939
19973
  *
@@ -19943,9 +19977,9 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19943
19977
  /**
19944
19978
  * Gets current value of property {@link #getConfig config}.
19945
19979
  *
19946
- * Internal configuration
19980
+ * Internal configuration.
19947
19981
  *
19948
- * **Note:** This property must not be set from outside, it is only to be used by the corresponding container
19982
+ * **Note:** This property must not be set from outside, it must only be used by the corresponding container.
19949
19983
  *
19950
19984
  * Default value is `{}`.
19951
19985
  *
@@ -19955,9 +19989,9 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19955
19989
  /**
19956
19990
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19957
19991
  *
19958
- * Returns control connected to value help
19992
+ * Returns control connected to value help.
19959
19993
  *
19960
- * @returns connected control
19994
+ * @returns Connected control
19961
19995
  */
19962
19996
  getControl(): Control;
19963
19997
  /**
@@ -19965,15 +19999,15 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19965
19999
  *
19966
20000
  * Content control that is put inside the parent container
19967
20001
  *
19968
- * **Note:** This aggregation must not be set from outside, it is only to be used by the corresponding container
20002
+ * **Note:** This aggregation must not be set from outside, it must only be used by the corresponding container.
19969
20003
  */
19970
20004
  getDisplayContent(): Control;
19971
20005
  /**
19972
20006
  * Gets current value of property {@link #getFilterValue filterValue}.
19973
20007
  *
19974
- * Value for filtering ($search)
20008
+ * Value for filtering ($search).
19975
20009
  *
19976
- * **Note:** This property must not be set from outside, it is only to be used by the corresponding container
20010
+ * **Note:** This property must not be set from outside, it must only be used by the corresponding container.
19977
20011
  *
19978
20012
  * Default value is `empty string`.
19979
20013
  *
@@ -19983,11 +20017,11 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
19983
20017
  /**
19984
20018
  * @ui5-protected Do not call from applications (only from related classes in the framework)
19985
20019
  *
19986
- * Returns if the value help is used for single selection
20020
+ * Returns the maximum allowed number of conditions, -1 if no limit is set.
19987
20021
  *
19988
- * @returns `true` id single seletion
20022
+ * @returns maximum allowed number of conditions
19989
20023
  */
19990
- getMaxConditions(): boolean;
20024
+ getMaxConditions(): int;
19991
20025
  /**
19992
20026
  * Gets current value of property {@link #getShortTitle shortTitle}.
19993
20027
  *
@@ -20001,7 +20035,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20001
20035
  /**
20002
20036
  * Gets current value of property {@link #getTitle title}.
20003
20037
  *
20004
- * Title text that appears tab header.
20038
+ * Title text that appears in the tab header.
20005
20039
  *
20006
20040
  * Default value is `empty string`.
20007
20041
  *
@@ -20011,7 +20045,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20011
20045
  /**
20012
20046
  * Gets current value of property {@link #getTokenizerTitle tokenizerTitle}.
20013
20047
  *
20014
- * Title text that appears in the dialog tokenizer panel, when ony one content exist.
20048
+ * Title text that appears in the dialog tokenizer panel if only one content exists.
20015
20049
  *
20016
20050
  * Default value is `empty string`.
20017
20051
  *
@@ -20021,7 +20055,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20021
20055
  /**
20022
20056
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20023
20057
  *
20024
- * returns the used `ValueHelpDelegate`
20058
+ * Returns the used `ValueHelpDelegate`.
20025
20059
  *
20026
20060
  * @returns `Delegate` module
20027
20061
  */
@@ -20029,7 +20063,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20029
20063
  /**
20030
20064
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20031
20065
  *
20032
- * Determines the `ValueHelp` instance
20066
+ * Determines the `ValueHelp` instance.
20033
20067
  *
20034
20068
  * @returns The `ValueHelp` instance
20035
20069
  */
@@ -20047,7 +20081,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20047
20081
  /**
20048
20082
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20049
20083
  *
20050
- * Called if the `conditions` property changed
20084
+ * Called if the `conditions` property changed.
20051
20085
  */
20052
20086
  handleConditionsUpdate(
20053
20087
  /**
@@ -20058,7 +20092,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20058
20092
  /**
20059
20093
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20060
20094
  *
20061
- * Called if the `filterValue` property changed
20095
+ * Called if the `filterValue` property changed.
20062
20096
  */
20063
20097
  handleFilterValueUpdate(
20064
20098
  /**
@@ -20069,7 +20103,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20069
20103
  /**
20070
20104
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20071
20105
  *
20072
- * Checks if the parent container is open
20106
+ * Checks if the parent container is open.
20073
20107
  *
20074
20108
  * @returns `true` if open
20075
20109
  */
@@ -20077,7 +20111,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20077
20111
  /**
20078
20112
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20079
20113
  *
20080
- * Checks if the parent container is opening
20114
+ * Checks if the parent container is opening.
20081
20115
  *
20082
20116
  * @returns `true` if opening
20083
20117
  */
@@ -20085,33 +20119,33 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20085
20119
  /**
20086
20120
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20087
20121
  *
20088
- * Returns if the value help is used for single selection
20122
+ * Returns if the value help is used for single selection.
20089
20123
  *
20090
- * @returns `true` id single seletion
20124
+ * @returns `true` if single selection
20091
20125
  */
20092
20126
  isSingleSelect(): boolean;
20093
20127
  /**
20094
20128
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20095
20129
  *
20096
- * Determines if the container of the content is used as typeAhead inside the value help
20130
+ * Determines if the container of the content is used as `typeAhead` inside the value help.
20097
20131
  *
20098
- * **Note:** This function is used by the content and must not be used from outside
20132
+ * **Note:** This function is used by the content and must not be used from outside.
20099
20133
  *
20100
- * @returns True if used as typeahead
20134
+ * @returns `true` if used as `typeahead`
20101
20135
  */
20102
20136
  isTypeahead(): boolean;
20103
20137
  /**
20104
20138
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20105
20139
  *
20106
- * Determines if delegate of the value help is initialized
20140
+ * Determines if delegate of the value help has been initialized.
20107
20141
  *
20108
- * @returns True if delegate is initialized
20142
+ * @returns `true` if delegate has been initialized
20109
20143
  */
20110
20144
  isValueHelpDelegateInitialized(): boolean;
20111
20145
  /**
20112
20146
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20113
20147
  *
20114
- * Observes property and aggregation changes
20148
+ * Observes property and aggregation changes.
20115
20149
  */
20116
20150
  observeChanges(
20117
20151
  /**
@@ -20122,37 +20156,37 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20122
20156
  /**
20123
20157
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20124
20158
  *
20125
- * Called if ValueHelp connection to Field changed
20159
+ * Called if `ValueHelp` connection to a control changed.
20126
20160
  */
20127
20161
  onConnectionChange(): void;
20128
20162
  /**
20129
20163
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20130
20164
  *
20131
- * Performs logic needed if the container closes
20165
+ * Performs logic needed if the container closes.
20132
20166
  */
20133
20167
  onContainerClose(): void;
20134
20168
  /**
20135
20169
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20136
20170
  *
20137
- * Performs logic needed if the container opens
20171
+ * Performs logic needed if the container opens.
20138
20172
  */
20139
20173
  onContainerOpen(): void;
20140
20174
  /**
20141
20175
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20142
20176
  *
20143
- * Determines if the the content needs to provide a scrolling mechanism like a {@link sap.m.ScrollContainer ScrollContainer}
20177
+ * Determines if the the content needs to provide a scrolling mechanism like a {@link sap.m.ScrollContainer ScrollContainer}.
20144
20178
  *
20145
- * **Note:** This function is used by the content and must not be used from outside
20179
+ * **Note:** This function is used by the content and must not be used from outside.
20146
20180
  *
20147
- * @returns True a scrolling mechanism is needed
20181
+ * @returns `true` if a scrolling mechanism is needed
20148
20182
  */
20149
20183
  provideScrolling(): boolean;
20150
20184
  /**
20151
20185
  * Sets a new value for property {@link #getConditions conditions}.
20152
20186
  *
20153
- * Conditions of the value help
20187
+ * Conditions of the value help.
20154
20188
  *
20155
- * **Note:** This property must not be set from outside, it is only to be used by the corresponding container
20189
+ * **Note:** This property must not be set from outside, it must only be used by the corresponding container.
20156
20190
  *
20157
20191
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
20158
20192
  *
@@ -20169,9 +20203,9 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20169
20203
  /**
20170
20204
  * Sets a new value for property {@link #getConfig config}.
20171
20205
  *
20172
- * Internal configuration
20206
+ * Internal configuration.
20173
20207
  *
20174
- * **Note:** This property must not be set from outside, it is only to be used by the corresponding container
20208
+ * **Note:** This property must not be set from outside, it must only be used by the corresponding container.
20175
20209
  *
20176
20210
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
20177
20211
  *
@@ -20199,9 +20233,9 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20199
20233
  /**
20200
20234
  * Sets a new value for property {@link #getFilterValue filterValue}.
20201
20235
  *
20202
- * Value for filtering ($search)
20236
+ * Value for filtering ($search).
20203
20237
  *
20204
- * **Note:** This property must not be set from outside, it is only to be used by the corresponding container
20238
+ * **Note:** This property must not be set from outside, it must only be used by the corresponding container.
20205
20239
  *
20206
20240
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
20207
20241
  *
@@ -20235,7 +20269,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20235
20269
  /**
20236
20270
  * Sets a new value for property {@link #getTitle title}.
20237
20271
  *
20238
- * Title text that appears tab header.
20272
+ * Title text that appears in the tab header.
20239
20273
  *
20240
20274
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
20241
20275
  *
@@ -20252,7 +20286,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20252
20286
  /**
20253
20287
  * Sets a new value for property {@link #getTokenizerTitle tokenizerTitle}.
20254
20288
  *
20255
- * Title text that appears in the dialog tokenizer panel, when ony one content exist.
20289
+ * Title text that appears in the dialog tokenizer panel if only one content exists.
20256
20290
  *
20257
20291
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
20258
20292
  *
@@ -20287,7 +20321,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20287
20321
 
20288
20322
  export interface $ContentSettings extends $ElementSettings {
20289
20323
  /**
20290
- * Title text that appears tab header.
20324
+ * Title text that appears in the tab header.
20291
20325
  */
20292
20326
  title?: string | PropertyBindingInfo;
20293
20327
 
@@ -20297,28 +20331,28 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20297
20331
  shortTitle?: string | PropertyBindingInfo;
20298
20332
 
20299
20333
  /**
20300
- * Title text that appears in the dialog tokenizer panel, when ony one content exist.
20334
+ * Title text that appears in the dialog tokenizer panel if only one content exists.
20301
20335
  */
20302
20336
  tokenizerTitle?: string | PropertyBindingInfo;
20303
20337
 
20304
20338
  /**
20305
- * Conditions of the value help
20339
+ * Conditions of the value help.
20306
20340
  *
20307
- * **Note:** This property must not be set from outside, it is only to be used by the corresponding container
20341
+ * **Note:** This property must not be set from outside, it must only be used by the corresponding container.
20308
20342
  */
20309
20343
  conditions?: object[] | PropertyBindingInfo | `{${string}}`;
20310
20344
 
20311
20345
  /**
20312
- * Value for filtering ($search)
20346
+ * Value for filtering ($search).
20313
20347
  *
20314
- * **Note:** This property must not be set from outside, it is only to be used by the corresponding container
20348
+ * **Note:** This property must not be set from outside, it must only be used by the corresponding container.
20315
20349
  */
20316
20350
  filterValue?: string | PropertyBindingInfo;
20317
20351
 
20318
20352
  /**
20319
- * Internal configuration
20353
+ * Internal configuration.
20320
20354
  *
20321
- * **Note:** This property must not be set from outside, it is only to be used by the corresponding container
20355
+ * **Note:** This property must not be set from outside, it must only be used by the corresponding container.
20322
20356
  */
20323
20357
  config?: object | PropertyBindingInfo | `{${string}}`;
20324
20358
 
@@ -20330,64 +20364,52 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20330
20364
  /**
20331
20365
  * Content control that is put inside the parent container
20332
20366
  *
20333
- * **Note:** This aggregation must not be set from outside, it is only to be used by the corresponding container
20367
+ * **Note:** This aggregation must not be set from outside, it must only be used by the corresponding container.
20334
20368
  */
20335
20369
  displayContent?: Control;
20336
20370
 
20337
20371
  /**
20338
- * Fired if the selected condition changed.
20372
+ * This event is fired if the selected condition has changed.
20339
20373
  */
20340
- select?: (oEvent: Event<Content$SelectEventParameters>) => void;
20374
+ select?: (oEvent: Content$SelectEvent) => void;
20341
20375
 
20342
20376
  /**
20343
- * Fired if a change on the content is confirmed.
20377
+ * This event is fired if a change of the content is confirmed.
20344
20378
  */
20345
- confirm?: (oEvent: Event<Content$ConfirmEventParameters>) => void;
20379
+ confirm?: (oEvent: Content$ConfirmEvent) => void;
20346
20380
 
20347
20381
  /**
20348
- * Fired if the change is cancelled.
20382
+ * This event is fired if the change is cancelled.
20349
20383
  */
20350
20384
  cancel?: (oEvent: Event) => void;
20351
20385
 
20352
20386
  /**
20353
- * Fired if the value help should switch to dialog mode.
20387
+ * This event is fired if the value help should switch to dialog mode.
20354
20388
  */
20355
20389
  requestSwitchToDialog?: (oEvent: Event) => void;
20356
20390
 
20357
20391
  /**
20358
- * Fired if a navigation was executed in the content.
20392
+ * This event is fired if a navigation has been executed in the content.
20359
20393
  */
20360
- navigated?: (oEvent: Event<Content$NavigatedEventParameters>) => void;
20394
+ navigated?: (oEvent: Content$NavigatedEvent) => void;
20361
20395
  }
20362
20396
 
20363
20397
  export interface Content$CancelEventParameters {}
20364
20398
 
20365
- /**
20366
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Content$CancelEventParameters'
20367
- * in 1.115.1 and any later releases.
20368
- */
20369
- export type $ContentCancelEventParameters = Content$CancelEventParameters;
20370
-
20371
20399
  export type Content$CancelEvent = Event<Content$CancelEventParameters>;
20372
20400
 
20373
20401
  export interface Content$ConfirmEventParameters {
20374
20402
  /**
20375
- * True if the value help need to be closed
20403
+ * `true` if the value help needs to be closed
20376
20404
  */
20377
20405
  close?: boolean;
20378
20406
  }
20379
20407
 
20380
- /**
20381
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Content$ConfirmEventParameters'
20382
- * in 1.115.1 and any later releases.
20383
- */
20384
- export type $ContentConfirmEventParameters = Content$ConfirmEventParameters;
20385
-
20386
20408
  export type Content$ConfirmEvent = Event<Content$ConfirmEventParameters>;
20387
20409
 
20388
20410
  export interface Content$NavigatedEventParameters {
20389
20411
  /**
20390
- * True if the focus should be set back to the field.
20412
+ * `true` if the focus should be set back to the field.
20391
20413
  */
20392
20414
  leaveFocus?: boolean;
20393
20415
 
@@ -20404,22 +20426,10 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20404
20426
  itemId?: string;
20405
20427
  }
20406
20428
 
20407
- /**
20408
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Content$NavigatedEventParameters'
20409
- * in 1.115.1 and any later releases.
20410
- */
20411
- export type $ContentNavigatedEventParameters = Content$NavigatedEventParameters;
20412
-
20413
20429
  export type Content$NavigatedEvent = Event<Content$NavigatedEventParameters>;
20414
20430
 
20415
20431
  export interface Content$RequestSwitchToDialogEventParameters {}
20416
20432
 
20417
- /**
20418
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Content$RequestSwitchToDialogEventParameters'
20419
- * in 1.115.1 and any later releases.
20420
- */
20421
- export type $ContentRequestSwitchToDialogEventParameters = Content$RequestSwitchToDialogEventParameters;
20422
-
20423
20433
  export type Content$RequestSwitchToDialogEvent = Event<Content$RequestSwitchToDialogEventParameters>;
20424
20434
 
20425
20435
  export interface Content$SelectEventParameters {
@@ -20436,12 +20446,6 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
20436
20446
  conditions?: object[];
20437
20447
  }
20438
20448
 
20439
- /**
20440
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Content$SelectEventParameters'
20441
- * in 1.115.1 and any later releases.
20442
- */
20443
- export type $ContentSelectEventParameters = Content$SelectEventParameters;
20444
-
20445
20449
  export type Content$SelectEvent = Event<Content$SelectEventParameters>;
20446
20450
  }
20447
20451
 
@@ -20471,7 +20475,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20471
20475
  /**
20472
20476
  * Constructor for a new `FilterableListContent`.
20473
20477
  *
20474
- * This is the basis for different value help list contents with filter functionality. It cannot be used
20478
+ * This is the basis for various types of value help content with filter functionality. It cannot be used
20475
20479
  * directly.
20476
20480
  *
20477
20481
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
@@ -20487,7 +20491,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20487
20491
  /**
20488
20492
  * Constructor for a new `FilterableListContent`.
20489
20493
  *
20490
- * This is the basis for different value help list contents with filter functionality. It cannot be used
20494
+ * This is the basis for various types of value help content with filter functionality. It cannot be used
20491
20495
  * directly.
20492
20496
  *
20493
20497
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
@@ -20537,19 +20541,19 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20537
20541
  /**
20538
20542
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20539
20543
  *
20540
- * Applies the filter to the content control
20544
+ * Applies the filter to the content control.
20541
20545
  */
20542
20546
  applyFilters(): void;
20543
20547
  /**
20544
20548
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20545
20549
  *
20546
- * Created a payload for a value
20550
+ * Creates a payload for a value.
20547
20551
  *
20548
20552
  * @returns payload
20549
20553
  */
20550
20554
  createConditionPayload(
20551
20555
  /**
20552
- * values (key, description)
20556
+ * Values (key, description)
20553
20557
  */
20554
20558
  aValues: any[],
20555
20559
  /**
@@ -20577,16 +20581,17 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20577
20581
  /**
20578
20582
  * Gets content of aggregation {@link #getFilterBar filterBar}.
20579
20583
  *
20580
- * FilterBar
20584
+ * {@link sap.ui.mdc.filterbar.vh.FilterBar FilterBar} used for filtering.
20581
20585
  */
20582
20586
  getFilterBar(): FilterBar;
20583
20587
  /**
20584
20588
  * Gets current value of property {@link #getFilterFields filterFields}.
20585
20589
  *
20586
- * The fields based on which the table data is filtered. For filtering the value of the `filterValue` property
20590
+ * The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
20587
20591
  * is used.
20588
20592
  *
20589
- * If set to `$search` and the used binding supports search requests, a $search request is used for filtering.
20593
+ * If set to `$search`, and if the used binding supports search requests, a $search request is used for
20594
+ * filtering.
20590
20595
  *
20591
20596
  * If set to one or more properties, the filters for these properties are used for filtering. These filters
20592
20597
  * are set on the `ListBinding` used. The properties need to be separated by commas and enclosed by "*"
@@ -20614,9 +20619,9 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20614
20619
  /**
20615
20620
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20616
20621
  *
20617
- * Gets an item for a BindingContext
20622
+ * Gets an item for a `BindingContext`.
20618
20623
  *
20619
- * @returns Item object containing `key`, `description` and `payload`
20624
+ * @returns Item object containing `key`, `description`, and `payload`
20620
20625
  */
20621
20626
  getItemFromContext(
20622
20627
  /**
@@ -20624,9 +20629,9 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20624
20629
  */
20625
20630
  oBindingContext: Context,
20626
20631
  /**
20627
- * options
20632
+ * Options
20628
20633
  */
20629
- oOptions: object
20634
+ oOptions?: object
20630
20635
  ): object;
20631
20636
  /**
20632
20637
  * Gets current value of property {@link #getKeyPath keyPath}.
@@ -20634,8 +20639,6 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20634
20639
  * The path of the key field in the content binding. If a table is used as content, this is the binding
20635
20640
  * path of the key of the items.
20636
20641
  *
20637
- * If not set, the FieldPath of the assigned field is used.
20638
- *
20639
20642
  * Default value is `empty string`.
20640
20643
  *
20641
20644
  * @returns Value of property `keyPath`
@@ -20644,15 +20647,15 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20644
20647
  /**
20645
20648
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20646
20649
  *
20647
- * Gets the `BindingInfo` of the content
20650
+ * Gets the `BindingInfo` of the content.
20648
20651
  *
20649
- * @returns ListBindingInfo
20652
+ * @returns `ListBindingInfo`
20650
20653
  */
20651
20654
  getListBindingInfo(): AggregationBindingInfo;
20652
20655
  /**
20653
20656
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20654
20657
  *
20655
- * Gets the conditions that are selecatble from list content
20658
+ * Gets the conditions that are selecatble from list content.
20656
20659
  *
20657
20660
  * This are validated conditions as other conditions are shown on the {@link sap.ui.mdc.valuehelp.base.DefineConditionPanel DefineConditionPanel}
20658
20661
  *
@@ -20691,10 +20694,11 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20691
20694
  /**
20692
20695
  * Sets a new value for property {@link #getFilterFields filterFields}.
20693
20696
  *
20694
- * The fields based on which the table data is filtered. For filtering the value of the `filterValue` property
20697
+ * The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
20695
20698
  * is used.
20696
20699
  *
20697
- * If set to `$search` and the used binding supports search requests, a $search request is used for filtering.
20700
+ * If set to `$search`, and if the used binding supports search requests, a $search request is used for
20701
+ * filtering.
20698
20702
  *
20699
20703
  * If set to one or more properties, the filters for these properties are used for filtering. These filters
20700
20704
  * are set on the `ListBinding` used. The properties need to be separated by commas and enclosed by "*"
@@ -20739,8 +20743,6 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20739
20743
  * The path of the key field in the content binding. If a table is used as content, this is the binding
20740
20744
  * path of the key of the items.
20741
20745
  *
20742
- * If not set, the FieldPath of the assigned field is used.
20743
- *
20744
20746
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
20745
20747
  *
20746
20748
  * Default value is `empty string`.
@@ -20757,10 +20759,11 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20757
20759
 
20758
20760
  export interface $FilterableListContentSettings extends $ListContentSettings {
20759
20761
  /**
20760
- * The fields based on which the table data is filtered. For filtering the value of the `filterValue` property
20762
+ * The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
20761
20763
  * is used.
20762
20764
  *
20763
- * If set to `$search` and the used binding supports search requests, a $search request is used for filtering.
20765
+ * If set to `$search`, and if the used binding supports search requests, a $search request is used for
20766
+ * filtering.
20764
20767
  *
20765
20768
  * If set to one or more properties, the filters for these properties are used for filtering. These filters
20766
20769
  * are set on the `ListBinding` used. The properties need to be separated by commas and enclosed by "*"
@@ -20773,8 +20776,6 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20773
20776
  /**
20774
20777
  * The path of the key field in the content binding. If a table is used as content, this is the binding
20775
20778
  * path of the key of the items.
20776
- *
20777
- * If not set, the FieldPath of the assigned field is used.
20778
20779
  */
20779
20780
  keyPath?: string | PropertyBindingInfo;
20780
20781
 
@@ -20792,7 +20793,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
20792
20793
  group?: string | PropertyBindingInfo;
20793
20794
 
20794
20795
  /**
20795
- * FilterBar
20796
+ * {@link sap.ui.mdc.filterbar.vh.FilterBar FilterBar} used for filtering.
20796
20797
  */
20797
20798
  filterBar?: FilterBar;
20798
20799
  }
@@ -20819,7 +20820,7 @@ declare module "sap/ui/mdc/valuehelp/base/ListContent" {
20819
20820
  /**
20820
20821
  * Constructor for a new `ListContent`.
20821
20822
  *
20822
- * This is the basis for different value help list contents. It cannot be used directly.
20823
+ * This is the basis for various types of value help list content. It cannot be used directly.
20823
20824
  *
20824
20825
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
20825
20826
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -20834,7 +20835,7 @@ declare module "sap/ui/mdc/valuehelp/base/ListContent" {
20834
20835
  /**
20835
20836
  * Constructor for a new `ListContent`.
20836
20837
  *
20837
- * This is the basis for different value help list contents. It cannot be used directly.
20838
+ * This is the basis for various types of value help list content. It cannot be used directly.
20838
20839
  *
20839
20840
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
20840
20841
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
@@ -20897,15 +20898,15 @@ declare module "sap/ui/mdc/valuehelp/base/ListContent" {
20897
20898
  /**
20898
20899
  * @ui5-protected Do not call from applications (only from related classes in the framework)
20899
20900
  *
20900
- * Gets the `ListBinding` of the content
20901
+ * Gets the `ListBinding` of the content.
20901
20902
  *
20902
- * @returns ListBinding
20903
+ * @returns `ListBinding`
20903
20904
  */
20904
20905
  getListBinding(): ListBinding;
20905
20906
  /**
20906
20907
  * Gets current value of property {@link #getUseAsValueHelp useAsValueHelp}.
20907
20908
  *
20908
- * If set, the List is also opened if the ValueHelp icon is pressed.
20909
+ * If set, the list is opened whenever the value help icon is pressed.
20909
20910
  *
20910
20911
  * Default value is `true`.
20911
20912
  *
@@ -20948,7 +20949,7 @@ declare module "sap/ui/mdc/valuehelp/base/ListContent" {
20948
20949
  /**
20949
20950
  * Sets a new value for property {@link #getUseAsValueHelp useAsValueHelp}.
20950
20951
  *
20951
- * If set, the List is also opened if the ValueHelp icon is pressed.
20952
+ * If set, the list is opened whenever the value help icon is pressed.
20952
20953
  *
20953
20954
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
20954
20955
  *
@@ -21001,7 +21002,7 @@ declare module "sap/ui/mdc/valuehelp/base/ListContent" {
21001
21002
  useFirstMatch?: boolean | PropertyBindingInfo | `{${string}}`;
21002
21003
 
21003
21004
  /**
21004
- * If set, the List is also opened if the ValueHelp icon is pressed.
21005
+ * If set, the list is opened whenever the value help icon is pressed.
21005
21006
  */
21006
21007
  useAsValueHelp?: boolean | PropertyBindingInfo | `{${string}}`;
21007
21008
  }
@@ -21206,7 +21207,7 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
21206
21207
  /**
21207
21208
  * @since 1.95.0
21208
21209
  *
21209
- * Content for the {@link sap.ui.mdc.valuehelp.base.Container Container} element showing a list with fix
21210
+ * Content for the {@link sap.ui.mdc.valuehelp.base.Container Container} element showing a list with fixed
21210
21211
  * values.
21211
21212
  */
21212
21213
  export default class FixedList extends ListContent {
@@ -21293,7 +21294,7 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
21293
21294
  * If set, the items of the list are filtered based on `filterValue`.
21294
21295
  *
21295
21296
  * If a type-ahead behavior for the connected field is wanted, this property must be set to `true`. For
21296
- * small lists all values are meant to be shown, independent of the typing in the connected field. In this
21297
+ * small lists, all values are meant to be shown, independent of the typing in the connected field. In this
21297
21298
  * case this property must be set to `false`.
21298
21299
  *
21299
21300
  * If not set, the list opens if the user clicks into the connected field.
@@ -21316,13 +21317,13 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
21316
21317
  /**
21317
21318
  * Gets content of aggregation {@link #getItems items}.
21318
21319
  *
21319
- * Items of the field help.
21320
+ * Items of the value help.
21320
21321
  *
21321
21322
  * The `key` of the items is not shown in the list, but is used as a value of the connected field.
21322
21323
  *
21323
21324
  * If the `additionalText` for all the items is not used, the column will not be displayed.
21324
21325
  *
21325
- * **Note:** At the moment, icons are not supported.
21326
+ * **Note:** Icons are currently not supported.
21326
21327
  */
21327
21328
  getItems(): FixedListItem[];
21328
21329
  /**
@@ -21379,7 +21380,7 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
21379
21380
  * If set, the items of the list are filtered based on `filterValue`.
21380
21381
  *
21381
21382
  * If a type-ahead behavior for the connected field is wanted, this property must be set to `true`. For
21382
- * small lists all values are meant to be shown, independent of the typing in the connected field. In this
21383
+ * small lists, all values are meant to be shown, independent of the typing in the connected field. In this
21383
21384
  * case this property must be set to `false`.
21384
21385
  *
21385
21386
  * If not set, the list opens if the user clicks into the connected field.
@@ -21425,7 +21426,7 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
21425
21426
  * If set, the items of the list are filtered based on `filterValue`.
21426
21427
  *
21427
21428
  * If a type-ahead behavior for the connected field is wanted, this property must be set to `true`. For
21428
- * small lists all values are meant to be shown, independent of the typing in the connected field. In this
21429
+ * small lists, all values are meant to be shown, independent of the typing in the connected field. In this
21429
21430
  * case this property must be set to `false`.
21430
21431
  *
21431
21432
  * If not set, the list opens if the user clicks into the connected field.
@@ -21433,13 +21434,13 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
21433
21434
  filterList?: boolean | PropertyBindingInfo | `{${string}}`;
21434
21435
 
21435
21436
  /**
21436
- * Items of the field help.
21437
+ * Items of the value help.
21437
21438
  *
21438
21439
  * The `key` of the items is not shown in the list, but is used as a value of the connected field.
21439
21440
  *
21440
21441
  * If the `additionalText` for all the items is not used, the column will not be displayed.
21441
21442
  *
21442
- * **Note:** At the moment, icons are not supported.
21443
+ * **Note:** Icons are currently not supported.
21443
21444
  */
21444
21445
  items?:
21445
21446
  | FixedListItem[]
@@ -21596,11 +21597,11 @@ declare module "sap/ui/mdc/valuehelp/Dialog" {
21596
21597
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
21597
21598
 
21598
21599
  /**
21599
- * Object to label gropus on value help dialog.
21600
+ * Object to label groups in the value help dialog.
21600
21601
  */
21601
21602
  export type GroupLabel = {
21602
21603
  /**
21603
- * Label with counter. The placeholder for counter needs to defined wihl `{0}`
21604
+ * Label with counter. The placeholder for counter needs to be defined with `{0}`
21604
21605
  */
21605
21606
  label: string;
21606
21607
  /**
@@ -21999,7 +22000,7 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
21999
22000
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
22000
22001
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.content.MTable` itself.
22001
22002
  *
22002
- * This event is fired if the content of the table is updated
22003
+ * This event is fired when the content of the table is updated.
22003
22004
  *
22004
22005
  * @returns Reference to `this` in order to allow method chaining
22005
22006
  */
@@ -22026,7 +22027,7 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
22026
22027
  * When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
22027
22028
  * otherwise it will be bound to this `sap.ui.mdc.valuehelp.content.MTable` itself.
22028
22029
  *
22029
- * This event is fired if the content of the table is updated
22030
+ * This event is fired when the content of the table is updated.
22030
22031
  *
22031
22032
  * @returns Reference to `this` in order to allow method chaining
22032
22033
  */
@@ -22081,11 +22082,11 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
22081
22082
  /**
22082
22083
  * Gets content of aggregation {@link #getTable table}.
22083
22084
  *
22084
- * Table to be used in value help
22085
+ * Table that is used in the value help.
22085
22086
  *
22086
22087
  * **Note:** Set the right selection mode (multiple selection or single selection) as it cannot be determined
22087
- * automatically for every case. (In type-ahead also for multi-value {@link sap.ui.mdc.FilterField FilterField }
22088
- * controls only single selection from table might be wanted.)
22088
+ * automatically for every case. (For type-ahead and also for multi-value {@link sap.ui.mdc.FilterField FilterField }
22089
+ * controls, only single selection from the table might be wanted.)
22089
22090
  */
22090
22091
  getTable(): Table;
22091
22092
  /**
@@ -22103,28 +22104,22 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
22103
22104
 
22104
22105
  export interface $MTableSettings extends $FilterableListContentSettings {
22105
22106
  /**
22106
- * Table to be used in value help
22107
+ * Table that is used in the value help.
22107
22108
  *
22108
22109
  * **Note:** Set the right selection mode (multiple selection or single selection) as it cannot be determined
22109
- * automatically for every case. (In type-ahead also for multi-value {@link sap.ui.mdc.FilterField FilterField }
22110
- * controls only single selection from table might be wanted.)
22110
+ * automatically for every case. (For type-ahead and also for multi-value {@link sap.ui.mdc.FilterField FilterField }
22111
+ * controls, only single selection from the table might be wanted.)
22111
22112
  */
22112
22113
  table?: Table;
22113
22114
 
22114
22115
  /**
22115
- * This event is fired if the content of the table is updated
22116
+ * This event is fired when the content of the table is updated.
22116
22117
  */
22117
22118
  contentUpdated?: (oEvent: Event) => void;
22118
22119
  }
22119
22120
 
22120
22121
  export interface MTable$ContentUpdatedEventParameters {}
22121
22122
 
22122
- /**
22123
- * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MTable$ContentUpdatedEventParameters'
22124
- * in 1.115.1 and any later releases.
22125
- */
22126
- export type $MTableContentUpdatedEventParameters = MTable$ContentUpdatedEventParameters;
22127
-
22128
22123
  export type MTable$ContentUpdatedEvent = Event<MTable$ContentUpdatedEventParameters>;
22129
22124
  }
22130
22125
 
@@ -22215,9 +22210,9 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
22215
22210
  * Controls the possibility to open this popover container by clicking on a connected control, even if no
22216
22211
  * content enforces it.
22217
22212
  *
22218
- * **Note:** By default, a typeahead is only shown to provide suggestions when users enter input in a connected
22219
- * control. This property enables scenarios, where popovers need to be shown earlier (e. g. recommendations
22220
- * or recently entered values) Please also see {@link sap.ui.mdc.ValueHelpDelegate.showTypahead showTypahead}
22213
+ * **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
22214
+ * control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
22215
+ * or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
22221
22216
  *
22222
22217
  * Default value is `false`.
22223
22218
  *
@@ -22229,11 +22224,11 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
22229
22224
  *
22230
22225
  * Gets current value of property {@link #getOpensOnFocus opensOnFocus}.
22231
22226
  *
22232
- * Controls the possibility to open this popover container by focussing a connected control
22227
+ * Controls the possibility to open this popover container by focussing on a connected control.
22233
22228
  *
22234
- * **Note:** By default, a typeahead is only shown to provide suggestions when users enter input in a connected
22235
- * control. This property enables scenarios, where popovers need to be shown earlier (e. g. recommendations
22236
- * or recently entered values) Please also see {@link sap.ui.mdc.ValueHelpDelegate.showTypahead showTypahead}
22229
+ * **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
22230
+ * control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
22231
+ * or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
22237
22232
  *
22238
22233
  * Default value is `false`.
22239
22234
  *
@@ -22248,9 +22243,9 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
22248
22243
  * Controls the possibility to open this popover container by clicking on a connected control, even if no
22249
22244
  * content enforces it.
22250
22245
  *
22251
- * **Note:** By default, a typeahead is only shown to provide suggestions when users enter input in a connected
22252
- * control. This property enables scenarios, where popovers need to be shown earlier (e. g. recommendations
22253
- * or recently entered values) Please also see {@link sap.ui.mdc.ValueHelpDelegate.showTypahead showTypahead}
22246
+ * **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
22247
+ * control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
22248
+ * or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
22254
22249
  *
22255
22250
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
22256
22251
  *
@@ -22269,11 +22264,11 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
22269
22264
  *
22270
22265
  * Sets a new value for property {@link #getOpensOnFocus opensOnFocus}.
22271
22266
  *
22272
- * Controls the possibility to open this popover container by focussing a connected control
22267
+ * Controls the possibility to open this popover container by focussing on a connected control.
22273
22268
  *
22274
- * **Note:** By default, a typeahead is only shown to provide suggestions when users enter input in a connected
22275
- * control. This property enables scenarios, where popovers need to be shown earlier (e. g. recommendations
22276
- * or recently entered values) Please also see {@link sap.ui.mdc.ValueHelpDelegate.showTypahead showTypahead}
22269
+ * **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
22270
+ * control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
22271
+ * or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
22277
22272
  *
22278
22273
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
22279
22274
  *
@@ -22296,20 +22291,20 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
22296
22291
  * Controls the possibility to open this popover container by clicking on a connected control, even if no
22297
22292
  * content enforces it.
22298
22293
  *
22299
- * **Note:** By default, a typeahead is only shown to provide suggestions when users enter input in a connected
22300
- * control. This property enables scenarios, where popovers need to be shown earlier (e. g. recommendations
22301
- * or recently entered values) Please also see {@link sap.ui.mdc.ValueHelpDelegate.showTypahead showTypahead}
22294
+ * **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
22295
+ * control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
22296
+ * or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
22302
22297
  */
22303
22298
  opensOnClick?: boolean | PropertyBindingInfo | `{${string}}`;
22304
22299
 
22305
22300
  /**
22306
22301
  * @since 1.112.0
22307
22302
  *
22308
- * Controls the possibility to open this popover container by focussing a connected control
22303
+ * Controls the possibility to open this popover container by focussing on a connected control.
22309
22304
  *
22310
- * **Note:** By default, a typeahead is only shown to provide suggestions when users enter input in a connected
22311
- * control. This property enables scenarios, where popovers need to be shown earlier (e. g. recommendations
22312
- * or recently entered values) Please also see {@link sap.ui.mdc.ValueHelpDelegate.showTypahead showTypahead}
22305
+ * **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
22306
+ * control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
22307
+ * or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
22313
22308
  */
22314
22309
  opensOnFocus?: boolean | PropertyBindingInfo | `{${string}}`;
22315
22310
  }
@@ -22381,8 +22376,6 @@ declare namespace sap {
22381
22376
 
22382
22377
  "sap/ui/mdc/enum/OperatorValueType": undefined;
22383
22378
 
22384
- "sap/ui/mdc/enum/PersistenceMode": undefined;
22385
-
22386
22379
  "sap/ui/mdc/enum/ProcessingStrategy": undefined;
22387
22380
 
22388
22381
  "sap/ui/mdc/enum/PropagationReason": undefined;
@@ -22417,8 +22410,6 @@ declare namespace sap {
22417
22410
 
22418
22411
  "sap/ui/mdc/enums/OperatorValueType": undefined;
22419
22412
 
22420
- "sap/ui/mdc/enums/PersistenceMode": undefined;
22421
-
22422
22413
  "sap/ui/mdc/enums/ProcessingStrategy": undefined;
22423
22414
 
22424
22415
  "sap/ui/mdc/enums/ReasonMode": undefined;
@@ -22501,8 +22492,6 @@ declare namespace sap {
22501
22492
 
22502
22493
  "sap/ui/mdc/filterbar/vh/FilterBar": undefined;
22503
22494
 
22504
- "sap/ui/mdc/filterbar/vh/FilterContainer": undefined;
22505
-
22506
22495
  "sap/ui/mdc/FilterBarDelegate": undefined;
22507
22496
 
22508
22497
  "sap/ui/mdc/FilterField": undefined;