@sapui5/types 1.120.11 → 1.120.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +13 -10
- package/README.md +1 -1
- package/package.json +1 -1
- package/types/sap.chart.d.ts +58 -6
- package/types/sap.esh.search.ui.d.ts +16 -2
- package/types/sap.f.d.ts +372 -54
- package/types/sap.fe.core.d.ts +11 -3
- package/types/sap.fe.macros.d.ts +96 -12
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +1001 -139
- package/types/sap.insights.d.ts +4 -2
- package/types/sap.m.d.ts +3123 -276
- package/types/sap.makit.d.ts +115 -14
- package/types/sap.me.d.ts +84 -7
- package/types/sap.ndc.d.ts +22 -2
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.sac.df.d.ts +294 -44
- package/types/sap.suite.ui.commons.d.ts +1148 -118
- package/types/sap.suite.ui.generic.template.d.ts +10 -2
- package/types/sap.suite.ui.microchart.d.ts +184 -28
- package/types/sap.tnt.d.ts +40 -8
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +756 -90
- package/types/sap.ui.comp.d.ts +884 -50
- package/types/sap.ui.core.d.ts +1112 -135
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +19 -4
- package/types/sap.ui.fl.d.ts +44 -3
- package/types/sap.ui.integration.d.ts +144 -6
- package/types/sap.ui.layout.d.ts +166 -41
- package/types/sap.ui.mdc.d.ts +430 -38
- package/types/sap.ui.richtexteditor.d.ts +28 -2
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +222 -19
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -35
- package/types/sap.ui.ux3.d.ts +524 -31
- package/types/sap.ui.vbm.d.ts +6427 -3308
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +351 -29
- package/types/sap.ui.webc.main.d.ts +1035 -83
- package/types/sap.uiext.inbox.d.ts +124 -13
- package/types/sap.ushell.d.ts +147 -12
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +118 -18
- package/types/sap.viz.d.ts +2619 -130
- package/types/sap.zen.commons.d.ts +104 -23
- package/types/sap.zen.crosstab.d.ts +96 -16
- package/types/sap.zen.dsh.d.ts +255 -149
package/types/sap.ui.comp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/comp/library" {
|
|
4
4
|
/**
|
|
@@ -3520,6 +3520,9 @@ declare module "sap/ui/comp/filterbar/FilterBar" {
|
|
|
3520
3520
|
basicSearch: string | undefined;
|
|
3521
3521
|
};
|
|
3522
3522
|
|
|
3523
|
+
/**
|
|
3524
|
+
* Describes the settings that can be provided to the FilterBar constructor.
|
|
3525
|
+
*/
|
|
3523
3526
|
export interface $FilterBarSettings extends $GridSettings {
|
|
3524
3527
|
/**
|
|
3525
3528
|
* Key used to access personalization data. Only if the persistencyKey is provided, will the `VariantManagement`
|
|
@@ -3845,6 +3848,9 @@ declare module "sap/ui/comp/filterbar/FilterBar" {
|
|
|
3845
3848
|
assignedFiltersChanged?: (oEvent: Event) => void;
|
|
3846
3849
|
}
|
|
3847
3850
|
|
|
3851
|
+
/**
|
|
3852
|
+
* Parameters of the FilterBar#afterVariantLoad event.
|
|
3853
|
+
*/
|
|
3848
3854
|
export interface FilterBar$AfterVariantLoadEventParameters {
|
|
3849
3855
|
/**
|
|
3850
3856
|
* Context of the event. Can also be `null` or `undefined`
|
|
@@ -3857,32 +3863,56 @@ declare module "sap/ui/comp/filterbar/FilterBar" {
|
|
|
3857
3863
|
executeOnSelect?: boolean;
|
|
3858
3864
|
}
|
|
3859
3865
|
|
|
3866
|
+
/**
|
|
3867
|
+
* Event object of the FilterBar#afterVariantLoad event.
|
|
3868
|
+
*/
|
|
3860
3869
|
export type FilterBar$AfterVariantLoadEvent = Event<
|
|
3861
3870
|
FilterBar$AfterVariantLoadEventParameters,
|
|
3862
3871
|
FilterBar
|
|
3863
3872
|
>;
|
|
3864
3873
|
|
|
3874
|
+
/**
|
|
3875
|
+
* Parameters of the FilterBar#afterVariantSave event.
|
|
3876
|
+
*/
|
|
3865
3877
|
export interface FilterBar$AfterVariantSaveEventParameters {}
|
|
3866
3878
|
|
|
3879
|
+
/**
|
|
3880
|
+
* Event object of the FilterBar#afterVariantSave event.
|
|
3881
|
+
*/
|
|
3867
3882
|
export type FilterBar$AfterVariantSaveEvent = Event<
|
|
3868
3883
|
FilterBar$AfterVariantSaveEventParameters,
|
|
3869
3884
|
FilterBar
|
|
3870
3885
|
>;
|
|
3871
3886
|
|
|
3887
|
+
/**
|
|
3888
|
+
* Parameters of the FilterBar#assignedFiltersChanged event.
|
|
3889
|
+
*/
|
|
3872
3890
|
export interface FilterBar$AssignedFiltersChangedEventParameters {}
|
|
3873
3891
|
|
|
3892
|
+
/**
|
|
3893
|
+
* Event object of the FilterBar#assignedFiltersChanged event.
|
|
3894
|
+
*/
|
|
3874
3895
|
export type FilterBar$AssignedFiltersChangedEvent = Event<
|
|
3875
3896
|
FilterBar$AssignedFiltersChangedEventParameters,
|
|
3876
3897
|
FilterBar
|
|
3877
3898
|
>;
|
|
3878
3899
|
|
|
3900
|
+
/**
|
|
3901
|
+
* Parameters of the FilterBar#beforeVariantFetch event.
|
|
3902
|
+
*/
|
|
3879
3903
|
export interface FilterBar$BeforeVariantFetchEventParameters {}
|
|
3880
3904
|
|
|
3905
|
+
/**
|
|
3906
|
+
* Event object of the FilterBar#beforeVariantFetch event.
|
|
3907
|
+
*/
|
|
3881
3908
|
export type FilterBar$BeforeVariantFetchEvent = Event<
|
|
3882
3909
|
FilterBar$BeforeVariantFetchEventParameters,
|
|
3883
3910
|
FilterBar
|
|
3884
3911
|
>;
|
|
3885
3912
|
|
|
3913
|
+
/**
|
|
3914
|
+
* Parameters of the FilterBar#beforeVariantSave event.
|
|
3915
|
+
*/
|
|
3886
3916
|
export interface FilterBar$BeforeVariantSaveEventParameters {
|
|
3887
3917
|
/**
|
|
3888
3918
|
* Context of the event. Can also be `null` or `undefined`
|
|
@@ -3890,18 +3920,30 @@ declare module "sap/ui/comp/filterbar/FilterBar" {
|
|
|
3890
3920
|
context?: string;
|
|
3891
3921
|
}
|
|
3892
3922
|
|
|
3923
|
+
/**
|
|
3924
|
+
* Event object of the FilterBar#beforeVariantSave event.
|
|
3925
|
+
*/
|
|
3893
3926
|
export type FilterBar$BeforeVariantSaveEvent = Event<
|
|
3894
3927
|
FilterBar$BeforeVariantSaveEventParameters,
|
|
3895
3928
|
FilterBar
|
|
3896
3929
|
>;
|
|
3897
3930
|
|
|
3931
|
+
/**
|
|
3932
|
+
* Parameters of the FilterBar#cancel event.
|
|
3933
|
+
*/
|
|
3898
3934
|
export interface FilterBar$CancelEventParameters {}
|
|
3899
3935
|
|
|
3936
|
+
/**
|
|
3937
|
+
* Event object of the FilterBar#cancel event.
|
|
3938
|
+
*/
|
|
3900
3939
|
export type FilterBar$CancelEvent = Event<
|
|
3901
3940
|
FilterBar$CancelEventParameters,
|
|
3902
3941
|
FilterBar
|
|
3903
3942
|
>;
|
|
3904
3943
|
|
|
3944
|
+
/**
|
|
3945
|
+
* Parameters of the FilterBar#clear event.
|
|
3946
|
+
*/
|
|
3905
3947
|
export interface FilterBar$ClearEventParameters {
|
|
3906
3948
|
/**
|
|
3907
3949
|
* Visible controls
|
|
@@ -3909,11 +3951,17 @@ declare module "sap/ui/comp/filterbar/FilterBar" {
|
|
|
3909
3951
|
selectionSet?: Control[];
|
|
3910
3952
|
}
|
|
3911
3953
|
|
|
3954
|
+
/**
|
|
3955
|
+
* Event object of the FilterBar#clear event.
|
|
3956
|
+
*/
|
|
3912
3957
|
export type FilterBar$ClearEvent = Event<
|
|
3913
3958
|
FilterBar$ClearEventParameters,
|
|
3914
3959
|
FilterBar
|
|
3915
3960
|
>;
|
|
3916
3961
|
|
|
3962
|
+
/**
|
|
3963
|
+
* Parameters of the FilterBar#filterChange event.
|
|
3964
|
+
*/
|
|
3917
3965
|
export interface FilterBar$FilterChangeEventParameters {
|
|
3918
3966
|
/**
|
|
3919
3967
|
* This property is provided, whenever a filter is added via the add/remove filters dialog.
|
|
@@ -3931,25 +3979,43 @@ declare module "sap/ui/comp/filterbar/FilterBar" {
|
|
|
3931
3979
|
filterItem?: FilterGroupItem;
|
|
3932
3980
|
}
|
|
3933
3981
|
|
|
3982
|
+
/**
|
|
3983
|
+
* Event object of the FilterBar#filterChange event.
|
|
3984
|
+
*/
|
|
3934
3985
|
export type FilterBar$FilterChangeEvent = Event<
|
|
3935
3986
|
FilterBar$FilterChangeEventParameters,
|
|
3936
3987
|
FilterBar
|
|
3937
3988
|
>;
|
|
3938
3989
|
|
|
3990
|
+
/**
|
|
3991
|
+
* Parameters of the FilterBar#filtersDialogBeforeOpen event.
|
|
3992
|
+
*/
|
|
3939
3993
|
export interface FilterBar$FiltersDialogBeforeOpenEventParameters {}
|
|
3940
3994
|
|
|
3995
|
+
/**
|
|
3996
|
+
* Event object of the FilterBar#filtersDialogBeforeOpen event.
|
|
3997
|
+
*/
|
|
3941
3998
|
export type FilterBar$FiltersDialogBeforeOpenEvent = Event<
|
|
3942
3999
|
FilterBar$FiltersDialogBeforeOpenEventParameters,
|
|
3943
4000
|
FilterBar
|
|
3944
4001
|
>;
|
|
3945
4002
|
|
|
4003
|
+
/**
|
|
4004
|
+
* Parameters of the FilterBar#filtersDialogCancel event.
|
|
4005
|
+
*/
|
|
3946
4006
|
export interface FilterBar$FiltersDialogCancelEventParameters {}
|
|
3947
4007
|
|
|
4008
|
+
/**
|
|
4009
|
+
* Event object of the FilterBar#filtersDialogCancel event.
|
|
4010
|
+
*/
|
|
3948
4011
|
export type FilterBar$FiltersDialogCancelEvent = Event<
|
|
3949
4012
|
FilterBar$FiltersDialogCancelEventParameters,
|
|
3950
4013
|
FilterBar
|
|
3951
4014
|
>;
|
|
3952
4015
|
|
|
4016
|
+
/**
|
|
4017
|
+
* Parameters of the FilterBar#filtersDialogClosed event.
|
|
4018
|
+
*/
|
|
3953
4019
|
export interface FilterBar$FiltersDialogClosedEventParameters {
|
|
3954
4020
|
/**
|
|
3955
4021
|
* Context of the event. Can also be `null` or `undefined`
|
|
@@ -3957,18 +4023,36 @@ declare module "sap/ui/comp/filterbar/FilterBar" {
|
|
|
3957
4023
|
context?: string;
|
|
3958
4024
|
}
|
|
3959
4025
|
|
|
4026
|
+
/**
|
|
4027
|
+
* Event object of the FilterBar#filtersDialogClosed event.
|
|
4028
|
+
*/
|
|
3960
4029
|
export type FilterBar$FiltersDialogClosedEvent = Event<
|
|
3961
4030
|
FilterBar$FiltersDialogClosedEventParameters,
|
|
3962
4031
|
FilterBar
|
|
3963
4032
|
>;
|
|
3964
4033
|
|
|
4034
|
+
/**
|
|
4035
|
+
* Parameters of the FilterBar#filtersDialogSearch event.
|
|
4036
|
+
*
|
|
4037
|
+
* @deprecated (since 1.84)
|
|
4038
|
+
*/
|
|
3965
4039
|
export interface FilterBar$FiltersDialogSearchEventParameters {}
|
|
3966
4040
|
|
|
4041
|
+
/**
|
|
4042
|
+
* Event object of the FilterBar#filtersDialogSearch event.
|
|
4043
|
+
*
|
|
4044
|
+
* @deprecated (since 1.84)
|
|
4045
|
+
*/
|
|
3967
4046
|
export type FilterBar$FiltersDialogSearchEvent = Event<
|
|
3968
4047
|
FilterBar$FiltersDialogSearchEventParameters,
|
|
3969
4048
|
FilterBar
|
|
3970
4049
|
>;
|
|
3971
4050
|
|
|
4051
|
+
/**
|
|
4052
|
+
* Parameters of the FilterBar#filtersDialogSearchForFilters event.
|
|
4053
|
+
*
|
|
4054
|
+
* @deprecated (since 1.84)
|
|
4055
|
+
*/
|
|
3972
4056
|
export interface FilterBar$FiltersDialogSearchForFiltersEventParameters {
|
|
3973
4057
|
/**
|
|
3974
4058
|
* Contains the entered search filed value
|
|
@@ -3976,25 +4060,45 @@ declare module "sap/ui/comp/filterbar/FilterBar" {
|
|
|
3976
4060
|
newValue?: string;
|
|
3977
4061
|
}
|
|
3978
4062
|
|
|
4063
|
+
/**
|
|
4064
|
+
* Event object of the FilterBar#filtersDialogSearchForFilters event.
|
|
4065
|
+
*
|
|
4066
|
+
* @deprecated (since 1.84)
|
|
4067
|
+
*/
|
|
3979
4068
|
export type FilterBar$FiltersDialogSearchForFiltersEvent = Event<
|
|
3980
4069
|
FilterBar$FiltersDialogSearchForFiltersEventParameters,
|
|
3981
4070
|
FilterBar
|
|
3982
4071
|
>;
|
|
3983
4072
|
|
|
4073
|
+
/**
|
|
4074
|
+
* Parameters of the FilterBar#initialise event.
|
|
4075
|
+
*/
|
|
3984
4076
|
export interface FilterBar$InitialiseEventParameters {}
|
|
3985
4077
|
|
|
4078
|
+
/**
|
|
4079
|
+
* Event object of the FilterBar#initialise event.
|
|
4080
|
+
*/
|
|
3986
4081
|
export type FilterBar$InitialiseEvent = Event<
|
|
3987
4082
|
FilterBar$InitialiseEventParameters,
|
|
3988
4083
|
FilterBar
|
|
3989
4084
|
>;
|
|
3990
4085
|
|
|
4086
|
+
/**
|
|
4087
|
+
* Parameters of the FilterBar#initialized event.
|
|
4088
|
+
*/
|
|
3991
4089
|
export interface FilterBar$InitializedEventParameters {}
|
|
3992
4090
|
|
|
4091
|
+
/**
|
|
4092
|
+
* Event object of the FilterBar#initialized event.
|
|
4093
|
+
*/
|
|
3993
4094
|
export type FilterBar$InitializedEvent = Event<
|
|
3994
4095
|
FilterBar$InitializedEventParameters,
|
|
3995
4096
|
FilterBar
|
|
3996
4097
|
>;
|
|
3997
4098
|
|
|
4099
|
+
/**
|
|
4100
|
+
* Parameters of the FilterBar#reset event.
|
|
4101
|
+
*/
|
|
3998
4102
|
export interface FilterBar$ResetEventParameters {
|
|
3999
4103
|
/**
|
|
4000
4104
|
* Visible controls
|
|
@@ -4002,11 +4106,17 @@ declare module "sap/ui/comp/filterbar/FilterBar" {
|
|
|
4002
4106
|
selectionSet?: Control[];
|
|
4003
4107
|
}
|
|
4004
4108
|
|
|
4109
|
+
/**
|
|
4110
|
+
* Event object of the FilterBar#reset event.
|
|
4111
|
+
*/
|
|
4005
4112
|
export type FilterBar$ResetEvent = Event<
|
|
4006
4113
|
FilterBar$ResetEventParameters,
|
|
4007
4114
|
FilterBar
|
|
4008
4115
|
>;
|
|
4009
4116
|
|
|
4117
|
+
/**
|
|
4118
|
+
* Parameters of the FilterBar#search event.
|
|
4119
|
+
*/
|
|
4010
4120
|
export interface FilterBar$SearchEventParameters {
|
|
4011
4121
|
/**
|
|
4012
4122
|
* Visible controls
|
|
@@ -4019,6 +4129,9 @@ declare module "sap/ui/comp/filterbar/FilterBar" {
|
|
|
4019
4129
|
firedFromFilterBar?: boolean;
|
|
4020
4130
|
}
|
|
4021
4131
|
|
|
4132
|
+
/**
|
|
4133
|
+
* Event object of the FilterBar#search event.
|
|
4134
|
+
*/
|
|
4022
4135
|
export type FilterBar$SearchEvent = Event<
|
|
4023
4136
|
FilterBar$SearchEventParameters,
|
|
4024
4137
|
FilterBar
|
|
@@ -4157,7 +4270,9 @@ declare module "sap/ui/comp/filterbar/FilterGroupItem" {
|
|
|
4157
4270
|
sValue: string
|
|
4158
4271
|
): void;
|
|
4159
4272
|
}
|
|
4160
|
-
|
|
4273
|
+
/**
|
|
4274
|
+
* Describes the settings that can be provided to the FilterGroupItem constructor.
|
|
4275
|
+
*/
|
|
4161
4276
|
export interface $FilterGroupItemSettings extends $FilterItemSettings {
|
|
4162
4277
|
/**
|
|
4163
4278
|
* Title of the group.
|
|
@@ -4627,7 +4742,9 @@ declare module "sap/ui/comp/filterbar/FilterItem" {
|
|
|
4627
4742
|
bVisible: boolean
|
|
4628
4743
|
): void;
|
|
4629
4744
|
}
|
|
4630
|
-
|
|
4745
|
+
/**
|
|
4746
|
+
* Describes the settings that can be provided to the FilterItem constructor.
|
|
4747
|
+
*/
|
|
4631
4748
|
export interface $FilterItemSettings extends $ElementSettings {
|
|
4632
4749
|
/**
|
|
4633
4750
|
* Label of the filter.
|
|
@@ -4710,6 +4827,9 @@ declare module "sap/ui/comp/filterbar/FilterItem" {
|
|
|
4710
4827
|
change?: (oEvent: FilterItem$ChangeEvent) => void;
|
|
4711
4828
|
}
|
|
4712
4829
|
|
|
4830
|
+
/**
|
|
4831
|
+
* Parameters of the FilterItem#change event.
|
|
4832
|
+
*/
|
|
4713
4833
|
export interface FilterItem$ChangeEventParameters {
|
|
4714
4834
|
/**
|
|
4715
4835
|
* Name of the changed property
|
|
@@ -4717,6 +4837,9 @@ declare module "sap/ui/comp/filterbar/FilterItem" {
|
|
|
4717
4837
|
propertyName?: string;
|
|
4718
4838
|
}
|
|
4719
4839
|
|
|
4840
|
+
/**
|
|
4841
|
+
* Event object of the FilterItem#change event.
|
|
4842
|
+
*/
|
|
4720
4843
|
export type FilterItem$ChangeEvent = Event<
|
|
4721
4844
|
FilterItem$ChangeEventParameters,
|
|
4722
4845
|
FilterItem
|
|
@@ -5081,7 +5204,9 @@ declare module "sap/ui/comp/navpopover/LinkData" {
|
|
|
5081
5204
|
bVisibleChangedByUser: boolean
|
|
5082
5205
|
): this;
|
|
5083
5206
|
}
|
|
5084
|
-
|
|
5207
|
+
/**
|
|
5208
|
+
* Describes the settings that can be provided to the LinkData constructor.
|
|
5209
|
+
*/
|
|
5085
5210
|
export interface $LinkDataSettings extends $ElementSettings {
|
|
5086
5211
|
/**
|
|
5087
5212
|
* Text which can be displayed on the UI
|
|
@@ -5906,7 +6031,9 @@ declare module "sap/ui/comp/navpopover/NavigationPopover" {
|
|
|
5906
6031
|
*/
|
|
5907
6032
|
show(): void;
|
|
5908
6033
|
}
|
|
5909
|
-
|
|
6034
|
+
/**
|
|
6035
|
+
* Describes the settings that can be provided to the NavigationPopover constructor.
|
|
6036
|
+
*/
|
|
5910
6037
|
export interface $NavigationPopoverSettings
|
|
5911
6038
|
extends $ResponsivePopoverSettings {
|
|
5912
6039
|
/**
|
|
@@ -6028,13 +6155,22 @@ declare module "sap/ui/comp/navpopover/NavigationPopover" {
|
|
|
6028
6155
|
availableActionsPersonalizationPress?: (oEvent: Event) => void;
|
|
6029
6156
|
}
|
|
6030
6157
|
|
|
6158
|
+
/**
|
|
6159
|
+
* Parameters of the NavigationPopover#availableActionsPersonalizationPress event.
|
|
6160
|
+
*/
|
|
6031
6161
|
export interface NavigationPopover$AvailableActionsPersonalizationPressEventParameters {}
|
|
6032
6162
|
|
|
6163
|
+
/**
|
|
6164
|
+
* Event object of the NavigationPopover#availableActionsPersonalizationPress event.
|
|
6165
|
+
*/
|
|
6033
6166
|
export type NavigationPopover$AvailableActionsPersonalizationPressEvent = Event<
|
|
6034
6167
|
NavigationPopover$AvailableActionsPersonalizationPressEventParameters,
|
|
6035
6168
|
NavigationPopover
|
|
6036
6169
|
>;
|
|
6037
6170
|
|
|
6171
|
+
/**
|
|
6172
|
+
* Parameters of the NavigationPopover#navigate event.
|
|
6173
|
+
*/
|
|
6038
6174
|
export interface NavigationPopover$NavigateEventParameters {
|
|
6039
6175
|
/**
|
|
6040
6176
|
* The UI text shown in the chosen link
|
|
@@ -6047,13 +6183,32 @@ declare module "sap/ui/comp/navpopover/NavigationPopover" {
|
|
|
6047
6183
|
href?: string;
|
|
6048
6184
|
}
|
|
6049
6185
|
|
|
6186
|
+
/**
|
|
6187
|
+
* Event object of the NavigationPopover#navigate event.
|
|
6188
|
+
*/
|
|
6050
6189
|
export type NavigationPopover$NavigateEvent = Event<
|
|
6051
6190
|
NavigationPopover$NavigateEventParameters,
|
|
6052
6191
|
NavigationPopover
|
|
6053
6192
|
>;
|
|
6054
6193
|
|
|
6194
|
+
/**
|
|
6195
|
+
* Parameters of the NavigationPopover#targetsObtained event.
|
|
6196
|
+
*
|
|
6197
|
+
* @deprecated (since 1.40.0) - The event `navigationTargetsObtained` is obsolete as target determination
|
|
6198
|
+
* is no longer done by NavigationPopover. Instead the NavigationPopoverHandler is responsible for target
|
|
6199
|
+
* determination. The event `navigationTargetsObtained` is fired from NavigationPopoverHandler after navigation
|
|
6200
|
+
* targets are determined.
|
|
6201
|
+
*/
|
|
6055
6202
|
export interface NavigationPopover$TargetsObtainedEventParameters {}
|
|
6056
6203
|
|
|
6204
|
+
/**
|
|
6205
|
+
* Event object of the NavigationPopover#targetsObtained event.
|
|
6206
|
+
*
|
|
6207
|
+
* @deprecated (since 1.40.0) - The event `navigationTargetsObtained` is obsolete as target determination
|
|
6208
|
+
* is no longer done by NavigationPopover. Instead the NavigationPopoverHandler is responsible for target
|
|
6209
|
+
* determination. The event `navigationTargetsObtained` is fired from NavigationPopoverHandler after navigation
|
|
6210
|
+
* targets are determined.
|
|
6211
|
+
*/
|
|
6057
6212
|
export type NavigationPopover$TargetsObtainedEvent = Event<
|
|
6058
6213
|
NavigationPopover$TargetsObtainedEventParameters,
|
|
6059
6214
|
NavigationPopover
|
|
@@ -6761,7 +6916,9 @@ declare module "sap/ui/comp/navpopover/NavigationPopoverHandler" {
|
|
|
6761
6916
|
sSemanticObjectLabel?: string
|
|
6762
6917
|
): this;
|
|
6763
6918
|
}
|
|
6764
|
-
|
|
6919
|
+
/**
|
|
6920
|
+
* Describes the settings that can be provided to the NavigationPopoverHandler constructor.
|
|
6921
|
+
*/
|
|
6765
6922
|
export interface $NavigationPopoverHandlerSettings
|
|
6766
6923
|
extends $ManagedObjectSettings {
|
|
6767
6924
|
/**
|
|
@@ -6886,6 +7043,9 @@ declare module "sap/ui/comp/navpopover/NavigationPopoverHandler" {
|
|
|
6886
7043
|
) => void;
|
|
6887
7044
|
}
|
|
6888
7045
|
|
|
7046
|
+
/**
|
|
7047
|
+
* Parameters of the NavigationPopoverHandler#beforePopoverOpens event.
|
|
7048
|
+
*/
|
|
6889
7049
|
export interface NavigationPopoverHandler$BeforePopoverOpensEventParameters {
|
|
6890
7050
|
/**
|
|
6891
7051
|
* The semantic object for which the navigation targets will be retrieved.
|
|
@@ -6933,11 +7093,17 @@ declare module "sap/ui/comp/navpopover/NavigationPopoverHandler" {
|
|
|
6933
7093
|
open?: Function;
|
|
6934
7094
|
}
|
|
6935
7095
|
|
|
7096
|
+
/**
|
|
7097
|
+
* Event object of the NavigationPopoverHandler#beforePopoverOpens event.
|
|
7098
|
+
*/
|
|
6936
7099
|
export type NavigationPopoverHandler$BeforePopoverOpensEvent = Event<
|
|
6937
7100
|
NavigationPopoverHandler$BeforePopoverOpensEventParameters,
|
|
6938
7101
|
NavigationPopoverHandler
|
|
6939
7102
|
>;
|
|
6940
7103
|
|
|
7104
|
+
/**
|
|
7105
|
+
* Parameters of the NavigationPopoverHandler#innerNavigate event.
|
|
7106
|
+
*/
|
|
6941
7107
|
export interface NavigationPopoverHandler$InnerNavigateEventParameters {
|
|
6942
7108
|
/**
|
|
6943
7109
|
* The UI text shown in the clicked link.
|
|
@@ -6965,11 +7131,17 @@ declare module "sap/ui/comp/navpopover/NavigationPopoverHandler" {
|
|
|
6965
7131
|
originalId?: string;
|
|
6966
7132
|
}
|
|
6967
7133
|
|
|
7134
|
+
/**
|
|
7135
|
+
* Event object of the NavigationPopoverHandler#innerNavigate event.
|
|
7136
|
+
*/
|
|
6968
7137
|
export type NavigationPopoverHandler$InnerNavigateEvent = Event<
|
|
6969
7138
|
NavigationPopoverHandler$InnerNavigateEventParameters,
|
|
6970
7139
|
NavigationPopoverHandler
|
|
6971
7140
|
>;
|
|
6972
7141
|
|
|
7142
|
+
/**
|
|
7143
|
+
* Parameters of the NavigationPopoverHandler#navigationTargetsObtained event.
|
|
7144
|
+
*/
|
|
6973
7145
|
export interface NavigationPopoverHandler$NavigationTargetsObtainedEventParameters {
|
|
6974
7146
|
/**
|
|
6975
7147
|
* The main navigation object.
|
|
@@ -7037,6 +7209,9 @@ declare module "sap/ui/comp/navpopover/NavigationPopoverHandler" {
|
|
|
7037
7209
|
show?: Function;
|
|
7038
7210
|
}
|
|
7039
7211
|
|
|
7212
|
+
/**
|
|
7213
|
+
* Event object of the NavigationPopoverHandler#navigationTargetsObtained event.
|
|
7214
|
+
*/
|
|
7040
7215
|
export type NavigationPopoverHandler$NavigationTargetsObtainedEvent = Event<
|
|
7041
7216
|
NavigationPopoverHandler$NavigationTargetsObtainedEventParameters,
|
|
7042
7217
|
NavigationPopoverHandler
|
|
@@ -7894,7 +8069,9 @@ declare module "sap/ui/comp/navpopover/SemanticObjectController" {
|
|
|
7894
8069
|
oControl: SmartLink | NavigationPopoverHandler
|
|
7895
8070
|
): void;
|
|
7896
8071
|
}
|
|
7897
|
-
|
|
8072
|
+
/**
|
|
8073
|
+
* Describes the settings that can be provided to the SemanticObjectController constructor.
|
|
8074
|
+
*/
|
|
7898
8075
|
export interface $SemanticObjectControllerSettings extends $ElementSettings {
|
|
7899
8076
|
/**
|
|
7900
8077
|
* Comma-separated list of fields that must not be displayed as links.
|
|
@@ -8041,6 +8218,9 @@ declare module "sap/ui/comp/navpopover/SemanticObjectController" {
|
|
|
8041
8218
|
prefetchDone?: (oEvent: SemanticObjectController$PrefetchDoneEvent) => void;
|
|
8042
8219
|
}
|
|
8043
8220
|
|
|
8221
|
+
/**
|
|
8222
|
+
* Parameters of the SemanticObjectController#beforePopoverOpens event.
|
|
8223
|
+
*/
|
|
8044
8224
|
export interface SemanticObjectController$BeforePopoverOpensEventParameters {
|
|
8045
8225
|
/**
|
|
8046
8226
|
* The semantic object for which the navigation targets will be retrieved.
|
|
@@ -8091,11 +8271,17 @@ declare module "sap/ui/comp/navpopover/SemanticObjectController" {
|
|
|
8091
8271
|
open?: Function;
|
|
8092
8272
|
}
|
|
8093
8273
|
|
|
8274
|
+
/**
|
|
8275
|
+
* Event object of the SemanticObjectController#beforePopoverOpens event.
|
|
8276
|
+
*/
|
|
8094
8277
|
export type SemanticObjectController$BeforePopoverOpensEvent = Event<
|
|
8095
8278
|
SemanticObjectController$BeforePopoverOpensEventParameters,
|
|
8096
8279
|
SemanticObjectController
|
|
8097
8280
|
>;
|
|
8098
8281
|
|
|
8282
|
+
/**
|
|
8283
|
+
* Parameters of the SemanticObjectController#navigate event.
|
|
8284
|
+
*/
|
|
8099
8285
|
export interface SemanticObjectController$NavigateEventParameters {
|
|
8100
8286
|
/**
|
|
8101
8287
|
* The UI text shown in the clicked link.
|
|
@@ -8126,11 +8312,17 @@ declare module "sap/ui/comp/navpopover/SemanticObjectController" {
|
|
|
8126
8312
|
originalId?: string;
|
|
8127
8313
|
}
|
|
8128
8314
|
|
|
8315
|
+
/**
|
|
8316
|
+
* Event object of the SemanticObjectController#navigate event.
|
|
8317
|
+
*/
|
|
8129
8318
|
export type SemanticObjectController$NavigateEvent = Event<
|
|
8130
8319
|
SemanticObjectController$NavigateEventParameters,
|
|
8131
8320
|
SemanticObjectController
|
|
8132
8321
|
>;
|
|
8133
8322
|
|
|
8323
|
+
/**
|
|
8324
|
+
* Parameters of the SemanticObjectController#navigationTargetsObtained event.
|
|
8325
|
+
*/
|
|
8134
8326
|
export interface SemanticObjectController$NavigationTargetsObtainedEventParameters {
|
|
8135
8327
|
/**
|
|
8136
8328
|
* The main navigation object.
|
|
@@ -8201,11 +8393,20 @@ declare module "sap/ui/comp/navpopover/SemanticObjectController" {
|
|
|
8201
8393
|
show?: Function;
|
|
8202
8394
|
}
|
|
8203
8395
|
|
|
8396
|
+
/**
|
|
8397
|
+
* Event object of the SemanticObjectController#navigationTargetsObtained event.
|
|
8398
|
+
*/
|
|
8204
8399
|
export type SemanticObjectController$NavigationTargetsObtainedEvent = Event<
|
|
8205
8400
|
SemanticObjectController$NavigationTargetsObtainedEventParameters,
|
|
8206
8401
|
SemanticObjectController
|
|
8207
8402
|
>;
|
|
8208
8403
|
|
|
8404
|
+
/**
|
|
8405
|
+
* Parameters of the SemanticObjectController#prefetchDone event.
|
|
8406
|
+
*
|
|
8407
|
+
* @deprecated (since 1.42.0) - The event `prefetchDone` is obsolete because it depends on the property
|
|
8408
|
+
* `prefetchNavigationTargets` which has been deprecated.
|
|
8409
|
+
*/
|
|
8209
8410
|
export interface SemanticObjectController$PrefetchDoneEventParameters {
|
|
8210
8411
|
/**
|
|
8211
8412
|
* A map containing all semantic objects as keys for which at least one navigation target has been found.
|
|
@@ -8215,6 +8416,12 @@ declare module "sap/ui/comp/navpopover/SemanticObjectController" {
|
|
|
8215
8416
|
semanticObjects?: object;
|
|
8216
8417
|
}
|
|
8217
8418
|
|
|
8419
|
+
/**
|
|
8420
|
+
* Event object of the SemanticObjectController#prefetchDone event.
|
|
8421
|
+
*
|
|
8422
|
+
* @deprecated (since 1.42.0) - The event `prefetchDone` is obsolete because it depends on the property
|
|
8423
|
+
* `prefetchNavigationTargets` which has been deprecated.
|
|
8424
|
+
*/
|
|
8218
8425
|
export type SemanticObjectController$PrefetchDoneEvent = Event<
|
|
8219
8426
|
SemanticObjectController$PrefetchDoneEventParameters,
|
|
8220
8427
|
SemanticObjectController
|
|
@@ -9023,7 +9230,9 @@ declare module "sap/ui/comp/navpopover/SmartLink" {
|
|
|
9023
9230
|
sUom?: string
|
|
9024
9231
|
): this;
|
|
9025
9232
|
}
|
|
9026
|
-
|
|
9233
|
+
/**
|
|
9234
|
+
* Describes the settings that can be provided to the SmartLink constructor.
|
|
9235
|
+
*/
|
|
9027
9236
|
export interface $SmartLinkSettings extends $LinkSettings {
|
|
9028
9237
|
/**
|
|
9029
9238
|
* Name of semantic object which is used to fill the navigation popover. **Note**: Setting a value triggers
|
|
@@ -9182,6 +9391,9 @@ declare module "sap/ui/comp/navpopover/SmartLink" {
|
|
|
9182
9391
|
innerNavigate?: (oEvent: SmartLink$InnerNavigateEvent) => void;
|
|
9183
9392
|
}
|
|
9184
9393
|
|
|
9394
|
+
/**
|
|
9395
|
+
* Parameters of the SmartLink#beforePopoverOpens event.
|
|
9396
|
+
*/
|
|
9185
9397
|
export interface SmartLink$BeforePopoverOpensEventParameters {
|
|
9186
9398
|
/**
|
|
9187
9399
|
* The semantic object for which the navigation targets will be retrieved.
|
|
@@ -9229,11 +9441,17 @@ declare module "sap/ui/comp/navpopover/SmartLink" {
|
|
|
9229
9441
|
open?: Function;
|
|
9230
9442
|
}
|
|
9231
9443
|
|
|
9444
|
+
/**
|
|
9445
|
+
* Event object of the SmartLink#beforePopoverOpens event.
|
|
9446
|
+
*/
|
|
9232
9447
|
export type SmartLink$BeforePopoverOpensEvent = Event<
|
|
9233
9448
|
SmartLink$BeforePopoverOpensEventParameters,
|
|
9234
9449
|
SmartLink
|
|
9235
9450
|
>;
|
|
9236
9451
|
|
|
9452
|
+
/**
|
|
9453
|
+
* Parameters of the SmartLink#innerNavigate event.
|
|
9454
|
+
*/
|
|
9237
9455
|
export interface SmartLink$InnerNavigateEventParameters {
|
|
9238
9456
|
/**
|
|
9239
9457
|
* The UI text shown in the clicked link.
|
|
@@ -9261,11 +9479,17 @@ declare module "sap/ui/comp/navpopover/SmartLink" {
|
|
|
9261
9479
|
originalId?: string;
|
|
9262
9480
|
}
|
|
9263
9481
|
|
|
9482
|
+
/**
|
|
9483
|
+
* Event object of the SmartLink#innerNavigate event.
|
|
9484
|
+
*/
|
|
9264
9485
|
export type SmartLink$InnerNavigateEvent = Event<
|
|
9265
9486
|
SmartLink$InnerNavigateEventParameters,
|
|
9266
9487
|
SmartLink
|
|
9267
9488
|
>;
|
|
9268
9489
|
|
|
9490
|
+
/**
|
|
9491
|
+
* Parameters of the SmartLink#navigationTargetsObtained event.
|
|
9492
|
+
*/
|
|
9269
9493
|
export interface SmartLink$NavigationTargetsObtainedEventParameters {
|
|
9270
9494
|
/**
|
|
9271
9495
|
* The main navigation object.
|
|
@@ -9333,6 +9557,9 @@ declare module "sap/ui/comp/navpopover/SmartLink" {
|
|
|
9333
9557
|
show?: Function;
|
|
9334
9558
|
}
|
|
9335
9559
|
|
|
9560
|
+
/**
|
|
9561
|
+
* Event object of the SmartLink#navigationTargetsObtained event.
|
|
9562
|
+
*/
|
|
9336
9563
|
export type SmartLink$NavigationTargetsObtainedEvent = Event<
|
|
9337
9564
|
SmartLink$NavigationTargetsObtainedEventParameters,
|
|
9338
9565
|
SmartLink
|
|
@@ -9548,7 +9775,11 @@ declare module "sap/ui/comp/odata/ComboBox" {
|
|
|
9548
9775
|
sTextArrangement?: string
|
|
9549
9776
|
): this;
|
|
9550
9777
|
}
|
|
9551
|
-
|
|
9778
|
+
/**
|
|
9779
|
+
* Describes the settings that can be provided to the ComboBox constructor.
|
|
9780
|
+
*
|
|
9781
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9782
|
+
*/
|
|
9552
9783
|
export interface $ComboBoxSettings extends $ComboBoxSettings1 {
|
|
9553
9784
|
/**
|
|
9554
9785
|
* Sets the `value` property formatting according to the `com.sap.vocabularies.UI.v1.TextArrangementType`
|
|
@@ -9563,6 +9794,11 @@ declare module "sap/ui/comp/odata/ComboBox" {
|
|
|
9563
9794
|
selectedKeyChange?: (oEvent: ComboBox$SelectedKeyChangeEvent) => void;
|
|
9564
9795
|
}
|
|
9565
9796
|
|
|
9797
|
+
/**
|
|
9798
|
+
* Parameters of the ComboBox#selectedKeyChange event.
|
|
9799
|
+
*
|
|
9800
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9801
|
+
*/
|
|
9566
9802
|
export interface ComboBox$SelectedKeyChangeEventParameters {
|
|
9567
9803
|
/**
|
|
9568
9804
|
* The selected key.
|
|
@@ -9570,6 +9806,11 @@ declare module "sap/ui/comp/odata/ComboBox" {
|
|
|
9570
9806
|
selectedKey?: string;
|
|
9571
9807
|
}
|
|
9572
9808
|
|
|
9809
|
+
/**
|
|
9810
|
+
* Event object of the ComboBox#selectedKeyChange event.
|
|
9811
|
+
*
|
|
9812
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
9813
|
+
*/
|
|
9573
9814
|
export type ComboBox$SelectedKeyChangeEvent = Event<
|
|
9574
9815
|
ComboBox$SelectedKeyChangeEventParameters,
|
|
9575
9816
|
ComboBox
|
|
@@ -12038,6 +12279,9 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12038
12279
|
sort?: /* was: sap.ui.comp.SmartChart.Variant.Sort */ any;
|
|
12039
12280
|
};
|
|
12040
12281
|
|
|
12282
|
+
/**
|
|
12283
|
+
* Describes the settings that can be provided to the SmartChart constructor.
|
|
12284
|
+
*/
|
|
12041
12285
|
export interface $SmartChartSettings extends $VBoxSettings {
|
|
12042
12286
|
/**
|
|
12043
12287
|
* The entity set name from which to fetch data and generate the columns.
|
|
@@ -12471,6 +12715,9 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12471
12715
|
uiStateChange?: (oEvent: Event) => void;
|
|
12472
12716
|
}
|
|
12473
12717
|
|
|
12718
|
+
/**
|
|
12719
|
+
* Parameters of the SmartChart#afterVariantApply event.
|
|
12720
|
+
*/
|
|
12474
12721
|
export interface SmartChart$AfterVariantApplyEventParameters {
|
|
12475
12722
|
/**
|
|
12476
12723
|
* ID of the currently selected variant
|
|
@@ -12483,18 +12730,30 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12483
12730
|
variantContext?: string;
|
|
12484
12731
|
}
|
|
12485
12732
|
|
|
12733
|
+
/**
|
|
12734
|
+
* Event object of the SmartChart#afterVariantApply event.
|
|
12735
|
+
*/
|
|
12486
12736
|
export type SmartChart$AfterVariantApplyEvent = Event<
|
|
12487
12737
|
SmartChart$AfterVariantApplyEventParameters,
|
|
12488
12738
|
SmartChart
|
|
12489
12739
|
>;
|
|
12490
12740
|
|
|
12741
|
+
/**
|
|
12742
|
+
* Parameters of the SmartChart#afterVariantInitialise event.
|
|
12743
|
+
*/
|
|
12491
12744
|
export interface SmartChart$AfterVariantInitialiseEventParameters {}
|
|
12492
12745
|
|
|
12746
|
+
/**
|
|
12747
|
+
* Event object of the SmartChart#afterVariantInitialise event.
|
|
12748
|
+
*/
|
|
12493
12749
|
export type SmartChart$AfterVariantInitialiseEvent = Event<
|
|
12494
12750
|
SmartChart$AfterVariantInitialiseEventParameters,
|
|
12495
12751
|
SmartChart
|
|
12496
12752
|
>;
|
|
12497
12753
|
|
|
12754
|
+
/**
|
|
12755
|
+
* Parameters of the SmartChart#afterVariantSave event.
|
|
12756
|
+
*/
|
|
12498
12757
|
export interface SmartChart$AfterVariantSaveEventParameters {
|
|
12499
12758
|
/**
|
|
12500
12759
|
* ID of the currently selected variant
|
|
@@ -12502,11 +12761,17 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12502
12761
|
currentVariantId?: string;
|
|
12503
12762
|
}
|
|
12504
12763
|
|
|
12764
|
+
/**
|
|
12765
|
+
* Event object of the SmartChart#afterVariantSave event.
|
|
12766
|
+
*/
|
|
12505
12767
|
export type SmartChart$AfterVariantSaveEvent = Event<
|
|
12506
12768
|
SmartChart$AfterVariantSaveEventParameters,
|
|
12507
12769
|
SmartChart
|
|
12508
12770
|
>;
|
|
12509
12771
|
|
|
12772
|
+
/**
|
|
12773
|
+
* Parameters of the SmartChart#beforeRebindChart event.
|
|
12774
|
+
*/
|
|
12510
12775
|
export interface SmartChart$BeforeRebindChartEventParameters {
|
|
12511
12776
|
/**
|
|
12512
12777
|
* The bindingParams object contains filters, sorters, and other binding-related information for the chart
|
|
@@ -12514,11 +12779,17 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12514
12779
|
bindingParams?: object;
|
|
12515
12780
|
}
|
|
12516
12781
|
|
|
12782
|
+
/**
|
|
12783
|
+
* Event object of the SmartChart#beforeRebindChart event.
|
|
12784
|
+
*/
|
|
12517
12785
|
export type SmartChart$BeforeRebindChartEvent = Event<
|
|
12518
12786
|
SmartChart$BeforeRebindChartEventParameters,
|
|
12519
12787
|
SmartChart
|
|
12520
12788
|
>;
|
|
12521
12789
|
|
|
12790
|
+
/**
|
|
12791
|
+
* Parameters of the SmartChart#chartDataChanged event.
|
|
12792
|
+
*/
|
|
12522
12793
|
export interface SmartChart$ChartDataChangedEventParameters {
|
|
12523
12794
|
/**
|
|
12524
12795
|
* Object which contains a boolean flag for dimeasure, filter, sort. If set to `true`, it has been changed.
|
|
@@ -12526,18 +12797,34 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12526
12797
|
changeTypes?: object;
|
|
12527
12798
|
}
|
|
12528
12799
|
|
|
12800
|
+
/**
|
|
12801
|
+
* Event object of the SmartChart#chartDataChanged event.
|
|
12802
|
+
*/
|
|
12529
12803
|
export type SmartChart$ChartDataChangedEvent = Event<
|
|
12530
12804
|
SmartChart$ChartDataChangedEventParameters,
|
|
12531
12805
|
SmartChart
|
|
12532
12806
|
>;
|
|
12533
12807
|
|
|
12808
|
+
/**
|
|
12809
|
+
* Parameters of the SmartChart#dataReceived event.
|
|
12810
|
+
*
|
|
12811
|
+
* @deprecated (since 1.56) - Use `beforeRebindChart` event to attach/listen to the binding "events" directly
|
|
12812
|
+
*/
|
|
12534
12813
|
export interface SmartChart$DataReceivedEventParameters {}
|
|
12535
12814
|
|
|
12815
|
+
/**
|
|
12816
|
+
* Event object of the SmartChart#dataReceived event.
|
|
12817
|
+
*
|
|
12818
|
+
* @deprecated (since 1.56) - Use `beforeRebindChart` event to attach/listen to the binding "events" directly
|
|
12819
|
+
*/
|
|
12536
12820
|
export type SmartChart$DataReceivedEvent = Event<
|
|
12537
12821
|
SmartChart$DataReceivedEventParameters,
|
|
12538
12822
|
SmartChart
|
|
12539
12823
|
>;
|
|
12540
12824
|
|
|
12825
|
+
/**
|
|
12826
|
+
* Parameters of the SmartChart#fullScreenToggled event.
|
|
12827
|
+
*/
|
|
12541
12828
|
export interface SmartChart$FullScreenToggledEventParameters {
|
|
12542
12829
|
/**
|
|
12543
12830
|
* If `true` the control is in full screen mode
|
|
@@ -12545,25 +12832,49 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12545
12832
|
fullScreen?: boolean;
|
|
12546
12833
|
}
|
|
12547
12834
|
|
|
12835
|
+
/**
|
|
12836
|
+
* Event object of the SmartChart#fullScreenToggled event.
|
|
12837
|
+
*/
|
|
12548
12838
|
export type SmartChart$FullScreenToggledEvent = Event<
|
|
12549
12839
|
SmartChart$FullScreenToggledEventParameters,
|
|
12550
12840
|
SmartChart
|
|
12551
12841
|
>;
|
|
12552
12842
|
|
|
12843
|
+
/**
|
|
12844
|
+
* Parameters of the SmartChart#initialise event.
|
|
12845
|
+
*
|
|
12846
|
+
* @deprecated (since 1.65)
|
|
12847
|
+
*/
|
|
12553
12848
|
export interface SmartChart$InitialiseEventParameters {}
|
|
12554
12849
|
|
|
12850
|
+
/**
|
|
12851
|
+
* Event object of the SmartChart#initialise event.
|
|
12852
|
+
*
|
|
12853
|
+
* @deprecated (since 1.65)
|
|
12854
|
+
*/
|
|
12555
12855
|
export type SmartChart$InitialiseEvent = Event<
|
|
12556
12856
|
SmartChart$InitialiseEventParameters,
|
|
12557
12857
|
SmartChart
|
|
12558
12858
|
>;
|
|
12559
12859
|
|
|
12860
|
+
/**
|
|
12861
|
+
* Parameters of the SmartChart#initialized event.
|
|
12862
|
+
*/
|
|
12560
12863
|
export interface SmartChart$InitializedEventParameters {}
|
|
12561
12864
|
|
|
12865
|
+
/**
|
|
12866
|
+
* Event object of the SmartChart#initialized event.
|
|
12867
|
+
*/
|
|
12562
12868
|
export type SmartChart$InitializedEvent = Event<
|
|
12563
12869
|
SmartChart$InitializedEventParameters,
|
|
12564
12870
|
SmartChart
|
|
12565
12871
|
>;
|
|
12566
12872
|
|
|
12873
|
+
/**
|
|
12874
|
+
* Parameters of the SmartChart#selectionDetailsActionPress event.
|
|
12875
|
+
*
|
|
12876
|
+
* @experimental (since 1.48)
|
|
12877
|
+
*/
|
|
12567
12878
|
export interface SmartChart$SelectionDetailsActionPressEventParameters {
|
|
12568
12879
|
/**
|
|
12569
12880
|
* The action that has to be processed once the action has been pressed
|
|
@@ -12586,20 +12897,37 @@ declare module "sap/ui/comp/smartchart/SmartChart" {
|
|
|
12586
12897
|
| keyof typeof SelectionDetailsActionLevel;
|
|
12587
12898
|
}
|
|
12588
12899
|
|
|
12900
|
+
/**
|
|
12901
|
+
* Event object of the SmartChart#selectionDetailsActionPress event.
|
|
12902
|
+
*
|
|
12903
|
+
* @experimental (since 1.48)
|
|
12904
|
+
*/
|
|
12589
12905
|
export type SmartChart$SelectionDetailsActionPressEvent = Event<
|
|
12590
12906
|
SmartChart$SelectionDetailsActionPressEventParameters,
|
|
12591
12907
|
SmartChart
|
|
12592
12908
|
>;
|
|
12593
12909
|
|
|
12910
|
+
/**
|
|
12911
|
+
* Parameters of the SmartChart#showOverlay event.
|
|
12912
|
+
*/
|
|
12594
12913
|
export interface SmartChart$ShowOverlayEventParameters {}
|
|
12595
12914
|
|
|
12915
|
+
/**
|
|
12916
|
+
* Event object of the SmartChart#showOverlay event.
|
|
12917
|
+
*/
|
|
12596
12918
|
export type SmartChart$ShowOverlayEvent = Event<
|
|
12597
12919
|
SmartChart$ShowOverlayEventParameters,
|
|
12598
12920
|
SmartChart
|
|
12599
12921
|
>;
|
|
12600
12922
|
|
|
12923
|
+
/**
|
|
12924
|
+
* Parameters of the SmartChart#uiStateChange event.
|
|
12925
|
+
*/
|
|
12601
12926
|
export interface SmartChart$UiStateChangeEventParameters {}
|
|
12602
12927
|
|
|
12928
|
+
/**
|
|
12929
|
+
* Event object of the SmartChart#uiStateChange event.
|
|
12930
|
+
*/
|
|
12603
12931
|
export type SmartChart$UiStateChangeEvent = Event<
|
|
12604
12932
|
SmartChart$UiStateChangeEventParameters,
|
|
12605
12933
|
SmartChart
|
|
@@ -15570,7 +15898,9 @@ declare module "sap/ui/comp/smartfield/SmartField" {
|
|
|
15570
15898
|
bWrapping?: boolean
|
|
15571
15899
|
): this;
|
|
15572
15900
|
}
|
|
15573
|
-
|
|
15901
|
+
/**
|
|
15902
|
+
* Describes the settings that can be provided to the SmartField constructor.
|
|
15903
|
+
*/
|
|
15574
15904
|
export interface $SmartFieldSettings extends $ControlSettings {
|
|
15575
15905
|
/**
|
|
15576
15906
|
* The binding path expression used to determine the bound Entity Data Model (EDM) property.
|
|
@@ -16163,6 +16493,9 @@ declare module "sap/ui/comp/smartfield/SmartField" {
|
|
|
16163
16493
|
press?: (oEvent: Event) => void;
|
|
16164
16494
|
}
|
|
16165
16495
|
|
|
16496
|
+
/**
|
|
16497
|
+
* Parameters of the SmartField#change event.
|
|
16498
|
+
*/
|
|
16166
16499
|
export interface SmartField$ChangeEventParameters {
|
|
16167
16500
|
/**
|
|
16168
16501
|
* The current value inside the text field
|
|
@@ -16179,11 +16512,17 @@ declare module "sap/ui/comp/smartfield/SmartField" {
|
|
|
16179
16512
|
newValue?: string;
|
|
16180
16513
|
}
|
|
16181
16514
|
|
|
16515
|
+
/**
|
|
16516
|
+
* Event object of the SmartField#change event.
|
|
16517
|
+
*/
|
|
16182
16518
|
export type SmartField$ChangeEvent = Event<
|
|
16183
16519
|
SmartField$ChangeEventParameters,
|
|
16184
16520
|
SmartField
|
|
16185
16521
|
>;
|
|
16186
16522
|
|
|
16523
|
+
/**
|
|
16524
|
+
* Parameters of the SmartField#changeModelValue event.
|
|
16525
|
+
*/
|
|
16187
16526
|
export interface SmartField$ChangeModelValueEventParameters {
|
|
16188
16527
|
/**
|
|
16189
16528
|
* Indicates whether the field quantity field has changed
|
|
@@ -16206,11 +16545,17 @@ declare module "sap/ui/comp/smartfield/SmartField" {
|
|
|
16206
16545
|
unitLastValueState?: ValueState | keyof typeof ValueState;
|
|
16207
16546
|
}
|
|
16208
16547
|
|
|
16548
|
+
/**
|
|
16549
|
+
* Event object of the SmartField#changeModelValue event.
|
|
16550
|
+
*/
|
|
16209
16551
|
export type SmartField$ChangeModelValueEvent = Event<
|
|
16210
16552
|
SmartField$ChangeModelValueEventParameters,
|
|
16211
16553
|
SmartField
|
|
16212
16554
|
>;
|
|
16213
16555
|
|
|
16556
|
+
/**
|
|
16557
|
+
* Parameters of the SmartField#contextEditableChanged event.
|
|
16558
|
+
*/
|
|
16214
16559
|
export interface SmartField$ContextEditableChangedEventParameters {
|
|
16215
16560
|
/**
|
|
16216
16561
|
* The value of the context editable property of the control
|
|
@@ -16218,11 +16563,17 @@ declare module "sap/ui/comp/smartfield/SmartField" {
|
|
|
16218
16563
|
editable?: boolean;
|
|
16219
16564
|
}
|
|
16220
16565
|
|
|
16566
|
+
/**
|
|
16567
|
+
* Event object of the SmartField#contextEditableChanged event.
|
|
16568
|
+
*/
|
|
16221
16569
|
export type SmartField$ContextEditableChangedEvent = Event<
|
|
16222
16570
|
SmartField$ContextEditableChangedEventParameters,
|
|
16223
16571
|
SmartField
|
|
16224
16572
|
>;
|
|
16225
16573
|
|
|
16574
|
+
/**
|
|
16575
|
+
* Parameters of the SmartField#editableChanged event.
|
|
16576
|
+
*/
|
|
16226
16577
|
export interface SmartField$EditableChangedEventParameters {
|
|
16227
16578
|
/**
|
|
16228
16579
|
* If `true`, the control is in edit mode
|
|
@@ -16230,11 +16581,17 @@ declare module "sap/ui/comp/smartfield/SmartField" {
|
|
|
16230
16581
|
editable?: boolean;
|
|
16231
16582
|
}
|
|
16232
16583
|
|
|
16584
|
+
/**
|
|
16585
|
+
* Event object of the SmartField#editableChanged event.
|
|
16586
|
+
*/
|
|
16233
16587
|
export type SmartField$EditableChangedEvent = Event<
|
|
16234
16588
|
SmartField$EditableChangedEventParameters,
|
|
16235
16589
|
SmartField
|
|
16236
16590
|
>;
|
|
16237
16591
|
|
|
16592
|
+
/**
|
|
16593
|
+
* Parameters of the SmartField#entitySetFound event.
|
|
16594
|
+
*/
|
|
16238
16595
|
export interface SmartField$EntitySetFoundEventParameters {
|
|
16239
16596
|
/**
|
|
16240
16597
|
* The path to the found entity set
|
|
@@ -16242,39 +16599,73 @@ declare module "sap/ui/comp/smartfield/SmartField" {
|
|
|
16242
16599
|
entitySet?: string;
|
|
16243
16600
|
}
|
|
16244
16601
|
|
|
16602
|
+
/**
|
|
16603
|
+
* Event object of the SmartField#entitySetFound event.
|
|
16604
|
+
*/
|
|
16245
16605
|
export type SmartField$EntitySetFoundEvent = Event<
|
|
16246
16606
|
SmartField$EntitySetFoundEventParameters,
|
|
16247
16607
|
SmartField
|
|
16248
16608
|
>;
|
|
16249
16609
|
|
|
16610
|
+
/**
|
|
16611
|
+
* Parameters of the SmartField#initialise event.
|
|
16612
|
+
*/
|
|
16250
16613
|
export interface SmartField$InitialiseEventParameters {}
|
|
16251
16614
|
|
|
16615
|
+
/**
|
|
16616
|
+
* Event object of the SmartField#initialise event.
|
|
16617
|
+
*/
|
|
16252
16618
|
export type SmartField$InitialiseEvent = Event<
|
|
16253
16619
|
SmartField$InitialiseEventParameters,
|
|
16254
16620
|
SmartField
|
|
16255
16621
|
>;
|
|
16256
16622
|
|
|
16623
|
+
/**
|
|
16624
|
+
* Parameters of the SmartField#innerControlsCreated event.
|
|
16625
|
+
*/
|
|
16257
16626
|
export interface SmartField$InnerControlsCreatedEventParameters {}
|
|
16258
16627
|
|
|
16628
|
+
/**
|
|
16629
|
+
* Event object of the SmartField#innerControlsCreated event.
|
|
16630
|
+
*/
|
|
16259
16631
|
export type SmartField$InnerControlsCreatedEvent = Event<
|
|
16260
16632
|
SmartField$InnerControlsCreatedEventParameters,
|
|
16261
16633
|
SmartField
|
|
16262
16634
|
>;
|
|
16263
16635
|
|
|
16636
|
+
/**
|
|
16637
|
+
* Parameters of the SmartField#modeToggled event.
|
|
16638
|
+
*/
|
|
16264
16639
|
export interface SmartField$ModeToggledEventParameters {}
|
|
16265
16640
|
|
|
16641
|
+
/**
|
|
16642
|
+
* Event object of the SmartField#modeToggled event.
|
|
16643
|
+
*/
|
|
16266
16644
|
export type SmartField$ModeToggledEvent = Event<
|
|
16267
16645
|
SmartField$ModeToggledEventParameters,
|
|
16268
16646
|
SmartField
|
|
16269
16647
|
>;
|
|
16270
16648
|
|
|
16649
|
+
/**
|
|
16650
|
+
* Parameters of the SmartField#press event.
|
|
16651
|
+
*
|
|
16652
|
+
* @deprecated (since 1.116.0)
|
|
16653
|
+
*/
|
|
16271
16654
|
export interface SmartField$PressEventParameters {}
|
|
16272
16655
|
|
|
16656
|
+
/**
|
|
16657
|
+
* Event object of the SmartField#press event.
|
|
16658
|
+
*
|
|
16659
|
+
* @deprecated (since 1.116.0)
|
|
16660
|
+
*/
|
|
16273
16661
|
export type SmartField$PressEvent = Event<
|
|
16274
16662
|
SmartField$PressEventParameters,
|
|
16275
16663
|
SmartField
|
|
16276
16664
|
>;
|
|
16277
16665
|
|
|
16666
|
+
/**
|
|
16667
|
+
* Parameters of the SmartField#valueListChanged event.
|
|
16668
|
+
*/
|
|
16278
16669
|
export interface SmartField$ValueListChangedEventParameters {
|
|
16279
16670
|
/**
|
|
16280
16671
|
* An array of selected values
|
|
@@ -16282,11 +16673,17 @@ declare module "sap/ui/comp/smartfield/SmartField" {
|
|
|
16282
16673
|
changes?: Control[];
|
|
16283
16674
|
}
|
|
16284
16675
|
|
|
16676
|
+
/**
|
|
16677
|
+
* Event object of the SmartField#valueListChanged event.
|
|
16678
|
+
*/
|
|
16285
16679
|
export type SmartField$ValueListChangedEvent = Event<
|
|
16286
16680
|
SmartField$ValueListChangedEventParameters,
|
|
16287
16681
|
SmartField
|
|
16288
16682
|
>;
|
|
16289
16683
|
|
|
16684
|
+
/**
|
|
16685
|
+
* Parameters of the SmartField#visibleChanged event.
|
|
16686
|
+
*/
|
|
16290
16687
|
export interface SmartField$VisibleChangedEventParameters {
|
|
16291
16688
|
/**
|
|
16292
16689
|
* If `true`, the control is visible
|
|
@@ -16294,6 +16691,9 @@ declare module "sap/ui/comp/smartfield/SmartField" {
|
|
|
16294
16691
|
visible?: boolean;
|
|
16295
16692
|
}
|
|
16296
16693
|
|
|
16694
|
+
/**
|
|
16695
|
+
* Event object of the SmartField#visibleChanged event.
|
|
16696
|
+
*/
|
|
16297
16697
|
export type SmartField$VisibleChangedEvent = Event<
|
|
16298
16698
|
SmartField$VisibleChangedEventParameters,
|
|
16299
16699
|
SmartField
|
|
@@ -16499,7 +16899,11 @@ declare module "sap/ui/comp/smartfield/ComboBox" {
|
|
|
16499
16899
|
sValueTextArrangement?: string
|
|
16500
16900
|
): this;
|
|
16501
16901
|
}
|
|
16502
|
-
|
|
16902
|
+
/**
|
|
16903
|
+
* Describes the settings that can be provided to the ComboBox constructor.
|
|
16904
|
+
*
|
|
16905
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
16906
|
+
*/
|
|
16503
16907
|
export interface $ComboBoxSettings extends $ComboBoxSettings1 {
|
|
16504
16908
|
/**
|
|
16505
16909
|
* Key of the selected item.
|
|
@@ -16698,7 +17102,9 @@ declare module "sap/ui/comp/smartfield/Configuration" {
|
|
|
16698
17102
|
bPreventInitialDataFetchInValueHelpDialog?: boolean
|
|
16699
17103
|
): this;
|
|
16700
17104
|
}
|
|
16701
|
-
|
|
17105
|
+
/**
|
|
17106
|
+
* Describes the settings that can be provided to the Configuration constructor.
|
|
17107
|
+
*/
|
|
16702
17108
|
export interface $ConfigurationSettings extends $ElementSettings {
|
|
16703
17109
|
/**
|
|
16704
17110
|
* By default the SmartField chooses the controls it hosts by interpreting OData metadata. This property
|
|
@@ -16872,7 +17278,9 @@ declare module "sap/ui/comp/smartfield/ControlProposal" {
|
|
|
16872
17278
|
oObjectStatus: ObjectStatus
|
|
16873
17279
|
): this;
|
|
16874
17280
|
}
|
|
16875
|
-
|
|
17281
|
+
/**
|
|
17282
|
+
* Describes the settings that can be provided to the ControlProposal constructor.
|
|
17283
|
+
*/
|
|
16876
17284
|
export interface $ControlProposalSettings extends $ElementSettings {
|
|
16877
17285
|
/**
|
|
16878
17286
|
* By default the SmartField chooses the controls it hosts by interpreting OData meta data. This property
|
|
@@ -17031,7 +17439,9 @@ declare module "sap/ui/comp/smartfield/ObjectStatus" {
|
|
|
17031
17439
|
| keyof typeof smartfield.CriticalityRepresentationType
|
|
17032
17440
|
): this;
|
|
17033
17441
|
}
|
|
17034
|
-
|
|
17442
|
+
/**
|
|
17443
|
+
* Describes the settings that can be provided to the ObjectStatus constructor.
|
|
17444
|
+
*/
|
|
17035
17445
|
export interface $ObjectStatusSettings extends $ElementSettings {
|
|
17036
17446
|
/**
|
|
17037
17447
|
* Optional attribute to determine the rendered state. Possible values are the numeric representations of
|
|
@@ -17927,7 +18337,9 @@ declare module "sap/ui/comp/smartfilterbar/ControlConfiguration" {
|
|
|
17927
18337
|
sWidth?: string
|
|
17928
18338
|
): this;
|
|
17929
18339
|
}
|
|
17930
|
-
|
|
18340
|
+
/**
|
|
18341
|
+
* Describes the settings that can be provided to the ControlConfiguration constructor.
|
|
18342
|
+
*/
|
|
17931
18343
|
export interface $ControlConfigurationSettings extends $ElementSettings {
|
|
17932
18344
|
/**
|
|
17933
18345
|
* The key property corresponds to the field name from the OData service $metadata document.
|
|
@@ -18112,6 +18524,9 @@ declare module "sap/ui/comp/smartfilterbar/ControlConfiguration" {
|
|
|
18112
18524
|
change?: (oEvent: ControlConfiguration$ChangeEvent) => void;
|
|
18113
18525
|
}
|
|
18114
18526
|
|
|
18527
|
+
/**
|
|
18528
|
+
* Parameters of the ControlConfiguration#change event.
|
|
18529
|
+
*/
|
|
18115
18530
|
export interface ControlConfiguration$ChangeEventParameters {
|
|
18116
18531
|
/**
|
|
18117
18532
|
* Name of the changed property
|
|
@@ -18119,6 +18534,9 @@ declare module "sap/ui/comp/smartfilterbar/ControlConfiguration" {
|
|
|
18119
18534
|
propertyName?: string;
|
|
18120
18535
|
}
|
|
18121
18536
|
|
|
18537
|
+
/**
|
|
18538
|
+
* Event object of the ControlConfiguration#change event.
|
|
18539
|
+
*/
|
|
18122
18540
|
export type ControlConfiguration$ChangeEvent = Event<
|
|
18123
18541
|
ControlConfiguration$ChangeEventParameters,
|
|
18124
18542
|
ControlConfiguration
|
|
@@ -18369,7 +18787,9 @@ declare module "sap/ui/comp/smartfilterbar/GroupConfiguration" {
|
|
|
18369
18787
|
oLabel?: any
|
|
18370
18788
|
): this;
|
|
18371
18789
|
}
|
|
18372
|
-
|
|
18790
|
+
/**
|
|
18791
|
+
* Describes the settings that can be provided to the GroupConfiguration constructor.
|
|
18792
|
+
*/
|
|
18373
18793
|
export interface $GroupConfigurationSettings extends $ElementSettings {
|
|
18374
18794
|
/**
|
|
18375
18795
|
* The key property must correspond to the `EntitySet` name or `FieldGroup Qualifier` from the OData service
|
|
@@ -18394,6 +18814,9 @@ declare module "sap/ui/comp/smartfilterbar/GroupConfiguration" {
|
|
|
18394
18814
|
change?: (oEvent: GroupConfiguration$ChangeEvent) => void;
|
|
18395
18815
|
}
|
|
18396
18816
|
|
|
18817
|
+
/**
|
|
18818
|
+
* Parameters of the GroupConfiguration#change event.
|
|
18819
|
+
*/
|
|
18397
18820
|
export interface GroupConfiguration$ChangeEventParameters {
|
|
18398
18821
|
/**
|
|
18399
18822
|
* Name of the changed property
|
|
@@ -18401,6 +18824,9 @@ declare module "sap/ui/comp/smartfilterbar/GroupConfiguration" {
|
|
|
18401
18824
|
propertyName?: string;
|
|
18402
18825
|
}
|
|
18403
18826
|
|
|
18827
|
+
/**
|
|
18828
|
+
* Event object of the GroupConfiguration#change event.
|
|
18829
|
+
*/
|
|
18404
18830
|
export type GroupConfiguration$ChangeEvent = Event<
|
|
18405
18831
|
GroupConfiguration$ChangeEventParameters,
|
|
18406
18832
|
GroupConfiguration
|
|
@@ -18593,7 +19019,9 @@ declare module "sap/ui/comp/smartfilterbar/SelectOption" {
|
|
|
18593
19019
|
sSign?: smartfilterbar.SelectOptionSign
|
|
18594
19020
|
): this;
|
|
18595
19021
|
}
|
|
18596
|
-
|
|
19022
|
+
/**
|
|
19023
|
+
* Describes the settings that can be provided to the SelectOption constructor.
|
|
19024
|
+
*/
|
|
18597
19025
|
export interface $SelectOptionSettings extends $ElementSettings {
|
|
18598
19026
|
/**
|
|
18599
19027
|
* The sign for a Select Option. Possible values are I for include or E for exclude.
|
|
@@ -18720,7 +19148,11 @@ declare module "sap/ui/comp/smartfilterbar/SFBMultiComboBox" {
|
|
|
18720
19148
|
sTextArrangement?: string
|
|
18721
19149
|
): this;
|
|
18722
19150
|
}
|
|
18723
|
-
|
|
19151
|
+
/**
|
|
19152
|
+
* Describes the settings that can be provided to the SFBMultiComboBox constructor.
|
|
19153
|
+
*
|
|
19154
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
19155
|
+
*/
|
|
18724
19156
|
export interface $SFBMultiComboBoxSettings extends $MultiComboBoxSettings {
|
|
18725
19157
|
/**
|
|
18726
19158
|
* Sets the `value` property formatting according to the `com.sap.vocabularies.UI.v1.TextArrangementType`
|
|
@@ -19956,6 +20388,9 @@ declare module "sap/ui/comp/smartfilterbar/SmartFilterBar" {
|
|
|
19956
20388
|
error?: undefined | boolean;
|
|
19957
20389
|
};
|
|
19958
20390
|
|
|
20391
|
+
/**
|
|
20392
|
+
* Describes the settings that can be provided to the SmartFilterBar constructor.
|
|
20393
|
+
*/
|
|
19959
20394
|
export interface $SmartFilterBarSettings extends $FilterBarSettings {
|
|
19960
20395
|
/**
|
|
19961
20396
|
* The OData entity type whose metadata is used to create the `SmartFilterBar`. **Note:** Changing this
|
|
@@ -20127,6 +20562,9 @@ declare module "sap/ui/comp/smartfilterbar/SmartFilterBar" {
|
|
|
20127
20562
|
pendingChange?: (oEvent: SmartFilterBar$PendingChangeEvent) => void;
|
|
20128
20563
|
}
|
|
20129
20564
|
|
|
20565
|
+
/**
|
|
20566
|
+
* Parameters of the SmartFilterBar#pendingChange event.
|
|
20567
|
+
*/
|
|
20130
20568
|
export interface SmartFilterBar$PendingChangeEventParameters {
|
|
20131
20569
|
/**
|
|
20132
20570
|
* The current pending value.
|
|
@@ -20134,6 +20572,9 @@ declare module "sap/ui/comp/smartfilterbar/SmartFilterBar" {
|
|
|
20134
20572
|
pendingValue?: boolean;
|
|
20135
20573
|
}
|
|
20136
20574
|
|
|
20575
|
+
/**
|
|
20576
|
+
* Event object of the SmartFilterBar#pendingChange event.
|
|
20577
|
+
*/
|
|
20137
20578
|
export type SmartFilterBar$PendingChangeEvent = Event<
|
|
20138
20579
|
SmartFilterBar$PendingChangeEventParameters,
|
|
20139
20580
|
SmartFilterBar
|
|
@@ -20240,7 +20681,9 @@ declare module "sap/ui/comp/smartfilterbar/SmartFilterBarFilterGroupItem" {
|
|
|
20240
20681
|
oControl: Control
|
|
20241
20682
|
): void;
|
|
20242
20683
|
}
|
|
20243
|
-
|
|
20684
|
+
/**
|
|
20685
|
+
* Describes the settings that can be provided to the SmartFilterBarFilterGroupItem constructor.
|
|
20686
|
+
*/
|
|
20244
20687
|
export interface $SmartFilterBarFilterGroupItemSettings
|
|
20245
20688
|
extends $FilterGroupItemSettings {}
|
|
20246
20689
|
}
|
|
@@ -20487,7 +20930,9 @@ declare module "sap/ui/comp/smartform/ColumnLayout" {
|
|
|
20487
20930
|
sLabelCellsLarge?: form.ColumnCells
|
|
20488
20931
|
): this;
|
|
20489
20932
|
}
|
|
20490
|
-
|
|
20933
|
+
/**
|
|
20934
|
+
* Describes the settings that can be provided to the ColumnLayout constructor.
|
|
20935
|
+
*/
|
|
20491
20936
|
export interface $ColumnLayoutSettings extends $ElementSettings {
|
|
20492
20937
|
/**
|
|
20493
20938
|
* Number of columns for extra-large size.
|
|
@@ -20925,7 +21370,9 @@ declare module "sap/ui/comp/smartform/Group" {
|
|
|
20925
21370
|
bVisible: boolean
|
|
20926
21371
|
): this;
|
|
20927
21372
|
}
|
|
20928
|
-
|
|
21373
|
+
/**
|
|
21374
|
+
* Describes the settings that can be provided to the Group constructor.
|
|
21375
|
+
*/
|
|
20929
21376
|
export interface $GroupSettings extends $FormContainerSettings {
|
|
20930
21377
|
/**
|
|
20931
21378
|
* Specifies whether the groups are rendered in a `ResponsiveLayout` with label on top of the group element.
|
|
@@ -21421,7 +21868,9 @@ declare module "sap/ui/comp/smartform/GroupElement" {
|
|
|
21421
21868
|
bUseHorizontalLayout?: boolean
|
|
21422
21869
|
): this;
|
|
21423
21870
|
}
|
|
21424
|
-
|
|
21871
|
+
/**
|
|
21872
|
+
* Describes the settings that can be provided to the GroupElement constructor.
|
|
21873
|
+
*/
|
|
21425
21874
|
export interface $GroupElementSettings extends $FormElementSettings {
|
|
21426
21875
|
/**
|
|
21427
21876
|
* Specifies whether the groups shall be rendered in a `ResponsiveLayout` with label on top of the group
|
|
@@ -21473,8 +21922,14 @@ declare module "sap/ui/comp/smartform/GroupElement" {
|
|
|
21473
21922
|
visibleChanged?: (oEvent: Event) => void;
|
|
21474
21923
|
}
|
|
21475
21924
|
|
|
21925
|
+
/**
|
|
21926
|
+
* Parameters of the GroupElement#visibleChanged event.
|
|
21927
|
+
*/
|
|
21476
21928
|
export interface GroupElement$VisibleChangedEventParameters {}
|
|
21477
21929
|
|
|
21930
|
+
/**
|
|
21931
|
+
* Event object of the GroupElement#visibleChanged event.
|
|
21932
|
+
*/
|
|
21478
21933
|
export type GroupElement$VisibleChangedEvent = Event<
|
|
21479
21934
|
GroupElement$VisibleChangedEventParameters,
|
|
21480
21935
|
GroupElement
|
|
@@ -22004,7 +22459,9 @@ declare module "sap/ui/comp/smartform/Layout" {
|
|
|
22004
22459
|
bSingleGroupFullSize?: boolean
|
|
22005
22460
|
): this;
|
|
22006
22461
|
}
|
|
22007
|
-
|
|
22462
|
+
/**
|
|
22463
|
+
* Describes the settings that can be provided to the Layout constructor.
|
|
22464
|
+
*/
|
|
22008
22465
|
export interface $LayoutSettings extends $ElementSettings {
|
|
22009
22466
|
/**
|
|
22010
22467
|
* Default span for labels in extra large size.
|
|
@@ -22453,7 +22910,9 @@ declare module "sap/ui/comp/smartform/SemanticGroupElement" {
|
|
|
22453
22910
|
iElementForLabel?: int
|
|
22454
22911
|
): this;
|
|
22455
22912
|
}
|
|
22456
|
-
|
|
22913
|
+
/**
|
|
22914
|
+
* Describes the settings that can be provided to the SemanticGroupElement constructor.
|
|
22915
|
+
*/
|
|
22457
22916
|
export interface $SemanticGroupElementSettings
|
|
22458
22917
|
extends $SemanticFormElementSettings {
|
|
22459
22918
|
/**
|
|
@@ -22476,8 +22935,14 @@ declare module "sap/ui/comp/smartform/SemanticGroupElement" {
|
|
|
22476
22935
|
visibleChanged?: (oEvent: Event) => void;
|
|
22477
22936
|
}
|
|
22478
22937
|
|
|
22938
|
+
/**
|
|
22939
|
+
* Parameters of the SemanticGroupElement#visibleChanged event.
|
|
22940
|
+
*/
|
|
22479
22941
|
export interface SemanticGroupElement$VisibleChangedEventParameters {}
|
|
22480
22942
|
|
|
22943
|
+
/**
|
|
22944
|
+
* Event object of the SemanticGroupElement#visibleChanged event.
|
|
22945
|
+
*/
|
|
22481
22946
|
export type SemanticGroupElement$VisibleChangedEvent = Event<
|
|
22482
22947
|
SemanticGroupElement$VisibleChangedEventParameters,
|
|
22483
22948
|
SemanticGroupElement
|
|
@@ -23552,7 +24017,9 @@ declare module "sap/ui/comp/smartform/SmartForm" {
|
|
|
23552
24017
|
| keyof typeof smartform.SmartFormValidationMode
|
|
23553
24018
|
): this;
|
|
23554
24019
|
}
|
|
23555
|
-
|
|
24020
|
+
/**
|
|
24021
|
+
* Describes the settings that can be provided to the SmartForm constructor.
|
|
24022
|
+
*/
|
|
23556
24023
|
export interface $SmartFormSettings extends $ControlSettings {
|
|
23557
24024
|
/**
|
|
23558
24025
|
* Title of the form.
|
|
@@ -23744,6 +24211,9 @@ declare module "sap/ui/comp/smartform/SmartForm" {
|
|
|
23744
24211
|
checked?: (oEvent: SmartForm$CheckedEvent) => void;
|
|
23745
24212
|
}
|
|
23746
24213
|
|
|
24214
|
+
/**
|
|
24215
|
+
* Parameters of the SmartForm#checked event.
|
|
24216
|
+
*/
|
|
23747
24217
|
export interface SmartForm$CheckedEventParameters {
|
|
23748
24218
|
/**
|
|
23749
24219
|
* An array containing all smart fields with errors
|
|
@@ -23751,11 +24221,17 @@ declare module "sap/ui/comp/smartform/SmartForm" {
|
|
|
23751
24221
|
erroneousFields?: SmartField[];
|
|
23752
24222
|
}
|
|
23753
24223
|
|
|
24224
|
+
/**
|
|
24225
|
+
* Event object of the SmartForm#checked event.
|
|
24226
|
+
*/
|
|
23754
24227
|
export type SmartForm$CheckedEvent = Event<
|
|
23755
24228
|
SmartForm$CheckedEventParameters,
|
|
23756
24229
|
SmartForm
|
|
23757
24230
|
>;
|
|
23758
24231
|
|
|
24232
|
+
/**
|
|
24233
|
+
* Parameters of the SmartForm#editToggled event.
|
|
24234
|
+
*/
|
|
23759
24235
|
export interface SmartForm$EditToggledEventParameters {
|
|
23760
24236
|
/**
|
|
23761
24237
|
* If `true`, the control is in edit mode
|
|
@@ -23763,6 +24239,9 @@ declare module "sap/ui/comp/smartform/SmartForm" {
|
|
|
23763
24239
|
editable?: boolean;
|
|
23764
24240
|
}
|
|
23765
24241
|
|
|
24242
|
+
/**
|
|
24243
|
+
* Event object of the SmartForm#editToggled event.
|
|
24244
|
+
*/
|
|
23766
24245
|
export type SmartForm$EditToggledEvent = Event<
|
|
23767
24246
|
SmartForm$EditToggledEventParameters,
|
|
23768
24247
|
SmartForm
|
|
@@ -24496,7 +24975,9 @@ declare module "sap/ui/comp/smartlist/SmartList" {
|
|
|
24496
24975
|
oSmartFilter: ID | Control
|
|
24497
24976
|
): this;
|
|
24498
24977
|
}
|
|
24499
|
-
|
|
24978
|
+
/**
|
|
24979
|
+
* Describes the settings that can be provided to the SmartList constructor.
|
|
24980
|
+
*/
|
|
24500
24981
|
export interface $SmartListSettings extends $VBoxSettings {
|
|
24501
24982
|
/**
|
|
24502
24983
|
* The entity set name from which to fetch data.
|
|
@@ -24624,22 +25105,40 @@ declare module "sap/ui/comp/smartlist/SmartList" {
|
|
|
24624
25105
|
dataReceived?: (oEvent: Event) => void;
|
|
24625
25106
|
}
|
|
24626
25107
|
|
|
25108
|
+
/**
|
|
25109
|
+
* Parameters of the SmartList#beforeRebindList event.
|
|
25110
|
+
*/
|
|
24627
25111
|
export interface SmartList$BeforeRebindListEventParameters {}
|
|
24628
25112
|
|
|
25113
|
+
/**
|
|
25114
|
+
* Event object of the SmartList#beforeRebindList event.
|
|
25115
|
+
*/
|
|
24629
25116
|
export type SmartList$BeforeRebindListEvent = Event<
|
|
24630
25117
|
SmartList$BeforeRebindListEventParameters,
|
|
24631
25118
|
SmartList
|
|
24632
25119
|
>;
|
|
24633
25120
|
|
|
25121
|
+
/**
|
|
25122
|
+
* Parameters of the SmartList#dataReceived event.
|
|
25123
|
+
*/
|
|
24634
25124
|
export interface SmartList$DataReceivedEventParameters {}
|
|
24635
25125
|
|
|
25126
|
+
/**
|
|
25127
|
+
* Event object of the SmartList#dataReceived event.
|
|
25128
|
+
*/
|
|
24636
25129
|
export type SmartList$DataReceivedEvent = Event<
|
|
24637
25130
|
SmartList$DataReceivedEventParameters,
|
|
24638
25131
|
SmartList
|
|
24639
25132
|
>;
|
|
24640
25133
|
|
|
25134
|
+
/**
|
|
25135
|
+
* Parameters of the SmartList#initialise event.
|
|
25136
|
+
*/
|
|
24641
25137
|
export interface SmartList$InitialiseEventParameters {}
|
|
24642
25138
|
|
|
25139
|
+
/**
|
|
25140
|
+
* Event object of the SmartList#initialise event.
|
|
25141
|
+
*/
|
|
24643
25142
|
export type SmartList$InitialiseEvent = Event<
|
|
24644
25143
|
SmartList$InitialiseEventParameters,
|
|
24645
25144
|
SmartList
|
|
@@ -24741,7 +25240,9 @@ declare module "sap/ui/comp/smartmicrochart/SmartAreaMicroChart" {
|
|
|
24741
25240
|
*/
|
|
24742
25241
|
getEnableAutoBinding(): boolean;
|
|
24743
25242
|
}
|
|
24744
|
-
|
|
25243
|
+
/**
|
|
25244
|
+
* Describes the settings that can be provided to the SmartAreaMicroChart constructor.
|
|
25245
|
+
*/
|
|
24745
25246
|
export interface $SmartAreaMicroChartSettings
|
|
24746
25247
|
extends $SmartMicroChartBaseSettings {
|
|
24747
25248
|
/**
|
|
@@ -24866,7 +25367,9 @@ declare module "sap/ui/comp/smartmicrochart/SmartBulletMicroChart" {
|
|
|
24866
25367
|
bEnableAutoBinding?: boolean
|
|
24867
25368
|
): this;
|
|
24868
25369
|
}
|
|
24869
|
-
|
|
25370
|
+
/**
|
|
25371
|
+
* Describes the settings that can be provided to the SmartBulletMicroChart constructor.
|
|
25372
|
+
*/
|
|
24870
25373
|
export interface $SmartBulletMicroChartSettings
|
|
24871
25374
|
extends $SmartMicroChartBaseSettings {
|
|
24872
25375
|
/**
|
|
@@ -24965,7 +25468,9 @@ declare module "sap/ui/comp/smartmicrochart/SmartColumnMicroChart" {
|
|
|
24965
25468
|
*/
|
|
24966
25469
|
static getMetadata(): ElementMetadata;
|
|
24967
25470
|
}
|
|
24968
|
-
|
|
25471
|
+
/**
|
|
25472
|
+
* Describes the settings that can be provided to the SmartColumnMicroChart constructor.
|
|
25473
|
+
*/
|
|
24969
25474
|
export interface $SmartColumnMicroChartSettings
|
|
24970
25475
|
extends $SmartMicroChartBaseSettings {}
|
|
24971
25476
|
}
|
|
@@ -25061,7 +25566,9 @@ declare module "sap/ui/comp/smartmicrochart/SmartComparisonMicroChart" {
|
|
|
25061
25566
|
*/
|
|
25062
25567
|
static getMetadata(): ElementMetadata;
|
|
25063
25568
|
}
|
|
25064
|
-
|
|
25569
|
+
/**
|
|
25570
|
+
* Describes the settings that can be provided to the SmartComparisonMicroChart constructor.
|
|
25571
|
+
*/
|
|
25065
25572
|
export interface $SmartComparisonMicroChartSettings
|
|
25066
25573
|
extends $SmartMicroChartBaseSettings {}
|
|
25067
25574
|
}
|
|
@@ -25186,7 +25693,9 @@ declare module "sap/ui/comp/smartmicrochart/SmartDeltaMicroChart" {
|
|
|
25186
25693
|
bEnableAutoBinding?: boolean
|
|
25187
25694
|
): this;
|
|
25188
25695
|
}
|
|
25189
|
-
|
|
25696
|
+
/**
|
|
25697
|
+
* Describes the settings that can be provided to the SmartDeltaMicroChart constructor.
|
|
25698
|
+
*/
|
|
25190
25699
|
export interface $SmartDeltaMicroChartSettings
|
|
25191
25700
|
extends $SmartMicroChartBaseSettings {
|
|
25192
25701
|
/**
|
|
@@ -25332,7 +25841,9 @@ declare module "sap/ui/comp/smartmicrochart/SmartHarveyBallMicroChart" {
|
|
|
25332
25841
|
oFreeText: ID | Label
|
|
25333
25842
|
): this;
|
|
25334
25843
|
}
|
|
25335
|
-
|
|
25844
|
+
/**
|
|
25845
|
+
* Describes the settings that can be provided to the SmartHarveyBallMicroChart constructor.
|
|
25846
|
+
*/
|
|
25336
25847
|
export interface $SmartHarveyBallMicroChartSettings
|
|
25337
25848
|
extends $SmartMicroChartBaseSettings {
|
|
25338
25849
|
/**
|
|
@@ -25437,7 +25948,9 @@ declare module "sap/ui/comp/smartmicrochart/SmartLineMicroChart" {
|
|
|
25437
25948
|
*/
|
|
25438
25949
|
static getMetadata(): ElementMetadata;
|
|
25439
25950
|
}
|
|
25440
|
-
|
|
25951
|
+
/**
|
|
25952
|
+
* Describes the settings that can be provided to the SmartLineMicroChart constructor.
|
|
25953
|
+
*/
|
|
25441
25954
|
export interface $SmartLineMicroChartSettings
|
|
25442
25955
|
extends $SmartMicroChartBaseSettings {}
|
|
25443
25956
|
}
|
|
@@ -25970,7 +26483,9 @@ declare module "sap/ui/comp/smartmicrochart/SmartMicroChart" {
|
|
|
25970
26483
|
sWidth: CSSSize
|
|
25971
26484
|
): this;
|
|
25972
26485
|
}
|
|
25973
|
-
|
|
26486
|
+
/**
|
|
26487
|
+
* Describes the settings that can be provided to the SmartMicroChart constructor.
|
|
26488
|
+
*/
|
|
25974
26489
|
export interface $SmartMicroChartSettings extends $ControlSettings {
|
|
25975
26490
|
/**
|
|
25976
26491
|
* The entity set name to fetch data and create the internal chart representation from. Note that this is
|
|
@@ -26068,8 +26583,14 @@ declare module "sap/ui/comp/smartmicrochart/SmartMicroChart" {
|
|
|
26068
26583
|
initialize?: (oEvent: Event) => void;
|
|
26069
26584
|
}
|
|
26070
26585
|
|
|
26586
|
+
/**
|
|
26587
|
+
* Parameters of the SmartMicroChart#initialize event.
|
|
26588
|
+
*/
|
|
26071
26589
|
export interface SmartMicroChart$InitializeEventParameters {}
|
|
26072
26590
|
|
|
26591
|
+
/**
|
|
26592
|
+
* Event object of the SmartMicroChart#initialize event.
|
|
26593
|
+
*/
|
|
26073
26594
|
export type SmartMicroChart$InitializeEvent = Event<
|
|
26074
26595
|
SmartMicroChart$InitializeEventParameters,
|
|
26075
26596
|
SmartMicroChart
|
|
@@ -26548,7 +27069,9 @@ declare module "sap/ui/comp/smartmicrochart/SmartMicroChartBase" {
|
|
|
26548
27069
|
sWidth: CSSSize
|
|
26549
27070
|
): this;
|
|
26550
27071
|
}
|
|
26551
|
-
|
|
27072
|
+
/**
|
|
27073
|
+
* Describes the settings that can be provided to the SmartMicroChartBase constructor.
|
|
27074
|
+
*/
|
|
26552
27075
|
export interface $SmartMicroChartBaseSettings extends $ControlSettings {
|
|
26553
27076
|
/**
|
|
26554
27077
|
* The OData entity set bound to the smart line micro chart.
|
|
@@ -26633,8 +27156,14 @@ declare module "sap/ui/comp/smartmicrochart/SmartMicroChartBase" {
|
|
|
26633
27156
|
initialize?: (oEvent: Event) => void;
|
|
26634
27157
|
}
|
|
26635
27158
|
|
|
27159
|
+
/**
|
|
27160
|
+
* Parameters of the SmartMicroChartBase#initialize event.
|
|
27161
|
+
*/
|
|
26636
27162
|
export interface SmartMicroChartBase$InitializeEventParameters {}
|
|
26637
27163
|
|
|
27164
|
+
/**
|
|
27165
|
+
* Event object of the SmartMicroChartBase#initialize event.
|
|
27166
|
+
*/
|
|
26638
27167
|
export type SmartMicroChartBase$InitializeEvent = Event<
|
|
26639
27168
|
SmartMicroChartBase$InitializeEventParameters,
|
|
26640
27169
|
SmartMicroChartBase
|
|
@@ -26777,7 +27306,9 @@ declare module "sap/ui/comp/smartmicrochart/SmartRadialMicroChart" {
|
|
|
26777
27306
|
oFreeText: ID | Label
|
|
26778
27307
|
): this;
|
|
26779
27308
|
}
|
|
26780
|
-
|
|
27309
|
+
/**
|
|
27310
|
+
* Describes the settings that can be provided to the SmartRadialMicroChart constructor.
|
|
27311
|
+
*/
|
|
26781
27312
|
export interface $SmartRadialMicroChartSettings
|
|
26782
27313
|
extends $SmartMicroChartBaseSettings {
|
|
26783
27314
|
/**
|
|
@@ -26883,7 +27414,9 @@ declare module "sap/ui/comp/smartmicrochart/SmartStackedBarMicroChart" {
|
|
|
26883
27414
|
*/
|
|
26884
27415
|
static getMetadata(): ElementMetadata;
|
|
26885
27416
|
}
|
|
26886
|
-
|
|
27417
|
+
/**
|
|
27418
|
+
* Describes the settings that can be provided to the SmartStackedBarMicroChart constructor.
|
|
27419
|
+
*/
|
|
26887
27420
|
export interface $SmartStackedBarMicroChartSettings
|
|
26888
27421
|
extends $SmartMicroChartBaseSettings {}
|
|
26889
27422
|
}
|
|
@@ -27107,7 +27640,9 @@ declare module "sap/ui/comp/smartmultiedit/Container" {
|
|
|
27107
27640
|
oSmartForm: Field
|
|
27108
27641
|
): this;
|
|
27109
27642
|
}
|
|
27110
|
-
|
|
27643
|
+
/**
|
|
27644
|
+
* Describes the settings that can be provided to the Container constructor.
|
|
27645
|
+
*/
|
|
27111
27646
|
export interface $ContainerSettings extends $ControlSettings {
|
|
27112
27647
|
/**
|
|
27113
27648
|
* The entity set name to fetch metadata for. This entity set should have `sap:creatable` annotation set
|
|
@@ -27670,7 +28205,9 @@ declare module "sap/ui/comp/smartmultiedit/Field" {
|
|
|
27670
28205
|
bValidateTokenExistence?: boolean
|
|
27671
28206
|
): this;
|
|
27672
28207
|
}
|
|
27673
|
-
|
|
28208
|
+
/**
|
|
28209
|
+
* Describes the settings that can be provided to the Field constructor.
|
|
28210
|
+
*/
|
|
27674
28211
|
export interface $FieldSettings extends $ControlSettings {
|
|
27675
28212
|
/**
|
|
27676
28213
|
* The OData property name to fetch metadata for.
|
|
@@ -27715,6 +28252,9 @@ declare module "sap/ui/comp/smartmultiedit/Field" {
|
|
|
27715
28252
|
change?: (oEvent: Field$ChangeEvent) => void;
|
|
27716
28253
|
}
|
|
27717
28254
|
|
|
28255
|
+
/**
|
|
28256
|
+
* Parameters of the Field#change event.
|
|
28257
|
+
*/
|
|
27718
28258
|
export interface Field$ChangeEventParameters {
|
|
27719
28259
|
/**
|
|
27720
28260
|
* The selected item.
|
|
@@ -27722,6 +28262,9 @@ declare module "sap/ui/comp/smartmultiedit/Field" {
|
|
|
27722
28262
|
selectedItem?: Item;
|
|
27723
28263
|
}
|
|
27724
28264
|
|
|
28265
|
+
/**
|
|
28266
|
+
* Event object of the Field#change event.
|
|
28267
|
+
*/
|
|
27725
28268
|
export type Field$ChangeEvent = Event<Field$ChangeEventParameters, Field>;
|
|
27726
28269
|
}
|
|
27727
28270
|
|
|
@@ -28475,7 +29018,9 @@ declare module "sap/ui/comp/smartmultiinput/SmartMultiInput" {
|
|
|
28475
29018
|
sTextSeparator?: string
|
|
28476
29019
|
): this;
|
|
28477
29020
|
}
|
|
28478
|
-
|
|
29021
|
+
/**
|
|
29022
|
+
* Describes the settings that can be provided to the SmartMultiInput constructor.
|
|
29023
|
+
*/
|
|
28479
29024
|
export interface $SmartMultiInputSettings extends $SmartFieldSettings {
|
|
28480
29025
|
/**
|
|
28481
29026
|
* Enables value help with conditions. Can only be used without binding context. Otherwise, has no effect.
|
|
@@ -28543,6 +29088,9 @@ declare module "sap/ui/comp/smartmultiinput/SmartMultiInput" {
|
|
|
28543
29088
|
selectionFinish?: (oEvent: SmartMultiInput$SelectionFinishEvent) => void;
|
|
28544
29089
|
}
|
|
28545
29090
|
|
|
29091
|
+
/**
|
|
29092
|
+
* Parameters of the SmartMultiInput#beforeCreate event.
|
|
29093
|
+
*/
|
|
28546
29094
|
export interface SmartMultiInput$BeforeCreateEventParameters {
|
|
28547
29095
|
/**
|
|
28548
29096
|
* Data of the entry that should be created.
|
|
@@ -28557,11 +29105,17 @@ declare module "sap/ui/comp/smartmultiinput/SmartMultiInput" {
|
|
|
28557
29105
|
mParameters?: object;
|
|
28558
29106
|
}
|
|
28559
29107
|
|
|
29108
|
+
/**
|
|
29109
|
+
* Event object of the SmartMultiInput#beforeCreate event.
|
|
29110
|
+
*/
|
|
28560
29111
|
export type SmartMultiInput$BeforeCreateEvent = Event<
|
|
28561
29112
|
SmartMultiInput$BeforeCreateEventParameters,
|
|
28562
29113
|
SmartMultiInput
|
|
28563
29114
|
>;
|
|
28564
29115
|
|
|
29116
|
+
/**
|
|
29117
|
+
* Parameters of the SmartMultiInput#beforeRemove event.
|
|
29118
|
+
*/
|
|
28565
29119
|
export interface SmartMultiInput$BeforeRemoveEventParameters {
|
|
28566
29120
|
/**
|
|
28567
29121
|
* Parameter map that will be passed to the OData model's `remove` method, accepts the same properties as
|
|
@@ -28571,11 +29125,17 @@ declare module "sap/ui/comp/smartmultiinput/SmartMultiInput" {
|
|
|
28571
29125
|
mParameters?: object;
|
|
28572
29126
|
}
|
|
28573
29127
|
|
|
29128
|
+
/**
|
|
29129
|
+
* Event object of the SmartMultiInput#beforeRemove event.
|
|
29130
|
+
*/
|
|
28574
29131
|
export type SmartMultiInput$BeforeRemoveEvent = Event<
|
|
28575
29132
|
SmartMultiInput$BeforeRemoveEventParameters,
|
|
28576
29133
|
SmartMultiInput
|
|
28577
29134
|
>;
|
|
28578
29135
|
|
|
29136
|
+
/**
|
|
29137
|
+
* Parameters of the SmartMultiInput#selectionChange event.
|
|
29138
|
+
*/
|
|
28579
29139
|
export interface SmartMultiInput$SelectionChangeEventParameters {
|
|
28580
29140
|
/**
|
|
28581
29141
|
* Item that was selected or deselected.
|
|
@@ -28588,11 +29148,17 @@ declare module "sap/ui/comp/smartmultiinput/SmartMultiInput" {
|
|
|
28588
29148
|
selected?: boolean;
|
|
28589
29149
|
}
|
|
28590
29150
|
|
|
29151
|
+
/**
|
|
29152
|
+
* Event object of the SmartMultiInput#selectionChange event.
|
|
29153
|
+
*/
|
|
28591
29154
|
export type SmartMultiInput$SelectionChangeEvent = Event<
|
|
28592
29155
|
SmartMultiInput$SelectionChangeEventParameters,
|
|
28593
29156
|
SmartMultiInput
|
|
28594
29157
|
>;
|
|
28595
29158
|
|
|
29159
|
+
/**
|
|
29160
|
+
* Parameters of the SmartMultiInput#selectionFinish event.
|
|
29161
|
+
*/
|
|
28596
29162
|
export interface SmartMultiInput$SelectionFinishEventParameters {
|
|
28597
29163
|
/**
|
|
28598
29164
|
* The selected items which are selected after list box has been closed.
|
|
@@ -28600,11 +29166,17 @@ declare module "sap/ui/comp/smartmultiinput/SmartMultiInput" {
|
|
|
28600
29166
|
selectedItems?: Item[];
|
|
28601
29167
|
}
|
|
28602
29168
|
|
|
29169
|
+
/**
|
|
29170
|
+
* Event object of the SmartMultiInput#selectionFinish event.
|
|
29171
|
+
*/
|
|
28603
29172
|
export type SmartMultiInput$SelectionFinishEvent = Event<
|
|
28604
29173
|
SmartMultiInput$SelectionFinishEventParameters,
|
|
28605
29174
|
SmartMultiInput
|
|
28606
29175
|
>;
|
|
28607
29176
|
|
|
29177
|
+
/**
|
|
29178
|
+
* Parameters of the SmartMultiInput#tokenUpdate event.
|
|
29179
|
+
*/
|
|
28608
29180
|
export interface SmartMultiInput$TokenUpdateEventParameters {
|
|
28609
29181
|
/**
|
|
28610
29182
|
* Type of TokenUpdate event. There are two TokenUpdate types: `added` and `removed`. Use Tokenizer.TokenUpdateType.Added
|
|
@@ -28623,6 +29195,9 @@ declare module "sap/ui/comp/smartmultiinput/SmartMultiInput" {
|
|
|
28623
29195
|
removedTokens?: Token[];
|
|
28624
29196
|
}
|
|
28625
29197
|
|
|
29198
|
+
/**
|
|
29199
|
+
* Event object of the SmartMultiInput#tokenUpdate event.
|
|
29200
|
+
*/
|
|
28626
29201
|
export type SmartMultiInput$TokenUpdateEvent = Event<
|
|
28627
29202
|
SmartMultiInput$TokenUpdateEventParameters,
|
|
28628
29203
|
SmartMultiInput
|
|
@@ -31937,7 +32512,9 @@ declare module "sap/ui/comp/smarttable/SmartTable" {
|
|
|
31937
32512
|
*/
|
|
31938
32513
|
updateTableHeaderState(): void;
|
|
31939
32514
|
}
|
|
31940
|
-
|
|
32515
|
+
/**
|
|
32516
|
+
* Describes the settings that can be provided to the SmartTable constructor.
|
|
32517
|
+
*/
|
|
31941
32518
|
export interface $SmartTableSettings extends $VBoxSettings {
|
|
31942
32519
|
/**
|
|
31943
32520
|
* The entity set name from which to fetch data and generate the columns. Note that this is not a dynamic
|
|
@@ -32669,6 +33246,9 @@ declare module "sap/ui/comp/smarttable/SmartTable" {
|
|
|
32669
33246
|
uiStateChange?: (oEvent: Event) => void;
|
|
32670
33247
|
}
|
|
32671
33248
|
|
|
33249
|
+
/**
|
|
33250
|
+
* Parameters of the SmartTable#afterVariantApply event.
|
|
33251
|
+
*/
|
|
32672
33252
|
export interface SmartTable$AfterVariantApplyEventParameters {
|
|
32673
33253
|
/**
|
|
32674
33254
|
* ID of the currently selected variant
|
|
@@ -32676,18 +33256,30 @@ declare module "sap/ui/comp/smarttable/SmartTable" {
|
|
|
32676
33256
|
currentVariantId?: string;
|
|
32677
33257
|
}
|
|
32678
33258
|
|
|
33259
|
+
/**
|
|
33260
|
+
* Event object of the SmartTable#afterVariantApply event.
|
|
33261
|
+
*/
|
|
32679
33262
|
export type SmartTable$AfterVariantApplyEvent = Event<
|
|
32680
33263
|
SmartTable$AfterVariantApplyEventParameters,
|
|
32681
33264
|
SmartTable
|
|
32682
33265
|
>;
|
|
32683
33266
|
|
|
33267
|
+
/**
|
|
33268
|
+
* Parameters of the SmartTable#afterVariantInitialise event.
|
|
33269
|
+
*/
|
|
32684
33270
|
export interface SmartTable$AfterVariantInitialiseEventParameters {}
|
|
32685
33271
|
|
|
33272
|
+
/**
|
|
33273
|
+
* Event object of the SmartTable#afterVariantInitialise event.
|
|
33274
|
+
*/
|
|
32686
33275
|
export type SmartTable$AfterVariantInitialiseEvent = Event<
|
|
32687
33276
|
SmartTable$AfterVariantInitialiseEventParameters,
|
|
32688
33277
|
SmartTable
|
|
32689
33278
|
>;
|
|
32690
33279
|
|
|
33280
|
+
/**
|
|
33281
|
+
* Parameters of the SmartTable#afterVariantSave event.
|
|
33282
|
+
*/
|
|
32691
33283
|
export interface SmartTable$AfterVariantSaveEventParameters {
|
|
32692
33284
|
/**
|
|
32693
33285
|
* ID of the currently selected variant
|
|
@@ -32695,11 +33287,17 @@ declare module "sap/ui/comp/smarttable/SmartTable" {
|
|
|
32695
33287
|
currentVariantId?: string;
|
|
32696
33288
|
}
|
|
32697
33289
|
|
|
33290
|
+
/**
|
|
33291
|
+
* Event object of the SmartTable#afterVariantSave event.
|
|
33292
|
+
*/
|
|
32698
33293
|
export type SmartTable$AfterVariantSaveEvent = Event<
|
|
32699
33294
|
SmartTable$AfterVariantSaveEventParameters,
|
|
32700
33295
|
SmartTable
|
|
32701
33296
|
>;
|
|
32702
33297
|
|
|
33298
|
+
/**
|
|
33299
|
+
* Parameters of the SmartTable#beforeExport event.
|
|
33300
|
+
*/
|
|
32703
33301
|
export interface SmartTable$BeforeExportEventParameters {
|
|
32704
33302
|
/**
|
|
32705
33303
|
* General export configuration
|
|
@@ -32717,11 +33315,19 @@ declare module "sap/ui/comp/smarttable/SmartTable" {
|
|
|
32717
33315
|
filterSettings?: /* was: sap.ui.export.util.Filter */ any[];
|
|
32718
33316
|
}
|
|
32719
33317
|
|
|
33318
|
+
/**
|
|
33319
|
+
* Event object of the SmartTable#beforeExport event.
|
|
33320
|
+
*/
|
|
32720
33321
|
export type SmartTable$BeforeExportEvent = Event<
|
|
32721
33322
|
SmartTable$BeforeExportEventParameters,
|
|
32722
33323
|
SmartTable
|
|
32723
33324
|
>;
|
|
32724
33325
|
|
|
33326
|
+
/**
|
|
33327
|
+
* Parameters of the SmartTable#beforePaste event.
|
|
33328
|
+
*
|
|
33329
|
+
* @experimental (since 1.64) - This API is experimental and subject to change
|
|
33330
|
+
*/
|
|
32725
33331
|
export interface SmartTable$BeforePasteEventParameters {
|
|
32726
33332
|
/**
|
|
32727
33333
|
* Contains array of column info object as determined by the SmartTable
|
|
@@ -32729,11 +33335,19 @@ declare module "sap/ui/comp/smarttable/SmartTable" {
|
|
|
32729
33335
|
columnInfos?: object[];
|
|
32730
33336
|
}
|
|
32731
33337
|
|
|
33338
|
+
/**
|
|
33339
|
+
* Event object of the SmartTable#beforePaste event.
|
|
33340
|
+
*
|
|
33341
|
+
* @experimental (since 1.64) - This API is experimental and subject to change
|
|
33342
|
+
*/
|
|
32732
33343
|
export type SmartTable$BeforePasteEvent = Event<
|
|
32733
33344
|
SmartTable$BeforePasteEventParameters,
|
|
32734
33345
|
SmartTable
|
|
32735
33346
|
>;
|
|
32736
33347
|
|
|
33348
|
+
/**
|
|
33349
|
+
* Parameters of the SmartTable#beforeRebindTable event.
|
|
33350
|
+
*/
|
|
32737
33351
|
export interface SmartTable$BeforeRebindTableEventParameters {
|
|
32738
33352
|
/**
|
|
32739
33353
|
* Indicates whether the message filtering is active or not
|
|
@@ -32746,39 +33360,77 @@ declare module "sap/ui/comp/smarttable/SmartTable" {
|
|
|
32746
33360
|
bindingParams?: object;
|
|
32747
33361
|
}
|
|
32748
33362
|
|
|
33363
|
+
/**
|
|
33364
|
+
* Event object of the SmartTable#beforeRebindTable event.
|
|
33365
|
+
*/
|
|
32749
33366
|
export type SmartTable$BeforeRebindTableEvent = Event<
|
|
32750
33367
|
SmartTable$BeforeRebindTableEventParameters,
|
|
32751
33368
|
SmartTable
|
|
32752
33369
|
>;
|
|
32753
33370
|
|
|
33371
|
+
/**
|
|
33372
|
+
* Parameters of the SmartTable#dataReceived event.
|
|
33373
|
+
*
|
|
33374
|
+
* @deprecated (since 1.56) - Use `beforeRebindTable` event to attach/listen to the binding "events" directly
|
|
33375
|
+
*/
|
|
32754
33376
|
export interface SmartTable$DataReceivedEventParameters {}
|
|
32755
33377
|
|
|
33378
|
+
/**
|
|
33379
|
+
* Event object of the SmartTable#dataReceived event.
|
|
33380
|
+
*
|
|
33381
|
+
* @deprecated (since 1.56) - Use `beforeRebindTable` event to attach/listen to the binding "events" directly
|
|
33382
|
+
*/
|
|
32756
33383
|
export type SmartTable$DataReceivedEvent = Event<
|
|
32757
33384
|
SmartTable$DataReceivedEventParameters,
|
|
32758
33385
|
SmartTable
|
|
32759
33386
|
>;
|
|
32760
33387
|
|
|
33388
|
+
/**
|
|
33389
|
+
* Parameters of the SmartTable#dataRequested event.
|
|
33390
|
+
*
|
|
33391
|
+
* @deprecated (since 1.56) - Use `beforeRebindTable` event to attach/listen to the binding "events" directly
|
|
33392
|
+
*/
|
|
32761
33393
|
export interface SmartTable$DataRequestedEventParameters {}
|
|
32762
33394
|
|
|
33395
|
+
/**
|
|
33396
|
+
* Event object of the SmartTable#dataRequested event.
|
|
33397
|
+
*
|
|
33398
|
+
* @deprecated (since 1.56) - Use `beforeRebindTable` event to attach/listen to the binding "events" directly
|
|
33399
|
+
*/
|
|
32763
33400
|
export type SmartTable$DataRequestedEvent = Event<
|
|
32764
33401
|
SmartTable$DataRequestedEventParameters,
|
|
32765
33402
|
SmartTable
|
|
32766
33403
|
>;
|
|
32767
33404
|
|
|
33405
|
+
/**
|
|
33406
|
+
* Parameters of the SmartTable#editToggled event.
|
|
33407
|
+
*/
|
|
32768
33408
|
export interface SmartTable$EditToggledEventParameters {}
|
|
32769
33409
|
|
|
33410
|
+
/**
|
|
33411
|
+
* Event object of the SmartTable#editToggled event.
|
|
33412
|
+
*/
|
|
32770
33413
|
export type SmartTable$EditToggledEvent = Event<
|
|
32771
33414
|
SmartTable$EditToggledEventParameters,
|
|
32772
33415
|
SmartTable
|
|
32773
33416
|
>;
|
|
32774
33417
|
|
|
33418
|
+
/**
|
|
33419
|
+
* Parameters of the SmartTable#fieldChange event.
|
|
33420
|
+
*/
|
|
32775
33421
|
export interface SmartTable$FieldChangeEventParameters {}
|
|
32776
33422
|
|
|
33423
|
+
/**
|
|
33424
|
+
* Event object of the SmartTable#fieldChange event.
|
|
33425
|
+
*/
|
|
32777
33426
|
export type SmartTable$FieldChangeEvent = Event<
|
|
32778
33427
|
SmartTable$FieldChangeEventParameters,
|
|
32779
33428
|
SmartTable
|
|
32780
33429
|
>;
|
|
32781
33430
|
|
|
33431
|
+
/**
|
|
33432
|
+
* Parameters of the SmartTable#fullScreenToggled event.
|
|
33433
|
+
*/
|
|
32782
33434
|
export interface SmartTable$FullScreenToggledEventParameters {
|
|
32783
33435
|
/**
|
|
32784
33436
|
* If `true`, control is in full screen mode
|
|
@@ -32786,18 +33438,32 @@ declare module "sap/ui/comp/smarttable/SmartTable" {
|
|
|
32786
33438
|
fullScreen?: boolean;
|
|
32787
33439
|
}
|
|
32788
33440
|
|
|
33441
|
+
/**
|
|
33442
|
+
* Event object of the SmartTable#fullScreenToggled event.
|
|
33443
|
+
*/
|
|
32789
33444
|
export type SmartTable$FullScreenToggledEvent = Event<
|
|
32790
33445
|
SmartTable$FullScreenToggledEventParameters,
|
|
32791
33446
|
SmartTable
|
|
32792
33447
|
>;
|
|
32793
33448
|
|
|
33449
|
+
/**
|
|
33450
|
+
* Parameters of the SmartTable#initialise event.
|
|
33451
|
+
*/
|
|
32794
33452
|
export interface SmartTable$InitialiseEventParameters {}
|
|
32795
33453
|
|
|
33454
|
+
/**
|
|
33455
|
+
* Event object of the SmartTable#initialise event.
|
|
33456
|
+
*/
|
|
32796
33457
|
export type SmartTable$InitialiseEvent = Event<
|
|
32797
33458
|
SmartTable$InitialiseEventParameters,
|
|
32798
33459
|
SmartTable
|
|
32799
33460
|
>;
|
|
32800
33461
|
|
|
33462
|
+
/**
|
|
33463
|
+
* Parameters of the SmartTable#paste event.
|
|
33464
|
+
*
|
|
33465
|
+
* @experimental (since 1.64) - This API is experimental and subject to change
|
|
33466
|
+
*/
|
|
32801
33467
|
export interface SmartTable$PasteEventParameters {
|
|
32802
33468
|
/**
|
|
32803
33469
|
* Contains parsed/validated paste information returned by PasteHelper.parse API
|
|
@@ -32805,11 +33471,19 @@ declare module "sap/ui/comp/smarttable/SmartTable" {
|
|
|
32805
33471
|
result?: object;
|
|
32806
33472
|
}
|
|
32807
33473
|
|
|
33474
|
+
/**
|
|
33475
|
+
* Event object of the SmartTable#paste event.
|
|
33476
|
+
*
|
|
33477
|
+
* @experimental (since 1.64) - This API is experimental and subject to change
|
|
33478
|
+
*/
|
|
32808
33479
|
export type SmartTable$PasteEvent = Event<
|
|
32809
33480
|
SmartTable$PasteEventParameters,
|
|
32810
33481
|
SmartTable
|
|
32811
33482
|
>;
|
|
32812
33483
|
|
|
33484
|
+
/**
|
|
33485
|
+
* Parameters of the SmartTable#showOverlay event.
|
|
33486
|
+
*/
|
|
32813
33487
|
export interface SmartTable$ShowOverlayEventParameters {
|
|
32814
33488
|
/**
|
|
32815
33489
|
* The overlay object contains information related to the table's overlay
|
|
@@ -32817,13 +33491,22 @@ declare module "sap/ui/comp/smarttable/SmartTable" {
|
|
|
32817
33491
|
overlay?: object;
|
|
32818
33492
|
}
|
|
32819
33493
|
|
|
33494
|
+
/**
|
|
33495
|
+
* Event object of the SmartTable#showOverlay event.
|
|
33496
|
+
*/
|
|
32820
33497
|
export type SmartTable$ShowOverlayEvent = Event<
|
|
32821
33498
|
SmartTable$ShowOverlayEventParameters,
|
|
32822
33499
|
SmartTable
|
|
32823
33500
|
>;
|
|
32824
33501
|
|
|
33502
|
+
/**
|
|
33503
|
+
* Parameters of the SmartTable#uiStateChange event.
|
|
33504
|
+
*/
|
|
32825
33505
|
export interface SmartTable$UiStateChangeEventParameters {}
|
|
32826
33506
|
|
|
33507
|
+
/**
|
|
33508
|
+
* Event object of the SmartTable#uiStateChange event.
|
|
33509
|
+
*/
|
|
32827
33510
|
export type SmartTable$UiStateChangeEvent = Event<
|
|
32828
33511
|
SmartTable$UiStateChangeEventParameters,
|
|
32829
33512
|
SmartTable
|
|
@@ -33001,7 +33684,9 @@ declare module "sap/ui/comp/smartvariants/PersonalizableInfo" {
|
|
|
33001
33684
|
sType?: string
|
|
33002
33685
|
): this;
|
|
33003
33686
|
}
|
|
33004
|
-
|
|
33687
|
+
/**
|
|
33688
|
+
* Describes the settings that can be provided to the PersonalizableInfo constructor.
|
|
33689
|
+
*/
|
|
33005
33690
|
export interface $PersonalizableInfoSettings extends $ElementSettings {
|
|
33006
33691
|
/**
|
|
33007
33692
|
* Describes the type of variant management.
|
|
@@ -33592,7 +34277,9 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagement" {
|
|
|
33592
34277
|
sPersistencyKey?: string
|
|
33593
34278
|
): this;
|
|
33594
34279
|
}
|
|
33595
|
-
|
|
34280
|
+
/**
|
|
34281
|
+
* Describes the settings that can be provided to the SmartVariantManagement constructor.
|
|
34282
|
+
*/
|
|
33596
34283
|
export interface $SmartVariantManagementSettings
|
|
33597
34284
|
extends $SmartVariantManagementBaseSettings {
|
|
33598
34285
|
/**
|
|
@@ -33634,20 +34321,41 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagement" {
|
|
|
33634
34321
|
afterSave?: (oEvent: Event) => void;
|
|
33635
34322
|
}
|
|
33636
34323
|
|
|
34324
|
+
/**
|
|
34325
|
+
* Parameters of the SmartVariantManagement#afterSave event.
|
|
34326
|
+
*/
|
|
33637
34327
|
export interface SmartVariantManagement$AfterSaveEventParameters {}
|
|
33638
34328
|
|
|
34329
|
+
/**
|
|
34330
|
+
* Event object of the SmartVariantManagement#afterSave event.
|
|
34331
|
+
*/
|
|
33639
34332
|
export type SmartVariantManagement$AfterSaveEvent = Event<
|
|
33640
34333
|
SmartVariantManagement$AfterSaveEventParameters,
|
|
33641
34334
|
SmartVariantManagement
|
|
33642
34335
|
>;
|
|
33643
34336
|
|
|
34337
|
+
/**
|
|
34338
|
+
* Parameters of the SmartVariantManagement#initialise event.
|
|
34339
|
+
*
|
|
34340
|
+
* @deprecated (since 1.38.0) - Replaced by providing the personalizable control and the callback via the
|
|
34341
|
+
* `initialise`-method.
|
|
34342
|
+
*/
|
|
33644
34343
|
export interface SmartVariantManagement$InitialiseEventParameters {}
|
|
33645
34344
|
|
|
34345
|
+
/**
|
|
34346
|
+
* Event object of the SmartVariantManagement#initialise event.
|
|
34347
|
+
*
|
|
34348
|
+
* @deprecated (since 1.38.0) - Replaced by providing the personalizable control and the callback via the
|
|
34349
|
+
* `initialise`-method.
|
|
34350
|
+
*/
|
|
33646
34351
|
export type SmartVariantManagement$InitialiseEvent = Event<
|
|
33647
34352
|
SmartVariantManagement$InitialiseEventParameters,
|
|
33648
34353
|
SmartVariantManagement
|
|
33649
34354
|
>;
|
|
33650
34355
|
|
|
34356
|
+
/**
|
|
34357
|
+
* Parameters of the SmartVariantManagement#save event.
|
|
34358
|
+
*/
|
|
33651
34359
|
export interface SmartVariantManagement$SaveEventParameters
|
|
33652
34360
|
extends SmartVariantManagementBase$SaveEventParameters {
|
|
33653
34361
|
/**
|
|
@@ -33658,6 +34366,9 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagement" {
|
|
|
33658
34366
|
tile?: boolean;
|
|
33659
34367
|
}
|
|
33660
34368
|
|
|
34369
|
+
/**
|
|
34370
|
+
* Event object of the SmartVariantManagement#save event.
|
|
34371
|
+
*/
|
|
33661
34372
|
export type SmartVariantManagement$SaveEvent = Event<
|
|
33662
34373
|
SmartVariantManagement$SaveEventParameters,
|
|
33663
34374
|
SmartVariantManagement
|
|
@@ -33772,7 +34483,9 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementAdapter" {
|
|
|
33772
34483
|
oSelectionPresentationVariants?: object
|
|
33773
34484
|
): this;
|
|
33774
34485
|
}
|
|
33775
|
-
|
|
34486
|
+
/**
|
|
34487
|
+
* Describes the settings that can be provided to the SmartVariantManagementAdapter constructor.
|
|
34488
|
+
*/
|
|
33776
34489
|
export interface $SmartVariantManagementAdapterSettings
|
|
33777
34490
|
extends $ElementSettings {
|
|
33778
34491
|
/**
|
|
@@ -34731,7 +35444,9 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementBase" {
|
|
|
34731
35444
|
bVariantCreationByUserAllowed?: boolean
|
|
34732
35445
|
): this;
|
|
34733
35446
|
}
|
|
34734
|
-
|
|
35447
|
+
/**
|
|
35448
|
+
* Describes the settings that can be provided to the SmartVariantManagementBase constructor.
|
|
35449
|
+
*/
|
|
34735
35450
|
export interface $SmartVariantManagementBaseSettings
|
|
34736
35451
|
extends $ControlSettings {
|
|
34737
35452
|
/**
|
|
@@ -34881,6 +35596,9 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementBase" {
|
|
|
34881
35596
|
select?: (oEvent: SmartVariantManagementBase$SelectEvent) => void;
|
|
34882
35597
|
}
|
|
34883
35598
|
|
|
35599
|
+
/**
|
|
35600
|
+
* Parameters of the SmartVariantManagementBase#manage event.
|
|
35601
|
+
*/
|
|
34884
35602
|
export interface SmartVariantManagementBase$ManageEventParameters {
|
|
34885
35603
|
/**
|
|
34886
35604
|
* List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
|
|
@@ -34904,11 +35622,17 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementBase" {
|
|
|
34904
35622
|
def?: string;
|
|
34905
35623
|
}
|
|
34906
35624
|
|
|
35625
|
+
/**
|
|
35626
|
+
* Event object of the SmartVariantManagementBase#manage event.
|
|
35627
|
+
*/
|
|
34907
35628
|
export type SmartVariantManagementBase$ManageEvent = Event<
|
|
34908
35629
|
SmartVariantManagementBase$ManageEventParameters,
|
|
34909
35630
|
SmartVariantManagementBase
|
|
34910
35631
|
>;
|
|
34911
35632
|
|
|
35633
|
+
/**
|
|
35634
|
+
* Parameters of the SmartVariantManagementBase#save event.
|
|
35635
|
+
*/
|
|
34912
35636
|
export interface SmartVariantManagementBase$SaveEventParameters {
|
|
34913
35637
|
/**
|
|
34914
35638
|
* The variant title
|
|
@@ -34941,11 +35665,17 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementBase" {
|
|
|
34941
35665
|
global?: boolean;
|
|
34942
35666
|
}
|
|
34943
35667
|
|
|
35668
|
+
/**
|
|
35669
|
+
* Event object of the SmartVariantManagementBase#save event.
|
|
35670
|
+
*/
|
|
34944
35671
|
export type SmartVariantManagementBase$SaveEvent = Event<
|
|
34945
35672
|
SmartVariantManagementBase$SaveEventParameters,
|
|
34946
35673
|
SmartVariantManagementBase
|
|
34947
35674
|
>;
|
|
34948
35675
|
|
|
35676
|
+
/**
|
|
35677
|
+
* Parameters of the SmartVariantManagementBase#select event.
|
|
35678
|
+
*/
|
|
34949
35679
|
export interface SmartVariantManagementBase$SelectEventParameters {
|
|
34950
35680
|
/**
|
|
34951
35681
|
* The variant key
|
|
@@ -34953,6 +35683,9 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementBase" {
|
|
|
34953
35683
|
key?: string;
|
|
34954
35684
|
}
|
|
34955
35685
|
|
|
35686
|
+
/**
|
|
35687
|
+
* Event object of the SmartVariantManagementBase#select event.
|
|
35688
|
+
*/
|
|
34956
35689
|
export type SmartVariantManagementBase$SelectEvent = Event<
|
|
34957
35690
|
SmartVariantManagementBase$SelectEventParameters,
|
|
34958
35691
|
SmartVariantManagementBase
|
|
@@ -35654,7 +36387,9 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementUi2" {
|
|
|
35654
36387
|
sTitleStyle?: TitleLevel | keyof typeof TitleLevel
|
|
35655
36388
|
): this;
|
|
35656
36389
|
}
|
|
35657
|
-
|
|
36390
|
+
/**
|
|
36391
|
+
* Describes the settings that can be provided to the SmartVariantManagementUi2 constructor.
|
|
36392
|
+
*/
|
|
35658
36393
|
export interface $SmartVariantManagementUi2Settings extends $ControlSettings {
|
|
35659
36394
|
/**
|
|
35660
36395
|
* Can be set to true or false depending on whether you want to enable or disable the control.
|
|
@@ -35729,20 +36464,35 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementUi2" {
|
|
|
35729
36464
|
select?: (oEvent: SmartVariantManagementUi2$SelectEvent) => void;
|
|
35730
36465
|
}
|
|
35731
36466
|
|
|
36467
|
+
/**
|
|
36468
|
+
* Parameters of the SmartVariantManagementUi2#afterSave event.
|
|
36469
|
+
*/
|
|
35732
36470
|
export interface SmartVariantManagementUi2$AfterSaveEventParameters {}
|
|
35733
36471
|
|
|
36472
|
+
/**
|
|
36473
|
+
* Event object of the SmartVariantManagementUi2#afterSave event.
|
|
36474
|
+
*/
|
|
35734
36475
|
export type SmartVariantManagementUi2$AfterSaveEvent = Event<
|
|
35735
36476
|
SmartVariantManagementUi2$AfterSaveEventParameters,
|
|
35736
36477
|
SmartVariantManagementUi2
|
|
35737
36478
|
>;
|
|
35738
36479
|
|
|
36480
|
+
/**
|
|
36481
|
+
* Parameters of the SmartVariantManagementUi2#initialise event.
|
|
36482
|
+
*/
|
|
35739
36483
|
export interface SmartVariantManagementUi2$InitialiseEventParameters {}
|
|
35740
36484
|
|
|
36485
|
+
/**
|
|
36486
|
+
* Event object of the SmartVariantManagementUi2#initialise event.
|
|
36487
|
+
*/
|
|
35741
36488
|
export type SmartVariantManagementUi2$InitialiseEvent = Event<
|
|
35742
36489
|
SmartVariantManagementUi2$InitialiseEventParameters,
|
|
35743
36490
|
SmartVariantManagementUi2
|
|
35744
36491
|
>;
|
|
35745
36492
|
|
|
36493
|
+
/**
|
|
36494
|
+
* Parameters of the SmartVariantManagementUi2#manage event.
|
|
36495
|
+
*/
|
|
35746
36496
|
export interface SmartVariantManagementUi2$ManageEventParameters {
|
|
35747
36497
|
/**
|
|
35748
36498
|
* List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
|
|
@@ -35761,11 +36511,17 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementUi2" {
|
|
|
35761
36511
|
def?: string;
|
|
35762
36512
|
}
|
|
35763
36513
|
|
|
36514
|
+
/**
|
|
36515
|
+
* Event object of the SmartVariantManagementUi2#manage event.
|
|
36516
|
+
*/
|
|
35764
36517
|
export type SmartVariantManagementUi2$ManageEvent = Event<
|
|
35765
36518
|
SmartVariantManagementUi2$ManageEventParameters,
|
|
35766
36519
|
SmartVariantManagementUi2
|
|
35767
36520
|
>;
|
|
35768
36521
|
|
|
36522
|
+
/**
|
|
36523
|
+
* Parameters of the SmartVariantManagementUi2#save event.
|
|
36524
|
+
*/
|
|
35769
36525
|
export interface SmartVariantManagementUi2$SaveEventParameters {
|
|
35770
36526
|
/**
|
|
35771
36527
|
* The variant title
|
|
@@ -35788,11 +36544,17 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementUi2" {
|
|
|
35788
36544
|
def?: boolean;
|
|
35789
36545
|
}
|
|
35790
36546
|
|
|
36547
|
+
/**
|
|
36548
|
+
* Event object of the SmartVariantManagementUi2#save event.
|
|
36549
|
+
*/
|
|
35791
36550
|
export type SmartVariantManagementUi2$SaveEvent = Event<
|
|
35792
36551
|
SmartVariantManagementUi2$SaveEventParameters,
|
|
35793
36552
|
SmartVariantManagementUi2
|
|
35794
36553
|
>;
|
|
35795
36554
|
|
|
36555
|
+
/**
|
|
36556
|
+
* Parameters of the SmartVariantManagementUi2#select event.
|
|
36557
|
+
*/
|
|
35796
36558
|
export interface SmartVariantManagementUi2$SelectEventParameters {
|
|
35797
36559
|
/**
|
|
35798
36560
|
* The variant key
|
|
@@ -35800,6 +36562,9 @@ declare module "sap/ui/comp/smartvariants/SmartVariantManagementUi2" {
|
|
|
35800
36562
|
key?: string;
|
|
35801
36563
|
}
|
|
35802
36564
|
|
|
36565
|
+
/**
|
|
36566
|
+
* Event object of the SmartVariantManagementUi2#select event.
|
|
36567
|
+
*/
|
|
35803
36568
|
export type SmartVariantManagementUi2$SelectEvent = Event<
|
|
35804
36569
|
SmartVariantManagementUi2$SelectEventParameters,
|
|
35805
36570
|
SmartVariantManagementUi2
|
|
@@ -36293,6 +37058,9 @@ declare module "sap/ui/comp/state/UIState" {
|
|
|
36293
37058
|
SelectionVariantID: string;
|
|
36294
37059
|
};
|
|
36295
37060
|
|
|
37061
|
+
/**
|
|
37062
|
+
* Describes the settings that can be provided to the UIState constructor.
|
|
37063
|
+
*/
|
|
36296
37064
|
export interface $UIStateSettings extends $ManagedObjectSettings {
|
|
36297
37065
|
/**
|
|
36298
37066
|
* Object representing the presentation variant. The structure looks like:
|
|
@@ -37544,7 +38312,9 @@ declare module "sap/ui/comp/valuehelpdialog/ValueHelpDialog" {
|
|
|
37544
38312
|
*/
|
|
37545
38313
|
update(): void;
|
|
37546
38314
|
}
|
|
37547
|
-
|
|
38315
|
+
/**
|
|
38316
|
+
* Describes the settings that can be provided to the ValueHelpDialog constructor.
|
|
38317
|
+
*/
|
|
37548
38318
|
export interface $ValueHelpDialogSettings extends $DialogSettings {
|
|
37549
38319
|
/**
|
|
37550
38320
|
* Defines the value for the basic search field. The value is set into the basic search field of the filter
|
|
@@ -37710,13 +38480,22 @@ declare module "sap/ui/comp/valuehelpdialog/ValueHelpDialog" {
|
|
|
37710
38480
|
updateSelection?: (oEvent: ValueHelpDialog$UpdateSelectionEvent) => void;
|
|
37711
38481
|
}
|
|
37712
38482
|
|
|
38483
|
+
/**
|
|
38484
|
+
* Parameters of the ValueHelpDialog#cancel event.
|
|
38485
|
+
*/
|
|
37713
38486
|
export interface ValueHelpDialog$CancelEventParameters {}
|
|
37714
38487
|
|
|
38488
|
+
/**
|
|
38489
|
+
* Event object of the ValueHelpDialog#cancel event.
|
|
38490
|
+
*/
|
|
37715
38491
|
export type ValueHelpDialog$CancelEvent = Event<
|
|
37716
38492
|
ValueHelpDialog$CancelEventParameters,
|
|
37717
38493
|
ValueHelpDialog
|
|
37718
38494
|
>;
|
|
37719
38495
|
|
|
38496
|
+
/**
|
|
38497
|
+
* Parameters of the ValueHelpDialog#ok event.
|
|
38498
|
+
*/
|
|
37720
38499
|
export interface ValueHelpDialog$OkEventParameters {
|
|
37721
38500
|
/**
|
|
37722
38501
|
* The array of tokens created or modified on the ValueHelpDialog.
|
|
@@ -37724,11 +38503,17 @@ declare module "sap/ui/comp/valuehelpdialog/ValueHelpDialog" {
|
|
|
37724
38503
|
tokens?: Token[];
|
|
37725
38504
|
}
|
|
37726
38505
|
|
|
38506
|
+
/**
|
|
38507
|
+
* Event object of the ValueHelpDialog#ok event.
|
|
38508
|
+
*/
|
|
37727
38509
|
export type ValueHelpDialog$OkEvent = Event<
|
|
37728
38510
|
ValueHelpDialog$OkEventParameters,
|
|
37729
38511
|
ValueHelpDialog
|
|
37730
38512
|
>;
|
|
37731
38513
|
|
|
38514
|
+
/**
|
|
38515
|
+
* Parameters of the ValueHelpDialog#selectionChange event.
|
|
38516
|
+
*/
|
|
37732
38517
|
export interface ValueHelpDialog$SelectionChangeEventParameters {
|
|
37733
38518
|
/**
|
|
37734
38519
|
* The RowSelectionChange event parameter from the hosted table that contains the selected items.
|
|
@@ -37753,11 +38538,17 @@ declare module "sap/ui/comp/valuehelpdialog/ValueHelpDialog" {
|
|
|
37753
38538
|
table?: object;
|
|
37754
38539
|
}
|
|
37755
38540
|
|
|
38541
|
+
/**
|
|
38542
|
+
* Event object of the ValueHelpDialog#selectionChange event.
|
|
38543
|
+
*/
|
|
37756
38544
|
export type ValueHelpDialog$SelectionChangeEvent = Event<
|
|
37757
38545
|
ValueHelpDialog$SelectionChangeEventParameters,
|
|
37758
38546
|
ValueHelpDialog
|
|
37759
38547
|
>;
|
|
37760
38548
|
|
|
38549
|
+
/**
|
|
38550
|
+
* Parameters of the ValueHelpDialog#tokenRemove event.
|
|
38551
|
+
*/
|
|
37761
38552
|
export interface ValueHelpDialog$TokenRemoveEventParameters {
|
|
37762
38553
|
/**
|
|
37763
38554
|
* The array of token keys that has been removed.
|
|
@@ -37770,11 +38561,17 @@ declare module "sap/ui/comp/valuehelpdialog/ValueHelpDialog" {
|
|
|
37770
38561
|
useDefault?: boolean;
|
|
37771
38562
|
}
|
|
37772
38563
|
|
|
38564
|
+
/**
|
|
38565
|
+
* Event object of the ValueHelpDialog#tokenRemove event.
|
|
38566
|
+
*/
|
|
37773
38567
|
export type ValueHelpDialog$TokenRemoveEvent = Event<
|
|
37774
38568
|
ValueHelpDialog$TokenRemoveEventParameters,
|
|
37775
38569
|
ValueHelpDialog
|
|
37776
38570
|
>;
|
|
37777
38571
|
|
|
38572
|
+
/**
|
|
38573
|
+
* Parameters of the ValueHelpDialog#updateSelection event.
|
|
38574
|
+
*/
|
|
37778
38575
|
export interface ValueHelpDialog$UpdateSelectionEventParameters {
|
|
37779
38576
|
/**
|
|
37780
38577
|
* The array of existing token keys for which the selection in the table has to be updated.
|
|
@@ -37787,6 +38584,9 @@ declare module "sap/ui/comp/valuehelpdialog/ValueHelpDialog" {
|
|
|
37787
38584
|
useDefault?: boolean;
|
|
37788
38585
|
}
|
|
37789
38586
|
|
|
38587
|
+
/**
|
|
38588
|
+
* Event object of the ValueHelpDialog#updateSelection event.
|
|
38589
|
+
*/
|
|
37790
38590
|
export type ValueHelpDialog$UpdateSelectionEvent = Event<
|
|
37791
38591
|
ValueHelpDialog$UpdateSelectionEventParameters,
|
|
37792
38592
|
ValueHelpDialog
|
|
@@ -38156,7 +38956,11 @@ declare module "sap/ui/comp/variants/EditableVariantItem" {
|
|
|
38156
38956
|
bReadOnly?: boolean
|
|
38157
38957
|
): this;
|
|
38158
38958
|
}
|
|
38159
|
-
|
|
38959
|
+
/**
|
|
38960
|
+
* Describes the settings that can be provided to the EditableVariantItem constructor.
|
|
38961
|
+
*
|
|
38962
|
+
* @deprecated (since 1.120)
|
|
38963
|
+
*/
|
|
38160
38964
|
export interface $EditableVariantItemSettings
|
|
38161
38965
|
extends $ColumnListItemSettings {
|
|
38162
38966
|
/**
|
|
@@ -38645,7 +39449,9 @@ declare module "sap/ui/comp/variants/VariantItem" {
|
|
|
38645
39449
|
sText: string
|
|
38646
39450
|
): this;
|
|
38647
39451
|
}
|
|
38648
|
-
|
|
39452
|
+
/**
|
|
39453
|
+
* Describes the settings that can be provided to the VariantItem constructor.
|
|
39454
|
+
*/
|
|
38649
39455
|
export interface $VariantItemSettings extends $VariantItemSettings1 {
|
|
38650
39456
|
/**
|
|
38651
39457
|
* Attribute for usage in `SmartFilterBar`
|
|
@@ -38717,6 +39523,9 @@ declare module "sap/ui/comp/variants/VariantItem" {
|
|
|
38717
39523
|
change?: (oEvent: VariantItem$ChangeEvent) => void;
|
|
38718
39524
|
}
|
|
38719
39525
|
|
|
39526
|
+
/**
|
|
39527
|
+
* Parameters of the VariantItem#change event.
|
|
39528
|
+
*/
|
|
38720
39529
|
export interface VariantItem$ChangeEventParameters {
|
|
38721
39530
|
/**
|
|
38722
39531
|
* Name of the changed property
|
|
@@ -38724,6 +39533,9 @@ declare module "sap/ui/comp/variants/VariantItem" {
|
|
|
38724
39533
|
propertyName?: string;
|
|
38725
39534
|
}
|
|
38726
39535
|
|
|
39536
|
+
/**
|
|
39537
|
+
* Event object of the VariantItem#change event.
|
|
39538
|
+
*/
|
|
38727
39539
|
export type VariantItem$ChangeEvent = Event<
|
|
38728
39540
|
VariantItem$ChangeEventParameters,
|
|
38729
39541
|
VariantItem
|
|
@@ -39740,7 +40552,11 @@ declare module "sap/ui/comp/variants/VariantManagement" {
|
|
|
39740
40552
|
bVariantCreationByUserAllowed?: boolean
|
|
39741
40553
|
): this;
|
|
39742
40554
|
}
|
|
39743
|
-
|
|
40555
|
+
/**
|
|
40556
|
+
* Describes the settings that can be provided to the VariantManagement constructor.
|
|
40557
|
+
*
|
|
40558
|
+
* @deprecated (since 1.120.0) - replaced by the {@link sap.m.VariantManagement} control.
|
|
40559
|
+
*/
|
|
39744
40560
|
export interface $VariantManagementSettings extends $ControlSettings {
|
|
39745
40561
|
/**
|
|
39746
40562
|
* Enables the setting of the initially selected variant.
|
|
@@ -39891,6 +40707,9 @@ declare module "sap/ui/comp/variants/VariantManagement" {
|
|
|
39891
40707
|
select?: (oEvent: VariantManagement$SelectEvent) => void;
|
|
39892
40708
|
}
|
|
39893
40709
|
|
|
40710
|
+
/**
|
|
40711
|
+
* Parameters of the VariantManagement#manage event.
|
|
40712
|
+
*/
|
|
39894
40713
|
export interface VariantManagement$ManageEventParameters {
|
|
39895
40714
|
/**
|
|
39896
40715
|
* List of changed variants. Each entry contains a 'key' - the variant key and a 'name' - the new title
|
|
@@ -39914,11 +40733,17 @@ declare module "sap/ui/comp/variants/VariantManagement" {
|
|
|
39914
40733
|
def?: string;
|
|
39915
40734
|
}
|
|
39916
40735
|
|
|
40736
|
+
/**
|
|
40737
|
+
* Event object of the VariantManagement#manage event.
|
|
40738
|
+
*/
|
|
39917
40739
|
export type VariantManagement$ManageEvent = Event<
|
|
39918
40740
|
VariantManagement$ManageEventParameters,
|
|
39919
40741
|
VariantManagement
|
|
39920
40742
|
>;
|
|
39921
40743
|
|
|
40744
|
+
/**
|
|
40745
|
+
* Parameters of the VariantManagement#save event.
|
|
40746
|
+
*/
|
|
39922
40747
|
export interface VariantManagement$SaveEventParameters {
|
|
39923
40748
|
/**
|
|
39924
40749
|
* The variant title
|
|
@@ -39961,11 +40786,17 @@ declare module "sap/ui/comp/variants/VariantManagement" {
|
|
|
39961
40786
|
lifecycleTransportId?: string;
|
|
39962
40787
|
}
|
|
39963
40788
|
|
|
40789
|
+
/**
|
|
40790
|
+
* Event object of the VariantManagement#save event.
|
|
40791
|
+
*/
|
|
39964
40792
|
export type VariantManagement$SaveEvent = Event<
|
|
39965
40793
|
VariantManagement$SaveEventParameters,
|
|
39966
40794
|
VariantManagement
|
|
39967
40795
|
>;
|
|
39968
40796
|
|
|
40797
|
+
/**
|
|
40798
|
+
* Parameters of the VariantManagement#select event.
|
|
40799
|
+
*/
|
|
39969
40800
|
export interface VariantManagement$SelectEventParameters {
|
|
39970
40801
|
/**
|
|
39971
40802
|
* The variant key
|
|
@@ -39973,6 +40804,9 @@ declare module "sap/ui/comp/variants/VariantManagement" {
|
|
|
39973
40804
|
key?: string;
|
|
39974
40805
|
}
|
|
39975
40806
|
|
|
40807
|
+
/**
|
|
40808
|
+
* Event object of the VariantManagement#select event.
|
|
40809
|
+
*/
|
|
39976
40810
|
export type VariantManagement$SelectEvent = Event<
|
|
39977
40811
|
VariantManagement$SelectEventParameters,
|
|
39978
40812
|
VariantManagement
|