@openui5/types 1.122.1 → 1.123.1
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/package.json +1 -1
- package/types/sap.f.d.ts +435 -98
- package/types/sap.m.d.ts +3963 -401
- package/types/sap.tnt.d.ts +46 -10
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +797 -121
- package/types/sap.ui.core.d.ts +13204 -12618
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +40 -3
- package/types/sap.ui.integration.d.ts +147 -9
- package/types/sap.ui.layout.d.ts +171 -47
- package/types/sap.ui.mdc.d.ts +554 -71
- 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 +278 -74
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -42
- package/types/sap.ui.ux3.d.ts +527 -34
- 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.uxap.d.ts +123 -23
package/types/sap.ui.ux3.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/ux3/library" {
|
|
4
4
|
/**
|
|
@@ -867,7 +867,11 @@ declare module "sap/ui/ux3/ActionBar" {
|
|
|
867
867
|
bUpdateState?: boolean
|
|
868
868
|
): this;
|
|
869
869
|
}
|
|
870
|
-
|
|
870
|
+
/**
|
|
871
|
+
* Describes the settings that can be provided to the ActionBar constructor.
|
|
872
|
+
*
|
|
873
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Toolbar` or `sap.m.OverflowToolbar` control.
|
|
874
|
+
*/
|
|
871
875
|
export interface $ActionBarSettings extends $ControlSettings {
|
|
872
876
|
/**
|
|
873
877
|
* Keeps track of the actionBars Follow/Unfollow button’s state. Its value is one of - FollowActionState.Default
|
|
@@ -961,6 +965,9 @@ declare module "sap/ui/ux3/ActionBar" {
|
|
|
961
965
|
feedSubmit?: (oEvent: ActionBar$FeedSubmitEvent) => void;
|
|
962
966
|
}
|
|
963
967
|
|
|
968
|
+
/**
|
|
969
|
+
* Parameters of the ActionBar#actionSelected event.
|
|
970
|
+
*/
|
|
964
971
|
export interface ActionBar$ActionSelectedEventParameters {
|
|
965
972
|
/**
|
|
966
973
|
* Id of selected ThingAction
|
|
@@ -979,11 +986,17 @@ declare module "sap/ui/ux3/ActionBar" {
|
|
|
979
986
|
newState?: string;
|
|
980
987
|
}
|
|
981
988
|
|
|
989
|
+
/**
|
|
990
|
+
* Event object of the ActionBar#actionSelected event.
|
|
991
|
+
*/
|
|
982
992
|
export type ActionBar$ActionSelectedEvent = Event<
|
|
983
993
|
ActionBar$ActionSelectedEventParameters,
|
|
984
994
|
ActionBar
|
|
985
995
|
>;
|
|
986
996
|
|
|
997
|
+
/**
|
|
998
|
+
* Parameters of the ActionBar#feedSubmit event.
|
|
999
|
+
*/
|
|
987
1000
|
export interface ActionBar$FeedSubmitEventParameters {
|
|
988
1001
|
/**
|
|
989
1002
|
* Feed text
|
|
@@ -991,6 +1004,9 @@ declare module "sap/ui/ux3/ActionBar" {
|
|
|
991
1004
|
text?: string;
|
|
992
1005
|
}
|
|
993
1006
|
|
|
1007
|
+
/**
|
|
1008
|
+
* Event object of the ActionBar#feedSubmit event.
|
|
1009
|
+
*/
|
|
994
1010
|
export type ActionBar$FeedSubmitEvent = Event<
|
|
995
1011
|
ActionBar$FeedSubmitEventParameters,
|
|
996
1012
|
ActionBar
|
|
@@ -1435,7 +1451,11 @@ declare module "sap/ui/ux3/Collection" {
|
|
|
1435
1451
|
sTitle?: string
|
|
1436
1452
|
): this;
|
|
1437
1453
|
}
|
|
1438
|
-
|
|
1454
|
+
/**
|
|
1455
|
+
* Describes the settings that can be provided to the Collection constructor.
|
|
1456
|
+
*
|
|
1457
|
+
* @deprecated (since 1.38)
|
|
1458
|
+
*/
|
|
1439
1459
|
export interface $CollectionSettings extends $ElementSettings {
|
|
1440
1460
|
/**
|
|
1441
1461
|
* Name for the collection
|
|
@@ -1473,15 +1493,27 @@ declare module "sap/ui/ux3/Collection" {
|
|
|
1473
1493
|
propertyChanged?: (oEvent: Event) => void;
|
|
1474
1494
|
}
|
|
1475
1495
|
|
|
1496
|
+
/**
|
|
1497
|
+
* Parameters of the Collection#propertyChanged event.
|
|
1498
|
+
*/
|
|
1476
1499
|
export interface Collection$PropertyChangedEventParameters {}
|
|
1477
1500
|
|
|
1501
|
+
/**
|
|
1502
|
+
* Event object of the Collection#propertyChanged event.
|
|
1503
|
+
*/
|
|
1478
1504
|
export type Collection$PropertyChangedEvent = Event<
|
|
1479
1505
|
Collection$PropertyChangedEventParameters,
|
|
1480
1506
|
Collection
|
|
1481
1507
|
>;
|
|
1482
1508
|
|
|
1509
|
+
/**
|
|
1510
|
+
* Parameters of the Collection#selectionChanged event.
|
|
1511
|
+
*/
|
|
1483
1512
|
export interface Collection$SelectionChangedEventParameters {}
|
|
1484
1513
|
|
|
1514
|
+
/**
|
|
1515
|
+
* Event object of the Collection#selectionChanged event.
|
|
1516
|
+
*/
|
|
1485
1517
|
export type Collection$SelectionChangedEvent = Event<
|
|
1486
1518
|
Collection$SelectionChangedEventParameters,
|
|
1487
1519
|
Collection
|
|
@@ -2057,7 +2089,11 @@ declare module "sap/ui/ux3/CollectionInspector" {
|
|
|
2057
2089
|
bSidebarVisible?: boolean
|
|
2058
2090
|
): this;
|
|
2059
2091
|
}
|
|
2060
|
-
|
|
2092
|
+
/**
|
|
2093
|
+
* Describes the settings that can be provided to the CollectionInspector constructor.
|
|
2094
|
+
*
|
|
2095
|
+
* @deprecated (since 1.38)
|
|
2096
|
+
*/
|
|
2061
2097
|
export interface $CollectionInspectorSettings extends $ControlSettings {
|
|
2062
2098
|
/**
|
|
2063
2099
|
* Defines if the list of collection items is visible on the left
|
|
@@ -2104,22 +2140,40 @@ declare module "sap/ui/ux3/CollectionInspector" {
|
|
|
2104
2140
|
editCollection?: (oEvent: Event) => void;
|
|
2105
2141
|
}
|
|
2106
2142
|
|
|
2143
|
+
/**
|
|
2144
|
+
* Parameters of the CollectionInspector#collectionSelected event.
|
|
2145
|
+
*/
|
|
2107
2146
|
export interface CollectionInspector$CollectionSelectedEventParameters {}
|
|
2108
2147
|
|
|
2148
|
+
/**
|
|
2149
|
+
* Event object of the CollectionInspector#collectionSelected event.
|
|
2150
|
+
*/
|
|
2109
2151
|
export type CollectionInspector$CollectionSelectedEvent = Event<
|
|
2110
2152
|
CollectionInspector$CollectionSelectedEventParameters,
|
|
2111
2153
|
CollectionInspector
|
|
2112
2154
|
>;
|
|
2113
2155
|
|
|
2156
|
+
/**
|
|
2157
|
+
* Parameters of the CollectionInspector#editCollection event.
|
|
2158
|
+
*/
|
|
2114
2159
|
export interface CollectionInspector$EditCollectionEventParameters {}
|
|
2115
2160
|
|
|
2161
|
+
/**
|
|
2162
|
+
* Event object of the CollectionInspector#editCollection event.
|
|
2163
|
+
*/
|
|
2116
2164
|
export type CollectionInspector$EditCollectionEvent = Event<
|
|
2117
2165
|
CollectionInspector$EditCollectionEventParameters,
|
|
2118
2166
|
CollectionInspector
|
|
2119
2167
|
>;
|
|
2120
2168
|
|
|
2169
|
+
/**
|
|
2170
|
+
* Parameters of the CollectionInspector#itemSelectionChanged event.
|
|
2171
|
+
*/
|
|
2121
2172
|
export interface CollectionInspector$ItemSelectionChangedEventParameters {}
|
|
2122
2173
|
|
|
2174
|
+
/**
|
|
2175
|
+
* Event object of the CollectionInspector#itemSelectionChanged event.
|
|
2176
|
+
*/
|
|
2123
2177
|
export type CollectionInspector$ItemSelectionChangedEvent = Event<
|
|
2124
2178
|
CollectionInspector$ItemSelectionChangedEventParameters,
|
|
2125
2179
|
CollectionInspector
|
|
@@ -2851,7 +2905,11 @@ declare module "sap/ui/ux3/DataSet" {
|
|
|
2851
2905
|
*/
|
|
2852
2906
|
unbindItems(): this;
|
|
2853
2907
|
}
|
|
2854
|
-
|
|
2908
|
+
/**
|
|
2909
|
+
* Describes the settings that can be provided to the DataSet constructor.
|
|
2910
|
+
*
|
|
2911
|
+
* @deprecated (since 1.38) - Use a container by choice from the {@link sap.m} library, instead.
|
|
2912
|
+
*/
|
|
2855
2913
|
export interface $DataSetSettings extends $ControlSettings {
|
|
2856
2914
|
/**
|
|
2857
2915
|
* show Toolbar
|
|
@@ -2912,6 +2970,9 @@ declare module "sap/ui/ux3/DataSet" {
|
|
|
2912
2970
|
search?: (oEvent: DataSet$SearchEvent) => void;
|
|
2913
2971
|
}
|
|
2914
2972
|
|
|
2973
|
+
/**
|
|
2974
|
+
* Parameters of the DataSet#search event.
|
|
2975
|
+
*/
|
|
2915
2976
|
export interface DataSet$SearchEventParameters {
|
|
2916
2977
|
/**
|
|
2917
2978
|
* The search query
|
|
@@ -2919,11 +2980,17 @@ declare module "sap/ui/ux3/DataSet" {
|
|
|
2919
2980
|
query?: string;
|
|
2920
2981
|
}
|
|
2921
2982
|
|
|
2983
|
+
/**
|
|
2984
|
+
* Event object of the DataSet#search event.
|
|
2985
|
+
*/
|
|
2922
2986
|
export type DataSet$SearchEvent = Event<
|
|
2923
2987
|
DataSet$SearchEventParameters,
|
|
2924
2988
|
DataSet
|
|
2925
2989
|
>;
|
|
2926
2990
|
|
|
2991
|
+
/**
|
|
2992
|
+
* Parameters of the DataSet#selectionChanged event.
|
|
2993
|
+
*/
|
|
2927
2994
|
export interface DataSet$SelectionChangedEventParameters {
|
|
2928
2995
|
/**
|
|
2929
2996
|
* Old lead selected index
|
|
@@ -2936,6 +3003,9 @@ declare module "sap/ui/ux3/DataSet" {
|
|
|
2936
3003
|
newLeadSelectedIndex?: int;
|
|
2937
3004
|
}
|
|
2938
3005
|
|
|
3006
|
+
/**
|
|
3007
|
+
* Event object of the DataSet#selectionChanged event.
|
|
3008
|
+
*/
|
|
2939
3009
|
export type DataSet$SelectionChangedEvent = Event<
|
|
2940
3010
|
DataSet$SelectionChangedEventParameters,
|
|
2941
3011
|
DataSet
|
|
@@ -3212,7 +3282,11 @@ declare module "sap/ui/ux3/DataSetItem" {
|
|
|
3212
3282
|
sTitle?: string
|
|
3213
3283
|
): this;
|
|
3214
3284
|
}
|
|
3215
|
-
|
|
3285
|
+
/**
|
|
3286
|
+
* Describes the settings that can be provided to the DataSetItem constructor.
|
|
3287
|
+
*
|
|
3288
|
+
* @deprecated (since 1.38)
|
|
3289
|
+
*/
|
|
3216
3290
|
export interface $DataSetItemSettings extends $ElementSettings {
|
|
3217
3291
|
/**
|
|
3218
3292
|
* image
|
|
@@ -3240,6 +3314,9 @@ declare module "sap/ui/ux3/DataSetItem" {
|
|
|
3240
3314
|
selected?: (oEvent: DataSetItem$SelectedEvent) => void;
|
|
3241
3315
|
}
|
|
3242
3316
|
|
|
3317
|
+
/**
|
|
3318
|
+
* Parameters of the DataSetItem#selected event.
|
|
3319
|
+
*/
|
|
3243
3320
|
export interface DataSetItem$SelectedEventParameters {
|
|
3244
3321
|
/**
|
|
3245
3322
|
* Id of the selected Datset item
|
|
@@ -3247,6 +3324,9 @@ declare module "sap/ui/ux3/DataSetItem" {
|
|
|
3247
3324
|
itemId?: string;
|
|
3248
3325
|
}
|
|
3249
3326
|
|
|
3327
|
+
/**
|
|
3328
|
+
* Event object of the DataSetItem#selected event.
|
|
3329
|
+
*/
|
|
3250
3330
|
export type DataSetItem$SelectedEvent = Event<
|
|
3251
3331
|
DataSetItem$SelectedEventParameters,
|
|
3252
3332
|
DataSetItem
|
|
@@ -3727,7 +3807,11 @@ declare module "sap/ui/ux3/DataSetSimpleView" {
|
|
|
3727
3807
|
aDiff: DataSetItem[]
|
|
3728
3808
|
): void;
|
|
3729
3809
|
}
|
|
3730
|
-
|
|
3810
|
+
/**
|
|
3811
|
+
* Describes the settings that can be provided to the DataSetSimpleView constructor.
|
|
3812
|
+
*
|
|
3813
|
+
* @deprecated (since 1.38) - Use a layout by choice from the {@link sap.m} library, instead.
|
|
3814
|
+
*/
|
|
3731
3815
|
export interface $DataSetSimpleViewSettings extends $ControlSettings {
|
|
3732
3816
|
/**
|
|
3733
3817
|
* When true the DatSet items are floating containers. When set to false The Items are rendered in a 1 column
|
|
@@ -4191,7 +4275,12 @@ declare module "sap/ui/ux3/Exact" {
|
|
|
4191
4275
|
oSettingsMenu: Menu
|
|
4192
4276
|
): this;
|
|
4193
4277
|
}
|
|
4194
|
-
|
|
4278
|
+
/**
|
|
4279
|
+
* Describes the settings that can be provided to the Exact constructor.
|
|
4280
|
+
*
|
|
4281
|
+
* @deprecated (since 1.38)
|
|
4282
|
+
* @experimental (since 1.2) - API is not yet finished and might change completely
|
|
4283
|
+
*/
|
|
4195
4284
|
export interface $ExactSettings extends $ControlSettings {
|
|
4196
4285
|
/**
|
|
4197
4286
|
* A title text which is displayed above the result section
|
|
@@ -4223,6 +4312,9 @@ declare module "sap/ui/ux3/Exact" {
|
|
|
4223
4312
|
refineSearch?: (oEvent: Exact$RefineSearchEvent) => void;
|
|
4224
4313
|
}
|
|
4225
4314
|
|
|
4315
|
+
/**
|
|
4316
|
+
* Parameters of the Exact#refineSearch event.
|
|
4317
|
+
*/
|
|
4226
4318
|
export interface Exact$RefineSearchEventParameters {
|
|
4227
4319
|
/**
|
|
4228
4320
|
* The query string which was entered in the search field
|
|
@@ -4240,11 +4332,17 @@ declare module "sap/ui/ux3/Exact" {
|
|
|
4240
4332
|
allSelectedAttributes?: object;
|
|
4241
4333
|
}
|
|
4242
4334
|
|
|
4335
|
+
/**
|
|
4336
|
+
* Event object of the Exact#refineSearch event.
|
|
4337
|
+
*/
|
|
4243
4338
|
export type Exact$RefineSearchEvent = Event<
|
|
4244
4339
|
Exact$RefineSearchEventParameters,
|
|
4245
4340
|
Exact
|
|
4246
4341
|
>;
|
|
4247
4342
|
|
|
4343
|
+
/**
|
|
4344
|
+
* Parameters of the Exact#search event.
|
|
4345
|
+
*/
|
|
4248
4346
|
export interface Exact$SearchEventParameters {
|
|
4249
4347
|
/**
|
|
4250
4348
|
* The query string which was entered in the search field.
|
|
@@ -4252,6 +4350,9 @@ declare module "sap/ui/ux3/Exact" {
|
|
|
4252
4350
|
query?: string;
|
|
4253
4351
|
}
|
|
4254
4352
|
|
|
4353
|
+
/**
|
|
4354
|
+
* Event object of the Exact#search event.
|
|
4355
|
+
*/
|
|
4255
4356
|
export type Exact$SearchEvent = Event<Exact$SearchEventParameters, Exact>;
|
|
4256
4357
|
}
|
|
4257
4358
|
|
|
@@ -4521,7 +4622,12 @@ declare module "sap/ui/ux3/ExactArea" {
|
|
|
4521
4622
|
bToolbarVisible?: boolean
|
|
4522
4623
|
): this;
|
|
4523
4624
|
}
|
|
4524
|
-
|
|
4625
|
+
/**
|
|
4626
|
+
* Describes the settings that can be provided to the ExactArea constructor.
|
|
4627
|
+
*
|
|
4628
|
+
* @deprecated (since 1.38)
|
|
4629
|
+
* @experimental (since 1.6) - API is not yet finished and might change completely
|
|
4630
|
+
*/
|
|
4525
4631
|
export interface $ExactAreaSettings extends $ControlSettings {
|
|
4526
4632
|
/**
|
|
4527
4633
|
* Specifies whether the tool bar shall be visible
|
|
@@ -5070,7 +5176,11 @@ declare module "sap/ui/ux3/ExactAttribute" {
|
|
|
5070
5176
|
iWidth?: int
|
|
5071
5177
|
): this;
|
|
5072
5178
|
}
|
|
5073
|
-
|
|
5179
|
+
/**
|
|
5180
|
+
* Describes the settings that can be provided to the ExactAttribute constructor.
|
|
5181
|
+
*
|
|
5182
|
+
* @deprecated (since 1.38)
|
|
5183
|
+
*/
|
|
5074
5184
|
export interface $ExactAttributeSettings extends $ElementSettings {
|
|
5075
5185
|
/**
|
|
5076
5186
|
* The attribute name
|
|
@@ -5145,6 +5255,9 @@ declare module "sap/ui/ux3/ExactAttribute" {
|
|
|
5145
5255
|
supplyAttributes?: (oEvent: ExactAttribute$SupplyAttributesEvent) => void;
|
|
5146
5256
|
}
|
|
5147
5257
|
|
|
5258
|
+
/**
|
|
5259
|
+
* Parameters of the ExactAttribute#supplyAttributes event.
|
|
5260
|
+
*/
|
|
5148
5261
|
export interface ExactAttribute$SupplyAttributesEventParameters {
|
|
5149
5262
|
/**
|
|
5150
5263
|
* The ExactAttribute
|
|
@@ -5152,6 +5265,9 @@ declare module "sap/ui/ux3/ExactAttribute" {
|
|
|
5152
5265
|
attribute?: ExactAttribute;
|
|
5153
5266
|
}
|
|
5154
5267
|
|
|
5268
|
+
/**
|
|
5269
|
+
* Event object of the ExactAttribute#supplyAttributes event.
|
|
5270
|
+
*/
|
|
5155
5271
|
export type ExactAttribute$SupplyAttributesEvent = Event<
|
|
5156
5272
|
ExactAttribute$SupplyAttributesEventParameters,
|
|
5157
5273
|
ExactAttribute
|
|
@@ -5828,7 +5944,11 @@ declare module "sap/ui/ux3/ExactBrowser" {
|
|
|
5828
5944
|
iTopListWidth?: int
|
|
5829
5945
|
): this;
|
|
5830
5946
|
}
|
|
5831
|
-
|
|
5947
|
+
/**
|
|
5948
|
+
* Describes the settings that can be provided to the ExactBrowser constructor.
|
|
5949
|
+
*
|
|
5950
|
+
* @deprecated (since 1.38)
|
|
5951
|
+
*/
|
|
5832
5952
|
export interface $ExactBrowserSettings extends $ControlSettings {
|
|
5833
5953
|
/**
|
|
5834
5954
|
* Title text in the list area of the Exact Browser. The title is not shown when the property showTopList
|
|
@@ -5924,6 +6044,9 @@ declare module "sap/ui/ux3/ExactBrowser" {
|
|
|
5924
6044
|
save?: (oEvent: Event) => void;
|
|
5925
6045
|
}
|
|
5926
6046
|
|
|
6047
|
+
/**
|
|
6048
|
+
* Parameters of the ExactBrowser#attributeSelected event.
|
|
6049
|
+
*/
|
|
5927
6050
|
export interface ExactBrowser$AttributeSelectedEventParameters {
|
|
5928
6051
|
/**
|
|
5929
6052
|
* The attribute which was selected or unselected recently
|
|
@@ -5936,13 +6059,22 @@ declare module "sap/ui/ux3/ExactBrowser" {
|
|
|
5936
6059
|
allAttributes?: object;
|
|
5937
6060
|
}
|
|
5938
6061
|
|
|
6062
|
+
/**
|
|
6063
|
+
* Event object of the ExactBrowser#attributeSelected event.
|
|
6064
|
+
*/
|
|
5939
6065
|
export type ExactBrowser$AttributeSelectedEvent = Event<
|
|
5940
6066
|
ExactBrowser$AttributeSelectedEventParameters,
|
|
5941
6067
|
ExactBrowser
|
|
5942
6068
|
>;
|
|
5943
6069
|
|
|
6070
|
+
/**
|
|
6071
|
+
* Parameters of the ExactBrowser#save event.
|
|
6072
|
+
*/
|
|
5944
6073
|
export interface ExactBrowser$SaveEventParameters {}
|
|
5945
6074
|
|
|
6075
|
+
/**
|
|
6076
|
+
* Event object of the ExactBrowser#save event.
|
|
6077
|
+
*/
|
|
5946
6078
|
export type ExactBrowser$SaveEvent = Event<
|
|
5947
6079
|
ExactBrowser$SaveEventParameters,
|
|
5948
6080
|
ExactBrowser
|
|
@@ -6294,7 +6426,11 @@ declare module "sap/ui/ux3/ExactList" {
|
|
|
6294
6426
|
sTopTitle?: string
|
|
6295
6427
|
): this;
|
|
6296
6428
|
}
|
|
6297
|
-
|
|
6429
|
+
/**
|
|
6430
|
+
* Describes the settings that can be provided to the ExactList constructor.
|
|
6431
|
+
*
|
|
6432
|
+
* @deprecated (since 1.38)
|
|
6433
|
+
*/
|
|
6298
6434
|
export interface $ExactListSettings extends $ControlSettings {
|
|
6299
6435
|
/**
|
|
6300
6436
|
* Defines whether the close icon shall be displayed in the header.
|
|
@@ -6328,6 +6464,9 @@ declare module "sap/ui/ux3/ExactList" {
|
|
|
6328
6464
|
attributeSelected?: (oEvent: ExactList$AttributeSelectedEvent) => void;
|
|
6329
6465
|
}
|
|
6330
6466
|
|
|
6467
|
+
/**
|
|
6468
|
+
* Parameters of the ExactList#attributeSelected event.
|
|
6469
|
+
*/
|
|
6331
6470
|
export interface ExactList$AttributeSelectedEventParameters {
|
|
6332
6471
|
/**
|
|
6333
6472
|
* The attribute which was selected/unselected recently
|
|
@@ -6340,6 +6479,9 @@ declare module "sap/ui/ux3/ExactList" {
|
|
|
6340
6479
|
allAttributes?: object;
|
|
6341
6480
|
}
|
|
6342
6481
|
|
|
6482
|
+
/**
|
|
6483
|
+
* Event object of the ExactList#attributeSelected event.
|
|
6484
|
+
*/
|
|
6343
6485
|
export type ExactList$AttributeSelectedEvent = Event<
|
|
6344
6486
|
ExactList$AttributeSelectedEventParameters,
|
|
6345
6487
|
ExactList
|
|
@@ -6541,7 +6683,11 @@ declare module "sap/ui/ux3/FacetFilter" {
|
|
|
6541
6683
|
| keyof typeof VisibleItemCountMode
|
|
6542
6684
|
): this;
|
|
6543
6685
|
}
|
|
6544
|
-
|
|
6686
|
+
/**
|
|
6687
|
+
* Describes the settings that can be provided to the FacetFilter constructor.
|
|
6688
|
+
*
|
|
6689
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.FacetFilter}
|
|
6690
|
+
*/
|
|
6545
6691
|
export interface $FacetFilterSettings extends $ControlSettings {
|
|
6546
6692
|
/**
|
|
6547
6693
|
* If the value is "Auto" - the Facet Filter takes the whole available height. If "Fixed" , then the default
|
|
@@ -6942,7 +7088,11 @@ declare module "sap/ui/ux3/FacetFilterList" {
|
|
|
6942
7088
|
sTitle?: string
|
|
6943
7089
|
): this;
|
|
6944
7090
|
}
|
|
6945
|
-
|
|
7091
|
+
/**
|
|
7092
|
+
* Describes the settings that can be provided to the FacetFilterList constructor.
|
|
7093
|
+
*
|
|
7094
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.FacetFilter}
|
|
7095
|
+
*/
|
|
6946
7096
|
export interface $FacetFilterListSettings extends $ControlSettings {
|
|
6947
7097
|
/**
|
|
6948
7098
|
* The title of this list.
|
|
@@ -6983,6 +7133,9 @@ declare module "sap/ui/ux3/FacetFilterList" {
|
|
|
6983
7133
|
select?: (oEvent: FacetFilterList$SelectEvent) => void;
|
|
6984
7134
|
}
|
|
6985
7135
|
|
|
7136
|
+
/**
|
|
7137
|
+
* Parameters of the FacetFilterList#select event.
|
|
7138
|
+
*/
|
|
6986
7139
|
export interface FacetFilterList$SelectEventParameters {
|
|
6987
7140
|
/**
|
|
6988
7141
|
* Id of the FacetFilterList taht fires the event.
|
|
@@ -7006,6 +7159,9 @@ declare module "sap/ui/ux3/FacetFilterList" {
|
|
|
7006
7159
|
all?: boolean;
|
|
7007
7160
|
}
|
|
7008
7161
|
|
|
7162
|
+
/**
|
|
7163
|
+
* Event object of the FacetFilterList#select event.
|
|
7164
|
+
*/
|
|
7009
7165
|
export type FacetFilterList$SelectEvent = Event<
|
|
7010
7166
|
FacetFilterList$SelectEventParameters,
|
|
7011
7167
|
FacetFilterList
|
|
@@ -7900,7 +8056,14 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
7900
8056
|
*/
|
|
7901
8057
|
unbindToolsMenuItems(): this;
|
|
7902
8058
|
}
|
|
7903
|
-
|
|
8059
|
+
/**
|
|
8060
|
+
* Describes the settings that can be provided to the Feed constructor.
|
|
8061
|
+
*
|
|
8062
|
+
* @deprecated (since 1.38) - Instead, use **any** `sap.ui.layout` container control.
|
|
8063
|
+
* @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
|
|
8064
|
+
* are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
|
|
8065
|
+
* Feed model topic is still open.
|
|
8066
|
+
*/
|
|
7904
8067
|
export interface $FeedSettings extends $ControlSettings {
|
|
7905
8068
|
/**
|
|
7906
8069
|
* The path to the thumbnail image used for the feeder
|
|
@@ -7971,6 +8134,9 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
7971
8134
|
toggleLive?: (oEvent: Feed$ToggleLiveEvent) => void;
|
|
7972
8135
|
}
|
|
7973
8136
|
|
|
8137
|
+
/**
|
|
8138
|
+
* Parameters of the Feed#chunkAdded event.
|
|
8139
|
+
*/
|
|
7974
8140
|
export interface Feed$ChunkAddedEventParameters {
|
|
7975
8141
|
/**
|
|
7976
8142
|
* New chunk
|
|
@@ -7978,11 +8144,17 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
7978
8144
|
chunk?: FeedChunk;
|
|
7979
8145
|
}
|
|
7980
8146
|
|
|
8147
|
+
/**
|
|
8148
|
+
* Event object of the Feed#chunkAdded event.
|
|
8149
|
+
*/
|
|
7981
8150
|
export type Feed$ChunkAddedEvent = Event<
|
|
7982
8151
|
Feed$ChunkAddedEventParameters,
|
|
7983
8152
|
Feed
|
|
7984
8153
|
>;
|
|
7985
8154
|
|
|
8155
|
+
/**
|
|
8156
|
+
* Parameters of the Feed#filterChange event.
|
|
8157
|
+
*/
|
|
7986
8158
|
export interface Feed$FilterChangeEventParameters {
|
|
7987
8159
|
/**
|
|
7988
8160
|
* The new/changed value of the filter
|
|
@@ -7990,11 +8162,17 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
7990
8162
|
newValue?: string;
|
|
7991
8163
|
}
|
|
7992
8164
|
|
|
8165
|
+
/**
|
|
8166
|
+
* Event object of the Feed#filterChange event.
|
|
8167
|
+
*/
|
|
7993
8168
|
export type Feed$FilterChangeEvent = Event<
|
|
7994
8169
|
Feed$FilterChangeEventParameters,
|
|
7995
8170
|
Feed
|
|
7996
8171
|
>;
|
|
7997
8172
|
|
|
8173
|
+
/**
|
|
8174
|
+
* Parameters of the Feed#search event.
|
|
8175
|
+
*/
|
|
7998
8176
|
export interface Feed$SearchEventParameters {
|
|
7999
8177
|
/**
|
|
8000
8178
|
* The search query
|
|
@@ -8002,8 +8180,14 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
8002
8180
|
query?: string;
|
|
8003
8181
|
}
|
|
8004
8182
|
|
|
8183
|
+
/**
|
|
8184
|
+
* Event object of the Feed#search event.
|
|
8185
|
+
*/
|
|
8005
8186
|
export type Feed$SearchEvent = Event<Feed$SearchEventParameters, Feed>;
|
|
8006
8187
|
|
|
8188
|
+
/**
|
|
8189
|
+
* Parameters of the Feed#toggleLive event.
|
|
8190
|
+
*/
|
|
8007
8191
|
export interface Feed$ToggleLiveEventParameters {
|
|
8008
8192
|
/**
|
|
8009
8193
|
* Current live indicator
|
|
@@ -8011,11 +8195,17 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
8011
8195
|
live?: boolean;
|
|
8012
8196
|
}
|
|
8013
8197
|
|
|
8198
|
+
/**
|
|
8199
|
+
* Event object of the Feed#toggleLive event.
|
|
8200
|
+
*/
|
|
8014
8201
|
export type Feed$ToggleLiveEvent = Event<
|
|
8015
8202
|
Feed$ToggleLiveEventParameters,
|
|
8016
8203
|
Feed
|
|
8017
8204
|
>;
|
|
8018
8205
|
|
|
8206
|
+
/**
|
|
8207
|
+
* Parameters of the Feed#toolsItemSelected event.
|
|
8208
|
+
*/
|
|
8019
8209
|
export interface Feed$ToolsItemSelectedEventParameters {
|
|
8020
8210
|
/**
|
|
8021
8211
|
* The Id of the selected item
|
|
@@ -8028,6 +8218,9 @@ declare module "sap/ui/ux3/Feed" {
|
|
|
8028
8218
|
item?: MenuItemBase;
|
|
8029
8219
|
}
|
|
8030
8220
|
|
|
8221
|
+
/**
|
|
8222
|
+
* Event object of the Feed#toolsItemSelected event.
|
|
8223
|
+
*/
|
|
8031
8224
|
export type Feed$ToolsItemSelectedEvent = Event<
|
|
8032
8225
|
Feed$ToolsItemSelectedEventParameters,
|
|
8033
8226
|
Feed
|
|
@@ -9491,7 +9684,14 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9491
9684
|
*/
|
|
9492
9685
|
unbindComments(): this;
|
|
9493
9686
|
}
|
|
9494
|
-
|
|
9687
|
+
/**
|
|
9688
|
+
* Describes the settings that can be provided to the FeedChunk constructor.
|
|
9689
|
+
*
|
|
9690
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.FeedListItem` control.
|
|
9691
|
+
* @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
|
|
9692
|
+
* are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
|
|
9693
|
+
* Feed model topic is still open.
|
|
9694
|
+
*/
|
|
9495
9695
|
export interface $FeedChunkSettings extends $ControlSettings {
|
|
9496
9696
|
/**
|
|
9497
9697
|
* URL to the thumbnail image.
|
|
@@ -9643,6 +9843,9 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9643
9843
|
actionItemSelected?: (oEvent: FeedChunk$ActionItemSelectedEvent) => void;
|
|
9644
9844
|
}
|
|
9645
9845
|
|
|
9846
|
+
/**
|
|
9847
|
+
* Parameters of the FeedChunk#actionItemSelected event.
|
|
9848
|
+
*/
|
|
9646
9849
|
export interface FeedChunk$ActionItemSelectedEventParameters {
|
|
9647
9850
|
/**
|
|
9648
9851
|
* The Id of the selected item
|
|
@@ -9655,11 +9858,17 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9655
9858
|
item?: MenuItemBase;
|
|
9656
9859
|
}
|
|
9657
9860
|
|
|
9861
|
+
/**
|
|
9862
|
+
* Event object of the FeedChunk#actionItemSelected event.
|
|
9863
|
+
*/
|
|
9658
9864
|
export type FeedChunk$ActionItemSelectedEvent = Event<
|
|
9659
9865
|
FeedChunk$ActionItemSelectedEventParameters,
|
|
9660
9866
|
FeedChunk
|
|
9661
9867
|
>;
|
|
9662
9868
|
|
|
9869
|
+
/**
|
|
9870
|
+
* Parameters of the FeedChunk#commentAdded event.
|
|
9871
|
+
*/
|
|
9663
9872
|
export interface FeedChunk$CommentAddedEventParameters {
|
|
9664
9873
|
/**
|
|
9665
9874
|
* New comment chunk
|
|
@@ -9667,25 +9876,43 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9667
9876
|
comment?: FeedChunk;
|
|
9668
9877
|
}
|
|
9669
9878
|
|
|
9879
|
+
/**
|
|
9880
|
+
* Event object of the FeedChunk#commentAdded event.
|
|
9881
|
+
*/
|
|
9670
9882
|
export type FeedChunk$CommentAddedEvent = Event<
|
|
9671
9883
|
FeedChunk$CommentAddedEventParameters,
|
|
9672
9884
|
FeedChunk
|
|
9673
9885
|
>;
|
|
9674
9886
|
|
|
9887
|
+
/**
|
|
9888
|
+
* Parameters of the FeedChunk#deleted event.
|
|
9889
|
+
*/
|
|
9675
9890
|
export interface FeedChunk$DeletedEventParameters {}
|
|
9676
9891
|
|
|
9892
|
+
/**
|
|
9893
|
+
* Event object of the FeedChunk#deleted event.
|
|
9894
|
+
*/
|
|
9677
9895
|
export type FeedChunk$DeletedEvent = Event<
|
|
9678
9896
|
FeedChunk$DeletedEventParameters,
|
|
9679
9897
|
FeedChunk
|
|
9680
9898
|
>;
|
|
9681
9899
|
|
|
9900
|
+
/**
|
|
9901
|
+
* Parameters of the FeedChunk#inspect event.
|
|
9902
|
+
*/
|
|
9682
9903
|
export interface FeedChunk$InspectEventParameters {}
|
|
9683
9904
|
|
|
9905
|
+
/**
|
|
9906
|
+
* Event object of the FeedChunk#inspect event.
|
|
9907
|
+
*/
|
|
9684
9908
|
export type FeedChunk$InspectEvent = Event<
|
|
9685
9909
|
FeedChunk$InspectEventParameters,
|
|
9686
9910
|
FeedChunk
|
|
9687
9911
|
>;
|
|
9688
9912
|
|
|
9913
|
+
/**
|
|
9914
|
+
* Parameters of the FeedChunk#referenceClicked event.
|
|
9915
|
+
*/
|
|
9689
9916
|
export interface FeedChunk$ReferenceClickedEventParameters {
|
|
9690
9917
|
/**
|
|
9691
9918
|
* Text of the @-reference
|
|
@@ -9693,18 +9920,30 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9693
9920
|
text?: string;
|
|
9694
9921
|
}
|
|
9695
9922
|
|
|
9923
|
+
/**
|
|
9924
|
+
* Event object of the FeedChunk#referenceClicked event.
|
|
9925
|
+
*/
|
|
9696
9926
|
export type FeedChunk$ReferenceClickedEvent = Event<
|
|
9697
9927
|
FeedChunk$ReferenceClickedEventParameters,
|
|
9698
9928
|
FeedChunk
|
|
9699
9929
|
>;
|
|
9700
9930
|
|
|
9931
|
+
/**
|
|
9932
|
+
* Parameters of the FeedChunk#senderClicked event.
|
|
9933
|
+
*/
|
|
9701
9934
|
export interface FeedChunk$SenderClickedEventParameters {}
|
|
9702
9935
|
|
|
9936
|
+
/**
|
|
9937
|
+
* Event object of the FeedChunk#senderClicked event.
|
|
9938
|
+
*/
|
|
9703
9939
|
export type FeedChunk$SenderClickedEvent = Event<
|
|
9704
9940
|
FeedChunk$SenderClickedEventParameters,
|
|
9705
9941
|
FeedChunk
|
|
9706
9942
|
>;
|
|
9707
9943
|
|
|
9944
|
+
/**
|
|
9945
|
+
* Parameters of the FeedChunk#toggleFavorite event.
|
|
9946
|
+
*/
|
|
9708
9947
|
export interface FeedChunk$ToggleFavoriteEventParameters {
|
|
9709
9948
|
/**
|
|
9710
9949
|
* Current favorite state
|
|
@@ -9712,11 +9951,17 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9712
9951
|
favorite?: boolean;
|
|
9713
9952
|
}
|
|
9714
9953
|
|
|
9954
|
+
/**
|
|
9955
|
+
* Event object of the FeedChunk#toggleFavorite event.
|
|
9956
|
+
*/
|
|
9715
9957
|
export type FeedChunk$ToggleFavoriteEvent = Event<
|
|
9716
9958
|
FeedChunk$ToggleFavoriteEventParameters,
|
|
9717
9959
|
FeedChunk
|
|
9718
9960
|
>;
|
|
9719
9961
|
|
|
9962
|
+
/**
|
|
9963
|
+
* Parameters of the FeedChunk#toggleFlagged event.
|
|
9964
|
+
*/
|
|
9720
9965
|
export interface FeedChunk$ToggleFlaggedEventParameters {
|
|
9721
9966
|
/**
|
|
9722
9967
|
* Current flagged state
|
|
@@ -9724,11 +9969,17 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9724
9969
|
flagged?: boolean;
|
|
9725
9970
|
}
|
|
9726
9971
|
|
|
9972
|
+
/**
|
|
9973
|
+
* Event object of the FeedChunk#toggleFlagged event.
|
|
9974
|
+
*/
|
|
9727
9975
|
export type FeedChunk$ToggleFlaggedEvent = Event<
|
|
9728
9976
|
FeedChunk$ToggleFlaggedEventParameters,
|
|
9729
9977
|
FeedChunk
|
|
9730
9978
|
>;
|
|
9731
9979
|
|
|
9980
|
+
/**
|
|
9981
|
+
* Parameters of the FeedChunk#toggleShared event.
|
|
9982
|
+
*/
|
|
9732
9983
|
export interface FeedChunk$ToggleSharedEventParameters {
|
|
9733
9984
|
/**
|
|
9734
9985
|
* Current shared state
|
|
@@ -9736,6 +9987,9 @@ declare module "sap/ui/ux3/FeedChunk" {
|
|
|
9736
9987
|
shareed?: boolean;
|
|
9737
9988
|
}
|
|
9738
9989
|
|
|
9990
|
+
/**
|
|
9991
|
+
* Event object of the FeedChunk#toggleShared event.
|
|
9992
|
+
*/
|
|
9739
9993
|
export type FeedChunk$ToggleSharedEvent = Event<
|
|
9740
9994
|
FeedChunk$ToggleSharedEventParameters,
|
|
9741
9995
|
FeedChunk
|
|
@@ -10015,7 +10269,14 @@ declare module "sap/ui/ux3/Feeder" {
|
|
|
10015
10269
|
sType?: FeederType | keyof typeof FeederType
|
|
10016
10270
|
): this;
|
|
10017
10271
|
}
|
|
10018
|
-
|
|
10272
|
+
/**
|
|
10273
|
+
* Describes the settings that can be provided to the Feeder constructor.
|
|
10274
|
+
*
|
|
10275
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.FeedInput` control.
|
|
10276
|
+
* @experimental (since 1.2) - The whole Feed/Feeder API is still under discussion, significant changes
|
|
10277
|
+
* are likely. Especially text presentation (e.g. @-references and formatted text) is not final. Also the
|
|
10278
|
+
* Feed model topic is still open.
|
|
10279
|
+
*/
|
|
10019
10280
|
export interface $FeederSettings extends $ControlSettings {
|
|
10020
10281
|
/**
|
|
10021
10282
|
* URL to the thumb nail image This property is optional if the feeder is a sub-control of a feed or a feedChunk
|
|
@@ -10048,6 +10309,9 @@ declare module "sap/ui/ux3/Feeder" {
|
|
|
10048
10309
|
submit?: (oEvent: Feeder$SubmitEvent) => void;
|
|
10049
10310
|
}
|
|
10050
10311
|
|
|
10312
|
+
/**
|
|
10313
|
+
* Parameters of the Feeder#submit event.
|
|
10314
|
+
*/
|
|
10051
10315
|
export interface Feeder$SubmitEventParameters {
|
|
10052
10316
|
/**
|
|
10053
10317
|
* The text that is submitted
|
|
@@ -10055,6 +10319,9 @@ declare module "sap/ui/ux3/Feeder" {
|
|
|
10055
10319
|
text?: string;
|
|
10056
10320
|
}
|
|
10057
10321
|
|
|
10322
|
+
/**
|
|
10323
|
+
* Event object of the Feeder#submit event.
|
|
10324
|
+
*/
|
|
10058
10325
|
export type Feeder$SubmitEvent = Event<Feeder$SubmitEventParameters, Feeder>;
|
|
10059
10326
|
}
|
|
10060
10327
|
|
|
@@ -10435,7 +10702,12 @@ declare module "sap/ui/ux3/NavigationBar" {
|
|
|
10435
10702
|
bToplevelVariant?: boolean
|
|
10436
10703
|
): this;
|
|
10437
10704
|
}
|
|
10438
|
-
|
|
10705
|
+
/**
|
|
10706
|
+
* Describes the settings that can be provided to the NavigationBar constructor.
|
|
10707
|
+
*
|
|
10708
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.IconTabBar`, `sap.m.TabContainer` or `sap.uxap.ObjectPageLayout`
|
|
10709
|
+
* control.
|
|
10710
|
+
*/
|
|
10439
10711
|
export interface $NavigationBarSettings extends $ControlSettings {
|
|
10440
10712
|
/**
|
|
10441
10713
|
* Defines whether the navigation bar shall have top-level appearance
|
|
@@ -10477,6 +10749,9 @@ declare module "sap/ui/ux3/NavigationBar" {
|
|
|
10477
10749
|
select?: (oEvent: NavigationBar$SelectEvent) => void;
|
|
10478
10750
|
}
|
|
10479
10751
|
|
|
10752
|
+
/**
|
|
10753
|
+
* Parameters of the NavigationBar#select event.
|
|
10754
|
+
*/
|
|
10480
10755
|
export interface NavigationBar$SelectEventParameters {
|
|
10481
10756
|
/**
|
|
10482
10757
|
* The ID of the newly selected NavigationItem.
|
|
@@ -10489,6 +10764,9 @@ declare module "sap/ui/ux3/NavigationBar" {
|
|
|
10489
10764
|
item?: NavigationItem;
|
|
10490
10765
|
}
|
|
10491
10766
|
|
|
10767
|
+
/**
|
|
10768
|
+
* Event object of the NavigationBar#select event.
|
|
10769
|
+
*/
|
|
10492
10770
|
export type NavigationBar$SelectEvent = Event<
|
|
10493
10771
|
NavigationBar$SelectEventParameters,
|
|
10494
10772
|
NavigationBar
|
|
@@ -10724,7 +11002,12 @@ declare module "sap/ui/ux3/NavigationItem" {
|
|
|
10724
11002
|
bVisible?: boolean
|
|
10725
11003
|
): this;
|
|
10726
11004
|
}
|
|
10727
|
-
|
|
11005
|
+
/**
|
|
11006
|
+
* Describes the settings that can be provided to the NavigationItem constructor.
|
|
11007
|
+
*
|
|
11008
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.IconTabBar`, `sap.m.TabContainer` or `sap.uxap.ObjectPageLayout`
|
|
11009
|
+
* control.
|
|
11010
|
+
*/
|
|
10728
11011
|
export interface $NavigationItemSettings extends $ItemSettings {
|
|
10729
11012
|
/**
|
|
10730
11013
|
* Whether the NavigationItem is currently visible. When making NavigationItems invisible at runtime it
|
|
@@ -11202,7 +11485,11 @@ declare module "sap/ui/ux3/NotificationBar" {
|
|
|
11202
11485
|
| keyof typeof NotificationBarStatus
|
|
11203
11486
|
): this;
|
|
11204
11487
|
}
|
|
11205
|
-
|
|
11488
|
+
/**
|
|
11489
|
+
* Describes the settings that can be provided to the NotificationBar constructor.
|
|
11490
|
+
*
|
|
11491
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.MessagePopover` control.
|
|
11492
|
+
*/
|
|
11206
11493
|
export interface $NotificationBarSettings extends $ControlSettings {
|
|
11207
11494
|
/**
|
|
11208
11495
|
* This property displays the bar corresponding to given status
|
|
@@ -11254,6 +11541,9 @@ declare module "sap/ui/ux3/NotificationBar" {
|
|
|
11254
11541
|
resize?: (oEvent: NotificationBar$ResizeEvent) => void;
|
|
11255
11542
|
}
|
|
11256
11543
|
|
|
11544
|
+
/**
|
|
11545
|
+
* Parameters of the NotificationBar#display event.
|
|
11546
|
+
*/
|
|
11257
11547
|
export interface NotificationBar$DisplayEventParameters {
|
|
11258
11548
|
/**
|
|
11259
11549
|
* Indicates if the bar wants to be shown or hidden
|
|
@@ -11261,11 +11551,17 @@ declare module "sap/ui/ux3/NotificationBar" {
|
|
|
11261
11551
|
show?: boolean;
|
|
11262
11552
|
}
|
|
11263
11553
|
|
|
11554
|
+
/**
|
|
11555
|
+
* Event object of the NotificationBar#display event.
|
|
11556
|
+
*/
|
|
11264
11557
|
export type NotificationBar$DisplayEvent = Event<
|
|
11265
11558
|
NotificationBar$DisplayEventParameters,
|
|
11266
11559
|
NotificationBar
|
|
11267
11560
|
>;
|
|
11268
11561
|
|
|
11562
|
+
/**
|
|
11563
|
+
* Parameters of the NotificationBar#resize event.
|
|
11564
|
+
*/
|
|
11269
11565
|
export interface NotificationBar$ResizeEventParameters {
|
|
11270
11566
|
/**
|
|
11271
11567
|
* The corresponding status to which the bar was resized. The corresponding heights can be taken for the
|
|
@@ -11274,6 +11570,9 @@ declare module "sap/ui/ux3/NotificationBar" {
|
|
|
11274
11570
|
status?: NotificationBarStatus | keyof typeof NotificationBarStatus;
|
|
11275
11571
|
}
|
|
11276
11572
|
|
|
11573
|
+
/**
|
|
11574
|
+
* Event object of the NotificationBar#resize event.
|
|
11575
|
+
*/
|
|
11277
11576
|
export type NotificationBar$ResizeEvent = Event<
|
|
11278
11577
|
NotificationBar$ResizeEventParameters,
|
|
11279
11578
|
NotificationBar
|
|
@@ -11577,7 +11876,11 @@ declare module "sap/ui/ux3/Notifier" {
|
|
|
11577
11876
|
sTitle?: string
|
|
11578
11877
|
): this;
|
|
11579
11878
|
}
|
|
11580
|
-
|
|
11879
|
+
/**
|
|
11880
|
+
* Describes the settings that can be provided to the Notifier constructor.
|
|
11881
|
+
*
|
|
11882
|
+
* @deprecated (since 1.38)
|
|
11883
|
+
*/
|
|
11581
11884
|
export interface $NotifierSettings extends $ElementSettings {
|
|
11582
11885
|
/**
|
|
11583
11886
|
* Icon of the control that should be displayed within the corresponding bar
|
|
@@ -11600,6 +11903,9 @@ declare module "sap/ui/ux3/Notifier" {
|
|
|
11600
11903
|
messageSelected?: (oEvent: Notifier$MessageSelectedEvent) => void;
|
|
11601
11904
|
}
|
|
11602
11905
|
|
|
11906
|
+
/**
|
|
11907
|
+
* Parameters of the Notifier#messageSelected event.
|
|
11908
|
+
*/
|
|
11603
11909
|
export interface Notifier$MessageSelectedEventParameters {
|
|
11604
11910
|
/**
|
|
11605
11911
|
* The message that was selected
|
|
@@ -11612,6 +11918,9 @@ declare module "sap/ui/ux3/Notifier" {
|
|
|
11612
11918
|
notifier?: Notifier;
|
|
11613
11919
|
}
|
|
11614
11920
|
|
|
11921
|
+
/**
|
|
11922
|
+
* Event object of the Notifier#messageSelected event.
|
|
11923
|
+
*/
|
|
11615
11924
|
export type Notifier$MessageSelectedEvent = Event<
|
|
11616
11925
|
Notifier$MessageSelectedEventParameters,
|
|
11617
11926
|
Notifier
|
|
@@ -11632,7 +11941,7 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
11632
11941
|
/**
|
|
11633
11942
|
* Overlay Control
|
|
11634
11943
|
*
|
|
11635
|
-
* @deprecated (since 1.38)
|
|
11944
|
+
* @deprecated (since 1.38) - the concept has been discarded.
|
|
11636
11945
|
*/
|
|
11637
11946
|
export default class Overlay extends Control implements PopupInterface {
|
|
11638
11947
|
__implements__sap_ui_core_PopupInterface: boolean;
|
|
@@ -12092,7 +12401,11 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
12092
12401
|
bOpenButtonVisible?: boolean
|
|
12093
12402
|
): this;
|
|
12094
12403
|
}
|
|
12095
|
-
|
|
12404
|
+
/**
|
|
12405
|
+
* Describes the settings that can be provided to the Overlay constructor.
|
|
12406
|
+
*
|
|
12407
|
+
* @deprecated (since 1.38) - the concept has been discarded.
|
|
12408
|
+
*/
|
|
12096
12409
|
export interface $OverlaySettings extends $ControlSettings {
|
|
12097
12410
|
/**
|
|
12098
12411
|
* Defines whether the 'Open' button shall be visible.
|
|
@@ -12125,6 +12438,9 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
12125
12438
|
open?: (oEvent: Overlay$OpenEvent) => void;
|
|
12126
12439
|
}
|
|
12127
12440
|
|
|
12441
|
+
/**
|
|
12442
|
+
* Parameters of the Overlay#close event.
|
|
12443
|
+
*/
|
|
12128
12444
|
export interface Overlay$CloseEventParameters {
|
|
12129
12445
|
/**
|
|
12130
12446
|
* The ID of the Overlay instance.
|
|
@@ -12132,8 +12448,14 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
12132
12448
|
id?: string;
|
|
12133
12449
|
}
|
|
12134
12450
|
|
|
12451
|
+
/**
|
|
12452
|
+
* Event object of the Overlay#close event.
|
|
12453
|
+
*/
|
|
12135
12454
|
export type Overlay$CloseEvent = Event<Overlay$CloseEventParameters, Overlay>;
|
|
12136
12455
|
|
|
12456
|
+
/**
|
|
12457
|
+
* Parameters of the Overlay#closed event.
|
|
12458
|
+
*/
|
|
12137
12459
|
export interface Overlay$ClosedEventParameters {
|
|
12138
12460
|
/**
|
|
12139
12461
|
* The ID of the Overlay instance.
|
|
@@ -12141,11 +12463,17 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
12141
12463
|
id?: string;
|
|
12142
12464
|
}
|
|
12143
12465
|
|
|
12466
|
+
/**
|
|
12467
|
+
* Event object of the Overlay#closed event.
|
|
12468
|
+
*/
|
|
12144
12469
|
export type Overlay$ClosedEvent = Event<
|
|
12145
12470
|
Overlay$ClosedEventParameters,
|
|
12146
12471
|
Overlay
|
|
12147
12472
|
>;
|
|
12148
12473
|
|
|
12474
|
+
/**
|
|
12475
|
+
* Parameters of the Overlay#open event.
|
|
12476
|
+
*/
|
|
12149
12477
|
export interface Overlay$OpenEventParameters {
|
|
12150
12478
|
/**
|
|
12151
12479
|
* The ID of the Overlay instance
|
|
@@ -12153,8 +12481,14 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
12153
12481
|
id?: string;
|
|
12154
12482
|
}
|
|
12155
12483
|
|
|
12484
|
+
/**
|
|
12485
|
+
* Event object of the Overlay#open event.
|
|
12486
|
+
*/
|
|
12156
12487
|
export type Overlay$OpenEvent = Event<Overlay$OpenEventParameters, Overlay>;
|
|
12157
12488
|
|
|
12489
|
+
/**
|
|
12490
|
+
* Parameters of the Overlay#openNew event.
|
|
12491
|
+
*/
|
|
12158
12492
|
export interface Overlay$OpenNewEventParameters {
|
|
12159
12493
|
/**
|
|
12160
12494
|
* The ID of the Overlay instance.
|
|
@@ -12162,6 +12496,9 @@ declare module "sap/ui/ux3/Overlay" {
|
|
|
12162
12496
|
id?: string;
|
|
12163
12497
|
}
|
|
12164
12498
|
|
|
12499
|
+
/**
|
|
12500
|
+
* Event object of the Overlay#openNew event.
|
|
12501
|
+
*/
|
|
12165
12502
|
export type Overlay$OpenNewEvent = Event<
|
|
12166
12503
|
Overlay$OpenNewEventParameters,
|
|
12167
12504
|
Overlay
|
|
@@ -12180,7 +12517,7 @@ declare module "sap/ui/ux3/OverlayContainer" {
|
|
|
12180
12517
|
/**
|
|
12181
12518
|
* Is to be embedded into the Overlay control as content container
|
|
12182
12519
|
*
|
|
12183
|
-
* @deprecated (since 1.38)
|
|
12520
|
+
* @deprecated (since 1.38) - the concept has been discarded.
|
|
12184
12521
|
*/
|
|
12185
12522
|
export default class OverlayContainer extends Overlay {
|
|
12186
12523
|
/**
|
|
@@ -12323,7 +12660,11 @@ declare module "sap/ui/ux3/OverlayContainer" {
|
|
|
12323
12660
|
vContent: int | string | Control
|
|
12324
12661
|
): Control | null;
|
|
12325
12662
|
}
|
|
12326
|
-
|
|
12663
|
+
/**
|
|
12664
|
+
* Describes the settings that can be provided to the OverlayContainer constructor.
|
|
12665
|
+
*
|
|
12666
|
+
* @deprecated (since 1.38) - the concept has been discarded.
|
|
12667
|
+
*/
|
|
12327
12668
|
export interface $OverlayContainerSettings extends $OverlaySettings {
|
|
12328
12669
|
/**
|
|
12329
12670
|
* Aggregation for content
|
|
@@ -12350,7 +12691,7 @@ declare module "sap/ui/ux3/OverlayDialog" {
|
|
|
12350
12691
|
* Dialog implementation based on the Overlay. If used in a Shell it leaves the Tool-Palette, Pane-Bar and
|
|
12351
12692
|
* Header-Items accessible.
|
|
12352
12693
|
*
|
|
12353
|
-
* @deprecated (since 1.38)
|
|
12694
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.Dialog}
|
|
12354
12695
|
*/
|
|
12355
12696
|
export default class OverlayDialog extends Overlay {
|
|
12356
12697
|
/**
|
|
@@ -12532,7 +12873,11 @@ declare module "sap/ui/ux3/OverlayDialog" {
|
|
|
12532
12873
|
*/
|
|
12533
12874
|
setWidth(sWidth: CSSSize): void;
|
|
12534
12875
|
}
|
|
12535
|
-
|
|
12876
|
+
/**
|
|
12877
|
+
* Describes the settings that can be provided to the OverlayDialog constructor.
|
|
12878
|
+
*
|
|
12879
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.Dialog}
|
|
12880
|
+
*/
|
|
12536
12881
|
export interface $OverlayDialogSettings extends $OverlaySettings {
|
|
12537
12882
|
/**
|
|
12538
12883
|
* Determines the width of the Overlay Dialog. If the width is set to "auto" it is always 50% of the overlay
|
|
@@ -13485,7 +13830,11 @@ declare module "sap/ui/ux3/QuickView" {
|
|
|
13485
13830
|
sWidth?: CSSSize
|
|
13486
13831
|
): this;
|
|
13487
13832
|
}
|
|
13488
|
-
|
|
13833
|
+
/**
|
|
13834
|
+
* Describes the settings that can be provided to the QuickView constructor.
|
|
13835
|
+
*
|
|
13836
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.QuickView` control.
|
|
13837
|
+
*/
|
|
13489
13838
|
export interface $QuickViewSettings extends $CalloutBaseSettings {
|
|
13490
13839
|
/**
|
|
13491
13840
|
* Thing type (mandatory) like Account, Material, Employee etc. is displayed in a header at the top part
|
|
@@ -13608,6 +13957,9 @@ declare module "sap/ui/ux3/QuickView" {
|
|
|
13608
13957
|
navigate?: (oEvent: QuickView$NavigateEvent) => void;
|
|
13609
13958
|
}
|
|
13610
13959
|
|
|
13960
|
+
/**
|
|
13961
|
+
* Parameters of the QuickView#actionSelected event.
|
|
13962
|
+
*/
|
|
13611
13963
|
export interface QuickView$ActionSelectedEventParameters {
|
|
13612
13964
|
/**
|
|
13613
13965
|
* Id of selected ThingAction
|
|
@@ -13626,11 +13978,17 @@ declare module "sap/ui/ux3/QuickView" {
|
|
|
13626
13978
|
newState?: string;
|
|
13627
13979
|
}
|
|
13628
13980
|
|
|
13981
|
+
/**
|
|
13982
|
+
* Event object of the QuickView#actionSelected event.
|
|
13983
|
+
*/
|
|
13629
13984
|
export type QuickView$ActionSelectedEvent = Event<
|
|
13630
13985
|
QuickView$ActionSelectedEventParameters,
|
|
13631
13986
|
QuickView
|
|
13632
13987
|
>;
|
|
13633
13988
|
|
|
13989
|
+
/**
|
|
13990
|
+
* Parameters of the QuickView#feedSubmit event.
|
|
13991
|
+
*/
|
|
13634
13992
|
export interface QuickView$FeedSubmitEventParameters {
|
|
13635
13993
|
/**
|
|
13636
13994
|
* Feed text
|
|
@@ -13638,11 +13996,17 @@ declare module "sap/ui/ux3/QuickView" {
|
|
|
13638
13996
|
text?: string;
|
|
13639
13997
|
}
|
|
13640
13998
|
|
|
13999
|
+
/**
|
|
14000
|
+
* Event object of the QuickView#feedSubmit event.
|
|
14001
|
+
*/
|
|
13641
14002
|
export type QuickView$FeedSubmitEvent = Event<
|
|
13642
14003
|
QuickView$FeedSubmitEventParameters,
|
|
13643
14004
|
QuickView
|
|
13644
14005
|
>;
|
|
13645
14006
|
|
|
14007
|
+
/**
|
|
14008
|
+
* Parameters of the QuickView#navigate event.
|
|
14009
|
+
*/
|
|
13646
14010
|
export interface QuickView$NavigateEventParameters {
|
|
13647
14011
|
/**
|
|
13648
14012
|
* URI of the Thing Inspector application.
|
|
@@ -13650,6 +14014,9 @@ declare module "sap/ui/ux3/QuickView" {
|
|
|
13650
14014
|
href?: string;
|
|
13651
14015
|
}
|
|
13652
14016
|
|
|
14017
|
+
/**
|
|
14018
|
+
* Event object of the QuickView#navigate event.
|
|
14019
|
+
*/
|
|
13653
14020
|
export type QuickView$NavigateEvent = Event<
|
|
13654
14021
|
QuickView$NavigateEventParameters,
|
|
13655
14022
|
QuickView
|
|
@@ -15342,7 +15709,11 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
15342
15709
|
bShowTools?: boolean
|
|
15343
15710
|
): this;
|
|
15344
15711
|
}
|
|
15345
|
-
|
|
15712
|
+
/**
|
|
15713
|
+
* Describes the settings that can be provided to the Shell constructor.
|
|
15714
|
+
*
|
|
15715
|
+
* @deprecated (since 1.38) - replaced by {@link sap.m.Shell}
|
|
15716
|
+
*/
|
|
15346
15717
|
export interface $ShellSettings extends $ControlSettings {
|
|
15347
15718
|
/**
|
|
15348
15719
|
* The application title to appear in the left part of the header, usually a company and/or product name.
|
|
@@ -15548,17 +15919,32 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
15548
15919
|
paneClosed?: (oEvent: Shell$PaneClosedEvent) => void;
|
|
15549
15920
|
}
|
|
15550
15921
|
|
|
15922
|
+
/**
|
|
15923
|
+
* Parameters of the Shell#feedSubmit event.
|
|
15924
|
+
*/
|
|
15551
15925
|
export interface Shell$FeedSubmitEventParameters {}
|
|
15552
15926
|
|
|
15927
|
+
/**
|
|
15928
|
+
* Event object of the Shell#feedSubmit event.
|
|
15929
|
+
*/
|
|
15553
15930
|
export type Shell$FeedSubmitEvent = Event<
|
|
15554
15931
|
Shell$FeedSubmitEventParameters,
|
|
15555
15932
|
Shell
|
|
15556
15933
|
>;
|
|
15557
15934
|
|
|
15935
|
+
/**
|
|
15936
|
+
* Parameters of the Shell#logout event.
|
|
15937
|
+
*/
|
|
15558
15938
|
export interface Shell$LogoutEventParameters {}
|
|
15559
15939
|
|
|
15940
|
+
/**
|
|
15941
|
+
* Event object of the Shell#logout event.
|
|
15942
|
+
*/
|
|
15560
15943
|
export type Shell$LogoutEvent = Event<Shell$LogoutEventParameters, Shell>;
|
|
15561
15944
|
|
|
15945
|
+
/**
|
|
15946
|
+
* Parameters of the Shell#paneBarItemSelected event.
|
|
15947
|
+
*/
|
|
15562
15948
|
export interface Shell$PaneBarItemSelectedEventParameters {
|
|
15563
15949
|
/**
|
|
15564
15950
|
* The ID of the selected PaneBarItem.
|
|
@@ -15576,11 +15962,17 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
15576
15962
|
key?: string;
|
|
15577
15963
|
}
|
|
15578
15964
|
|
|
15965
|
+
/**
|
|
15966
|
+
* Event object of the Shell#paneBarItemSelected event.
|
|
15967
|
+
*/
|
|
15579
15968
|
export type Shell$PaneBarItemSelectedEvent = Event<
|
|
15580
15969
|
Shell$PaneBarItemSelectedEventParameters,
|
|
15581
15970
|
Shell
|
|
15582
15971
|
>;
|
|
15583
15972
|
|
|
15973
|
+
/**
|
|
15974
|
+
* Parameters of the Shell#paneClosed event.
|
|
15975
|
+
*/
|
|
15584
15976
|
export interface Shell$PaneClosedEventParameters {
|
|
15585
15977
|
/**
|
|
15586
15978
|
* The id of the PaneBarItem to which the closed pane belonged.
|
|
@@ -15588,15 +15980,27 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
15588
15980
|
id?: string;
|
|
15589
15981
|
}
|
|
15590
15982
|
|
|
15983
|
+
/**
|
|
15984
|
+
* Event object of the Shell#paneClosed event.
|
|
15985
|
+
*/
|
|
15591
15986
|
export type Shell$PaneClosedEvent = Event<
|
|
15592
15987
|
Shell$PaneClosedEventParameters,
|
|
15593
15988
|
Shell
|
|
15594
15989
|
>;
|
|
15595
15990
|
|
|
15991
|
+
/**
|
|
15992
|
+
* Parameters of the Shell#search event.
|
|
15993
|
+
*/
|
|
15596
15994
|
export interface Shell$SearchEventParameters {}
|
|
15597
15995
|
|
|
15996
|
+
/**
|
|
15997
|
+
* Event object of the Shell#search event.
|
|
15998
|
+
*/
|
|
15598
15999
|
export type Shell$SearchEvent = Event<Shell$SearchEventParameters, Shell>;
|
|
15599
16000
|
|
|
16001
|
+
/**
|
|
16002
|
+
* Parameters of the Shell#worksetItemSelected event.
|
|
16003
|
+
*/
|
|
15600
16004
|
export interface Shell$WorksetItemSelectedEventParameters {
|
|
15601
16005
|
/**
|
|
15602
16006
|
* The id of the workset item that has been newly selected by the user. If a top-level item has been clicked
|
|
@@ -15615,6 +16019,9 @@ declare module "sap/ui/ux3/Shell" {
|
|
|
15615
16019
|
key?: string;
|
|
15616
16020
|
}
|
|
15617
16021
|
|
|
16022
|
+
/**
|
|
16023
|
+
* Event object of the Shell#worksetItemSelected event.
|
|
16024
|
+
*/
|
|
15618
16025
|
export type Shell$WorksetItemSelectedEvent = Event<
|
|
15619
16026
|
Shell$WorksetItemSelectedEventParameters,
|
|
15620
16027
|
Shell
|
|
@@ -15831,7 +16238,11 @@ declare module "sap/ui/ux3/ThingAction" {
|
|
|
15831
16238
|
sText?: string
|
|
15832
16239
|
): this;
|
|
15833
16240
|
}
|
|
15834
|
-
|
|
16241
|
+
/**
|
|
16242
|
+
* Describes the settings that can be provided to the ThingAction constructor.
|
|
16243
|
+
*
|
|
16244
|
+
* @deprecated (since 1.38)
|
|
16245
|
+
*/
|
|
15835
16246
|
export interface $ThingActionSettings extends $ElementSettings {
|
|
15836
16247
|
/**
|
|
15837
16248
|
* text of action
|
|
@@ -15849,6 +16260,9 @@ declare module "sap/ui/ux3/ThingAction" {
|
|
|
15849
16260
|
select?: (oEvent: ThingAction$SelectEvent) => void;
|
|
15850
16261
|
}
|
|
15851
16262
|
|
|
16263
|
+
/**
|
|
16264
|
+
* Parameters of the ThingAction#select event.
|
|
16265
|
+
*/
|
|
15852
16266
|
export interface ThingAction$SelectEventParameters {
|
|
15853
16267
|
/**
|
|
15854
16268
|
* Id of selected action
|
|
@@ -15861,6 +16275,9 @@ declare module "sap/ui/ux3/ThingAction" {
|
|
|
15861
16275
|
action?: ThingAction;
|
|
15862
16276
|
}
|
|
15863
16277
|
|
|
16278
|
+
/**
|
|
16279
|
+
* Event object of the ThingAction#select event.
|
|
16280
|
+
*/
|
|
15864
16281
|
export type ThingAction$SelectEvent = Event<
|
|
15865
16282
|
ThingAction$SelectEventParameters,
|
|
15866
16283
|
ThingAction
|
|
@@ -16156,7 +16573,11 @@ declare module "sap/ui/ux3/ThingGroup" {
|
|
|
16156
16573
|
sTitle?: string
|
|
16157
16574
|
): this;
|
|
16158
16575
|
}
|
|
16159
|
-
|
|
16576
|
+
/**
|
|
16577
|
+
* Describes the settings that can be provided to the ThingGroup constructor.
|
|
16578
|
+
*
|
|
16579
|
+
* @deprecated (since 1.38)
|
|
16580
|
+
*/
|
|
16160
16581
|
export interface $ThingGroupSettings extends $ElementSettings {
|
|
16161
16582
|
/**
|
|
16162
16583
|
* Title of Group
|
|
@@ -17209,7 +17630,11 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
17209
17630
|
bUpdateActionEnabled?: boolean
|
|
17210
17631
|
): this;
|
|
17211
17632
|
}
|
|
17212
|
-
|
|
17633
|
+
/**
|
|
17634
|
+
* Describes the settings that can be provided to the ThingInspector constructor.
|
|
17635
|
+
*
|
|
17636
|
+
* @deprecated (since 1.38) - There is not an exact replacement.
|
|
17637
|
+
*/
|
|
17213
17638
|
export interface $ThingInspectorSettings extends $OverlaySettings {
|
|
17214
17639
|
/**
|
|
17215
17640
|
* First Line of the Thing Inspector Title
|
|
@@ -17342,6 +17767,9 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
17342
17767
|
feedSubmit?: (oEvent: ThingInspector$FeedSubmitEvent) => void;
|
|
17343
17768
|
}
|
|
17344
17769
|
|
|
17770
|
+
/**
|
|
17771
|
+
* Parameters of the ThingInspector#actionSelected event.
|
|
17772
|
+
*/
|
|
17345
17773
|
export interface ThingInspector$ActionSelectedEventParameters {
|
|
17346
17774
|
/**
|
|
17347
17775
|
* Id of selected ThingAction
|
|
@@ -17354,11 +17782,17 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
17354
17782
|
action?: ThingAction;
|
|
17355
17783
|
}
|
|
17356
17784
|
|
|
17785
|
+
/**
|
|
17786
|
+
* Event object of the ThingInspector#actionSelected event.
|
|
17787
|
+
*/
|
|
17357
17788
|
export type ThingInspector$ActionSelectedEvent = Event<
|
|
17358
17789
|
ThingInspector$ActionSelectedEventParameters,
|
|
17359
17790
|
ThingInspector
|
|
17360
17791
|
>;
|
|
17361
17792
|
|
|
17793
|
+
/**
|
|
17794
|
+
* Parameters of the ThingInspector#facetSelected event.
|
|
17795
|
+
*/
|
|
17362
17796
|
export interface ThingInspector$FacetSelectedEventParameters {
|
|
17363
17797
|
/**
|
|
17364
17798
|
* Id of selected NavigationItem
|
|
@@ -17376,11 +17810,17 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
17376
17810
|
key?: string;
|
|
17377
17811
|
}
|
|
17378
17812
|
|
|
17813
|
+
/**
|
|
17814
|
+
* Event object of the ThingInspector#facetSelected event.
|
|
17815
|
+
*/
|
|
17379
17816
|
export type ThingInspector$FacetSelectedEvent = Event<
|
|
17380
17817
|
ThingInspector$FacetSelectedEventParameters,
|
|
17381
17818
|
ThingInspector
|
|
17382
17819
|
>;
|
|
17383
17820
|
|
|
17821
|
+
/**
|
|
17822
|
+
* Parameters of the ThingInspector#feedSubmit event.
|
|
17823
|
+
*/
|
|
17384
17824
|
export interface ThingInspector$FeedSubmitEventParameters {
|
|
17385
17825
|
/**
|
|
17386
17826
|
* Feed text
|
|
@@ -17388,6 +17828,9 @@ declare module "sap/ui/ux3/ThingInspector" {
|
|
|
17388
17828
|
text?: string;
|
|
17389
17829
|
}
|
|
17390
17830
|
|
|
17831
|
+
/**
|
|
17832
|
+
* Event object of the ThingInspector#feedSubmit event.
|
|
17833
|
+
*/
|
|
17391
17834
|
export type ThingInspector$FeedSubmitEvent = Event<
|
|
17392
17835
|
ThingInspector$FeedSubmitEventParameters,
|
|
17393
17836
|
ThingInspector
|
|
@@ -18035,7 +18478,11 @@ declare module "sap/ui/ux3/ThingViewer" {
|
|
|
18035
18478
|
sWidth?: CSSSize
|
|
18036
18479
|
): this;
|
|
18037
18480
|
}
|
|
18038
|
-
|
|
18481
|
+
/**
|
|
18482
|
+
* Describes the settings that can be provided to the ThingViewer constructor.
|
|
18483
|
+
*
|
|
18484
|
+
* @deprecated (since 1.38) - There is not an exact replacement.
|
|
18485
|
+
*/
|
|
18039
18486
|
export interface $ThingViewerSettings extends $ControlSettings {
|
|
18040
18487
|
/**
|
|
18041
18488
|
* Title of the Thing Inspector
|
|
@@ -18121,6 +18568,9 @@ declare module "sap/ui/ux3/ThingViewer" {
|
|
|
18121
18568
|
facetSelected?: (oEvent: ThingViewer$FacetSelectedEvent) => void;
|
|
18122
18569
|
}
|
|
18123
18570
|
|
|
18571
|
+
/**
|
|
18572
|
+
* Parameters of the ThingViewer#facetSelected event.
|
|
18573
|
+
*/
|
|
18124
18574
|
export interface ThingViewer$FacetSelectedEventParameters {
|
|
18125
18575
|
/**
|
|
18126
18576
|
* Id of selected NavigationItem
|
|
@@ -18138,6 +18588,9 @@ declare module "sap/ui/ux3/ThingViewer" {
|
|
|
18138
18588
|
key?: string;
|
|
18139
18589
|
}
|
|
18140
18590
|
|
|
18591
|
+
/**
|
|
18592
|
+
* Event object of the ThingViewer#facetSelected event.
|
|
18593
|
+
*/
|
|
18141
18594
|
export type ThingViewer$FacetSelectedEvent = Event<
|
|
18142
18595
|
ThingViewer$FacetSelectedEventParameters,
|
|
18143
18596
|
ThingViewer
|
|
@@ -19264,7 +19717,11 @@ declare module "sap/ui/ux3/ToolPopup" {
|
|
|
19264
19717
|
sTitle?: string
|
|
19265
19718
|
): this;
|
|
19266
19719
|
}
|
|
19267
|
-
|
|
19720
|
+
/**
|
|
19721
|
+
* Describes the settings that can be provided to the ToolPopup constructor.
|
|
19722
|
+
*
|
|
19723
|
+
* @deprecated (since 1.38) - Instead, use the `sap.m.Popover` control.
|
|
19724
|
+
*/
|
|
19268
19725
|
export interface $ToolPopupSettings extends $ControlSettings {
|
|
19269
19726
|
/**
|
|
19270
19727
|
* Determines the title displayed in the pop up window
|
|
@@ -19412,20 +19869,35 @@ declare module "sap/ui/ux3/ToolPopup" {
|
|
|
19412
19869
|
opened?: (oEvent: Event) => void;
|
|
19413
19870
|
}
|
|
19414
19871
|
|
|
19872
|
+
/**
|
|
19873
|
+
* Parameters of the ToolPopup#close event.
|
|
19874
|
+
*/
|
|
19415
19875
|
export interface ToolPopup$CloseEventParameters {}
|
|
19416
19876
|
|
|
19877
|
+
/**
|
|
19878
|
+
* Event object of the ToolPopup#close event.
|
|
19879
|
+
*/
|
|
19417
19880
|
export type ToolPopup$CloseEvent = Event<
|
|
19418
19881
|
ToolPopup$CloseEventParameters,
|
|
19419
19882
|
ToolPopup
|
|
19420
19883
|
>;
|
|
19421
19884
|
|
|
19885
|
+
/**
|
|
19886
|
+
* Parameters of the ToolPopup#closed event.
|
|
19887
|
+
*/
|
|
19422
19888
|
export interface ToolPopup$ClosedEventParameters {}
|
|
19423
19889
|
|
|
19890
|
+
/**
|
|
19891
|
+
* Event object of the ToolPopup#closed event.
|
|
19892
|
+
*/
|
|
19424
19893
|
export type ToolPopup$ClosedEvent = Event<
|
|
19425
19894
|
ToolPopup$ClosedEventParameters,
|
|
19426
19895
|
ToolPopup
|
|
19427
19896
|
>;
|
|
19428
19897
|
|
|
19898
|
+
/**
|
|
19899
|
+
* Parameters of the ToolPopup#enter event.
|
|
19900
|
+
*/
|
|
19429
19901
|
export interface ToolPopup$EnterEventParameters {
|
|
19430
19902
|
/**
|
|
19431
19903
|
* The onsapenter event, received by the pop up
|
|
@@ -19438,27 +19910,48 @@ declare module "sap/ui/ux3/ToolPopup" {
|
|
|
19438
19910
|
originalSrcControl?: Control;
|
|
19439
19911
|
}
|
|
19440
19912
|
|
|
19913
|
+
/**
|
|
19914
|
+
* Event object of the ToolPopup#enter event.
|
|
19915
|
+
*/
|
|
19441
19916
|
export type ToolPopup$EnterEvent = Event<
|
|
19442
19917
|
ToolPopup$EnterEventParameters,
|
|
19443
19918
|
ToolPopup
|
|
19444
19919
|
>;
|
|
19445
19920
|
|
|
19921
|
+
/**
|
|
19922
|
+
* Parameters of the ToolPopup#iconChanged event.
|
|
19923
|
+
*/
|
|
19446
19924
|
export interface ToolPopup$IconChangedEventParameters {}
|
|
19447
19925
|
|
|
19926
|
+
/**
|
|
19927
|
+
* Event object of the ToolPopup#iconChanged event.
|
|
19928
|
+
*/
|
|
19448
19929
|
export type ToolPopup$IconChangedEvent = Event<
|
|
19449
19930
|
ToolPopup$IconChangedEventParameters,
|
|
19450
19931
|
ToolPopup
|
|
19451
19932
|
>;
|
|
19452
19933
|
|
|
19934
|
+
/**
|
|
19935
|
+
* Parameters of the ToolPopup#open event.
|
|
19936
|
+
*/
|
|
19453
19937
|
export interface ToolPopup$OpenEventParameters {}
|
|
19454
19938
|
|
|
19939
|
+
/**
|
|
19940
|
+
* Event object of the ToolPopup#open event.
|
|
19941
|
+
*/
|
|
19455
19942
|
export type ToolPopup$OpenEvent = Event<
|
|
19456
19943
|
ToolPopup$OpenEventParameters,
|
|
19457
19944
|
ToolPopup
|
|
19458
19945
|
>;
|
|
19459
19946
|
|
|
19947
|
+
/**
|
|
19948
|
+
* Parameters of the ToolPopup#opened event.
|
|
19949
|
+
*/
|
|
19460
19950
|
export interface ToolPopup$OpenedEventParameters {}
|
|
19461
19951
|
|
|
19952
|
+
/**
|
|
19953
|
+
* Event object of the ToolPopup#opened event.
|
|
19954
|
+
*/
|
|
19462
19955
|
export type ToolPopup$OpenedEvent = Event<
|
|
19463
19956
|
ToolPopup$OpenedEventParameters,
|
|
19464
19957
|
ToolPopup
|