@openui5/types 1.115.1 → 1.117.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.
- package/README.md +6 -5
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.f.d.ts +196 -276
- package/types/sap.m.d.ts +2202 -2899
- package/types/sap.tnt.d.ts +64 -29
- package/types/sap.ui.codeeditor.d.ts +11 -17
- package/types/sap.ui.commons.d.ts +278 -422
- package/types/sap.ui.core.d.ts +1160 -1090
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +24 -74
- package/types/sap.ui.integration.d.ts +192 -100
- package/types/sap.ui.layout.d.ts +100 -69
- package/types/sap.ui.mdc.d.ts +1100 -913
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -15
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +140 -192
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +277 -501
- package/types/sap.ui.ux3.d.ts +263 -504
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +864 -342
- package/types/sap.ui.webc.main.d.ts +4337 -1135
- package/types/sap.uxap.d.ts +51 -91
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/BaseDelegate" {
|
|
4
4
|
import Control from "sap/ui/mdc/Control";
|
|
5
5
|
|
|
6
|
+
import TypeMap from "sap/ui/mdc/util/TypeMap";
|
|
7
|
+
|
|
6
8
|
/**
|
|
7
9
|
* @since 1.79.0
|
|
8
10
|
*
|
|
@@ -10,8 +12,8 @@ declare module "sap/ui/mdc/BaseDelegate" {
|
|
|
10
12
|
*
|
|
11
13
|
*
|
|
12
14
|
* All delegate implementations for MDC controls must be derived directly or indirectly from this entity.
|
|
13
|
-
* Applications should implement {@link sap
|
|
14
|
-
* based on their model usage. Please also see the following extensible presets: {@link sap.ui.mdc.DefaultTypeMap},
|
|
15
|
+
* Applications should implement {@link module:sap/ui/mdc/BaseDelegate.getTypeMap getTypeMap} to provide
|
|
16
|
+
* type mappings based on their model usage. Please also see the following extensible presets: {@link sap.ui.mdc.DefaultTypeMap},
|
|
15
17
|
* {@link sap.ui.mdc.odata.TypeMap}, {@link sap.ui.mdc.odata.v4.TypeMap}
|
|
16
18
|
*/
|
|
17
19
|
interface BaseDelegate {
|
|
@@ -28,7 +30,7 @@ declare module "sap/ui/mdc/BaseDelegate" {
|
|
|
28
30
|
* Delegate payload object
|
|
29
31
|
*/
|
|
30
32
|
oControl: Control
|
|
31
|
-
):
|
|
33
|
+
): TypeMap;
|
|
32
34
|
}
|
|
33
35
|
const BaseDelegate: BaseDelegate;
|
|
34
36
|
export default BaseDelegate;
|
|
@@ -398,7 +400,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
|
|
|
398
400
|
/**
|
|
399
401
|
* Sets the chart type of the inner chart. This function is called by the chart when the `chartType` property
|
|
400
402
|
* 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#
|
|
403
|
+
* {@link sap.ui.mdc.Chart#chartType chartType} instead.
|
|
402
404
|
*/
|
|
403
405
|
setChartType(
|
|
404
406
|
/**
|
|
@@ -482,7 +484,7 @@ declare module "sap/ui/mdc/ChartDelegate" {
|
|
|
482
484
|
export default ChartDelegate;
|
|
483
485
|
|
|
484
486
|
/**
|
|
485
|
-
*
|
|
487
|
+
* Chart `ChartTypeLayoutConfig` type.
|
|
486
488
|
*/
|
|
487
489
|
export type ChartTypeLayoutConfig = {
|
|
488
490
|
/**
|
|
@@ -555,15 +557,15 @@ declare module "sap/ui/mdc/DefaultTypeMap" {
|
|
|
555
557
|
* **Note:** This `TypeMap` implementation contains the following types:
|
|
556
558
|
*
|
|
557
559
|
*
|
|
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)
|
|
560
|
+
* - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
|
|
561
|
+
* - {@link sap.ui.model.type.Currency} (alias `Currency`)
|
|
562
|
+
* - {@link sap.ui.model.type.Date} (alias `Date`)
|
|
563
|
+
* - {@link sap.ui.model.type.DateTime} (alias `DateTime`)
|
|
564
|
+
* - {@link sap.ui.model.type.Float} (alias `Float`)
|
|
565
|
+
* - {@link sap.ui.model.type.Integer} (alias `Integer`)
|
|
566
|
+
* - {@link sap.ui.model.type.String} (alias `String`)
|
|
567
|
+
* - {@link sap.ui.model.type.Time} (alias `Time`)
|
|
568
|
+
* - {@link sap.ui.model.type.Unit} (alias `Unit`)
|
|
567
569
|
*/
|
|
568
570
|
interface DefaultTypeMap {}
|
|
569
571
|
const DefaultTypeMap: DefaultTypeMap;
|
|
@@ -603,11 +605,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
603
605
|
*
|
|
604
606
|
* Enables applications to control condition updates based on `value` / `additionalvalue` property changes.
|
|
605
607
|
*
|
|
606
|
-
* **Note:**
|
|
607
|
-
*
|
|
608
|
-
*
|
|
608
|
+
* **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
|
|
609
|
+
* then differ from the state of the `value` / `additionalvalue` properties. Avoid expensive operations,
|
|
610
|
+
* as this can delay the rendering of the output.
|
|
609
611
|
*
|
|
610
|
-
* @returns Returns a condition object
|
|
612
|
+
* @returns Returns a condition object that is set on the control
|
|
611
613
|
*/
|
|
612
614
|
createCondition(
|
|
613
615
|
/**
|
|
@@ -619,11 +621,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
619
621
|
*/
|
|
620
622
|
oControl: Control,
|
|
621
623
|
/**
|
|
622
|
-
*
|
|
624
|
+
* Key and description for the condition that is created
|
|
623
625
|
*/
|
|
624
626
|
aValues: any[],
|
|
625
627
|
/**
|
|
626
|
-
*
|
|
628
|
+
* Currently available condition before the property change
|
|
627
629
|
*/
|
|
628
630
|
oCurrentCondition: undefined | ConditionObject
|
|
629
631
|
): undefined | ConditionObject;
|
|
@@ -632,11 +634,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
632
634
|
*
|
|
633
635
|
* Enables applications to control condition updates based on `value` / `additionalvalue` property changes.
|
|
634
636
|
*
|
|
635
|
-
* **Note:**
|
|
636
|
-
*
|
|
637
|
-
*
|
|
637
|
+
* **Note:** Custom implementations of this method may lead to intransparency as a field's condition may
|
|
638
|
+
* then differ from the state of the `value` / `additionalvalue` properties. Avoid expensive operations,
|
|
639
|
+
* as this can delay the rendering of the output.
|
|
638
640
|
*
|
|
639
|
-
* @returns Returns a condition object
|
|
641
|
+
* @returns Returns a condition object that is set on the control
|
|
640
642
|
*/
|
|
641
643
|
createCondition(
|
|
642
644
|
/**
|
|
@@ -644,11 +646,11 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
644
646
|
*/
|
|
645
647
|
oField: FieldBase,
|
|
646
648
|
/**
|
|
647
|
-
*
|
|
649
|
+
* Key and description for the condition that is created
|
|
648
650
|
*/
|
|
649
651
|
aValues: any[],
|
|
650
652
|
/**
|
|
651
|
-
*
|
|
653
|
+
* Currently available condition before the property change
|
|
652
654
|
*/
|
|
653
655
|
oCurrentCondition: undefined | ConditionObject
|
|
654
656
|
): undefined | ConditionObject;
|
|
@@ -656,7 +658,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
656
658
|
* @since 1.107.0
|
|
657
659
|
*
|
|
658
660
|
* Provides the possibility to convey custom data in conditions. This enables an application to enhance
|
|
659
|
-
* conditions with data relevant for combined key or
|
|
661
|
+
* conditions with data relevant for combined key or out parameter scenarios.
|
|
660
662
|
*
|
|
661
663
|
* @returns Optionally returns a serializeable object to be stored in the condition payload field.
|
|
662
664
|
*/
|
|
@@ -678,7 +680,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
678
680
|
* @since 1.107.0
|
|
679
681
|
*
|
|
680
682
|
* Provides the possibility to convey custom data in conditions. This enables an application to enhance
|
|
681
|
-
* conditions with data relevant for combined key or
|
|
683
|
+
* conditions with data relevant for combined key or out parameter scenarios.
|
|
682
684
|
*
|
|
683
685
|
* @returns Optionally returns a serializeable object to be stored in the condition payload field.
|
|
684
686
|
*/
|
|
@@ -696,7 +698,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
696
698
|
* Determines the description for a given key.
|
|
697
699
|
*
|
|
698
700
|
* 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
|
|
701
|
+
* control if a description should be displayed but only a key is given.
|
|
700
702
|
*
|
|
701
703
|
* If this needs to be determined asynchronously, a `Promise` is returned.
|
|
702
704
|
*
|
|
@@ -704,7 +706,7 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
704
706
|
*
|
|
705
707
|
* If the description cannot be determined, a corresponding FormatException is thrown.
|
|
706
708
|
*
|
|
707
|
-
* @returns Description for key or object containing description, key and payload. If it is not available
|
|
709
|
+
* @returns Description for key or object containing description, key, and payload. If it is not available
|
|
708
710
|
* right away (must be requested), a `Promise` is returned.
|
|
709
711
|
*/
|
|
710
712
|
getDescription(
|
|
@@ -722,24 +724,24 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
722
724
|
*/
|
|
723
725
|
vKey: any,
|
|
724
726
|
/**
|
|
725
|
-
* In parameters for the key (as a key
|
|
727
|
+
* In parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
726
728
|
*/
|
|
727
729
|
oInParameters: object,
|
|
728
730
|
/**
|
|
729
|
-
* Out parameters for the key (as a key
|
|
731
|
+
* Out parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
730
732
|
*/
|
|
731
733
|
oOutParameters: object,
|
|
732
734
|
/**
|
|
733
|
-
* `BindingContext` of the checked field
|
|
734
|
-
* different row.
|
|
735
|
+
* `BindingContext` of the checked field; Inside a table, the `ValueHelp` element might be connected to
|
|
736
|
+
* a different row.
|
|
735
737
|
*/
|
|
736
738
|
oBindingContext: Context,
|
|
737
739
|
/**
|
|
738
|
-
* `ConditionModel`, if bound to one -
|
|
740
|
+
* `ConditionModel`, if bound to one - NO LONGER USED
|
|
739
741
|
*/
|
|
740
742
|
oConditionModel: undefined,
|
|
741
743
|
/**
|
|
742
|
-
* Name of the `ConditionModel`, if bound to one -
|
|
744
|
+
* Name of the `ConditionModel`, if bound to one - NO LONGER USED
|
|
743
745
|
*/
|
|
744
746
|
sConditionModelName: undefined,
|
|
745
747
|
/**
|
|
@@ -747,7 +749,189 @@ declare module "sap/ui/mdc/field/FieldBaseDelegate" {
|
|
|
747
749
|
*/
|
|
748
750
|
oConditionPayload: object,
|
|
749
751
|
/**
|
|
750
|
-
* Instance
|
|
752
|
+
* Instance of the calling control if it is not the field itself
|
|
753
|
+
*/
|
|
754
|
+
oControl: Control,
|
|
755
|
+
/**
|
|
756
|
+
* Type of the value
|
|
757
|
+
*/
|
|
758
|
+
oType: Type
|
|
759
|
+
):
|
|
760
|
+
| string
|
|
761
|
+
| /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any
|
|
762
|
+
| Promise<string | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
|
|
763
|
+
/**
|
|
764
|
+
* Determines the description for a given key.
|
|
765
|
+
*
|
|
766
|
+
* This function is called while formatting the output of a {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
|
|
767
|
+
* control if a description should be displayed but only a key is given.
|
|
768
|
+
*
|
|
769
|
+
* If this needs to be determined asynchronously, a `Promise` is returned.
|
|
770
|
+
*
|
|
771
|
+
* As the key might change (uppercase), an object with key and description can be returned.
|
|
772
|
+
*
|
|
773
|
+
* If the description cannot be determined, a corresponding FormatException is thrown.
|
|
774
|
+
*
|
|
775
|
+
* @returns Description for key or object containing description, key, and payload. If it is not available
|
|
776
|
+
* right away (must be requested), a `Promise` is returned.
|
|
777
|
+
*/
|
|
778
|
+
getDescription(
|
|
779
|
+
/**
|
|
780
|
+
* `Field` control instance
|
|
781
|
+
*/
|
|
782
|
+
oField: FieldBase,
|
|
783
|
+
/**
|
|
784
|
+
* Field help assigned to the {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
|
|
785
|
+
* control
|
|
786
|
+
*/
|
|
787
|
+
oValueHelp: ValueHelp,
|
|
788
|
+
/**
|
|
789
|
+
* Key
|
|
790
|
+
*/
|
|
791
|
+
vKey: any,
|
|
792
|
+
/**
|
|
793
|
+
* In parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
794
|
+
*/
|
|
795
|
+
oInParameters: object,
|
|
796
|
+
/**
|
|
797
|
+
* Out parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
798
|
+
*/
|
|
799
|
+
oOutParameters: object,
|
|
800
|
+
/**
|
|
801
|
+
* `BindingContext` of the checked field; Inside a table, the `ValueHelp` element might be connected to
|
|
802
|
+
* a different row.
|
|
803
|
+
*/
|
|
804
|
+
oBindingContext: Context,
|
|
805
|
+
/**
|
|
806
|
+
* `ConditionModel`, if bound to one - NO LONGER USED
|
|
807
|
+
*/
|
|
808
|
+
oConditionModel: undefined,
|
|
809
|
+
/**
|
|
810
|
+
* Additional context information for this key
|
|
811
|
+
*/
|
|
812
|
+
oConditionPayload: object,
|
|
813
|
+
/**
|
|
814
|
+
* Instance of the calling control if it is not the field itself
|
|
815
|
+
*/
|
|
816
|
+
oControl: Control,
|
|
817
|
+
/**
|
|
818
|
+
* Type of the value
|
|
819
|
+
*/
|
|
820
|
+
oType: Type
|
|
821
|
+
):
|
|
822
|
+
| string
|
|
823
|
+
| /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any
|
|
824
|
+
| Promise<string | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
|
|
825
|
+
/**
|
|
826
|
+
* Determines the description for a given key.
|
|
827
|
+
*
|
|
828
|
+
* This function is called while formatting the output of a {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
|
|
829
|
+
* control if a description should be displayed but only a key is given.
|
|
830
|
+
*
|
|
831
|
+
* If this needs to be determined asynchronously, a `Promise` is returned.
|
|
832
|
+
*
|
|
833
|
+
* As the key might change (uppercase), an object with key and description can be returned.
|
|
834
|
+
*
|
|
835
|
+
* If the description cannot be determined, a corresponding FormatException is thrown.
|
|
836
|
+
*
|
|
837
|
+
* @returns Description for key or object containing description, key, and payload. If it is not available
|
|
838
|
+
* right away (must be requested), a `Promise` is returned.
|
|
839
|
+
*/
|
|
840
|
+
getDescription(
|
|
841
|
+
/**
|
|
842
|
+
* `Field` control instance
|
|
843
|
+
*/
|
|
844
|
+
oField: FieldBase,
|
|
845
|
+
/**
|
|
846
|
+
* Field help assigned to the {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
|
|
847
|
+
* control
|
|
848
|
+
*/
|
|
849
|
+
oValueHelp: ValueHelp,
|
|
850
|
+
/**
|
|
851
|
+
* Key
|
|
852
|
+
*/
|
|
853
|
+
vKey: any,
|
|
854
|
+
/**
|
|
855
|
+
* In parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
856
|
+
*/
|
|
857
|
+
oInParameters: object,
|
|
858
|
+
/**
|
|
859
|
+
* Out parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
860
|
+
*/
|
|
861
|
+
oOutParameters: object,
|
|
862
|
+
/**
|
|
863
|
+
* `BindingContext` of the checked field; Inside a table, the `ValueHelp` element might be connected to
|
|
864
|
+
* a different row.
|
|
865
|
+
*/
|
|
866
|
+
oBindingContext: Context,
|
|
867
|
+
/**
|
|
868
|
+
* Name of the `ConditionModel`, if bound to one - NO LONGER USED
|
|
869
|
+
*/
|
|
870
|
+
sConditionModelName: undefined,
|
|
871
|
+
/**
|
|
872
|
+
* Additional context information for this key
|
|
873
|
+
*/
|
|
874
|
+
oConditionPayload: object,
|
|
875
|
+
/**
|
|
876
|
+
* Instance of the calling control if it is not the field itself
|
|
877
|
+
*/
|
|
878
|
+
oControl: Control,
|
|
879
|
+
/**
|
|
880
|
+
* Type of the value
|
|
881
|
+
*/
|
|
882
|
+
oType: Type
|
|
883
|
+
):
|
|
884
|
+
| string
|
|
885
|
+
| /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any
|
|
886
|
+
| Promise<string | /* was: sap.ui.mdc.valuehelp.ValueHelpItem */ any>;
|
|
887
|
+
/**
|
|
888
|
+
* Determines the description for a given key.
|
|
889
|
+
*
|
|
890
|
+
* This function is called while formatting the output of a {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
|
|
891
|
+
* control if a description should be displayed but only a key is given.
|
|
892
|
+
*
|
|
893
|
+
* If this needs to be determined asynchronously, a `Promise` is returned.
|
|
894
|
+
*
|
|
895
|
+
* As the key might change (uppercase), an object with key and description can be returned.
|
|
896
|
+
*
|
|
897
|
+
* If the description cannot be determined, a corresponding FormatException is thrown.
|
|
898
|
+
*
|
|
899
|
+
* @returns Description for key or object containing description, key, and payload. If it is not available
|
|
900
|
+
* right away (must be requested), a `Promise` is returned.
|
|
901
|
+
*/
|
|
902
|
+
getDescription(
|
|
903
|
+
/**
|
|
904
|
+
* `Field` control instance
|
|
905
|
+
*/
|
|
906
|
+
oField: FieldBase,
|
|
907
|
+
/**
|
|
908
|
+
* Field help assigned to the {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField }
|
|
909
|
+
* control
|
|
910
|
+
*/
|
|
911
|
+
oValueHelp: ValueHelp,
|
|
912
|
+
/**
|
|
913
|
+
* Key
|
|
914
|
+
*/
|
|
915
|
+
vKey: any,
|
|
916
|
+
/**
|
|
917
|
+
* In parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
918
|
+
*/
|
|
919
|
+
oInParameters: object,
|
|
920
|
+
/**
|
|
921
|
+
* Out parameters for the key (as a key is not necessarily unique.) (Only filled in conditions of old variants.)
|
|
922
|
+
*/
|
|
923
|
+
oOutParameters: object,
|
|
924
|
+
/**
|
|
925
|
+
* `BindingContext` of the checked field; Inside a table, the `ValueHelp` element might be connected to
|
|
926
|
+
* a different row.
|
|
927
|
+
*/
|
|
928
|
+
oBindingContext: Context,
|
|
929
|
+
/**
|
|
930
|
+
* Additional context information for this key
|
|
931
|
+
*/
|
|
932
|
+
oConditionPayload: object,
|
|
933
|
+
/**
|
|
934
|
+
* Instance of the calling control if it is not the field itself
|
|
751
935
|
*/
|
|
752
936
|
oControl: Control,
|
|
753
937
|
/**
|
|
@@ -903,34 +1087,34 @@ declare module "sap/ui/mdc/odata/TypeMap" {
|
|
|
903
1087
|
* **Note:** This `TypeMap` implementation contains the following types:
|
|
904
1088
|
*
|
|
905
1089
|
*
|
|
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)
|
|
1090
|
+
* - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
|
|
1091
|
+
* - {@link sap.ui.model.type.Currency} (alias `Currency`)
|
|
1092
|
+
* - {@link sap.ui.model.type.Date} (alias `Date`)
|
|
1093
|
+
* - {@link sap.ui.model.type.DateTime} (alias `DateTime`)
|
|
1094
|
+
* - {@link sap.ui.model.type.Float} (alias `Float`)
|
|
1095
|
+
* - {@link sap.ui.model.type.Integer} (alias `Integer`)
|
|
1096
|
+
* - {@link sap.ui.model.type.String} (alias `String`)
|
|
1097
|
+
* - {@link sap.ui.model.type.Time} (alias `Time`)
|
|
1098
|
+
* - {@link sap.ui.model.type.Unit} (alias `Unit`)
|
|
1099
|
+
* - {@link sap.ui.model.odata.type.Stream} (alias `Edm.Binary`)
|
|
1100
|
+
* - {@link sap.ui.model.odata.type.Boolean} (alias `Edm.Boolean`)
|
|
1101
|
+
* - {@link sap.ui.model.odata.type.Byte} (alias `Edm.Byte`)
|
|
1102
|
+
* - {@link sap.ui.model.odata.type.Date} (alias `Edm.Date`)
|
|
1103
|
+
* - {@link sap.ui.model.odata.type.DateTime} (alias `Edm.DateTime`)
|
|
1104
|
+
* - {@link sap.ui.model.odata.type.DateTimeOffset} (alias `Edm.DateTimeOffset`)
|
|
1105
|
+
* - {@link sap.ui.model.odata.type.Decimal} (alias `Edm.Decimal`)
|
|
1106
|
+
* - {@link sap.ui.model.odata.type.Double} (alias `Edm.Double`)
|
|
1107
|
+
* - {@link sap.ui.model.odata.type.Single} (alias `Edm.Float`)
|
|
1108
|
+
* - {@link sap.ui.model.odata.type.Guid} (alias `Edm.Guid`)
|
|
1109
|
+
* - {@link sap.ui.model.odata.type.Int16} (alias `Edm.Int16`)
|
|
1110
|
+
* - {@link sap.ui.model.odata.type.Int32} (alias `Edm.Int32`)
|
|
1111
|
+
* - {@link sap.ui.model.odata.type.Int64} (alias `Edm.Int64`)
|
|
1112
|
+
* - {@link sap.ui.model.odata.type.SByte} (alias `Edm.SByte`)
|
|
1113
|
+
* - {@link sap.ui.model.odata.type.Single} (alias `Edm.Single`)
|
|
1114
|
+
* - {@link sap.ui.model.odata.type.Stream} (alias `Edm.Stream`)
|
|
1115
|
+
* - {@link sap.ui.model.odata.type.String} (alias `Edm.String`)
|
|
1116
|
+
* - {@link sap.ui.model.odata.type.Time} (alias `Edm.Time`)
|
|
1117
|
+
* - {@link sap.ui.model.odata.type.TimeOfDay} (alias `Edm.TimeOfDay`)
|
|
934
1118
|
*/
|
|
935
1119
|
interface TypeMap {}
|
|
936
1120
|
const TypeMap: TypeMap;
|
|
@@ -986,7 +1170,16 @@ declare module "sap/ui/mdc/odata/v4/TableDelegate" {
|
|
|
986
1170
|
/**
|
|
987
1171
|
* The binding instance of the table
|
|
988
1172
|
*/
|
|
989
|
-
oBinding?: ListBinding
|
|
1173
|
+
oBinding?: ListBinding,
|
|
1174
|
+
/**
|
|
1175
|
+
* Additional settings
|
|
1176
|
+
*/
|
|
1177
|
+
mSettings?: {
|
|
1178
|
+
/**
|
|
1179
|
+
* Indicates that the binding has to be refreshed even if `oBindingInfo` has not been changed
|
|
1180
|
+
*/
|
|
1181
|
+
forceRefresh?: boolean;
|
|
1182
|
+
}
|
|
990
1183
|
): void;
|
|
991
1184
|
}
|
|
992
1185
|
const TableDelegate: TableDelegate;
|
|
@@ -1002,34 +1195,34 @@ declare module "sap/ui/mdc/odata/v4/TypeMap" {
|
|
|
1002
1195
|
* **Note:** This `TypeMap` implementation contains the following types including ODataV4-specific configuration:
|
|
1003
1196
|
*
|
|
1004
1197
|
*
|
|
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)
|
|
1198
|
+
* - {@link sap.ui.model.type.Boolean} (alias `Boolean`)
|
|
1199
|
+
* - {@link sap.ui.model.type.Currency} (alias `Currency`)
|
|
1200
|
+
* - {@link sap.ui.model.type.Date} (alias `Date`)
|
|
1201
|
+
* - {@link sap.ui.model.type.DateTime} (alias `DateTime`)
|
|
1202
|
+
* - {@link sap.ui.model.type.Float} (alias `Float`)
|
|
1203
|
+
* - {@link sap.ui.model.type.Integer} (alias `Integer`)
|
|
1204
|
+
* - {@link sap.ui.model.type.String} (alias `String`)
|
|
1205
|
+
* - {@link sap.ui.model.type.Time} (alias `Time`)
|
|
1206
|
+
* - {@link sap.ui.model.type.Unit} (alias `Unit`)
|
|
1207
|
+
* - {@link sap.ui.model.odata.type.Stream} (alias `Edm.Binary`)
|
|
1208
|
+
* - {@link sap.ui.model.odata.type.Boolean} (alias `Edm.Boolean`)
|
|
1209
|
+
* - {@link sap.ui.model.odata.type.Byte} (alias `Edm.Byte`)
|
|
1210
|
+
* - {@link sap.ui.model.odata.type.Date} (alias `Edm.Date`)
|
|
1211
|
+
* - {@link sap.ui.model.odata.type.DateTime} (alias `Edm.DateTime`)
|
|
1212
|
+
* - {@link sap.ui.model.odata.type.DateTimeOffset} (alias `Edm.DateTimeOffset`)
|
|
1213
|
+
* - {@link sap.ui.model.odata.type.Decimal} (alias `Edm.Decimal`)
|
|
1214
|
+
* - {@link sap.ui.model.odata.type.Double} (alias `Edm.Double`)
|
|
1215
|
+
* - {@link sap.ui.model.odata.type.Single} (alias `Edm.Float`)
|
|
1216
|
+
* - {@link sap.ui.model.odata.type.Guid} (alias `Edm.Guid`)
|
|
1217
|
+
* - {@link sap.ui.model.odata.type.Int16} (alias `Edm.Int16`)
|
|
1218
|
+
* - {@link sap.ui.model.odata.type.Int32} (alias `Edm.Int32`)
|
|
1219
|
+
* - {@link sap.ui.model.odata.type.Int64} (alias `Edm.Int64`)
|
|
1220
|
+
* - {@link sap.ui.model.odata.type.SByte} (alias `Edm.SByte`)
|
|
1221
|
+
* - {@link sap.ui.model.odata.type.Single} (alias `Edm.Single`)
|
|
1222
|
+
* - {@link sap.ui.model.odata.type.Stream} (alias `Edm.Stream`)
|
|
1223
|
+
* - {@link sap.ui.model.odata.type.String} (alias `Edm.String`)
|
|
1224
|
+
* - {@link sap.ui.model.odata.type.Time} (alias `Edm.Time`)
|
|
1225
|
+
* - {@link sap.ui.model.odata.type.TimeOfDay} (alias `Edm.TimeOfDay`)
|
|
1033
1226
|
*/
|
|
1034
1227
|
interface TypeMap {}
|
|
1035
1228
|
const TypeMap: TypeMap;
|
|
@@ -1150,11 +1343,7 @@ declare module "sap/ui/mdc/TableDelegate" {
|
|
|
1150
1343
|
/**
|
|
1151
1344
|
* Instance of the MDC table
|
|
1152
1345
|
*/
|
|
1153
|
-
oTable: Table
|
|
1154
|
-
/**
|
|
1155
|
-
* Property to group
|
|
1156
|
-
*/
|
|
1157
|
-
sPropertyName: string
|
|
1346
|
+
oTable: Table
|
|
1158
1347
|
): Sorter | undefined;
|
|
1159
1348
|
/**
|
|
1160
1349
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
@@ -1204,7 +1393,16 @@ declare module "sap/ui/mdc/TableDelegate" {
|
|
|
1204
1393
|
/**
|
|
1205
1394
|
* The binding instance of the table
|
|
1206
1395
|
*/
|
|
1207
|
-
oBinding?: ListBinding
|
|
1396
|
+
oBinding?: ListBinding,
|
|
1397
|
+
/**
|
|
1398
|
+
* Additional settings
|
|
1399
|
+
*/
|
|
1400
|
+
mSettings?: {
|
|
1401
|
+
/**
|
|
1402
|
+
* Indicates that the binding has to be refreshed even if `oBindingInfo` has not been changed
|
|
1403
|
+
*/
|
|
1404
|
+
forceRefresh?: boolean;
|
|
1405
|
+
}
|
|
1208
1406
|
): void;
|
|
1209
1407
|
/**
|
|
1210
1408
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
@@ -1248,6 +1446,11 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
1248
1446
|
*/
|
|
1249
1447
|
export(): any[];
|
|
1250
1448
|
/**
|
|
1449
|
+
* Converts a value into a string using a designated type.
|
|
1450
|
+
*
|
|
1451
|
+
* The value is not checked for validity. The used values must be compatible with the used basic type.
|
|
1452
|
+
*
|
|
1453
|
+
* **Note:** Number types are not converted, the number conversion is done by the SAPUI5 Flexibility handling.
|
|
1251
1454
|
*
|
|
1252
1455
|
* @returns converted value
|
|
1253
1456
|
*/
|
|
@@ -1274,12 +1477,17 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
1274
1477
|
*/
|
|
1275
1478
|
freeze(): void;
|
|
1276
1479
|
/**
|
|
1480
|
+
* To determine which internal controls to render, the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
|
|
1481
|
+
* or {@link sap.ui.mdc.FilterField FilterField} controls need to know if the type represents a date, a
|
|
1482
|
+
* number, or another {@link sap.ui.mdc.enums.BaseType BaseType}.
|
|
1483
|
+
*
|
|
1484
|
+
* As default, `String` is returned.
|
|
1277
1485
|
*
|
|
1278
1486
|
* @returns output `Date`, `DateTime` or `Time`...
|
|
1279
1487
|
*/
|
|
1280
1488
|
getBaseType(
|
|
1281
1489
|
/**
|
|
1282
|
-
* Given type string or sap.ui.model.SimpleType
|
|
1490
|
+
* Given type string or {@link sap.ui.model.SimpleType}
|
|
1283
1491
|
*/
|
|
1284
1492
|
sType: string,
|
|
1285
1493
|
/**
|
|
@@ -1292,16 +1500,20 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
1292
1500
|
oConstraints: object
|
|
1293
1501
|
): BaseType | keyof typeof BaseType;
|
|
1294
1502
|
/**
|
|
1503
|
+
* Convenience method to retrieve the `BaseType` for a given {@link sap.ui.model.SimpleType SimpleType}.
|
|
1295
1504
|
*
|
|
1296
1505
|
* @returns output `Date`, `DateTime` or `Time`...
|
|
1297
1506
|
*/
|
|
1298
1507
|
getBaseTypeForType(
|
|
1299
1508
|
/**
|
|
1300
|
-
* Given type string or sap.ui.model.SimpleType
|
|
1509
|
+
* Given type string or {@link sap.ui.model.SimpleType}
|
|
1301
1510
|
*/
|
|
1302
1511
|
oType: SimpleType
|
|
1303
|
-
):
|
|
1512
|
+
): BaseType | keyof typeof BaseType;
|
|
1304
1513
|
/**
|
|
1514
|
+
* Returns a data type class based on a given name.
|
|
1515
|
+
*
|
|
1516
|
+
* **Note:** The module of the data type needs to be loaded before.
|
|
1305
1517
|
*
|
|
1306
1518
|
* @returns creates returns a dataType class
|
|
1307
1519
|
*/
|
|
@@ -1312,6 +1524,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
1312
1524
|
sDataType: string
|
|
1313
1525
|
): SimpleType;
|
|
1314
1526
|
/**
|
|
1527
|
+
* Returns the data type class name for a given name or alias.
|
|
1315
1528
|
*
|
|
1316
1529
|
* @returns Data type name
|
|
1317
1530
|
*/
|
|
@@ -1322,6 +1535,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
1322
1535
|
sType: string
|
|
1323
1536
|
): string;
|
|
1324
1537
|
/**
|
|
1538
|
+
* Returns a data type instance based on a given object path, `FormatOptions`, and `Constraints`.
|
|
1325
1539
|
*
|
|
1326
1540
|
* @returns creates returns an instance of the resolved dataType
|
|
1327
1541
|
*/
|
|
@@ -1344,6 +1558,7 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
1344
1558
|
oOptions?: object
|
|
1345
1559
|
): SimpleType;
|
|
1346
1560
|
/**
|
|
1561
|
+
* Returns a type mapping configuration object for a given type string or {@link sap.ui.model.SimpleType SimpleType}.
|
|
1347
1562
|
*
|
|
1348
1563
|
* @returns output returns typeConfig object
|
|
1349
1564
|
*/
|
|
@@ -1368,9 +1583,14 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
1368
1583
|
/**
|
|
1369
1584
|
* TypeMap to import
|
|
1370
1585
|
*/
|
|
1371
|
-
oTypeMap:
|
|
1586
|
+
oTypeMap: TypeMap
|
|
1372
1587
|
): void;
|
|
1373
1588
|
/**
|
|
1589
|
+
* Converts a string into a type-based value.
|
|
1590
|
+
*
|
|
1591
|
+
* The value is not checked for validity. The used values must be compatible with the used basic type.
|
|
1592
|
+
*
|
|
1593
|
+
* **Note:** Number types are not converted, the number conversion is done by the SAPUI5 Flexibility handling.
|
|
1374
1594
|
*
|
|
1375
1595
|
* @returns converted value
|
|
1376
1596
|
*/
|
|
@@ -1393,14 +1613,14 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
1393
1613
|
oConstraints?: object
|
|
1394
1614
|
): object;
|
|
1395
1615
|
/**
|
|
1396
|
-
* Sets a BaseType and an optional model- or scenario-specific configuration method for a given sap.ui.model.SimpleType
|
|
1616
|
+
* Sets a BaseType and an optional model- or scenario-specific configuration method for a given {@link sap.ui.model.SimpleType }
|
|
1397
1617
|
* ObjectPath string
|
|
1398
1618
|
*
|
|
1399
1619
|
* As default `string` is returned.
|
|
1400
1620
|
*/
|
|
1401
1621
|
set(
|
|
1402
1622
|
/**
|
|
1403
|
-
* Objectpath string for sap.ui.model.SimpleType
|
|
1623
|
+
* Objectpath string for {@link sap.ui.model.SimpleType}
|
|
1404
1624
|
*/
|
|
1405
1625
|
sType: string,
|
|
1406
1626
|
/**
|
|
@@ -1408,16 +1628,17 @@ declare module "sap/ui/mdc/util/TypeMap" {
|
|
|
1408
1628
|
*/
|
|
1409
1629
|
vBaseType: (BaseType | keyof typeof BaseType) | Function,
|
|
1410
1630
|
/**
|
|
1411
|
-
* Optional customizing method for formatoptions and constraints. See
|
|
1631
|
+
* Optional customizing method for formatoptions and constraints. See {@link sap.ui.mdc.DefaultTypeMap }
|
|
1632
|
+
* for examples.
|
|
1412
1633
|
*/
|
|
1413
1634
|
fnOptions?: Function
|
|
1414
1635
|
): void;
|
|
1415
1636
|
/**
|
|
1416
|
-
* Allows alternative identifiers for Types, such as "Boolean" for "sap.ui.model.type.Boolean"
|
|
1637
|
+
* Allows alternative identifiers for Types, such as "Boolean" for "{@link sap.ui.model.type.Boolean}"
|
|
1417
1638
|
*/
|
|
1418
1639
|
setAlias(
|
|
1419
1640
|
/**
|
|
1420
|
-
* Objectpath string for sap.ui.model.SimpleType
|
|
1641
|
+
* Objectpath string for {@link sap.ui.model.SimpleType}
|
|
1421
1642
|
*/
|
|
1422
1643
|
sType: string,
|
|
1423
1644
|
/**
|
|
@@ -1485,9 +1706,9 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1485
1706
|
* @since 1.101.0
|
|
1486
1707
|
*
|
|
1487
1708
|
* Provides the possibility to convey custom data in conditions. This enables an application to enhance
|
|
1488
|
-
* conditions with data relevant for combined key or
|
|
1709
|
+
* conditions with data relevant for combined key or out parameter scenarios.
|
|
1489
1710
|
*
|
|
1490
|
-
* @returns Optionally returns a
|
|
1711
|
+
* @returns Optionally returns a serializable object to be stored in the condition payload field
|
|
1491
1712
|
*/
|
|
1492
1713
|
createConditionPayload(
|
|
1493
1714
|
/**
|
|
@@ -1499,18 +1720,18 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1499
1720
|
*/
|
|
1500
1721
|
oContent: FilterableListContent,
|
|
1501
1722
|
/**
|
|
1502
|
-
*
|
|
1723
|
+
* Key and description pair for the condition that is created
|
|
1503
1724
|
*/
|
|
1504
1725
|
aValues: any[],
|
|
1505
1726
|
/**
|
|
1506
|
-
*
|
|
1727
|
+
* Optional additional context
|
|
1507
1728
|
*/
|
|
1508
1729
|
oContext?: Context
|
|
1509
1730
|
): undefined | object;
|
|
1510
1731
|
/**
|
|
1511
1732
|
* Executes a filter in a `ListBinding`.
|
|
1512
1733
|
*
|
|
1513
|
-
* @returns Promise that is resolved if search is executed
|
|
1734
|
+
* @returns `Promise` that is resolved if search is executed
|
|
1514
1735
|
*/
|
|
1515
1736
|
executeFilter(
|
|
1516
1737
|
/**
|
|
@@ -1529,10 +1750,11 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1529
1750
|
/**
|
|
1530
1751
|
* @since 1.106.0
|
|
1531
1752
|
*
|
|
1532
|
-
*
|
|
1533
|
-
* applied
|
|
1534
|
-
*
|
|
1535
|
-
*
|
|
1753
|
+
* Provides a map of conditions for the following situations:
|
|
1754
|
+
* - Initial set of conditions applied every time value help content is shown for the first time since
|
|
1755
|
+
* opening its container.
|
|
1756
|
+
* - Detailed set of conditions in `getItemForValue` scenarios that allow you to find a specific value
|
|
1757
|
+
* help item (indicated by oConfig availability).
|
|
1536
1758
|
*
|
|
1537
1759
|
* @returns Returns a map of conditions
|
|
1538
1760
|
*/
|
|
@@ -1558,18 +1780,18 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1558
1780
|
*/
|
|
1559
1781
|
parsedValue?: any;
|
|
1560
1782
|
/**
|
|
1561
|
-
* Contextual information provided by condition payload or inParameters
|
|
1562
|
-
* if the description needs to be determined for an existing condition.
|
|
1783
|
+
* Contextual information provided by condition payload or `inParameters`/`outParameters`. This is only
|
|
1784
|
+
* filled if the description needs to be determined for an existing condition.
|
|
1563
1785
|
*/
|
|
1564
1786
|
context?: {
|
|
1565
1787
|
/**
|
|
1566
|
-
* In parameters of the current condition (
|
|
1567
|
-
* older
|
|
1788
|
+
* In parameters of the current condition (`inParameter` are not used any longer, but it might be filled
|
|
1789
|
+
* in older conditions stored in variants.)
|
|
1568
1790
|
*/
|
|
1569
1791
|
inParameter?: object;
|
|
1570
1792
|
/**
|
|
1571
|
-
* Out parameters of the current condition (
|
|
1572
|
-
* in older
|
|
1793
|
+
* Out parameters of the current condition (`outParameter` are not used any longer, but it might be filled
|
|
1794
|
+
* in older conditions stored in variants.)
|
|
1573
1795
|
*/
|
|
1574
1796
|
ouParameter?: object;
|
|
1575
1797
|
/**
|
|
@@ -1582,8 +1804,8 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1582
1804
|
*/
|
|
1583
1805
|
control: Control;
|
|
1584
1806
|
/**
|
|
1585
|
-
* `BindingContext` of the checked field. Inside a table the `ValueHelp` element might be connected to
|
|
1586
|
-
* different row.
|
|
1807
|
+
* `BindingContext` of the checked field. Inside a table, the `ValueHelp` element might be connected to
|
|
1808
|
+
* a different row.
|
|
1587
1809
|
*/
|
|
1588
1810
|
bindingContext?: Context;
|
|
1589
1811
|
/**
|
|
@@ -1593,7 +1815,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1593
1815
|
checkKey: boolean;
|
|
1594
1816
|
/**
|
|
1595
1817
|
* 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.
|
|
1818
|
+
* if only the key is used in the field.
|
|
1597
1819
|
*/
|
|
1598
1820
|
checkDescription: boolean;
|
|
1599
1821
|
}
|
|
@@ -1601,7 +1823,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1601
1823
|
/**
|
|
1602
1824
|
* @since 1.101.0
|
|
1603
1825
|
*
|
|
1604
|
-
* Provides type information for
|
|
1826
|
+
* Provides type information for list content filtering.
|
|
1605
1827
|
*
|
|
1606
1828
|
* @returns Returns a type map for property paths
|
|
1607
1829
|
*/
|
|
@@ -1615,7 +1837,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1615
1837
|
*/
|
|
1616
1838
|
oContent: FilterableListContent,
|
|
1617
1839
|
/**
|
|
1618
|
-
*
|
|
1840
|
+
* Set of conditions to create filters for
|
|
1619
1841
|
*/
|
|
1620
1842
|
oConditions: object
|
|
1621
1843
|
): object;
|
|
@@ -1623,9 +1845,9 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1623
1845
|
* @since 1.101.0
|
|
1624
1846
|
*
|
|
1625
1847
|
* Provides the possibility to customize selections in 'Select from list' scenarios. By default, only condition
|
|
1626
|
-
* keys are
|
|
1848
|
+
* keys are taken into consideration. This might be extended with payload dependent filters.
|
|
1627
1849
|
*
|
|
1628
|
-
* @returns
|
|
1850
|
+
* @returns `true` if item is selected
|
|
1629
1851
|
*/
|
|
1630
1852
|
isFilterableListItemSelected(
|
|
1631
1853
|
/**
|
|
@@ -1646,9 +1868,9 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1646
1868
|
aConditions: ConditionObject[]
|
|
1647
1869
|
): boolean;
|
|
1648
1870
|
/**
|
|
1649
|
-
* Checks if a `ListBinding` supports
|
|
1871
|
+
* Checks if a `ListBinding` supports `$search`.
|
|
1650
1872
|
*
|
|
1651
|
-
* @returns true if
|
|
1873
|
+
* @returns `true` if `$search` is supported
|
|
1652
1874
|
*/
|
|
1653
1875
|
isSearchSupported(
|
|
1654
1876
|
/**
|
|
@@ -1660,7 +1882,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1660
1882
|
*/
|
|
1661
1883
|
oContent: Content,
|
|
1662
1884
|
/**
|
|
1663
|
-
* ListBinding
|
|
1885
|
+
* `ListBinding`
|
|
1664
1886
|
*/
|
|
1665
1887
|
oListBinding: ListBinding
|
|
1666
1888
|
): boolean;
|
|
@@ -1698,8 +1920,8 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1698
1920
|
/**
|
|
1699
1921
|
* @since 1.101.0
|
|
1700
1922
|
*
|
|
1701
|
-
* Callback invoked
|
|
1702
|
-
* of the corresponding field changes This callback
|
|
1923
|
+
* Callback invoked every time a {@link sap.ui.mdc.ValueHelp ValueHelp} fires a `select` event or the value
|
|
1924
|
+
* of the corresponding field changes. This callback can be used to update external fields.
|
|
1703
1925
|
*/
|
|
1704
1926
|
onConditionPropagation(
|
|
1705
1927
|
/**
|
|
@@ -1713,7 +1935,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1713
1935
|
| ValueHelpPropagationReason
|
|
1714
1936
|
| keyof typeof ValueHelpPropagationReason,
|
|
1715
1937
|
/**
|
|
1716
|
-
*
|
|
1938
|
+
* Current configuration provided by the calling control
|
|
1717
1939
|
*/
|
|
1718
1940
|
oConfig: object
|
|
1719
1941
|
): void;
|
|
@@ -1722,11 +1944,11 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1722
1944
|
*
|
|
1723
1945
|
* This function is called when the value help is opened or a key or description is requested.
|
|
1724
1946
|
*
|
|
1725
|
-
* So
|
|
1947
|
+
* So depending on the value help content used, all content controls and data need to be assigned. Once
|
|
1726
1948
|
* they are assigned and the data is set, the returned `Promise` needs to be resolved. Only then does the
|
|
1727
1949
|
* value help continue opening or reading data.
|
|
1728
1950
|
*
|
|
1729
|
-
* @returns Promise that is resolved if all content is available
|
|
1951
|
+
* @returns `Promise` that is resolved if all content is available
|
|
1730
1952
|
*/
|
|
1731
1953
|
retrieveContent(
|
|
1732
1954
|
/**
|
|
@@ -1738,16 +1960,16 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1738
1960
|
*/
|
|
1739
1961
|
oContainer: Container,
|
|
1740
1962
|
/**
|
|
1741
|
-
*
|
|
1963
|
+
* ID of the content shown after this call to retrieve content
|
|
1742
1964
|
*/
|
|
1743
1965
|
sContentId: string
|
|
1744
1966
|
): Promise<any>;
|
|
1745
1967
|
/**
|
|
1746
1968
|
* @since 1.110.0
|
|
1747
1969
|
*
|
|
1748
|
-
* Controls if a
|
|
1970
|
+
* Controls if a type-ahead is opened or closed.
|
|
1749
1971
|
*
|
|
1750
|
-
* @returns Boolean or Promise resolving
|
|
1972
|
+
* @returns Boolean or `Promise` resolving into a boolean indicating the desired behavior
|
|
1751
1973
|
*/
|
|
1752
1974
|
showTypeahead(
|
|
1753
1975
|
/**
|
|
@@ -1755,7 +1977,7 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1755
1977
|
*/
|
|
1756
1978
|
oValueHelp: ValueHelp,
|
|
1757
1979
|
/**
|
|
1758
|
-
* ValueHelp
|
|
1980
|
+
* `ValueHelp` Content requesting conditions configuration
|
|
1759
1981
|
*/
|
|
1760
1982
|
oContent: Content
|
|
1761
1983
|
): Promise<any> | boolean;
|
|
@@ -1774,18 +1996,18 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1774
1996
|
*/
|
|
1775
1997
|
oListBinding: ListBinding,
|
|
1776
1998
|
/**
|
|
1777
|
-
* The binding info object
|
|
1999
|
+
* The binding info object that is be used to bind the list to the model
|
|
1778
2000
|
*/
|
|
1779
2001
|
oBindingInfo: AggregationBindingInfo,
|
|
1780
2002
|
/**
|
|
1781
|
-
* ValueHelp content requesting the binding update
|
|
2003
|
+
* `ValueHelp` content requesting the binding update
|
|
1782
2004
|
*/
|
|
1783
2005
|
oContent: FilterableListContent
|
|
1784
2006
|
): void;
|
|
1785
2007
|
/**
|
|
1786
2008
|
* @since 1.110.0
|
|
1787
2009
|
*
|
|
1788
|
-
* Adjustable filtering for list-based contents
|
|
2010
|
+
* Adjustable filtering for list-based contents.
|
|
1789
2011
|
*/
|
|
1790
2012
|
updateBindingInfo(
|
|
1791
2013
|
/**
|
|
@@ -1793,11 +2015,11 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1793
2015
|
*/
|
|
1794
2016
|
oValueHelp: ValueHelp,
|
|
1795
2017
|
/**
|
|
1796
|
-
* ValueHelp content requesting conditions configuration
|
|
2018
|
+
* `ValueHelp` content requesting conditions configuration
|
|
1797
2019
|
*/
|
|
1798
2020
|
oContent: FilterableListContent,
|
|
1799
2021
|
/**
|
|
1800
|
-
* The binding info object to
|
|
2022
|
+
* The binding info object to that is used to bind the list to the model
|
|
1801
2023
|
*/
|
|
1802
2024
|
oBindingInfo: AggregationBindingInfo
|
|
1803
2025
|
): void;
|
|
@@ -1809,6 +2031,78 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
1809
2031
|
declare module "sap/ui/mdc/library" {
|
|
1810
2032
|
import FieldDisplay from "sap/ui/mdc/enums/FieldDisplay";
|
|
1811
2033
|
|
|
2034
|
+
/**
|
|
2035
|
+
* @since 1.70
|
|
2036
|
+
*
|
|
2037
|
+
* Interface for controls or entities which can serve as filters in the `sap.ui.mdc.Table` & `sap.ui.mdc.Chart`.
|
|
2038
|
+
*
|
|
2039
|
+
* The following methods need to be implemented:
|
|
2040
|
+
*
|
|
2041
|
+
*
|
|
2042
|
+
* - `getConditions` - Part of the {@link sap.ui.mdc.IFilterSource} interface.
|
|
2043
|
+
* - `validate` - The `validate` method should return a promise which resolves after the IFilter interface
|
|
2044
|
+
* has handled its inner validation. The `getConditions` method will be called subsequently by the filtered
|
|
2045
|
+
* control.
|
|
2046
|
+
* - `getSearch` - **Note:** The `getSearch` method can optionally be implemented and should return a
|
|
2047
|
+
* string for approximate string matching implemented in the backend.
|
|
2048
|
+
*
|
|
2049
|
+
* The following events need to be implemented:
|
|
2050
|
+
*
|
|
2051
|
+
*
|
|
2052
|
+
* - `search` - This event should be fired once a filtering should be executed on the IFilter using control.
|
|
2053
|
+
*
|
|
2054
|
+
* - `filtersChanged` - **Note:** The `filtersChanged` event can optionally be implemented and should
|
|
2055
|
+
* be fired whenever a filter value has changed. This event will be used to display an overlay on the IFilter
|
|
2056
|
+
* consuming control.
|
|
2057
|
+
*/
|
|
2058
|
+
export interface IFilter extends IFilterSource {
|
|
2059
|
+
__implements__sap_ui_mdc_IFilter: boolean;
|
|
2060
|
+
|
|
2061
|
+
/**
|
|
2062
|
+
* @since 1.80
|
|
2063
|
+
*
|
|
2064
|
+
* **Note:** The `getSearch` method can optionally be implemented and should return a string for approximate
|
|
2065
|
+
* string matching implemented in the backend.
|
|
2066
|
+
*
|
|
2067
|
+
* @returns The search string to be used for an approximate string matching
|
|
2068
|
+
*/
|
|
2069
|
+
getSearch(): string;
|
|
2070
|
+
/**
|
|
2071
|
+
* @since 1.80
|
|
2072
|
+
*
|
|
2073
|
+
* The `validate` method should return a promise which resolves after the IFilter interface has handled
|
|
2074
|
+
* its inner validation. The `getConditions` method will be called subsequently by the filtered control.
|
|
2075
|
+
*
|
|
2076
|
+
* @returns A promise resolving once the necessary result validation has been handled
|
|
2077
|
+
*/
|
|
2078
|
+
validate(
|
|
2079
|
+
/**
|
|
2080
|
+
* Determines whether the search should be suppressed. The default is null.
|
|
2081
|
+
*/
|
|
2082
|
+
bSuppressSearch: boolean
|
|
2083
|
+
): Promise<any>;
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
/**
|
|
2087
|
+
* @since 1.80
|
|
2088
|
+
*
|
|
2089
|
+
* Interface for controls or entities which are able to return a set of present conditions. The controls
|
|
2090
|
+
* or entities have to implement the following APIs: `getConditions`.
|
|
2091
|
+
*/
|
|
2092
|
+
export interface IFilterSource {
|
|
2093
|
+
__implements__sap_ui_mdc_IFilterSource: boolean;
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
/**
|
|
2097
|
+
* @since 1.75
|
|
2098
|
+
*
|
|
2099
|
+
* Interface for controls or entities which support the appliance of an externalized state representation.
|
|
2100
|
+
* The controls or entities have to implement the following APIs: `getCurrentState` & `initialized` methods.
|
|
2101
|
+
*/
|
|
2102
|
+
export interface IxState {
|
|
2103
|
+
__implements__sap_ui_mdc_IxState: boolean;
|
|
2104
|
+
}
|
|
2105
|
+
|
|
1812
2106
|
/**
|
|
1813
2107
|
* The `State` object describes the interface to apply and retrieve the current adaptation state from mdc
|
|
1814
2108
|
* controls. The {@link sap.mdc.p13n.StateUtil StateUtil} class can be used to programatically apply changes
|
|
@@ -1859,9 +2153,9 @@ declare module "sap/ui/mdc/library" {
|
|
|
1859
2153
|
*/
|
|
1860
2154
|
tooltip?: string;
|
|
1861
2155
|
/**
|
|
1862
|
-
* The
|
|
2156
|
+
* The data type of the property
|
|
1863
2157
|
*/
|
|
1864
|
-
|
|
2158
|
+
dataType: string;
|
|
1865
2159
|
/**
|
|
1866
2160
|
* Defines constraints for the data type of the property
|
|
1867
2161
|
*/
|
|
@@ -2570,6 +2864,8 @@ declare module "sap/ui/mdc/actiontoolbar/ActionToolbarAction" {
|
|
|
2570
2864
|
declare module "sap/ui/mdc/Chart" {
|
|
2571
2865
|
import { default as Control, $ControlSettings } from "sap/ui/mdc/Control";
|
|
2572
2866
|
|
|
2867
|
+
import { IFilterSource, IxState, IFilter } from "sap/ui/mdc/library";
|
|
2868
|
+
|
|
2573
2869
|
import Control1 from "sap/ui/core/Control";
|
|
2574
2870
|
|
|
2575
2871
|
import Item from "sap/ui/mdc/chart/Item";
|
|
@@ -2591,14 +2887,14 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
2591
2887
|
AggregationBindingInfo,
|
|
2592
2888
|
} from "sap/ui/base/ManagedObject";
|
|
2593
2889
|
|
|
2594
|
-
import Event from "sap/ui/base/Event";
|
|
2595
|
-
|
|
2596
2890
|
import Item1 from "sap/ui/core/Item";
|
|
2597
2891
|
|
|
2598
2892
|
import Context from "sap/ui/model/Context";
|
|
2599
2893
|
|
|
2600
2894
|
import { SelectionDetailsActionLevel } from "sap/m/library";
|
|
2601
2895
|
|
|
2896
|
+
import Event from "sap/ui/base/Event";
|
|
2897
|
+
|
|
2602
2898
|
/**
|
|
2603
2899
|
* @since 1.88
|
|
2604
2900
|
* @experimental (since 1.88)
|
|
@@ -2606,7 +2902,9 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
2606
2902
|
* The `Chart` control creates a chart based on metadata and the configuration specified.
|
|
2607
2903
|
* **Note:** The inner chart needs to be assigned `ChartDelegate`.
|
|
2608
2904
|
*/
|
|
2609
|
-
export default class Chart extends Control {
|
|
2905
|
+
export default class Chart extends Control implements IFilterSource, IxState {
|
|
2906
|
+
__implements__sap_ui_mdc_IFilterSource: boolean;
|
|
2907
|
+
__implements__sap_ui_mdc_IxState: boolean;
|
|
2610
2908
|
/**
|
|
2611
2909
|
* Constructor for a new Chart.
|
|
2612
2910
|
*
|
|
@@ -3230,7 +3528,7 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
3230
3528
|
* ID of an element which becomes the new target of this filter association; alternatively, an element instance
|
|
3231
3529
|
* may be given
|
|
3232
3530
|
*/
|
|
3233
|
-
oFilter: ID |
|
|
3531
|
+
oFilter: ID | IFilter
|
|
3234
3532
|
): this;
|
|
3235
3533
|
/**
|
|
3236
3534
|
* @since 1.99
|
|
@@ -3581,7 +3879,7 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
3581
3879
|
*/
|
|
3582
3880
|
tooltip?: string;
|
|
3583
3881
|
/**
|
|
3584
|
-
* The name of the type of the property
|
|
3882
|
+
* The name of the data type of the property
|
|
3585
3883
|
*/
|
|
3586
3884
|
datatype: string;
|
|
3587
3885
|
/**
|
|
@@ -3812,13 +4110,13 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
3812
4110
|
* Control or object that enables the chart to do filtering, such as {@link sap.ui.mdc.FilterBar}. Also
|
|
3813
4111
|
* see {@link sap.ui.mdc.IFilter}.
|
|
3814
4112
|
*/
|
|
3815
|
-
filter?:
|
|
4113
|
+
filter?: IFilter | string;
|
|
3816
4114
|
|
|
3817
4115
|
/**
|
|
3818
4116
|
* This event is fired when a `SelectionDetailsAction` is pressed.
|
|
3819
4117
|
*/
|
|
3820
4118
|
selectionDetailsActionPressed?: (
|
|
3821
|
-
oEvent:
|
|
4119
|
+
oEvent: Chart$SelectionDetailsActionPressedEvent
|
|
3822
4120
|
) => void;
|
|
3823
4121
|
}
|
|
3824
4122
|
|
|
@@ -3844,13 +4142,10 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
3844
4142
|
| keyof typeof SelectionDetailsActionLevel;
|
|
3845
4143
|
}
|
|
3846
4144
|
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
export type $ChartSelectionDetailsActionPressedEventParameters = Chart$SelectionDetailsActionPressedEventParameters;
|
|
3852
|
-
|
|
3853
|
-
export type Chart$SelectionDetailsActionPressedEvent = Event<Chart$SelectionDetailsActionPressedEventParameters>;
|
|
4145
|
+
export type Chart$SelectionDetailsActionPressedEvent = Event<
|
|
4146
|
+
Chart$SelectionDetailsActionPressedEventParameters,
|
|
4147
|
+
Chart
|
|
4148
|
+
>;
|
|
3854
4149
|
}
|
|
3855
4150
|
|
|
3856
4151
|
declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
|
|
@@ -3957,7 +4252,7 @@ declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
|
|
|
3957
4252
|
*
|
|
3958
4253
|
* Control that is shown when there is no data available inside the chart.
|
|
3959
4254
|
* This can be used if the standard behavior of the used chart control needs to be overriden.
|
|
3960
|
-
* To show this `noDataContent`, set {@link
|
|
4255
|
+
* To show this `noDataContent`, set {@link sap.ui.mdc.chart.ChartImplementationContainer#setShowNoDataStruct showNoDataStruct}.
|
|
3961
4256
|
*/
|
|
3962
4257
|
getNoDataContent(): Control;
|
|
3963
4258
|
/**
|
|
@@ -3987,7 +4282,7 @@ declare module "sap/ui/mdc/chart/ChartImplementationContainer" {
|
|
|
3987
4282
|
/**
|
|
3988
4283
|
* Control that is shown when there is no data available inside the chart.
|
|
3989
4284
|
* This can be used if the standard behavior of the used chart control needs to be overriden.
|
|
3990
|
-
* To show this `noDataContent`, set {@link
|
|
4285
|
+
* To show this `noDataContent`, set {@link sap.ui.mdc.chart.ChartImplementationContainer#setShowNoDataStruct showNoDataStruct}.
|
|
3991
4286
|
*/
|
|
3992
4287
|
noDataContent?: Control;
|
|
3993
4288
|
|
|
@@ -4653,8 +4948,8 @@ declare module "sap/ui/mdc/condition/Condition" {
|
|
|
4653
4948
|
/**
|
|
4654
4949
|
* @since 1.61.0
|
|
4655
4950
|
*
|
|
4656
|
-
* Utilities to create conditions to be used in {@link sap.ui.mdc.FilterField FilterField}, {@link sap.ui.mdc.FilterBar FilterBar
|
|
4657
|
-
* or {@link sap.ui.mdc.condition.ConditionModel ConditionModel}
|
|
4951
|
+
* Utilities to create conditions to be used in {@link sap.ui.mdc.FilterField FilterField}, {@link sap.ui.mdc.FilterBar FilterBar},
|
|
4952
|
+
* or {@link sap.ui.mdc.condition.ConditionModel ConditionModel}.
|
|
4658
4953
|
*/
|
|
4659
4954
|
interface Condition {
|
|
4660
4955
|
/**
|
|
@@ -4681,7 +4976,7 @@ declare module "sap/ui/mdc/condition/Condition" {
|
|
|
4681
4976
|
oOutParameters: object,
|
|
4682
4977
|
/**
|
|
4683
4978
|
* If set to `ConditionValidated.Validated`, the condition is validated (by the field help) and not shown
|
|
4684
|
-
* in the
|
|
4979
|
+
* in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
|
|
4685
4980
|
*/
|
|
4686
4981
|
sValidated: ConditionValidated | keyof typeof ConditionValidated,
|
|
4687
4982
|
/**
|
|
@@ -4709,7 +5004,7 @@ declare module "sap/ui/mdc/condition/Condition" {
|
|
|
4709
5004
|
oInParameters: object,
|
|
4710
5005
|
/**
|
|
4711
5006
|
* If set to `ConditionValidated.Validated`, the condition is validated (by the field help) and not shown
|
|
4712
|
-
* in the
|
|
5007
|
+
* in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
|
|
4713
5008
|
*/
|
|
4714
5009
|
sValidated: ConditionValidated | keyof typeof ConditionValidated,
|
|
4715
5010
|
/**
|
|
@@ -4737,7 +5032,7 @@ declare module "sap/ui/mdc/condition/Condition" {
|
|
|
4737
5032
|
oOutParameters: object,
|
|
4738
5033
|
/**
|
|
4739
5034
|
* If set to `ConditionValidated.Validated`, the condition is validated (by the field help) and not shown
|
|
4740
|
-
* in the
|
|
5035
|
+
* in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
|
|
4741
5036
|
*/
|
|
4742
5037
|
sValidated: ConditionValidated | keyof typeof ConditionValidated,
|
|
4743
5038
|
/**
|
|
@@ -4761,7 +5056,7 @@ declare module "sap/ui/mdc/condition/Condition" {
|
|
|
4761
5056
|
aValues: any[],
|
|
4762
5057
|
/**
|
|
4763
5058
|
* If set to `ConditionValidated.Validated`, the condition is validated (by the field help) and not shown
|
|
4764
|
-
* in the
|
|
5059
|
+
* in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
|
|
4765
5060
|
*/
|
|
4766
5061
|
sValidated: ConditionValidated | keyof typeof ConditionValidated,
|
|
4767
5062
|
/**
|
|
@@ -4827,12 +5122,12 @@ declare module "sap/ui/mdc/condition/Condition" {
|
|
|
4827
5122
|
*/
|
|
4828
5123
|
outParameters?: object;
|
|
4829
5124
|
/**
|
|
4830
|
-
* If set, the condition is empty (used as
|
|
5125
|
+
* If set, the condition is empty (used as initially empty condition in {@link sap.ui.mdc.valuehelp.content.Conditions Conditions})
|
|
4831
5126
|
*/
|
|
4832
5127
|
isEmpty?: boolean;
|
|
4833
5128
|
/**
|
|
4834
5129
|
* If set to `ConditionValidated.Validated`, the condition is validated (by the value help) and not shown
|
|
4835
|
-
* in the {@link sap.ui.mdc.valuehelp.
|
|
5130
|
+
* in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions} content
|
|
4836
5131
|
*/
|
|
4837
5132
|
validated: ConditionValidated | keyof typeof ConditionValidated;
|
|
4838
5133
|
/**
|
|
@@ -5112,7 +5407,7 @@ declare module "sap/ui/mdc/condition/Operator" {
|
|
|
5112
5407
|
*/
|
|
5113
5408
|
isEmpty?: Function;
|
|
5114
5409
|
/**
|
|
5115
|
-
* Function to create a control to be used in {@link sap.ui.mdc.valuehelp.
|
|
5410
|
+
* Function to create a control to be used in {@link sap.ui.mdc.valuehelp.content.Conditions Conditions}
|
|
5116
5411
|
*/
|
|
5117
5412
|
createControl?: Function;
|
|
5118
5413
|
/**
|
|
@@ -5285,8 +5580,12 @@ declare module "sap/ui/mdc/Control" {
|
|
|
5285
5580
|
$ControlSettings as $ControlSettings1,
|
|
5286
5581
|
} from "sap/ui/core/Control";
|
|
5287
5582
|
|
|
5583
|
+
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
5584
|
+
|
|
5288
5585
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
5289
5586
|
|
|
5587
|
+
import TypeMap from "sap/ui/mdc/util/TypeMap";
|
|
5588
|
+
|
|
5290
5589
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
5291
5590
|
|
|
5292
5591
|
/**
|
|
@@ -5336,7 +5635,7 @@ declare module "sap/ui/mdc/Control" {
|
|
|
5336
5635
|
*
|
|
5337
5636
|
* @returns Returns a `Promise` reflecting the delegate initialization
|
|
5338
5637
|
*/
|
|
5339
|
-
static awaitControlDelegate(): Promise
|
|
5638
|
+
static awaitControlDelegate(): Promise<BaseDelegate>;
|
|
5340
5639
|
/**
|
|
5341
5640
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5342
5641
|
*
|
|
@@ -5390,7 +5689,7 @@ declare module "sap/ui/mdc/Control" {
|
|
|
5390
5689
|
*
|
|
5391
5690
|
* @returns `typeUtil` made available by a delegate module
|
|
5392
5691
|
*/
|
|
5393
|
-
static getControlDelegate():
|
|
5692
|
+
static getControlDelegate(): BaseDelegate;
|
|
5394
5693
|
/**
|
|
5395
5694
|
* Returns a metadata object for class sap.ui.mdc.Control.
|
|
5396
5695
|
*
|
|
@@ -5416,18 +5715,16 @@ declare module "sap/ui/mdc/Control" {
|
|
|
5416
5715
|
*
|
|
5417
5716
|
* @returns `TypeMap` object
|
|
5418
5717
|
*/
|
|
5419
|
-
static getTypeMap():
|
|
5718
|
+
static getTypeMap(): TypeMap;
|
|
5420
5719
|
/**
|
|
5421
|
-
* @deprecated
|
|
5720
|
+
* @deprecated (since 1.115.0) - please see {@link #getTypeMap}
|
|
5422
5721
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5423
5722
|
*
|
|
5424
5723
|
* Returns the `typeUtil` made available by a delegate module.
|
|
5425
5724
|
*
|
|
5426
5725
|
* @returns `TypeUtil` object
|
|
5427
5726
|
*/
|
|
5428
|
-
static getTypeUtil(): /* was: sap.ui.mdc.util.TypeUtil */
|
|
5429
|
-
| any
|
|
5430
|
-
| /* was: sap.ui.mdc.util.TypeMap */ any;
|
|
5727
|
+
static getTypeUtil(): /* was: sap.ui.mdc.util.TypeUtil */ any | TypeMap;
|
|
5431
5728
|
/**
|
|
5432
5729
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5433
5730
|
*
|
|
@@ -5439,8 +5736,8 @@ declare module "sap/ui/mdc/Control" {
|
|
|
5439
5736
|
/**
|
|
5440
5737
|
* Preloaded delegate module
|
|
5441
5738
|
*/
|
|
5442
|
-
oPreloadedModule?:
|
|
5443
|
-
): Promise
|
|
5739
|
+
oPreloadedModule?: BaseDelegate
|
|
5740
|
+
): Promise<BaseDelegate>;
|
|
5444
5741
|
/**
|
|
5445
5742
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5446
5743
|
*
|
|
@@ -5524,8 +5821,12 @@ declare module "sap/ui/mdc/Element" {
|
|
|
5524
5821
|
$ElementSettings as $ElementSettings1,
|
|
5525
5822
|
} from "sap/ui/core/Element";
|
|
5526
5823
|
|
|
5824
|
+
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
5825
|
+
|
|
5527
5826
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
5528
5827
|
|
|
5828
|
+
import TypeMap from "sap/ui/mdc/util/TypeMap";
|
|
5829
|
+
|
|
5529
5830
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
5530
5831
|
|
|
5531
5832
|
/**
|
|
@@ -5575,7 +5876,7 @@ declare module "sap/ui/mdc/Element" {
|
|
|
5575
5876
|
*
|
|
5576
5877
|
* @returns Returns a `Promise` reflecting the delegate initialization
|
|
5577
5878
|
*/
|
|
5578
|
-
static awaitControlDelegate(): Promise
|
|
5879
|
+
static awaitControlDelegate(): Promise<BaseDelegate>;
|
|
5579
5880
|
/**
|
|
5580
5881
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5581
5882
|
*
|
|
@@ -5629,7 +5930,7 @@ declare module "sap/ui/mdc/Element" {
|
|
|
5629
5930
|
*
|
|
5630
5931
|
* @returns `typeUtil` made available by a delegate module
|
|
5631
5932
|
*/
|
|
5632
|
-
static getControlDelegate():
|
|
5933
|
+
static getControlDelegate(): BaseDelegate;
|
|
5633
5934
|
/**
|
|
5634
5935
|
* Returns a metadata object for class sap.ui.mdc.Element.
|
|
5635
5936
|
*
|
|
@@ -5655,18 +5956,16 @@ declare module "sap/ui/mdc/Element" {
|
|
|
5655
5956
|
*
|
|
5656
5957
|
* @returns `TypeMap` object
|
|
5657
5958
|
*/
|
|
5658
|
-
static getTypeMap():
|
|
5959
|
+
static getTypeMap(): TypeMap;
|
|
5659
5960
|
/**
|
|
5660
|
-
* @deprecated
|
|
5961
|
+
* @deprecated (since 1.115.0) - please see {@link #getTypeMap}
|
|
5661
5962
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5662
5963
|
*
|
|
5663
5964
|
* Returns the `typeUtil` made available by a delegate module.
|
|
5664
5965
|
*
|
|
5665
5966
|
* @returns `TypeUtil` object
|
|
5666
5967
|
*/
|
|
5667
|
-
static getTypeUtil(): /* was: sap.ui.mdc.util.TypeUtil */
|
|
5668
|
-
| any
|
|
5669
|
-
| /* was: sap.ui.mdc.util.TypeMap */ any;
|
|
5968
|
+
static getTypeUtil(): /* was: sap.ui.mdc.util.TypeUtil */ any | TypeMap;
|
|
5670
5969
|
/**
|
|
5671
5970
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5672
5971
|
*
|
|
@@ -5678,8 +5977,8 @@ declare module "sap/ui/mdc/Element" {
|
|
|
5678
5977
|
/**
|
|
5679
5978
|
* Preloaded delegate module
|
|
5680
5979
|
*/
|
|
5681
|
-
oPreloadedModule?:
|
|
5682
|
-
): Promise
|
|
5980
|
+
oPreloadedModule?: BaseDelegate
|
|
5981
|
+
): Promise<BaseDelegate>;
|
|
5683
5982
|
/**
|
|
5684
5983
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5685
5984
|
*
|
|
@@ -5763,7 +6062,16 @@ declare module "sap/ui/mdc/enums/ActionToolbarActionAlignment" {
|
|
|
5763
6062
|
*
|
|
5764
6063
|
* Defines the alignment of the `ActionToolbarAction` action control.
|
|
5765
6064
|
*/
|
|
5766
|
-
enum ActionToolbarActionAlignment {
|
|
6065
|
+
enum ActionToolbarActionAlignment {
|
|
6066
|
+
/**
|
|
6067
|
+
* Align to the beginning
|
|
6068
|
+
*/
|
|
6069
|
+
Begin = "Begin",
|
|
6070
|
+
/**
|
|
6071
|
+
* Align to the end
|
|
6072
|
+
*/
|
|
6073
|
+
End = "End",
|
|
6074
|
+
}
|
|
5767
6075
|
export default ActionToolbarActionAlignment;
|
|
5768
6076
|
}
|
|
5769
6077
|
|
|
@@ -6081,16 +6389,6 @@ declare module "sap/ui/mdc/enums/OperatorValueType" {
|
|
|
6081
6389
|
export default OperatorValueType;
|
|
6082
6390
|
}
|
|
6083
6391
|
|
|
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
6392
|
declare module "sap/ui/mdc/enums/TableGrowingMode" {
|
|
6095
6393
|
/**
|
|
6096
6394
|
* @since 1.115
|
|
@@ -6232,7 +6530,20 @@ declare module "sap/ui/mdc/enums/ValueHelpPropagationReason" {
|
|
|
6232
6530
|
*
|
|
6233
6531
|
* Enumeration of the propagation reason in the condition propagation callback of the {@link sap.ui.mdc.ValueHelp ValueHelp}
|
|
6234
6532
|
*/
|
|
6235
|
-
enum ValueHelpPropagationReason {
|
|
6533
|
+
enum ValueHelpPropagationReason {
|
|
6534
|
+
/**
|
|
6535
|
+
* Triggered by connected control after processing valuehelp output
|
|
6536
|
+
*/
|
|
6537
|
+
ControlChange = "ControlChange",
|
|
6538
|
+
/**
|
|
6539
|
+
* Triggered by `ValueHelp` itself on `getItemForValue`
|
|
6540
|
+
*/
|
|
6541
|
+
Info = "Info",
|
|
6542
|
+
/**
|
|
6543
|
+
* Triggered by `ValueHelp` itself on selection
|
|
6544
|
+
*/
|
|
6545
|
+
Select = "Select",
|
|
6546
|
+
}
|
|
6236
6547
|
export default ValueHelpPropagationReason;
|
|
6237
6548
|
}
|
|
6238
6549
|
|
|
@@ -6536,7 +6847,7 @@ declare module "sap/ui/mdc/Field" {
|
|
|
6536
6847
|
*
|
|
6537
6848
|
* **Note** This event is only triggered if the used content control has a change event.
|
|
6538
6849
|
*/
|
|
6539
|
-
change?: (oEvent:
|
|
6850
|
+
change?: (oEvent: Field$ChangeEvent) => void;
|
|
6540
6851
|
}
|
|
6541
6852
|
|
|
6542
6853
|
export interface Field$ChangeEventParameters {
|
|
@@ -6563,13 +6874,7 @@ declare module "sap/ui/mdc/Field" {
|
|
|
6563
6874
|
promise?: Promise<any>;
|
|
6564
6875
|
}
|
|
6565
6876
|
|
|
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
|
-
export type Field$ChangeEvent = Event<Field$ChangeEventParameters>;
|
|
6877
|
+
export type Field$ChangeEvent = Event<Field$ChangeEventParameters, Field>;
|
|
6573
6878
|
}
|
|
6574
6879
|
|
|
6575
6880
|
declare module "sap/ui/mdc/field/ConditionsType" {
|
|
@@ -7153,6 +7458,8 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
7153
7458
|
|
|
7154
7459
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
7155
7460
|
|
|
7461
|
+
import { ConditionObject } from "sap/ui/mdc/condition/Condition";
|
|
7462
|
+
|
|
7156
7463
|
import BaseType from "sap/ui/mdc/enums/BaseType";
|
|
7157
7464
|
|
|
7158
7465
|
import FieldDisplay from "sap/ui/mdc/enums/FieldDisplay";
|
|
@@ -7170,7 +7477,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
7170
7477
|
/**
|
|
7171
7478
|
* @since 1.58.0
|
|
7172
7479
|
*
|
|
7173
|
-
* The `FieldBase` control is the base class for the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField
|
|
7480
|
+
* The `FieldBase` control is the base class for the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
|
|
7174
7481
|
* and {@link sap.ui.mdc.FilterField FilterField} controls. It must not be used stand-alone.
|
|
7175
7482
|
*/
|
|
7176
7483
|
export default class FieldBase
|
|
@@ -7544,7 +7851,25 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
7544
7851
|
*
|
|
7545
7852
|
* Here inheriting controls need to fire the control-specific change event.
|
|
7546
7853
|
*/
|
|
7547
|
-
fireChangeEvent(
|
|
7854
|
+
fireChangeEvent(
|
|
7855
|
+
/**
|
|
7856
|
+
* Current conditions after change
|
|
7857
|
+
*/
|
|
7858
|
+
aConditions: ConditionObject[],
|
|
7859
|
+
/**
|
|
7860
|
+
* If `false`, the user input is not valid and leads to an error
|
|
7861
|
+
*/
|
|
7862
|
+
bValid: boolean,
|
|
7863
|
+
/**
|
|
7864
|
+
* wrong user input (only set if known)
|
|
7865
|
+
*/
|
|
7866
|
+
vWrongValue: any,
|
|
7867
|
+
/**
|
|
7868
|
+
* `Promise` that is resolved if the changed value is determined, as user might enter some description,
|
|
7869
|
+
* and the key neeeds to be determined via back-end request.
|
|
7870
|
+
*/
|
|
7871
|
+
oPromise: Promise<any>
|
|
7872
|
+
): void;
|
|
7548
7873
|
/**
|
|
7549
7874
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7550
7875
|
*
|
|
@@ -7706,7 +8031,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
7706
8031
|
*
|
|
7707
8032
|
* @returns Array of content controls
|
|
7708
8033
|
*/
|
|
7709
|
-
getCurrentContent():
|
|
8034
|
+
getCurrentContent(): Control1[];
|
|
7710
8035
|
/**
|
|
7711
8036
|
* Gets current value of property {@link #getDataType dataType}.
|
|
7712
8037
|
*
|
|
@@ -7993,6 +8318,23 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
7993
8318
|
*/
|
|
7994
8319
|
oEvent: object
|
|
7995
8320
|
): void;
|
|
8321
|
+
/**
|
|
8322
|
+
* @since 1.117.0
|
|
8323
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8324
|
+
*
|
|
8325
|
+
* Returns the user interaction state of the control.
|
|
8326
|
+
*
|
|
8327
|
+
* If the user starts typing or navigates via arrow keys in a value help, the shown value might be updated.
|
|
8328
|
+
* But as long as the user has not left the field or pressed the Enter key, the current user input will
|
|
8329
|
+
* not be validated or updated or an event fired.
|
|
8330
|
+
*
|
|
8331
|
+
* As long as the user is interacting with the field, this function returns `true`. If the user interaction
|
|
8332
|
+
* has been completed because the user has left the field, pressed the Enter key, or chosen a value from
|
|
8333
|
+
* the value help, the function returns `false`.
|
|
8334
|
+
*
|
|
8335
|
+
* @returns `true` if there is a pending user input
|
|
8336
|
+
*/
|
|
8337
|
+
hasPendingUserInput(): boolean;
|
|
7996
8338
|
/**
|
|
7997
8339
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7998
8340
|
*
|
|
@@ -8083,7 +8425,12 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
8083
8425
|
*
|
|
8084
8426
|
* Might be called if Binding changes or field is initialized.
|
|
8085
8427
|
*/
|
|
8086
|
-
resetInvalidInput(
|
|
8428
|
+
resetInvalidInput(
|
|
8429
|
+
/**
|
|
8430
|
+
* If set to `true` the `ValueState` and `ValueStateText` is removed
|
|
8431
|
+
*/
|
|
8432
|
+
bRemoveUIMessage: boolean
|
|
8433
|
+
): void;
|
|
8087
8434
|
/**
|
|
8088
8435
|
* Sets a new value for property {@link #getConditions conditions}.
|
|
8089
8436
|
*
|
|
@@ -8814,7 +9161,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
8814
9161
|
*
|
|
8815
9162
|
* **Note** This event is only triggered if the used content control has a `liveChange` event.
|
|
8816
9163
|
*/
|
|
8817
|
-
liveChange?: (oEvent:
|
|
9164
|
+
liveChange?: (oEvent: FieldBase$LiveChangeEvent) => void;
|
|
8818
9165
|
|
|
8819
9166
|
/**
|
|
8820
9167
|
* This event is fired if the inner control has a press event and this is fired.
|
|
@@ -8829,7 +9176,7 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
8829
9176
|
*
|
|
8830
9177
|
* **Note** This event is only triggered if the field is editable.
|
|
8831
9178
|
*/
|
|
8832
|
-
submit?: (oEvent:
|
|
9179
|
+
submit?: (oEvent: FieldBase$SubmitEvent) => void;
|
|
8833
9180
|
}
|
|
8834
9181
|
|
|
8835
9182
|
export interface FieldBase$LiveChangeEventParameters {
|
|
@@ -8849,23 +9196,17 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
8849
9196
|
previousValue?: string;
|
|
8850
9197
|
}
|
|
8851
9198
|
|
|
8852
|
-
|
|
8853
|
-
|
|
8854
|
-
|
|
8855
|
-
|
|
8856
|
-
export type $FieldBaseLiveChangeEventParameters = FieldBase$LiveChangeEventParameters;
|
|
8857
|
-
|
|
8858
|
-
export type FieldBase$LiveChangeEvent = Event<FieldBase$LiveChangeEventParameters>;
|
|
9199
|
+
export type FieldBase$LiveChangeEvent = Event<
|
|
9200
|
+
FieldBase$LiveChangeEventParameters,
|
|
9201
|
+
FieldBase
|
|
9202
|
+
>;
|
|
8859
9203
|
|
|
8860
9204
|
export interface FieldBase$PressEventParameters {}
|
|
8861
9205
|
|
|
8862
|
-
|
|
8863
|
-
|
|
8864
|
-
|
|
8865
|
-
|
|
8866
|
-
export type $FieldBasePressEventParameters = FieldBase$PressEventParameters;
|
|
8867
|
-
|
|
8868
|
-
export type FieldBase$PressEvent = Event<FieldBase$PressEventParameters>;
|
|
9206
|
+
export type FieldBase$PressEvent = Event<
|
|
9207
|
+
FieldBase$PressEventParameters,
|
|
9208
|
+
FieldBase
|
|
9209
|
+
>;
|
|
8869
9210
|
|
|
8870
9211
|
export interface FieldBase$SubmitEventParameters {
|
|
8871
9212
|
/**
|
|
@@ -8876,13 +9217,10 @@ declare module "sap/ui/mdc/field/FieldBase" {
|
|
|
8876
9217
|
promise?: Promise<any>;
|
|
8877
9218
|
}
|
|
8878
9219
|
|
|
8879
|
-
|
|
8880
|
-
|
|
8881
|
-
|
|
8882
|
-
|
|
8883
|
-
export type $FieldBaseSubmitEventParameters = FieldBase$SubmitEventParameters;
|
|
8884
|
-
|
|
8885
|
-
export type FieldBase$SubmitEvent = Event<FieldBase$SubmitEventParameters>;
|
|
9220
|
+
export type FieldBase$SubmitEvent = Event<
|
|
9221
|
+
FieldBase$SubmitEventParameters,
|
|
9222
|
+
FieldBase
|
|
9223
|
+
>;
|
|
8886
9224
|
}
|
|
8887
9225
|
|
|
8888
9226
|
declare module "sap/ui/mdc/field/FieldInfoBase" {
|
|
@@ -8890,12 +9228,12 @@ declare module "sap/ui/mdc/field/FieldInfoBase" {
|
|
|
8890
9228
|
|
|
8891
9229
|
import Event from "sap/ui/base/Event";
|
|
8892
9230
|
|
|
9231
|
+
import Control from "sap/ui/core/Control";
|
|
9232
|
+
|
|
8893
9233
|
import { DirectLinkObject } from "sap/ui/mdc/Link";
|
|
8894
9234
|
|
|
8895
9235
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
8896
9236
|
|
|
8897
|
-
import Control from "sap/ui/core/Control";
|
|
8898
|
-
|
|
8899
9237
|
/**
|
|
8900
9238
|
* @since 1.54.0
|
|
8901
9239
|
*
|
|
@@ -9138,7 +9476,7 @@ declare module "sap/ui/mdc/field/FieldInfoBase" {
|
|
|
9138
9476
|
* Function returning the `Popover` control that is created in `createPopover`
|
|
9139
9477
|
*/
|
|
9140
9478
|
fnGetAutoClosedControl?: Function
|
|
9141
|
-
): Promise
|
|
9479
|
+
): Promise<Control>;
|
|
9142
9480
|
/**
|
|
9143
9481
|
* Returns a `Promise` resolving into an {@link sap.ui.mdc.link.DirectLinkObject} containing the `href`
|
|
9144
9482
|
* and `target` of a direct navigation link. Returns a `Promise` resolving into null if there is no direct
|
|
@@ -9196,23 +9534,17 @@ declare module "sap/ui/mdc/field/FieldInfoBase" {
|
|
|
9196
9534
|
|
|
9197
9535
|
export interface FieldInfoBase$DataUpdateEventParameters {}
|
|
9198
9536
|
|
|
9199
|
-
|
|
9200
|
-
|
|
9201
|
-
|
|
9202
|
-
|
|
9203
|
-
export type $FieldInfoBaseDataUpdateEventParameters = FieldInfoBase$DataUpdateEventParameters;
|
|
9204
|
-
|
|
9205
|
-
export type FieldInfoBase$DataUpdateEvent = Event<FieldInfoBase$DataUpdateEventParameters>;
|
|
9537
|
+
export type FieldInfoBase$DataUpdateEvent = Event<
|
|
9538
|
+
FieldInfoBase$DataUpdateEventParameters,
|
|
9539
|
+
FieldInfoBase
|
|
9540
|
+
>;
|
|
9206
9541
|
|
|
9207
9542
|
export interface FieldInfoBase$PopoverAfterOpenEventParameters {}
|
|
9208
9543
|
|
|
9209
|
-
|
|
9210
|
-
|
|
9211
|
-
|
|
9212
|
-
|
|
9213
|
-
export type $FieldInfoBasePopoverAfterOpenEventParameters = FieldInfoBase$PopoverAfterOpenEventParameters;
|
|
9214
|
-
|
|
9215
|
-
export type FieldInfoBase$PopoverAfterOpenEvent = Event<FieldInfoBase$PopoverAfterOpenEventParameters>;
|
|
9544
|
+
export type FieldInfoBase$PopoverAfterOpenEvent = Event<
|
|
9545
|
+
FieldInfoBase$PopoverAfterOpenEventParameters,
|
|
9546
|
+
FieldInfoBase
|
|
9547
|
+
>;
|
|
9216
9548
|
}
|
|
9217
9549
|
|
|
9218
9550
|
declare module "sap/ui/mdc/field/MultiValueFieldDelegate" {
|
|
@@ -9483,7 +9815,7 @@ declare module "sap/ui/mdc/FilterBar" {
|
|
|
9483
9815
|
static getMetadata(): ElementMetadata;
|
|
9484
9816
|
/**
|
|
9485
9817
|
* 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.
|
|
9818
|
+
* related to the {@link sap.ui.mdc.FilterBar#setP13nMode p13nMode} property configuration.
|
|
9487
9819
|
*
|
|
9488
9820
|
* @returns Object containing the current status of the `FilterBar`
|
|
9489
9821
|
*/
|
|
@@ -9612,14 +9944,12 @@ declare module "sap/ui/mdc/FilterBar" {
|
|
|
9612
9944
|
declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
9613
9945
|
import { default as Control, $ControlSettings } from "sap/ui/mdc/Control";
|
|
9614
9946
|
|
|
9615
|
-
import
|
|
9947
|
+
import { IFilterSource, IFilter, IxState, State } from "sap/ui/mdc/library";
|
|
9616
9948
|
|
|
9617
|
-
import
|
|
9949
|
+
import FilterField from "sap/ui/mdc/FilterField";
|
|
9618
9950
|
|
|
9619
9951
|
import FilterBarValidationStatus from "sap/ui/mdc/enums/FilterBarValidationStatus";
|
|
9620
9952
|
|
|
9621
|
-
import { State } from "sap/ui/mdc/library";
|
|
9622
|
-
|
|
9623
9953
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
9624
9954
|
|
|
9625
9955
|
import { ID } from "sap/ui/core/library";
|
|
@@ -9631,12 +9961,19 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
9631
9961
|
AggregationBindingInfo,
|
|
9632
9962
|
} from "sap/ui/base/ManagedObject";
|
|
9633
9963
|
|
|
9964
|
+
import Event from "sap/ui/base/Event";
|
|
9965
|
+
|
|
9634
9966
|
/**
|
|
9635
9967
|
* @since 1.80.0
|
|
9636
9968
|
*
|
|
9637
9969
|
* The `FilterBarBase` control is the base for filter displaying controls in MDC.
|
|
9638
9970
|
*/
|
|
9639
|
-
export default class FilterBarBase
|
|
9971
|
+
export default class FilterBarBase
|
|
9972
|
+
extends Control
|
|
9973
|
+
implements IFilterSource, IFilter, IxState {
|
|
9974
|
+
__implements__sap_ui_mdc_IFilterSource: boolean;
|
|
9975
|
+
__implements__sap_ui_mdc_IFilter: boolean;
|
|
9976
|
+
__implements__sap_ui_mdc_IxState: boolean;
|
|
9640
9977
|
/**
|
|
9641
9978
|
* Constructor for a new FilterBarBase.
|
|
9642
9979
|
*
|
|
@@ -9778,7 +10115,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
9778
10115
|
/**
|
|
9779
10116
|
* The function to be called when the event occurs
|
|
9780
10117
|
*/
|
|
9781
|
-
fnFunction: (p1:
|
|
10118
|
+
fnFunction: (p1: FilterBarBase$SearchEvent) => void,
|
|
9782
10119
|
/**
|
|
9783
10120
|
* Context object to call the event handler with. Defaults to this `sap.ui.mdc.filterbar.FilterBarBase`
|
|
9784
10121
|
* itself
|
|
@@ -9801,7 +10138,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
9801
10138
|
/**
|
|
9802
10139
|
* The function to be called when the event occurs
|
|
9803
10140
|
*/
|
|
9804
|
-
fnFunction: (p1:
|
|
10141
|
+
fnFunction: (p1: FilterBarBase$SearchEvent) => void,
|
|
9805
10142
|
/**
|
|
9806
10143
|
* Context object to call the event handler with. Defaults to this `sap.ui.mdc.filterbar.FilterBarBase`
|
|
9807
10144
|
* itself
|
|
@@ -9856,7 +10193,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
9856
10193
|
/**
|
|
9857
10194
|
* The function to be called, when the event occurs
|
|
9858
10195
|
*/
|
|
9859
|
-
fnFunction: (p1:
|
|
10196
|
+
fnFunction: (p1: FilterBarBase$SearchEvent) => void,
|
|
9860
10197
|
/**
|
|
9861
10198
|
* Context object on which the given function had to be called
|
|
9862
10199
|
*/
|
|
@@ -9886,7 +10223,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
9886
10223
|
/**
|
|
9887
10224
|
* Parameters to pass along with the event
|
|
9888
10225
|
*/
|
|
9889
|
-
mParameters?:
|
|
10226
|
+
mParameters?: FilterBarBase$SearchEventParameters
|
|
9890
10227
|
): this;
|
|
9891
10228
|
/**
|
|
9892
10229
|
* Returns the labels of all filters with a value assignment.
|
|
@@ -9918,7 +10255,7 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
9918
10255
|
getBasicSearchField(): FilterField;
|
|
9919
10256
|
/**
|
|
9920
10257
|
* 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.
|
|
10258
|
+
* related to the {@link sap.ui.mdc.FilterBar#setP13nMode p13nMode} property configuration.
|
|
9922
10259
|
*
|
|
9923
10260
|
* @returns Object containing the current status of the `FilterBarBase`
|
|
9924
10261
|
*/
|
|
@@ -10273,7 +10610,9 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
10273
10610
|
/**
|
|
10274
10611
|
* Triggers the search.
|
|
10275
10612
|
*
|
|
10276
|
-
* @returns
|
|
10613
|
+
* @returns In case the property {@link sap.ui.mdc.FilterBarBase#setSuspendSelection suspendSelection} is
|
|
10614
|
+
* set to `true` the method will be immediatelly resolved, otherwise it returns the result of the {@link sap.ui.mdc.FilterBarBase#validate }
|
|
10615
|
+
* call.
|
|
10277
10616
|
*/
|
|
10278
10617
|
triggerSearch(): Promise<any>;
|
|
10279
10618
|
/**
|
|
@@ -10382,14 +10721,12 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
10382
10721
|
* **Note**: This event should never be executed programmatically. It is triggered internally by the filter
|
|
10383
10722
|
* bar after a `triggerSearch` has been executed
|
|
10384
10723
|
*/
|
|
10385
|
-
search?: (oEvent:
|
|
10724
|
+
search?: (oEvent: FilterBarBase$SearchEvent) => void;
|
|
10386
10725
|
|
|
10387
10726
|
/**
|
|
10388
10727
|
* This event is fired after either a filter value or the visibility of a filter item has been changed.
|
|
10389
10728
|
*/
|
|
10390
|
-
filtersChanged?: (
|
|
10391
|
-
oEvent: Event<FilterBarBase$FiltersChangedEventParameters>
|
|
10392
|
-
) => void;
|
|
10729
|
+
filtersChanged?: (oEvent: FilterBarBase$FiltersChangedEvent) => void;
|
|
10393
10730
|
}
|
|
10394
10731
|
|
|
10395
10732
|
export interface FilterBarBase$FiltersChangedEventParameters {
|
|
@@ -10409,26 +10746,33 @@ declare module "sap/ui/mdc/filterbar/FilterBarBase" {
|
|
|
10409
10746
|
filtersTextExpanded?: string;
|
|
10410
10747
|
}
|
|
10411
10748
|
|
|
10412
|
-
|
|
10413
|
-
|
|
10414
|
-
|
|
10415
|
-
|
|
10416
|
-
export type $FilterBarBaseFiltersChangedEventParameters = FilterBarBase$FiltersChangedEventParameters;
|
|
10417
|
-
|
|
10418
|
-
export type FilterBarBase$FiltersChangedEvent = Event<FilterBarBase$FiltersChangedEventParameters>;
|
|
10419
|
-
|
|
10420
|
-
export interface FilterBarBase$SearchEventParameters {}
|
|
10749
|
+
export type FilterBarBase$FiltersChangedEvent = Event<
|
|
10750
|
+
FilterBarBase$FiltersChangedEventParameters,
|
|
10751
|
+
FilterBarBase
|
|
10752
|
+
>;
|
|
10421
10753
|
|
|
10422
|
-
|
|
10423
|
-
|
|
10424
|
-
|
|
10425
|
-
|
|
10426
|
-
|
|
10754
|
+
export interface FilterBarBase$SearchEventParameters {
|
|
10755
|
+
/**
|
|
10756
|
+
* Indicates the initial reason for the search. This can either be:
|
|
10757
|
+
*
|
|
10758
|
+
* - `{@link sap.ui.mdc.enums.ReasonMode.Variant}`: Search is triggered based on variant settings
|
|
10759
|
+
* - `{@link sap.ui.mdc.enums.ReasonMode.Enter}`: Search is triggered based on pressing Enter in a filter
|
|
10760
|
+
* field
|
|
10761
|
+
* - `{@link sap.ui.mdc.enums.ReasonMode.Go}`: Search is triggered based on pressing the Go button
|
|
10762
|
+
* - `{@link sap.ui.mdc.enums.ReasonMode.Unclear}`: Any other reasons for the search
|
|
10763
|
+
*/
|
|
10764
|
+
reason?: /* was: sap.ui.mdc.enums.ReasonMode */ any;
|
|
10765
|
+
}
|
|
10427
10766
|
|
|
10428
|
-
export type FilterBarBase$SearchEvent = Event<
|
|
10767
|
+
export type FilterBarBase$SearchEvent = Event<
|
|
10768
|
+
FilterBarBase$SearchEventParameters,
|
|
10769
|
+
FilterBarBase
|
|
10770
|
+
>;
|
|
10429
10771
|
}
|
|
10430
10772
|
|
|
10431
10773
|
declare module "sap/ui/mdc/filterbar/IFilterContainer" {
|
|
10774
|
+
import FilterField from "sap/ui/mdc/FilterField";
|
|
10775
|
+
|
|
10432
10776
|
import Control from "sap/ui/core/Control";
|
|
10433
10777
|
|
|
10434
10778
|
/**
|
|
@@ -10449,7 +10793,7 @@ declare module "sap/ui/mdc/filterbar/IFilterContainer" {
|
|
|
10449
10793
|
*
|
|
10450
10794
|
* @returns Array of all inner controls in the layout item
|
|
10451
10795
|
*/
|
|
10452
|
-
getFilterFields():
|
|
10796
|
+
getFilterFields(): FilterField[];
|
|
10453
10797
|
/**
|
|
10454
10798
|
* Getter for the inner layout item.
|
|
10455
10799
|
*
|
|
@@ -10467,7 +10811,7 @@ declare module "sap/ui/mdc/filterbar/IFilterContainer" {
|
|
|
10467
10811
|
/**
|
|
10468
10812
|
* to be inserted
|
|
10469
10813
|
*/
|
|
10470
|
-
oControl:
|
|
10814
|
+
oControl: FilterField,
|
|
10471
10815
|
/**
|
|
10472
10816
|
* Position where the control is added
|
|
10473
10817
|
*/
|
|
@@ -10480,7 +10824,7 @@ declare module "sap/ui/mdc/filterbar/IFilterContainer" {
|
|
|
10480
10824
|
/**
|
|
10481
10825
|
* Control that is removed
|
|
10482
10826
|
*/
|
|
10483
|
-
oControl:
|
|
10827
|
+
oControl: FilterField
|
|
10484
10828
|
): void;
|
|
10485
10829
|
}
|
|
10486
10830
|
}
|
|
@@ -10505,10 +10849,12 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
|
|
|
10505
10849
|
* The `FilterBar` control creates and handles the filters based on the provided metadata information.
|
|
10506
10850
|
* The metadata information is provided via the {@link sap.ui.mdc.FilterBarDelegate FilterBarDelegate} implementation.
|
|
10507
10851
|
* This implementation has to be provided by the application.
|
|
10852
|
+
* **Note:** The `FilterBar` can only be used for a {@link sap.ui.mdc.valuehelp.Dialog Dialog} and not
|
|
10853
|
+
* on its own.
|
|
10508
10854
|
*/
|
|
10509
10855
|
export default class FilterBar extends FilterBarBase {
|
|
10510
10856
|
/**
|
|
10511
|
-
* Constructor for a new FilterBar.
|
|
10857
|
+
* Constructor for a new `FilterBar` for a value help dialog.
|
|
10512
10858
|
*
|
|
10513
10859
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
10514
10860
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -10521,7 +10867,7 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
|
|
|
10521
10867
|
mSettings?: $FilterBarSettings
|
|
10522
10868
|
);
|
|
10523
10869
|
/**
|
|
10524
|
-
* Constructor for a new FilterBar.
|
|
10870
|
+
* Constructor for a new `FilterBar` for a value help dialog.
|
|
10525
10871
|
*
|
|
10526
10872
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
10527
10873
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -10570,7 +10916,7 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
|
|
|
10570
10916
|
/**
|
|
10571
10917
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
10572
10918
|
*
|
|
10573
|
-
*
|
|
10919
|
+
* Destroys the `CollectiveSearch` control.
|
|
10574
10920
|
*
|
|
10575
10921
|
* **Note:** This must only be used by the corresponding value help, not from outside.
|
|
10576
10922
|
*
|
|
@@ -10722,83 +11068,15 @@ declare module "sap/ui/mdc/filterbar/vh/FilterBar" {
|
|
|
10722
11068
|
}
|
|
10723
11069
|
}
|
|
10724
11070
|
|
|
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
11071
|
declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
10790
|
-
import
|
|
11072
|
+
import FilterBar from "sap/ui/mdc/FilterBar";
|
|
10791
11073
|
|
|
10792
11074
|
import FilterField from "sap/ui/mdc/FilterField";
|
|
10793
11075
|
|
|
10794
|
-
import FilterBar from "sap/ui/mdc/FilterBar";
|
|
10795
|
-
|
|
10796
11076
|
import FilterBarValidationStatus from "sap/ui/mdc/enums/FilterBarValidationStatus";
|
|
10797
11077
|
|
|
10798
11078
|
import { filterbar } from "sap/ui/mdc/library";
|
|
10799
11079
|
|
|
10800
|
-
import Control1 from "sap/ui/core/Control";
|
|
10801
|
-
|
|
10802
11080
|
/**
|
|
10803
11081
|
* @since 1.61.0
|
|
10804
11082
|
*
|
|
@@ -10811,19 +11089,19 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
|
10811
11089
|
|
|
10812
11090
|
/**
|
|
10813
11091
|
* This method is called during the appliance of the add condition change. The intention is to update the
|
|
10814
|
-
* {@link sap.ui.mdc.
|
|
11092
|
+
* {@link sap.ui.mdc.FilterBarBase#setPropertyInfo propertyInfo} property.
|
|
10815
11093
|
*
|
|
10816
11094
|
* @returns `Promise` that is resolved once the propertyInfo property has been updated
|
|
10817
11095
|
*/
|
|
10818
11096
|
static addCondition(
|
|
10819
11097
|
/**
|
|
10820
|
-
*
|
|
11098
|
+
* Instance of the filter bar
|
|
10821
11099
|
*/
|
|
10822
|
-
|
|
11100
|
+
oFilterBar: FilterBar,
|
|
10823
11101
|
/**
|
|
10824
|
-
* The
|
|
11102
|
+
* The name of a property
|
|
10825
11103
|
*/
|
|
10826
|
-
|
|
11104
|
+
sPropertyName: string,
|
|
10827
11105
|
/**
|
|
10828
11106
|
* Instance of a property bag from the SAPUI5 flexibility change API
|
|
10829
11107
|
*/
|
|
@@ -10842,13 +11120,13 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
|
10842
11120
|
*/
|
|
10843
11121
|
static addItem(
|
|
10844
11122
|
/**
|
|
10845
|
-
*
|
|
11123
|
+
* Instance of the filter bar
|
|
10846
11124
|
*/
|
|
10847
|
-
|
|
11125
|
+
oFilterBar: FilterBar,
|
|
10848
11126
|
/**
|
|
10849
|
-
*
|
|
11127
|
+
* The name of the property info object/JSON
|
|
10850
11128
|
*/
|
|
10851
|
-
|
|
11129
|
+
sPropertyName: string,
|
|
10852
11130
|
/**
|
|
10853
11131
|
* Instance of property bag from SAPUI5 flexibility change API
|
|
10854
11132
|
*/
|
|
@@ -10861,9 +11139,9 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
|
10861
11139
|
*/
|
|
10862
11140
|
static clearFilters(
|
|
10863
11141
|
/**
|
|
10864
|
-
*
|
|
11142
|
+
* Instance of the filter bar
|
|
10865
11143
|
*/
|
|
10866
|
-
|
|
11144
|
+
oFilterBar: FilterBar
|
|
10867
11145
|
): Promise<any>;
|
|
10868
11146
|
/**
|
|
10869
11147
|
* A validator to evaluate the filter bar state.
|
|
@@ -10872,7 +11150,7 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
|
10872
11150
|
*/
|
|
10873
11151
|
static determineValidationState(
|
|
10874
11152
|
/**
|
|
10875
|
-
* Instance of
|
|
11153
|
+
* Instance of the filter bar
|
|
10876
11154
|
*/
|
|
10877
11155
|
oFilterBar: FilterBar,
|
|
10878
11156
|
/**
|
|
@@ -10892,25 +11170,25 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
|
10892
11170
|
*/
|
|
10893
11171
|
static fetchProperties(
|
|
10894
11172
|
/**
|
|
10895
|
-
* Instance of
|
|
11173
|
+
* Instance of the filter bar
|
|
10896
11174
|
*/
|
|
10897
|
-
|
|
11175
|
+
oFilterBar: FilterBar
|
|
10898
11176
|
): Promise<filterbar.PropertyInfo[]>;
|
|
10899
11177
|
/**
|
|
10900
|
-
* This method is called during the appliance of the remove condition change. The intention
|
|
10901
|
-
* the {@link sap.ui.mdc.
|
|
11178
|
+
* propertyInfo This method is called during the appliance of the remove condition change. The intention
|
|
11179
|
+
* is to update the {@link sap.ui.mdc.FilterBarBase#setPropertyInfo propertyInfo} property.
|
|
10902
11180
|
*
|
|
10903
11181
|
* @returns `Promise` that is resolved once the propertyInfo property has been updated
|
|
10904
11182
|
*/
|
|
10905
11183
|
static removeCondition(
|
|
10906
11184
|
/**
|
|
10907
|
-
*
|
|
11185
|
+
* Instance of the filter bar
|
|
10908
11186
|
*/
|
|
10909
|
-
|
|
11187
|
+
oFilterBar: FilterBar,
|
|
10910
11188
|
/**
|
|
10911
|
-
* The
|
|
11189
|
+
* The name of a property
|
|
10912
11190
|
*/
|
|
10913
|
-
|
|
11191
|
+
sPropertyName: string,
|
|
10914
11192
|
/**
|
|
10915
11193
|
* Instance of a property bag from the SAPUI5 flexibility change API
|
|
10916
11194
|
*/
|
|
@@ -10929,13 +11207,13 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
|
10929
11207
|
*/
|
|
10930
11208
|
static removeItem(
|
|
10931
11209
|
/**
|
|
10932
|
-
*
|
|
11210
|
+
* Instance of the filter bar
|
|
10933
11211
|
*/
|
|
10934
|
-
|
|
11212
|
+
oFilterBar: FilterBar,
|
|
10935
11213
|
/**
|
|
10936
|
-
*
|
|
11214
|
+
* The filter field instance that was removed
|
|
10937
11215
|
*/
|
|
10938
|
-
|
|
11216
|
+
oFilterField: FilterField,
|
|
10939
11217
|
/**
|
|
10940
11218
|
* Instance of property bag from SAPUI5 flexibility
|
|
10941
11219
|
*/
|
|
@@ -10946,7 +11224,7 @@ declare module "sap/ui/mdc/FilterBarDelegate" {
|
|
|
10946
11224
|
*/
|
|
10947
11225
|
static visualizeValidationState(
|
|
10948
11226
|
/**
|
|
10949
|
-
* Instance of
|
|
11227
|
+
* Instance of the filter bar
|
|
10950
11228
|
*/
|
|
10951
11229
|
oFilterBar: FilterBar,
|
|
10952
11230
|
/**
|
|
@@ -10989,24 +11267,26 @@ declare module "sap/ui/mdc/FilterField" {
|
|
|
10989
11267
|
* property must be bound to the related conditions in the {@link sap.ui.mdc.condition.ConditionModel ConditionModel}.
|
|
10990
11268
|
* The type of this data must be defined in the `dataType` property.
|
|
10991
11269
|
*
|
|
11270
|
+
* Based on the data type settings, a default control is rendered by the `FilterField` as follows:
|
|
10992
11271
|
*
|
|
10993
|
-
*
|
|
10994
|
-
* -
|
|
10995
|
-
* - If
|
|
10996
|
-
* -
|
|
10997
|
-
* -
|
|
10998
|
-
* - If
|
|
10999
|
-
* - If
|
|
11272
|
+
*
|
|
11273
|
+
* - In display mode, usually a {@link sap.m.Text Text} control is rendered.
|
|
11274
|
+
* - If `multipleLines` is set, an {@link sap.m.ExpandableText ExpandableText} control is rendered.
|
|
11275
|
+
* - If multiple values are allowed, a {@link sap.m.Tokenizer Tokenizer} control is rendered.
|
|
11276
|
+
* - In edit mode, usually an {@link sap.m.Input Input} control is rendered.
|
|
11277
|
+
* - If multiple values are allowed, a {@link sap.m.MultiInput MultiInput} control is rendered.
|
|
11278
|
+
* - If `multipleLines` is set, a {@link sap.m.TextArea TextArea} control is rendered.
|
|
11279
|
+
* - If a date type or a date/time type is used, a {@link sap.m.DateRangeSelection DateRangeSelection }
|
|
11000
11280
|
* control is rendered.
|
|
11001
11281
|
* - If a date type is used and only single values are allowed, a {@link sap.m.DatePicker DatePicker }
|
|
11002
11282
|
* control is rendered.
|
|
11003
11283
|
* - If a date type is used and only single ranges are allowed, a {@link sap.m.DateRangeSelection DateRangeSelection }
|
|
11004
11284
|
* control is rendered.
|
|
11005
|
-
* - If a date
|
|
11285
|
+
* - If a date/time type is used and only single values are allowed, a {@link sap.m.DateTimePicker DateTimePicker }
|
|
11006
11286
|
* control is rendered.
|
|
11007
11287
|
* - If a time type is used and only single values are allowed, a {@link sap.m.TimePicker TimePicker }
|
|
11008
11288
|
* control is rendered.
|
|
11009
|
-
* - If used for search a {@link sap.m.SearchField SearchField} control is rendered.
|
|
11289
|
+
* - If used for search, a {@link sap.m.SearchField SearchField} control is rendered.
|
|
11010
11290
|
*/
|
|
11011
11291
|
export default class FilterField
|
|
11012
11292
|
extends FieldBase
|
|
@@ -11202,7 +11482,7 @@ declare module "sap/ui/mdc/FilterField" {
|
|
|
11202
11482
|
*
|
|
11203
11483
|
* Supported operator names for conditions.
|
|
11204
11484
|
*
|
|
11205
|
-
* If empty, default operators depending on used data type are
|
|
11485
|
+
* If empty, default operators depending on used data type are taken.
|
|
11206
11486
|
*
|
|
11207
11487
|
* Default value is `[]`.
|
|
11208
11488
|
*
|
|
@@ -11274,7 +11554,7 @@ declare module "sap/ui/mdc/FilterField" {
|
|
|
11274
11554
|
*
|
|
11275
11555
|
* Supported operator names for conditions.
|
|
11276
11556
|
*
|
|
11277
|
-
* If empty, default operators depending on used data type are
|
|
11557
|
+
* If empty, default operators depending on used data type are taken.
|
|
11278
11558
|
*
|
|
11279
11559
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
11280
11560
|
*
|
|
@@ -11315,7 +11595,7 @@ declare module "sap/ui/mdc/FilterField" {
|
|
|
11315
11595
|
*
|
|
11316
11596
|
* Supported operator names for conditions.
|
|
11317
11597
|
*
|
|
11318
|
-
* If empty, default operators depending on used data type are
|
|
11598
|
+
* If empty, default operators depending on used data type are taken.
|
|
11319
11599
|
*/
|
|
11320
11600
|
operators?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
11321
11601
|
|
|
@@ -11342,7 +11622,7 @@ declare module "sap/ui/mdc/FilterField" {
|
|
|
11342
11622
|
*
|
|
11343
11623
|
* **Note** This event is only triggered if the used content control has a change event.
|
|
11344
11624
|
*/
|
|
11345
|
-
change?: (oEvent:
|
|
11625
|
+
change?: (oEvent: FilterField$ChangeEvent) => void;
|
|
11346
11626
|
}
|
|
11347
11627
|
|
|
11348
11628
|
export interface FilterField$ChangeEventParameters {
|
|
@@ -11365,8 +11645,8 @@ declare module "sap/ui/mdc/FilterField" {
|
|
|
11365
11645
|
|
|
11366
11646
|
/**
|
|
11367
11647
|
* Returns a `Promise` for the change. The `Promise` returns the value if it is resolved. If the `change`
|
|
11368
|
-
* event is synchronous, the
|
|
11369
|
-
*
|
|
11648
|
+
* event is synchronous, the `Promise` has already been resolved. If it is asynchronous, it will be resolved
|
|
11649
|
+
* after the value has been updated.
|
|
11370
11650
|
*
|
|
11371
11651
|
* The `FilterField` should be set to busy during the parsing to prevent user input. As there might be a
|
|
11372
11652
|
* whole group of fields that needs to be busy, this cannot be done automatically.
|
|
@@ -11374,13 +11654,10 @@ declare module "sap/ui/mdc/FilterField" {
|
|
|
11374
11654
|
promise?: boolean;
|
|
11375
11655
|
}
|
|
11376
11656
|
|
|
11377
|
-
|
|
11378
|
-
|
|
11379
|
-
|
|
11380
|
-
|
|
11381
|
-
export type $FilterFieldChangeEventParameters = FilterField$ChangeEventParameters;
|
|
11382
|
-
|
|
11383
|
-
export type FilterField$ChangeEvent = Event<FilterField$ChangeEventParameters>;
|
|
11657
|
+
export type FilterField$ChangeEvent = Event<
|
|
11658
|
+
FilterField$ChangeEventParameters,
|
|
11659
|
+
FilterField
|
|
11660
|
+
>;
|
|
11384
11661
|
}
|
|
11385
11662
|
|
|
11386
11663
|
declare module "sap/ui/mdc/Link" {
|
|
@@ -11530,6 +11807,8 @@ declare module "sap/ui/mdc/Link" {
|
|
|
11530
11807
|
*/
|
|
11531
11808
|
getSourceControl(): ID;
|
|
11532
11809
|
/**
|
|
11810
|
+
* Retrieves the `AdditionalContent` objects depending on the given `LinkDelegate`. Caches the returned
|
|
11811
|
+
* objects for further usage.
|
|
11533
11812
|
*
|
|
11534
11813
|
* @returns Resolves an array of type {@link sap.ui.core.Control}
|
|
11535
11814
|
*/
|
|
@@ -11541,6 +11820,7 @@ declare module "sap/ui/mdc/Link" {
|
|
|
11541
11820
|
*/
|
|
11542
11821
|
retrieveLinkItems(): Promise<LinkItem[]>;
|
|
11543
11822
|
/**
|
|
11823
|
+
* Determines the `LinkType` object depending on the given `LinkDelegate`.
|
|
11544
11824
|
*
|
|
11545
11825
|
* @returns Returns `undefined` or a {@link sap.ui.mdc.link.LinkType}, once resolved
|
|
11546
11826
|
*/
|
|
@@ -12024,13 +12304,13 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
12024
12304
|
*
|
|
12025
12305
|
* A `MultiValueField` control can hold multiple values. The values are stored as items. A `MultiValueField`
|
|
12026
12306
|
* 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
|
|
12307
|
+
* a default control is rendered by the `MultiValueField` control as follows:
|
|
12028
12308
|
*
|
|
12029
12309
|
*
|
|
12030
|
-
* - In display mode
|
|
12031
|
-
* - If `multipleLines` is set
|
|
12032
|
-
* - In edit mode
|
|
12033
|
-
* - If `multipleLines` is set a {@link sap.m.TextArea TextArea} control is rendered.
|
|
12310
|
+
* - In display mode, usually a {@link sap.m.Tokenizer Tokenizer} control is rendered.
|
|
12311
|
+
* - If `multipleLines` is set, an {@link sap.m.ExpandableText ExpandableText} control is rendered.
|
|
12312
|
+
* - In edit mode, usually a {@link sap.m.MultiInput MultiInput} control is rendered.
|
|
12313
|
+
* - If `multipleLines` is set, a {@link sap.m.TextArea TextArea} control is rendered.
|
|
12034
12314
|
*/
|
|
12035
12315
|
export default class MultiValueField
|
|
12036
12316
|
extends FieldBase
|
|
@@ -12338,7 +12618,7 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
12338
12618
|
*
|
|
12339
12619
|
* **Note** This event is only triggered if the used content control has a change event.
|
|
12340
12620
|
*/
|
|
12341
|
-
change?: (oEvent:
|
|
12621
|
+
change?: (oEvent: MultiValueField$ChangeEvent) => void;
|
|
12342
12622
|
}
|
|
12343
12623
|
|
|
12344
12624
|
export interface MultiValueField$ChangeEventParameters {
|
|
@@ -12357,7 +12637,7 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
12357
12637
|
|
|
12358
12638
|
/**
|
|
12359
12639
|
* Returns a `Promise` for the change. The `Promise` returns the items when it is resolved. If the `change`
|
|
12360
|
-
* event is synchronous, the
|
|
12640
|
+
* event is synchronous, the `Promise` has already been resolved. If it is asynchronous, it will be resolved
|
|
12361
12641
|
* after the items have been updated.
|
|
12362
12642
|
*
|
|
12363
12643
|
* The `MultiValueField` control should be set to busy during the parsing to prevent user input. As there
|
|
@@ -12366,13 +12646,10 @@ declare module "sap/ui/mdc/MultiValueField" {
|
|
|
12366
12646
|
promise?: Promise<any>;
|
|
12367
12647
|
}
|
|
12368
12648
|
|
|
12369
|
-
|
|
12370
|
-
|
|
12371
|
-
|
|
12372
|
-
|
|
12373
|
-
export type $MultiValueFieldChangeEventParameters = MultiValueField$ChangeEventParameters;
|
|
12374
|
-
|
|
12375
|
-
export type MultiValueField$ChangeEvent = Event<MultiValueField$ChangeEventParameters>;
|
|
12649
|
+
export type MultiValueField$ChangeEvent = Event<
|
|
12650
|
+
MultiValueField$ChangeEventParameters,
|
|
12651
|
+
MultiValueField
|
|
12652
|
+
>;
|
|
12376
12653
|
}
|
|
12377
12654
|
|
|
12378
12655
|
declare module "sap/ui/mdc/table/V4AnalyticsPropertyHelper" {
|
|
@@ -12548,6 +12825,8 @@ declare module "sap/ui/mdc/p13n/StateUtil" {
|
|
|
12548
12825
|
declare module "sap/ui/mdc/Table" {
|
|
12549
12826
|
import { default as Control, $ControlSettings } from "sap/ui/mdc/Control";
|
|
12550
12827
|
|
|
12828
|
+
import { IFilterSource, IxState, IFilter } from "sap/ui/mdc/library";
|
|
12829
|
+
|
|
12551
12830
|
import Control1 from "sap/ui/core/Control";
|
|
12552
12831
|
|
|
12553
12832
|
import Column from "sap/ui/mdc/table/Column";
|
|
@@ -12589,7 +12868,9 @@ declare module "sap/ui/mdc/Table" {
|
|
|
12589
12868
|
* controls. The metadata needs to be provided via the {@link module:sap/ui/mdc/TableDelegate TableDelegate }
|
|
12590
12869
|
* implementation as {@link sap.ui.mdc.table.PropertyInfo}.
|
|
12591
12870
|
*/
|
|
12592
|
-
export default class Table extends Control {
|
|
12871
|
+
export default class Table extends Control implements IFilterSource, IxState {
|
|
12872
|
+
__implements__sap_ui_mdc_IFilterSource: boolean;
|
|
12873
|
+
__implements__sap_ui_mdc_IxState: boolean;
|
|
12593
12874
|
/**
|
|
12594
12875
|
* Constructor for a new `MDCTable`.
|
|
12595
12876
|
*
|
|
@@ -13150,15 +13431,6 @@ declare module "sap/ui/mdc/Table" {
|
|
|
13150
13431
|
* removed.
|
|
13151
13432
|
*/
|
|
13152
13433
|
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
13434
|
/**
|
|
13163
13435
|
* @since 1.89
|
|
13164
13436
|
*
|
|
@@ -13296,6 +13568,17 @@ declare module "sap/ui/mdc/Table" {
|
|
|
13296
13568
|
* @returns Value of property `headerLevel`
|
|
13297
13569
|
*/
|
|
13298
13570
|
getHeaderLevel(): TitleLevel | keyof typeof TitleLevel;
|
|
13571
|
+
/**
|
|
13572
|
+
* @since 1.116
|
|
13573
|
+
* @experimental - Internal use only
|
|
13574
|
+
*
|
|
13575
|
+
* Gets current value of property {@link #getHeaderStyle headerStyle}.
|
|
13576
|
+
*
|
|
13577
|
+
* Defines style of the header. For more information, see {@link sap.m.Title#setTitleStyle}.
|
|
13578
|
+
*
|
|
13579
|
+
* @returns Value of property `headerStyle`
|
|
13580
|
+
*/
|
|
13581
|
+
getHeaderStyle(): TitleLevel | keyof typeof TitleLevel;
|
|
13299
13582
|
/**
|
|
13300
13583
|
* @since 1.63
|
|
13301
13584
|
*
|
|
@@ -13582,38 +13865,6 @@ declare module "sap/ui/mdc/Table" {
|
|
|
13582
13865
|
*/
|
|
13583
13866
|
iIndex: int
|
|
13584
13867
|
): 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
13868
|
/**
|
|
13618
13869
|
* Checks whether the table is bound.
|
|
13619
13870
|
*
|
|
@@ -13887,7 +14138,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
13887
14138
|
* ID of an element which becomes the new target of this filter association; alternatively, an element instance
|
|
13888
14139
|
* may be given
|
|
13889
14140
|
*/
|
|
13890
|
-
oFilter: ID |
|
|
14141
|
+
oFilter: ID | IFilter
|
|
13891
14142
|
): this;
|
|
13892
14143
|
/**
|
|
13893
14144
|
* @since 1.80.0
|
|
@@ -13965,6 +14216,24 @@ declare module "sap/ui/mdc/Table" {
|
|
|
13965
14216
|
*/
|
|
13966
14217
|
sHeaderLevel?: TitleLevel | keyof typeof TitleLevel
|
|
13967
14218
|
): this;
|
|
14219
|
+
/**
|
|
14220
|
+
* @since 1.116
|
|
14221
|
+
* @experimental - Internal use only
|
|
14222
|
+
*
|
|
14223
|
+
* Sets a new value for property {@link #getHeaderStyle headerStyle}.
|
|
14224
|
+
*
|
|
14225
|
+
* Defines style of the header. For more information, see {@link sap.m.Title#setTitleStyle}.
|
|
14226
|
+
*
|
|
14227
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
14228
|
+
*
|
|
14229
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
14230
|
+
*/
|
|
14231
|
+
setHeaderStyle(
|
|
14232
|
+
/**
|
|
14233
|
+
* New value for property `headerStyle`
|
|
14234
|
+
*/
|
|
14235
|
+
sHeaderStyle: TitleLevel | keyof typeof TitleLevel
|
|
14236
|
+
): this;
|
|
13968
14237
|
/**
|
|
13969
14238
|
* @since 1.63
|
|
13970
14239
|
*
|
|
@@ -14330,6 +14599,17 @@ declare module "sap/ui/mdc/Table" {
|
|
|
14330
14599
|
| PropertyBindingInfo
|
|
14331
14600
|
| `{${string}}`;
|
|
14332
14601
|
|
|
14602
|
+
/**
|
|
14603
|
+
* @since 1.116
|
|
14604
|
+
* @experimental - Internal use only
|
|
14605
|
+
*
|
|
14606
|
+
* Defines style of the header. For more information, see {@link sap.m.Title#setTitleStyle}.
|
|
14607
|
+
*/
|
|
14608
|
+
headerStyle?:
|
|
14609
|
+
| (TitleLevel | keyof typeof TitleLevel)
|
|
14610
|
+
| PropertyBindingInfo
|
|
14611
|
+
| `{${string}}`;
|
|
14612
|
+
|
|
14333
14613
|
/**
|
|
14334
14614
|
* Determines whether to bind the table automatically after the initial creation or re-creation of the table.
|
|
14335
14615
|
*/
|
|
@@ -14608,19 +14888,17 @@ declare module "sap/ui/mdc/Table" {
|
|
|
14608
14888
|
*
|
|
14609
14889
|
* Automatic filter generation only works in combination with a `sap.ui.mdc.FilterBar`.
|
|
14610
14890
|
*/
|
|
14611
|
-
filter?:
|
|
14891
|
+
filter?: IFilter | string;
|
|
14612
14892
|
|
|
14613
14893
|
/**
|
|
14614
14894
|
* This event is fired when a row in the table is pressed.
|
|
14615
14895
|
*/
|
|
14616
|
-
rowPress?: (oEvent:
|
|
14896
|
+
rowPress?: (oEvent: Table$RowPressEvent) => void;
|
|
14617
14897
|
|
|
14618
14898
|
/**
|
|
14619
14899
|
* This event is fired when the selection in the table is changed.
|
|
14620
14900
|
*/
|
|
14621
|
-
selectionChange?: (
|
|
14622
|
-
oEvent: Event<Table$SelectionChangeEventParameters>
|
|
14623
|
-
) => void;
|
|
14901
|
+
selectionChange?: (oEvent: Table$SelectionChangeEvent) => void;
|
|
14624
14902
|
|
|
14625
14903
|
/**
|
|
14626
14904
|
* @since 1.75
|
|
@@ -14629,12 +14907,12 @@ declare module "sap/ui/mdc/Table" {
|
|
|
14629
14907
|
*
|
|
14630
14908
|
* 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
14909
|
*/
|
|
14632
|
-
beforeExport?: (oEvent:
|
|
14910
|
+
beforeExport?: (oEvent: Table$BeforeExportEvent) => void;
|
|
14633
14911
|
|
|
14634
14912
|
/**
|
|
14635
14913
|
* This event is fired when the user pastes content from the clipboard to the table.
|
|
14636
14914
|
*/
|
|
14637
|
-
paste?: (oEvent:
|
|
14915
|
+
paste?: (oEvent: Table$PasteEvent) => void;
|
|
14638
14916
|
}
|
|
14639
14917
|
|
|
14640
14918
|
export interface Table$BeforeExportEventParameters {
|
|
@@ -14657,13 +14935,10 @@ declare module "sap/ui/mdc/Table" {
|
|
|
14657
14935
|
filterSettings?: object[];
|
|
14658
14936
|
}
|
|
14659
14937
|
|
|
14660
|
-
|
|
14661
|
-
|
|
14662
|
-
|
|
14663
|
-
|
|
14664
|
-
export type $TableBeforeExportEventParameters = Table$BeforeExportEventParameters;
|
|
14665
|
-
|
|
14666
|
-
export type Table$BeforeExportEvent = Event<Table$BeforeExportEventParameters>;
|
|
14938
|
+
export type Table$BeforeExportEvent = Event<
|
|
14939
|
+
Table$BeforeExportEventParameters,
|
|
14940
|
+
Table
|
|
14941
|
+
>;
|
|
14667
14942
|
|
|
14668
14943
|
export interface Table$PasteEventParameters {
|
|
14669
14944
|
/**
|
|
@@ -14673,13 +14948,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
14673
14948
|
data?: string[][];
|
|
14674
14949
|
}
|
|
14675
14950
|
|
|
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
|
-
export type Table$PasteEvent = Event<Table$PasteEventParameters>;
|
|
14951
|
+
export type Table$PasteEvent = Event<Table$PasteEventParameters, Table>;
|
|
14683
14952
|
|
|
14684
14953
|
export interface Table$RowPressEventParameters {
|
|
14685
14954
|
/**
|
|
@@ -14688,13 +14957,7 @@ declare module "sap/ui/mdc/Table" {
|
|
|
14688
14957
|
bindingContext?: Context;
|
|
14689
14958
|
}
|
|
14690
14959
|
|
|
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
|
-
export type Table$RowPressEvent = Event<Table$RowPressEventParameters>;
|
|
14960
|
+
export type Table$RowPressEvent = Event<Table$RowPressEventParameters, Table>;
|
|
14698
14961
|
|
|
14699
14962
|
export interface Table$SelectionChangeEventParameters {
|
|
14700
14963
|
/**
|
|
@@ -14703,13 +14966,10 @@ declare module "sap/ui/mdc/Table" {
|
|
|
14703
14966
|
selectAll?: boolean;
|
|
14704
14967
|
}
|
|
14705
14968
|
|
|
14706
|
-
|
|
14707
|
-
|
|
14708
|
-
|
|
14709
|
-
|
|
14710
|
-
export type $TableSelectionChangeEventParameters = Table$SelectionChangeEventParameters;
|
|
14711
|
-
|
|
14712
|
-
export type Table$SelectionChangeEvent = Event<Table$SelectionChangeEventParameters>;
|
|
14969
|
+
export type Table$SelectionChangeEvent = Event<
|
|
14970
|
+
Table$SelectionChangeEventParameters,
|
|
14971
|
+
Table
|
|
14972
|
+
>;
|
|
14713
14973
|
}
|
|
14714
14974
|
|
|
14715
14975
|
declare module "sap/ui/mdc/table/Column" {
|
|
@@ -16226,10 +16486,10 @@ declare module "sap/ui/mdc/table/RowActionItem" {
|
|
|
16226
16486
|
|
|
16227
16487
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
16228
16488
|
|
|
16229
|
-
import Event from "sap/ui/base/Event";
|
|
16230
|
-
|
|
16231
16489
|
import Context from "sap/ui/model/Context";
|
|
16232
16490
|
|
|
16491
|
+
import Event from "sap/ui/base/Event";
|
|
16492
|
+
|
|
16233
16493
|
/**
|
|
16234
16494
|
* The `RowActionItem` control represents a action for a row. This control can only be used in the context
|
|
16235
16495
|
* of `sap.ui.mdc.Table` control to define row actions.
|
|
@@ -16534,7 +16794,7 @@ declare module "sap/ui/mdc/table/RowActionItem" {
|
|
|
16534
16794
|
* `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
16795
|
* `rowPress` event is fired as well, when pressing a row with a row action item.
|
|
16536
16796
|
*/
|
|
16537
|
-
press?: (oEvent:
|
|
16797
|
+
press?: (oEvent: RowActionItem$PressEvent) => void;
|
|
16538
16798
|
}
|
|
16539
16799
|
|
|
16540
16800
|
export interface RowActionItem$PressEventParameters {
|
|
@@ -16544,13 +16804,10 @@ declare module "sap/ui/mdc/table/RowActionItem" {
|
|
|
16544
16804
|
bindingContext?: Context;
|
|
16545
16805
|
}
|
|
16546
16806
|
|
|
16547
|
-
|
|
16548
|
-
|
|
16549
|
-
|
|
16550
|
-
|
|
16551
|
-
export type $RowActionItemPressEventParameters = RowActionItem$PressEventParameters;
|
|
16552
|
-
|
|
16553
|
-
export type RowActionItem$PressEvent = Event<RowActionItem$PressEventParameters>;
|
|
16807
|
+
export type RowActionItem$PressEvent = Event<
|
|
16808
|
+
RowActionItem$PressEventParameters,
|
|
16809
|
+
RowActionItem
|
|
16810
|
+
>;
|
|
16554
16811
|
}
|
|
16555
16812
|
|
|
16556
16813
|
declare module "sap/ui/mdc/table/RowSettings" {
|
|
@@ -16571,9 +16828,9 @@ declare module "sap/ui/mdc/table/RowSettings" {
|
|
|
16571
16828
|
*/
|
|
16572
16829
|
export default class RowSettings extends UI5Element {
|
|
16573
16830
|
/**
|
|
16574
|
-
* Constructor for new RowSettings
|
|
16831
|
+
* Constructor for new `RowSettings`.
|
|
16575
16832
|
*
|
|
16576
|
-
*
|
|
16833
|
+
* **Note:** Only use bindings that are bound against the rows, as working functionality cannot be ensured
|
|
16577
16834
|
* for other binding types.
|
|
16578
16835
|
*
|
|
16579
16836
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
@@ -16587,9 +16844,9 @@ declare module "sap/ui/mdc/table/RowSettings" {
|
|
|
16587
16844
|
mSettings?: $RowSettingsSettings
|
|
16588
16845
|
);
|
|
16589
16846
|
/**
|
|
16590
|
-
* Constructor for new RowSettings
|
|
16847
|
+
* Constructor for new `RowSettings`.
|
|
16591
16848
|
*
|
|
16592
|
-
*
|
|
16849
|
+
* **Note:** Only use bindings that are bound against the rows, as working functionality cannot be ensured
|
|
16593
16850
|
* for other binding types.
|
|
16594
16851
|
*
|
|
16595
16852
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
@@ -17113,8 +17370,8 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
17113
17370
|
/**
|
|
17114
17371
|
* Constructor for a new `ValueHelp`.
|
|
17115
17372
|
*
|
|
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`
|
|
17373
|
+
* The `ValueHelp` element can be assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
|
|
17374
|
+
* and {@link sap.ui.mdc.FilterField FilterField} controls using the `valueHelp` association. One `ValueHelp`
|
|
17118
17375
|
* element instance can be assigned to multiple fields (like in different table rows). It should be placed
|
|
17119
17376
|
* in the control tree on the container holding the fields.
|
|
17120
17377
|
*
|
|
@@ -17131,8 +17388,8 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
17131
17388
|
/**
|
|
17132
17389
|
* Constructor for a new `ValueHelp`.
|
|
17133
17390
|
*
|
|
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`
|
|
17391
|
+
* The `ValueHelp` element can be assigned to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField},
|
|
17392
|
+
* and {@link sap.ui.mdc.FilterField FilterField} controls using the `valueHelp` association. One `ValueHelp`
|
|
17136
17393
|
* element instance can be assigned to multiple fields (like in different table rows). It should be placed
|
|
17137
17394
|
* in the control tree on the container holding the fields.
|
|
17138
17395
|
*
|
|
@@ -17930,18 +18187,18 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
17930
18187
|
*/
|
|
17931
18188
|
parsedValue?: any;
|
|
17932
18189
|
/**
|
|
17933
|
-
* Contextual information provided by condition payload or inParameters
|
|
17934
|
-
* if the description needs to be determined for an existing condition.
|
|
18190
|
+
* Contextual information provided by condition `payload` or `inParameters`/`outParameters`. This is only
|
|
18191
|
+
* filled if the description needs to be determined for an existing condition.
|
|
17935
18192
|
*/
|
|
17936
18193
|
context?: {
|
|
17937
18194
|
/**
|
|
17938
|
-
* In parameters of the current condition (
|
|
17939
|
-
* older
|
|
18195
|
+
* In parameters of the current condition (`inParameters` are not used any longer, but it might be filled
|
|
18196
|
+
* in older conditions stored in variants.)
|
|
17940
18197
|
*/
|
|
17941
18198
|
inParameter?: object;
|
|
17942
18199
|
/**
|
|
17943
|
-
* Out parameters of the current condition (
|
|
17944
|
-
* in older
|
|
18200
|
+
* Out parameters of the current condition (`outParameters` are not used any longer, but it might be filled
|
|
18201
|
+
* in older conditions stored in variants.)
|
|
17945
18202
|
*/
|
|
17946
18203
|
ouParameter?: object;
|
|
17947
18204
|
/**
|
|
@@ -17950,8 +18207,8 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
17950
18207
|
payload?: object;
|
|
17951
18208
|
};
|
|
17952
18209
|
/**
|
|
17953
|
-
* `BindingContext` of the checked field. Inside a table the `ValueHelp` element might be connected to
|
|
17954
|
-
* different row.
|
|
18210
|
+
* `BindingContext` of the checked field. Inside a table, the `ValueHelp` element might be connected to
|
|
18211
|
+
* a different row.
|
|
17955
18212
|
*/
|
|
17956
18213
|
bindingContext?: Context;
|
|
17957
18214
|
/**
|
|
@@ -17965,7 +18222,7 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
17965
18222
|
*/
|
|
17966
18223
|
checkDescription: boolean;
|
|
17967
18224
|
/**
|
|
17968
|
-
* If set, the check is done case
|
|
18225
|
+
* If set, the check is done case-sensitively
|
|
17969
18226
|
*/
|
|
17970
18227
|
caseSensitive?: boolean;
|
|
17971
18228
|
/**
|
|
@@ -18032,7 +18289,7 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
18032
18289
|
* **Note:** This event must only be handled by the control the `ValueHelp` element belongs to, not by the
|
|
18033
18290
|
* application.
|
|
18034
18291
|
*/
|
|
18035
|
-
select?: (oEvent:
|
|
18292
|
+
select?: (oEvent: ValueHelp$SelectEvent) => void;
|
|
18036
18293
|
|
|
18037
18294
|
/**
|
|
18038
18295
|
* This event is fired when the `ValueHelp` element is disconnected from a control.
|
|
@@ -18050,17 +18307,17 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
18050
18307
|
/**
|
|
18051
18308
|
* This event is fired as the value help opening is triggered.
|
|
18052
18309
|
*/
|
|
18053
|
-
open?: (oEvent:
|
|
18310
|
+
open?: (oEvent: ValueHelp$OpenEvent) => void;
|
|
18054
18311
|
|
|
18055
18312
|
/**
|
|
18056
18313
|
* This event is fired as the value help is fully open.
|
|
18057
18314
|
*/
|
|
18058
|
-
opened?: (oEvent:
|
|
18315
|
+
opened?: (oEvent: ValueHelp$OpenedEvent) => void;
|
|
18059
18316
|
|
|
18060
18317
|
/**
|
|
18061
18318
|
* This event is fired after the user navigated, using the arrow keys, in the value help.
|
|
18062
18319
|
*/
|
|
18063
|
-
navigated?: (oEvent:
|
|
18320
|
+
navigated?: (oEvent: ValueHelp$NavigatedEvent) => void;
|
|
18064
18321
|
|
|
18065
18322
|
/**
|
|
18066
18323
|
* This event is fired if the user wants to switch from typeahead to value help.
|
|
@@ -18070,23 +18327,17 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
18070
18327
|
|
|
18071
18328
|
export interface ValueHelp$ClosedEventParameters {}
|
|
18072
18329
|
|
|
18073
|
-
|
|
18074
|
-
|
|
18075
|
-
|
|
18076
|
-
|
|
18077
|
-
export type $ValueHelpClosedEventParameters = ValueHelp$ClosedEventParameters;
|
|
18078
|
-
|
|
18079
|
-
export type ValueHelp$ClosedEvent = Event<ValueHelp$ClosedEventParameters>;
|
|
18330
|
+
export type ValueHelp$ClosedEvent = Event<
|
|
18331
|
+
ValueHelp$ClosedEventParameters,
|
|
18332
|
+
ValueHelp
|
|
18333
|
+
>;
|
|
18080
18334
|
|
|
18081
18335
|
export interface ValueHelp$DisconnectEventParameters {}
|
|
18082
18336
|
|
|
18083
|
-
|
|
18084
|
-
|
|
18085
|
-
|
|
18086
|
-
|
|
18087
|
-
export type $ValueHelpDisconnectEventParameters = ValueHelp$DisconnectEventParameters;
|
|
18088
|
-
|
|
18089
|
-
export type ValueHelp$DisconnectEvent = Event<ValueHelp$DisconnectEventParameters>;
|
|
18337
|
+
export type ValueHelp$DisconnectEvent = Event<
|
|
18338
|
+
ValueHelp$DisconnectEventParameters,
|
|
18339
|
+
ValueHelp
|
|
18340
|
+
>;
|
|
18090
18341
|
|
|
18091
18342
|
export interface ValueHelp$NavigatedEventParameters {
|
|
18092
18343
|
/**
|
|
@@ -18107,13 +18358,10 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
18107
18358
|
itemId?: string;
|
|
18108
18359
|
}
|
|
18109
18360
|
|
|
18110
|
-
|
|
18111
|
-
|
|
18112
|
-
|
|
18113
|
-
|
|
18114
|
-
export type $ValueHelpNavigatedEventParameters = ValueHelp$NavigatedEventParameters;
|
|
18115
|
-
|
|
18116
|
-
export type ValueHelp$NavigatedEvent = Event<ValueHelp$NavigatedEventParameters>;
|
|
18361
|
+
export type ValueHelp$NavigatedEvent = Event<
|
|
18362
|
+
ValueHelp$NavigatedEventParameters,
|
|
18363
|
+
ValueHelp
|
|
18364
|
+
>;
|
|
18117
18365
|
|
|
18118
18366
|
export interface ValueHelp$OpenEventParameters {
|
|
18119
18367
|
/**
|
|
@@ -18122,13 +18370,10 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
18122
18370
|
container?: Container;
|
|
18123
18371
|
}
|
|
18124
18372
|
|
|
18125
|
-
|
|
18126
|
-
|
|
18127
|
-
|
|
18128
|
-
|
|
18129
|
-
export type $ValueHelpOpenEventParameters = ValueHelp$OpenEventParameters;
|
|
18130
|
-
|
|
18131
|
-
export type ValueHelp$OpenEvent = Event<ValueHelp$OpenEventParameters>;
|
|
18373
|
+
export type ValueHelp$OpenEvent = Event<
|
|
18374
|
+
ValueHelp$OpenEventParameters,
|
|
18375
|
+
ValueHelp
|
|
18376
|
+
>;
|
|
18132
18377
|
|
|
18133
18378
|
export interface ValueHelp$OpenedEventParameters {
|
|
18134
18379
|
/**
|
|
@@ -18137,13 +18382,10 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
18137
18382
|
container?: Container;
|
|
18138
18383
|
}
|
|
18139
18384
|
|
|
18140
|
-
|
|
18141
|
-
|
|
18142
|
-
|
|
18143
|
-
|
|
18144
|
-
export type $ValueHelpOpenedEventParameters = ValueHelp$OpenedEventParameters;
|
|
18145
|
-
|
|
18146
|
-
export type ValueHelp$OpenedEvent = Event<ValueHelp$OpenedEventParameters>;
|
|
18385
|
+
export type ValueHelp$OpenedEvent = Event<
|
|
18386
|
+
ValueHelp$OpenedEventParameters,
|
|
18387
|
+
ValueHelp
|
|
18388
|
+
>;
|
|
18147
18389
|
|
|
18148
18390
|
export interface ValueHelp$SelectEventParameters {
|
|
18149
18391
|
/**
|
|
@@ -18165,23 +18407,17 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
18165
18407
|
close?: boolean;
|
|
18166
18408
|
}
|
|
18167
18409
|
|
|
18168
|
-
|
|
18169
|
-
|
|
18170
|
-
|
|
18171
|
-
|
|
18172
|
-
export type $ValueHelpSelectEventParameters = ValueHelp$SelectEventParameters;
|
|
18173
|
-
|
|
18174
|
-
export type ValueHelp$SelectEvent = Event<ValueHelp$SelectEventParameters>;
|
|
18410
|
+
export type ValueHelp$SelectEvent = Event<
|
|
18411
|
+
ValueHelp$SelectEventParameters,
|
|
18412
|
+
ValueHelp
|
|
18413
|
+
>;
|
|
18175
18414
|
|
|
18176
18415
|
export interface ValueHelp$SwitchToValueHelpEventParameters {}
|
|
18177
18416
|
|
|
18178
|
-
|
|
18179
|
-
|
|
18180
|
-
|
|
18181
|
-
|
|
18182
|
-
export type $ValueHelpSwitchToValueHelpEventParameters = ValueHelp$SwitchToValueHelpEventParameters;
|
|
18183
|
-
|
|
18184
|
-
export type ValueHelp$SwitchToValueHelpEvent = Event<ValueHelp$SwitchToValueHelpEventParameters>;
|
|
18417
|
+
export type ValueHelp$SwitchToValueHelpEvent = Event<
|
|
18418
|
+
ValueHelp$SwitchToValueHelpEventParameters,
|
|
18419
|
+
ValueHelp
|
|
18420
|
+
>;
|
|
18185
18421
|
}
|
|
18186
18422
|
|
|
18187
18423
|
declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
@@ -18211,7 +18447,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18211
18447
|
/**
|
|
18212
18448
|
* Constructor for a new `Container`.
|
|
18213
18449
|
*
|
|
18214
|
-
* This is the basis for
|
|
18450
|
+
* This is the basis for various value help containers. It cannot be used directly.
|
|
18215
18451
|
*
|
|
18216
18452
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
18217
18453
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -18226,7 +18462,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18226
18462
|
/**
|
|
18227
18463
|
* Constructor for a new `Container`.
|
|
18228
18464
|
*
|
|
18229
|
-
* This is the basis for
|
|
18465
|
+
* This is the basis for various value help containers. It cannot be used directly.
|
|
18230
18466
|
*
|
|
18231
18467
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
18232
18468
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -18289,7 +18525,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18289
18525
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18290
18526
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18291
18527
|
*
|
|
18292
|
-
*
|
|
18528
|
+
* This event is fired if the change is cancelled.
|
|
18293
18529
|
*
|
|
18294
18530
|
* @returns Reference to `this` in order to allow method chaining
|
|
18295
18531
|
*/
|
|
@@ -18315,7 +18551,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18315
18551
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18316
18552
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18317
18553
|
*
|
|
18318
|
-
*
|
|
18554
|
+
* This event is fired if the change is cancelled.
|
|
18319
18555
|
*
|
|
18320
18556
|
* @returns Reference to `this` in order to allow method chaining
|
|
18321
18557
|
*/
|
|
@@ -18336,7 +18572,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18336
18572
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18337
18573
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18338
18574
|
*
|
|
18339
|
-
*
|
|
18575
|
+
* This event is fired if the value help is closed.
|
|
18340
18576
|
*
|
|
18341
18577
|
* @returns Reference to `this` in order to allow method chaining
|
|
18342
18578
|
*/
|
|
@@ -18362,7 +18598,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18362
18598
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18363
18599
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18364
18600
|
*
|
|
18365
|
-
*
|
|
18601
|
+
* This event is fired if the value help is closed.
|
|
18366
18602
|
*
|
|
18367
18603
|
* @returns Reference to `this` in order to allow method chaining
|
|
18368
18604
|
*/
|
|
@@ -18383,7 +18619,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18383
18619
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18384
18620
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18385
18621
|
*
|
|
18386
|
-
*
|
|
18622
|
+
* This event is fired if a change of the value help is confirmed.
|
|
18387
18623
|
*
|
|
18388
18624
|
* @returns Reference to `this` in order to allow method chaining
|
|
18389
18625
|
*/
|
|
@@ -18409,7 +18645,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18409
18645
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18410
18646
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18411
18647
|
*
|
|
18412
|
-
*
|
|
18648
|
+
* This event is fired if a change of the value help is confirmed.
|
|
18413
18649
|
*
|
|
18414
18650
|
* @returns Reference to `this` in order to allow method chaining
|
|
18415
18651
|
*/
|
|
@@ -18430,7 +18666,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18430
18666
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18431
18667
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18432
18668
|
*
|
|
18433
|
-
*
|
|
18669
|
+
* This event is fired if a navigation has been executed in the content of the container.
|
|
18434
18670
|
*
|
|
18435
18671
|
* @returns Reference to `this` in order to allow method chaining
|
|
18436
18672
|
*/
|
|
@@ -18456,7 +18692,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18456
18692
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18457
18693
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18458
18694
|
*
|
|
18459
|
-
*
|
|
18695
|
+
* This event is fired if a navigation has been executed in the content of the container.
|
|
18460
18696
|
*
|
|
18461
18697
|
* @returns Reference to `this` in order to allow method chaining
|
|
18462
18698
|
*/
|
|
@@ -18477,7 +18713,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18477
18713
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18478
18714
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18479
18715
|
*
|
|
18480
|
-
*
|
|
18716
|
+
* This event is fired if the value help is opened.
|
|
18481
18717
|
*
|
|
18482
18718
|
* @returns Reference to `this` in order to allow method chaining
|
|
18483
18719
|
*/
|
|
@@ -18503,7 +18739,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18503
18739
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18504
18740
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18505
18741
|
*
|
|
18506
|
-
*
|
|
18742
|
+
* This event is fired if the value help is opened.
|
|
18507
18743
|
*
|
|
18508
18744
|
* @returns Reference to `this` in order to allow method chaining
|
|
18509
18745
|
*/
|
|
@@ -18525,7 +18761,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18525
18761
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18526
18762
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18527
18763
|
*
|
|
18528
|
-
*
|
|
18764
|
+
* This event is fired if the container requests the delegate content.
|
|
18529
18765
|
*
|
|
18530
18766
|
* @returns Reference to `this` in order to allow method chaining
|
|
18531
18767
|
*/
|
|
@@ -18552,7 +18788,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18552
18788
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18553
18789
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18554
18790
|
*
|
|
18555
|
-
*
|
|
18791
|
+
* This event is fired if the container requests the delegate content.
|
|
18556
18792
|
*
|
|
18557
18793
|
* @returns Reference to `this` in order to allow method chaining
|
|
18558
18794
|
*/
|
|
@@ -18574,7 +18810,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18574
18810
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18575
18811
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18576
18812
|
*
|
|
18577
|
-
*
|
|
18813
|
+
* This event is fired if the value help should switch to dialog mode.
|
|
18578
18814
|
*
|
|
18579
18815
|
* @returns Reference to `this` in order to allow method chaining
|
|
18580
18816
|
*/
|
|
@@ -18601,7 +18837,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18601
18837
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18602
18838
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18603
18839
|
*
|
|
18604
|
-
*
|
|
18840
|
+
* This event is fired if the value help should switch to dialog mode.
|
|
18605
18841
|
*
|
|
18606
18842
|
* @returns Reference to `this` in order to allow method chaining
|
|
18607
18843
|
*/
|
|
@@ -18622,7 +18858,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18622
18858
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18623
18859
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18624
18860
|
*
|
|
18625
|
-
*
|
|
18861
|
+
* This event is fired if the selected condition has changed.
|
|
18626
18862
|
*
|
|
18627
18863
|
* @returns Reference to `this` in order to allow method chaining
|
|
18628
18864
|
*/
|
|
@@ -18648,7 +18884,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18648
18884
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18649
18885
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Container` itself.
|
|
18650
18886
|
*
|
|
18651
|
-
*
|
|
18887
|
+
* This event is fired if the selected condition has changed.
|
|
18652
18888
|
*
|
|
18653
18889
|
* @returns Reference to `this` in order to allow method chaining
|
|
18654
18890
|
*/
|
|
@@ -18666,7 +18902,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18666
18902
|
/**
|
|
18667
18903
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18668
18904
|
*
|
|
18669
|
-
* Binds the content to the container
|
|
18905
|
+
* Binds the content to the container.
|
|
18670
18906
|
*/
|
|
18671
18907
|
bindContentToContainer(
|
|
18672
18908
|
/**
|
|
@@ -18677,7 +18913,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18677
18913
|
/**
|
|
18678
18914
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18679
18915
|
*
|
|
18680
|
-
* Closes the container control or element
|
|
18916
|
+
* Closes the container control or element.
|
|
18681
18917
|
*/
|
|
18682
18918
|
closeContainer(): void;
|
|
18683
18919
|
/**
|
|
@@ -18931,7 +19167,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18931
19167
|
/**
|
|
18932
19168
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18933
19169
|
*
|
|
18934
|
-
* Gets the
|
|
19170
|
+
* Gets the configuration for a specific content.
|
|
18935
19171
|
*
|
|
18936
19172
|
* @returns configuration
|
|
18937
19173
|
*/
|
|
@@ -18944,20 +19180,20 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18944
19180
|
/**
|
|
18945
19181
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18946
19182
|
*
|
|
18947
|
-
* Returns the container control or element
|
|
19183
|
+
* Returns the container control or element that is opened (for example, a popover or dialog).
|
|
18948
19184
|
*/
|
|
18949
19185
|
getContainerControl(): void;
|
|
18950
19186
|
/**
|
|
18951
19187
|
* Gets content of aggregation {@link #getContent content}.
|
|
18952
19188
|
*
|
|
18953
19189
|
* Content of the container. This aggregation holds the actual controls enabling the user to select items
|
|
18954
|
-
* or create conditions (
|
|
19190
|
+
* or create conditions (for example, tables or condition panels).
|
|
18955
19191
|
*/
|
|
18956
19192
|
getContent(): Content[];
|
|
18957
19193
|
/**
|
|
18958
19194
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18959
19195
|
*
|
|
18960
|
-
* Returns control connected to value help
|
|
19196
|
+
* Returns control connected to value help.
|
|
18961
19197
|
*
|
|
18962
19198
|
* @returns connected control
|
|
18963
19199
|
*/
|
|
@@ -18965,8 +19201,8 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18965
19201
|
/**
|
|
18966
19202
|
* Gets current value of property {@link #getLocalFilterValue localFilterValue}.
|
|
18967
19203
|
*
|
|
18968
|
-
* This property may be used by FilterableListContents to share basic search
|
|
18969
|
-
* scenarios
|
|
19204
|
+
* This property may be used by `FilterableListContents` to share basic search states in collective search
|
|
19205
|
+
* scenarios.
|
|
18970
19206
|
*
|
|
18971
19207
|
* @returns Value of property `localFilterValue`
|
|
18972
19208
|
*/
|
|
@@ -18974,7 +19210,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18974
19210
|
/**
|
|
18975
19211
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18976
19212
|
*
|
|
18977
|
-
* Returns the maximum allowed number of conditions, -1 if no limit is set
|
|
19213
|
+
* Returns the maximum allowed number of conditions, -1 if no limit is set.
|
|
18978
19214
|
*
|
|
18979
19215
|
* @returns maximum allowed number of conditions
|
|
18980
19216
|
*/
|
|
@@ -18982,15 +19218,15 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
18982
19218
|
/**
|
|
18983
19219
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18984
19220
|
*
|
|
18985
|
-
* Returns the
|
|
19221
|
+
* Returns the `Promise` for content creation.
|
|
18986
19222
|
*
|
|
18987
|
-
* @returns Promise for delegate content
|
|
19223
|
+
* @returns `Promise` for delegate content
|
|
18988
19224
|
*/
|
|
18989
19225
|
getRetrieveDelegateContentPromise(): Promise<any>;
|
|
18990
19226
|
/**
|
|
18991
19227
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18992
19228
|
*
|
|
18993
|
-
*
|
|
19229
|
+
* Returns the currently used content.
|
|
18994
19230
|
*
|
|
18995
19231
|
* @returns currently used content
|
|
18996
19232
|
*/
|
|
@@ -19008,7 +19244,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19008
19244
|
/**
|
|
19009
19245
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19010
19246
|
*
|
|
19011
|
-
* Returns the UIArea of the content
|
|
19247
|
+
* Returns the `UIArea` of the content.
|
|
19012
19248
|
*
|
|
19013
19249
|
* @returns The UI area of the content or `null`
|
|
19014
19250
|
*/
|
|
@@ -19016,9 +19252,9 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19016
19252
|
/**
|
|
19017
19253
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19018
19254
|
*
|
|
19019
|
-
* Handles the `cancelled` event of the content
|
|
19255
|
+
* Handles the `cancelled` event of the content.
|
|
19020
19256
|
*
|
|
19021
|
-
* Here the {@link #
|
|
19257
|
+
* Here the {@link #event:cancel cancel} event needs to be fired.
|
|
19022
19258
|
*/
|
|
19023
19259
|
handleCanceled(
|
|
19024
19260
|
/**
|
|
@@ -19029,7 +19265,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19029
19265
|
/**
|
|
19030
19266
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19031
19267
|
*
|
|
19032
|
-
* Handles the `closed` event of the container control or element
|
|
19268
|
+
* Handles the `closed` event of the container control or element.
|
|
19033
19269
|
*/
|
|
19034
19270
|
handleClosed(
|
|
19035
19271
|
/**
|
|
@@ -19040,9 +19276,9 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19040
19276
|
/**
|
|
19041
19277
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19042
19278
|
*
|
|
19043
|
-
* Handles the `confirmed` event of the content
|
|
19279
|
+
* Handles the `confirmed` event of the content.
|
|
19044
19280
|
*
|
|
19045
|
-
* Here the {@link #
|
|
19281
|
+
* Here the {@link #event:confirm confirm} event needs to be fired.
|
|
19046
19282
|
*/
|
|
19047
19283
|
handleConfirmed(
|
|
19048
19284
|
/**
|
|
@@ -19053,7 +19289,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19053
19289
|
/**
|
|
19054
19290
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19055
19291
|
*
|
|
19056
|
-
* Handles the `requestSwitchToDialog` event of the content
|
|
19292
|
+
* Handles the `requestSwitchToDialog` event of the content.
|
|
19057
19293
|
*/
|
|
19058
19294
|
handleNavigated(
|
|
19059
19295
|
/**
|
|
@@ -19064,7 +19300,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19064
19300
|
/**
|
|
19065
19301
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19066
19302
|
*
|
|
19067
|
-
* Handles the `opened` event of the container control or element
|
|
19303
|
+
* Handles the `opened` event of the container control or element.
|
|
19068
19304
|
*/
|
|
19069
19305
|
handleOpened(
|
|
19070
19306
|
/**
|
|
@@ -19075,7 +19311,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19075
19311
|
/**
|
|
19076
19312
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19077
19313
|
*
|
|
19078
|
-
* Handles the `navigated` event of the content
|
|
19314
|
+
* Handles the `navigated` event of the content.
|
|
19079
19315
|
*/
|
|
19080
19316
|
handleRequestSwitchToDialog(
|
|
19081
19317
|
/**
|
|
@@ -19086,9 +19322,9 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19086
19322
|
/**
|
|
19087
19323
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19088
19324
|
*
|
|
19089
|
-
* Handles the `select` event of the content
|
|
19325
|
+
* Handles the `select` event of the content.
|
|
19090
19326
|
*
|
|
19091
|
-
* Here the {@link #
|
|
19327
|
+
* Here the {@link #event:select select} event needs to be fired.
|
|
19092
19328
|
*/
|
|
19093
19329
|
handleSelect(
|
|
19094
19330
|
/**
|
|
@@ -19128,9 +19364,9 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19128
19364
|
/**
|
|
19129
19365
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19130
19366
|
*
|
|
19131
|
-
* Returns if the value help is used for single selection
|
|
19367
|
+
* Returns if the value help is used for single selection.
|
|
19132
19368
|
*
|
|
19133
|
-
* @returns `true` id single
|
|
19369
|
+
* @returns `true` id single selection
|
|
19134
19370
|
*/
|
|
19135
19371
|
isSingleSelect(): boolean;
|
|
19136
19372
|
/**
|
|
@@ -19147,7 +19383,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19147
19383
|
/**
|
|
19148
19384
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19149
19385
|
*
|
|
19150
|
-
* Observes property and aggregation changes
|
|
19386
|
+
* Observes property and aggregation changes.
|
|
19151
19387
|
*/
|
|
19152
19388
|
observeChanges(
|
|
19153
19389
|
/**
|
|
@@ -19158,7 +19394,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19158
19394
|
/**
|
|
19159
19395
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19160
19396
|
*
|
|
19161
|
-
* Opens the container control or element
|
|
19397
|
+
* Opens the container control or element.
|
|
19162
19398
|
*/
|
|
19163
19399
|
openContainer(
|
|
19164
19400
|
/**
|
|
@@ -19173,7 +19409,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19173
19409
|
/**
|
|
19174
19410
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19175
19411
|
*
|
|
19176
|
-
* Places the content into the container control or element
|
|
19412
|
+
* Places the content into the container control or element.
|
|
19177
19413
|
*
|
|
19178
19414
|
* @returns container
|
|
19179
19415
|
*/
|
|
@@ -19205,8 +19441,8 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19205
19441
|
/**
|
|
19206
19442
|
* Sets a new value for property {@link #getLocalFilterValue localFilterValue}.
|
|
19207
19443
|
*
|
|
19208
|
-
* This property may be used by FilterableListContents to share basic search
|
|
19209
|
-
* scenarios
|
|
19444
|
+
* This property may be used by `FilterableListContents` to share basic search states in collective search
|
|
19445
|
+
* scenarios.
|
|
19210
19446
|
*
|
|
19211
19447
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
19212
19448
|
*
|
|
@@ -19238,7 +19474,7 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19238
19474
|
/**
|
|
19239
19475
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19240
19476
|
*
|
|
19241
|
-
* Unbinds the content from the container
|
|
19477
|
+
* Unbinds the content from the container.
|
|
19242
19478
|
*/
|
|
19243
19479
|
unbindContentFromContainer(
|
|
19244
19480
|
/**
|
|
@@ -19255,98 +19491,89 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19255
19491
|
title?: string | PropertyBindingInfo;
|
|
19256
19492
|
|
|
19257
19493
|
/**
|
|
19258
|
-
* This property may be used by FilterableListContents to share basic search
|
|
19259
|
-
* scenarios
|
|
19494
|
+
* This property may be used by `FilterableListContents` to share basic search states in collective search
|
|
19495
|
+
* scenarios.
|
|
19260
19496
|
*/
|
|
19261
19497
|
localFilterValue?: string | PropertyBindingInfo;
|
|
19262
19498
|
|
|
19263
19499
|
/**
|
|
19264
19500
|
* Content of the container. This aggregation holds the actual controls enabling the user to select items
|
|
19265
|
-
* or create conditions (
|
|
19501
|
+
* or create conditions (for example, tables or condition panels).
|
|
19266
19502
|
*/
|
|
19267
19503
|
content?: Content[] | Content | AggregationBindingInfo | `{${string}}`;
|
|
19268
19504
|
|
|
19269
19505
|
/**
|
|
19270
|
-
*
|
|
19506
|
+
* This event is fired if the selected condition has changed.
|
|
19271
19507
|
*/
|
|
19272
|
-
select?: (oEvent:
|
|
19508
|
+
select?: (oEvent: Container$SelectEvent) => void;
|
|
19273
19509
|
|
|
19274
19510
|
/**
|
|
19275
|
-
*
|
|
19511
|
+
* This event is fired if a change of the value help is confirmed.
|
|
19276
19512
|
*/
|
|
19277
|
-
confirm?: (oEvent:
|
|
19513
|
+
confirm?: (oEvent: Container$ConfirmEvent) => void;
|
|
19278
19514
|
|
|
19279
19515
|
/**
|
|
19280
|
-
*
|
|
19516
|
+
* This event is fired if the value help is opened.
|
|
19281
19517
|
*/
|
|
19282
19518
|
opened?: (oEvent: Event) => void;
|
|
19283
19519
|
|
|
19284
19520
|
/**
|
|
19285
|
-
*
|
|
19521
|
+
* This event is fired if the value help is closed.
|
|
19286
19522
|
*/
|
|
19287
19523
|
closed?: (oEvent: Event) => void;
|
|
19288
19524
|
|
|
19289
19525
|
/**
|
|
19290
|
-
*
|
|
19526
|
+
* This event is fired if the change is cancelled.
|
|
19291
19527
|
*/
|
|
19292
19528
|
cancel?: (oEvent: Event) => void;
|
|
19293
19529
|
|
|
19294
19530
|
/**
|
|
19295
|
-
*
|
|
19531
|
+
* This event is fired if the container requests the delegate content.
|
|
19296
19532
|
*/
|
|
19297
19533
|
requestDelegateContent?: (
|
|
19298
|
-
oEvent:
|
|
19534
|
+
oEvent: Container$RequestDelegateContentEvent
|
|
19299
19535
|
) => void;
|
|
19300
19536
|
|
|
19301
19537
|
/**
|
|
19302
|
-
*
|
|
19538
|
+
* This event is fired if the value help should switch to dialog mode.
|
|
19303
19539
|
*/
|
|
19304
19540
|
requestSwitchToDialog?: (oEvent: Event) => void;
|
|
19305
19541
|
|
|
19306
19542
|
/**
|
|
19307
|
-
*
|
|
19543
|
+
* This event is fired if a navigation has been executed in the content of the container.
|
|
19308
19544
|
*/
|
|
19309
|
-
navigated?: (oEvent:
|
|
19545
|
+
navigated?: (oEvent: Container$NavigatedEvent) => void;
|
|
19310
19546
|
}
|
|
19311
19547
|
|
|
19312
19548
|
export interface Container$CancelEventParameters {}
|
|
19313
19549
|
|
|
19314
|
-
|
|
19315
|
-
|
|
19316
|
-
|
|
19317
|
-
|
|
19318
|
-
export type $ContainerCancelEventParameters = Container$CancelEventParameters;
|
|
19319
|
-
|
|
19320
|
-
export type Container$CancelEvent = Event<Container$CancelEventParameters>;
|
|
19550
|
+
export type Container$CancelEvent = Event<
|
|
19551
|
+
Container$CancelEventParameters,
|
|
19552
|
+
Container
|
|
19553
|
+
>;
|
|
19321
19554
|
|
|
19322
19555
|
export interface Container$ClosedEventParameters {}
|
|
19323
19556
|
|
|
19324
|
-
|
|
19325
|
-
|
|
19326
|
-
|
|
19327
|
-
|
|
19328
|
-
export type $ContainerClosedEventParameters = Container$ClosedEventParameters;
|
|
19329
|
-
|
|
19330
|
-
export type Container$ClosedEvent = Event<Container$ClosedEventParameters>;
|
|
19557
|
+
export type Container$ClosedEvent = Event<
|
|
19558
|
+
Container$ClosedEventParameters,
|
|
19559
|
+
Container
|
|
19560
|
+
>;
|
|
19331
19561
|
|
|
19332
19562
|
export interface Container$ConfirmEventParameters {
|
|
19333
19563
|
/**
|
|
19334
|
-
*
|
|
19564
|
+
* `true` if the value help needs to be closed
|
|
19335
19565
|
*/
|
|
19336
19566
|
close?: boolean;
|
|
19337
19567
|
}
|
|
19338
19568
|
|
|
19339
|
-
|
|
19340
|
-
|
|
19341
|
-
|
|
19342
|
-
|
|
19343
|
-
export type $ContainerConfirmEventParameters = Container$ConfirmEventParameters;
|
|
19344
|
-
|
|
19345
|
-
export type Container$ConfirmEvent = Event<Container$ConfirmEventParameters>;
|
|
19569
|
+
export type Container$ConfirmEvent = Event<
|
|
19570
|
+
Container$ConfirmEventParameters,
|
|
19571
|
+
Container
|
|
19572
|
+
>;
|
|
19346
19573
|
|
|
19347
19574
|
export interface Container$NavigatedEventParameters {
|
|
19348
19575
|
/**
|
|
19349
|
-
*
|
|
19576
|
+
* `true` if the focus should be set back to the field.
|
|
19350
19577
|
*/
|
|
19351
19578
|
leaveFocus?: boolean;
|
|
19352
19579
|
|
|
@@ -19363,48 +19590,36 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19363
19590
|
itemId?: string;
|
|
19364
19591
|
}
|
|
19365
19592
|
|
|
19366
|
-
|
|
19367
|
-
|
|
19368
|
-
|
|
19369
|
-
|
|
19370
|
-
export type $ContainerNavigatedEventParameters = Container$NavigatedEventParameters;
|
|
19371
|
-
|
|
19372
|
-
export type Container$NavigatedEvent = Event<Container$NavigatedEventParameters>;
|
|
19593
|
+
export type Container$NavigatedEvent = Event<
|
|
19594
|
+
Container$NavigatedEventParameters,
|
|
19595
|
+
Container
|
|
19596
|
+
>;
|
|
19373
19597
|
|
|
19374
19598
|
export interface Container$OpenedEventParameters {}
|
|
19375
19599
|
|
|
19376
|
-
|
|
19377
|
-
|
|
19378
|
-
|
|
19379
|
-
|
|
19380
|
-
export type $ContainerOpenedEventParameters = Container$OpenedEventParameters;
|
|
19381
|
-
|
|
19382
|
-
export type Container$OpenedEvent = Event<Container$OpenedEventParameters>;
|
|
19600
|
+
export type Container$OpenedEvent = Event<
|
|
19601
|
+
Container$OpenedEventParameters,
|
|
19602
|
+
Container
|
|
19603
|
+
>;
|
|
19383
19604
|
|
|
19384
19605
|
export interface Container$RequestDelegateContentEventParameters {
|
|
19385
19606
|
/**
|
|
19386
|
-
* Content wrapper
|
|
19607
|
+
* Content wrapper ID for which contents are requested
|
|
19387
19608
|
*/
|
|
19388
19609
|
contentId?: string;
|
|
19389
19610
|
}
|
|
19390
19611
|
|
|
19391
|
-
|
|
19392
|
-
|
|
19393
|
-
|
|
19394
|
-
|
|
19395
|
-
export type $ContainerRequestDelegateContentEventParameters = Container$RequestDelegateContentEventParameters;
|
|
19396
|
-
|
|
19397
|
-
export type Container$RequestDelegateContentEvent = Event<Container$RequestDelegateContentEventParameters>;
|
|
19612
|
+
export type Container$RequestDelegateContentEvent = Event<
|
|
19613
|
+
Container$RequestDelegateContentEventParameters,
|
|
19614
|
+
Container
|
|
19615
|
+
>;
|
|
19398
19616
|
|
|
19399
19617
|
export interface Container$RequestSwitchToDialogEventParameters {}
|
|
19400
19618
|
|
|
19401
|
-
|
|
19402
|
-
|
|
19403
|
-
|
|
19404
|
-
|
|
19405
|
-
export type $ContainerRequestSwitchToDialogEventParameters = Container$RequestSwitchToDialogEventParameters;
|
|
19406
|
-
|
|
19407
|
-
export type Container$RequestSwitchToDialogEvent = Event<Container$RequestSwitchToDialogEventParameters>;
|
|
19619
|
+
export type Container$RequestSwitchToDialogEvent = Event<
|
|
19620
|
+
Container$RequestSwitchToDialogEventParameters,
|
|
19621
|
+
Container
|
|
19622
|
+
>;
|
|
19408
19623
|
|
|
19409
19624
|
export interface Container$SelectEventParameters {
|
|
19410
19625
|
/**
|
|
@@ -19420,13 +19635,10 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
19420
19635
|
conditions?: object[];
|
|
19421
19636
|
}
|
|
19422
19637
|
|
|
19423
|
-
|
|
19424
|
-
|
|
19425
|
-
|
|
19426
|
-
|
|
19427
|
-
export type $ContainerSelectEventParameters = Container$SelectEventParameters;
|
|
19428
|
-
|
|
19429
|
-
export type Container$SelectEvent = Event<Container$SelectEventParameters>;
|
|
19638
|
+
export type Container$SelectEvent = Event<
|
|
19639
|
+
Container$SelectEventParameters,
|
|
19640
|
+
Container
|
|
19641
|
+
>;
|
|
19430
19642
|
}
|
|
19431
19643
|
|
|
19432
19644
|
declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
@@ -19440,6 +19652,8 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19440
19652
|
|
|
19441
19653
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
19442
19654
|
|
|
19655
|
+
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
19656
|
+
|
|
19443
19657
|
import ValueHelp from "sap/ui/mdc/ValueHelp";
|
|
19444
19658
|
|
|
19445
19659
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
@@ -19453,7 +19667,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19453
19667
|
/**
|
|
19454
19668
|
* Constructor for a new `Content`.
|
|
19455
19669
|
*
|
|
19456
|
-
* This is the basis for
|
|
19670
|
+
* This is the basis for various types of value help content. It cannot be used directly.
|
|
19457
19671
|
*
|
|
19458
19672
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
19459
19673
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -19468,7 +19682,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19468
19682
|
/**
|
|
19469
19683
|
* Constructor for a new `Content`.
|
|
19470
19684
|
*
|
|
19471
|
-
* This is the basis for
|
|
19685
|
+
* This is the basis for various types of value help content. It cannot be used directly.
|
|
19472
19686
|
*
|
|
19473
19687
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
19474
19688
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -19520,7 +19734,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19520
19734
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
19521
19735
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
19522
19736
|
*
|
|
19523
|
-
*
|
|
19737
|
+
* This event is fired if the change is cancelled.
|
|
19524
19738
|
*
|
|
19525
19739
|
* @returns Reference to `this` in order to allow method chaining
|
|
19526
19740
|
*/
|
|
@@ -19545,7 +19759,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19545
19759
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
19546
19760
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
19547
19761
|
*
|
|
19548
|
-
*
|
|
19762
|
+
* This event is fired if the change is cancelled.
|
|
19549
19763
|
*
|
|
19550
19764
|
* @returns Reference to `this` in order to allow method chaining
|
|
19551
19765
|
*/
|
|
@@ -19565,7 +19779,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19565
19779
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
19566
19780
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
19567
19781
|
*
|
|
19568
|
-
*
|
|
19782
|
+
* This event is fired if a change of the content is confirmed.
|
|
19569
19783
|
*
|
|
19570
19784
|
* @returns Reference to `this` in order to allow method chaining
|
|
19571
19785
|
*/
|
|
@@ -19590,7 +19804,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19590
19804
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
19591
19805
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
19592
19806
|
*
|
|
19593
|
-
*
|
|
19807
|
+
* This event is fired if a change of the content is confirmed.
|
|
19594
19808
|
*
|
|
19595
19809
|
* @returns Reference to `this` in order to allow method chaining
|
|
19596
19810
|
*/
|
|
@@ -19610,7 +19824,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19610
19824
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
19611
19825
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
19612
19826
|
*
|
|
19613
|
-
*
|
|
19827
|
+
* This event is fired if a navigation has been executed in the content.
|
|
19614
19828
|
*
|
|
19615
19829
|
* @returns Reference to `this` in order to allow method chaining
|
|
19616
19830
|
*/
|
|
@@ -19635,7 +19849,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19635
19849
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
19636
19850
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
19637
19851
|
*
|
|
19638
|
-
*
|
|
19852
|
+
* This event is fired if a navigation has been executed in the content.
|
|
19639
19853
|
*
|
|
19640
19854
|
* @returns Reference to `this` in order to allow method chaining
|
|
19641
19855
|
*/
|
|
@@ -19656,7 +19870,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19656
19870
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
19657
19871
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
19658
19872
|
*
|
|
19659
|
-
*
|
|
19873
|
+
* This event is fired if the value help should switch to dialog mode.
|
|
19660
19874
|
*
|
|
19661
19875
|
* @returns Reference to `this` in order to allow method chaining
|
|
19662
19876
|
*/
|
|
@@ -19682,7 +19896,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19682
19896
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
19683
19897
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
19684
19898
|
*
|
|
19685
|
-
*
|
|
19899
|
+
* This event is fired if the value help should switch to dialog mode.
|
|
19686
19900
|
*
|
|
19687
19901
|
* @returns Reference to `this` in order to allow method chaining
|
|
19688
19902
|
*/
|
|
@@ -19702,7 +19916,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19702
19916
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
19703
19917
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
19704
19918
|
*
|
|
19705
|
-
*
|
|
19919
|
+
* This event is fired if the selected condition has changed.
|
|
19706
19920
|
*
|
|
19707
19921
|
* @returns Reference to `this` in order to allow method chaining
|
|
19708
19922
|
*/
|
|
@@ -19727,7 +19941,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19727
19941
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
19728
19942
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.base.Content` itself.
|
|
19729
19943
|
*
|
|
19730
|
-
*
|
|
19944
|
+
* This event is fired if the selected condition has changed.
|
|
19731
19945
|
*
|
|
19732
19946
|
* @returns Reference to `this` in order to allow method chaining
|
|
19733
19947
|
*/
|
|
@@ -19759,7 +19973,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19759
19973
|
*/
|
|
19760
19974
|
createCondition(
|
|
19761
19975
|
/**
|
|
19762
|
-
* Value of the condition. For item conditions this must be the key.
|
|
19976
|
+
* Value of the condition. For item conditions, this must be the key.
|
|
19763
19977
|
*/
|
|
19764
19978
|
vValue: any,
|
|
19765
19979
|
/**
|
|
@@ -19767,7 +19981,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19767
19981
|
*/
|
|
19768
19982
|
sDescription?: string,
|
|
19769
19983
|
/**
|
|
19770
|
-
*
|
|
19984
|
+
* Payload
|
|
19771
19985
|
*/
|
|
19772
19986
|
oPayload?: object
|
|
19773
19987
|
): ConditionObject;
|
|
@@ -19931,9 +20145,9 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19931
20145
|
/**
|
|
19932
20146
|
* Gets current value of property {@link #getConditions conditions}.
|
|
19933
20147
|
*
|
|
19934
|
-
* Conditions of the value help
|
|
20148
|
+
* Conditions of the value help.
|
|
19935
20149
|
*
|
|
19936
|
-
* **Note:** This property must not be set from outside, it
|
|
20150
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
19937
20151
|
*
|
|
19938
20152
|
* Default value is `[]`.
|
|
19939
20153
|
*
|
|
@@ -19943,9 +20157,9 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19943
20157
|
/**
|
|
19944
20158
|
* Gets current value of property {@link #getConfig config}.
|
|
19945
20159
|
*
|
|
19946
|
-
* Internal configuration
|
|
20160
|
+
* Internal configuration.
|
|
19947
20161
|
*
|
|
19948
|
-
* **Note:** This property must not be set from outside, it
|
|
20162
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
19949
20163
|
*
|
|
19950
20164
|
* Default value is `{}`.
|
|
19951
20165
|
*
|
|
@@ -19955,9 +20169,9 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19955
20169
|
/**
|
|
19956
20170
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19957
20171
|
*
|
|
19958
|
-
* Returns control connected to value help
|
|
20172
|
+
* Returns control connected to value help.
|
|
19959
20173
|
*
|
|
19960
|
-
* @returns
|
|
20174
|
+
* @returns Connected control
|
|
19961
20175
|
*/
|
|
19962
20176
|
getControl(): Control;
|
|
19963
20177
|
/**
|
|
@@ -19965,15 +20179,15 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19965
20179
|
*
|
|
19966
20180
|
* Content control that is put inside the parent container
|
|
19967
20181
|
*
|
|
19968
|
-
* **Note:** This aggregation must not be set from outside, it
|
|
20182
|
+
* **Note:** This aggregation must not be set from outside, it must only be used by the corresponding container.
|
|
19969
20183
|
*/
|
|
19970
20184
|
getDisplayContent(): Control;
|
|
19971
20185
|
/**
|
|
19972
20186
|
* Gets current value of property {@link #getFilterValue filterValue}.
|
|
19973
20187
|
*
|
|
19974
|
-
* Value for filtering ($search)
|
|
20188
|
+
* Value for filtering ($search).
|
|
19975
20189
|
*
|
|
19976
|
-
* **Note:** This property must not be set from outside, it
|
|
20190
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
19977
20191
|
*
|
|
19978
20192
|
* Default value is `empty string`.
|
|
19979
20193
|
*
|
|
@@ -19983,11 +20197,11 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
19983
20197
|
/**
|
|
19984
20198
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
19985
20199
|
*
|
|
19986
|
-
* Returns
|
|
20200
|
+
* Returns the maximum allowed number of conditions, -1 if no limit is set.
|
|
19987
20201
|
*
|
|
19988
|
-
* @returns
|
|
20202
|
+
* @returns maximum allowed number of conditions
|
|
19989
20203
|
*/
|
|
19990
|
-
getMaxConditions():
|
|
20204
|
+
getMaxConditions(): int;
|
|
19991
20205
|
/**
|
|
19992
20206
|
* Gets current value of property {@link #getShortTitle shortTitle}.
|
|
19993
20207
|
*
|
|
@@ -20001,7 +20215,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20001
20215
|
/**
|
|
20002
20216
|
* Gets current value of property {@link #getTitle title}.
|
|
20003
20217
|
*
|
|
20004
|
-
* Title text that appears tab header.
|
|
20218
|
+
* Title text that appears in the tab header.
|
|
20005
20219
|
*
|
|
20006
20220
|
* Default value is `empty string`.
|
|
20007
20221
|
*
|
|
@@ -20011,7 +20225,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20011
20225
|
/**
|
|
20012
20226
|
* Gets current value of property {@link #getTokenizerTitle tokenizerTitle}.
|
|
20013
20227
|
*
|
|
20014
|
-
* Title text that appears in the dialog tokenizer panel
|
|
20228
|
+
* Title text that appears in the dialog tokenizer panel if only one content exists.
|
|
20015
20229
|
*
|
|
20016
20230
|
* Default value is `empty string`.
|
|
20017
20231
|
*
|
|
@@ -20021,15 +20235,15 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20021
20235
|
/**
|
|
20022
20236
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20023
20237
|
*
|
|
20024
|
-
*
|
|
20238
|
+
* Returns the used `ValueHelpDelegate`.
|
|
20025
20239
|
*
|
|
20026
20240
|
* @returns `Delegate` module
|
|
20027
20241
|
*/
|
|
20028
|
-
getValueHelpDelegate():
|
|
20242
|
+
getValueHelpDelegate(): BaseDelegate;
|
|
20029
20243
|
/**
|
|
20030
20244
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20031
20245
|
*
|
|
20032
|
-
* Determines the `ValueHelp` instance
|
|
20246
|
+
* Determines the `ValueHelp` instance.
|
|
20033
20247
|
*
|
|
20034
20248
|
* @returns The `ValueHelp` instance
|
|
20035
20249
|
*/
|
|
@@ -20047,7 +20261,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20047
20261
|
/**
|
|
20048
20262
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20049
20263
|
*
|
|
20050
|
-
* Called if the `conditions` property changed
|
|
20264
|
+
* Called if the `conditions` property changed.
|
|
20051
20265
|
*/
|
|
20052
20266
|
handleConditionsUpdate(
|
|
20053
20267
|
/**
|
|
@@ -20058,7 +20272,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20058
20272
|
/**
|
|
20059
20273
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20060
20274
|
*
|
|
20061
|
-
* Called if the `filterValue` property changed
|
|
20275
|
+
* Called if the `filterValue` property changed.
|
|
20062
20276
|
*/
|
|
20063
20277
|
handleFilterValueUpdate(
|
|
20064
20278
|
/**
|
|
@@ -20069,7 +20283,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20069
20283
|
/**
|
|
20070
20284
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20071
20285
|
*
|
|
20072
|
-
* Checks if the parent container is open
|
|
20286
|
+
* Checks if the parent container is open.
|
|
20073
20287
|
*
|
|
20074
20288
|
* @returns `true` if open
|
|
20075
20289
|
*/
|
|
@@ -20077,7 +20291,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20077
20291
|
/**
|
|
20078
20292
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20079
20293
|
*
|
|
20080
|
-
* Checks if the parent container is opening
|
|
20294
|
+
* Checks if the parent container is opening.
|
|
20081
20295
|
*
|
|
20082
20296
|
* @returns `true` if opening
|
|
20083
20297
|
*/
|
|
@@ -20085,33 +20299,33 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20085
20299
|
/**
|
|
20086
20300
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20087
20301
|
*
|
|
20088
|
-
* Returns if the value help is used for single selection
|
|
20302
|
+
* Returns if the value help is used for single selection.
|
|
20089
20303
|
*
|
|
20090
|
-
* @returns `true`
|
|
20304
|
+
* @returns `true` if single selection
|
|
20091
20305
|
*/
|
|
20092
20306
|
isSingleSelect(): boolean;
|
|
20093
20307
|
/**
|
|
20094
20308
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20095
20309
|
*
|
|
20096
|
-
* Determines if the container of the content is used as typeAhead inside the value help
|
|
20310
|
+
* Determines if the container of the content is used as `typeAhead` inside the value help.
|
|
20097
20311
|
*
|
|
20098
|
-
* **Note:** This function is used by the content and must not be used from outside
|
|
20312
|
+
* **Note:** This function is used by the content and must not be used from outside.
|
|
20099
20313
|
*
|
|
20100
|
-
* @returns
|
|
20314
|
+
* @returns `true` if used as `typeahead`
|
|
20101
20315
|
*/
|
|
20102
20316
|
isTypeahead(): boolean;
|
|
20103
20317
|
/**
|
|
20104
20318
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20105
20319
|
*
|
|
20106
|
-
* Determines if delegate of the value help
|
|
20320
|
+
* Determines if delegate of the value help has been initialized.
|
|
20107
20321
|
*
|
|
20108
|
-
* @returns
|
|
20322
|
+
* @returns `true` if delegate has been initialized
|
|
20109
20323
|
*/
|
|
20110
20324
|
isValueHelpDelegateInitialized(): boolean;
|
|
20111
20325
|
/**
|
|
20112
20326
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20113
20327
|
*
|
|
20114
|
-
* Observes property and aggregation changes
|
|
20328
|
+
* Observes property and aggregation changes.
|
|
20115
20329
|
*/
|
|
20116
20330
|
observeChanges(
|
|
20117
20331
|
/**
|
|
@@ -20122,37 +20336,37 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20122
20336
|
/**
|
|
20123
20337
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20124
20338
|
*
|
|
20125
|
-
* Called if ValueHelp connection to
|
|
20339
|
+
* Called if `ValueHelp` connection to a control changed.
|
|
20126
20340
|
*/
|
|
20127
20341
|
onConnectionChange(): void;
|
|
20128
20342
|
/**
|
|
20129
20343
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20130
20344
|
*
|
|
20131
|
-
* Performs logic needed if the container closes
|
|
20345
|
+
* Performs logic needed if the container closes.
|
|
20132
20346
|
*/
|
|
20133
20347
|
onContainerClose(): void;
|
|
20134
20348
|
/**
|
|
20135
20349
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20136
20350
|
*
|
|
20137
|
-
* Performs logic needed if the container opens
|
|
20351
|
+
* Performs logic needed if the container opens.
|
|
20138
20352
|
*/
|
|
20139
20353
|
onContainerOpen(): void;
|
|
20140
20354
|
/**
|
|
20141
20355
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20142
20356
|
*
|
|
20143
|
-
* Determines if the the content needs to provide a scrolling mechanism like a {@link sap.m.ScrollContainer ScrollContainer}
|
|
20357
|
+
* Determines if the the content needs to provide a scrolling mechanism like a {@link sap.m.ScrollContainer ScrollContainer}.
|
|
20144
20358
|
*
|
|
20145
|
-
* **Note:** This function is used by the content and must not be used from outside
|
|
20359
|
+
* **Note:** This function is used by the content and must not be used from outside.
|
|
20146
20360
|
*
|
|
20147
|
-
* @returns
|
|
20361
|
+
* @returns `true` if a scrolling mechanism is needed
|
|
20148
20362
|
*/
|
|
20149
20363
|
provideScrolling(): boolean;
|
|
20150
20364
|
/**
|
|
20151
20365
|
* Sets a new value for property {@link #getConditions conditions}.
|
|
20152
20366
|
*
|
|
20153
|
-
* Conditions of the value help
|
|
20367
|
+
* Conditions of the value help.
|
|
20154
20368
|
*
|
|
20155
|
-
* **Note:** This property must not be set from outside, it
|
|
20369
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
20156
20370
|
*
|
|
20157
20371
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20158
20372
|
*
|
|
@@ -20169,9 +20383,9 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20169
20383
|
/**
|
|
20170
20384
|
* Sets a new value for property {@link #getConfig config}.
|
|
20171
20385
|
*
|
|
20172
|
-
* Internal configuration
|
|
20386
|
+
* Internal configuration.
|
|
20173
20387
|
*
|
|
20174
|
-
* **Note:** This property must not be set from outside, it
|
|
20388
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
20175
20389
|
*
|
|
20176
20390
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20177
20391
|
*
|
|
@@ -20199,9 +20413,9 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20199
20413
|
/**
|
|
20200
20414
|
* Sets a new value for property {@link #getFilterValue filterValue}.
|
|
20201
20415
|
*
|
|
20202
|
-
* Value for filtering ($search)
|
|
20416
|
+
* Value for filtering ($search).
|
|
20203
20417
|
*
|
|
20204
|
-
* **Note:** This property must not be set from outside, it
|
|
20418
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
20205
20419
|
*
|
|
20206
20420
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20207
20421
|
*
|
|
@@ -20235,7 +20449,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20235
20449
|
/**
|
|
20236
20450
|
* Sets a new value for property {@link #getTitle title}.
|
|
20237
20451
|
*
|
|
20238
|
-
* Title text that appears tab header.
|
|
20452
|
+
* Title text that appears in the tab header.
|
|
20239
20453
|
*
|
|
20240
20454
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20241
20455
|
*
|
|
@@ -20252,7 +20466,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20252
20466
|
/**
|
|
20253
20467
|
* Sets a new value for property {@link #getTokenizerTitle tokenizerTitle}.
|
|
20254
20468
|
*
|
|
20255
|
-
* Title text that appears in the dialog tokenizer panel
|
|
20469
|
+
* Title text that appears in the dialog tokenizer panel if only one content exists.
|
|
20256
20470
|
*
|
|
20257
20471
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20258
20472
|
*
|
|
@@ -20287,7 +20501,7 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20287
20501
|
|
|
20288
20502
|
export interface $ContentSettings extends $ElementSettings {
|
|
20289
20503
|
/**
|
|
20290
|
-
* Title text that appears tab header.
|
|
20504
|
+
* Title text that appears in the tab header.
|
|
20291
20505
|
*/
|
|
20292
20506
|
title?: string | PropertyBindingInfo;
|
|
20293
20507
|
|
|
@@ -20297,28 +20511,28 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20297
20511
|
shortTitle?: string | PropertyBindingInfo;
|
|
20298
20512
|
|
|
20299
20513
|
/**
|
|
20300
|
-
* Title text that appears in the dialog tokenizer panel
|
|
20514
|
+
* Title text that appears in the dialog tokenizer panel if only one content exists.
|
|
20301
20515
|
*/
|
|
20302
20516
|
tokenizerTitle?: string | PropertyBindingInfo;
|
|
20303
20517
|
|
|
20304
20518
|
/**
|
|
20305
|
-
* Conditions of the value help
|
|
20519
|
+
* Conditions of the value help.
|
|
20306
20520
|
*
|
|
20307
|
-
* **Note:** This property must not be set from outside, it
|
|
20521
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
20308
20522
|
*/
|
|
20309
20523
|
conditions?: object[] | PropertyBindingInfo | `{${string}}`;
|
|
20310
20524
|
|
|
20311
20525
|
/**
|
|
20312
|
-
* Value for filtering ($search)
|
|
20526
|
+
* Value for filtering ($search).
|
|
20313
20527
|
*
|
|
20314
|
-
* **Note:** This property must not be set from outside, it
|
|
20528
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
20315
20529
|
*/
|
|
20316
20530
|
filterValue?: string | PropertyBindingInfo;
|
|
20317
20531
|
|
|
20318
20532
|
/**
|
|
20319
|
-
* Internal configuration
|
|
20533
|
+
* Internal configuration.
|
|
20320
20534
|
*
|
|
20321
|
-
* **Note:** This property must not be set from outside, it
|
|
20535
|
+
* **Note:** This property must not be set from outside, it must only be used by the corresponding container.
|
|
20322
20536
|
*/
|
|
20323
20537
|
config?: object | PropertyBindingInfo | `{${string}}`;
|
|
20324
20538
|
|
|
@@ -20330,64 +20544,58 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20330
20544
|
/**
|
|
20331
20545
|
* Content control that is put inside the parent container
|
|
20332
20546
|
*
|
|
20333
|
-
* **Note:** This aggregation must not be set from outside, it
|
|
20547
|
+
* **Note:** This aggregation must not be set from outside, it must only be used by the corresponding container.
|
|
20334
20548
|
*/
|
|
20335
20549
|
displayContent?: Control;
|
|
20336
20550
|
|
|
20337
20551
|
/**
|
|
20338
|
-
*
|
|
20552
|
+
* This event is fired if the selected condition has changed.
|
|
20339
20553
|
*/
|
|
20340
|
-
select?: (oEvent:
|
|
20554
|
+
select?: (oEvent: Content$SelectEvent) => void;
|
|
20341
20555
|
|
|
20342
20556
|
/**
|
|
20343
|
-
*
|
|
20557
|
+
* This event is fired if a change of the content is confirmed.
|
|
20344
20558
|
*/
|
|
20345
|
-
confirm?: (oEvent:
|
|
20559
|
+
confirm?: (oEvent: Content$ConfirmEvent) => void;
|
|
20346
20560
|
|
|
20347
20561
|
/**
|
|
20348
|
-
*
|
|
20562
|
+
* This event is fired if the change is cancelled.
|
|
20349
20563
|
*/
|
|
20350
20564
|
cancel?: (oEvent: Event) => void;
|
|
20351
20565
|
|
|
20352
20566
|
/**
|
|
20353
|
-
*
|
|
20567
|
+
* This event is fired if the value help should switch to dialog mode.
|
|
20354
20568
|
*/
|
|
20355
20569
|
requestSwitchToDialog?: (oEvent: Event) => void;
|
|
20356
20570
|
|
|
20357
20571
|
/**
|
|
20358
|
-
*
|
|
20572
|
+
* This event is fired if a navigation has been executed in the content.
|
|
20359
20573
|
*/
|
|
20360
|
-
navigated?: (oEvent:
|
|
20574
|
+
navigated?: (oEvent: Content$NavigatedEvent) => void;
|
|
20361
20575
|
}
|
|
20362
20576
|
|
|
20363
20577
|
export interface Content$CancelEventParameters {}
|
|
20364
20578
|
|
|
20365
|
-
|
|
20366
|
-
|
|
20367
|
-
|
|
20368
|
-
|
|
20369
|
-
export type $ContentCancelEventParameters = Content$CancelEventParameters;
|
|
20370
|
-
|
|
20371
|
-
export type Content$CancelEvent = Event<Content$CancelEventParameters>;
|
|
20579
|
+
export type Content$CancelEvent = Event<
|
|
20580
|
+
Content$CancelEventParameters,
|
|
20581
|
+
Content
|
|
20582
|
+
>;
|
|
20372
20583
|
|
|
20373
20584
|
export interface Content$ConfirmEventParameters {
|
|
20374
20585
|
/**
|
|
20375
|
-
*
|
|
20586
|
+
* `true` if the value help needs to be closed
|
|
20376
20587
|
*/
|
|
20377
20588
|
close?: boolean;
|
|
20378
20589
|
}
|
|
20379
20590
|
|
|
20380
|
-
|
|
20381
|
-
|
|
20382
|
-
|
|
20383
|
-
|
|
20384
|
-
export type $ContentConfirmEventParameters = Content$ConfirmEventParameters;
|
|
20385
|
-
|
|
20386
|
-
export type Content$ConfirmEvent = Event<Content$ConfirmEventParameters>;
|
|
20591
|
+
export type Content$ConfirmEvent = Event<
|
|
20592
|
+
Content$ConfirmEventParameters,
|
|
20593
|
+
Content
|
|
20594
|
+
>;
|
|
20387
20595
|
|
|
20388
20596
|
export interface Content$NavigatedEventParameters {
|
|
20389
20597
|
/**
|
|
20390
|
-
*
|
|
20598
|
+
* `true` if the focus should be set back to the field.
|
|
20391
20599
|
*/
|
|
20392
20600
|
leaveFocus?: boolean;
|
|
20393
20601
|
|
|
@@ -20404,23 +20612,17 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20404
20612
|
itemId?: string;
|
|
20405
20613
|
}
|
|
20406
20614
|
|
|
20407
|
-
|
|
20408
|
-
|
|
20409
|
-
|
|
20410
|
-
|
|
20411
|
-
export type $ContentNavigatedEventParameters = Content$NavigatedEventParameters;
|
|
20412
|
-
|
|
20413
|
-
export type Content$NavigatedEvent = Event<Content$NavigatedEventParameters>;
|
|
20615
|
+
export type Content$NavigatedEvent = Event<
|
|
20616
|
+
Content$NavigatedEventParameters,
|
|
20617
|
+
Content
|
|
20618
|
+
>;
|
|
20414
20619
|
|
|
20415
20620
|
export interface Content$RequestSwitchToDialogEventParameters {}
|
|
20416
20621
|
|
|
20417
|
-
|
|
20418
|
-
|
|
20419
|
-
|
|
20420
|
-
|
|
20421
|
-
export type $ContentRequestSwitchToDialogEventParameters = Content$RequestSwitchToDialogEventParameters;
|
|
20422
|
-
|
|
20423
|
-
export type Content$RequestSwitchToDialogEvent = Event<Content$RequestSwitchToDialogEventParameters>;
|
|
20622
|
+
export type Content$RequestSwitchToDialogEvent = Event<
|
|
20623
|
+
Content$RequestSwitchToDialogEventParameters,
|
|
20624
|
+
Content
|
|
20625
|
+
>;
|
|
20424
20626
|
|
|
20425
20627
|
export interface Content$SelectEventParameters {
|
|
20426
20628
|
/**
|
|
@@ -20436,13 +20638,10 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
20436
20638
|
conditions?: object[];
|
|
20437
20639
|
}
|
|
20438
20640
|
|
|
20439
|
-
|
|
20440
|
-
|
|
20441
|
-
|
|
20442
|
-
|
|
20443
|
-
export type $ContentSelectEventParameters = Content$SelectEventParameters;
|
|
20444
|
-
|
|
20445
|
-
export type Content$SelectEvent = Event<Content$SelectEventParameters>;
|
|
20641
|
+
export type Content$SelectEvent = Event<
|
|
20642
|
+
Content$SelectEventParameters,
|
|
20643
|
+
Content
|
|
20644
|
+
>;
|
|
20446
20645
|
}
|
|
20447
20646
|
|
|
20448
20647
|
declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
@@ -20471,7 +20670,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
20471
20670
|
/**
|
|
20472
20671
|
* Constructor for a new `FilterableListContent`.
|
|
20473
20672
|
*
|
|
20474
|
-
* This is the basis for
|
|
20673
|
+
* This is the basis for various types of value help content with filter functionality. It cannot be used
|
|
20475
20674
|
* directly.
|
|
20476
20675
|
*
|
|
20477
20676
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
@@ -20487,7 +20686,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
20487
20686
|
/**
|
|
20488
20687
|
* Constructor for a new `FilterableListContent`.
|
|
20489
20688
|
*
|
|
20490
|
-
* This is the basis for
|
|
20689
|
+
* This is the basis for various types of value help content with filter functionality. It cannot be used
|
|
20491
20690
|
* directly.
|
|
20492
20691
|
*
|
|
20493
20692
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
@@ -20537,19 +20736,19 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
20537
20736
|
/**
|
|
20538
20737
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20539
20738
|
*
|
|
20540
|
-
* Applies the filter to the content control
|
|
20739
|
+
* Applies the filter to the content control.
|
|
20541
20740
|
*/
|
|
20542
20741
|
applyFilters(): void;
|
|
20543
20742
|
/**
|
|
20544
20743
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20545
20744
|
*
|
|
20546
|
-
*
|
|
20745
|
+
* Creates a payload for a value.
|
|
20547
20746
|
*
|
|
20548
20747
|
* @returns payload
|
|
20549
20748
|
*/
|
|
20550
20749
|
createConditionPayload(
|
|
20551
20750
|
/**
|
|
20552
|
-
*
|
|
20751
|
+
* Values (key, description)
|
|
20553
20752
|
*/
|
|
20554
20753
|
aValues: any[],
|
|
20555
20754
|
/**
|
|
@@ -20577,16 +20776,17 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
20577
20776
|
/**
|
|
20578
20777
|
* Gets content of aggregation {@link #getFilterBar filterBar}.
|
|
20579
20778
|
*
|
|
20580
|
-
* FilterBar
|
|
20779
|
+
* {@link sap.ui.mdc.filterbar.vh.FilterBar FilterBar} used for filtering.
|
|
20581
20780
|
*/
|
|
20582
20781
|
getFilterBar(): FilterBar;
|
|
20583
20782
|
/**
|
|
20584
20783
|
* Gets current value of property {@link #getFilterFields filterFields}.
|
|
20585
20784
|
*
|
|
20586
|
-
* The fields based on which the table data is filtered. For filtering the value of the `filterValue` property
|
|
20785
|
+
* The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
|
|
20587
20786
|
* is used.
|
|
20588
20787
|
*
|
|
20589
|
-
* If set to `$search
|
|
20788
|
+
* If set to `$search`, and if the used binding supports search requests, a $search request is used for
|
|
20789
|
+
* filtering.
|
|
20590
20790
|
*
|
|
20591
20791
|
* If set to one or more properties, the filters for these properties are used for filtering. These filters
|
|
20592
20792
|
* are set on the `ListBinding` used. The properties need to be separated by commas and enclosed by "*"
|
|
@@ -20614,9 +20814,9 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
20614
20814
|
/**
|
|
20615
20815
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20616
20816
|
*
|
|
20617
|
-
* Gets an item for a BindingContext
|
|
20817
|
+
* Gets an item for a `BindingContext`.
|
|
20618
20818
|
*
|
|
20619
|
-
* @returns Item object containing `key`, `description
|
|
20819
|
+
* @returns Item object containing `key`, `description`, and `payload`
|
|
20620
20820
|
*/
|
|
20621
20821
|
getItemFromContext(
|
|
20622
20822
|
/**
|
|
@@ -20624,9 +20824,9 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
20624
20824
|
*/
|
|
20625
20825
|
oBindingContext: Context,
|
|
20626
20826
|
/**
|
|
20627
|
-
*
|
|
20827
|
+
* Options
|
|
20628
20828
|
*/
|
|
20629
|
-
oOptions
|
|
20829
|
+
oOptions?: object
|
|
20630
20830
|
): object;
|
|
20631
20831
|
/**
|
|
20632
20832
|
* Gets current value of property {@link #getKeyPath keyPath}.
|
|
@@ -20634,8 +20834,6 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
20634
20834
|
* The path of the key field in the content binding. If a table is used as content, this is the binding
|
|
20635
20835
|
* path of the key of the items.
|
|
20636
20836
|
*
|
|
20637
|
-
* If not set, the FieldPath of the assigned field is used.
|
|
20638
|
-
*
|
|
20639
20837
|
* Default value is `empty string`.
|
|
20640
20838
|
*
|
|
20641
20839
|
* @returns Value of property `keyPath`
|
|
@@ -20644,17 +20842,17 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
20644
20842
|
/**
|
|
20645
20843
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20646
20844
|
*
|
|
20647
|
-
* Gets the `BindingInfo` of the content
|
|
20845
|
+
* Gets the `BindingInfo` of the content.
|
|
20648
20846
|
*
|
|
20649
|
-
* @returns ListBindingInfo
|
|
20847
|
+
* @returns `ListBindingInfo`
|
|
20650
20848
|
*/
|
|
20651
20849
|
getListBindingInfo(): AggregationBindingInfo;
|
|
20652
20850
|
/**
|
|
20653
20851
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20654
20852
|
*
|
|
20655
|
-
* Gets the conditions that are
|
|
20853
|
+
* Gets the conditions that are selectable from list content.
|
|
20656
20854
|
*
|
|
20657
|
-
*
|
|
20855
|
+
* These are validated conditions as other conditions are shown in the {@link sap.ui.mdc.valuehelp.content.Conditions Conditions}.
|
|
20658
20856
|
*
|
|
20659
20857
|
* @returns ListBindingInfo
|
|
20660
20858
|
*/
|
|
@@ -20691,10 +20889,11 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
20691
20889
|
/**
|
|
20692
20890
|
* Sets a new value for property {@link #getFilterFields filterFields}.
|
|
20693
20891
|
*
|
|
20694
|
-
* The fields based on which the table data is filtered. For filtering the value of the `filterValue` property
|
|
20892
|
+
* The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
|
|
20695
20893
|
* is used.
|
|
20696
20894
|
*
|
|
20697
|
-
* If set to `$search
|
|
20895
|
+
* If set to `$search`, and if the used binding supports search requests, a $search request is used for
|
|
20896
|
+
* filtering.
|
|
20698
20897
|
*
|
|
20699
20898
|
* If set to one or more properties, the filters for these properties are used for filtering. These filters
|
|
20700
20899
|
* are set on the `ListBinding` used. The properties need to be separated by commas and enclosed by "*"
|
|
@@ -20739,8 +20938,6 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
20739
20938
|
* The path of the key field in the content binding. If a table is used as content, this is the binding
|
|
20740
20939
|
* path of the key of the items.
|
|
20741
20940
|
*
|
|
20742
|
-
* If not set, the FieldPath of the assigned field is used.
|
|
20743
|
-
*
|
|
20744
20941
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20745
20942
|
*
|
|
20746
20943
|
* Default value is `empty string`.
|
|
@@ -20757,10 +20954,11 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
20757
20954
|
|
|
20758
20955
|
export interface $FilterableListContentSettings extends $ListContentSettings {
|
|
20759
20956
|
/**
|
|
20760
|
-
* The fields based on which the table data is filtered. For filtering the value of the `filterValue` property
|
|
20957
|
+
* The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
|
|
20761
20958
|
* is used.
|
|
20762
20959
|
*
|
|
20763
|
-
* If set to `$search
|
|
20960
|
+
* If set to `$search`, and if the used binding supports search requests, a $search request is used for
|
|
20961
|
+
* filtering.
|
|
20764
20962
|
*
|
|
20765
20963
|
* If set to one or more properties, the filters for these properties are used for filtering. These filters
|
|
20766
20964
|
* are set on the `ListBinding` used. The properties need to be separated by commas and enclosed by "*"
|
|
@@ -20773,8 +20971,6 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
20773
20971
|
/**
|
|
20774
20972
|
* The path of the key field in the content binding. If a table is used as content, this is the binding
|
|
20775
20973
|
* path of the key of the items.
|
|
20776
|
-
*
|
|
20777
|
-
* If not set, the FieldPath of the assigned field is used.
|
|
20778
20974
|
*/
|
|
20779
20975
|
keyPath?: string | PropertyBindingInfo;
|
|
20780
20976
|
|
|
@@ -20792,7 +20988,7 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
20792
20988
|
group?: string | PropertyBindingInfo;
|
|
20793
20989
|
|
|
20794
20990
|
/**
|
|
20795
|
-
* FilterBar
|
|
20991
|
+
* {@link sap.ui.mdc.filterbar.vh.FilterBar FilterBar} used for filtering.
|
|
20796
20992
|
*/
|
|
20797
20993
|
filterBar?: FilterBar;
|
|
20798
20994
|
}
|
|
@@ -20819,7 +21015,7 @@ declare module "sap/ui/mdc/valuehelp/base/ListContent" {
|
|
|
20819
21015
|
/**
|
|
20820
21016
|
* Constructor for a new `ListContent`.
|
|
20821
21017
|
*
|
|
20822
|
-
* This is the basis for
|
|
21018
|
+
* This is the basis for various types of value help list content. It cannot be used directly.
|
|
20823
21019
|
*
|
|
20824
21020
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
20825
21021
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -20834,7 +21030,7 @@ declare module "sap/ui/mdc/valuehelp/base/ListContent" {
|
|
|
20834
21030
|
/**
|
|
20835
21031
|
* Constructor for a new `ListContent`.
|
|
20836
21032
|
*
|
|
20837
|
-
* This is the basis for
|
|
21033
|
+
* This is the basis for various types of value help list content. It cannot be used directly.
|
|
20838
21034
|
*
|
|
20839
21035
|
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
20840
21036
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
@@ -20897,15 +21093,15 @@ declare module "sap/ui/mdc/valuehelp/base/ListContent" {
|
|
|
20897
21093
|
/**
|
|
20898
21094
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20899
21095
|
*
|
|
20900
|
-
* Gets the `ListBinding` of the content
|
|
21096
|
+
* Gets the `ListBinding` of the content.
|
|
20901
21097
|
*
|
|
20902
|
-
* @returns ListBinding
|
|
21098
|
+
* @returns `ListBinding`
|
|
20903
21099
|
*/
|
|
20904
21100
|
getListBinding(): ListBinding;
|
|
20905
21101
|
/**
|
|
20906
21102
|
* Gets current value of property {@link #getUseAsValueHelp useAsValueHelp}.
|
|
20907
21103
|
*
|
|
20908
|
-
* If set, the
|
|
21104
|
+
* If set, the list is opened whenever the value help icon is pressed.
|
|
20909
21105
|
*
|
|
20910
21106
|
* Default value is `true`.
|
|
20911
21107
|
*
|
|
@@ -20948,7 +21144,7 @@ declare module "sap/ui/mdc/valuehelp/base/ListContent" {
|
|
|
20948
21144
|
/**
|
|
20949
21145
|
* Sets a new value for property {@link #getUseAsValueHelp useAsValueHelp}.
|
|
20950
21146
|
*
|
|
20951
|
-
* If set, the
|
|
21147
|
+
* If set, the list is opened whenever the value help icon is pressed.
|
|
20952
21148
|
*
|
|
20953
21149
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20954
21150
|
*
|
|
@@ -21001,7 +21197,7 @@ declare module "sap/ui/mdc/valuehelp/base/ListContent" {
|
|
|
21001
21197
|
useFirstMatch?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
21002
21198
|
|
|
21003
21199
|
/**
|
|
21004
|
-
* If set, the
|
|
21200
|
+
* If set, the list is opened whenever the value help icon is pressed.
|
|
21005
21201
|
*/
|
|
21006
21202
|
useAsValueHelp?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
21007
21203
|
}
|
|
@@ -21162,11 +21358,10 @@ declare module "sap/ui/mdc/valuehelp/content/Conditions" {
|
|
|
21162
21358
|
* Optional `FieldHelp`.
|
|
21163
21359
|
*
|
|
21164
21360
|
* This is an association that allows the usage of one `FieldHelp` instance for the value fields for the
|
|
21165
|
-
* `Conditions`. **Note:** The value fields on the conditions UI
|
|
21166
|
-
*
|
|
21167
|
-
*
|
|
21168
|
-
*
|
|
21169
|
-
* default `FieldHelp` used instead.
|
|
21361
|
+
* `Conditions`. **Note:** The value fields on the conditions UI cannot be accessed from outside. The fields
|
|
21362
|
+
* are single-value input, and the display is always set to `FieldDisplay.Value`. Only a `ValueHelp>/code>
|
|
21363
|
+
* with a TypeAhead` and a single-selection `MTable` can be used. **Note:** For `Boolean`, `Date`,
|
|
21364
|
+
* or `Time` types, no `FieldHelp` should be added, but a default `FieldHelp` used instead.
|
|
21170
21365
|
*/
|
|
21171
21366
|
fieldHelp?: ValueHelp | string;
|
|
21172
21367
|
|
|
@@ -21176,10 +21371,9 @@ declare module "sap/ui/mdc/valuehelp/content/Conditions" {
|
|
|
21176
21371
|
* This is an association that allows the usage of one `ValueHelp` instance for the value fields for the
|
|
21177
21372
|
* `Conditions`.
|
|
21178
21373
|
*
|
|
21179
|
-
* **Note:** The value fields on the conditions UI
|
|
21180
|
-
*
|
|
21181
|
-
*
|
|
21182
|
-
* can be used.
|
|
21374
|
+
* **Note:** The value fields on the conditions UI cannot be accessed from outside. The fields are single-value
|
|
21375
|
+
* input, and the display is always set to `FieldDisplay.Value`. Only a `ValueHelp>/code> with a TypeAhead`
|
|
21376
|
+
* and a single-selection `MTable` can be used.
|
|
21183
21377
|
*
|
|
21184
21378
|
* **Note:** For `Boolean`, `Date`, or `Time` types, no `ValueHelp` should be added, but a default `ValueHelp`
|
|
21185
21379
|
* used instead.
|
|
@@ -21206,7 +21400,7 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
|
|
|
21206
21400
|
/**
|
|
21207
21401
|
* @since 1.95.0
|
|
21208
21402
|
*
|
|
21209
|
-
* Content for the {@link sap.ui.mdc.valuehelp.base.Container Container} element showing a list with
|
|
21403
|
+
* Content for the {@link sap.ui.mdc.valuehelp.base.Container Container} element showing a list with fixed
|
|
21210
21404
|
* values.
|
|
21211
21405
|
*/
|
|
21212
21406
|
export default class FixedList extends ListContent {
|
|
@@ -21293,7 +21487,7 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
|
|
|
21293
21487
|
* If set, the items of the list are filtered based on `filterValue`.
|
|
21294
21488
|
*
|
|
21295
21489
|
* 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
|
|
21490
|
+
* small lists, all values are meant to be shown, independent of the typing in the connected field. In this
|
|
21297
21491
|
* case this property must be set to `false`.
|
|
21298
21492
|
*
|
|
21299
21493
|
* If not set, the list opens if the user clicks into the connected field.
|
|
@@ -21316,13 +21510,13 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
|
|
|
21316
21510
|
/**
|
|
21317
21511
|
* Gets content of aggregation {@link #getItems items}.
|
|
21318
21512
|
*
|
|
21319
|
-
* Items of the
|
|
21513
|
+
* Items of the value help.
|
|
21320
21514
|
*
|
|
21321
21515
|
* The `key` of the items is not shown in the list, but is used as a value of the connected field.
|
|
21322
21516
|
*
|
|
21323
21517
|
* If the `additionalText` for all the items is not used, the column will not be displayed.
|
|
21324
21518
|
*
|
|
21325
|
-
* **Note:**
|
|
21519
|
+
* **Note:** Icons are currently not supported.
|
|
21326
21520
|
*/
|
|
21327
21521
|
getItems(): FixedListItem[];
|
|
21328
21522
|
/**
|
|
@@ -21379,7 +21573,7 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
|
|
|
21379
21573
|
* If set, the items of the list are filtered based on `filterValue`.
|
|
21380
21574
|
*
|
|
21381
21575
|
* 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
|
|
21576
|
+
* small lists, all values are meant to be shown, independent of the typing in the connected field. In this
|
|
21383
21577
|
* case this property must be set to `false`.
|
|
21384
21578
|
*
|
|
21385
21579
|
* If not set, the list opens if the user clicks into the connected field.
|
|
@@ -21425,7 +21619,7 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
|
|
|
21425
21619
|
* If set, the items of the list are filtered based on `filterValue`.
|
|
21426
21620
|
*
|
|
21427
21621
|
* 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
|
|
21622
|
+
* small lists, all values are meant to be shown, independent of the typing in the connected field. In this
|
|
21429
21623
|
* case this property must be set to `false`.
|
|
21430
21624
|
*
|
|
21431
21625
|
* If not set, the list opens if the user clicks into the connected field.
|
|
@@ -21433,13 +21627,13 @@ declare module "sap/ui/mdc/valuehelp/content/FixedList" {
|
|
|
21433
21627
|
filterList?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
21434
21628
|
|
|
21435
21629
|
/**
|
|
21436
|
-
* Items of the
|
|
21630
|
+
* Items of the value help.
|
|
21437
21631
|
*
|
|
21438
21632
|
* The `key` of the items is not shown in the list, but is used as a value of the connected field.
|
|
21439
21633
|
*
|
|
21440
21634
|
* If the `additionalText` for all the items is not used, the column will not be displayed.
|
|
21441
21635
|
*
|
|
21442
|
-
* **Note:**
|
|
21636
|
+
* **Note:** Icons are currently not supported.
|
|
21443
21637
|
*/
|
|
21444
21638
|
items?:
|
|
21445
21639
|
| FixedListItem[]
|
|
@@ -21596,11 +21790,11 @@ declare module "sap/ui/mdc/valuehelp/Dialog" {
|
|
|
21596
21790
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
21597
21791
|
|
|
21598
21792
|
/**
|
|
21599
|
-
* Object to label
|
|
21793
|
+
* Object to label groups in the value help dialog.
|
|
21600
21794
|
*/
|
|
21601
21795
|
export type GroupLabel = {
|
|
21602
21796
|
/**
|
|
21603
|
-
* Label with counter. The placeholder for counter needs to defined
|
|
21797
|
+
* Label with counter. The placeholder for counter needs to be defined with `{0}`
|
|
21604
21798
|
*/
|
|
21605
21799
|
label: string;
|
|
21606
21800
|
/**
|
|
@@ -21999,7 +22193,7 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
|
|
|
21999
22193
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
22000
22194
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.content.MTable` itself.
|
|
22001
22195
|
*
|
|
22002
|
-
* This event is fired
|
|
22196
|
+
* This event is fired when the content of the table is updated.
|
|
22003
22197
|
*
|
|
22004
22198
|
* @returns Reference to `this` in order to allow method chaining
|
|
22005
22199
|
*/
|
|
@@ -22026,7 +22220,7 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
|
|
|
22026
22220
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
22027
22221
|
* otherwise it will be bound to this `sap.ui.mdc.valuehelp.content.MTable` itself.
|
|
22028
22222
|
*
|
|
22029
|
-
* This event is fired
|
|
22223
|
+
* This event is fired when the content of the table is updated.
|
|
22030
22224
|
*
|
|
22031
22225
|
* @returns Reference to `this` in order to allow method chaining
|
|
22032
22226
|
*/
|
|
@@ -22081,11 +22275,11 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
|
|
|
22081
22275
|
/**
|
|
22082
22276
|
* Gets content of aggregation {@link #getTable table}.
|
|
22083
22277
|
*
|
|
22084
|
-
* Table
|
|
22278
|
+
* Table that is used in the value help.
|
|
22085
22279
|
*
|
|
22086
22280
|
* **Note:** Set the right selection mode (multiple selection or single selection) as it cannot be determined
|
|
22087
|
-
* automatically for every case. (
|
|
22088
|
-
* controls only single selection from table might be wanted.)
|
|
22281
|
+
* automatically for every case. (For type-ahead and also for multi-value {@link sap.ui.mdc.FilterField FilterField }
|
|
22282
|
+
* controls, only single selection from the table might be wanted.)
|
|
22089
22283
|
*/
|
|
22090
22284
|
getTable(): Table;
|
|
22091
22285
|
/**
|
|
@@ -22103,29 +22297,26 @@ declare module "sap/ui/mdc/valuehelp/content/MTable" {
|
|
|
22103
22297
|
|
|
22104
22298
|
export interface $MTableSettings extends $FilterableListContentSettings {
|
|
22105
22299
|
/**
|
|
22106
|
-
* Table
|
|
22300
|
+
* Table that is used in the value help.
|
|
22107
22301
|
*
|
|
22108
22302
|
* **Note:** Set the right selection mode (multiple selection or single selection) as it cannot be determined
|
|
22109
|
-
* automatically for every case. (
|
|
22110
|
-
* controls only single selection from table might be wanted.)
|
|
22303
|
+
* automatically for every case. (For type-ahead and also for multi-value {@link sap.ui.mdc.FilterField FilterField }
|
|
22304
|
+
* controls, only single selection from the table might be wanted.)
|
|
22111
22305
|
*/
|
|
22112
22306
|
table?: Table;
|
|
22113
22307
|
|
|
22114
22308
|
/**
|
|
22115
|
-
* This event is fired
|
|
22309
|
+
* This event is fired when the content of the table is updated.
|
|
22116
22310
|
*/
|
|
22117
22311
|
contentUpdated?: (oEvent: Event) => void;
|
|
22118
22312
|
}
|
|
22119
22313
|
|
|
22120
22314
|
export interface MTable$ContentUpdatedEventParameters {}
|
|
22121
22315
|
|
|
22122
|
-
|
|
22123
|
-
|
|
22124
|
-
|
|
22125
|
-
|
|
22126
|
-
export type $MTableContentUpdatedEventParameters = MTable$ContentUpdatedEventParameters;
|
|
22127
|
-
|
|
22128
|
-
export type MTable$ContentUpdatedEvent = Event<MTable$ContentUpdatedEventParameters>;
|
|
22316
|
+
export type MTable$ContentUpdatedEvent = Event<
|
|
22317
|
+
MTable$ContentUpdatedEventParameters,
|
|
22318
|
+
MTable
|
|
22319
|
+
>;
|
|
22129
22320
|
}
|
|
22130
22321
|
|
|
22131
22322
|
declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
@@ -22215,9 +22406,9 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
|
22215
22406
|
* Controls the possibility to open this popover container by clicking on a connected control, even if no
|
|
22216
22407
|
* content enforces it.
|
|
22217
22408
|
*
|
|
22218
|
-
* **Note:** By default, a
|
|
22219
|
-
* control. This property enables scenarios
|
|
22220
|
-
* or recently entered values)
|
|
22409
|
+
* **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
|
|
22410
|
+
* control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
|
|
22411
|
+
* or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
|
|
22221
22412
|
*
|
|
22222
22413
|
* Default value is `false`.
|
|
22223
22414
|
*
|
|
@@ -22229,11 +22420,11 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
|
22229
22420
|
*
|
|
22230
22421
|
* Gets current value of property {@link #getOpensOnFocus opensOnFocus}.
|
|
22231
22422
|
*
|
|
22232
|
-
* Controls the possibility to open this popover container by focussing a connected control
|
|
22423
|
+
* Controls the possibility to open this popover container by focussing on a connected control.
|
|
22233
22424
|
*
|
|
22234
|
-
* **Note:** By default, a
|
|
22235
|
-
* control. This property enables scenarios
|
|
22236
|
-
* or recently entered values)
|
|
22425
|
+
* **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
|
|
22426
|
+
* control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
|
|
22427
|
+
* or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
|
|
22237
22428
|
*
|
|
22238
22429
|
* Default value is `false`.
|
|
22239
22430
|
*
|
|
@@ -22248,9 +22439,9 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
|
22248
22439
|
* Controls the possibility to open this popover container by clicking on a connected control, even if no
|
|
22249
22440
|
* content enforces it.
|
|
22250
22441
|
*
|
|
22251
|
-
* **Note:** By default, a
|
|
22252
|
-
* control. This property enables scenarios
|
|
22253
|
-
* or recently entered values)
|
|
22442
|
+
* **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
|
|
22443
|
+
* control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
|
|
22444
|
+
* or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
|
|
22254
22445
|
*
|
|
22255
22446
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
22256
22447
|
*
|
|
@@ -22269,11 +22460,11 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
|
22269
22460
|
*
|
|
22270
22461
|
* Sets a new value for property {@link #getOpensOnFocus opensOnFocus}.
|
|
22271
22462
|
*
|
|
22272
|
-
* Controls the possibility to open this popover container by focussing a connected control
|
|
22463
|
+
* Controls the possibility to open this popover container by focussing on a connected control.
|
|
22273
22464
|
*
|
|
22274
|
-
* **Note:** By default, a
|
|
22275
|
-
* control. This property enables scenarios
|
|
22276
|
-
* or recently entered values)
|
|
22465
|
+
* **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
|
|
22466
|
+
* control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
|
|
22467
|
+
* or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
|
|
22277
22468
|
*
|
|
22278
22469
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
22279
22470
|
*
|
|
@@ -22296,20 +22487,20 @@ declare module "sap/ui/mdc/valuehelp/Popover" {
|
|
|
22296
22487
|
* Controls the possibility to open this popover container by clicking on a connected control, even if no
|
|
22297
22488
|
* content enforces it.
|
|
22298
22489
|
*
|
|
22299
|
-
* **Note:** By default, a
|
|
22300
|
-
* control. This property enables scenarios
|
|
22301
|
-
* or recently entered values)
|
|
22490
|
+
* **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
|
|
22491
|
+
* control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
|
|
22492
|
+
* or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
|
|
22302
22493
|
*/
|
|
22303
22494
|
opensOnClick?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
22304
22495
|
|
|
22305
22496
|
/**
|
|
22306
22497
|
* @since 1.112.0
|
|
22307
22498
|
*
|
|
22308
|
-
* Controls the possibility to open this popover container by focussing a connected control
|
|
22499
|
+
* Controls the possibility to open this popover container by focussing on a connected control.
|
|
22309
22500
|
*
|
|
22310
|
-
* **Note:** By default, a
|
|
22311
|
-
* control. This property enables scenarios
|
|
22312
|
-
* or recently entered values)
|
|
22501
|
+
* **Note:** By default, a type-ahead is only shown to provide suggestions when users enter input in a connected
|
|
22502
|
+
* control. This property enables scenarios where popovers need to be shown earlier (for example, recommendations
|
|
22503
|
+
* or recently entered values). See also {@link sap.ui.mdc.ValueHelpDelegate.showTypeahead showTypeahead}
|
|
22313
22504
|
*/
|
|
22314
22505
|
opensOnFocus?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
22315
22506
|
}
|
|
@@ -22321,6 +22512,8 @@ declare namespace sap {
|
|
|
22321
22512
|
|
|
22322
22513
|
"sap/ui/mdc/actiontoolbar/ActionToolbarAction": undefined;
|
|
22323
22514
|
|
|
22515
|
+
"sap/ui/mdc/AggregationBaseDelegate": undefined;
|
|
22516
|
+
|
|
22324
22517
|
"sap/ui/mdc/BaseDelegate": undefined;
|
|
22325
22518
|
|
|
22326
22519
|
"sap/ui/mdc/Chart": undefined;
|
|
@@ -22381,8 +22574,6 @@ declare namespace sap {
|
|
|
22381
22574
|
|
|
22382
22575
|
"sap/ui/mdc/enum/OperatorValueType": undefined;
|
|
22383
22576
|
|
|
22384
|
-
"sap/ui/mdc/enum/PersistenceMode": undefined;
|
|
22385
|
-
|
|
22386
22577
|
"sap/ui/mdc/enum/ProcessingStrategy": undefined;
|
|
22387
22578
|
|
|
22388
22579
|
"sap/ui/mdc/enum/PropagationReason": undefined;
|
|
@@ -22417,8 +22608,6 @@ declare namespace sap {
|
|
|
22417
22608
|
|
|
22418
22609
|
"sap/ui/mdc/enums/OperatorValueType": undefined;
|
|
22419
22610
|
|
|
22420
|
-
"sap/ui/mdc/enums/PersistenceMode": undefined;
|
|
22421
|
-
|
|
22422
22611
|
"sap/ui/mdc/enums/ProcessingStrategy": undefined;
|
|
22423
22612
|
|
|
22424
22613
|
"sap/ui/mdc/enums/ReasonMode": undefined;
|
|
@@ -22501,8 +22690,6 @@ declare namespace sap {
|
|
|
22501
22690
|
|
|
22502
22691
|
"sap/ui/mdc/filterbar/vh/FilterBar": undefined;
|
|
22503
22692
|
|
|
22504
|
-
"sap/ui/mdc/filterbar/vh/FilterContainer": undefined;
|
|
22505
|
-
|
|
22506
22693
|
"sap/ui/mdc/FilterBarDelegate": undefined;
|
|
22507
22694
|
|
|
22508
22695
|
"sap/ui/mdc/FilterField": undefined;
|