@sapui5/ts-types 1.122.2 → 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/index.d.ts +5 -5
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +404 -3
- package/types/sap.chart.d.ts +58 -3
- package/types/sap.collaboration.d.ts +52 -3
- package/types/sap.esh.search.ui.d.ts +2152 -2
- package/types/sap.f.d.ts +432 -46
- package/types/sap.fe.core.d.ts +20 -15
- package/types/sap.fe.macros.d.ts +1048 -21
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +8 -6
- package/types/sap.fe.test.d.ts +288 -7
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1067 -15
- package/types/sap.insights.d.ts +4 -1
- package/types/{mobile-1.122.0-d.ts → sap.m.d.ts} +3962 -124
- package/types/sap.makit.d.ts +115 -2
- package/types/sap.me.d.ts +84 -2
- package/types/sap.ndc.d.ts +22 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +44 -8
- package/types/sap.sac.df.d.ts +111 -60
- package/types/sap.suite.ui.commons.d.ts +1148 -2174
- package/types/sap.suite.ui.generic.template.d.ts +10 -1
- package/types/sap.suite.ui.microchart.d.ts +190 -2
- package/types/sap.tnt.d.ts +46 -2
- package/types/sap.ui.codeeditor.d.ts +16 -1
- package/types/{commons-1.122.0-d.ts → sap.ui.commons.d.ts} +792 -30
- package/types/sap.ui.comp.d.ts +964 -86
- package/types/{core-1.122.0-d.ts → sap.ui.core.d.ts} +2194 -1540
- package/types/sap.ui.dt.d.ts +3 -0
- package/types/sap.ui.export.d.ts +22 -4
- package/types/sap.ui.fl.d.ts +40 -1
- package/types/sap.ui.generic.app.d.ts +217 -203
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +147 -5
- package/types/sap.ui.layout.d.ts +171 -8
- package/types/sap.ui.mdc.d.ts +554 -33
- package/types/sap.ui.richtexteditor.d.ts +28 -2
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -2
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +278 -57
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -9
- package/types/{ux3-1.122.0-d.ts → sap.ui.ux3.d.ts} +527 -5
- package/types/sap.ui.vbm.d.ts +544 -2
- package/types/sap.ui.vk.d.ts +1580 -39
- package/types/sap.ui.vtm.d.ts +373 -2
- package/types/sap.ui.webc.common.d.ts +7 -2
- package/types/sap.ui.webc.fiori.d.ts +351 -2
- package/types/sap.ui.webc.main.d.ts +1035 -2
- package/types/sap.uiext.inbox.d.ts +124 -2
- package/types/sap.ushell.d.ts +1001 -322
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +123 -6
- package/types/sap.viz.d.ts +2619 -5
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +35 -10
- package/types/sap.zen.crosstab.d.ts +22 -7
- package/types/sap.zen.dsh.d.ts +64 -8
- package/types/dt-1.122.0-d.ts +0 -3
package/types/sap.ca.ui.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ca {
|
|
@@ -16,6 +16,14 @@ declare namespace sap {
|
|
|
16
16
|
* not be supported anymore from 1.24.
|
|
17
17
|
*/
|
|
18
18
|
namespace charts {
|
|
19
|
+
/**
|
|
20
|
+
* Describes the settings that can be provided to the BarListItem constructor.
|
|
21
|
+
*
|
|
22
|
+
* @deprecated (since 1.24) - Sap.ca charts have been replaced with sap.viz and vizFrame in 1.24. The UI5
|
|
23
|
+
* control "sap.viz.ui5.controls.VizFrame" serves as a single point of entry for all the new charts. Now
|
|
24
|
+
* that 1.24 is available you are asked to use sap.viz charts and the VizFrame instead! This control will
|
|
25
|
+
* not be supported anymore from 1.24.
|
|
26
|
+
*/
|
|
19
27
|
interface $BarListItemSettings extends sap.m.$ListItemBaseSettings {
|
|
20
28
|
/**
|
|
21
29
|
* List item label
|
|
@@ -33,6 +41,14 @@ declare namespace sap {
|
|
|
33
41
|
value?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
34
42
|
}
|
|
35
43
|
|
|
44
|
+
/**
|
|
45
|
+
* Describes the settings that can be provided to the BubbleChart constructor.
|
|
46
|
+
*
|
|
47
|
+
* @deprecated (since 1.24) - Sap.ca charts have been replaced with sap.viz and vizFrame in 1.24. The UI5
|
|
48
|
+
* control "sap.viz.ui5.controls.VizFrame" serves as a single point of entry for all the new charts. Now
|
|
49
|
+
* that 1.24 is available you are asked to use sap.viz charts and the VizFrame instead! This control will
|
|
50
|
+
* not be supported anymore from 1.24.
|
|
51
|
+
*/
|
|
36
52
|
interface $BubbleChartSettings extends sap.ca.ui.charts.$ChartSettings {
|
|
37
53
|
/**
|
|
38
54
|
* Defines the formater string for the dataLabel value to be displayed on the bubble
|
|
@@ -234,6 +250,14 @@ declare namespace sap {
|
|
|
234
250
|
| `{${string}}`;
|
|
235
251
|
}
|
|
236
252
|
|
|
253
|
+
/**
|
|
254
|
+
* Describes the settings that can be provided to the Chart constructor.
|
|
255
|
+
*
|
|
256
|
+
* @deprecated (since 1.24) - Sap.ca charts have been replaced with sap.viz and vizFrame in 1.24. The UI5
|
|
257
|
+
* control "sap.viz.ui5.controls.VizFrame" serves as a single point of entry for all the new charts. Now
|
|
258
|
+
* that 1.24 is available you are asked to use sap.viz charts and the VizFrame instead! This control will
|
|
259
|
+
* not be supported anymore from 1.24.
|
|
260
|
+
*/
|
|
237
261
|
interface $ChartSettings extends sap.ui.core.$ControlSettings {
|
|
238
262
|
/**
|
|
239
263
|
* Target width for the charting area
|
|
@@ -492,6 +516,14 @@ declare namespace sap {
|
|
|
492
516
|
popoverAfterOpen?: (oEvent: sap.ui.base.Event) => void;
|
|
493
517
|
}
|
|
494
518
|
|
|
519
|
+
/**
|
|
520
|
+
* Describes the settings that can be provided to the ChartToolBar constructor.
|
|
521
|
+
*
|
|
522
|
+
* @deprecated (since 1.24) - Sap.ca charts and the ChartToolBar have been replaced with sap.viz and vizFrame
|
|
523
|
+
* in 1.24. The UI5 control "sap.viz.ui5.controls.VizFrame" serves as a single point of entry for all the
|
|
524
|
+
* new charts. Now that 1.24 is available you are asked to use sap.viz charts and the VizFrame instead!
|
|
525
|
+
* This control will not be supported anymore from 1.24.
|
|
526
|
+
*/
|
|
495
527
|
interface $ChartToolBarSettings extends sap.ui.core.$ControlSettings {
|
|
496
528
|
/**
|
|
497
529
|
* Display or not the personalization icon into the ChartToolBar
|
|
@@ -622,6 +654,14 @@ declare namespace sap {
|
|
|
622
654
|
secondDimensionKeySelected?: (oEvent: sap.ui.base.Event) => void;
|
|
623
655
|
}
|
|
624
656
|
|
|
657
|
+
/**
|
|
658
|
+
* Describes the settings that can be provided to the ClusterListItem constructor.
|
|
659
|
+
*
|
|
660
|
+
* @deprecated (since 1.24) - Sap.ca charts have been replaced with sap.viz and VizFrame in 1.24. The UI5
|
|
661
|
+
* control "sap.viz.ui5.controls.VizFrame" serves as a single point of entry for all the new charts. Now
|
|
662
|
+
* that 1.24 is available you are asked to use sap.viz charts and the VizFrame instead! This control will
|
|
663
|
+
* not be supported anymore from 1.24.
|
|
664
|
+
*/
|
|
625
665
|
interface $ClusterListItemSettings extends sap.m.$ListItemBaseSettings {
|
|
626
666
|
/**
|
|
627
667
|
* Title
|
|
@@ -637,6 +677,14 @@ declare namespace sap {
|
|
|
637
677
|
| `{${string}}`;
|
|
638
678
|
}
|
|
639
679
|
|
|
680
|
+
/**
|
|
681
|
+
* Describes the settings that can be provided to the CombinedChart constructor.
|
|
682
|
+
*
|
|
683
|
+
* @deprecated (since 1.24) - Sap.ca charts have been replaced with sap.viz and vizFrame in 1.24. The UI5
|
|
684
|
+
* control "sap.viz.ui5.controls.VizFrame" serves as a single point of entry for all the new charts. Now
|
|
685
|
+
* that 1.24 is available you are asked to use sap.viz charts and the VizFrame instead! This control will
|
|
686
|
+
* not be supported anymore from 1.24.
|
|
687
|
+
*/
|
|
640
688
|
interface $CombinedChartSettings
|
|
641
689
|
extends sap.ca.ui.charts.$ChartSettings {
|
|
642
690
|
/**
|
|
@@ -669,6 +717,14 @@ declare namespace sap {
|
|
|
669
717
|
scrollArea?: sap.m.ScrollContainer;
|
|
670
718
|
}
|
|
671
719
|
|
|
720
|
+
/**
|
|
721
|
+
* Describes the settings that can be provided to the HorizontalBarChart constructor.
|
|
722
|
+
*
|
|
723
|
+
* @deprecated (since 1.24) - Sap.ca charts have been replaced with sap.viz and vizFrame in 1.24. The UI5
|
|
724
|
+
* control "sap.viz.ui5.controls.VizFrame" serves as a single point of entry for all the new charts. Now
|
|
725
|
+
* that 1.24 is available you are asked to use sap.viz charts and the VizFrame instead! This control will
|
|
726
|
+
* not be supported anymore from 1.24.
|
|
727
|
+
*/
|
|
672
728
|
interface $HorizontalBarChartSettings
|
|
673
729
|
extends sap.ca.ui.charts.$ChartSettings {
|
|
674
730
|
/**
|
|
@@ -712,6 +768,14 @@ declare namespace sap {
|
|
|
712
768
|
verticalArea?: sap.m.VBox;
|
|
713
769
|
}
|
|
714
770
|
|
|
771
|
+
/**
|
|
772
|
+
* Describes the settings that can be provided to the LineChart constructor.
|
|
773
|
+
*
|
|
774
|
+
* @deprecated (since 1.24) - Sap.ca charts have been replaced with sap.viz and vizFrame in 1.24. The UI5
|
|
775
|
+
* control "sap.viz.ui5.controls.VizFrame" serves as a single point of entry for all the new charts. Now
|
|
776
|
+
* that 1.24 is available you are asked to use sap.viz charts and the VizFrame instead! This control will
|
|
777
|
+
* not be supported anymore from 1.24.
|
|
778
|
+
*/
|
|
715
779
|
interface $LineChartSettings extends sap.ca.ui.charts.$ChartSettings {
|
|
716
780
|
/**
|
|
717
781
|
* The title to display on the chart
|
|
@@ -863,6 +927,14 @@ declare namespace sap {
|
|
|
863
927
|
onDetailsSelected?: (oEvent: sap.ui.base.Event) => void;
|
|
864
928
|
}
|
|
865
929
|
|
|
930
|
+
/**
|
|
931
|
+
* Describes the settings that can be provided to the StackedHorizontalBarChart constructor.
|
|
932
|
+
*
|
|
933
|
+
* @deprecated (since 1.24) - Sap.ca charts have been replaced with sap.viz and vizFrame in 1.24. The UI5
|
|
934
|
+
* control "sap.viz.ui5.controls.VizFrame" serves as a single point of entry for all the new charts. Now
|
|
935
|
+
* that 1.24 is available you are asked to use sap.viz charts and the VizFrame instead! This control will
|
|
936
|
+
* not be supported anymore from 1.24.
|
|
937
|
+
*/
|
|
866
938
|
interface $StackedHorizontalBarChartSettings
|
|
867
939
|
extends sap.ca.ui.charts.$ChartSettings {
|
|
868
940
|
/**
|
|
@@ -904,6 +976,14 @@ declare namespace sap {
|
|
|
904
976
|
| `{${string}}`;
|
|
905
977
|
}
|
|
906
978
|
|
|
979
|
+
/**
|
|
980
|
+
* Describes the settings that can be provided to the StackedVerticalColumnChart constructor.
|
|
981
|
+
*
|
|
982
|
+
* @deprecated (since 1.24) - Sap.ca charts have been replaced with sap.viz and vizFrame in 1.24. The UI5
|
|
983
|
+
* control "sap.viz.ui5.controls.VizFrame" serves as a single point of entry for all the new charts. Now
|
|
984
|
+
* that 1.24 is available you are asked to use sap.viz charts and the VizFrame instead! This control will
|
|
985
|
+
* not be supported anymore from 1.24.
|
|
986
|
+
*/
|
|
907
987
|
interface $StackedVerticalColumnChartSettings
|
|
908
988
|
extends sap.ca.ui.charts.$ChartSettings {
|
|
909
989
|
/**
|
|
@@ -948,6 +1028,14 @@ declare namespace sap {
|
|
|
948
1028
|
| `{${string}}`;
|
|
949
1029
|
}
|
|
950
1030
|
|
|
1031
|
+
/**
|
|
1032
|
+
* Describes the settings that can be provided to the VerticalBarChart constructor.
|
|
1033
|
+
*
|
|
1034
|
+
* @deprecated (since 1.24) - Sap.ca charts have been replaced with sap.viz and vizFrame in 1.24. The UI5
|
|
1035
|
+
* control "sap.viz.ui5.controls.VizFrame" serves as a single point of entry for all the new charts. Now
|
|
1036
|
+
* that 1.24 is available you are asked to use sap.viz charts and the VizFrame instead! This control will
|
|
1037
|
+
* not be supported anymore from 1.24.
|
|
1038
|
+
*/
|
|
951
1039
|
interface $VerticalBarChartSettings
|
|
952
1040
|
extends sap.ca.ui.charts.$ChartSettings {
|
|
953
1041
|
/**
|
|
@@ -1004,18 +1092,41 @@ declare namespace sap {
|
|
|
1004
1092
|
verticalArea?: sap.m.VBox;
|
|
1005
1093
|
}
|
|
1006
1094
|
|
|
1095
|
+
/**
|
|
1096
|
+
* Parameters of the Chart#popoverAfterOpen event.
|
|
1097
|
+
*/
|
|
1007
1098
|
interface Chart$PopoverAfterOpenEventParameters {}
|
|
1008
1099
|
|
|
1100
|
+
/**
|
|
1101
|
+
* Parameters of the Chart#popoverBeforeOpen event.
|
|
1102
|
+
*/
|
|
1009
1103
|
interface Chart$PopoverBeforeOpenEventParameters {}
|
|
1010
1104
|
|
|
1105
|
+
/**
|
|
1106
|
+
* Parameters of the Chart#selectDataPoint event.
|
|
1107
|
+
*/
|
|
1011
1108
|
interface Chart$SelectDataPointEventParameters {}
|
|
1012
1109
|
|
|
1110
|
+
/**
|
|
1111
|
+
* Parameters of the ChartToolBar#firstDimensionKeySelected event.
|
|
1112
|
+
*/
|
|
1013
1113
|
interface ChartToolBar$FirstDimensionKeySelectedEventParameters {}
|
|
1014
1114
|
|
|
1115
|
+
/**
|
|
1116
|
+
* Parameters of the ChartToolBar#personalizationPressed event.
|
|
1117
|
+
*/
|
|
1015
1118
|
interface ChartToolBar$PersonalizationPressedEventParameters {}
|
|
1016
1119
|
|
|
1120
|
+
/**
|
|
1121
|
+
* Parameters of the ChartToolBar#secondDimensionKeySelected event.
|
|
1122
|
+
*/
|
|
1017
1123
|
interface ChartToolBar$SecondDimensionKeySelectedEventParameters {}
|
|
1018
1124
|
|
|
1125
|
+
/**
|
|
1126
|
+
* Parameters of the LineChart#onDetailsSelected event.
|
|
1127
|
+
*
|
|
1128
|
+
* @deprecated (since 1.0.0) - Do not use as it will be removed in a future release.
|
|
1129
|
+
*/
|
|
1019
1130
|
interface LineChart$OnDetailsSelectedEventParameters {}
|
|
1020
1131
|
|
|
1021
1132
|
/**
|
|
@@ -6244,37 +6355,59 @@ declare namespace sap {
|
|
|
6244
6355
|
*/
|
|
6245
6356
|
NeutralLight = "NeutralLight",
|
|
6246
6357
|
}
|
|
6247
|
-
|
|
6358
|
+
/**
|
|
6359
|
+
* Event object of the Chart#popoverAfterOpen event.
|
|
6360
|
+
*/
|
|
6248
6361
|
type Chart$PopoverAfterOpenEvent = sap.ui.base.Event<
|
|
6249
6362
|
Chart$PopoverAfterOpenEventParameters,
|
|
6250
6363
|
Chart
|
|
6251
6364
|
>;
|
|
6252
6365
|
|
|
6366
|
+
/**
|
|
6367
|
+
* Event object of the Chart#popoverBeforeOpen event.
|
|
6368
|
+
*/
|
|
6253
6369
|
type Chart$PopoverBeforeOpenEvent = sap.ui.base.Event<
|
|
6254
6370
|
Chart$PopoverBeforeOpenEventParameters,
|
|
6255
6371
|
Chart
|
|
6256
6372
|
>;
|
|
6257
6373
|
|
|
6374
|
+
/**
|
|
6375
|
+
* Event object of the Chart#selectDataPoint event.
|
|
6376
|
+
*/
|
|
6258
6377
|
type Chart$SelectDataPointEvent = sap.ui.base.Event<
|
|
6259
6378
|
Chart$SelectDataPointEventParameters,
|
|
6260
6379
|
Chart
|
|
6261
6380
|
>;
|
|
6262
6381
|
|
|
6382
|
+
/**
|
|
6383
|
+
* Event object of the ChartToolBar#firstDimensionKeySelected event.
|
|
6384
|
+
*/
|
|
6263
6385
|
type ChartToolBar$FirstDimensionKeySelectedEvent = sap.ui.base.Event<
|
|
6264
6386
|
ChartToolBar$FirstDimensionKeySelectedEventParameters,
|
|
6265
6387
|
ChartToolBar
|
|
6266
6388
|
>;
|
|
6267
6389
|
|
|
6390
|
+
/**
|
|
6391
|
+
* Event object of the ChartToolBar#personalizationPressed event.
|
|
6392
|
+
*/
|
|
6268
6393
|
type ChartToolBar$PersonalizationPressedEvent = sap.ui.base.Event<
|
|
6269
6394
|
ChartToolBar$PersonalizationPressedEventParameters,
|
|
6270
6395
|
ChartToolBar
|
|
6271
6396
|
>;
|
|
6272
6397
|
|
|
6398
|
+
/**
|
|
6399
|
+
* Event object of the ChartToolBar#secondDimensionKeySelected event.
|
|
6400
|
+
*/
|
|
6273
6401
|
type ChartToolBar$SecondDimensionKeySelectedEvent = sap.ui.base.Event<
|
|
6274
6402
|
ChartToolBar$SecondDimensionKeySelectedEventParameters,
|
|
6275
6403
|
ChartToolBar
|
|
6276
6404
|
>;
|
|
6277
6405
|
|
|
6406
|
+
/**
|
|
6407
|
+
* Event object of the LineChart#onDetailsSelected event.
|
|
6408
|
+
*
|
|
6409
|
+
* @deprecated (since 1.0.0) - Do not use as it will be removed in a future release.
|
|
6410
|
+
*/
|
|
6278
6411
|
type LineChart$OnDetailsSelectedEvent = sap.ui.base.Event<
|
|
6279
6412
|
LineChart$OnDetailsSelectedEventParameters,
|
|
6280
6413
|
LineChart
|
|
@@ -7220,7 +7353,12 @@ declare namespace sap {
|
|
|
7220
7353
|
): void;
|
|
7221
7354
|
}
|
|
7222
7355
|
}
|
|
7223
|
-
|
|
7356
|
+
/**
|
|
7357
|
+
* Describes the settings that can be provided to the AddPicture constructor.
|
|
7358
|
+
*
|
|
7359
|
+
* @deprecated (since 1.26) - As per central UX requirements, this control is replaced by sap.m.UploadCollection.
|
|
7360
|
+
* Please use the new control if you start developing an application instead of using this AddPicture control.
|
|
7361
|
+
*/
|
|
7224
7362
|
interface $AddPictureSettings extends sap.ui.core.$ControlSettings {
|
|
7225
7363
|
/**
|
|
7226
7364
|
* The page container type in which the button is embedded : Tab or Form
|
|
@@ -7320,6 +7458,12 @@ declare namespace sap {
|
|
|
7320
7458
|
fileNotSupported?: (oEvent: AddPicture$FileNotSupportedEvent) => void;
|
|
7321
7459
|
}
|
|
7322
7460
|
|
|
7461
|
+
/**
|
|
7462
|
+
* Describes the settings that can be provided to the CustomerContext constructor.
|
|
7463
|
+
*
|
|
7464
|
+
* @deprecated (since 1.24.3) - This control is not required anymore as per central UX requirements. Please
|
|
7465
|
+
* use Contextual Filter design instead! This control will not be supported anymore.
|
|
7466
|
+
*/
|
|
7323
7467
|
interface $CustomerContextSettings extends sap.ui.core.$ControlSettings {
|
|
7324
7468
|
/**
|
|
7325
7469
|
* Name of your app that shall be unique.
|
|
@@ -7388,6 +7532,12 @@ declare namespace sap {
|
|
|
7388
7532
|
customerSelected?: (oEvent: sap.ui.base.Event) => void;
|
|
7389
7533
|
}
|
|
7390
7534
|
|
|
7535
|
+
/**
|
|
7536
|
+
* Describes the settings that can be provided to the CustomerControlListItem constructor.
|
|
7537
|
+
*
|
|
7538
|
+
* @deprecated (since 1.24.3) - This control is not required anymore as per central UX requirements. Please
|
|
7539
|
+
* use Contextual Filter design instead! This control will not be supported anymore.
|
|
7540
|
+
*/
|
|
7391
7541
|
interface $CustomerControlListItemSettings
|
|
7392
7542
|
extends sap.m.$CustomListItemSettings {
|
|
7393
7543
|
/**
|
|
@@ -7428,6 +7578,12 @@ declare namespace sap {
|
|
|
7428
7578
|
divisionName?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7429
7579
|
}
|
|
7430
7580
|
|
|
7581
|
+
/**
|
|
7582
|
+
* Describes the settings that can be provided to the DatePicker constructor.
|
|
7583
|
+
*
|
|
7584
|
+
* @deprecated (since 1.22) - This control has been made available in sap.m. Please use the sap.m.DatePicker
|
|
7585
|
+
* instead! This control will not be supported anymore.
|
|
7586
|
+
*/
|
|
7431
7587
|
interface $DatePickerSettings extends sap.m.$InputBaseSettings {
|
|
7432
7588
|
/**
|
|
7433
7589
|
* This property is used to offset the first day of the week (0 = sunday). Returns int, default 0
|
|
@@ -7444,6 +7600,12 @@ declare namespace sap {
|
|
|
7444
7600
|
dateValue?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7445
7601
|
}
|
|
7446
7602
|
|
|
7603
|
+
/**
|
|
7604
|
+
* Describes the settings that can be provided to the ExpansibleFeedListItem constructor.
|
|
7605
|
+
*
|
|
7606
|
+
* @deprecated (since 1.24) - This control has been made available in sap.m. Please use sap.m.FeedListItem
|
|
7607
|
+
* instead! This control will not be supported anymore.
|
|
7608
|
+
*/
|
|
7447
7609
|
interface $ExpansibleFeedListItemSettings
|
|
7448
7610
|
extends sap.m.$FeedListItemSettings {
|
|
7449
7611
|
/**
|
|
@@ -7455,6 +7617,12 @@ declare namespace sap {
|
|
|
7455
7617
|
| `{${string}}`;
|
|
7456
7618
|
}
|
|
7457
7619
|
|
|
7620
|
+
/**
|
|
7621
|
+
* Describes the settings that can be provided to the FileUpload constructor.
|
|
7622
|
+
*
|
|
7623
|
+
* @deprecated (since 1.26) - This control is available in sap.m in 1.26, as sap.m.UploadCollection. Please
|
|
7624
|
+
* use UploadCollection, as sap.ca.ui.FileUpload will not be supported anymore from 1.26.
|
|
7625
|
+
*/
|
|
7458
7626
|
interface $FileUploadSettings extends sap.ui.core.$ControlSettings {
|
|
7459
7627
|
/**
|
|
7460
7628
|
* Url of server we wish to upload to
|
|
@@ -7685,6 +7853,12 @@ declare namespace sap {
|
|
|
7685
7853
|
cancelClicked?: (oEvent: sap.ui.base.Event) => void;
|
|
7686
7854
|
}
|
|
7687
7855
|
|
|
7856
|
+
/**
|
|
7857
|
+
* Describes the settings that can be provided to the GrowingTileContainer constructor.
|
|
7858
|
+
*
|
|
7859
|
+
* @deprecated (since 1.24.3) - This control is not required anymore as per central UX requirements. This
|
|
7860
|
+
* control will not be supported anymore.
|
|
7861
|
+
*/
|
|
7688
7862
|
interface $GrowingTileContainerSettings
|
|
7689
7863
|
extends sap.m.$ScrollContainerSettings {
|
|
7690
7864
|
/**
|
|
@@ -7712,6 +7886,12 @@ declare namespace sap {
|
|
|
7712
7886
|
| `{${string}}`;
|
|
7713
7887
|
}
|
|
7714
7888
|
|
|
7889
|
+
/**
|
|
7890
|
+
* Describes the settings that can be provided to the HierarchicalSelectDialog constructor.
|
|
7891
|
+
*
|
|
7892
|
+
* @deprecated (since 1.24.1) - HierarchicalSelectDialog is deprecated as per central UX requirements. This
|
|
7893
|
+
* control will not be supported anymore.
|
|
7894
|
+
*/
|
|
7715
7895
|
interface $HierarchicalSelectDialogSettings
|
|
7716
7896
|
extends sap.m.$DialogSettings {
|
|
7717
7897
|
/**
|
|
@@ -7735,6 +7915,12 @@ declare namespace sap {
|
|
|
7735
7915
|
cancel?: (oEvent: sap.ui.base.Event) => void;
|
|
7736
7916
|
}
|
|
7737
7917
|
|
|
7918
|
+
/**
|
|
7919
|
+
* Describes the settings that can be provided to the HierarchicalSelectDialogItem constructor.
|
|
7920
|
+
*
|
|
7921
|
+
* @deprecated (since 1.24) - This control is deprecated as per central UX requirements. This control will
|
|
7922
|
+
* not be supported anymore.
|
|
7923
|
+
*/
|
|
7738
7924
|
interface $HierarchicalSelectDialogItemSettings
|
|
7739
7925
|
extends sap.ui.core.$ItemSettings {
|
|
7740
7926
|
/**
|
|
@@ -7753,6 +7939,12 @@ declare namespace sap {
|
|
|
7753
7939
|
listItemTemplate?: sap.m.ListItemBase;
|
|
7754
7940
|
}
|
|
7755
7941
|
|
|
7942
|
+
/**
|
|
7943
|
+
* Describes the settings that can be provided to the Hierarchy constructor.
|
|
7944
|
+
*
|
|
7945
|
+
* @deprecated (since 1.24.3) - This control is not required anymore as per central UX requirements. This
|
|
7946
|
+
* control will not be supported anymore.
|
|
7947
|
+
*/
|
|
7756
7948
|
interface $HierarchySettings extends sap.ui.core.$ControlSettings {
|
|
7757
7949
|
/**
|
|
7758
7950
|
* Hide the levels marked optional. An expand button will appear
|
|
@@ -7772,6 +7964,12 @@ declare namespace sap {
|
|
|
7772
7964
|
| `{${string}}`;
|
|
7773
7965
|
}
|
|
7774
7966
|
|
|
7967
|
+
/**
|
|
7968
|
+
* Describes the settings that can be provided to the HierarchyItem constructor.
|
|
7969
|
+
*
|
|
7970
|
+
* @deprecated (since 1.24) - This control is deprecated as per central UX requirements. This control will
|
|
7971
|
+
* not be supported anymore.
|
|
7972
|
+
*/
|
|
7775
7973
|
interface $HierarchyItemSettings extends sap.ui.core.$ControlSettings {
|
|
7776
7974
|
/**
|
|
7777
7975
|
* Icon for the item
|
|
@@ -7823,6 +8021,12 @@ declare namespace sap {
|
|
|
7823
8021
|
linkPress?: (oEvent: sap.ui.base.Event) => void;
|
|
7824
8022
|
}
|
|
7825
8023
|
|
|
8024
|
+
/**
|
|
8025
|
+
* Describes the settings that can be provided to the InPlaceEdit constructor.
|
|
8026
|
+
*
|
|
8027
|
+
* @deprecated (since 1.22) - This control is not required anymore as per central UX requirements. Please
|
|
8028
|
+
* use sap.m.Input instead! This control will not be supported anymore.
|
|
8029
|
+
*/
|
|
7826
8030
|
interface $InPlaceEditSettings extends sap.ui.core.$ControlSettings {
|
|
7827
8031
|
/**
|
|
7828
8032
|
* Visualizes warnings or errors related to the InPlaceEdit. Possible values: Warning, Error, Success. If
|
|
@@ -7853,6 +8057,12 @@ declare namespace sap {
|
|
|
7853
8057
|
change?: (oEvent: InPlaceEdit$ChangeEvent) => void;
|
|
7854
8058
|
}
|
|
7855
8059
|
|
|
8060
|
+
/**
|
|
8061
|
+
* Describes the settings that can be provided to the Notes constructor.
|
|
8062
|
+
*
|
|
8063
|
+
* @deprecated (since 1.22) - This control has been made available in sap.m. Please use sap.m.FeedInput
|
|
8064
|
+
* with sap.m.FeedListItem instead! This control will not be supported anymore.
|
|
8065
|
+
*/
|
|
7856
8066
|
interface $NotesSettings extends sap.m.$ListSettings {
|
|
7857
8067
|
/**
|
|
7858
8068
|
* If set to true, this control will render an additional control to create new notes.
|
|
@@ -7885,6 +8095,12 @@ declare namespace sap {
|
|
|
7885
8095
|
addNote?: (oEvent: sap.ui.base.Event) => void;
|
|
7886
8096
|
}
|
|
7887
8097
|
|
|
8098
|
+
/**
|
|
8099
|
+
* Describes the settings that can be provided to the OverflowContainer constructor.
|
|
8100
|
+
*
|
|
8101
|
+
* @deprecated (since 1.24.1) - OverflowContainer is deprecated as per central UX requirements. This control
|
|
8102
|
+
* will not be supported anymore.
|
|
8103
|
+
*/
|
|
7888
8104
|
interface $OverflowContainerSettings
|
|
7889
8105
|
extends sap.ui.core.$ControlSettings {
|
|
7890
8106
|
/**
|
|
@@ -7914,6 +8130,12 @@ declare namespace sap {
|
|
|
7914
8130
|
| `{${string}}`;
|
|
7915
8131
|
}
|
|
7916
8132
|
|
|
8133
|
+
/**
|
|
8134
|
+
* Describes the settings that can be provided to the OverviewTile constructor.
|
|
8135
|
+
*
|
|
8136
|
+
* @deprecated (since 1.24.3) - This control is not required anymore as per central UX requirements. This
|
|
8137
|
+
* control will not be supported anymore.
|
|
8138
|
+
*/
|
|
7917
8139
|
interface $OverviewTileSettings extends sap.m.$TileSettings {
|
|
7918
8140
|
/**
|
|
7919
8141
|
* This property is used to set the title of the tile
|
|
@@ -7993,6 +8215,12 @@ declare namespace sap {
|
|
|
7993
8215
|
contactPress?: (oEvent: sap.ui.base.Event) => void;
|
|
7994
8216
|
}
|
|
7995
8217
|
|
|
8218
|
+
/**
|
|
8219
|
+
* Describes the settings that can be provided to the PictureItem constructor.
|
|
8220
|
+
*
|
|
8221
|
+
* @deprecated (since 1.22) - This control has been made available in sap.m. Please use the sap.m.Carousel
|
|
8222
|
+
* instead! This control will not be supported anymore.
|
|
8223
|
+
*/
|
|
7996
8224
|
interface $PictureItemSettings extends sap.ui.core.$ControlSettings {
|
|
7997
8225
|
/**
|
|
7998
8226
|
* The status of the picture / photo : Added, Deleted, Read
|
|
@@ -8035,6 +8263,14 @@ declare namespace sap {
|
|
|
8035
8263
|
loaded?: (oEvent: sap.ui.base.Event) => void;
|
|
8036
8264
|
}
|
|
8037
8265
|
|
|
8266
|
+
/**
|
|
8267
|
+
* Describes the settings that can be provided to the PictureTile constructor.
|
|
8268
|
+
*
|
|
8269
|
+
* @deprecated (since 1.22) - PictureTile is used in PictureViewer control and is not meant to be consumed
|
|
8270
|
+
* outside of PictureViewer usage. PictureViewer was replacing the sap.m.Carousel as it wasn't supporting
|
|
8271
|
+
* some versions of MS Internet Explorer. Now, the sap.m.Carousel is fully functional, please use sap.m.Carousel
|
|
8272
|
+
* instead. This control will not be supported anymore.
|
|
8273
|
+
*/
|
|
8038
8274
|
interface $PictureTileSettings extends sap.m.$CustomTileSettings {
|
|
8039
8275
|
/**
|
|
8040
8276
|
* height (in pixels) of the picture viewer control.
|
|
@@ -8063,6 +8299,13 @@ declare namespace sap {
|
|
|
8063
8299
|
pictureDelete?: (oEvent: sap.ui.base.Event) => void;
|
|
8064
8300
|
}
|
|
8065
8301
|
|
|
8302
|
+
/**
|
|
8303
|
+
* Describes the settings that can be provided to the PictureViewer constructor.
|
|
8304
|
+
*
|
|
8305
|
+
* @deprecated (since 1.22) - PictureViewer was replacing the Carousel as it wasn't supporting some versions
|
|
8306
|
+
* of MS Internet Explorer. Now, the sap.m.Carousel is fully functional, please use sap.m.Carousel instead.
|
|
8307
|
+
* This control will not be supported anymore.
|
|
8308
|
+
*/
|
|
8066
8309
|
interface $PictureViewerSettings extends sap.m.$TileContainerSettings {
|
|
8067
8310
|
/**
|
|
8068
8311
|
* Percentage of the space occupied by the image in the picture viewer control. Please note that if the
|
|
@@ -8096,6 +8339,14 @@ declare namespace sap {
|
|
|
8096
8339
|
pictureDeleted?: (oEvent: sap.ui.base.Event) => void;
|
|
8097
8340
|
}
|
|
8098
8341
|
|
|
8342
|
+
/**
|
|
8343
|
+
* Describes the settings that can be provided to the PictureViewerItem constructor.
|
|
8344
|
+
*
|
|
8345
|
+
* @deprecated (since 1.22) - PictureViewerItem is used in PictureViewer control and is not meant to be
|
|
8346
|
+
* consumed outside of PictureViewer usage. PictureViewer was replacing the Carousel as it wasn't supporting
|
|
8347
|
+
* some versions of MS Internet Explorer. Now, the sap.m.Carousel is fully functional, please use sap.m.Carousel
|
|
8348
|
+
* instead. This control will not be supported anymore.
|
|
8349
|
+
*/
|
|
8099
8350
|
interface $PictureViewerItemSettings
|
|
8100
8351
|
extends sap.ui.core.$ControlSettings {
|
|
8101
8352
|
/**
|
|
@@ -8109,6 +8360,14 @@ declare namespace sap {
|
|
|
8109
8360
|
image?: sap.m.Image;
|
|
8110
8361
|
}
|
|
8111
8362
|
|
|
8363
|
+
/**
|
|
8364
|
+
* Describes the settings that can be provided to the ZoomableScrollContainer constructor.
|
|
8365
|
+
*
|
|
8366
|
+
* @deprecated (since 1.22) - ZoomableScrollContainer is used in PictureViewer control and is not meant
|
|
8367
|
+
* to be consumed outside of PictureViewer usage. PictureViewer was replacing the Carousel as it wasn't
|
|
8368
|
+
* supporting some versions of MS Internet Explorer. Now, the sap.m.Carousel is fully functional, please
|
|
8369
|
+
* use sap.m.Carousel instead. This control will not be supported anymore.
|
|
8370
|
+
*/
|
|
8112
8371
|
interface $ZoomableScrollContainerSettings
|
|
8113
8372
|
extends sap.m.$ScrollContainerSettings {
|
|
8114
8373
|
/**
|
|
@@ -8144,6 +8403,9 @@ declare namespace sap {
|
|
|
8144
8403
|
| `{${string}}`;
|
|
8145
8404
|
}
|
|
8146
8405
|
|
|
8406
|
+
/**
|
|
8407
|
+
* Parameters of the AddPicture#fileNotSupported event.
|
|
8408
|
+
*/
|
|
8147
8409
|
interface AddPicture$FileNotSupportedEventParameters {
|
|
8148
8410
|
/**
|
|
8149
8411
|
* An array containing the file names that are not supported
|
|
@@ -8151,36 +8413,89 @@ declare namespace sap {
|
|
|
8151
8413
|
fileNames?: any;
|
|
8152
8414
|
}
|
|
8153
8415
|
|
|
8416
|
+
/**
|
|
8417
|
+
* Parameters of the AddPicture#imageUploadFailed event.
|
|
8418
|
+
*/
|
|
8154
8419
|
interface AddPicture$ImageUploadFailedEventParameters {}
|
|
8155
8420
|
|
|
8421
|
+
/**
|
|
8422
|
+
* Parameters of the AddPicture#maxPictureLimitReached event.
|
|
8423
|
+
*/
|
|
8156
8424
|
interface AddPicture$MaxPictureLimitReachedEventParameters {}
|
|
8157
8425
|
|
|
8426
|
+
/**
|
|
8427
|
+
* Parameters of the AddPicture#pictureAdded event.
|
|
8428
|
+
*/
|
|
8158
8429
|
interface AddPicture$PictureAddedEventParameters {}
|
|
8159
8430
|
|
|
8431
|
+
/**
|
|
8432
|
+
* Parameters of the AddPicture#show event.
|
|
8433
|
+
*/
|
|
8160
8434
|
interface AddPicture$ShowEventParameters {}
|
|
8161
8435
|
|
|
8436
|
+
/**
|
|
8437
|
+
* Parameters of the CustomerContext#customerSelected event.
|
|
8438
|
+
*/
|
|
8162
8439
|
interface CustomerContext$CustomerSelectedEventParameters {}
|
|
8163
8440
|
|
|
8441
|
+
/**
|
|
8442
|
+
* Parameters of the FileUpload#beforeUploadFile event.
|
|
8443
|
+
*/
|
|
8164
8444
|
interface FileUpload$BeforeUploadFileEventParameters {}
|
|
8165
8445
|
|
|
8446
|
+
/**
|
|
8447
|
+
* Parameters of the FileUpload#cancelClicked event.
|
|
8448
|
+
*
|
|
8449
|
+
* @deprecated (since 1.21.1) - This method is deprecated now
|
|
8450
|
+
*/
|
|
8166
8451
|
interface FileUpload$CancelClickedEventParameters {}
|
|
8167
8452
|
|
|
8453
|
+
/**
|
|
8454
|
+
* Parameters of the FileUpload#deleteFile event.
|
|
8455
|
+
*/
|
|
8168
8456
|
interface FileUpload$DeleteFileEventParameters {}
|
|
8169
8457
|
|
|
8458
|
+
/**
|
|
8459
|
+
* Parameters of the FileUpload#fileUploadFailed event.
|
|
8460
|
+
*/
|
|
8170
8461
|
interface FileUpload$FileUploadFailedEventParameters {}
|
|
8171
8462
|
|
|
8463
|
+
/**
|
|
8464
|
+
* Parameters of the FileUpload#renameFile event.
|
|
8465
|
+
*/
|
|
8172
8466
|
interface FileUpload$RenameFileEventParameters {}
|
|
8173
8467
|
|
|
8468
|
+
/**
|
|
8469
|
+
* Parameters of the FileUpload#saveClicked event.
|
|
8470
|
+
*
|
|
8471
|
+
* @deprecated (since 1.21.1) - This method is deprecated now. The rename or delete event is enough and
|
|
8472
|
+
* should be use to commit the action immediatly
|
|
8473
|
+
*/
|
|
8174
8474
|
interface FileUpload$SaveClickedEventParameters {}
|
|
8175
8475
|
|
|
8476
|
+
/**
|
|
8477
|
+
* Parameters of the FileUpload#uploadFile event.
|
|
8478
|
+
*/
|
|
8176
8479
|
interface FileUpload$UploadFileEventParameters {}
|
|
8177
8480
|
|
|
8481
|
+
/**
|
|
8482
|
+
* Parameters of the HierarchicalSelectDialog#cancel event.
|
|
8483
|
+
*/
|
|
8178
8484
|
interface HierarchicalSelectDialog$CancelEventParameters {}
|
|
8179
8485
|
|
|
8486
|
+
/**
|
|
8487
|
+
* Parameters of the HierarchicalSelectDialog#select event.
|
|
8488
|
+
*/
|
|
8180
8489
|
interface HierarchicalSelectDialog$SelectEventParameters {}
|
|
8181
8490
|
|
|
8491
|
+
/**
|
|
8492
|
+
* Parameters of the HierarchyItem#linkPress event.
|
|
8493
|
+
*/
|
|
8182
8494
|
interface HierarchyItem$LinkPressEventParameters {}
|
|
8183
8495
|
|
|
8496
|
+
/**
|
|
8497
|
+
* Parameters of the InPlaceEdit#change event.
|
|
8498
|
+
*/
|
|
8184
8499
|
interface InPlaceEdit$ChangeEventParameters {
|
|
8185
8500
|
/**
|
|
8186
8501
|
* The new / changed value of the InPlaceEdit.
|
|
@@ -8188,14 +8503,29 @@ declare namespace sap {
|
|
|
8188
8503
|
newValue?: string;
|
|
8189
8504
|
}
|
|
8190
8505
|
|
|
8506
|
+
/**
|
|
8507
|
+
* Parameters of the Notes#addNote event.
|
|
8508
|
+
*/
|
|
8191
8509
|
interface Notes$AddNoteEventParameters {}
|
|
8192
8510
|
|
|
8511
|
+
/**
|
|
8512
|
+
* Parameters of the OverviewTile#contactPress event.
|
|
8513
|
+
*/
|
|
8193
8514
|
interface OverviewTile$ContactPressEventParameters {}
|
|
8194
8515
|
|
|
8516
|
+
/**
|
|
8517
|
+
* Parameters of the PictureItem#loaded event.
|
|
8518
|
+
*/
|
|
8195
8519
|
interface PictureItem$LoadedEventParameters {}
|
|
8196
8520
|
|
|
8521
|
+
/**
|
|
8522
|
+
* Parameters of the PictureTile#pictureDelete event.
|
|
8523
|
+
*/
|
|
8197
8524
|
interface PictureTile$PictureDeleteEventParameters {}
|
|
8198
8525
|
|
|
8526
|
+
/**
|
|
8527
|
+
* Parameters of the PictureViewer#pictureDeleted event.
|
|
8528
|
+
*/
|
|
8199
8529
|
interface PictureViewer$PictureDeletedEventParameters {}
|
|
8200
8530
|
|
|
8201
8531
|
/**
|
|
@@ -14496,111 +14826,182 @@ declare namespace sap {
|
|
|
14496
14826
|
): this;
|
|
14497
14827
|
}
|
|
14498
14828
|
|
|
14829
|
+
/**
|
|
14830
|
+
* Event object of the AddPicture#fileNotSupported event.
|
|
14831
|
+
*/
|
|
14499
14832
|
type AddPicture$FileNotSupportedEvent = sap.ui.base.Event<
|
|
14500
14833
|
AddPicture$FileNotSupportedEventParameters,
|
|
14501
14834
|
AddPicture
|
|
14502
14835
|
>;
|
|
14503
14836
|
|
|
14837
|
+
/**
|
|
14838
|
+
* Event object of the AddPicture#imageUploadFailed event.
|
|
14839
|
+
*/
|
|
14504
14840
|
type AddPicture$ImageUploadFailedEvent = sap.ui.base.Event<
|
|
14505
14841
|
AddPicture$ImageUploadFailedEventParameters,
|
|
14506
14842
|
AddPicture
|
|
14507
14843
|
>;
|
|
14508
14844
|
|
|
14845
|
+
/**
|
|
14846
|
+
* Event object of the AddPicture#maxPictureLimitReached event.
|
|
14847
|
+
*/
|
|
14509
14848
|
type AddPicture$MaxPictureLimitReachedEvent = sap.ui.base.Event<
|
|
14510
14849
|
AddPicture$MaxPictureLimitReachedEventParameters,
|
|
14511
14850
|
AddPicture
|
|
14512
14851
|
>;
|
|
14513
14852
|
|
|
14853
|
+
/**
|
|
14854
|
+
* Event object of the AddPicture#pictureAdded event.
|
|
14855
|
+
*/
|
|
14514
14856
|
type AddPicture$PictureAddedEvent = sap.ui.base.Event<
|
|
14515
14857
|
AddPicture$PictureAddedEventParameters,
|
|
14516
14858
|
AddPicture
|
|
14517
14859
|
>;
|
|
14518
14860
|
|
|
14861
|
+
/**
|
|
14862
|
+
* Event object of the AddPicture#show event.
|
|
14863
|
+
*/
|
|
14519
14864
|
type AddPicture$ShowEvent = sap.ui.base.Event<
|
|
14520
14865
|
AddPicture$ShowEventParameters,
|
|
14521
14866
|
AddPicture
|
|
14522
14867
|
>;
|
|
14523
14868
|
|
|
14869
|
+
/**
|
|
14870
|
+
* Event object of the CustomerContext#customerSelected event.
|
|
14871
|
+
*/
|
|
14524
14872
|
type CustomerContext$CustomerSelectedEvent = sap.ui.base.Event<
|
|
14525
14873
|
CustomerContext$CustomerSelectedEventParameters,
|
|
14526
14874
|
CustomerContext
|
|
14527
14875
|
>;
|
|
14528
14876
|
|
|
14877
|
+
/**
|
|
14878
|
+
* Event object of the FileUpload#beforeUploadFile event.
|
|
14879
|
+
*/
|
|
14529
14880
|
type FileUpload$BeforeUploadFileEvent = sap.ui.base.Event<
|
|
14530
14881
|
FileUpload$BeforeUploadFileEventParameters,
|
|
14531
14882
|
FileUpload
|
|
14532
14883
|
>;
|
|
14533
14884
|
|
|
14885
|
+
/**
|
|
14886
|
+
* Event object of the FileUpload#cancelClicked event.
|
|
14887
|
+
*
|
|
14888
|
+
* @deprecated (since 1.21.1) - This method is deprecated now
|
|
14889
|
+
*/
|
|
14534
14890
|
type FileUpload$CancelClickedEvent = sap.ui.base.Event<
|
|
14535
14891
|
FileUpload$CancelClickedEventParameters,
|
|
14536
14892
|
FileUpload
|
|
14537
14893
|
>;
|
|
14538
14894
|
|
|
14895
|
+
/**
|
|
14896
|
+
* Event object of the FileUpload#deleteFile event.
|
|
14897
|
+
*/
|
|
14539
14898
|
type FileUpload$DeleteFileEvent = sap.ui.base.Event<
|
|
14540
14899
|
FileUpload$DeleteFileEventParameters,
|
|
14541
14900
|
FileUpload
|
|
14542
14901
|
>;
|
|
14543
14902
|
|
|
14903
|
+
/**
|
|
14904
|
+
* Event object of the FileUpload#fileUploadFailed event.
|
|
14905
|
+
*/
|
|
14544
14906
|
type FileUpload$FileUploadFailedEvent = sap.ui.base.Event<
|
|
14545
14907
|
FileUpload$FileUploadFailedEventParameters,
|
|
14546
14908
|
FileUpload
|
|
14547
14909
|
>;
|
|
14548
14910
|
|
|
14911
|
+
/**
|
|
14912
|
+
* Event object of the FileUpload#renameFile event.
|
|
14913
|
+
*/
|
|
14549
14914
|
type FileUpload$RenameFileEvent = sap.ui.base.Event<
|
|
14550
14915
|
FileUpload$RenameFileEventParameters,
|
|
14551
14916
|
FileUpload
|
|
14552
14917
|
>;
|
|
14553
14918
|
|
|
14919
|
+
/**
|
|
14920
|
+
* Event object of the FileUpload#saveClicked event.
|
|
14921
|
+
*
|
|
14922
|
+
* @deprecated (since 1.21.1) - This method is deprecated now. The rename or delete event is enough and
|
|
14923
|
+
* should be use to commit the action immediatly
|
|
14924
|
+
*/
|
|
14554
14925
|
type FileUpload$SaveClickedEvent = sap.ui.base.Event<
|
|
14555
14926
|
FileUpload$SaveClickedEventParameters,
|
|
14556
14927
|
FileUpload
|
|
14557
14928
|
>;
|
|
14558
14929
|
|
|
14930
|
+
/**
|
|
14931
|
+
* Event object of the FileUpload#uploadFile event.
|
|
14932
|
+
*/
|
|
14559
14933
|
type FileUpload$UploadFileEvent = sap.ui.base.Event<
|
|
14560
14934
|
FileUpload$UploadFileEventParameters,
|
|
14561
14935
|
FileUpload
|
|
14562
14936
|
>;
|
|
14563
14937
|
|
|
14938
|
+
/**
|
|
14939
|
+
* Event object of the HierarchicalSelectDialog#cancel event.
|
|
14940
|
+
*/
|
|
14564
14941
|
type HierarchicalSelectDialog$CancelEvent = sap.ui.base.Event<
|
|
14565
14942
|
HierarchicalSelectDialog$CancelEventParameters,
|
|
14566
14943
|
HierarchicalSelectDialog
|
|
14567
14944
|
>;
|
|
14568
14945
|
|
|
14946
|
+
/**
|
|
14947
|
+
* Event object of the HierarchicalSelectDialog#select event.
|
|
14948
|
+
*/
|
|
14569
14949
|
type HierarchicalSelectDialog$SelectEvent = sap.ui.base.Event<
|
|
14570
14950
|
HierarchicalSelectDialog$SelectEventParameters,
|
|
14571
14951
|
HierarchicalSelectDialog
|
|
14572
14952
|
>;
|
|
14573
14953
|
|
|
14954
|
+
/**
|
|
14955
|
+
* Event object of the HierarchyItem#linkPress event.
|
|
14956
|
+
*/
|
|
14574
14957
|
type HierarchyItem$LinkPressEvent = sap.ui.base.Event<
|
|
14575
14958
|
HierarchyItem$LinkPressEventParameters,
|
|
14576
14959
|
HierarchyItem
|
|
14577
14960
|
>;
|
|
14578
14961
|
|
|
14962
|
+
/**
|
|
14963
|
+
* Event object of the InPlaceEdit#change event.
|
|
14964
|
+
*/
|
|
14579
14965
|
type InPlaceEdit$ChangeEvent = sap.ui.base.Event<
|
|
14580
14966
|
InPlaceEdit$ChangeEventParameters,
|
|
14581
14967
|
InPlaceEdit
|
|
14582
14968
|
>;
|
|
14583
14969
|
|
|
14970
|
+
/**
|
|
14971
|
+
* Event object of the Notes#addNote event.
|
|
14972
|
+
*/
|
|
14584
14973
|
type Notes$AddNoteEvent = sap.ui.base.Event<
|
|
14585
14974
|
Notes$AddNoteEventParameters,
|
|
14586
14975
|
Notes
|
|
14587
14976
|
>;
|
|
14588
14977
|
|
|
14978
|
+
/**
|
|
14979
|
+
* Event object of the OverviewTile#contactPress event.
|
|
14980
|
+
*/
|
|
14589
14981
|
type OverviewTile$ContactPressEvent = sap.ui.base.Event<
|
|
14590
14982
|
OverviewTile$ContactPressEventParameters,
|
|
14591
14983
|
OverviewTile
|
|
14592
14984
|
>;
|
|
14593
14985
|
|
|
14986
|
+
/**
|
|
14987
|
+
* Event object of the PictureItem#loaded event.
|
|
14988
|
+
*/
|
|
14594
14989
|
type PictureItem$LoadedEvent = sap.ui.base.Event<
|
|
14595
14990
|
PictureItem$LoadedEventParameters,
|
|
14596
14991
|
PictureItem
|
|
14597
14992
|
>;
|
|
14598
14993
|
|
|
14994
|
+
/**
|
|
14995
|
+
* Event object of the PictureTile#pictureDelete event.
|
|
14996
|
+
*/
|
|
14599
14997
|
type PictureTile$PictureDeleteEvent = sap.ui.base.Event<
|
|
14600
14998
|
PictureTile$PictureDeleteEventParameters,
|
|
14601
14999
|
PictureTile
|
|
14602
15000
|
>;
|
|
14603
15001
|
|
|
15002
|
+
/**
|
|
15003
|
+
* Event object of the PictureViewer#pictureDeleted event.
|
|
15004
|
+
*/
|
|
14604
15005
|
type PictureViewer$PictureDeletedEvent = sap.ui.base.Event<
|
|
14605
15006
|
PictureViewer$PictureDeletedEventParameters,
|
|
14606
15007
|
PictureViewer
|