@openui5/types 1.115.1 → 1.117.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -5
- package/package.json +1 -1
- package/types/index.d.ts +9 -3
- package/types/sap.f.d.ts +196 -276
- package/types/sap.m.d.ts +2202 -2899
- package/types/sap.tnt.d.ts +64 -29
- package/types/sap.ui.codeeditor.d.ts +11 -17
- package/types/sap.ui.commons.d.ts +278 -422
- package/types/sap.ui.core.d.ts +1160 -1090
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +24 -74
- package/types/sap.ui.integration.d.ts +192 -100
- package/types/sap.ui.layout.d.ts +100 -69
- package/types/sap.ui.mdc.d.ts +1100 -913
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -15
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +140 -192
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +277 -501
- package/types/sap.ui.ux3.d.ts +263 -504
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +864 -342
- package/types/sap.ui.webc.main.d.ts +4337 -1135
- package/types/sap.uxap.d.ts +51 -91
package/types/sap.ui.ux3.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/ux3/library" {
|
|
4
4
|
/**
|
|
@@ -902,14 +902,12 @@ declare module "sap/ui/ux3/ActionBar" {
|
|
|
902
902
|
*
|
|
903
903
|
* For ‘Update’, please refer to event ‘feedSubmit’
|
|
904
904
|
*/
|
|
905
|
-
actionSelected?: (
|
|
906
|
-
oEvent: Event<ActionBar$ActionSelectedEventParameters>
|
|
907
|
-
) => void;
|
|
905
|
+
actionSelected?: (oEvent: ActionBar$ActionSelectedEvent) => void;
|
|
908
906
|
|
|
909
907
|
/**
|
|
910
908
|
* Fired when a new feed entry is submitted.
|
|
911
909
|
*/
|
|
912
|
-
feedSubmit?: (oEvent:
|
|
910
|
+
feedSubmit?: (oEvent: ActionBar$FeedSubmitEvent) => void;
|
|
913
911
|
}
|
|
914
912
|
|
|
915
913
|
export interface ActionBar$ActionSelectedEventParameters {
|
|
@@ -930,13 +928,10 @@ declare module "sap/ui/ux3/ActionBar" {
|
|
|
930
928
|
newState?: string;
|
|
931
929
|
}
|
|
932
930
|
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
export type $ActionBarActionSelectedEventParameters = ActionBar$ActionSelectedEventParameters;
|
|
938
|
-
|
|
939
|
-
export type ActionBar$ActionSelectedEvent = Event<ActionBar$ActionSelectedEventParameters>;
|
|
931
|
+
export type ActionBar$ActionSelectedEvent = Event<
|
|
932
|
+
ActionBar$ActionSelectedEventParameters,
|
|
933
|
+
ActionBar
|
|
934
|
+
>;
|
|
940
935
|
|
|
941
936
|
export interface ActionBar$FeedSubmitEventParameters {
|
|
942
937
|
/**
|
|
@@ -945,13 +940,10 @@ declare module "sap/ui/ux3/ActionBar" {
|
|
|
945
940
|
text?: string;
|
|
946
941
|
}
|
|
947
942
|
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
export type $ActionBarFeedSubmitEventParameters = ActionBar$FeedSubmitEventParameters;
|
|
953
|
-
|
|
954
|
-
export type ActionBar$FeedSubmitEvent = Event<ActionBar$FeedSubmitEventParameters>;
|
|
943
|
+
export type ActionBar$FeedSubmitEvent = Event<
|
|
944
|
+
ActionBar$FeedSubmitEventParameters,
|
|
945
|
+
ActionBar
|
|
946
|
+
>;
|
|
955
947
|
}
|
|
956
948
|
|
|
957
949
|
declare module "sap/ui/ux3/Collection" {
|
|
@@ -1412,23 +1404,17 @@ declare module "sap/ui/ux3/Collection" {
|
|
|
1412
1404
|
|
|
1413
1405
|
export interface Collection$PropertyChangedEventParameters {}
|
|
1414
1406
|
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
export type $CollectionPropertyChangedEventParameters = Collection$PropertyChangedEventParameters;
|
|
1420
|
-
|
|
1421
|
-
export type Collection$PropertyChangedEvent = Event<Collection$PropertyChangedEventParameters>;
|
|
1407
|
+
export type Collection$PropertyChangedEvent = Event<
|
|
1408
|
+
Collection$PropertyChangedEventParameters,
|
|
1409
|
+
Collection
|
|
1410
|
+
>;
|
|
1422
1411
|
|
|
1423
1412
|
export interface Collection$SelectionChangedEventParameters {}
|
|
1424
1413
|
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
export type $CollectionSelectionChangedEventParameters = Collection$SelectionChangedEventParameters;
|
|
1430
|
-
|
|
1431
|
-
export type Collection$SelectionChangedEvent = Event<Collection$SelectionChangedEventParameters>;
|
|
1414
|
+
export type Collection$SelectionChangedEvent = Event<
|
|
1415
|
+
Collection$SelectionChangedEventParameters,
|
|
1416
|
+
Collection
|
|
1417
|
+
>;
|
|
1432
1418
|
}
|
|
1433
1419
|
|
|
1434
1420
|
declare module "sap/ui/ux3/CollectionInspector" {
|
|
@@ -2021,33 +2007,24 @@ declare module "sap/ui/ux3/CollectionInspector" {
|
|
|
2021
2007
|
|
|
2022
2008
|
export interface CollectionInspector$CollectionSelectedEventParameters {}
|
|
2023
2009
|
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
export type $CollectionInspectorCollectionSelectedEventParameters = CollectionInspector$CollectionSelectedEventParameters;
|
|
2029
|
-
|
|
2030
|
-
export type CollectionInspector$CollectionSelectedEvent = Event<CollectionInspector$CollectionSelectedEventParameters>;
|
|
2010
|
+
export type CollectionInspector$CollectionSelectedEvent = Event<
|
|
2011
|
+
CollectionInspector$CollectionSelectedEventParameters,
|
|
2012
|
+
CollectionInspector
|
|
2013
|
+
>;
|
|
2031
2014
|
|
|
2032
2015
|
export interface CollectionInspector$EditCollectionEventParameters {}
|
|
2033
2016
|
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
export type $CollectionInspectorEditCollectionEventParameters = CollectionInspector$EditCollectionEventParameters;
|
|
2039
|
-
|
|
2040
|
-
export type CollectionInspector$EditCollectionEvent = Event<CollectionInspector$EditCollectionEventParameters>;
|
|
2017
|
+
export type CollectionInspector$EditCollectionEvent = Event<
|
|
2018
|
+
CollectionInspector$EditCollectionEventParameters,
|
|
2019
|
+
CollectionInspector
|
|
2020
|
+
>;
|
|
2041
2021
|
|
|
2042
2022
|
export interface CollectionInspector$ItemSelectionChangedEventParameters {}
|
|
2043
2023
|
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
export type $CollectionInspectorItemSelectionChangedEventParameters = CollectionInspector$ItemSelectionChangedEventParameters;
|
|
2049
|
-
|
|
2050
|
-
export type CollectionInspector$ItemSelectionChangedEvent = Event<CollectionInspector$ItemSelectionChangedEventParameters>;
|
|
2024
|
+
export type CollectionInspector$ItemSelectionChangedEvent = Event<
|
|
2025
|
+
CollectionInspector$ItemSelectionChangedEventParameters,
|
|
2026
|
+
CollectionInspector
|
|
2027
|
+
>;
|
|
2051
2028
|
}
|
|
2052
2029
|
|
|
2053
2030
|
declare module "sap/ui/ux3/DataSet" {
|
|
@@ -2792,14 +2769,12 @@ declare module "sap/ui/ux3/DataSet" {
|
|
|
2792
2769
|
/**
|
|
2793
2770
|
* selection Changed
|
|
2794
2771
|
*/
|
|
2795
|
-
selectionChanged?: (
|
|
2796
|
-
oEvent: Event<DataSet$SelectionChangedEventParameters>
|
|
2797
|
-
) => void;
|
|
2772
|
+
selectionChanged?: (oEvent: DataSet$SelectionChangedEvent) => void;
|
|
2798
2773
|
|
|
2799
2774
|
/**
|
|
2800
2775
|
* Event which is fired when the user triggers a search
|
|
2801
2776
|
*/
|
|
2802
|
-
search?: (oEvent:
|
|
2777
|
+
search?: (oEvent: DataSet$SearchEvent) => void;
|
|
2803
2778
|
}
|
|
2804
2779
|
|
|
2805
2780
|
export interface DataSet$SearchEventParameters {
|
|
@@ -2809,13 +2784,10 @@ declare module "sap/ui/ux3/DataSet" {
|
|
|
2809
2784
|
query?: string;
|
|
2810
2785
|
}
|
|
2811
2786
|
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
export type $DataSetSearchEventParameters = DataSet$SearchEventParameters;
|
|
2817
|
-
|
|
2818
|
-
export type DataSet$SearchEvent = Event<DataSet$SearchEventParameters>;
|
|
2787
|
+
export type DataSet$SearchEvent = Event<
|
|
2788
|
+
DataSet$SearchEventParameters,
|
|
2789
|
+
DataSet
|
|
2790
|
+
>;
|
|
2819
2791
|
|
|
2820
2792
|
export interface DataSet$SelectionChangedEventParameters {
|
|
2821
2793
|
/**
|
|
@@ -2829,13 +2801,10 @@ declare module "sap/ui/ux3/DataSet" {
|
|
|
2829
2801
|
newLeadSelectedIndex?: int;
|
|
2830
2802
|
}
|
|
2831
2803
|
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
export type $DataSetSelectionChangedEventParameters = DataSet$SelectionChangedEventParameters;
|
|
2837
|
-
|
|
2838
|
-
export type DataSet$SelectionChangedEvent = Event<DataSet$SelectionChangedEventParameters>;
|
|
2804
|
+
export type DataSet$SelectionChangedEvent = Event<
|
|
2805
|
+
DataSet$SelectionChangedEventParameters,
|
|
2806
|
+
DataSet
|
|
2807
|
+
>;
|
|
2839
2808
|
}
|
|
2840
2809
|
|
|
2841
2810
|
declare module "sap/ui/ux3/DataSetItem" {
|
|
@@ -3120,7 +3089,7 @@ declare module "sap/ui/ux3/DataSetItem" {
|
|
|
3120
3089
|
/**
|
|
3121
3090
|
* Event Fired when Datset item is selected.
|
|
3122
3091
|
*/
|
|
3123
|
-
selected?: (oEvent:
|
|
3092
|
+
selected?: (oEvent: DataSetItem$SelectedEvent) => void;
|
|
3124
3093
|
}
|
|
3125
3094
|
|
|
3126
3095
|
export interface DataSetItem$SelectedEventParameters {
|
|
@@ -3130,13 +3099,10 @@ declare module "sap/ui/ux3/DataSetItem" {
|
|
|
3130
3099
|
itemId?: string;
|
|
3131
3100
|
}
|
|
3132
3101
|
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
export type $DataSetItemSelectedEventParameters = DataSetItem$SelectedEventParameters;
|
|
3138
|
-
|
|
3139
|
-
export type DataSetItem$SelectedEvent = Event<DataSetItem$SelectedEventParameters>;
|
|
3102
|
+
export type DataSetItem$SelectedEvent = Event<
|
|
3103
|
+
DataSetItem$SelectedEventParameters,
|
|
3104
|
+
DataSetItem
|
|
3105
|
+
>;
|
|
3140
3106
|
}
|
|
3141
3107
|
|
|
3142
3108
|
declare module "sap/ui/ux3/DataSetSimpleView" {
|
|
@@ -4069,12 +4035,12 @@ declare module "sap/ui/ux3/Exact" {
|
|
|
4069
4035
|
/**
|
|
4070
4036
|
* Event is fired when the search button is clicked
|
|
4071
4037
|
*/
|
|
4072
|
-
search?: (oEvent:
|
|
4038
|
+
search?: (oEvent: Exact$SearchEvent) => void;
|
|
4073
4039
|
|
|
4074
4040
|
/**
|
|
4075
4041
|
* Event which is fired when an attribute is selected or unselected.
|
|
4076
4042
|
*/
|
|
4077
|
-
refineSearch?: (oEvent:
|
|
4043
|
+
refineSearch?: (oEvent: Exact$RefineSearchEvent) => void;
|
|
4078
4044
|
}
|
|
4079
4045
|
|
|
4080
4046
|
export interface Exact$RefineSearchEventParameters {
|
|
@@ -4094,13 +4060,10 @@ declare module "sap/ui/ux3/Exact" {
|
|
|
4094
4060
|
allSelectedAttributes?: object;
|
|
4095
4061
|
}
|
|
4096
4062
|
|
|
4097
|
-
|
|
4098
|
-
|
|
4099
|
-
|
|
4100
|
-
|
|
4101
|
-
export type $ExactRefineSearchEventParameters = Exact$RefineSearchEventParameters;
|
|
4102
|
-
|
|
4103
|
-
export type Exact$RefineSearchEvent = Event<Exact$RefineSearchEventParameters>;
|
|
4063
|
+
export type Exact$RefineSearchEvent = Event<
|
|
4064
|
+
Exact$RefineSearchEventParameters,
|
|
4065
|
+
Exact
|
|
4066
|
+
>;
|
|
4104
4067
|
|
|
4105
4068
|
export interface Exact$SearchEventParameters {
|
|
4106
4069
|
/**
|
|
@@ -4109,13 +4072,7 @@ declare module "sap/ui/ux3/Exact" {
|
|
|
4109
4072
|
query?: string;
|
|
4110
4073
|
}
|
|
4111
4074
|
|
|
4112
|
-
|
|
4113
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Exact$SearchEventParameters'
|
|
4114
|
-
* in 1.115.1 and any later releases.
|
|
4115
|
-
*/
|
|
4116
|
-
export type $ExactSearchEventParameters = Exact$SearchEventParameters;
|
|
4117
|
-
|
|
4118
|
-
export type Exact$SearchEvent = Event<Exact$SearchEventParameters>;
|
|
4075
|
+
export type Exact$SearchEvent = Event<Exact$SearchEventParameters, Exact>;
|
|
4119
4076
|
}
|
|
4120
4077
|
|
|
4121
4078
|
declare module "sap/ui/ux3/ExactArea" {
|
|
@@ -4965,9 +4922,7 @@ declare module "sap/ui/ux3/ExactAttribute" {
|
|
|
4965
4922
|
* the corresponding ExactAttribute is selected, it was already selected when a handler is attached or function
|
|
4966
4923
|
* getAttributes() is called.
|
|
4967
4924
|
*/
|
|
4968
|
-
supplyAttributes?: (
|
|
4969
|
-
oEvent: Event<ExactAttribute$SupplyAttributesEventParameters>
|
|
4970
|
-
) => void;
|
|
4925
|
+
supplyAttributes?: (oEvent: ExactAttribute$SupplyAttributesEvent) => void;
|
|
4971
4926
|
}
|
|
4972
4927
|
|
|
4973
4928
|
export interface ExactAttribute$SupplyAttributesEventParameters {
|
|
@@ -4977,13 +4932,10 @@ declare module "sap/ui/ux3/ExactAttribute" {
|
|
|
4977
4932
|
attribute?: ExactAttribute;
|
|
4978
4933
|
}
|
|
4979
4934
|
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
export type $ExactAttributeSupplyAttributesEventParameters = ExactAttribute$SupplyAttributesEventParameters;
|
|
4985
|
-
|
|
4986
|
-
export type ExactAttribute$SupplyAttributesEvent = Event<ExactAttribute$SupplyAttributesEventParameters>;
|
|
4935
|
+
export type ExactAttribute$SupplyAttributesEvent = Event<
|
|
4936
|
+
ExactAttribute$SupplyAttributesEventParameters,
|
|
4937
|
+
ExactAttribute
|
|
4938
|
+
>;
|
|
4987
4939
|
}
|
|
4988
4940
|
|
|
4989
4941
|
declare module "sap/ui/ux3/ExactBrowser" {
|
|
@@ -5715,9 +5667,7 @@ declare module "sap/ui/ux3/ExactBrowser" {
|
|
|
5715
5667
|
/**
|
|
5716
5668
|
* Event is fired when an attribute is selected or unselected.
|
|
5717
5669
|
*/
|
|
5718
|
-
attributeSelected?: (
|
|
5719
|
-
oEvent: Event<ExactBrowser$AttributeSelectedEventParameters>
|
|
5720
|
-
) => void;
|
|
5670
|
+
attributeSelected?: (oEvent: ExactBrowser$AttributeSelectedEvent) => void;
|
|
5721
5671
|
|
|
5722
5672
|
/**
|
|
5723
5673
|
* Event is fired when an attribute is selected or unselected.
|
|
@@ -5737,23 +5687,17 @@ declare module "sap/ui/ux3/ExactBrowser" {
|
|
|
5737
5687
|
allAttributes?: object;
|
|
5738
5688
|
}
|
|
5739
5689
|
|
|
5740
|
-
|
|
5741
|
-
|
|
5742
|
-
|
|
5743
|
-
|
|
5744
|
-
export type $ExactBrowserAttributeSelectedEventParameters = ExactBrowser$AttributeSelectedEventParameters;
|
|
5745
|
-
|
|
5746
|
-
export type ExactBrowser$AttributeSelectedEvent = Event<ExactBrowser$AttributeSelectedEventParameters>;
|
|
5690
|
+
export type ExactBrowser$AttributeSelectedEvent = Event<
|
|
5691
|
+
ExactBrowser$AttributeSelectedEventParameters,
|
|
5692
|
+
ExactBrowser
|
|
5693
|
+
>;
|
|
5747
5694
|
|
|
5748
5695
|
export interface ExactBrowser$SaveEventParameters {}
|
|
5749
5696
|
|
|
5750
|
-
|
|
5751
|
-
|
|
5752
|
-
|
|
5753
|
-
|
|
5754
|
-
export type $ExactBrowserSaveEventParameters = ExactBrowser$SaveEventParameters;
|
|
5755
|
-
|
|
5756
|
-
export type ExactBrowser$SaveEvent = Event<ExactBrowser$SaveEventParameters>;
|
|
5697
|
+
export type ExactBrowser$SaveEvent = Event<
|
|
5698
|
+
ExactBrowser$SaveEventParameters,
|
|
5699
|
+
ExactBrowser
|
|
5700
|
+
>;
|
|
5757
5701
|
}
|
|
5758
5702
|
|
|
5759
5703
|
declare module "sap/ui/ux3/ExactList" {
|
|
@@ -6114,9 +6058,7 @@ declare module "sap/ui/ux3/ExactList" {
|
|
|
6114
6058
|
/**
|
|
6115
6059
|
* Event which is fired when an attribute is selected/unselected
|
|
6116
6060
|
*/
|
|
6117
|
-
attributeSelected?: (
|
|
6118
|
-
oEvent: Event<ExactList$AttributeSelectedEventParameters>
|
|
6119
|
-
) => void;
|
|
6061
|
+
attributeSelected?: (oEvent: ExactList$AttributeSelectedEvent) => void;
|
|
6120
6062
|
}
|
|
6121
6063
|
|
|
6122
6064
|
export interface ExactList$AttributeSelectedEventParameters {
|
|
@@ -6131,13 +6073,10 @@ declare module "sap/ui/ux3/ExactList" {
|
|
|
6131
6073
|
allAttributes?: object;
|
|
6132
6074
|
}
|
|
6133
6075
|
|
|
6134
|
-
|
|
6135
|
-
|
|
6136
|
-
|
|
6137
|
-
|
|
6138
|
-
export type $ExactListAttributeSelectedEventParameters = ExactList$AttributeSelectedEventParameters;
|
|
6139
|
-
|
|
6140
|
-
export type ExactList$AttributeSelectedEvent = Event<ExactList$AttributeSelectedEventParameters>;
|
|
6076
|
+
export type ExactList$AttributeSelectedEvent = Event<
|
|
6077
|
+
ExactList$AttributeSelectedEventParameters,
|
|
6078
|
+
ExactList
|
|
6079
|
+
>;
|
|
6141
6080
|
}
|
|
6142
6081
|
|
|
6143
6082
|
declare module "sap/ui/ux3/FacetFilter" {
|
|
@@ -6745,7 +6684,7 @@ declare module "sap/ui/ux3/FacetFilterList" {
|
|
|
6745
6684
|
/**
|
|
6746
6685
|
* On Select event.
|
|
6747
6686
|
*/
|
|
6748
|
-
select?: (oEvent:
|
|
6687
|
+
select?: (oEvent: FacetFilterList$SelectEvent) => void;
|
|
6749
6688
|
}
|
|
6750
6689
|
|
|
6751
6690
|
export interface FacetFilterList$SelectEventParameters {
|
|
@@ -6771,13 +6710,10 @@ declare module "sap/ui/ux3/FacetFilterList" {
|
|
|
6771
6710
|
all?: boolean;
|
|
6772
6711
|
}
|
|
6773
6712
|
|
|
6774
|
-
|
|
6775
|
-
|
|
6776
|
-
|
|
6777
|
-
|
|
6778
|
-
export type $FacetFilterListSelectEventParameters = FacetFilterList$SelectEventParameters;
|
|
6779
|
-
|
|
6780
|
-
export type FacetFilterList$SelectEvent = Event<FacetFilterList$SelectEventParameters>;
|
|
6713
|
+
export type FacetFilterList$SelectEvent = Event<
|
|
6714
|
+
FacetFilterList$SelectEventParameters,
|
|
6715
|
+
FacetFilterList
|
|
6716
|
+
>;
|
|
6781
6717
|
}
|
|
6782
6718
|
|
|
6783
6719
|
declare module "sap/ui/ux3/Feed" {
|
|
@@ -7667,29 +7603,27 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
7667
7603
|
/**
|
|
7668
7604
|
* Event is fired when the filter is changed
|
|
7669
7605
|
*/
|
|
7670
|
-
filterChange?: (oEvent:
|
|
7606
|
+
filterChange?: (oEvent: Feed$FilterChangeEvent) => void;
|
|
7671
7607
|
|
|
7672
7608
|
/**
|
|
7673
7609
|
* Event is fired when the search function on SearchField is triggered
|
|
7674
7610
|
*/
|
|
7675
|
-
search?: (oEvent:
|
|
7611
|
+
search?: (oEvent: Feed$SearchEvent) => void;
|
|
7676
7612
|
|
|
7677
7613
|
/**
|
|
7678
7614
|
* Event is fired when a new chunk is added
|
|
7679
7615
|
*/
|
|
7680
|
-
chunkAdded?: (oEvent:
|
|
7616
|
+
chunkAdded?: (oEvent: Feed$ChunkAddedEvent) => void;
|
|
7681
7617
|
|
|
7682
7618
|
/**
|
|
7683
7619
|
* Event is fired when an item from the tools MenuButton was selected
|
|
7684
7620
|
*/
|
|
7685
|
-
toolsItemSelected?: (
|
|
7686
|
-
oEvent: Event<Feed$ToolsItemSelectedEventParameters>
|
|
7687
|
-
) => void;
|
|
7621
|
+
toolsItemSelected?: (oEvent: Feed$ToolsItemSelectedEvent) => void;
|
|
7688
7622
|
|
|
7689
7623
|
/**
|
|
7690
7624
|
* Event is fired when the live mode has changed
|
|
7691
7625
|
*/
|
|
7692
|
-
toggleLive?: (oEvent:
|
|
7626
|
+
toggleLive?: (oEvent: Feed$ToggleLiveEvent) => void;
|
|
7693
7627
|
}
|
|
7694
7628
|
|
|
7695
7629
|
export interface Feed$ChunkAddedEventParameters {
|
|
@@ -7699,13 +7633,10 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
7699
7633
|
chunk?: FeedChunk;
|
|
7700
7634
|
}
|
|
7701
7635
|
|
|
7702
|
-
|
|
7703
|
-
|
|
7704
|
-
|
|
7705
|
-
|
|
7706
|
-
export type $FeedChunkAddedEventParameters = Feed$ChunkAddedEventParameters;
|
|
7707
|
-
|
|
7708
|
-
export type Feed$ChunkAddedEvent = Event<Feed$ChunkAddedEventParameters>;
|
|
7636
|
+
export type Feed$ChunkAddedEvent = Event<
|
|
7637
|
+
Feed$ChunkAddedEventParameters,
|
|
7638
|
+
Feed
|
|
7639
|
+
>;
|
|
7709
7640
|
|
|
7710
7641
|
export interface Feed$FilterChangeEventParameters {
|
|
7711
7642
|
/**
|
|
@@ -7714,13 +7645,10 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
7714
7645
|
newValue?: string;
|
|
7715
7646
|
}
|
|
7716
7647
|
|
|
7717
|
-
|
|
7718
|
-
|
|
7719
|
-
|
|
7720
|
-
|
|
7721
|
-
export type $FeedFilterChangeEventParameters = Feed$FilterChangeEventParameters;
|
|
7722
|
-
|
|
7723
|
-
export type Feed$FilterChangeEvent = Event<Feed$FilterChangeEventParameters>;
|
|
7648
|
+
export type Feed$FilterChangeEvent = Event<
|
|
7649
|
+
Feed$FilterChangeEventParameters,
|
|
7650
|
+
Feed
|
|
7651
|
+
>;
|
|
7724
7652
|
|
|
7725
7653
|
export interface Feed$SearchEventParameters {
|
|
7726
7654
|
/**
|
|
@@ -7729,13 +7657,7 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
7729
7657
|
query?: string;
|
|
7730
7658
|
}
|
|
7731
7659
|
|
|
7732
|
-
|
|
7733
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feed$SearchEventParameters'
|
|
7734
|
-
* in 1.115.1 and any later releases.
|
|
7735
|
-
*/
|
|
7736
|
-
export type $FeedSearchEventParameters = Feed$SearchEventParameters;
|
|
7737
|
-
|
|
7738
|
-
export type Feed$SearchEvent = Event<Feed$SearchEventParameters>;
|
|
7660
|
+
export type Feed$SearchEvent = Event<Feed$SearchEventParameters, Feed>;
|
|
7739
7661
|
|
|
7740
7662
|
export interface Feed$ToggleLiveEventParameters {
|
|
7741
7663
|
/**
|
|
@@ -7744,13 +7666,10 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
7744
7666
|
live?: boolean;
|
|
7745
7667
|
}
|
|
7746
7668
|
|
|
7747
|
-
|
|
7748
|
-
|
|
7749
|
-
|
|
7750
|
-
|
|
7751
|
-
export type $FeedToggleLiveEventParameters = Feed$ToggleLiveEventParameters;
|
|
7752
|
-
|
|
7753
|
-
export type Feed$ToggleLiveEvent = Event<Feed$ToggleLiveEventParameters>;
|
|
7669
|
+
export type Feed$ToggleLiveEvent = Event<
|
|
7670
|
+
Feed$ToggleLiveEventParameters,
|
|
7671
|
+
Feed
|
|
7672
|
+
>;
|
|
7754
7673
|
|
|
7755
7674
|
export interface Feed$ToolsItemSelectedEventParameters {
|
|
7756
7675
|
/**
|
|
@@ -7764,13 +7683,10 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
7764
7683
|
item?: MenuItemBase;
|
|
7765
7684
|
}
|
|
7766
7685
|
|
|
7767
|
-
|
|
7768
|
-
|
|
7769
|
-
|
|
7770
|
-
|
|
7771
|
-
export type $FeedToolsItemSelectedEventParameters = Feed$ToolsItemSelectedEventParameters;
|
|
7772
|
-
|
|
7773
|
-
export type Feed$ToolsItemSelectedEvent = Event<Feed$ToolsItemSelectedEventParameters>;
|
|
7686
|
+
export type Feed$ToolsItemSelectedEvent = Event<
|
|
7687
|
+
Feed$ToolsItemSelectedEventParameters,
|
|
7688
|
+
Feed
|
|
7689
|
+
>;
|
|
7774
7690
|
}
|
|
7775
7691
|
|
|
7776
7692
|
declare module "sap/ui/ux3/FeedChunk" {
|
|
@@ -9268,16 +9184,12 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9268
9184
|
/**
|
|
9269
9185
|
* Event is raised when a comment is added to the entry. This event is not supported for comment chunks.
|
|
9270
9186
|
*/
|
|
9271
|
-
commentAdded?: (
|
|
9272
|
-
oEvent: Event<FeedChunk$CommentAddedEventParameters>
|
|
9273
|
-
) => void;
|
|
9187
|
+
commentAdded?: (oEvent: FeedChunk$CommentAddedEvent) => void;
|
|
9274
9188
|
|
|
9275
9189
|
/**
|
|
9276
9190
|
* Event is raised when the user clicks to flag the entry. This event is not supported for comment chunks.
|
|
9277
9191
|
*/
|
|
9278
|
-
toggleFlagged?: (
|
|
9279
|
-
oEvent: Event<FeedChunk$ToggleFlaggedEventParameters>
|
|
9280
|
-
) => void;
|
|
9192
|
+
toggleFlagged?: (oEvent: FeedChunk$ToggleFlaggedEvent) => void;
|
|
9281
9193
|
|
|
9282
9194
|
/**
|
|
9283
9195
|
* Event is fired when the thumbnail or the name of the sender is clicked.
|
|
@@ -9287,17 +9199,13 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9287
9199
|
/**
|
|
9288
9200
|
* Click on a @-reference
|
|
9289
9201
|
*/
|
|
9290
|
-
referenceClicked?: (
|
|
9291
|
-
oEvent: Event<FeedChunk$ReferenceClickedEventParameters>
|
|
9292
|
-
) => void;
|
|
9202
|
+
referenceClicked?: (oEvent: FeedChunk$ReferenceClickedEvent) => void;
|
|
9293
9203
|
|
|
9294
9204
|
/**
|
|
9295
9205
|
* Event is raised when the user clicks to set the entry as favorite. This event is not supported for comment
|
|
9296
9206
|
* chunks.
|
|
9297
9207
|
*/
|
|
9298
|
-
toggleFavorite?: (
|
|
9299
|
-
oEvent: Event<FeedChunk$ToggleFavoriteEventParameters>
|
|
9300
|
-
) => void;
|
|
9208
|
+
toggleFavorite?: (oEvent: FeedChunk$ToggleFavoriteEvent) => void;
|
|
9301
9209
|
|
|
9302
9210
|
/**
|
|
9303
9211
|
* Event is fired when the inspect button was pressed
|
|
@@ -9307,16 +9215,12 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9307
9215
|
/**
|
|
9308
9216
|
* Event is raised when the user clicks to share the entry. This event is not supported for comment chunks.
|
|
9309
9217
|
*/
|
|
9310
|
-
toggleShared?: (
|
|
9311
|
-
oEvent: Event<FeedChunk$ToggleSharedEventParameters>
|
|
9312
|
-
) => void;
|
|
9218
|
+
toggleShared?: (oEvent: FeedChunk$ToggleSharedEvent) => void;
|
|
9313
9219
|
|
|
9314
9220
|
/**
|
|
9315
9221
|
* Event is fired when an item from the action menu button was selected.
|
|
9316
9222
|
*/
|
|
9317
|
-
actionItemSelected?: (
|
|
9318
|
-
oEvent: Event<FeedChunk$ActionItemSelectedEventParameters>
|
|
9319
|
-
) => void;
|
|
9223
|
+
actionItemSelected?: (oEvent: FeedChunk$ActionItemSelectedEvent) => void;
|
|
9320
9224
|
}
|
|
9321
9225
|
|
|
9322
9226
|
export interface FeedChunk$ActionItemSelectedEventParameters {
|
|
@@ -9331,13 +9235,10 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9331
9235
|
item?: MenuItemBase;
|
|
9332
9236
|
}
|
|
9333
9237
|
|
|
9334
|
-
|
|
9335
|
-
|
|
9336
|
-
|
|
9337
|
-
|
|
9338
|
-
export type $FeedChunkActionItemSelectedEventParameters = FeedChunk$ActionItemSelectedEventParameters;
|
|
9339
|
-
|
|
9340
|
-
export type FeedChunk$ActionItemSelectedEvent = Event<FeedChunk$ActionItemSelectedEventParameters>;
|
|
9238
|
+
export type FeedChunk$ActionItemSelectedEvent = Event<
|
|
9239
|
+
FeedChunk$ActionItemSelectedEventParameters,
|
|
9240
|
+
FeedChunk
|
|
9241
|
+
>;
|
|
9341
9242
|
|
|
9342
9243
|
export interface FeedChunk$CommentAddedEventParameters {
|
|
9343
9244
|
/**
|
|
@@ -9346,33 +9247,24 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9346
9247
|
comment?: FeedChunk;
|
|
9347
9248
|
}
|
|
9348
9249
|
|
|
9349
|
-
|
|
9350
|
-
|
|
9351
|
-
|
|
9352
|
-
|
|
9353
|
-
export type $FeedChunkCommentAddedEventParameters = FeedChunk$CommentAddedEventParameters;
|
|
9354
|
-
|
|
9355
|
-
export type FeedChunk$CommentAddedEvent = Event<FeedChunk$CommentAddedEventParameters>;
|
|
9250
|
+
export type FeedChunk$CommentAddedEvent = Event<
|
|
9251
|
+
FeedChunk$CommentAddedEventParameters,
|
|
9252
|
+
FeedChunk
|
|
9253
|
+
>;
|
|
9356
9254
|
|
|
9357
9255
|
export interface FeedChunk$DeletedEventParameters {}
|
|
9358
9256
|
|
|
9359
|
-
|
|
9360
|
-
|
|
9361
|
-
|
|
9362
|
-
|
|
9363
|
-
export type $FeedChunkDeletedEventParameters = FeedChunk$DeletedEventParameters;
|
|
9364
|
-
|
|
9365
|
-
export type FeedChunk$DeletedEvent = Event<FeedChunk$DeletedEventParameters>;
|
|
9257
|
+
export type FeedChunk$DeletedEvent = Event<
|
|
9258
|
+
FeedChunk$DeletedEventParameters,
|
|
9259
|
+
FeedChunk
|
|
9260
|
+
>;
|
|
9366
9261
|
|
|
9367
9262
|
export interface FeedChunk$InspectEventParameters {}
|
|
9368
9263
|
|
|
9369
|
-
|
|
9370
|
-
|
|
9371
|
-
|
|
9372
|
-
|
|
9373
|
-
export type $FeedChunkInspectEventParameters = FeedChunk$InspectEventParameters;
|
|
9374
|
-
|
|
9375
|
-
export type FeedChunk$InspectEvent = Event<FeedChunk$InspectEventParameters>;
|
|
9264
|
+
export type FeedChunk$InspectEvent = Event<
|
|
9265
|
+
FeedChunk$InspectEventParameters,
|
|
9266
|
+
FeedChunk
|
|
9267
|
+
>;
|
|
9376
9268
|
|
|
9377
9269
|
export interface FeedChunk$ReferenceClickedEventParameters {
|
|
9378
9270
|
/**
|
|
@@ -9381,23 +9273,17 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9381
9273
|
text?: string;
|
|
9382
9274
|
}
|
|
9383
9275
|
|
|
9384
|
-
|
|
9385
|
-
|
|
9386
|
-
|
|
9387
|
-
|
|
9388
|
-
export type $FeedChunkReferenceClickedEventParameters = FeedChunk$ReferenceClickedEventParameters;
|
|
9389
|
-
|
|
9390
|
-
export type FeedChunk$ReferenceClickedEvent = Event<FeedChunk$ReferenceClickedEventParameters>;
|
|
9276
|
+
export type FeedChunk$ReferenceClickedEvent = Event<
|
|
9277
|
+
FeedChunk$ReferenceClickedEventParameters,
|
|
9278
|
+
FeedChunk
|
|
9279
|
+
>;
|
|
9391
9280
|
|
|
9392
9281
|
export interface FeedChunk$SenderClickedEventParameters {}
|
|
9393
9282
|
|
|
9394
|
-
|
|
9395
|
-
|
|
9396
|
-
|
|
9397
|
-
|
|
9398
|
-
export type $FeedChunkSenderClickedEventParameters = FeedChunk$SenderClickedEventParameters;
|
|
9399
|
-
|
|
9400
|
-
export type FeedChunk$SenderClickedEvent = Event<FeedChunk$SenderClickedEventParameters>;
|
|
9283
|
+
export type FeedChunk$SenderClickedEvent = Event<
|
|
9284
|
+
FeedChunk$SenderClickedEventParameters,
|
|
9285
|
+
FeedChunk
|
|
9286
|
+
>;
|
|
9401
9287
|
|
|
9402
9288
|
export interface FeedChunk$ToggleFavoriteEventParameters {
|
|
9403
9289
|
/**
|
|
@@ -9406,13 +9292,10 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9406
9292
|
favorite?: boolean;
|
|
9407
9293
|
}
|
|
9408
9294
|
|
|
9409
|
-
|
|
9410
|
-
|
|
9411
|
-
|
|
9412
|
-
|
|
9413
|
-
export type $FeedChunkToggleFavoriteEventParameters = FeedChunk$ToggleFavoriteEventParameters;
|
|
9414
|
-
|
|
9415
|
-
export type FeedChunk$ToggleFavoriteEvent = Event<FeedChunk$ToggleFavoriteEventParameters>;
|
|
9295
|
+
export type FeedChunk$ToggleFavoriteEvent = Event<
|
|
9296
|
+
FeedChunk$ToggleFavoriteEventParameters,
|
|
9297
|
+
FeedChunk
|
|
9298
|
+
>;
|
|
9416
9299
|
|
|
9417
9300
|
export interface FeedChunk$ToggleFlaggedEventParameters {
|
|
9418
9301
|
/**
|
|
@@ -9421,13 +9304,10 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9421
9304
|
flagged?: boolean;
|
|
9422
9305
|
}
|
|
9423
9306
|
|
|
9424
|
-
|
|
9425
|
-
|
|
9426
|
-
|
|
9427
|
-
|
|
9428
|
-
export type $FeedChunkToggleFlaggedEventParameters = FeedChunk$ToggleFlaggedEventParameters;
|
|
9429
|
-
|
|
9430
|
-
export type FeedChunk$ToggleFlaggedEvent = Event<FeedChunk$ToggleFlaggedEventParameters>;
|
|
9307
|
+
export type FeedChunk$ToggleFlaggedEvent = Event<
|
|
9308
|
+
FeedChunk$ToggleFlaggedEventParameters,
|
|
9309
|
+
FeedChunk
|
|
9310
|
+
>;
|
|
9431
9311
|
|
|
9432
9312
|
export interface FeedChunk$ToggleSharedEventParameters {
|
|
9433
9313
|
/**
|
|
@@ -9436,13 +9316,10 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9436
9316
|
shareed?: boolean;
|
|
9437
9317
|
}
|
|
9438
9318
|
|
|
9439
|
-
|
|
9440
|
-
|
|
9441
|
-
|
|
9442
|
-
|
|
9443
|
-
export type $FeedChunkToggleSharedEventParameters = FeedChunk$ToggleSharedEventParameters;
|
|
9444
|
-
|
|
9445
|
-
export type FeedChunk$ToggleSharedEvent = Event<FeedChunk$ToggleSharedEventParameters>;
|
|
9319
|
+
export type FeedChunk$ToggleSharedEvent = Event<
|
|
9320
|
+
FeedChunk$ToggleSharedEventParameters,
|
|
9321
|
+
FeedChunk
|
|
9322
|
+
>;
|
|
9446
9323
|
}
|
|
9447
9324
|
|
|
9448
9325
|
declare module "sap/ui/ux3/Feeder" {
|
|
@@ -9735,7 +9612,7 @@ declare module "sap/ui/ux3/Feeder" {
|
|
|
9735
9612
|
/**
|
|
9736
9613
|
* Event is fired when the entered text is submitted
|
|
9737
9614
|
*/
|
|
9738
|
-
submit?: (oEvent:
|
|
9615
|
+
submit?: (oEvent: Feeder$SubmitEvent) => void;
|
|
9739
9616
|
}
|
|
9740
9617
|
|
|
9741
9618
|
export interface Feeder$SubmitEventParameters {
|
|
@@ -9745,13 +9622,7 @@ declare module "sap/ui/ux3/Feeder" {
|
|
|
9745
9622
|
text?: string;
|
|
9746
9623
|
}
|
|
9747
9624
|
|
|
9748
|
-
|
|
9749
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Feeder$SubmitEventParameters'
|
|
9750
|
-
* in 1.115.1 and any later releases.
|
|
9751
|
-
*/
|
|
9752
|
-
export type $FeederSubmitEventParameters = Feeder$SubmitEventParameters;
|
|
9753
|
-
|
|
9754
|
-
export type Feeder$SubmitEvent = Event<Feeder$SubmitEventParameters>;
|
|
9625
|
+
export type Feeder$SubmitEvent = Event<Feeder$SubmitEventParameters, Feeder>;
|
|
9755
9626
|
}
|
|
9756
9627
|
|
|
9757
9628
|
declare module "sap/ui/ux3/NavigationBar" {
|
|
@@ -10153,7 +10024,7 @@ declare module "sap/ui/ux3/NavigationBar" {
|
|
|
10153
10024
|
/**
|
|
10154
10025
|
* Event is fired when an item is selected by the user
|
|
10155
10026
|
*/
|
|
10156
|
-
select?: (oEvent:
|
|
10027
|
+
select?: (oEvent: NavigationBar$SelectEvent) => void;
|
|
10157
10028
|
}
|
|
10158
10029
|
|
|
10159
10030
|
export interface NavigationBar$SelectEventParameters {
|
|
@@ -10168,13 +10039,10 @@ declare module "sap/ui/ux3/NavigationBar" {
|
|
|
10168
10039
|
item?: NavigationItem;
|
|
10169
10040
|
}
|
|
10170
10041
|
|
|
10171
|
-
|
|
10172
|
-
|
|
10173
|
-
|
|
10174
|
-
|
|
10175
|
-
export type $NavigationBarSelectEventParameters = NavigationBar$SelectEventParameters;
|
|
10176
|
-
|
|
10177
|
-
export type NavigationBar$SelectEvent = Event<NavigationBar$SelectEventParameters>;
|
|
10042
|
+
export type NavigationBar$SelectEvent = Event<
|
|
10043
|
+
NavigationBar$SelectEventParameters,
|
|
10044
|
+
NavigationBar
|
|
10045
|
+
>;
|
|
10178
10046
|
}
|
|
10179
10047
|
|
|
10180
10048
|
declare module "sap/ui/ux3/NavigationItem" {
|
|
@@ -10897,7 +10765,7 @@ declare module "sap/ui/ux3/NotificationBar" {
|
|
|
10897
10765
|
* Event is fired when the bar wants to be displayed depending on given flag. This allows the application
|
|
10898
10766
|
* to decide what to do.
|
|
10899
10767
|
*/
|
|
10900
|
-
display?: (oEvent:
|
|
10768
|
+
display?: (oEvent: NotificationBar$DisplayEvent) => void;
|
|
10901
10769
|
|
|
10902
10770
|
/**
|
|
10903
10771
|
* @since 1.12.2
|
|
@@ -10906,7 +10774,7 @@ declare module "sap/ui/ux3/NotificationBar" {
|
|
|
10906
10774
|
* The event itself can be used from SAPUI5-version 1.12.2 since there was a bug in the previous versions
|
|
10907
10775
|
* firing this event.
|
|
10908
10776
|
*/
|
|
10909
|
-
resize?: (oEvent:
|
|
10777
|
+
resize?: (oEvent: NotificationBar$ResizeEvent) => void;
|
|
10910
10778
|
}
|
|
10911
10779
|
|
|
10912
10780
|
export interface NotificationBar$DisplayEventParameters {
|
|
@@ -10916,13 +10784,10 @@ declare module "sap/ui/ux3/NotificationBar" {
|
|
|
10916
10784
|
show?: boolean;
|
|
10917
10785
|
}
|
|
10918
10786
|
|
|
10919
|
-
|
|
10920
|
-
|
|
10921
|
-
|
|
10922
|
-
|
|
10923
|
-
export type $NotificationBarDisplayEventParameters = NotificationBar$DisplayEventParameters;
|
|
10924
|
-
|
|
10925
|
-
export type NotificationBar$DisplayEvent = Event<NotificationBar$DisplayEventParameters>;
|
|
10787
|
+
export type NotificationBar$DisplayEvent = Event<
|
|
10788
|
+
NotificationBar$DisplayEventParameters,
|
|
10789
|
+
NotificationBar
|
|
10790
|
+
>;
|
|
10926
10791
|
|
|
10927
10792
|
export interface NotificationBar$ResizeEventParameters {
|
|
10928
10793
|
/**
|
|
@@ -10932,13 +10797,10 @@ declare module "sap/ui/ux3/NotificationBar" {
|
|
|
10932
10797
|
status?: NotificationBarStatus | keyof typeof NotificationBarStatus;
|
|
10933
10798
|
}
|
|
10934
10799
|
|
|
10935
|
-
|
|
10936
|
-
|
|
10937
|
-
|
|
10938
|
-
|
|
10939
|
-
export type $NotificationBarResizeEventParameters = NotificationBar$ResizeEventParameters;
|
|
10940
|
-
|
|
10941
|
-
export type NotificationBar$ResizeEvent = Event<NotificationBar$ResizeEventParameters>;
|
|
10800
|
+
export type NotificationBar$ResizeEvent = Event<
|
|
10801
|
+
NotificationBar$ResizeEventParameters,
|
|
10802
|
+
NotificationBar
|
|
10803
|
+
>;
|
|
10942
10804
|
}
|
|
10943
10805
|
|
|
10944
10806
|
declare module "sap/ui/ux3/Notifier" {
|
|
@@ -11243,9 +11105,7 @@ declare module "sap/ui/ux3/Notifier" {
|
|
|
11243
11105
|
/**
|
|
11244
11106
|
* Event is fired when a message of the notifiers was selected.
|
|
11245
11107
|
*/
|
|
11246
|
-
messageSelected?: (
|
|
11247
|
-
oEvent: Event<Notifier$MessageSelectedEventParameters>
|
|
11248
|
-
) => void;
|
|
11108
|
+
messageSelected?: (oEvent: Notifier$MessageSelectedEvent) => void;
|
|
11249
11109
|
}
|
|
11250
11110
|
|
|
11251
11111
|
export interface Notifier$MessageSelectedEventParameters {
|
|
@@ -11260,13 +11120,10 @@ declare module "sap/ui/ux3/Notifier" {
|
|
|
11260
11120
|
notifier?: Notifier;
|
|
11261
11121
|
}
|
|
11262
11122
|
|
|
11263
|
-
|
|
11264
|
-
|
|
11265
|
-
|
|
11266
|
-
|
|
11267
|
-
export type $NotifierMessageSelectedEventParameters = Notifier$MessageSelectedEventParameters;
|
|
11268
|
-
|
|
11269
|
-
export type Notifier$MessageSelectedEvent = Event<Notifier$MessageSelectedEventParameters>;
|
|
11123
|
+
export type Notifier$MessageSelectedEvent = Event<
|
|
11124
|
+
Notifier$MessageSelectedEventParameters,
|
|
11125
|
+
Notifier
|
|
11126
|
+
>;
|
|
11270
11127
|
}
|
|
11271
11128
|
|
|
11272
11129
|
declare module "sap/ui/ux3/Overlay" {
|
|
@@ -11740,22 +11597,22 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
11740
11597
|
/**
|
|
11741
11598
|
* Event is fired when the Overlay starts closing.
|
|
11742
11599
|
*/
|
|
11743
|
-
close?: (oEvent:
|
|
11600
|
+
close?: (oEvent: Overlay$CloseEvent) => void;
|
|
11744
11601
|
|
|
11745
11602
|
/**
|
|
11746
11603
|
* Event is fired when the Overlay is closed.
|
|
11747
11604
|
*/
|
|
11748
|
-
closed?: (oEvent:
|
|
11605
|
+
closed?: (oEvent: Overlay$ClosedEvent) => void;
|
|
11749
11606
|
|
|
11750
11607
|
/**
|
|
11751
11608
|
* Event is fired when the 'Open' button of the Overlay is clicked.
|
|
11752
11609
|
*/
|
|
11753
|
-
openNew?: (oEvent:
|
|
11610
|
+
openNew?: (oEvent: Overlay$OpenNewEvent) => void;
|
|
11754
11611
|
|
|
11755
11612
|
/**
|
|
11756
11613
|
* Event is fired when the Overlay is opened.
|
|
11757
11614
|
*/
|
|
11758
|
-
open?: (oEvent:
|
|
11615
|
+
open?: (oEvent: Overlay$OpenEvent) => void;
|
|
11759
11616
|
}
|
|
11760
11617
|
|
|
11761
11618
|
export interface Overlay$CloseEventParameters {
|
|
@@ -11765,13 +11622,7 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
11765
11622
|
id?: string;
|
|
11766
11623
|
}
|
|
11767
11624
|
|
|
11768
|
-
|
|
11769
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Overlay$CloseEventParameters'
|
|
11770
|
-
* in 1.115.1 and any later releases.
|
|
11771
|
-
*/
|
|
11772
|
-
export type $OverlayCloseEventParameters = Overlay$CloseEventParameters;
|
|
11773
|
-
|
|
11774
|
-
export type Overlay$CloseEvent = Event<Overlay$CloseEventParameters>;
|
|
11625
|
+
export type Overlay$CloseEvent = Event<Overlay$CloseEventParameters, Overlay>;
|
|
11775
11626
|
|
|
11776
11627
|
export interface Overlay$ClosedEventParameters {
|
|
11777
11628
|
/**
|
|
@@ -11780,13 +11631,10 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
11780
11631
|
id?: string;
|
|
11781
11632
|
}
|
|
11782
11633
|
|
|
11783
|
-
|
|
11784
|
-
|
|
11785
|
-
|
|
11786
|
-
|
|
11787
|
-
export type $OverlayClosedEventParameters = Overlay$ClosedEventParameters;
|
|
11788
|
-
|
|
11789
|
-
export type Overlay$ClosedEvent = Event<Overlay$ClosedEventParameters>;
|
|
11634
|
+
export type Overlay$ClosedEvent = Event<
|
|
11635
|
+
Overlay$ClosedEventParameters,
|
|
11636
|
+
Overlay
|
|
11637
|
+
>;
|
|
11790
11638
|
|
|
11791
11639
|
export interface Overlay$OpenEventParameters {
|
|
11792
11640
|
/**
|
|
@@ -11795,13 +11643,7 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
11795
11643
|
id?: string;
|
|
11796
11644
|
}
|
|
11797
11645
|
|
|
11798
|
-
|
|
11799
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Overlay$OpenEventParameters'
|
|
11800
|
-
* in 1.115.1 and any later releases.
|
|
11801
|
-
*/
|
|
11802
|
-
export type $OverlayOpenEventParameters = Overlay$OpenEventParameters;
|
|
11803
|
-
|
|
11804
|
-
export type Overlay$OpenEvent = Event<Overlay$OpenEventParameters>;
|
|
11646
|
+
export type Overlay$OpenEvent = Event<Overlay$OpenEventParameters, Overlay>;
|
|
11805
11647
|
|
|
11806
11648
|
export interface Overlay$OpenNewEventParameters {
|
|
11807
11649
|
/**
|
|
@@ -11810,13 +11652,10 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
11810
11652
|
id?: string;
|
|
11811
11653
|
}
|
|
11812
11654
|
|
|
11813
|
-
|
|
11814
|
-
|
|
11815
|
-
|
|
11816
|
-
|
|
11817
|
-
export type $OverlayOpenNewEventParameters = Overlay$OpenNewEventParameters;
|
|
11818
|
-
|
|
11819
|
-
export type Overlay$OpenNewEvent = Event<Overlay$OpenNewEventParameters>;
|
|
11655
|
+
export type Overlay$OpenNewEvent = Event<
|
|
11656
|
+
Overlay$OpenNewEventParameters,
|
|
11657
|
+
Overlay
|
|
11658
|
+
>;
|
|
11820
11659
|
}
|
|
11821
11660
|
|
|
11822
11661
|
declare module "sap/ui/ux3/OverlayContainer" {
|
|
@@ -13171,20 +13010,18 @@ declare module "sap/ui/ux3/QuickView" {
|
|
|
13171
13010
|
/**
|
|
13172
13011
|
* Action is selected in Action Bar
|
|
13173
13012
|
*/
|
|
13174
|
-
actionSelected?: (
|
|
13175
|
-
oEvent: Event<QuickView$ActionSelectedEventParameters>
|
|
13176
|
-
) => void;
|
|
13013
|
+
actionSelected?: (oEvent: QuickView$ActionSelectedEvent) => void;
|
|
13177
13014
|
|
|
13178
13015
|
/**
|
|
13179
13016
|
* Fired when a new feed entry is submitted.
|
|
13180
13017
|
*/
|
|
13181
|
-
feedSubmit?: (oEvent:
|
|
13018
|
+
feedSubmit?: (oEvent: QuickView$FeedSubmitEvent) => void;
|
|
13182
13019
|
|
|
13183
13020
|
/**
|
|
13184
13021
|
* Event is fired when a user clicks on the firstTitle link. Call the preventDefault method of the event
|
|
13185
13022
|
* object to cancel browser navigation.
|
|
13186
13023
|
*/
|
|
13187
|
-
navigate?: (oEvent:
|
|
13024
|
+
navigate?: (oEvent: QuickView$NavigateEvent) => void;
|
|
13188
13025
|
}
|
|
13189
13026
|
|
|
13190
13027
|
export interface QuickView$ActionSelectedEventParameters {
|
|
@@ -13205,13 +13042,10 @@ declare module "sap/ui/ux3/QuickView" {
|
|
|
13205
13042
|
newState?: string;
|
|
13206
13043
|
}
|
|
13207
13044
|
|
|
13208
|
-
|
|
13209
|
-
|
|
13210
|
-
|
|
13211
|
-
|
|
13212
|
-
export type $QuickViewActionSelectedEventParameters = QuickView$ActionSelectedEventParameters;
|
|
13213
|
-
|
|
13214
|
-
export type QuickView$ActionSelectedEvent = Event<QuickView$ActionSelectedEventParameters>;
|
|
13045
|
+
export type QuickView$ActionSelectedEvent = Event<
|
|
13046
|
+
QuickView$ActionSelectedEventParameters,
|
|
13047
|
+
QuickView
|
|
13048
|
+
>;
|
|
13215
13049
|
|
|
13216
13050
|
export interface QuickView$FeedSubmitEventParameters {
|
|
13217
13051
|
/**
|
|
@@ -13220,13 +13054,10 @@ declare module "sap/ui/ux3/QuickView" {
|
|
|
13220
13054
|
text?: string;
|
|
13221
13055
|
}
|
|
13222
13056
|
|
|
13223
|
-
|
|
13224
|
-
|
|
13225
|
-
|
|
13226
|
-
|
|
13227
|
-
export type $QuickViewFeedSubmitEventParameters = QuickView$FeedSubmitEventParameters;
|
|
13228
|
-
|
|
13229
|
-
export type QuickView$FeedSubmitEvent = Event<QuickView$FeedSubmitEventParameters>;
|
|
13057
|
+
export type QuickView$FeedSubmitEvent = Event<
|
|
13058
|
+
QuickView$FeedSubmitEventParameters,
|
|
13059
|
+
QuickView
|
|
13060
|
+
>;
|
|
13230
13061
|
|
|
13231
13062
|
export interface QuickView$NavigateEventParameters {
|
|
13232
13063
|
/**
|
|
@@ -13235,13 +13066,10 @@ declare module "sap/ui/ux3/QuickView" {
|
|
|
13235
13066
|
href?: string;
|
|
13236
13067
|
}
|
|
13237
13068
|
|
|
13238
|
-
|
|
13239
|
-
|
|
13240
|
-
|
|
13241
|
-
|
|
13242
|
-
export type $QuickViewNavigateEventParameters = QuickView$NavigateEventParameters;
|
|
13243
|
-
|
|
13244
|
-
export type QuickView$NavigateEvent = Event<QuickView$NavigateEventParameters>;
|
|
13069
|
+
export type QuickView$NavigateEvent = Event<
|
|
13070
|
+
QuickView$NavigateEventParameters,
|
|
13071
|
+
QuickView
|
|
13072
|
+
>;
|
|
13245
13073
|
}
|
|
13246
13074
|
|
|
13247
13075
|
declare module "sap/ui/ux3/Shell" {
|
|
@@ -15030,17 +14858,13 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
15030
14858
|
* is responsible for displaying the correct content for the selected one of the newly created sub-items.
|
|
15031
14859
|
* The Shell will currently always mark the first sub-item as selected.
|
|
15032
14860
|
*/
|
|
15033
|
-
worksetItemSelected?: (
|
|
15034
|
-
oEvent: Event<Shell$WorksetItemSelectedEventParameters>
|
|
15035
|
-
) => void;
|
|
14861
|
+
worksetItemSelected?: (oEvent: Shell$WorksetItemSelectedEvent) => void;
|
|
15036
14862
|
|
|
15037
14863
|
/**
|
|
15038
14864
|
* An item in the right-hand-side pane bar has been selected, the pane is now visible and can be filled
|
|
15039
14865
|
* with UI elements.
|
|
15040
14866
|
*/
|
|
15041
|
-
paneBarItemSelected?: (
|
|
15042
|
-
oEvent: Event<Shell$PaneBarItemSelectedEventParameters>
|
|
15043
|
-
) => void;
|
|
14867
|
+
paneBarItemSelected?: (oEvent: Shell$PaneBarItemSelectedEvent) => void;
|
|
15044
14868
|
|
|
15045
14869
|
/**
|
|
15046
14870
|
* Fired when the user clicks the "Log-off" button
|
|
@@ -15063,28 +14887,19 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
15063
14887
|
* Fired after a side pane of the shell is closed. It is also fired, when an open pane is closed by calling
|
|
15064
14888
|
* setShowPane(false), if and only if the pane was opened before.
|
|
15065
14889
|
*/
|
|
15066
|
-
paneClosed?: (oEvent:
|
|
14890
|
+
paneClosed?: (oEvent: Shell$PaneClosedEvent) => void;
|
|
15067
14891
|
}
|
|
15068
14892
|
|
|
15069
14893
|
export interface Shell$FeedSubmitEventParameters {}
|
|
15070
14894
|
|
|
15071
|
-
|
|
15072
|
-
|
|
15073
|
-
|
|
15074
|
-
|
|
15075
|
-
export type $ShellFeedSubmitEventParameters = Shell$FeedSubmitEventParameters;
|
|
15076
|
-
|
|
15077
|
-
export type Shell$FeedSubmitEvent = Event<Shell$FeedSubmitEventParameters>;
|
|
14895
|
+
export type Shell$FeedSubmitEvent = Event<
|
|
14896
|
+
Shell$FeedSubmitEventParameters,
|
|
14897
|
+
Shell
|
|
14898
|
+
>;
|
|
15078
14899
|
|
|
15079
14900
|
export interface Shell$LogoutEventParameters {}
|
|
15080
14901
|
|
|
15081
|
-
|
|
15082
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$LogoutEventParameters'
|
|
15083
|
-
* in 1.115.1 and any later releases.
|
|
15084
|
-
*/
|
|
15085
|
-
export type $ShellLogoutEventParameters = Shell$LogoutEventParameters;
|
|
15086
|
-
|
|
15087
|
-
export type Shell$LogoutEvent = Event<Shell$LogoutEventParameters>;
|
|
14902
|
+
export type Shell$LogoutEvent = Event<Shell$LogoutEventParameters, Shell>;
|
|
15088
14903
|
|
|
15089
14904
|
export interface Shell$PaneBarItemSelectedEventParameters {
|
|
15090
14905
|
/**
|
|
@@ -15103,13 +14918,10 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
15103
14918
|
key?: string;
|
|
15104
14919
|
}
|
|
15105
14920
|
|
|
15106
|
-
|
|
15107
|
-
|
|
15108
|
-
|
|
15109
|
-
|
|
15110
|
-
export type $ShellPaneBarItemSelectedEventParameters = Shell$PaneBarItemSelectedEventParameters;
|
|
15111
|
-
|
|
15112
|
-
export type Shell$PaneBarItemSelectedEvent = Event<Shell$PaneBarItemSelectedEventParameters>;
|
|
14921
|
+
export type Shell$PaneBarItemSelectedEvent = Event<
|
|
14922
|
+
Shell$PaneBarItemSelectedEventParameters,
|
|
14923
|
+
Shell
|
|
14924
|
+
>;
|
|
15113
14925
|
|
|
15114
14926
|
export interface Shell$PaneClosedEventParameters {
|
|
15115
14927
|
/**
|
|
@@ -15118,23 +14930,14 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
15118
14930
|
id?: string;
|
|
15119
14931
|
}
|
|
15120
14932
|
|
|
15121
|
-
|
|
15122
|
-
|
|
15123
|
-
|
|
15124
|
-
|
|
15125
|
-
export type $ShellPaneClosedEventParameters = Shell$PaneClosedEventParameters;
|
|
15126
|
-
|
|
15127
|
-
export type Shell$PaneClosedEvent = Event<Shell$PaneClosedEventParameters>;
|
|
14933
|
+
export type Shell$PaneClosedEvent = Event<
|
|
14934
|
+
Shell$PaneClosedEventParameters,
|
|
14935
|
+
Shell
|
|
14936
|
+
>;
|
|
15128
14937
|
|
|
15129
14938
|
export interface Shell$SearchEventParameters {}
|
|
15130
14939
|
|
|
15131
|
-
|
|
15132
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Shell$SearchEventParameters'
|
|
15133
|
-
* in 1.115.1 and any later releases.
|
|
15134
|
-
*/
|
|
15135
|
-
export type $ShellSearchEventParameters = Shell$SearchEventParameters;
|
|
15136
|
-
|
|
15137
|
-
export type Shell$SearchEvent = Event<Shell$SearchEventParameters>;
|
|
14940
|
+
export type Shell$SearchEvent = Event<Shell$SearchEventParameters, Shell>;
|
|
15138
14941
|
|
|
15139
14942
|
export interface Shell$WorksetItemSelectedEventParameters {
|
|
15140
14943
|
/**
|
|
@@ -15154,13 +14957,10 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
15154
14957
|
key?: string;
|
|
15155
14958
|
}
|
|
15156
14959
|
|
|
15157
|
-
|
|
15158
|
-
|
|
15159
|
-
|
|
15160
|
-
|
|
15161
|
-
export type $ShellWorksetItemSelectedEventParameters = Shell$WorksetItemSelectedEventParameters;
|
|
15162
|
-
|
|
15163
|
-
export type Shell$WorksetItemSelectedEvent = Event<Shell$WorksetItemSelectedEventParameters>;
|
|
14960
|
+
export type Shell$WorksetItemSelectedEvent = Event<
|
|
14961
|
+
Shell$WorksetItemSelectedEventParameters,
|
|
14962
|
+
Shell
|
|
14963
|
+
>;
|
|
15164
14964
|
}
|
|
15165
14965
|
|
|
15166
14966
|
declare module "sap/ui/ux3/ThingAction" {
|
|
@@ -15379,7 +15179,7 @@ declare module "sap/ui/ux3/ThingAction" {
|
|
|
15379
15179
|
/**
|
|
15380
15180
|
* Event will be fired when the action was triggered.
|
|
15381
15181
|
*/
|
|
15382
|
-
select?: (oEvent:
|
|
15182
|
+
select?: (oEvent: ThingAction$SelectEvent) => void;
|
|
15383
15183
|
}
|
|
15384
15184
|
|
|
15385
15185
|
export interface ThingAction$SelectEventParameters {
|
|
@@ -15394,13 +15194,10 @@ declare module "sap/ui/ux3/ThingAction" {
|
|
|
15394
15194
|
action?: ThingAction;
|
|
15395
15195
|
}
|
|
15396
15196
|
|
|
15397
|
-
|
|
15398
|
-
|
|
15399
|
-
|
|
15400
|
-
|
|
15401
|
-
export type $ThingActionSelectEventParameters = ThingAction$SelectEventParameters;
|
|
15402
|
-
|
|
15403
|
-
export type ThingAction$SelectEvent = Event<ThingAction$SelectEventParameters>;
|
|
15197
|
+
export type ThingAction$SelectEvent = Event<
|
|
15198
|
+
ThingAction$SelectEventParameters,
|
|
15199
|
+
ThingAction
|
|
15200
|
+
>;
|
|
15404
15201
|
}
|
|
15405
15202
|
|
|
15406
15203
|
declare module "sap/ui/ux3/ThingGroup" {
|
|
@@ -16786,24 +16583,18 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
16786
16583
|
/**
|
|
16787
16584
|
* Further thing related Action selected
|
|
16788
16585
|
*/
|
|
16789
|
-
actionSelected?: (
|
|
16790
|
-
oEvent: Event<ThingInspector$ActionSelectedEventParameters>
|
|
16791
|
-
) => void;
|
|
16586
|
+
actionSelected?: (oEvent: ThingInspector$ActionSelectedEvent) => void;
|
|
16792
16587
|
|
|
16793
16588
|
/**
|
|
16794
16589
|
* Event for facet selection. The application is responsible for displaying the correct content for the
|
|
16795
16590
|
* selected one. The ThingInspector will currently always mark the first facet as selected.
|
|
16796
16591
|
*/
|
|
16797
|
-
facetSelected?: (
|
|
16798
|
-
oEvent: Event<ThingInspector$FacetSelectedEventParameters>
|
|
16799
|
-
) => void;
|
|
16592
|
+
facetSelected?: (oEvent: ThingInspector$FacetSelectedEvent) => void;
|
|
16800
16593
|
|
|
16801
16594
|
/**
|
|
16802
16595
|
* Fired when a new feed entry is submitted.
|
|
16803
16596
|
*/
|
|
16804
|
-
feedSubmit?: (
|
|
16805
|
-
oEvent: Event<ThingInspector$FeedSubmitEventParameters>
|
|
16806
|
-
) => void;
|
|
16597
|
+
feedSubmit?: (oEvent: ThingInspector$FeedSubmitEvent) => void;
|
|
16807
16598
|
}
|
|
16808
16599
|
|
|
16809
16600
|
export interface ThingInspector$ActionSelectedEventParameters {
|
|
@@ -16818,13 +16609,10 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
16818
16609
|
action?: ThingAction;
|
|
16819
16610
|
}
|
|
16820
16611
|
|
|
16821
|
-
|
|
16822
|
-
|
|
16823
|
-
|
|
16824
|
-
|
|
16825
|
-
export type $ThingInspectorActionSelectedEventParameters = ThingInspector$ActionSelectedEventParameters;
|
|
16826
|
-
|
|
16827
|
-
export type ThingInspector$ActionSelectedEvent = Event<ThingInspector$ActionSelectedEventParameters>;
|
|
16612
|
+
export type ThingInspector$ActionSelectedEvent = Event<
|
|
16613
|
+
ThingInspector$ActionSelectedEventParameters,
|
|
16614
|
+
ThingInspector
|
|
16615
|
+
>;
|
|
16828
16616
|
|
|
16829
16617
|
export interface ThingInspector$FacetSelectedEventParameters {
|
|
16830
16618
|
/**
|
|
@@ -16843,13 +16631,10 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
16843
16631
|
key?: string;
|
|
16844
16632
|
}
|
|
16845
16633
|
|
|
16846
|
-
|
|
16847
|
-
|
|
16848
|
-
|
|
16849
|
-
|
|
16850
|
-
export type $ThingInspectorFacetSelectedEventParameters = ThingInspector$FacetSelectedEventParameters;
|
|
16851
|
-
|
|
16852
|
-
export type ThingInspector$FacetSelectedEvent = Event<ThingInspector$FacetSelectedEventParameters>;
|
|
16634
|
+
export type ThingInspector$FacetSelectedEvent = Event<
|
|
16635
|
+
ThingInspector$FacetSelectedEventParameters,
|
|
16636
|
+
ThingInspector
|
|
16637
|
+
>;
|
|
16853
16638
|
|
|
16854
16639
|
export interface ThingInspector$FeedSubmitEventParameters {
|
|
16855
16640
|
/**
|
|
@@ -16858,13 +16643,10 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
16858
16643
|
text?: string;
|
|
16859
16644
|
}
|
|
16860
16645
|
|
|
16861
|
-
|
|
16862
|
-
|
|
16863
|
-
|
|
16864
|
-
|
|
16865
|
-
export type $ThingInspectorFeedSubmitEventParameters = ThingInspector$FeedSubmitEventParameters;
|
|
16866
|
-
|
|
16867
|
-
export type ThingInspector$FeedSubmitEvent = Event<ThingInspector$FeedSubmitEventParameters>;
|
|
16646
|
+
export type ThingInspector$FeedSubmitEvent = Event<
|
|
16647
|
+
ThingInspector$FeedSubmitEventParameters,
|
|
16648
|
+
ThingInspector
|
|
16649
|
+
>;
|
|
16868
16650
|
}
|
|
16869
16651
|
|
|
16870
16652
|
declare module "sap/ui/ux3/ThingViewer" {
|
|
@@ -17553,9 +17335,7 @@ declare module "sap/ui/ux3/ThingViewer" {
|
|
|
17553
17335
|
* Event for facet selection. The application is responsible for displaying the correct content for the
|
|
17554
17336
|
* selected one. The ThingInspector will currently always mark the first facet as selected.
|
|
17555
17337
|
*/
|
|
17556
|
-
facetSelected?: (
|
|
17557
|
-
oEvent: Event<ThingViewer$FacetSelectedEventParameters>
|
|
17558
|
-
) => void;
|
|
17338
|
+
facetSelected?: (oEvent: ThingViewer$FacetSelectedEvent) => void;
|
|
17559
17339
|
}
|
|
17560
17340
|
|
|
17561
17341
|
export interface ThingViewer$FacetSelectedEventParameters {
|
|
@@ -17575,13 +17355,10 @@ declare module "sap/ui/ux3/ThingViewer" {
|
|
|
17575
17355
|
key?: string;
|
|
17576
17356
|
}
|
|
17577
17357
|
|
|
17578
|
-
|
|
17579
|
-
|
|
17580
|
-
|
|
17581
|
-
|
|
17582
|
-
export type $ThingViewerFacetSelectedEventParameters = ThingViewer$FacetSelectedEventParameters;
|
|
17583
|
-
|
|
17584
|
-
export type ThingViewer$FacetSelectedEvent = Event<ThingViewer$FacetSelectedEventParameters>;
|
|
17358
|
+
export type ThingViewer$FacetSelectedEvent = Event<
|
|
17359
|
+
ThingViewer$FacetSelectedEventParameters,
|
|
17360
|
+
ThingViewer
|
|
17361
|
+
>;
|
|
17585
17362
|
}
|
|
17586
17363
|
|
|
17587
17364
|
declare module "sap/ui/ux3/ToolPopup" {
|
|
@@ -18793,7 +18570,7 @@ declare module "sap/ui/ux3/ToolPopup" {
|
|
|
18793
18570
|
/**
|
|
18794
18571
|
* Event is fired whenever the user clicks the Enter or the Enter key inside the pop up
|
|
18795
18572
|
*/
|
|
18796
|
-
enter?: (oEvent:
|
|
18573
|
+
enter?: (oEvent: ToolPopup$EnterEvent) => void;
|
|
18797
18574
|
|
|
18798
18575
|
/**
|
|
18799
18576
|
* Event is fired when one of the icon properties is modified (Note: The icon is not rendered by the ToolPopup).
|
|
@@ -18817,23 +18594,17 @@ declare module "sap/ui/ux3/ToolPopup" {
|
|
|
18817
18594
|
|
|
18818
18595
|
export interface ToolPopup$CloseEventParameters {}
|
|
18819
18596
|
|
|
18820
|
-
|
|
18821
|
-
|
|
18822
|
-
|
|
18823
|
-
|
|
18824
|
-
export type $ToolPopupCloseEventParameters = ToolPopup$CloseEventParameters;
|
|
18825
|
-
|
|
18826
|
-
export type ToolPopup$CloseEvent = Event<ToolPopup$CloseEventParameters>;
|
|
18597
|
+
export type ToolPopup$CloseEvent = Event<
|
|
18598
|
+
ToolPopup$CloseEventParameters,
|
|
18599
|
+
ToolPopup
|
|
18600
|
+
>;
|
|
18827
18601
|
|
|
18828
18602
|
export interface ToolPopup$ClosedEventParameters {}
|
|
18829
18603
|
|
|
18830
|
-
|
|
18831
|
-
|
|
18832
|
-
|
|
18833
|
-
|
|
18834
|
-
export type $ToolPopupClosedEventParameters = ToolPopup$ClosedEventParameters;
|
|
18835
|
-
|
|
18836
|
-
export type ToolPopup$ClosedEvent = Event<ToolPopup$ClosedEventParameters>;
|
|
18604
|
+
export type ToolPopup$ClosedEvent = Event<
|
|
18605
|
+
ToolPopup$ClosedEventParameters,
|
|
18606
|
+
ToolPopup
|
|
18607
|
+
>;
|
|
18837
18608
|
|
|
18838
18609
|
export interface ToolPopup$EnterEventParameters {
|
|
18839
18610
|
/**
|
|
@@ -18847,43 +18618,31 @@ declare module "sap/ui/ux3/ToolPopup" {
|
|
|
18847
18618
|
originalSrcControl?: Control;
|
|
18848
18619
|
}
|
|
18849
18620
|
|
|
18850
|
-
|
|
18851
|
-
|
|
18852
|
-
|
|
18853
|
-
|
|
18854
|
-
export type $ToolPopupEnterEventParameters = ToolPopup$EnterEventParameters;
|
|
18855
|
-
|
|
18856
|
-
export type ToolPopup$EnterEvent = Event<ToolPopup$EnterEventParameters>;
|
|
18621
|
+
export type ToolPopup$EnterEvent = Event<
|
|
18622
|
+
ToolPopup$EnterEventParameters,
|
|
18623
|
+
ToolPopup
|
|
18624
|
+
>;
|
|
18857
18625
|
|
|
18858
18626
|
export interface ToolPopup$IconChangedEventParameters {}
|
|
18859
18627
|
|
|
18860
|
-
|
|
18861
|
-
|
|
18862
|
-
|
|
18863
|
-
|
|
18864
|
-
export type $ToolPopupIconChangedEventParameters = ToolPopup$IconChangedEventParameters;
|
|
18865
|
-
|
|
18866
|
-
export type ToolPopup$IconChangedEvent = Event<ToolPopup$IconChangedEventParameters>;
|
|
18628
|
+
export type ToolPopup$IconChangedEvent = Event<
|
|
18629
|
+
ToolPopup$IconChangedEventParameters,
|
|
18630
|
+
ToolPopup
|
|
18631
|
+
>;
|
|
18867
18632
|
|
|
18868
18633
|
export interface ToolPopup$OpenEventParameters {}
|
|
18869
18634
|
|
|
18870
|
-
|
|
18871
|
-
|
|
18872
|
-
|
|
18873
|
-
|
|
18874
|
-
export type $ToolPopupOpenEventParameters = ToolPopup$OpenEventParameters;
|
|
18875
|
-
|
|
18876
|
-
export type ToolPopup$OpenEvent = Event<ToolPopup$OpenEventParameters>;
|
|
18635
|
+
export type ToolPopup$OpenEvent = Event<
|
|
18636
|
+
ToolPopup$OpenEventParameters,
|
|
18637
|
+
ToolPopup
|
|
18638
|
+
>;
|
|
18877
18639
|
|
|
18878
18640
|
export interface ToolPopup$OpenedEventParameters {}
|
|
18879
18641
|
|
|
18880
|
-
|
|
18881
|
-
|
|
18882
|
-
|
|
18883
|
-
|
|
18884
|
-
export type $ToolPopupOpenedEventParameters = ToolPopup$OpenedEventParameters;
|
|
18885
|
-
|
|
18886
|
-
export type ToolPopup$OpenedEvent = Event<ToolPopup$OpenedEventParameters>;
|
|
18642
|
+
export type ToolPopup$OpenedEvent = Event<
|
|
18643
|
+
ToolPopup$OpenedEventParameters,
|
|
18644
|
+
ToolPopup
|
|
18645
|
+
>;
|
|
18887
18646
|
}
|
|
18888
18647
|
|
|
18889
18648
|
declare namespace sap {
|